less copy protection, more size visualization
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

56999 rindas
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. },
  143. tiger: {
  144. name: "Tiger",
  145. parents: [
  146. "cat"
  147. ]
  148. },
  149. cat: {
  150. name: "Cat",
  151. parents: [
  152. "feliform"
  153. ]
  154. },
  155. "blue-jay": {
  156. name: "Blue Jay",
  157. parents: [
  158. "corvid"
  159. ]
  160. },
  161. wolf: {
  162. name: "Wolf",
  163. parents: [
  164. "mammal"
  165. ]
  166. },
  167. coyote: {
  168. name: "Coyote",
  169. parents: [
  170. "mammal"
  171. ]
  172. },
  173. raccoon: {
  174. name: "Raccoon",
  175. parents: [
  176. "mammal"
  177. ]
  178. },
  179. weasel: {
  180. name: "Weasel",
  181. parents: [
  182. "mustelid"
  183. ]
  184. },
  185. "red-panda": {
  186. name: "Red Panda",
  187. parents: [
  188. "mammal"
  189. ]
  190. },
  191. dolphin: {
  192. name: "Dolphin",
  193. parents: [
  194. "mammal"
  195. ]
  196. },
  197. "african-wild-dog": {
  198. name: "African Wild Dog",
  199. parents: [
  200. "canine"
  201. ]
  202. },
  203. "hyena": {
  204. name: "Hyena",
  205. parents: [
  206. "feliform"
  207. ]
  208. },
  209. "carbuncle": {
  210. name: "Carbuncle",
  211. parents: [
  212. "animal"
  213. ]
  214. },
  215. bat: {
  216. name: "Bat",
  217. parents: [
  218. "mammal"
  219. ]
  220. },
  221. "leaf-nosed-bat": {
  222. name: "Leaf-Nosed Bat",
  223. parents: [
  224. "bat"
  225. ]
  226. },
  227. "fish": {
  228. name: "Fish",
  229. parents: [
  230. "animal"
  231. ]
  232. },
  233. "ram": {
  234. name: "Ram",
  235. parents: [
  236. "mammal"
  237. ]
  238. },
  239. "demon": {
  240. name: "Demon",
  241. parents: [
  242. "supernatural"
  243. ]
  244. },
  245. "cougar": {
  246. name: "Cougar",
  247. parents: [
  248. "cat"
  249. ]
  250. },
  251. "goat": {
  252. name: "Goat",
  253. parents: [
  254. "mammal"
  255. ]
  256. },
  257. "lion": {
  258. name: "Lion",
  259. parents: [
  260. "cat"
  261. ]
  262. },
  263. "harpy-eager": {
  264. name: "Harpy Eagle",
  265. parents: [
  266. "avian"
  267. ]
  268. },
  269. "deer": {
  270. name: "Deer",
  271. parents: [
  272. "mammal"
  273. ]
  274. },
  275. "phoenix": {
  276. name: "Phoenix",
  277. parents: [
  278. "avian"
  279. ]
  280. },
  281. "aeromorph": {
  282. name: "Aeromorph",
  283. parents: [
  284. "machine"
  285. ]
  286. },
  287. "machine": {
  288. name: "Machine",
  289. },
  290. "android": {
  291. name: "Android",
  292. parents: [
  293. "machine"
  294. ]
  295. },
  296. "jackal": {
  297. name: "Jackal",
  298. parents: [
  299. "canine"
  300. ]
  301. },
  302. "corvid": {
  303. name: "Corvid",
  304. parents: [
  305. "passerine"
  306. ]
  307. },
  308. "pharaoh-hound": {
  309. name: "Pharaoh Hound",
  310. parents: [
  311. "dog"
  312. ]
  313. },
  314. "skunk": {
  315. name: "Skunk",
  316. parents: [
  317. "mammal"
  318. ]
  319. },
  320. "shark": {
  321. name: "Shark",
  322. parents: [
  323. "fish"
  324. ]
  325. },
  326. "black-panther": {
  327. name: "Black Panther",
  328. parents: [
  329. "cat"
  330. ]
  331. },
  332. "umbra": {
  333. name: "Umbra",
  334. parents: [
  335. "animal"
  336. ]
  337. },
  338. "raven": {
  339. name: "Raven",
  340. parents: [
  341. "corvid"
  342. ]
  343. },
  344. "snow-leopard": {
  345. name: "Snow Leopard",
  346. parents: [
  347. "cat"
  348. ]
  349. },
  350. "barbary-lion": {
  351. name: "Barbary Lion",
  352. parents: [
  353. "lion"
  354. ]
  355. },
  356. "dra'gal": {
  357. name: "Dra'Gal",
  358. parents: [
  359. "mammal"
  360. ]
  361. },
  362. "german-shepherd": {
  363. name: "German Shepherd",
  364. parents: [
  365. "dog"
  366. ]
  367. },
  368. "bayleef": {
  369. name: "Bayleef",
  370. parents: [
  371. "pokemon",
  372. "plant",
  373. "animal"
  374. ]
  375. },
  376. "mouse": {
  377. name: "Mouse",
  378. parents: [
  379. "rodent"
  380. ]
  381. },
  382. "rat": {
  383. name: "Rat",
  384. parents: [
  385. "mammal"
  386. ]
  387. },
  388. "hoshiko-beast": {
  389. name: "Hoshiko Beast",
  390. parents: ["animal"]
  391. },
  392. "snow-jugani": {
  393. name: "Snow Jugani",
  394. parents: ["cat"]
  395. },
  396. "patamon": {
  397. name: "Patamon",
  398. parents: ["digimon", "guinea-pig"]
  399. },
  400. "digimon": {
  401. name: "Digimon",
  402. },
  403. "jugani": {
  404. name: "Jugani",
  405. parents: ["cat"]
  406. },
  407. "luxray": {
  408. name: "Luxray",
  409. parents: ["pokemon", "lion"]
  410. },
  411. "mech": {
  412. name: "Mech",
  413. parents: ["machine"]
  414. },
  415. "zoid": {
  416. name: "Zoid",
  417. parents: ["mech"]
  418. },
  419. "monster": {
  420. name: "Monster",
  421. parents: ["animal"]
  422. },
  423. "foo-dog": {
  424. name: "Foo Dog",
  425. parents: ["mammal"]
  426. },
  427. "elephant": {
  428. name: "Elephant",
  429. parents: ["mammal"]
  430. },
  431. "eagle": {
  432. name: "Eagle",
  433. parents: ["bird-of-prey"]
  434. },
  435. "cow": {
  436. name: "Cow",
  437. parents: ["mammal"]
  438. },
  439. "crocodile": {
  440. name: "Crocodile",
  441. parents: ["reptile"]
  442. },
  443. "borzoi": {
  444. name: "Borzoi",
  445. parents: ["dog"]
  446. },
  447. "snake": {
  448. name: "Snake",
  449. parents: ["reptile"]
  450. },
  451. "horned-bush-viper": {
  452. name: "Horned Bush Viper",
  453. parents: ["viper"]
  454. },
  455. "cobra": {
  456. name: "Cobra",
  457. parents: ["snake"]
  458. },
  459. "harpy-eagle": {
  460. name: "Harpy Eagle",
  461. parents: ["eagle"]
  462. },
  463. "raptor": {
  464. name: "Raptor",
  465. parents: ["dinosaur"]
  466. },
  467. "dinosaur": {
  468. name: "Dinosaur",
  469. parents: ["reptile"]
  470. },
  471. "veilhound": {
  472. name: "Veilhound",
  473. parents: ["hellhound"]
  474. },
  475. "hellhound": {
  476. name: "Hellhound",
  477. parents: ["canine", "demon"]
  478. },
  479. "insect": {
  480. name: "Insect",
  481. parents: ["animal"]
  482. },
  483. "beetle": {
  484. name: "Beetle",
  485. parents: ["insect"]
  486. },
  487. "moth": {
  488. name: "Moth",
  489. parents: ["insect"]
  490. },
  491. "eastern-dragon": {
  492. name: "Eastern Dragon",
  493. parents: ["dragon"]
  494. },
  495. "jaguar": {
  496. name: "Jaguar",
  497. parents: ["cat"]
  498. },
  499. "horse": {
  500. name: "Horse",
  501. parents: ["mammal"]
  502. },
  503. "sergal": {
  504. name: "Sergal",
  505. parents: ["mammal", "avian", "vilous"]
  506. },
  507. "gryphon": {
  508. name: "Gryphon",
  509. parents: ["lion", "eagle"]
  510. },
  511. "robot": {
  512. name: "Robot",
  513. parents: ["machine"]
  514. },
  515. "medihound": {
  516. name: "Medihound",
  517. parents: ["robot", "dog"]
  518. },
  519. "sylveon": {
  520. name: "Sylveon",
  521. parents: ["pokemon"]
  522. },
  523. "catgirl": {
  524. name: "Catgirl",
  525. parents: ["mammal"]
  526. },
  527. "cowgirl": {
  528. name: "Cowgirl",
  529. parents: ["mammal"]
  530. },
  531. "pony": {
  532. name: "Pony",
  533. parents: ["horse"]
  534. },
  535. "rabbit": {
  536. name: "Rabbit",
  537. parents: ["leporidae"]
  538. },
  539. "fennec-fox": {
  540. name: "Fennec Fox",
  541. parents: ["fox"]
  542. },
  543. "azodian": {
  544. name: "Azodian",
  545. parents: ["mouse"]
  546. },
  547. "shiba-inu": {
  548. name: "Shiba Inu",
  549. parents: ["dog"]
  550. },
  551. "changeling": {
  552. name: "Changeling",
  553. parents: ["insect"]
  554. },
  555. "cheetah": {
  556. name: "Cheetah",
  557. parents: ["cat"]
  558. },
  559. "golden-jackal": {
  560. name: "Golden Jackal",
  561. parents: ["jackal"]
  562. },
  563. "manectric": {
  564. name: "Manectric",
  565. parents: ["pokemon", "wolf"]
  566. },
  567. "rat": {
  568. name: "Rat",
  569. parents: ["rodent"]
  570. },
  571. "rodent": {
  572. name: "Rodent",
  573. parents: ["mammal"]
  574. },
  575. "octocoon": {
  576. name: "Octocoon",
  577. parents: ["raccoon", "octopus"]
  578. },
  579. "octopus": {
  580. name: "Octopus",
  581. parents: ["fish"]
  582. },
  583. "werewolf": {
  584. name: "Werewolf",
  585. parents: ["wolf", "werebeast"]
  586. },
  587. "werebeast": {
  588. name: "Werebeast",
  589. parents: ["monster"]
  590. },
  591. "meerkat": {
  592. name: "Meerkat",
  593. parents: ["mammal"]
  594. },
  595. "human": {
  596. name: "Human",
  597. parents: ["mammal"]
  598. },
  599. "geth": {
  600. name: "Geth",
  601. parents: ["android"]
  602. },
  603. "husky": {
  604. name: "Husky",
  605. parents: ["dog"]
  606. },
  607. "long-eared-bat": {
  608. name: "Long Eared Bat",
  609. parents: ["bat"]
  610. },
  611. "lizard": {
  612. name: "Lizard",
  613. parents: ["reptile"]
  614. },
  615. "salamander": {
  616. name: "Salamander",
  617. parents: ["lizard"]
  618. },
  619. "chameleon": {
  620. name: "Chameleon",
  621. parents: ["lizard"]
  622. },
  623. "gecko": {
  624. name: "Gecko",
  625. parents: ["lizard"]
  626. },
  627. "kobold": {
  628. name: "Kobold",
  629. parents: ["reptile"]
  630. },
  631. "charizard": {
  632. name: "Charizard",
  633. parents: ["pokemon", "dragon"]
  634. },
  635. "lugia": {
  636. name: "Lugia",
  637. parents: ["pokemon", "avian"]
  638. },
  639. "cerberus": {
  640. name: "Cerberus",
  641. parents: ["dog"]
  642. },
  643. "tyrantrum": {
  644. name: "Tyrantrum",
  645. parents: ["pokemon"]
  646. },
  647. "lemur": {
  648. name: "Lemur",
  649. parents: ["mammal"]
  650. },
  651. "kelpie": {
  652. name: "Kelpie",
  653. parents: ["horse", "monster"]
  654. },
  655. "labrador": {
  656. name: "Labrador",
  657. parents: ["dog"]
  658. },
  659. "sylveon": {
  660. name: "Sylveon",
  661. parents: ["eeveelution"]
  662. },
  663. "eeveelution": {
  664. name: "Eeveelution",
  665. parents: ["pokemon", "cat"]
  666. },
  667. "polar-bear": {
  668. name: "Polar Bear",
  669. parents: ["bear"]
  670. },
  671. "bear": {
  672. name: "Bear",
  673. parents: ["mammal"]
  674. },
  675. "absol": {
  676. name: "Absol",
  677. parents: ["pokemon", "cat"]
  678. },
  679. "wolver": {
  680. name: "Wolver",
  681. parents: ["mammal"]
  682. },
  683. "rottweiler": {
  684. name: "Rottweiler",
  685. parents: ["dog"]
  686. },
  687. "zebra": {
  688. name: "Zebra",
  689. parents: ["horse"]
  690. },
  691. "yoshi": {
  692. name: "Yoshi",
  693. parents: ["lizard"]
  694. },
  695. "lynx": {
  696. name: "Lynx",
  697. parents: ["cat"]
  698. },
  699. "unknown": {
  700. name: "Unknown",
  701. parents: []
  702. },
  703. "thylacine": {
  704. name: "Thylacine",
  705. parents: ["mammal"]
  706. },
  707. "gabumon": {
  708. name: "Gabumon",
  709. parents: ["digimon"]
  710. },
  711. "border-collie": {
  712. name: "Border Collie",
  713. parents: ["dog"]
  714. },
  715. "imp": {
  716. name: "Imp",
  717. parents: ["demon"]
  718. },
  719. "kangaroo": {
  720. name: "Kangaroo",
  721. parents: ["marsupial"]
  722. },
  723. "renamon": {
  724. name: "Renamon",
  725. parents: ["digimon", "fox"]
  726. },
  727. "candy-orca-dragon": {
  728. name: "Candy Orca Dragon",
  729. parents: ["fish", "dragon", "candy"]
  730. },
  731. "sabertooth-tiger": {
  732. name: "Sabertooth Tiger",
  733. parents: ["cat"]
  734. },
  735. "espurr": {
  736. name: "Espurr",
  737. parents: ["pokemon", "cat"]
  738. },
  739. "otter": {
  740. name: "Otter",
  741. parents: ["mustelid"]
  742. },
  743. "elemental": {
  744. name: "Elemental",
  745. parents: ["mammal"]
  746. },
  747. "mew": {
  748. name: "Mew",
  749. parents: ["pokemon"]
  750. },
  751. "goodra": {
  752. name: "Goodra",
  753. parents: ["pokemon"]
  754. },
  755. "fairy": {
  756. name: "Fairy",
  757. parents: ["magical"]
  758. },
  759. "typhlosion": {
  760. name: "Typhlosion",
  761. parents: ["pokemon"]
  762. },
  763. "magical": {
  764. name: "Magical",
  765. parents: []
  766. },
  767. "xenomorph": {
  768. name: "Xenomorph",
  769. parents: ["monster", "alien"]
  770. },
  771. "charr": {
  772. name: "Charr",
  773. parents: ["cat"]
  774. },
  775. "siberian-husky": {
  776. name: "Siberian Husky",
  777. parents: ["husky"]
  778. },
  779. "alligator": {
  780. name: "Alligator",
  781. parents: ["reptile"]
  782. },
  783. "bernese-mountain-dog": {
  784. name: "Bernese Mountain Dog",
  785. parents: ["dog"]
  786. },
  787. "reshiram": {
  788. name: "Reshiram",
  789. parents: ["pokemon", "dragon"]
  790. },
  791. "grizzly-bear": {
  792. name: "Grizzly Bear",
  793. parents: ["bear"]
  794. },
  795. "water-monitor": {
  796. name: "Water Monitor",
  797. parents: ["lizard"]
  798. },
  799. "banchofossa": {
  800. name: "Banchofossa",
  801. parents: ["mammal"]
  802. },
  803. "kirin": {
  804. name: "Kirin",
  805. parents: ["monster"]
  806. },
  807. "quilava": {
  808. name: "Quilava",
  809. parents: ["pokemon"]
  810. },
  811. "seviper": {
  812. name: "Seviper",
  813. parents: ["pokemon", "viper"]
  814. },
  815. "flying-fox": {
  816. name: "Flying Fox",
  817. parents: ["bat"]
  818. },
  819. "keynain": {
  820. name: "Keynain",
  821. parents: ["avian"]
  822. },
  823. "lucario": {
  824. name: "Lucario",
  825. parents: ["pokemon", "jackal"]
  826. },
  827. "siamese-cat": {
  828. name: "Siamese Cat",
  829. parents: ["cat"]
  830. },
  831. "spider": {
  832. name: "Spider",
  833. parents: ["insect"]
  834. },
  835. "samurott": {
  836. name: "Samurott",
  837. parents: ["pokemon", "otter"]
  838. },
  839. "megalodon": {
  840. name: "Megalodon",
  841. parents: ["shark"]
  842. },
  843. "unicorn": {
  844. name: "Unicorn",
  845. parents: ["horse"]
  846. },
  847. "greninja": {
  848. name: "Greninja",
  849. parents: ["pokemon", "frog"]
  850. },
  851. "water-dragon": {
  852. name: "Water Dragon",
  853. parents: ["dragon"]
  854. },
  855. "cross-fox": {
  856. name: "Cross Fox",
  857. parents: ["fox"]
  858. },
  859. "synth": {
  860. name: "Synth",
  861. parents: ["machine"]
  862. },
  863. "construct": {
  864. name: "Construct",
  865. parents: []
  866. },
  867. "mexican-wolf": {
  868. name: "Mexican Wolf",
  869. parents: ["wolf"]
  870. },
  871. "leopard": {
  872. name: "Leopard",
  873. parents: ["cat"]
  874. },
  875. "pig": {
  876. name: "Pig",
  877. parents: ["mammal"]
  878. },
  879. "ampharos": {
  880. name: "Ampharos",
  881. parents: ["pokemon", "sheep"]
  882. },
  883. "orca": {
  884. name: "Orca",
  885. parents: ["fish"]
  886. },
  887. "lycanroc": {
  888. name: "Lycanroc",
  889. parents: ["pokemon", "wolf"]
  890. },
  891. "surkanu": {
  892. name: "Surkanu",
  893. parents: ["monster"]
  894. },
  895. "seal": {
  896. name: "Seal",
  897. parents: ["mammal"]
  898. },
  899. "keldeo": {
  900. name: "Keldeo",
  901. parents: ["pokemon"]
  902. },
  903. "great-dane": {
  904. name: "Great Dane",
  905. parents: ["dog"]
  906. },
  907. "black-backed-jackal": {
  908. name: "Black Backed Jackal",
  909. parents: ["jackal"]
  910. },
  911. "sheep": {
  912. name: "Sheep",
  913. parents: ["mammal"]
  914. },
  915. "leopard-seal": {
  916. name: "Leopard Seal",
  917. parents: ["seal"]
  918. },
  919. "zoroark": {
  920. name: "Zoroark",
  921. parents: ["pokemon", "fox"]
  922. },
  923. "maned-wolf": {
  924. name: "Maned Wolf",
  925. parents: ["canine"]
  926. },
  927. "dracha": {
  928. name: "Dracha",
  929. parents: ["dragon"]
  930. },
  931. "wolxi": {
  932. name: "Wolxi",
  933. parents: ["mammal", "alien"]
  934. },
  935. "dratini": {
  936. name: "Dratini",
  937. parents: ["pokemon", "dragon"]
  938. },
  939. "skaven": {
  940. name: "Skaven",
  941. parents: ["rat"]
  942. },
  943. "mongoose": {
  944. name: "Mongoose",
  945. parents: ["mammal"]
  946. },
  947. "lopunny": {
  948. name: "Lopunny",
  949. parents: ["pokemon", "rabbit"]
  950. },
  951. "feraligatr": {
  952. name: "Feraligatr",
  953. parents: ["pokemon", "alligator"]
  954. },
  955. "houndoom": {
  956. name: "Houndoom",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "protogen": {
  960. name: "Protogen",
  961. parents: ["machine"]
  962. },
  963. "saint-bernard": {
  964. name: "Saint Bernard",
  965. parents: ["dog"]
  966. },
  967. "crow": {
  968. name: "Crow",
  969. parents: ["corvid"]
  970. },
  971. "delphox": {
  972. name: "Delphox",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "moose": {
  976. name: "Moose",
  977. parents: ["mammal"]
  978. },
  979. "joraxian": {
  980. name: "Joraxian",
  981. parents: ["monster", "canine", "demon"]
  982. },
  983. "nimbat": {
  984. name: "Nimbat",
  985. parents: ["mammal"]
  986. },
  987. "aardwolf": {
  988. name: "Aardwolf",
  989. parents: ["canine"]
  990. },
  991. "fluudrani": {
  992. name: "Fluudrani",
  993. parents: ["animal"]
  994. },
  995. "arcanine": {
  996. name: "Arcanine",
  997. parents: ["pokemon", "dog"]
  998. },
  999. "inteleon": {
  1000. name: "Inteleon",
  1001. parents: ["pokemon", "fish"]
  1002. },
  1003. "ninetales": {
  1004. name: "Ninetales",
  1005. parents: ["pokemon", "kitsune"]
  1006. },
  1007. "tigrex": {
  1008. name: "Tigrex",
  1009. parents: ["tiger"]
  1010. },
  1011. "zorua": {
  1012. name: "Zorua",
  1013. parents: ["pokemon", "fox"]
  1014. },
  1015. "vulpix": {
  1016. name: "Vulpix",
  1017. parents: ["pokemon", "fox"]
  1018. },
  1019. "barghest": {
  1020. name: "Barghest",
  1021. parents: ["monster"]
  1022. },
  1023. "gray-wolf": {
  1024. name: "Gray Wolf",
  1025. parents: ["wolf"]
  1026. },
  1027. "ruppells-fox": {
  1028. name: "Rüppell's Fox",
  1029. parents: ["fox"]
  1030. },
  1031. "bull-terrier": {
  1032. name: "Bull Terrier",
  1033. parents: ["dog"]
  1034. },
  1035. "european-honey-buzzard": {
  1036. name: "European Honey Buzzard",
  1037. parents: ["avian"]
  1038. },
  1039. "t-rex": {
  1040. name: "Tyrannosaurus Rex",
  1041. parents: ["dinosaur"]
  1042. },
  1043. "mactarian": {
  1044. name: "Mactarian",
  1045. parents: ["shark", "monster"]
  1046. },
  1047. "mewtwo-y": {
  1048. name: "Mewtwo Y",
  1049. parents: ["mewtwo"]
  1050. },
  1051. "mewtwo": {
  1052. name: "Mewtwo",
  1053. parents: ["pokemon"]
  1054. },
  1055. "eevee": {
  1056. name: "Eevee",
  1057. parents: ["eeveelution"]
  1058. },
  1059. "mienshao": {
  1060. name: "Mienshao",
  1061. parents: ["pokemon"]
  1062. },
  1063. "sugar-glider": {
  1064. name: "Sugar Glider",
  1065. parents: ["opossum"]
  1066. },
  1067. "spectral-bat": {
  1068. name: "Spectral Bat",
  1069. parents: ["bat"]
  1070. },
  1071. "scolipede": {
  1072. name: "Scolipede",
  1073. parents: ["pokemon", "insect"]
  1074. },
  1075. "jackalope": {
  1076. name: "Jackalope",
  1077. parents: ["rabbit", "antelope"]
  1078. },
  1079. "caracal": {
  1080. name: "Caracal",
  1081. parents: ["cat"]
  1082. },
  1083. "stoat": {
  1084. name: "Stoat",
  1085. parents: ["mammal"]
  1086. },
  1087. "african-golden-cat": {
  1088. name: "African Golden Cat",
  1089. parents: ["cat"]
  1090. },
  1091. "gigantosaurus": {
  1092. name: "Gigantosaurus",
  1093. parents: ["dinosaur"]
  1094. },
  1095. "zorgoia": {
  1096. name: "Zorgoia",
  1097. parents: ["mammal"]
  1098. },
  1099. "monitor-lizard": {
  1100. name: "Monitor Lizard",
  1101. parents: ["lizard"]
  1102. },
  1103. "ziralkia": {
  1104. name: "Ziralkia",
  1105. parents: ["mammal"]
  1106. },
  1107. "kiiasi": {
  1108. name: "Kiiasi",
  1109. parents: ["animal"]
  1110. },
  1111. "synx": {
  1112. name: "Synx",
  1113. parents: ["monster"]
  1114. },
  1115. "panther": {
  1116. name: "Panther",
  1117. parents: ["cat"]
  1118. },
  1119. "azumarill": {
  1120. name: "Azumarill",
  1121. parents: ["pokemon"]
  1122. },
  1123. "river-snaptail": {
  1124. name: "River Snaptail",
  1125. parents: ["otter", "crocodile"]
  1126. },
  1127. "great-blue-heron": {
  1128. name: "Great Blue Heron",
  1129. parents: ["avian"]
  1130. },
  1131. "smeargle": {
  1132. name: "Smeargle",
  1133. parents: ["pokemon"]
  1134. },
  1135. "vendeilen": {
  1136. name: "Vendeilen",
  1137. parents: ["monster"]
  1138. },
  1139. "ventura": {
  1140. name: "Ventura",
  1141. parents: ["canine"]
  1142. },
  1143. "clouded-leopard": {
  1144. name: "Clouded Leopard",
  1145. parents: ["leopard"]
  1146. },
  1147. "argonian": {
  1148. name: "Argonian",
  1149. parents: ["lizard"]
  1150. },
  1151. "salazzle": {
  1152. name: "Salazzle",
  1153. parents: ["pokemon", "lizard"]
  1154. },
  1155. "je-stoff-drachen": {
  1156. name: "Je-Stoff Drachen",
  1157. parents: ["dragon"]
  1158. },
  1159. "finnish-spitz-dog": {
  1160. name: "Finnish Spitz Dog",
  1161. parents: ["dog"]
  1162. },
  1163. "gray-fox": {
  1164. name: "Gray Fox",
  1165. parents: ["fox"]
  1166. },
  1167. "opossum": {
  1168. name: "Opossum",
  1169. parents: ["mammal"]
  1170. },
  1171. "antelope": {
  1172. name: "Antelope",
  1173. parents: ["mammal"]
  1174. },
  1175. "weavile": {
  1176. name: "Weavile",
  1177. parents: ["pokemon"]
  1178. },
  1179. "pikachu": {
  1180. name: "Pikachu",
  1181. parents: ["pokemon", "mouse"]
  1182. },
  1183. "grovyle": {
  1184. name: "Grovyle",
  1185. parents: ["pokemon", "plant"]
  1186. },
  1187. "sthara": {
  1188. name: "Sthara",
  1189. parents: ["snow-leopard", "reptile"]
  1190. },
  1191. "star-warrior": {
  1192. name: "Star Warrior",
  1193. parents: ["magical"]
  1194. },
  1195. "dragonoid": {
  1196. name: "Dragonoid",
  1197. parents: ["dragon"]
  1198. },
  1199. "suicune": {
  1200. name: "Suicune",
  1201. parents: ["pokemon"]
  1202. },
  1203. "vole": {
  1204. name: "Vole",
  1205. parents: ["mammal"]
  1206. },
  1207. "blaziken": {
  1208. name: "Blaziken",
  1209. parents: ["pokemon", "avian"]
  1210. },
  1211. "buizel": {
  1212. name: "Buizel",
  1213. parents: ["pokemon", "fish"]
  1214. },
  1215. "floatzel": {
  1216. name: "Floatzel",
  1217. parents: ["pokemon", "fish"]
  1218. },
  1219. "umok": {
  1220. name: "Umok",
  1221. parents: ["avian"]
  1222. },
  1223. "sea-monster": {
  1224. name: "Sea Monster",
  1225. parents: ["monster", "fish"]
  1226. },
  1227. "egyptian-vulture": {
  1228. name: "Egyptian Vulture",
  1229. parents: ["avian"]
  1230. },
  1231. "doberman": {
  1232. name: "Doberman",
  1233. parents: ["dog"]
  1234. },
  1235. "zangoose": {
  1236. name: "Zangoose",
  1237. parents: ["pokemon", "mongoose"]
  1238. },
  1239. "mongoose": {
  1240. name: "Mongoose",
  1241. parents: ["mammal"]
  1242. },
  1243. "wickerbeast": {
  1244. name: "Wickerbeast",
  1245. parents: ["monster"]
  1246. },
  1247. "zenari": {
  1248. name: "Zenari",
  1249. parents: ["lizard"]
  1250. },
  1251. "plant": {
  1252. name: "Plant",
  1253. parents: []
  1254. },
  1255. "raskatox": {
  1256. name: "Raskatox",
  1257. parents: ["raccoon", "skunk", "cat", "fox"]
  1258. },
  1259. "mikromare": {
  1260. name: "mikromare",
  1261. parents: ["alien"]
  1262. },
  1263. "alien": {
  1264. name: "Alien",
  1265. parents: ["animal"]
  1266. },
  1267. "deity": {
  1268. name: "Deity",
  1269. parents: []
  1270. },
  1271. "skarlan": {
  1272. name: "Skarlan",
  1273. parents: ["slug", "dragon"]
  1274. },
  1275. "slug": {
  1276. name: "Slug",
  1277. parents: ["mollusk"]
  1278. },
  1279. "mollusk": {
  1280. name: "Mollusk",
  1281. parents: ["animal"]
  1282. },
  1283. "chimera": {
  1284. name: "Chimera",
  1285. parents: ["monster"]
  1286. },
  1287. "gestalt": {
  1288. name: "Gestalt",
  1289. parents: ["construct"]
  1290. },
  1291. "mimic": {
  1292. name: "Mimic",
  1293. parents: ["monster"]
  1294. },
  1295. "calico-rat": {
  1296. name: "Calico Rat",
  1297. parents: ["rat"]
  1298. },
  1299. "panda": {
  1300. name: "Panda",
  1301. parents: ["mammal"]
  1302. },
  1303. "oni": {
  1304. name: "Oni",
  1305. parents: ["monster"]
  1306. },
  1307. "pegasus": {
  1308. name: "Pegasus",
  1309. parents: ["horse"]
  1310. },
  1311. "vulpera": {
  1312. name: "Vulpera",
  1313. parents: ["fennec-fox"]
  1314. },
  1315. "ceratosaurus": {
  1316. name: "Ceratosaurus",
  1317. parents: ["dinosaur"]
  1318. },
  1319. "nykur": {
  1320. name: "Nykur",
  1321. parents: ["horse", "monster"]
  1322. },
  1323. "giraffe": {
  1324. name: "Giraffe",
  1325. parents: ["mammal"]
  1326. },
  1327. "tauren": {
  1328. name: "Tauren",
  1329. parents: ["cow"]
  1330. },
  1331. "draconi": {
  1332. name: "Draconi",
  1333. parents: ["alien", "cat", "cyborg"]
  1334. },
  1335. "dire-wolf": {
  1336. name: "Dire Wolf",
  1337. parents: ["wolf"]
  1338. },
  1339. "ferromorph": {
  1340. name: "Ferromorph",
  1341. parents: ["construct"]
  1342. },
  1343. "meowth": {
  1344. name: "Meowth",
  1345. parents: ["cat", "pokemon"]
  1346. },
  1347. "pavodragon": {
  1348. name: "Pavodragon",
  1349. parents: ["dragon"]
  1350. },
  1351. "aaltranae": {
  1352. name: "Aaltranae",
  1353. parents: ["dragon"]
  1354. },
  1355. "cyborg": {
  1356. name: "Cyborg",
  1357. parents: ["machine"]
  1358. },
  1359. "draptor": {
  1360. name: "Draptor",
  1361. parents: ["dragon"]
  1362. },
  1363. "candy": {
  1364. name: "Candy",
  1365. parents: []
  1366. },
  1367. "drenath": {
  1368. name: "Drenath",
  1369. parents: ["dragon", "snake", "rabbit"]
  1370. },
  1371. "coyju": {
  1372. name: "Coyju",
  1373. parents: ["coyote", "kaiju"]
  1374. },
  1375. "kaiju": {
  1376. name: "Kaiju",
  1377. parents: ["monster"]
  1378. },
  1379. "nickit": {
  1380. name: "Nickit",
  1381. parents: ["pokemon", "cat"]
  1382. },
  1383. "lopunny": {
  1384. name: "Lopunny",
  1385. parents: ["pokemon", "rabbit"]
  1386. },
  1387. "korean-jindo-dog": {
  1388. name: "Korean Jindo Dog",
  1389. parents: ["dog"]
  1390. },
  1391. "naga": {
  1392. name: "Naga",
  1393. parents: ["snake", "monster"]
  1394. },
  1395. "undead": {
  1396. name: "Undead",
  1397. parents: ["monster"]
  1398. },
  1399. "whale": {
  1400. name: "Whale",
  1401. parents: ["fish"]
  1402. },
  1403. "gelato-bee": {
  1404. name: "Gelato Bee",
  1405. parents: ["bee"]
  1406. },
  1407. "bee": {
  1408. name: "Bee",
  1409. parents: ["insect"]
  1410. },
  1411. "gardevoir": {
  1412. name: "Gardevoir",
  1413. parents: ["pokemon"]
  1414. },
  1415. "ant": {
  1416. name: "Ant",
  1417. parents: ["insect"]
  1418. },
  1419. "frog": {
  1420. name: "Frog",
  1421. parents: ["amphibian"]
  1422. },
  1423. "amphibian": {
  1424. name: "Amphibian",
  1425. parents: ["animal"]
  1426. },
  1427. "pangolin": {
  1428. name: "Pangolin",
  1429. parents: ["mammal"]
  1430. },
  1431. "uragi'viidorn": {
  1432. name: "Uragi'viidorn",
  1433. parents: ["avian", "bear"]
  1434. },
  1435. "gryphdelphais": {
  1436. name: "Gryphdelphais",
  1437. parents: ["dolphin", "gryphon"]
  1438. },
  1439. "plush": {
  1440. name: "Plush",
  1441. parents: ["construct"]
  1442. },
  1443. "draiger": {
  1444. name: "Draiger",
  1445. parents: ["dragon","tiger"]
  1446. },
  1447. "foxsky": {
  1448. name: "Foxsky",
  1449. parents: ["fox", "husky"]
  1450. },
  1451. "umbreon": {
  1452. name: "Umbreon",
  1453. parents: ["eeveelution"]
  1454. },
  1455. "slime-dragon": {
  1456. name: "Slime Dragon",
  1457. parents: ["dragon", "goo"]
  1458. },
  1459. "enderman": {
  1460. name: "Enderman",
  1461. parents: ["monster"]
  1462. },
  1463. "gremlin": {
  1464. name: "Gremlin",
  1465. parents: ["monster"]
  1466. },
  1467. "dragonsune": {
  1468. name: "Dragonsune",
  1469. parents: ["dragon", "kitsune"]
  1470. },
  1471. "ghost": {
  1472. name: "Ghost",
  1473. parents: ["supernatural"]
  1474. },
  1475. "false-vampire-bat": {
  1476. name: "False Vampire Bat",
  1477. parents: ["bat"]
  1478. },
  1479. "succubus": {
  1480. name: "Succubus",
  1481. parents: ["demon"]
  1482. },
  1483. "mia": {
  1484. name: "Mia",
  1485. parents: ["canine"]
  1486. },
  1487. "rainbow": {
  1488. name: "Rainbow",
  1489. parents: ["monster"]
  1490. },
  1491. "solgaleo": {
  1492. name: "Solgaleo",
  1493. parents: ["pokemon"]
  1494. },
  1495. "lucent-nargacuga": {
  1496. name: "Lucent Nargacuga",
  1497. parents: ["nargacuga"]
  1498. },
  1499. "monster-hunter": {
  1500. name: "Monster Hunter",
  1501. parents: ["monster"]
  1502. },
  1503. "leviathan": {
  1504. "name": "Leviathan",
  1505. "url": "sea-monster"
  1506. },
  1507. "bull": {
  1508. name: "Bull",
  1509. parents: ["mammal"]
  1510. },
  1511. "tanuki": {
  1512. name: "Tanuki",
  1513. parents: ["monster"]
  1514. },
  1515. "chakat": {
  1516. name: "Chakat",
  1517. parents: ["cat"]
  1518. },
  1519. "hydra": {
  1520. name: "Hydra",
  1521. parents: ["monster"]
  1522. },
  1523. "zigzagoon": {
  1524. name: "Zigzagoon",
  1525. parents: ["raccoon", "pokemon"]
  1526. },
  1527. "vulture": {
  1528. name: "Vulture",
  1529. parents: ["avian"]
  1530. },
  1531. "eastern-dragon": {
  1532. name: "Eastern Dragon",
  1533. parents: ["dragon"]
  1534. },
  1535. "gryffon": {
  1536. name: "Gryffon",
  1537. parents: ["phoenix", "red-panda"]
  1538. },
  1539. "amtsvane": {
  1540. name: "Amtsvane",
  1541. parents: ["reptile"]
  1542. },
  1543. "kigavi": {
  1544. name: "Kigavi",
  1545. parents: ["avian"]
  1546. },
  1547. "turian": {
  1548. name: "Turian",
  1549. parents: ["avian"]
  1550. },
  1551. "zeraora": {
  1552. name: "Zeraora",
  1553. parents: ["pokemon", "cat"]
  1554. },
  1555. "sandshrew": {
  1556. name: "Sandshrew",
  1557. parents: ["pokemon", "pangolin"]
  1558. },
  1559. "valais-blacknose-sheep": {
  1560. name: "Valais Blacknose Sheep",
  1561. parents: ["sheep"]
  1562. },
  1563. "novaleit": {
  1564. name: "Novaleit",
  1565. parents: ["mammal"]
  1566. },
  1567. "dunnoh": {
  1568. name: "Dunnoh",
  1569. parents: ["mammal"]
  1570. },
  1571. "lunaral-dragon": {
  1572. name: "Lunaral Dragon",
  1573. parents: ["dragon"]
  1574. },
  1575. "arctic-wolf": {
  1576. name: "Arctic Wolf",
  1577. parents: ["wolf"]
  1578. },
  1579. "donkey": {
  1580. name: "Donkey",
  1581. parents: ["horse"]
  1582. },
  1583. "chinchilla": {
  1584. name: "Chinchilla",
  1585. parents: ["rodent"]
  1586. },
  1587. "felkin": {
  1588. name: "Felkin",
  1589. parents: ["dragon"]
  1590. },
  1591. "tykeriel": {
  1592. name: "Tykeriel",
  1593. parents: ["avian"]
  1594. },
  1595. "folf": {
  1596. name: "Folf",
  1597. parents: ["fox", "wolf"]
  1598. },
  1599. "pooltoy": {
  1600. name: "Pooltoy",
  1601. parents: ["construct"]
  1602. },
  1603. "demi": {
  1604. name: "Demi",
  1605. parents: ["human"]
  1606. },
  1607. "stegosaurus": {
  1608. name: "Stegosaurus",
  1609. parents: ["dinosaur"]
  1610. },
  1611. "computer-virus": {
  1612. name: "Computer Virus",
  1613. parents: ["program"]
  1614. },
  1615. "program": {
  1616. name: "Program",
  1617. parents: ["construct"]
  1618. },
  1619. "space-springhare": {
  1620. name: "Space Springhare",
  1621. parents: ["hare"]
  1622. },
  1623. "river-drake": {
  1624. name: "River Drake",
  1625. parents: ["dragon"]
  1626. },
  1627. "djinn": {
  1628. "name": "Djinn",
  1629. "url": "supernatural"
  1630. },
  1631. "supernatural": {
  1632. name: "Supernatural",
  1633. parents: ["monster"]
  1634. },
  1635. "grasshopper-mouse": {
  1636. name: "Grasshopper Mouse",
  1637. parents: ["mouse"]
  1638. },
  1639. "somali-cat": {
  1640. name: "Somali Cat",
  1641. parents: ["cat"]
  1642. },
  1643. "minccino": {
  1644. name: "Minccino",
  1645. parents: ["pokemon", "chinchilla"]
  1646. },
  1647. "pine-marten": {
  1648. name: "Pine Marten",
  1649. parents: ["marten"]
  1650. },
  1651. "marten": {
  1652. name: "Marten",
  1653. parents: ["mustelid"]
  1654. },
  1655. "mustelid": {
  1656. name: "Mustelid",
  1657. parents: ["mammal"]
  1658. },
  1659. "caribou": {
  1660. name: "Caribou",
  1661. parents: ["deer"]
  1662. },
  1663. "gnoll": {
  1664. name: "Gnoll",
  1665. parents: ["hyena", "monster"]
  1666. },
  1667. "peacekeeper": {
  1668. name: "Peacekeeper",
  1669. parents: ["human"]
  1670. },
  1671. "river-otter": {
  1672. name: "River Otter",
  1673. parents: ["otter"]
  1674. },
  1675. "dhole": {
  1676. name: "Dhole",
  1677. parents: ["canine"]
  1678. },
  1679. "springbok": {
  1680. name: "Springbok",
  1681. parents: ["antelope"]
  1682. },
  1683. "marsupial": {
  1684. name: "Marsupial",
  1685. parents: ["mammal"]
  1686. },
  1687. "townsend-big-eared-bat": {
  1688. name: "Townsend Big-eared Bat",
  1689. parents: ["bat"]
  1690. },
  1691. "squirrel": {
  1692. name: "Squirrel",
  1693. parents: ["rodent"]
  1694. },
  1695. "magpie": {
  1696. name: "Magpie",
  1697. parents: ["corvid"]
  1698. },
  1699. "civet": {
  1700. name: "Civet",
  1701. parents: ["feliform"]
  1702. },
  1703. "feliform": {
  1704. name: "Feliform",
  1705. parents: ["mammal"]
  1706. },
  1707. "tiefling": {
  1708. name: "Tiefling",
  1709. parents: ["devil"]
  1710. },
  1711. "devil": {
  1712. name: "Devil",
  1713. parents: ["supernatural"]
  1714. },
  1715. "sika-deer": {
  1716. name: "Sika Deer",
  1717. parents: ["deer"]
  1718. },
  1719. "vaporeon": {
  1720. name: "Vaporeon",
  1721. parents: ["eeveelution"]
  1722. },
  1723. "leafeon": {
  1724. name: "Leafeon",
  1725. parents: ["eeveelution"]
  1726. },
  1727. "jolteon": {
  1728. name: "Jolteon",
  1729. parents: ["eeveelution"]
  1730. },
  1731. "spireborn": {
  1732. name: "Spireborn",
  1733. parents: ["zorgoia"]
  1734. },
  1735. "vampire": {
  1736. name: "Vampire",
  1737. parents: ["monster"]
  1738. },
  1739. "extraplanar": {
  1740. name: "Extraplanar",
  1741. parents: []
  1742. },
  1743. "goo": {
  1744. name: "Goo",
  1745. parents: []
  1746. },
  1747. "skink": {
  1748. name: "Skink",
  1749. parents: ["lizard"]
  1750. },
  1751. "bat-eared-fox": {
  1752. name: "Bat-eared Fox",
  1753. parents: ["fox"]
  1754. },
  1755. "belted-kingfisher": {
  1756. name: "Belted Kingfisher",
  1757. parents: ["avian"]
  1758. },
  1759. "omnifalcon": {
  1760. name: "Omnifalcon",
  1761. parents: ["gryphon", "falcon", "harpy-eagle"]
  1762. },
  1763. "falcon": {
  1764. name: "Falcon",
  1765. parents: ["bird-of-prey"]
  1766. },
  1767. "avali": {
  1768. name: "Avali",
  1769. parents: ["avian", "alien"]
  1770. },
  1771. "arctic-fox": {
  1772. name: "Arctic Fox",
  1773. parents: ["fox"]
  1774. },
  1775. "snow-tiger": {
  1776. name: "Snow Tiger",
  1777. parents: ["tiger"]
  1778. },
  1779. "marble-fox": {
  1780. name: "Marble Fox",
  1781. parents: ["fox"]
  1782. },
  1783. "king-wickerbeast": {
  1784. name: "King Wickerbeast",
  1785. parents: ["wickerbeast"]
  1786. },
  1787. "wickerbeast": {
  1788. name: "Wickerbeast",
  1789. parents: ["mammal"]
  1790. },
  1791. "european-polecat": {
  1792. name: "European Polecat",
  1793. parents: ["mustelid"]
  1794. },
  1795. "teshari": {
  1796. name: "Teshari",
  1797. parents: ["avian", "raptor"]
  1798. },
  1799. "alicorn": {
  1800. name: "Alicorn",
  1801. parents: ["horse"]
  1802. },
  1803. "atlas-moth": {
  1804. name: "Atlas Moth",
  1805. parents: ["moth"]
  1806. },
  1807. "owlbear": {
  1808. name: "Owlbear",
  1809. parents: ["owl", "bear", "monster"]
  1810. },
  1811. "owl": {
  1812. name: "Owl",
  1813. parents: ["avian"]
  1814. },
  1815. "silvertongue": {
  1816. name: "Silvertongue",
  1817. parents: ["reptile"]
  1818. },
  1819. "ahuizotl": {
  1820. name: "Ahuizotl",
  1821. parents: ["monster"]
  1822. },
  1823. "ender-dragon": {
  1824. name: "Ender Dragon",
  1825. parents: ["dragon"]
  1826. },
  1827. "bruhathkayosaurus": {
  1828. name: "Bruhathkayosaurus",
  1829. parents: ["sauropod"]
  1830. },
  1831. "sauropod": {
  1832. name: "Sauropod",
  1833. parents: ["dinosaur"]
  1834. },
  1835. "black-sable-antelope": {
  1836. name: "Black Sable Antelope",
  1837. parents: ["antelope"]
  1838. },
  1839. "slime": {
  1840. name: "Slime",
  1841. parents: ["goo"]
  1842. },
  1843. "utahraptor": {
  1844. name: "Utahraptor",
  1845. parents: ["raptor"]
  1846. },
  1847. "indian-giant-squirrel": {
  1848. name: "Indian Giant Squirrel",
  1849. parents: ["squirrel"]
  1850. },
  1851. "golden-retriever": {
  1852. name: "Golden Retriever",
  1853. parents: ["dog"]
  1854. },
  1855. "triceratops": {
  1856. name: "Triceratops",
  1857. parents: ["dinosaur"]
  1858. },
  1859. "drake": {
  1860. name: "Drake",
  1861. parents: ["dragon"]
  1862. },
  1863. "okapi": {
  1864. name: "Okapi",
  1865. parents: ["giraffe"]
  1866. },
  1867. "arctic-hare": {
  1868. name: "Arctic Hare",
  1869. parents: ["hare"]
  1870. },
  1871. "hare": {
  1872. name: "Hare",
  1873. parents: ["leporidae"]
  1874. },
  1875. "leporidae": {
  1876. name: "Leporidae",
  1877. parents: ["mammal"]
  1878. },
  1879. "leopard-gecko": {
  1880. name: "Leopard Gecko",
  1881. parents: ["gecko"]
  1882. },
  1883. "dreamspawn": {
  1884. name: "Dreamspawn",
  1885. parents: ["illusion"]
  1886. },
  1887. "illusion": {
  1888. name: "Illusion",
  1889. parents: []
  1890. },
  1891. "purrloin": {
  1892. name: "Purrloin",
  1893. parents: ["cat", "pokemon"]
  1894. },
  1895. "noivern": {
  1896. name: "Noivern",
  1897. parents: ["bat", "dragon", "pokemon"]
  1898. },
  1899. "hedgehog": {
  1900. name: "Hedgehog",
  1901. parents: ["mammal"]
  1902. },
  1903. "liger": {
  1904. name: "Liger",
  1905. parents: ["lion", "tiger", "hybrid"]
  1906. },
  1907. "hybrid": {
  1908. name: "Hybrid",
  1909. parents: []
  1910. },
  1911. "drider": {
  1912. name: "Drider",
  1913. parents: ["spider"]
  1914. },
  1915. "sabresune": {
  1916. name: "Sabresune",
  1917. parents: ["kitsune", "sabertooth-tiger"]
  1918. },
  1919. "ditto": {
  1920. name: "Ditto",
  1921. parents: ["pokemon", "goo"]
  1922. },
  1923. "amogus": {
  1924. name: "Amogus",
  1925. parents: ["deity"]
  1926. },
  1927. "ferret": {
  1928. name: "Ferret",
  1929. parents: ["mustelid"]
  1930. },
  1931. "guinea-pig": {
  1932. name: "Guinea Pig",
  1933. parents: ["rodent"]
  1934. },
  1935. "viper": {
  1936. name: "Viper",
  1937. parents: ["snake"]
  1938. },
  1939. "cinderace": {
  1940. name: "Cinderace",
  1941. parents: ["pokemon", "rabbit"]
  1942. },
  1943. "caudin": {
  1944. name: "Caudin",
  1945. parents: ["dragon"]
  1946. },
  1947. "red-winged-blackbird": {
  1948. name: "Red-Winged Blackbird",
  1949. parents: ["avian"]
  1950. },
  1951. "hooded-wheater": {
  1952. name: "Hooded Wheater",
  1953. parents: ["passerine"]
  1954. },
  1955. "passerine": {
  1956. name: "Passerine",
  1957. parents: ["avian"]
  1958. },
  1959. "gieeg": {
  1960. name: "Gieeg",
  1961. parents: ["alien"]
  1962. },
  1963. "ringtail": {
  1964. name: "Ringtail",
  1965. parents: ["raccoon"]
  1966. },
  1967. "hisuian-zoroark": {
  1968. name: "Hisuian Zoroark",
  1969. parents: ["zoroark", "hisuian"]
  1970. },
  1971. "hisuian": {
  1972. name: "Hisuian",
  1973. parents: ["regional-pokemon"]
  1974. },
  1975. "regional-pokemon": {
  1976. name: "Regional Pokemon",
  1977. parents: ["pokemon"]
  1978. },
  1979. "cybeast": {
  1980. name: "Cybeast",
  1981. parents: ["computer-virus"]
  1982. },
  1983. "javira-dragon": {
  1984. name: "Javira Dragon",
  1985. parents: ["dragon"]
  1986. },
  1987. "koopew": {
  1988. name: "Koopew",
  1989. parents: ["dragon", "alien"]
  1990. },
  1991. "nevrean": {
  1992. name: "Nevrean",
  1993. parents: ["avian", "vilous"]
  1994. },
  1995. "vilous": {
  1996. name: "Vilous Species",
  1997. parents: []
  1998. },
  1999. "titanoboa": {
  2000. name: "Titanoboa",
  2001. parents: ["snake"]
  2002. },
  2003. "raichu": {
  2004. name: "Raichu",
  2005. parents: ["pikachu"]
  2006. },
  2007. "taur": {
  2008. name: "Taur",
  2009. parents: []
  2010. },
  2011. "continental-giant-rabbit": {
  2012. name: "Continental Giant Rabbit",
  2013. parents: ["rabbit"]
  2014. },
  2015. "demigryph": {
  2016. name: "Demigryph",
  2017. parents: ["lion", "eagle"]
  2018. },
  2019. "bald-eagle": {
  2020. name: "Bald Eagle",
  2021. parents: ["eagle"]
  2022. },
  2023. "kestrel": {
  2024. name: "Kestrel",
  2025. parents: ["falcon"]
  2026. },
  2027. "mockingbird": {
  2028. name: "Mockingbird",
  2029. parents: ["songbird"]
  2030. },
  2031. "songbird": {
  2032. name: "Songbird",
  2033. parents: ["avian"]
  2034. },
  2035. "bird-of-prey": {
  2036. name: "Bird of Prey",
  2037. parents: ["avian"]
  2038. },
  2039. "marowak": {
  2040. name: "Marowak",
  2041. parents: ["pokemon", "reptile"]
  2042. },
  2043. "joltik": {
  2044. name: "Joltik",
  2045. parents: ["pokemon", "insect"]
  2046. },
  2047. "mink": {
  2048. name: "Mink",
  2049. parents: ["mustelid"]
  2050. },
  2051. "sandcat": {
  2052. name: "Sandcat",
  2053. parents: ["cat"]
  2054. },
  2055. "hrothgar": {
  2056. name: "Hrothgar",
  2057. parents: ["cat"]
  2058. },
  2059. "garchomp": {
  2060. name: "Garchomp",
  2061. parents: ["dragon", "pokemon"]
  2062. },
  2063. "nargacuga": {
  2064. name: "Nargacuga",
  2065. parents: ["monster-hunter"]
  2066. },
  2067. "sable": {
  2068. name: "Sable",
  2069. parents: ["marten"]
  2070. },
  2071. "deino": {
  2072. name: "Deino",
  2073. parents: ["pokemon", "dinosaur"]
  2074. },
  2075. "housecat": {
  2076. name: "Housecat",
  2077. parents: ["cat"]
  2078. },
  2079. "bombay-cat": {
  2080. name: "Bombay Cat",
  2081. parents: ["housecat"]
  2082. },
  2083. "maine-coon": {
  2084. name: "Maine Coon",
  2085. parents: ["housecat"]
  2086. },
  2087. "coelacanth": {
  2088. name: "Coelacanth",
  2089. parents: ["fish"]
  2090. },
  2091. "silvally": {
  2092. name: "Silvally",
  2093. parents: ["legendary-pokemon"]
  2094. },
  2095. "legendary-pokemon": {
  2096. name: "Legendary Pokemon",
  2097. parents: ["pokemon"]
  2098. },
  2099. "great-maccao": {
  2100. name: "Great Maccao",
  2101. parents: ["monster-hunter", "raptor"]
  2102. },
  2103. "shapeshifter": {
  2104. name: "shapeshifter",
  2105. parents: []
  2106. },
  2107. "obstagoon": {
  2108. name: "Obstagoon",
  2109. parents: ["zigzagoon"]
  2110. },
  2111. "thomsons-gazelle": {
  2112. name: "Thomsons Gazelle",
  2113. parents: ["gazelle"]
  2114. },
  2115. "gazelle": {
  2116. name: "Gazelle",
  2117. parents: ["antelope"]
  2118. },
  2119. "monkey": {
  2120. name: "Monkey",
  2121. parents: ["mammal"]
  2122. },
  2123. "serval": {
  2124. name: "Serval",
  2125. parents: ["cat"]
  2126. },
  2127. "swampert": {
  2128. name: "Swampert",
  2129. parents: ["pokemon"]
  2130. },
  2131. "red-fox": {
  2132. name: "Red Fox",
  2133. parents: ["fox"]
  2134. },
  2135. "sliver": {
  2136. name: "Sliver",
  2137. parents: ["alien"]
  2138. },
  2139. "sergix": {
  2140. name: "Sergix",
  2141. parents: ["demon", "sergal", "phoenix"]
  2142. },
  2143. }
  2144. //species
  2145. function getSpeciesInfo(speciesList) {
  2146. let result = new Set();
  2147. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2148. result.add(entry)
  2149. });
  2150. return Array.from(result);
  2151. };
  2152. function getSpeciesInfoHelper(species) {
  2153. if (!speciesData[species]) {
  2154. console.warn(species + " doesn't exist");
  2155. return [];
  2156. }
  2157. if (speciesData[species].parents) {
  2158. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2159. } else {
  2160. return [species];
  2161. }
  2162. }
  2163. characterMakers.push(() => makeCharacter(
  2164. {
  2165. name: "Fen",
  2166. species: ["crux"],
  2167. description: {
  2168. title: "Bio",
  2169. text: "Very furry. Sheds on everything."
  2170. },
  2171. tags: [
  2172. "anthro",
  2173. "goo"
  2174. ]
  2175. },
  2176. {
  2177. front: {
  2178. height: math.unit(12, "feet"),
  2179. weight: math.unit(2400, "lb"),
  2180. preyCapacity: math.unit(1, "people"),
  2181. name: "Front",
  2182. image: {
  2183. source: "./media/characters/fen/front.svg",
  2184. extra: 1804/1562,
  2185. bottom: 205/2009
  2186. },
  2187. extraAttributes: {
  2188. pawSize: {
  2189. name: "Paw Size",
  2190. power: 2,
  2191. type: "area",
  2192. base: math.unit(0.35, "m^2")
  2193. }
  2194. }
  2195. },
  2196. diving: {
  2197. height: math.unit(4.9, "meters"),
  2198. weight: math.unit(2400, "lb"),
  2199. name: "Diving",
  2200. image: {
  2201. source: "./media/characters/fen/diving.svg"
  2202. }
  2203. },
  2204. sleeby: {
  2205. height: math.unit(3.45, "meters"),
  2206. weight: math.unit(2400, "lb"),
  2207. name: "Sleeby",
  2208. image: {
  2209. source: "./media/characters/fen/sleeby.svg"
  2210. }
  2211. },
  2212. goo: {
  2213. height: math.unit(12, "feet"),
  2214. weight: math.unit(3600, "lb"),
  2215. volume: math.unit(1000, "liters"),
  2216. preyCapacity: math.unit(6, "people"),
  2217. name: "Goo",
  2218. image: {
  2219. source: "./media/characters/fen/goo.svg",
  2220. extra: 1307/1071,
  2221. bottom: 134/1441
  2222. }
  2223. },
  2224. gooNsfw: {
  2225. height: math.unit(12, "feet"),
  2226. weight: math.unit(3750, "lb"),
  2227. volume: math.unit(1000, "liters"),
  2228. preyCapacity: math.unit(6, "people"),
  2229. name: "Goo (NSFW)",
  2230. image: {
  2231. source: "./media/characters/fen/goo-nsfw.svg",
  2232. extra: 1875/1734,
  2233. bottom: 122/1997
  2234. }
  2235. },
  2236. maw: {
  2237. height: math.unit(5.03, "feet"),
  2238. name: "Maw",
  2239. image: {
  2240. source: "./media/characters/fen/maw.svg"
  2241. }
  2242. },
  2243. gooCeiling: {
  2244. height: math.unit(6.6, "feet"),
  2245. weight: math.unit(3000, "lb"),
  2246. volume: math.unit(1000, "liters"),
  2247. preyCapacity: math.unit(6, "people"),
  2248. name: "Goo (Ceiling)",
  2249. image: {
  2250. source: "./media/characters/fen/goo-ceiling.svg"
  2251. }
  2252. },
  2253. paw: {
  2254. height: math.unit(3.77, "feet"),
  2255. name: "Paw",
  2256. image: {
  2257. source: "./media/characters/fen/paw.svg"
  2258. },
  2259. extraAttributes: {
  2260. "toeSize": {
  2261. name: "Toe Size",
  2262. power: 2,
  2263. type: "area",
  2264. base: math.unit(0.02875, "m^2")
  2265. },
  2266. "pawSize": {
  2267. name: "Paw Size",
  2268. power: 2,
  2269. type: "area",
  2270. base: math.unit(0.378, "m^2")
  2271. },
  2272. }
  2273. },
  2274. tail: {
  2275. height: math.unit(12.1, "feet"),
  2276. name: "Tail",
  2277. image: {
  2278. source: "./media/characters/fen/tail.svg"
  2279. }
  2280. },
  2281. tailFull: {
  2282. height: math.unit(12.1, "feet"),
  2283. name: "Full Tail",
  2284. image: {
  2285. source: "./media/characters/fen/tail-full.svg"
  2286. }
  2287. },
  2288. back: {
  2289. height: math.unit(12, "feet"),
  2290. weight: math.unit(2400, "lb"),
  2291. name: "Back",
  2292. image: {
  2293. source: "./media/characters/fen/back.svg",
  2294. },
  2295. info: {
  2296. description: {
  2297. mode: "append",
  2298. text: "\n\nHe is not currently looking at you."
  2299. }
  2300. }
  2301. },
  2302. full: {
  2303. height: math.unit(1.85, "meter"),
  2304. weight: math.unit(3200, "lb"),
  2305. name: "Full",
  2306. image: {
  2307. source: "./media/characters/fen/full.svg",
  2308. extra: 1133/859,
  2309. bottom: 145/1278
  2310. },
  2311. info: {
  2312. description: {
  2313. mode: "append",
  2314. text: "\n\nMunch."
  2315. }
  2316. }
  2317. },
  2318. gooLounging: {
  2319. height: math.unit(4.53, "feet"),
  2320. weight: math.unit(3000, "lb"),
  2321. preyCapacity: math.unit(6, "people"),
  2322. name: "Goo (Lounging)",
  2323. image: {
  2324. source: "./media/characters/fen/goo-lounging.svg",
  2325. bottom: 116 / 613
  2326. }
  2327. },
  2328. lounging: {
  2329. height: math.unit(10.52, "feet"),
  2330. weight: math.unit(2400, "lb"),
  2331. name: "Lounging",
  2332. image: {
  2333. source: "./media/characters/fen/lounging.svg"
  2334. }
  2335. },
  2336. },
  2337. [
  2338. {
  2339. name: "Small",
  2340. height: math.unit(2.2428, "meter")
  2341. },
  2342. {
  2343. name: "Normal",
  2344. height: math.unit(12, "feet"),
  2345. default: true,
  2346. },
  2347. {
  2348. name: "Big",
  2349. height: math.unit(20, "feet")
  2350. },
  2351. {
  2352. name: "Minimacro",
  2353. height: math.unit(40, "feet"),
  2354. info: {
  2355. description: {
  2356. mode: "append",
  2357. text: "\n\nTOO DAMN BIG"
  2358. }
  2359. }
  2360. },
  2361. {
  2362. name: "Macro",
  2363. height: math.unit(100, "feet"),
  2364. info: {
  2365. description: {
  2366. mode: "append",
  2367. text: "\n\nTOO DAMN BIG"
  2368. }
  2369. }
  2370. },
  2371. {
  2372. name: "Megamacro",
  2373. height: math.unit(2, "miles")
  2374. },
  2375. {
  2376. name: "Gigamacro",
  2377. height: math.unit(10, "earths")
  2378. },
  2379. ]
  2380. ))
  2381. characterMakers.push(() => makeCharacter(
  2382. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2383. {
  2384. front: {
  2385. height: math.unit(183, "cm"),
  2386. weight: math.unit(80, "kg"),
  2387. name: "Front",
  2388. image: {
  2389. source: "./media/characters/sofia-fluttertail/front.svg",
  2390. bottom: 0.01,
  2391. extra: 2154 / 2081
  2392. }
  2393. },
  2394. frontAlt: {
  2395. height: math.unit(183, "cm"),
  2396. weight: math.unit(80, "kg"),
  2397. name: "Front (alt)",
  2398. image: {
  2399. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2400. }
  2401. },
  2402. back: {
  2403. height: math.unit(183, "cm"),
  2404. weight: math.unit(80, "kg"),
  2405. name: "Back",
  2406. image: {
  2407. source: "./media/characters/sofia-fluttertail/back.svg"
  2408. }
  2409. },
  2410. kneeling: {
  2411. height: math.unit(125, "cm"),
  2412. weight: math.unit(80, "kg"),
  2413. name: "Kneeling",
  2414. image: {
  2415. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2416. extra: 1033 / 977,
  2417. bottom: 23.7 / 1057
  2418. }
  2419. },
  2420. maw: {
  2421. height: math.unit(183 / 5, "cm"),
  2422. name: "Maw",
  2423. image: {
  2424. source: "./media/characters/sofia-fluttertail/maw.svg"
  2425. }
  2426. },
  2427. mawcloseup: {
  2428. height: math.unit(183 / 5 * 0.41, "cm"),
  2429. name: "Maw (Closeup)",
  2430. image: {
  2431. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2432. }
  2433. },
  2434. paws: {
  2435. height: math.unit(1.17, "feet"),
  2436. name: "Paws",
  2437. image: {
  2438. source: "./media/characters/sofia-fluttertail/paws.svg",
  2439. extra: 851 / 851,
  2440. bottom: 17 / 868
  2441. }
  2442. },
  2443. },
  2444. [
  2445. {
  2446. name: "Normal",
  2447. height: math.unit(1.83, "meter")
  2448. },
  2449. {
  2450. name: "Size Thief",
  2451. height: math.unit(18, "feet")
  2452. },
  2453. {
  2454. name: "50 Foot Collie",
  2455. height: math.unit(50, "feet")
  2456. },
  2457. {
  2458. name: "Macro",
  2459. height: math.unit(96, "feet"),
  2460. default: true
  2461. },
  2462. {
  2463. name: "Megamerger",
  2464. height: math.unit(650, "feet")
  2465. },
  2466. ]
  2467. ))
  2468. characterMakers.push(() => makeCharacter(
  2469. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2470. {
  2471. front: {
  2472. height: math.unit(7, "feet"),
  2473. weight: math.unit(100, "kg"),
  2474. name: "Front",
  2475. image: {
  2476. source: "./media/characters/march/front.svg",
  2477. extra: 1992/1851,
  2478. bottom: 39/2031
  2479. }
  2480. },
  2481. foot: {
  2482. height: math.unit(0.9, "feet"),
  2483. name: "Foot",
  2484. image: {
  2485. source: "./media/characters/march/foot.svg"
  2486. }
  2487. },
  2488. },
  2489. [
  2490. {
  2491. name: "Normal",
  2492. height: math.unit(7.9, "feet")
  2493. },
  2494. {
  2495. name: "Macro",
  2496. height: math.unit(220, "meters")
  2497. },
  2498. {
  2499. name: "Megamacro",
  2500. height: math.unit(2.98, "km"),
  2501. default: true
  2502. },
  2503. {
  2504. name: "Gigamacro",
  2505. height: math.unit(15963, "km")
  2506. },
  2507. {
  2508. name: "Teramacro",
  2509. height: math.unit(2980000000, "km")
  2510. },
  2511. {
  2512. name: "Examacro",
  2513. height: math.unit(250, "parsecs")
  2514. },
  2515. ]
  2516. ))
  2517. characterMakers.push(() => makeCharacter(
  2518. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2519. {
  2520. front: {
  2521. height: math.unit(6, "feet"),
  2522. weight: math.unit(60, "kg"),
  2523. name: "Front",
  2524. image: {
  2525. source: "./media/characters/noir/front.svg",
  2526. extra: 1,
  2527. bottom: 0.032
  2528. }
  2529. },
  2530. },
  2531. [
  2532. {
  2533. name: "Normal",
  2534. height: math.unit(6.6, "feet")
  2535. },
  2536. {
  2537. name: "Macro",
  2538. height: math.unit(500, "feet")
  2539. },
  2540. {
  2541. name: "Megamacro",
  2542. height: math.unit(2.5, "km"),
  2543. default: true
  2544. },
  2545. {
  2546. name: "Gigamacro",
  2547. height: math.unit(22500, "km")
  2548. },
  2549. {
  2550. name: "Teramacro",
  2551. height: math.unit(2500000000, "km")
  2552. },
  2553. {
  2554. name: "Examacro",
  2555. height: math.unit(200, "parsecs")
  2556. },
  2557. ]
  2558. ))
  2559. characterMakers.push(() => makeCharacter(
  2560. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2561. {
  2562. front: {
  2563. height: math.unit(7, "feet"),
  2564. weight: math.unit(100, "kg"),
  2565. name: "Front",
  2566. image: {
  2567. source: "./media/characters/okuri/front.svg",
  2568. extra: 739/665,
  2569. bottom: 39/778
  2570. }
  2571. },
  2572. back: {
  2573. height: math.unit(7, "feet"),
  2574. weight: math.unit(100, "kg"),
  2575. name: "Back",
  2576. image: {
  2577. source: "./media/characters/okuri/back.svg",
  2578. extra: 734/653,
  2579. bottom: 13/747
  2580. }
  2581. },
  2582. sitting: {
  2583. height: math.unit(2.95, "feet"),
  2584. weight: math.unit(100, "kg"),
  2585. name: "Sitting",
  2586. image: {
  2587. source: "./media/characters/okuri/sitting.svg",
  2588. extra: 370/318,
  2589. bottom: 99/469
  2590. }
  2591. },
  2592. },
  2593. [
  2594. {
  2595. name: "Smallest",
  2596. height: math.unit(5 + 2/12, "feet")
  2597. },
  2598. {
  2599. name: "Smaller",
  2600. height: math.unit(300, "feet")
  2601. },
  2602. {
  2603. name: "Small",
  2604. height: math.unit(1000, "feet")
  2605. },
  2606. {
  2607. name: "Macro",
  2608. height: math.unit(1, "mile")
  2609. },
  2610. {
  2611. name: "Mega Macro (Small)",
  2612. height: math.unit(20, "km")
  2613. },
  2614. {
  2615. name: "Mega Macro (Large)",
  2616. height: math.unit(600, "km")
  2617. },
  2618. {
  2619. name: "Giga Macro",
  2620. height: math.unit(10000, "km")
  2621. },
  2622. {
  2623. name: "Normal",
  2624. height: math.unit(577560, "km"),
  2625. default: true
  2626. },
  2627. {
  2628. name: "Large",
  2629. height: math.unit(4, "galaxies")
  2630. },
  2631. {
  2632. name: "Largest",
  2633. height: math.unit(15, "multiverses")
  2634. },
  2635. ]
  2636. ))
  2637. characterMakers.push(() => makeCharacter(
  2638. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2639. {
  2640. front: {
  2641. height: math.unit(7, "feet"),
  2642. weight: math.unit(100, "kg"),
  2643. name: "Front",
  2644. image: {
  2645. source: "./media/characters/manny/front.svg",
  2646. extra: 1,
  2647. bottom: 0.06
  2648. }
  2649. },
  2650. back: {
  2651. height: math.unit(7, "feet"),
  2652. weight: math.unit(100, "kg"),
  2653. name: "Back",
  2654. image: {
  2655. source: "./media/characters/manny/back.svg",
  2656. extra: 1,
  2657. bottom: 0.014
  2658. }
  2659. },
  2660. },
  2661. [
  2662. {
  2663. name: "Normal",
  2664. height: math.unit(7, "feet"),
  2665. },
  2666. {
  2667. name: "Macro",
  2668. height: math.unit(78, "feet"),
  2669. default: true
  2670. },
  2671. {
  2672. name: "Macro+",
  2673. height: math.unit(300, "meters")
  2674. },
  2675. {
  2676. name: "Macro++",
  2677. height: math.unit(2400, "meters")
  2678. },
  2679. {
  2680. name: "Megamacro",
  2681. height: math.unit(5167, "meters")
  2682. },
  2683. {
  2684. name: "Gigamacro",
  2685. height: math.unit(41769, "miles")
  2686. },
  2687. ]
  2688. ))
  2689. characterMakers.push(() => makeCharacter(
  2690. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2691. {
  2692. front: {
  2693. height: math.unit(7, "feet"),
  2694. weight: math.unit(100, "kg"),
  2695. name: "Front",
  2696. image: {
  2697. source: "./media/characters/adake/front-1.svg"
  2698. }
  2699. },
  2700. frontAlt: {
  2701. height: math.unit(7, "feet"),
  2702. weight: math.unit(100, "kg"),
  2703. name: "Front (Alt)",
  2704. image: {
  2705. source: "./media/characters/adake/front-2.svg",
  2706. extra: 1,
  2707. bottom: 0.01
  2708. }
  2709. },
  2710. back: {
  2711. height: math.unit(7, "feet"),
  2712. weight: math.unit(100, "kg"),
  2713. name: "Back",
  2714. image: {
  2715. source: "./media/characters/adake/back.svg",
  2716. }
  2717. },
  2718. kneel: {
  2719. height: math.unit(5.385, "feet"),
  2720. weight: math.unit(100, "kg"),
  2721. name: "Kneeling",
  2722. image: {
  2723. source: "./media/characters/adake/kneel.svg",
  2724. bottom: 0.052
  2725. }
  2726. },
  2727. },
  2728. [
  2729. {
  2730. name: "Normal",
  2731. height: math.unit(7, "feet"),
  2732. },
  2733. {
  2734. name: "Macro",
  2735. height: math.unit(78, "feet"),
  2736. default: true
  2737. },
  2738. {
  2739. name: "Macro+",
  2740. height: math.unit(300, "meters")
  2741. },
  2742. {
  2743. name: "Macro++",
  2744. height: math.unit(2400, "meters")
  2745. },
  2746. {
  2747. name: "Megamacro",
  2748. height: math.unit(5167, "meters")
  2749. },
  2750. {
  2751. name: "Gigamacro",
  2752. height: math.unit(41769, "miles")
  2753. },
  2754. ]
  2755. ))
  2756. characterMakers.push(() => makeCharacter(
  2757. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2758. {
  2759. front: {
  2760. height: math.unit(1.65, "meters"),
  2761. weight: math.unit(50, "kg"),
  2762. name: "Front",
  2763. image: {
  2764. source: "./media/characters/elijah/front.svg",
  2765. extra: 858 / 830,
  2766. bottom: 95.5 / 953.8559
  2767. }
  2768. },
  2769. back: {
  2770. height: math.unit(1.65, "meters"),
  2771. weight: math.unit(50, "kg"),
  2772. name: "Back",
  2773. image: {
  2774. source: "./media/characters/elijah/back.svg",
  2775. extra: 895 / 850,
  2776. bottom: 5.3 / 897.956
  2777. }
  2778. },
  2779. frontNsfw: {
  2780. height: math.unit(1.65, "meters"),
  2781. weight: math.unit(50, "kg"),
  2782. name: "Front (NSFW)",
  2783. image: {
  2784. source: "./media/characters/elijah/front-nsfw.svg",
  2785. extra: 858 / 830,
  2786. bottom: 95.5 / 953.8559
  2787. }
  2788. },
  2789. backNsfw: {
  2790. height: math.unit(1.65, "meters"),
  2791. weight: math.unit(50, "kg"),
  2792. name: "Back (NSFW)",
  2793. image: {
  2794. source: "./media/characters/elijah/back-nsfw.svg",
  2795. extra: 895 / 850,
  2796. bottom: 5.3 / 897.956
  2797. }
  2798. },
  2799. dick: {
  2800. height: math.unit(1, "feet"),
  2801. name: "Dick",
  2802. image: {
  2803. source: "./media/characters/elijah/dick.svg"
  2804. }
  2805. },
  2806. beakOpen: {
  2807. height: math.unit(1.25, "feet"),
  2808. name: "Beak (Open)",
  2809. image: {
  2810. source: "./media/characters/elijah/beak-open.svg"
  2811. }
  2812. },
  2813. beakShut: {
  2814. height: math.unit(1.25, "feet"),
  2815. name: "Beak (Shut)",
  2816. image: {
  2817. source: "./media/characters/elijah/beak-shut.svg"
  2818. }
  2819. },
  2820. footFlexing: {
  2821. height: math.unit(1.61, "feet"),
  2822. name: "Foot (Flexing)",
  2823. image: {
  2824. source: "./media/characters/elijah/foot-flexing.svg"
  2825. }
  2826. },
  2827. footStepping: {
  2828. height: math.unit(1.44, "feet"),
  2829. name: "Foot (Stepping)",
  2830. image: {
  2831. source: "./media/characters/elijah/foot-stepping.svg"
  2832. }
  2833. },
  2834. plantigradeLeg: {
  2835. height: math.unit(2.34, "feet"),
  2836. name: "Plantigrade Leg",
  2837. image: {
  2838. source: "./media/characters/elijah/plantigrade-leg.svg"
  2839. }
  2840. },
  2841. plantigradeFootLeft: {
  2842. height: math.unit(0.9, "feet"),
  2843. name: "Plantigrade Foot (Left)",
  2844. image: {
  2845. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2846. }
  2847. },
  2848. plantigradeFootRight: {
  2849. height: math.unit(0.9, "feet"),
  2850. name: "Plantigrade Foot (Right)",
  2851. image: {
  2852. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2853. }
  2854. },
  2855. },
  2856. [
  2857. {
  2858. name: "Normal",
  2859. height: math.unit(1.65, "meters")
  2860. },
  2861. {
  2862. name: "Macro",
  2863. height: math.unit(55, "meters"),
  2864. default: true
  2865. },
  2866. {
  2867. name: "Macro+",
  2868. height: math.unit(105, "meters")
  2869. },
  2870. ]
  2871. ))
  2872. characterMakers.push(() => makeCharacter(
  2873. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2874. {
  2875. front: {
  2876. height: math.unit(7 + 2/12, "feet"),
  2877. weight: math.unit(320, "kg"),
  2878. preyCapacity: math.unit(0.276549935, "people"),
  2879. name: "Front",
  2880. image: {
  2881. source: "./media/characters/rai/front.svg",
  2882. extra: 1802/1696,
  2883. bottom: 68/1870
  2884. },
  2885. form: "anthro",
  2886. default: true
  2887. },
  2888. frontDressed: {
  2889. height: math.unit(7 + 2/12, "feet"),
  2890. weight: math.unit(320, "kg"),
  2891. preyCapacity: math.unit(0.276549935, "people"),
  2892. name: "Front (Dressed)",
  2893. image: {
  2894. source: "./media/characters/rai/front-dressed.svg",
  2895. extra: 1802/1696,
  2896. bottom: 68/1870
  2897. },
  2898. form: "anthro"
  2899. },
  2900. side: {
  2901. height: math.unit(7 + 2/12, "feet"),
  2902. weight: math.unit(320, "kg"),
  2903. preyCapacity: math.unit(0.276549935, "people"),
  2904. name: "Side",
  2905. image: {
  2906. source: "./media/characters/rai/side.svg",
  2907. extra: 1789/1710,
  2908. bottom: 115/1904
  2909. },
  2910. form: "anthro"
  2911. },
  2912. back: {
  2913. height: math.unit(7 + 2/12, "feet"),
  2914. weight: math.unit(320, "kg"),
  2915. preyCapacity: math.unit(0.276549935, "people"),
  2916. name: "Back",
  2917. image: {
  2918. source: "./media/characters/rai/back.svg",
  2919. extra: 1770/1707,
  2920. bottom: 28/1798
  2921. },
  2922. form: "anthro"
  2923. },
  2924. feral: {
  2925. height: math.unit(9.5, "feet"),
  2926. weight: math.unit(640, "kg"),
  2927. preyCapacity: math.unit(4, "people"),
  2928. name: "Feral",
  2929. image: {
  2930. source: "./media/characters/rai/feral.svg",
  2931. extra: 945/553,
  2932. bottom: 176/1121
  2933. },
  2934. form: "feral",
  2935. default: true
  2936. },
  2937. dragon: {
  2938. height: math.unit(23, "feet"),
  2939. weight: math.unit(50000, "lb"),
  2940. name: "Dragon",
  2941. image: {
  2942. source: "./media/characters/rai/dragon.svg",
  2943. extra: 2498 / 2030,
  2944. bottom: 85.2 / 2584
  2945. },
  2946. form: "dragon",
  2947. default: true
  2948. },
  2949. maw: {
  2950. height: math.unit(1.69, "feet"),
  2951. name: "Maw",
  2952. image: {
  2953. source: "./media/characters/rai/maw.svg"
  2954. },
  2955. form: "anthro"
  2956. },
  2957. },
  2958. [
  2959. {
  2960. name: "Normal",
  2961. height: math.unit(7 + 2/12, "feet"),
  2962. form: "anthro"
  2963. },
  2964. {
  2965. name: "Big",
  2966. height: math.unit(11, "feet"),
  2967. form: "anthro"
  2968. },
  2969. {
  2970. name: "Minimacro",
  2971. height: math.unit(77, "feet"),
  2972. form: "anthro"
  2973. },
  2974. {
  2975. name: "Macro",
  2976. height: math.unit(302, "feet"),
  2977. default: true,
  2978. form: "anthro"
  2979. },
  2980. {
  2981. name: "Normal",
  2982. height: math.unit(9.5, "feet"),
  2983. form: "feral",
  2984. default: true
  2985. },
  2986. {
  2987. name: "Normal",
  2988. height: math.unit(23, "feet"),
  2989. form: "dragon",
  2990. default: true
  2991. }
  2992. ],
  2993. {
  2994. "anthro": {
  2995. name: "Anthro",
  2996. default: true
  2997. },
  2998. "feral": {
  2999. name: "Feral",
  3000. },
  3001. "dragon": {
  3002. name: "Dragon",
  3003. },
  3004. }
  3005. ))
  3006. characterMakers.push(() => makeCharacter(
  3007. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3008. {
  3009. frontDressed: {
  3010. height: math.unit(216, "feet"),
  3011. weight: math.unit(7000000, "lb"),
  3012. preyCapacity: math.unit(1321, "people"),
  3013. name: "Front (Dressed)",
  3014. image: {
  3015. source: "./media/characters/jazzy/front-dressed.svg",
  3016. extra: 2738 / 2651,
  3017. bottom: 41.8 / 2786
  3018. }
  3019. },
  3020. backDressed: {
  3021. height: math.unit(216, "feet"),
  3022. weight: math.unit(7000000, "lb"),
  3023. preyCapacity: math.unit(1321, "people"),
  3024. name: "Back (Dressed)",
  3025. image: {
  3026. source: "./media/characters/jazzy/back-dressed.svg",
  3027. extra: 2775 / 2673,
  3028. bottom: 36.8 / 2817
  3029. }
  3030. },
  3031. front: {
  3032. height: math.unit(216, "feet"),
  3033. weight: math.unit(7000000, "lb"),
  3034. preyCapacity: math.unit(1321, "people"),
  3035. name: "Front",
  3036. image: {
  3037. source: "./media/characters/jazzy/front.svg",
  3038. extra: 2738 / 2651,
  3039. bottom: 41.8 / 2786
  3040. }
  3041. },
  3042. back: {
  3043. height: math.unit(216, "feet"),
  3044. weight: math.unit(7000000, "lb"),
  3045. preyCapacity: math.unit(1321, "people"),
  3046. name: "Back",
  3047. image: {
  3048. source: "./media/characters/jazzy/back.svg",
  3049. extra: 2775 / 2673,
  3050. bottom: 36.8 / 2817
  3051. }
  3052. },
  3053. maw: {
  3054. height: math.unit(20, "feet"),
  3055. name: "Maw",
  3056. image: {
  3057. source: "./media/characters/jazzy/maw.svg"
  3058. }
  3059. },
  3060. paws: {
  3061. height: math.unit(27.5, "feet"),
  3062. name: "Paws",
  3063. image: {
  3064. source: "./media/characters/jazzy/paws.svg"
  3065. }
  3066. },
  3067. eye: {
  3068. height: math.unit(4.4, "feet"),
  3069. name: "Eye",
  3070. image: {
  3071. source: "./media/characters/jazzy/eye.svg"
  3072. }
  3073. },
  3074. droneOffense: {
  3075. height: math.unit(9.5, "inches"),
  3076. name: "Drone (Offense)",
  3077. image: {
  3078. source: "./media/characters/jazzy/drone-offense.svg"
  3079. }
  3080. },
  3081. droneRecon: {
  3082. height: math.unit(9.5, "inches"),
  3083. name: "Drone (Recon)",
  3084. image: {
  3085. source: "./media/characters/jazzy/drone-recon.svg"
  3086. }
  3087. },
  3088. droneDefense: {
  3089. height: math.unit(9.5, "inches"),
  3090. name: "Drone (Defense)",
  3091. image: {
  3092. source: "./media/characters/jazzy/drone-defense.svg"
  3093. }
  3094. },
  3095. },
  3096. [
  3097. {
  3098. name: "Macro",
  3099. height: math.unit(216, "feet"),
  3100. default: true
  3101. },
  3102. ]
  3103. ))
  3104. characterMakers.push(() => makeCharacter(
  3105. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3106. {
  3107. front: {
  3108. height: math.unit(9 + 6/12, "feet"),
  3109. weight: math.unit(700, "lb"),
  3110. name: "Front",
  3111. image: {
  3112. source: "./media/characters/flamm/front.svg",
  3113. extra: 1751/1632,
  3114. bottom: 46/1797
  3115. }
  3116. },
  3117. buff: {
  3118. height: math.unit(9 + 6/12, "feet"),
  3119. weight: math.unit(950, "lb"),
  3120. name: "Buff",
  3121. image: {
  3122. source: "./media/characters/flamm/buff.svg",
  3123. extra: 3018/2874,
  3124. bottom: 221/3239
  3125. }
  3126. },
  3127. },
  3128. [
  3129. {
  3130. name: "Normal",
  3131. height: math.unit(9.5, "feet")
  3132. },
  3133. {
  3134. name: "Macro",
  3135. height: math.unit(200, "feet"),
  3136. default: true
  3137. },
  3138. ]
  3139. ))
  3140. characterMakers.push(() => makeCharacter(
  3141. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3142. {
  3143. front: {
  3144. height: math.unit(5 + 3/12, "feet"),
  3145. weight: math.unit(60, "kg"),
  3146. name: "Front",
  3147. image: {
  3148. source: "./media/characters/zephiro/front.svg",
  3149. extra: 1873/1761,
  3150. bottom: 147/2020
  3151. }
  3152. },
  3153. side: {
  3154. height: math.unit(5 + 3/12, "feet"),
  3155. weight: math.unit(60, "kg"),
  3156. name: "Side",
  3157. image: {
  3158. source: "./media/characters/zephiro/side.svg",
  3159. extra: 1929/1827,
  3160. bottom: 65/1994
  3161. }
  3162. },
  3163. back: {
  3164. height: math.unit(5 + 3/12, "feet"),
  3165. weight: math.unit(60, "kg"),
  3166. name: "Back",
  3167. image: {
  3168. source: "./media/characters/zephiro/back.svg",
  3169. extra: 1926/1816,
  3170. bottom: 41/1967
  3171. }
  3172. },
  3173. hand: {
  3174. height: math.unit(0.68, "feet"),
  3175. name: "Hand",
  3176. image: {
  3177. source: "./media/characters/zephiro/hand.svg"
  3178. }
  3179. },
  3180. paw: {
  3181. height: math.unit(1, "feet"),
  3182. name: "Paw",
  3183. image: {
  3184. source: "./media/characters/zephiro/paw.svg"
  3185. }
  3186. },
  3187. beans: {
  3188. height: math.unit(0.93, "feet"),
  3189. name: "Beans",
  3190. image: {
  3191. source: "./media/characters/zephiro/beans.svg"
  3192. }
  3193. },
  3194. },
  3195. [
  3196. {
  3197. name: "Micro",
  3198. height: math.unit(3, "inches")
  3199. },
  3200. {
  3201. name: "Normal",
  3202. height: math.unit(5 + 3 / 12, "feet"),
  3203. default: true
  3204. },
  3205. {
  3206. name: "Macro",
  3207. height: math.unit(118, "feet")
  3208. },
  3209. ]
  3210. ))
  3211. characterMakers.push(() => makeCharacter(
  3212. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3213. {
  3214. front: {
  3215. height: math.unit(5, "feet"),
  3216. weight: math.unit(90, "kg"),
  3217. preyCapacity: math.unit(14, "people"),
  3218. name: "Front",
  3219. image: {
  3220. source: "./media/characters/fory/front.svg",
  3221. extra: 2862 / 2674,
  3222. bottom: 180 / 3043.8
  3223. },
  3224. form: "weaselbun",
  3225. default: true,
  3226. extraAttributes: {
  3227. "pawSize": {
  3228. name: "Paw Size",
  3229. power: 2,
  3230. type: "area",
  3231. base: math.unit(0.1596, "m^2")
  3232. },
  3233. "pawLength": {
  3234. name: "Paw Length",
  3235. power: 1,
  3236. type: "length",
  3237. base: math.unit(0.7, "m")
  3238. }
  3239. }
  3240. },
  3241. back: {
  3242. height: math.unit(5, "feet"),
  3243. weight: math.unit(90, "kg"),
  3244. preyCapacity: math.unit(14, "people"),
  3245. name: "Back",
  3246. image: {
  3247. source: "./media/characters/fory/back.svg",
  3248. extra: 1790/1672,
  3249. bottom: 84/1874
  3250. },
  3251. form: "weaselbun",
  3252. extraAttributes: {
  3253. "pawSize": {
  3254. name: "Paw Size",
  3255. power: 2,
  3256. type: "area",
  3257. base: math.unit(0.1596, "m^2")
  3258. },
  3259. "pawLength": {
  3260. name: "Paw Length",
  3261. power: 1,
  3262. type: "length",
  3263. base: math.unit(0.7, "m")
  3264. }
  3265. }
  3266. },
  3267. paw: {
  3268. height: math.unit(2.14, "feet"),
  3269. name: "Paw",
  3270. image: {
  3271. source: "./media/characters/fory/paw.svg"
  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.48, "m")
  3286. }
  3287. }
  3288. },
  3289. bunBack: {
  3290. height: math.unit(3, "feet"),
  3291. weight: math.unit(20, "kg"),
  3292. preyCapacity: math.unit(3, "people"),
  3293. name: "Back",
  3294. image: {
  3295. source: "./media/characters/fory/bun-back.svg",
  3296. extra: 1749/1564,
  3297. bottom: 246/1995
  3298. },
  3299. form: "bun",
  3300. default: true,
  3301. extraAttributes: {
  3302. "pawSize": {
  3303. name: "Paw Size",
  3304. power: 2,
  3305. type: "area",
  3306. base: math.unit(0.072, "m^2")
  3307. },
  3308. "pawLength": {
  3309. name: "Paw Length",
  3310. power: 1,
  3311. type: "length",
  3312. base: math.unit(0.45, "m")
  3313. }
  3314. }
  3315. },
  3316. },
  3317. [
  3318. {
  3319. name: "Normal",
  3320. height: math.unit(5, "feet"),
  3321. form: "weaselbun"
  3322. },
  3323. {
  3324. name: "Macro",
  3325. height: math.unit(50, "feet"),
  3326. default: true,
  3327. form: "weaselbun"
  3328. },
  3329. {
  3330. name: "Megamacro",
  3331. height: math.unit(10, "miles"),
  3332. form: "weaselbun"
  3333. },
  3334. {
  3335. name: "Gigamacro",
  3336. height: math.unit(5, "earths"),
  3337. form: "weaselbun"
  3338. },
  3339. {
  3340. name: "Normal",
  3341. height: math.unit(3, "feet"),
  3342. default: true,
  3343. form: "bun"
  3344. },
  3345. {
  3346. name: "Fun-Size",
  3347. height: math.unit(12, "feet"),
  3348. form: "bun"
  3349. },
  3350. {
  3351. name: "Macro",
  3352. height: math.unit(100, "feet"),
  3353. form: "bun"
  3354. },
  3355. {
  3356. name: "Planetary",
  3357. height: math.unit(3, "earths"),
  3358. form: "bun"
  3359. },
  3360. ],
  3361. {
  3362. "weaselbun": {
  3363. name: "Weaselbun",
  3364. default: true
  3365. },
  3366. "bun": {
  3367. name: "Bun",
  3368. },
  3369. }
  3370. ))
  3371. characterMakers.push(() => makeCharacter(
  3372. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3373. {
  3374. front: {
  3375. height: math.unit(7, "feet"),
  3376. weight: math.unit(90, "kg"),
  3377. name: "Front",
  3378. image: {
  3379. source: "./media/characters/kurrikage/front.svg",
  3380. extra: 1845/1733,
  3381. bottom: 119/1964
  3382. }
  3383. },
  3384. back: {
  3385. height: math.unit(7, "feet"),
  3386. weight: math.unit(90, "kg"),
  3387. name: "Back",
  3388. image: {
  3389. source: "./media/characters/kurrikage/back.svg",
  3390. extra: 1790/1677,
  3391. bottom: 61/1851
  3392. }
  3393. },
  3394. dressed: {
  3395. height: math.unit(7, "feet"),
  3396. weight: math.unit(90, "kg"),
  3397. name: "Dressed",
  3398. image: {
  3399. source: "./media/characters/kurrikage/dressed.svg",
  3400. extra: 1845/1733,
  3401. bottom: 119/1964
  3402. }
  3403. },
  3404. foot: {
  3405. height: math.unit(1.5, "feet"),
  3406. name: "Foot",
  3407. image: {
  3408. source: "./media/characters/kurrikage/foot.svg"
  3409. }
  3410. },
  3411. staff: {
  3412. height: math.unit(6.7, "feet"),
  3413. name: "Staff",
  3414. image: {
  3415. source: "./media/characters/kurrikage/staff.svg"
  3416. }
  3417. },
  3418. peek: {
  3419. height: math.unit(1.05, "feet"),
  3420. name: "Peeking",
  3421. image: {
  3422. source: "./media/characters/kurrikage/peek.svg",
  3423. bottom: 0.08
  3424. }
  3425. },
  3426. },
  3427. [
  3428. {
  3429. name: "Normal",
  3430. height: math.unit(12, "feet"),
  3431. default: true
  3432. },
  3433. {
  3434. name: "Big",
  3435. height: math.unit(20, "feet")
  3436. },
  3437. {
  3438. name: "Macro",
  3439. height: math.unit(500, "feet")
  3440. },
  3441. {
  3442. name: "Megamacro",
  3443. height: math.unit(20, "miles")
  3444. },
  3445. ]
  3446. ))
  3447. characterMakers.push(() => makeCharacter(
  3448. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3449. {
  3450. front: {
  3451. height: math.unit(6, "feet"),
  3452. weight: math.unit(75, "kg"),
  3453. name: "Front",
  3454. image: {
  3455. source: "./media/characters/shingo/front.svg",
  3456. extra: 1900/1825,
  3457. bottom: 82/1982
  3458. }
  3459. },
  3460. side: {
  3461. height: math.unit(6, "feet"),
  3462. weight: math.unit(75, "kg"),
  3463. name: "Side",
  3464. image: {
  3465. source: "./media/characters/shingo/side.svg",
  3466. extra: 1930/1865,
  3467. bottom: 16/1946
  3468. }
  3469. },
  3470. back: {
  3471. height: math.unit(6, "feet"),
  3472. weight: math.unit(75, "kg"),
  3473. name: "Back",
  3474. image: {
  3475. source: "./media/characters/shingo/back.svg",
  3476. extra: 1922/1852,
  3477. bottom: 16/1938
  3478. }
  3479. },
  3480. frontDressed: {
  3481. height: math.unit(6, "feet"),
  3482. weight: math.unit(150, "lb"),
  3483. name: "Front-dressed",
  3484. image: {
  3485. source: "./media/characters/shingo/front-dressed.svg",
  3486. extra: 1900/1825,
  3487. bottom: 82/1982
  3488. }
  3489. },
  3490. paw: {
  3491. height: math.unit(1.29, "feet"),
  3492. name: "Paw",
  3493. image: {
  3494. source: "./media/characters/shingo/paw.svg"
  3495. }
  3496. },
  3497. hand: {
  3498. height: math.unit(1.07, "feet"),
  3499. name: "Hand",
  3500. image: {
  3501. source: "./media/characters/shingo/hand.svg"
  3502. }
  3503. },
  3504. frontAlt: {
  3505. height: math.unit(6, "feet"),
  3506. weight: math.unit(75, "kg"),
  3507. name: "Front (Alt)",
  3508. image: {
  3509. source: "./media/characters/shingo/front-alt.svg",
  3510. extra: 3511 / 3338,
  3511. bottom: 0.005
  3512. }
  3513. },
  3514. frontAlt2: {
  3515. height: math.unit(6, "feet"),
  3516. weight: math.unit(75, "kg"),
  3517. name: "Front (Alt 2)",
  3518. image: {
  3519. source: "./media/characters/shingo/front-alt-2.svg",
  3520. extra: 706/681,
  3521. bottom: 11/717
  3522. }
  3523. },
  3524. pawAlt: {
  3525. height: math.unit(1, "feet"),
  3526. name: "Paw (Alt)",
  3527. image: {
  3528. source: "./media/characters/shingo/paw-alt.svg"
  3529. }
  3530. },
  3531. },
  3532. [
  3533. {
  3534. name: "Micro",
  3535. height: math.unit(4, "inches")
  3536. },
  3537. {
  3538. name: "Normal",
  3539. height: math.unit(6, "feet"),
  3540. default: true
  3541. },
  3542. {
  3543. name: "Macro",
  3544. height: math.unit(108, "feet")
  3545. },
  3546. {
  3547. name: "Macro+",
  3548. height: math.unit(1500, "feet")
  3549. },
  3550. ]
  3551. ))
  3552. characterMakers.push(() => makeCharacter(
  3553. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3554. {
  3555. side: {
  3556. height: math.unit(6, "feet"),
  3557. weight: math.unit(75, "kg"),
  3558. name: "Side",
  3559. image: {
  3560. source: "./media/characters/aigey/side.svg"
  3561. }
  3562. },
  3563. },
  3564. [
  3565. {
  3566. name: "Macro",
  3567. height: math.unit(200, "feet"),
  3568. default: true
  3569. },
  3570. {
  3571. name: "Megamacro",
  3572. height: math.unit(100, "miles")
  3573. },
  3574. ]
  3575. )
  3576. )
  3577. characterMakers.push(() => makeCharacter(
  3578. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3579. {
  3580. front: {
  3581. height: math.unit(5 + 5 / 12, "feet"),
  3582. weight: math.unit(75, "kg"),
  3583. name: "Front",
  3584. image: {
  3585. source: "./media/characters/natasha/front.svg",
  3586. extra: 859 / 824,
  3587. bottom: 23 / 879.6
  3588. }
  3589. },
  3590. frontNsfw: {
  3591. height: math.unit(5 + 5 / 12, "feet"),
  3592. weight: math.unit(75, "kg"),
  3593. name: "Front (NSFW)",
  3594. image: {
  3595. source: "./media/characters/natasha/front-nsfw.svg",
  3596. extra: 859 / 824,
  3597. bottom: 23 / 879.6
  3598. }
  3599. },
  3600. frontErect: {
  3601. height: math.unit(5 + 5 / 12, "feet"),
  3602. weight: math.unit(75, "kg"),
  3603. name: "Front (Erect)",
  3604. image: {
  3605. source: "./media/characters/natasha/front-erect.svg",
  3606. extra: 859 / 824,
  3607. bottom: 23 / 879.6
  3608. }
  3609. },
  3610. back: {
  3611. height: math.unit(5 + 5 / 12, "feet"),
  3612. weight: math.unit(75, "kg"),
  3613. name: "Back",
  3614. image: {
  3615. source: "./media/characters/natasha/back.svg",
  3616. extra: 887.9 / 852.6,
  3617. bottom: 9.7 / 896.4
  3618. }
  3619. },
  3620. backAlt: {
  3621. height: math.unit(5 + 5 / 12, "feet"),
  3622. weight: math.unit(75, "kg"),
  3623. name: "Back (Alt)",
  3624. image: {
  3625. source: "./media/characters/natasha/back-alt.svg",
  3626. extra: 1236.7 / 1192,
  3627. bottom: 22.3 / 1258.2
  3628. }
  3629. },
  3630. dick: {
  3631. height: math.unit(1.772, "feet"),
  3632. name: "Dick",
  3633. image: {
  3634. source: "./media/characters/natasha/dick.svg"
  3635. }
  3636. },
  3637. paw: {
  3638. height: math.unit(0.250, "meters"),
  3639. name: "Paw",
  3640. image: {
  3641. source: "./media/characters/natasha/paw.svg"
  3642. },
  3643. extraAttributes: {
  3644. "toeSize": {
  3645. name: "Toe Size",
  3646. power: 2,
  3647. type: "area",
  3648. base: math.unit(0.0024, "m^2")
  3649. },
  3650. "padSize": {
  3651. name: "Pad Size",
  3652. power: 2,
  3653. type: "area",
  3654. base: math.unit(0.00889, "m^2")
  3655. },
  3656. "pawSize": {
  3657. name: "Paw Size",
  3658. power: 2,
  3659. type: "area",
  3660. base: math.unit(0.023667, "m^2")
  3661. },
  3662. }
  3663. },
  3664. },
  3665. [
  3666. {
  3667. name: "Shortstack",
  3668. height: math.unit(3, "feet"),
  3669. default: true
  3670. },
  3671. {
  3672. name: "Normal",
  3673. height: math.unit(5 + 5 / 12, "feet")
  3674. },
  3675. {
  3676. name: "Large",
  3677. height: math.unit(12, "feet")
  3678. },
  3679. {
  3680. name: "Macro",
  3681. height: math.unit(100, "feet")
  3682. },
  3683. {
  3684. name: "Macro+",
  3685. height: math.unit(260, "feet")
  3686. },
  3687. {
  3688. name: "Macro++",
  3689. height: math.unit(1, "mile")
  3690. },
  3691. ]
  3692. ))
  3693. characterMakers.push(() => makeCharacter(
  3694. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3695. {
  3696. front: {
  3697. height: math.unit(6, "feet"),
  3698. weight: math.unit(75, "kg"),
  3699. name: "Front",
  3700. image: {
  3701. source: "./media/characters/malik/front.svg",
  3702. extra: 1750/1561,
  3703. bottom: 80/1830
  3704. },
  3705. extraAttributes: {
  3706. "toeSize": {
  3707. name: "Toe Size",
  3708. power: 2,
  3709. type: "area",
  3710. base: math.unit(0.0159, "m^2")
  3711. },
  3712. "pawSize": {
  3713. name: "Paw Size",
  3714. power: 2,
  3715. type: "area",
  3716. base: math.unit(0.09834, "m^2")
  3717. },
  3718. }
  3719. },
  3720. side: {
  3721. height: math.unit(6, "feet"),
  3722. weight: math.unit(75, "kg"),
  3723. name: "Side",
  3724. image: {
  3725. source: "./media/characters/malik/side.svg",
  3726. extra: 1802/1685,
  3727. bottom: 42/1844
  3728. },
  3729. extraAttributes: {
  3730. "toeSize": {
  3731. name: "Toe Size",
  3732. power: 2,
  3733. type: "area",
  3734. base: math.unit(0.0159, "m^2")
  3735. },
  3736. "pawSize": {
  3737. name: "Paw Size",
  3738. power: 2,
  3739. type: "area",
  3740. base: math.unit(0.09834, "m^2")
  3741. },
  3742. }
  3743. },
  3744. back: {
  3745. height: math.unit(6, "feet"),
  3746. weight: math.unit(75, "kg"),
  3747. name: "Back",
  3748. image: {
  3749. source: "./media/characters/malik/back.svg",
  3750. extra: 1803/1607,
  3751. bottom: 33/1836
  3752. },
  3753. extraAttributes: {
  3754. "toeSize": {
  3755. name: "Toe Size",
  3756. power: 2,
  3757. type: "area",
  3758. base: math.unit(0.0159, "m^2")
  3759. },
  3760. "pawSize": {
  3761. name: "Paw Size",
  3762. power: 2,
  3763. type: "area",
  3764. base: math.unit(0.09834, "m^2")
  3765. },
  3766. }
  3767. },
  3768. },
  3769. [
  3770. {
  3771. name: "Macro",
  3772. height: math.unit(156, "feet"),
  3773. default: true
  3774. },
  3775. {
  3776. name: "Macro+",
  3777. height: math.unit(1188, "feet")
  3778. },
  3779. ]
  3780. ))
  3781. characterMakers.push(() => makeCharacter(
  3782. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3783. {
  3784. front: {
  3785. height: math.unit(6, "feet"),
  3786. weight: math.unit(75, "kg"),
  3787. name: "Front",
  3788. image: {
  3789. source: "./media/characters/sefer/front.svg",
  3790. extra: 848 / 659,
  3791. bottom: 28.3 / 876.442
  3792. }
  3793. },
  3794. back: {
  3795. height: math.unit(6, "feet"),
  3796. weight: math.unit(75, "kg"),
  3797. name: "Back",
  3798. image: {
  3799. source: "./media/characters/sefer/back.svg",
  3800. extra: 864 / 695,
  3801. bottom: 10 / 871
  3802. }
  3803. },
  3804. frontDressed: {
  3805. height: math.unit(6, "feet"),
  3806. weight: math.unit(75, "kg"),
  3807. name: "Dressed",
  3808. image: {
  3809. source: "./media/characters/sefer/dressed.svg",
  3810. extra: 839 / 653,
  3811. bottom: 37.6 / 878
  3812. }
  3813. },
  3814. },
  3815. [
  3816. {
  3817. name: "Normal",
  3818. height: math.unit(6, "feet"),
  3819. default: true
  3820. },
  3821. {
  3822. name: "Big",
  3823. height: math.unit(8, "meters")
  3824. },
  3825. ]
  3826. ))
  3827. characterMakers.push(() => makeCharacter(
  3828. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3829. {
  3830. body: {
  3831. height: math.unit(2.2428, "meter"),
  3832. weight: math.unit(124.738, "kg"),
  3833. name: "Body",
  3834. image: {
  3835. extra: 1225 / 1050,
  3836. source: "./media/characters/north/front.svg"
  3837. }
  3838. }
  3839. },
  3840. [
  3841. {
  3842. name: "Micro",
  3843. height: math.unit(4, "inches")
  3844. },
  3845. {
  3846. name: "Macro",
  3847. height: math.unit(63, "meters")
  3848. },
  3849. {
  3850. name: "Megamacro",
  3851. height: math.unit(101, "miles"),
  3852. default: true
  3853. }
  3854. ]
  3855. ))
  3856. characterMakers.push(() => makeCharacter(
  3857. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3858. {
  3859. angled: {
  3860. height: math.unit(4, "meter"),
  3861. weight: math.unit(150, "kg"),
  3862. name: "Angled",
  3863. image: {
  3864. source: "./media/characters/talan/angled-sfw.svg",
  3865. bottom: 29 / 3734
  3866. }
  3867. },
  3868. angledNsfw: {
  3869. height: math.unit(4, "meter"),
  3870. weight: math.unit(150, "kg"),
  3871. name: "Angled (NSFW)",
  3872. image: {
  3873. source: "./media/characters/talan/angled-nsfw.svg",
  3874. bottom: 29 / 3734
  3875. }
  3876. },
  3877. frontNsfw: {
  3878. height: math.unit(4, "meter"),
  3879. weight: math.unit(150, "kg"),
  3880. name: "Front (NSFW)",
  3881. image: {
  3882. source: "./media/characters/talan/front-nsfw.svg",
  3883. bottom: 29 / 3734
  3884. }
  3885. },
  3886. sideNsfw: {
  3887. height: math.unit(4, "meter"),
  3888. weight: math.unit(150, "kg"),
  3889. name: "Side (NSFW)",
  3890. image: {
  3891. source: "./media/characters/talan/side-nsfw.svg",
  3892. bottom: 29 / 3734
  3893. }
  3894. },
  3895. back: {
  3896. height: math.unit(4, "meter"),
  3897. weight: math.unit(150, "kg"),
  3898. name: "Back",
  3899. image: {
  3900. source: "./media/characters/talan/back.svg"
  3901. }
  3902. },
  3903. dickBottom: {
  3904. height: math.unit(0.621, "meter"),
  3905. name: "Dick (Bottom)",
  3906. image: {
  3907. source: "./media/characters/talan/dick-bottom.svg"
  3908. }
  3909. },
  3910. dickTop: {
  3911. height: math.unit(0.621, "meter"),
  3912. name: "Dick (Top)",
  3913. image: {
  3914. source: "./media/characters/talan/dick-top.svg"
  3915. }
  3916. },
  3917. dickSide: {
  3918. height: math.unit(0.305, "meter"),
  3919. name: "Dick (Side)",
  3920. image: {
  3921. source: "./media/characters/talan/dick-side.svg"
  3922. }
  3923. },
  3924. dickFront: {
  3925. height: math.unit(0.305, "meter"),
  3926. name: "Dick (Front)",
  3927. image: {
  3928. source: "./media/characters/talan/dick-front.svg"
  3929. }
  3930. },
  3931. },
  3932. [
  3933. {
  3934. name: "Normal",
  3935. height: math.unit(4, "meters")
  3936. },
  3937. {
  3938. name: "Macro",
  3939. height: math.unit(100, "meters")
  3940. },
  3941. {
  3942. name: "Megamacro",
  3943. height: math.unit(2, "miles"),
  3944. default: true
  3945. },
  3946. {
  3947. name: "Gigamacro",
  3948. height: math.unit(5000, "miles")
  3949. },
  3950. {
  3951. name: "Teramacro",
  3952. height: math.unit(100, "parsecs")
  3953. }
  3954. ]
  3955. ))
  3956. characterMakers.push(() => makeCharacter(
  3957. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3958. {
  3959. front: {
  3960. height: math.unit(2, "meter"),
  3961. weight: math.unit(90, "kg"),
  3962. name: "Front",
  3963. image: {
  3964. source: "./media/characters/gael'rathus/front.svg"
  3965. }
  3966. },
  3967. frontAlt: {
  3968. height: math.unit(2, "meter"),
  3969. weight: math.unit(90, "kg"),
  3970. name: "Front (alt)",
  3971. image: {
  3972. source: "./media/characters/gael'rathus/front-alt.svg"
  3973. }
  3974. },
  3975. frontAlt2: {
  3976. height: math.unit(2, "meter"),
  3977. weight: math.unit(90, "kg"),
  3978. name: "Front (alt 2)",
  3979. image: {
  3980. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3981. }
  3982. }
  3983. },
  3984. [
  3985. {
  3986. name: "Normal",
  3987. height: math.unit(9, "feet"),
  3988. default: true
  3989. },
  3990. {
  3991. name: "Large",
  3992. height: math.unit(25, "feet")
  3993. },
  3994. {
  3995. name: "Macro",
  3996. height: math.unit(0.25, "miles")
  3997. },
  3998. {
  3999. name: "Megamacro",
  4000. height: math.unit(10, "miles")
  4001. }
  4002. ]
  4003. ))
  4004. characterMakers.push(() => makeCharacter(
  4005. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4006. {
  4007. side: {
  4008. height: math.unit(2, "meter"),
  4009. weight: math.unit(140, "kg"),
  4010. name: "Side",
  4011. image: {
  4012. source: "./media/characters/sosha/side.svg",
  4013. extra: 1170/1006,
  4014. bottom: 94/1264
  4015. }
  4016. },
  4017. maw: {
  4018. height: math.unit(2.87, "feet"),
  4019. name: "Maw",
  4020. image: {
  4021. source: "./media/characters/sosha/maw.svg",
  4022. extra: 966/865,
  4023. bottom: 0/966
  4024. }
  4025. },
  4026. cooch: {
  4027. height: math.unit(5.6, "feet"),
  4028. name: "Cooch",
  4029. image: {
  4030. source: "./media/characters/sosha/cooch.svg"
  4031. }
  4032. },
  4033. },
  4034. [
  4035. {
  4036. name: "Normal",
  4037. height: math.unit(12, "feet"),
  4038. default: true
  4039. }
  4040. ]
  4041. ))
  4042. characterMakers.push(() => makeCharacter(
  4043. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4044. {
  4045. side: {
  4046. height: math.unit(5 + 5 / 12, "feet"),
  4047. weight: math.unit(170, "kg"),
  4048. name: "Side",
  4049. image: {
  4050. source: "./media/characters/runnola/side.svg",
  4051. extra: 741 / 448,
  4052. bottom: 0.05
  4053. }
  4054. },
  4055. },
  4056. [
  4057. {
  4058. name: "Small",
  4059. height: math.unit(3, "feet")
  4060. },
  4061. {
  4062. name: "Normal",
  4063. height: math.unit(5 + 5 / 12, "feet"),
  4064. default: true
  4065. },
  4066. {
  4067. name: "Big",
  4068. height: math.unit(10, "feet")
  4069. },
  4070. ]
  4071. ))
  4072. characterMakers.push(() => makeCharacter(
  4073. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4074. {
  4075. front: {
  4076. height: math.unit(2, "meter"),
  4077. weight: math.unit(50, "kg"),
  4078. name: "Front",
  4079. image: {
  4080. source: "./media/characters/kurribird/front.svg",
  4081. bottom: 0.015
  4082. }
  4083. },
  4084. frontAlt: {
  4085. height: math.unit(1.5, "meter"),
  4086. weight: math.unit(50, "kg"),
  4087. name: "Front (Alt)",
  4088. image: {
  4089. source: "./media/characters/kurribird/front-alt.svg",
  4090. extra: 1.45
  4091. }
  4092. },
  4093. },
  4094. [
  4095. {
  4096. name: "Normal",
  4097. height: math.unit(7, "feet")
  4098. },
  4099. {
  4100. name: "Big",
  4101. height: math.unit(12, "feet"),
  4102. default: true
  4103. },
  4104. {
  4105. name: "Macro",
  4106. height: math.unit(1500, "feet")
  4107. },
  4108. {
  4109. name: "Megamacro",
  4110. height: math.unit(2, "miles")
  4111. }
  4112. ]
  4113. ))
  4114. characterMakers.push(() => makeCharacter(
  4115. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4116. {
  4117. front: {
  4118. height: math.unit(2, "meter"),
  4119. weight: math.unit(80, "kg"),
  4120. name: "Front",
  4121. image: {
  4122. source: "./media/characters/elbial/front.svg",
  4123. extra: 1643 / 1556,
  4124. bottom: 60.2 / 1696
  4125. }
  4126. },
  4127. side: {
  4128. height: math.unit(2, "meter"),
  4129. weight: math.unit(80, "kg"),
  4130. name: "Side",
  4131. image: {
  4132. source: "./media/characters/elbial/side.svg",
  4133. extra: 1601/1528,
  4134. bottom: 97/1698
  4135. }
  4136. },
  4137. back: {
  4138. height: math.unit(2, "meter"),
  4139. weight: math.unit(80, "kg"),
  4140. name: "Back",
  4141. image: {
  4142. source: "./media/characters/elbial/back.svg",
  4143. extra: 1653/1569,
  4144. bottom: 20/1673
  4145. }
  4146. },
  4147. frontDressed: {
  4148. height: math.unit(2, "meter"),
  4149. weight: math.unit(80, "kg"),
  4150. name: "Front (Dressed)",
  4151. image: {
  4152. source: "./media/characters/elbial/front-dressed.svg",
  4153. extra: 1638/1569,
  4154. bottom: 70/1708
  4155. }
  4156. },
  4157. genitals: {
  4158. height: math.unit(2 / 3.367, "meter"),
  4159. name: "Genitals",
  4160. image: {
  4161. source: "./media/characters/elbial/genitals.svg"
  4162. }
  4163. },
  4164. },
  4165. [
  4166. {
  4167. name: "Large",
  4168. height: math.unit(100, "feet")
  4169. },
  4170. {
  4171. name: "Macro",
  4172. height: math.unit(500, "feet"),
  4173. default: true
  4174. },
  4175. {
  4176. name: "Megamacro",
  4177. height: math.unit(10, "miles")
  4178. },
  4179. {
  4180. name: "Gigamacro",
  4181. height: math.unit(25000, "miles")
  4182. },
  4183. {
  4184. name: "Full-Size",
  4185. height: math.unit(8000000, "gigaparsecs")
  4186. }
  4187. ]
  4188. ))
  4189. characterMakers.push(() => makeCharacter(
  4190. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4191. {
  4192. front: {
  4193. height: math.unit(2, "meter"),
  4194. weight: math.unit(60, "kg"),
  4195. name: "Front",
  4196. image: {
  4197. source: "./media/characters/noah/front.svg"
  4198. }
  4199. },
  4200. talons: {
  4201. height: math.unit(0.315, "meter"),
  4202. name: "Talons",
  4203. image: {
  4204. source: "./media/characters/noah/talons.svg"
  4205. }
  4206. }
  4207. },
  4208. [
  4209. {
  4210. name: "Large",
  4211. height: math.unit(50, "feet")
  4212. },
  4213. {
  4214. name: "Macro",
  4215. height: math.unit(750, "feet"),
  4216. default: true
  4217. },
  4218. {
  4219. name: "Megamacro",
  4220. height: math.unit(50, "miles")
  4221. },
  4222. {
  4223. name: "Gigamacro",
  4224. height: math.unit(100000, "miles")
  4225. },
  4226. {
  4227. name: "Full-Size",
  4228. height: math.unit(3000000000, "miles")
  4229. }
  4230. ]
  4231. ))
  4232. characterMakers.push(() => makeCharacter(
  4233. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4234. {
  4235. front: {
  4236. height: math.unit(2, "meter"),
  4237. weight: math.unit(80, "kg"),
  4238. name: "Front",
  4239. image: {
  4240. source: "./media/characters/natalya/front.svg"
  4241. }
  4242. },
  4243. back: {
  4244. height: math.unit(2, "meter"),
  4245. weight: math.unit(80, "kg"),
  4246. name: "Back",
  4247. image: {
  4248. source: "./media/characters/natalya/back.svg"
  4249. }
  4250. }
  4251. },
  4252. [
  4253. {
  4254. name: "Normal",
  4255. height: math.unit(150, "feet"),
  4256. default: true
  4257. },
  4258. {
  4259. name: "Megamacro",
  4260. height: math.unit(5, "miles")
  4261. },
  4262. {
  4263. name: "Full-Size",
  4264. height: math.unit(600, "kiloparsecs")
  4265. }
  4266. ]
  4267. ))
  4268. characterMakers.push(() => makeCharacter(
  4269. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4270. {
  4271. front: {
  4272. height: math.unit(2, "meter"),
  4273. weight: math.unit(50, "kg"),
  4274. name: "Front",
  4275. image: {
  4276. source: "./media/characters/erestrebah/front.svg",
  4277. extra: 1262/1162,
  4278. bottom: 96/1358
  4279. }
  4280. },
  4281. back: {
  4282. height: math.unit(2, "meter"),
  4283. weight: math.unit(50, "kg"),
  4284. name: "Back",
  4285. image: {
  4286. source: "./media/characters/erestrebah/back.svg",
  4287. extra: 1257/1139,
  4288. bottom: 13/1270
  4289. }
  4290. },
  4291. wing: {
  4292. height: math.unit(2, "meter"),
  4293. weight: math.unit(50, "kg"),
  4294. name: "Wing",
  4295. image: {
  4296. source: "./media/characters/erestrebah/wing.svg",
  4297. extra: 1262/1162,
  4298. bottom: 96/1358
  4299. }
  4300. },
  4301. mouth: {
  4302. height: math.unit(0.39, "feet"),
  4303. name: "Mouth",
  4304. image: {
  4305. source: "./media/characters/erestrebah/mouth.svg"
  4306. }
  4307. }
  4308. },
  4309. [
  4310. {
  4311. name: "Normal",
  4312. height: math.unit(10, "feet")
  4313. },
  4314. {
  4315. name: "Large",
  4316. height: math.unit(50, "feet"),
  4317. default: true
  4318. },
  4319. {
  4320. name: "Macro",
  4321. height: math.unit(300, "feet")
  4322. },
  4323. {
  4324. name: "Macro+",
  4325. height: math.unit(750, "feet")
  4326. },
  4327. {
  4328. name: "Megamacro",
  4329. height: math.unit(3, "miles")
  4330. }
  4331. ]
  4332. ))
  4333. characterMakers.push(() => makeCharacter(
  4334. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4335. {
  4336. front: {
  4337. height: math.unit(2, "meter"),
  4338. weight: math.unit(80, "kg"),
  4339. name: "Front",
  4340. image: {
  4341. source: "./media/characters/jennifer/front.svg",
  4342. bottom: 0.11,
  4343. extra: 1.16
  4344. }
  4345. },
  4346. frontAlt: {
  4347. height: math.unit(2, "meter"),
  4348. weight: math.unit(80, "kg"),
  4349. name: "Front (Alt)",
  4350. image: {
  4351. source: "./media/characters/jennifer/front-alt.svg"
  4352. }
  4353. }
  4354. },
  4355. [
  4356. {
  4357. name: "Canon Height",
  4358. height: math.unit(120, "feet"),
  4359. default: true
  4360. },
  4361. {
  4362. name: "Macro+",
  4363. height: math.unit(300, "feet")
  4364. },
  4365. {
  4366. name: "Megamacro",
  4367. height: math.unit(20000, "feet")
  4368. }
  4369. ]
  4370. ))
  4371. characterMakers.push(() => makeCharacter(
  4372. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4373. {
  4374. front: {
  4375. height: math.unit(2, "meter"),
  4376. weight: math.unit(50, "kg"),
  4377. name: "Front",
  4378. image: {
  4379. source: "./media/characters/kalista/front.svg",
  4380. extra: 1314/1145,
  4381. bottom: 101/1415
  4382. }
  4383. },
  4384. back: {
  4385. height: math.unit(2, "meter"),
  4386. weight: math.unit(50, "kg"),
  4387. name: "Back",
  4388. image: {
  4389. source: "./media/characters/kalista/back.svg",
  4390. extra: 1366 / 1156,
  4391. bottom: 33.9 / 1362.78
  4392. }
  4393. }
  4394. },
  4395. [
  4396. {
  4397. name: "Uncomfortably Small",
  4398. height: math.unit(10, "feet")
  4399. },
  4400. {
  4401. name: "Small",
  4402. height: math.unit(30, "feet")
  4403. },
  4404. {
  4405. name: "Macro",
  4406. height: math.unit(100, "feet"),
  4407. default: true
  4408. },
  4409. {
  4410. name: "Macro+",
  4411. height: math.unit(2000, "feet")
  4412. },
  4413. {
  4414. name: "True Form",
  4415. height: math.unit(8924, "miles")
  4416. }
  4417. ]
  4418. ))
  4419. characterMakers.push(() => makeCharacter(
  4420. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4421. {
  4422. front: {
  4423. height: math.unit(2, "meter"),
  4424. weight: math.unit(120, "kg"),
  4425. name: "Front",
  4426. image: {
  4427. source: "./media/characters/ggv/front.svg"
  4428. }
  4429. },
  4430. side: {
  4431. height: math.unit(2, "meter"),
  4432. weight: math.unit(120, "kg"),
  4433. name: "Side",
  4434. image: {
  4435. source: "./media/characters/ggv/side.svg"
  4436. }
  4437. }
  4438. },
  4439. [
  4440. {
  4441. name: "Extremely Puny",
  4442. height: math.unit(9 + 5 / 12, "feet")
  4443. },
  4444. {
  4445. name: "Horribly Small",
  4446. height: math.unit(47.7, "miles"),
  4447. default: true
  4448. },
  4449. {
  4450. name: "Reasonably Sized",
  4451. height: math.unit(25000, "parsecs")
  4452. },
  4453. {
  4454. name: "Slightly Uncompressed",
  4455. height: math.unit(7.77e31, "parsecs")
  4456. },
  4457. {
  4458. name: "Omniversal",
  4459. height: math.unit(1e300, "meters")
  4460. },
  4461. ]
  4462. ))
  4463. characterMakers.push(() => makeCharacter(
  4464. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4465. {
  4466. front: {
  4467. height: math.unit(2, "meter"),
  4468. weight: math.unit(75, "lb"),
  4469. name: "Front",
  4470. image: {
  4471. source: "./media/characters/napalm/front.svg"
  4472. }
  4473. },
  4474. back: {
  4475. height: math.unit(2, "meter"),
  4476. weight: math.unit(75, "lb"),
  4477. name: "Back",
  4478. image: {
  4479. source: "./media/characters/napalm/back.svg"
  4480. }
  4481. }
  4482. },
  4483. [
  4484. {
  4485. name: "Standard",
  4486. height: math.unit(55, "feet"),
  4487. default: true
  4488. }
  4489. ]
  4490. ))
  4491. characterMakers.push(() => makeCharacter(
  4492. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4493. {
  4494. front: {
  4495. height: math.unit(7 + 5 / 6, "feet"),
  4496. weight: math.unit(325, "lb"),
  4497. name: "Front",
  4498. image: {
  4499. source: "./media/characters/asana/front.svg",
  4500. extra: 1133 / 1060,
  4501. bottom: 15.2 / 1148.6
  4502. }
  4503. },
  4504. back: {
  4505. height: math.unit(7 + 5 / 6, "feet"),
  4506. weight: math.unit(325, "lb"),
  4507. name: "Back",
  4508. image: {
  4509. source: "./media/characters/asana/back.svg",
  4510. extra: 1114 / 1043,
  4511. bottom: 5 / 1120
  4512. }
  4513. },
  4514. dressedDark: {
  4515. height: math.unit(7 + 5 / 6, "feet"),
  4516. weight: math.unit(325, "lb"),
  4517. name: "Dressed (Dark)",
  4518. image: {
  4519. source: "./media/characters/asana/dressed-dark.svg",
  4520. extra: 1133 / 1060,
  4521. bottom: 15.2 / 1148.6
  4522. }
  4523. },
  4524. dressedLight: {
  4525. height: math.unit(7 + 5 / 6, "feet"),
  4526. weight: math.unit(325, "lb"),
  4527. name: "Dressed (Light)",
  4528. image: {
  4529. source: "./media/characters/asana/dressed-light.svg",
  4530. extra: 1133 / 1060,
  4531. bottom: 15.2 / 1148.6
  4532. }
  4533. },
  4534. },
  4535. [
  4536. {
  4537. name: "Standard",
  4538. height: math.unit(7 + 5 / 6, "feet"),
  4539. default: true
  4540. },
  4541. {
  4542. name: "Large",
  4543. height: math.unit(10, "meters")
  4544. },
  4545. {
  4546. name: "Macro",
  4547. height: math.unit(2500, "meters")
  4548. },
  4549. {
  4550. name: "Megamacro",
  4551. height: math.unit(5e6, "meters")
  4552. },
  4553. {
  4554. name: "Examacro",
  4555. height: math.unit(5e12, "lightyears")
  4556. },
  4557. {
  4558. name: "Max Size",
  4559. height: math.unit(1e31, "lightyears")
  4560. }
  4561. ]
  4562. ))
  4563. characterMakers.push(() => makeCharacter(
  4564. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4565. {
  4566. front: {
  4567. height: math.unit(2, "meter"),
  4568. weight: math.unit(60, "kg"),
  4569. name: "Front",
  4570. image: {
  4571. source: "./media/characters/ebony/front.svg",
  4572. bottom: 0.03,
  4573. extra: 1045 / 810 + 0.03
  4574. }
  4575. },
  4576. side: {
  4577. height: math.unit(2, "meter"),
  4578. weight: math.unit(60, "kg"),
  4579. name: "Side",
  4580. image: {
  4581. source: "./media/characters/ebony/side.svg",
  4582. bottom: 0.03,
  4583. extra: 1045 / 810 + 0.03
  4584. }
  4585. },
  4586. back: {
  4587. height: math.unit(2, "meter"),
  4588. weight: math.unit(60, "kg"),
  4589. name: "Back",
  4590. image: {
  4591. source: "./media/characters/ebony/back.svg",
  4592. bottom: 0.01,
  4593. extra: 1045 / 810 + 0.01
  4594. }
  4595. },
  4596. },
  4597. [
  4598. // TODO check why I did this lol
  4599. {
  4600. name: "Standard",
  4601. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4602. default: true
  4603. },
  4604. {
  4605. name: "Macro",
  4606. height: math.unit(200, "feet")
  4607. },
  4608. {
  4609. name: "Gigamacro",
  4610. height: math.unit(13000, "km")
  4611. }
  4612. ]
  4613. ))
  4614. characterMakers.push(() => makeCharacter(
  4615. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4616. {
  4617. front: {
  4618. height: math.unit(6, "feet"),
  4619. weight: math.unit(175, "lb"),
  4620. name: "Front",
  4621. image: {
  4622. source: "./media/characters/mountain/front.svg",
  4623. extra: 972 / 955,
  4624. bottom: 64 / 1036.6
  4625. }
  4626. },
  4627. back: {
  4628. height: math.unit(6, "feet"),
  4629. weight: math.unit(175, "lb"),
  4630. name: "Back",
  4631. image: {
  4632. source: "./media/characters/mountain/back.svg",
  4633. extra: 970 / 950,
  4634. bottom: 28.25 / 999
  4635. }
  4636. },
  4637. },
  4638. [
  4639. {
  4640. name: "Large",
  4641. height: math.unit(20, "meters")
  4642. },
  4643. {
  4644. name: "Macro",
  4645. height: math.unit(300, "meters")
  4646. },
  4647. {
  4648. name: "Gigamacro",
  4649. height: math.unit(10000, "km"),
  4650. default: true
  4651. },
  4652. {
  4653. name: "Examacro",
  4654. height: math.unit(10e9, "lightyears")
  4655. }
  4656. ]
  4657. ))
  4658. characterMakers.push(() => makeCharacter(
  4659. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4660. {
  4661. front: {
  4662. height: math.unit(8, "feet"),
  4663. weight: math.unit(500, "lb"),
  4664. name: "Front",
  4665. image: {
  4666. source: "./media/characters/rick/front.svg"
  4667. }
  4668. }
  4669. },
  4670. [
  4671. {
  4672. name: "Normal",
  4673. height: math.unit(8, "feet"),
  4674. default: true
  4675. },
  4676. {
  4677. name: "Macro",
  4678. height: math.unit(5, "km")
  4679. }
  4680. ]
  4681. ))
  4682. characterMakers.push(() => makeCharacter(
  4683. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4684. {
  4685. front: {
  4686. height: math.unit(8, "feet"),
  4687. weight: math.unit(120, "lb"),
  4688. name: "Front",
  4689. image: {
  4690. source: "./media/characters/ona/front.svg"
  4691. }
  4692. },
  4693. frontAlt: {
  4694. height: math.unit(8, "feet"),
  4695. weight: math.unit(120, "lb"),
  4696. name: "Front (Alt)",
  4697. image: {
  4698. source: "./media/characters/ona/front-alt.svg"
  4699. }
  4700. },
  4701. back: {
  4702. height: math.unit(8, "feet"),
  4703. weight: math.unit(120, "lb"),
  4704. name: "Back",
  4705. image: {
  4706. source: "./media/characters/ona/back.svg"
  4707. }
  4708. },
  4709. foot: {
  4710. height: math.unit(1.1, "feet"),
  4711. name: "Foot",
  4712. image: {
  4713. source: "./media/characters/ona/foot.svg"
  4714. }
  4715. }
  4716. },
  4717. [
  4718. {
  4719. name: "Megamacro",
  4720. height: math.unit(70, "km"),
  4721. default: true
  4722. },
  4723. {
  4724. name: "Gigamacro",
  4725. height: math.unit(681818, "miles")
  4726. },
  4727. {
  4728. name: "Examacro",
  4729. height: math.unit(3800000, "lightyears")
  4730. },
  4731. ]
  4732. ))
  4733. characterMakers.push(() => makeCharacter(
  4734. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4735. {
  4736. front: {
  4737. height: math.unit(12, "feet"),
  4738. weight: math.unit(3000, "lb"),
  4739. name: "Front",
  4740. image: {
  4741. source: "./media/characters/mech/front.svg",
  4742. extra: 2900 / 2770,
  4743. bottom: 110 / 3010
  4744. }
  4745. },
  4746. back: {
  4747. height: math.unit(12, "feet"),
  4748. weight: math.unit(3000, "lb"),
  4749. name: "Back",
  4750. image: {
  4751. source: "./media/characters/mech/back.svg",
  4752. extra: 3011 / 2890,
  4753. bottom: 94 / 3105
  4754. }
  4755. },
  4756. maw: {
  4757. height: math.unit(3.07, "feet"),
  4758. name: "Maw",
  4759. image: {
  4760. source: "./media/characters/mech/maw.svg"
  4761. }
  4762. },
  4763. head: {
  4764. height: math.unit(3.07, "feet"),
  4765. name: "Head",
  4766. image: {
  4767. source: "./media/characters/mech/head.svg"
  4768. }
  4769. },
  4770. dick: {
  4771. height: math.unit(1.43, "feet"),
  4772. name: "Dick",
  4773. image: {
  4774. source: "./media/characters/mech/dick.svg"
  4775. }
  4776. },
  4777. },
  4778. [
  4779. {
  4780. name: "Normal",
  4781. height: math.unit(12, "feet")
  4782. },
  4783. {
  4784. name: "Macro",
  4785. height: math.unit(300, "feet"),
  4786. default: true
  4787. },
  4788. {
  4789. name: "Macro+",
  4790. height: math.unit(1500, "feet")
  4791. },
  4792. ]
  4793. ))
  4794. characterMakers.push(() => makeCharacter(
  4795. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4796. {
  4797. front: {
  4798. height: math.unit(1.3, "meter"),
  4799. weight: math.unit(30, "kg"),
  4800. name: "Front",
  4801. image: {
  4802. source: "./media/characters/gregory/front.svg",
  4803. }
  4804. }
  4805. },
  4806. [
  4807. {
  4808. name: "Normal",
  4809. height: math.unit(1.3, "meter"),
  4810. default: true
  4811. },
  4812. {
  4813. name: "Macro",
  4814. height: math.unit(20, "meter")
  4815. }
  4816. ]
  4817. ))
  4818. characterMakers.push(() => makeCharacter(
  4819. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4820. {
  4821. front: {
  4822. height: math.unit(2.8, "meter"),
  4823. weight: math.unit(200, "kg"),
  4824. name: "Front",
  4825. image: {
  4826. source: "./media/characters/elory/front.svg",
  4827. }
  4828. }
  4829. },
  4830. [
  4831. {
  4832. name: "Normal",
  4833. height: math.unit(2.8, "meter"),
  4834. default: true
  4835. },
  4836. {
  4837. name: "Macro",
  4838. height: math.unit(38, "meter")
  4839. }
  4840. ]
  4841. ))
  4842. characterMakers.push(() => makeCharacter(
  4843. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4844. {
  4845. front: {
  4846. height: math.unit(470, "feet"),
  4847. weight: math.unit(924, "tons"),
  4848. name: "Front",
  4849. image: {
  4850. source: "./media/characters/angelpatamon/front.svg",
  4851. }
  4852. }
  4853. },
  4854. [
  4855. {
  4856. name: "Normal",
  4857. height: math.unit(470, "feet"),
  4858. default: true
  4859. },
  4860. {
  4861. name: "Deity Size I",
  4862. height: math.unit(28651.2, "km")
  4863. },
  4864. {
  4865. name: "Deity Size II",
  4866. height: math.unit(171907.2, "km")
  4867. }
  4868. ]
  4869. ))
  4870. characterMakers.push(() => makeCharacter(
  4871. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4872. {
  4873. side: {
  4874. height: math.unit(7.2, "meter"),
  4875. weight: math.unit(8.2, "tons"),
  4876. name: "Side",
  4877. image: {
  4878. source: "./media/characters/cryae/side.svg",
  4879. extra: 3500 / 1500
  4880. }
  4881. }
  4882. },
  4883. [
  4884. {
  4885. name: "Normal",
  4886. height: math.unit(7.2, "meter"),
  4887. default: true
  4888. }
  4889. ]
  4890. ))
  4891. characterMakers.push(() => makeCharacter(
  4892. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4893. {
  4894. front: {
  4895. height: math.unit(6, "feet"),
  4896. weight: math.unit(175, "lb"),
  4897. name: "Front",
  4898. image: {
  4899. source: "./media/characters/xera/front.svg",
  4900. extra: 2377 / 1972,
  4901. bottom: 75.5 / 2452
  4902. }
  4903. },
  4904. side: {
  4905. height: math.unit(6, "feet"),
  4906. weight: math.unit(175, "lb"),
  4907. name: "Side",
  4908. image: {
  4909. source: "./media/characters/xera/side.svg",
  4910. extra: 2345 / 2019,
  4911. bottom: 39.7 / 2384
  4912. }
  4913. },
  4914. back: {
  4915. height: math.unit(6, "feet"),
  4916. weight: math.unit(175, "lb"),
  4917. name: "Back",
  4918. image: {
  4919. source: "./media/characters/xera/back.svg",
  4920. extra: 2095 / 1984,
  4921. bottom: 67 / 2166
  4922. }
  4923. },
  4924. },
  4925. [
  4926. {
  4927. name: "Small",
  4928. height: math.unit(10, "feet")
  4929. },
  4930. {
  4931. name: "Macro",
  4932. height: math.unit(500, "meters"),
  4933. default: true
  4934. },
  4935. {
  4936. name: "Macro+",
  4937. height: math.unit(10, "km")
  4938. },
  4939. {
  4940. name: "Gigamacro",
  4941. height: math.unit(25000, "km")
  4942. },
  4943. {
  4944. name: "Teramacro",
  4945. height: math.unit(3e6, "km")
  4946. }
  4947. ]
  4948. ))
  4949. characterMakers.push(() => makeCharacter(
  4950. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4951. {
  4952. front: {
  4953. height: math.unit(6, "feet"),
  4954. weight: math.unit(175, "lb"),
  4955. name: "Front",
  4956. image: {
  4957. source: "./media/characters/nebula/front.svg",
  4958. extra: 2566 / 2362,
  4959. bottom: 81 / 2644
  4960. }
  4961. }
  4962. },
  4963. [
  4964. {
  4965. name: "Small",
  4966. height: math.unit(4.5, "meters")
  4967. },
  4968. {
  4969. name: "Macro",
  4970. height: math.unit(1500, "meters"),
  4971. default: true
  4972. },
  4973. {
  4974. name: "Megamacro",
  4975. height: math.unit(150, "km")
  4976. },
  4977. {
  4978. name: "Gigamacro",
  4979. height: math.unit(27000, "km")
  4980. }
  4981. ]
  4982. ))
  4983. characterMakers.push(() => makeCharacter(
  4984. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4985. {
  4986. front: {
  4987. height: math.unit(6, "feet"),
  4988. weight: math.unit(225, "lb"),
  4989. name: "Front",
  4990. image: {
  4991. source: "./media/characters/abysgar/front.svg",
  4992. extra: 1739/1614,
  4993. bottom: 71/1810
  4994. }
  4995. },
  4996. frontNsfw: {
  4997. height: math.unit(6, "feet"),
  4998. weight: math.unit(225, "lb"),
  4999. name: "Front (NSFW)",
  5000. image: {
  5001. source: "./media/characters/abysgar/front-nsfw.svg",
  5002. extra: 1739/1614,
  5003. bottom: 71/1810
  5004. }
  5005. },
  5006. back: {
  5007. height: math.unit(4.6, "feet"),
  5008. weight: math.unit(225, "lb"),
  5009. name: "Back",
  5010. image: {
  5011. source: "./media/characters/abysgar/back.svg",
  5012. extra: 1384/1327,
  5013. bottom: 0/1384
  5014. }
  5015. },
  5016. head: {
  5017. height: math.unit(1.25, "feet"),
  5018. name: "Head",
  5019. image: {
  5020. source: "./media/characters/abysgar/head.svg",
  5021. extra: 669/569,
  5022. bottom: 0/669
  5023. }
  5024. },
  5025. },
  5026. [
  5027. {
  5028. name: "Small",
  5029. height: math.unit(4.5, "meters")
  5030. },
  5031. {
  5032. name: "Macro",
  5033. height: math.unit(1250, "meters"),
  5034. default: true
  5035. },
  5036. {
  5037. name: "Megamacro",
  5038. height: math.unit(125, "km")
  5039. },
  5040. {
  5041. name: "Gigamacro",
  5042. height: math.unit(26000, "km")
  5043. }
  5044. ]
  5045. ))
  5046. characterMakers.push(() => makeCharacter(
  5047. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5048. {
  5049. front: {
  5050. height: math.unit(6, "feet"),
  5051. weight: math.unit(180, "lb"),
  5052. name: "Front",
  5053. image: {
  5054. source: "./media/characters/yakuz/front.svg"
  5055. }
  5056. }
  5057. },
  5058. [
  5059. {
  5060. name: "Small",
  5061. height: math.unit(5, "meters")
  5062. },
  5063. {
  5064. name: "Macro",
  5065. height: math.unit(1500, "meters"),
  5066. default: true
  5067. },
  5068. {
  5069. name: "Megamacro",
  5070. height: math.unit(200, "km")
  5071. },
  5072. {
  5073. name: "Gigamacro",
  5074. height: math.unit(100000, "km")
  5075. }
  5076. ]
  5077. ))
  5078. characterMakers.push(() => makeCharacter(
  5079. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5080. {
  5081. front: {
  5082. height: math.unit(6, "feet"),
  5083. weight: math.unit(175, "lb"),
  5084. name: "Front",
  5085. image: {
  5086. source: "./media/characters/mirova/front.svg",
  5087. extra: 3334 / 3071,
  5088. bottom: 42 / 3375.6
  5089. }
  5090. }
  5091. },
  5092. [
  5093. {
  5094. name: "Small",
  5095. height: math.unit(5, "meters")
  5096. },
  5097. {
  5098. name: "Macro",
  5099. height: math.unit(900, "meters"),
  5100. default: true
  5101. },
  5102. {
  5103. name: "Megamacro",
  5104. height: math.unit(135, "km")
  5105. },
  5106. {
  5107. name: "Gigamacro",
  5108. height: math.unit(20000, "km")
  5109. }
  5110. ]
  5111. ))
  5112. characterMakers.push(() => makeCharacter(
  5113. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5114. {
  5115. side: {
  5116. height: math.unit(28.35, "feet"),
  5117. weight: math.unit(99.75, "tons"),
  5118. name: "Side",
  5119. image: {
  5120. source: "./media/characters/asana-mech/side.svg",
  5121. extra: 923 / 699,
  5122. bottom: 50 / 975
  5123. }
  5124. },
  5125. chaingun: {
  5126. height: math.unit(7, "feet"),
  5127. weight: math.unit(2400, "lb"),
  5128. name: "Chaingun",
  5129. image: {
  5130. source: "./media/characters/asana-mech/chaingun.svg"
  5131. }
  5132. },
  5133. laser: {
  5134. height: math.unit(7.12, "feet"),
  5135. weight: math.unit(2000, "lb"),
  5136. name: "Laser",
  5137. image: {
  5138. source: "./media/characters/asana-mech/laser.svg"
  5139. }
  5140. },
  5141. },
  5142. [
  5143. {
  5144. name: "Normal",
  5145. height: math.unit(28.35, "feet"),
  5146. default: true
  5147. },
  5148. {
  5149. name: "Macro",
  5150. height: math.unit(2500, "feet")
  5151. },
  5152. {
  5153. name: "Megamacro",
  5154. height: math.unit(25, "miles")
  5155. },
  5156. {
  5157. name: "Examacro",
  5158. height: math.unit(6e8, "lightyears")
  5159. },
  5160. ]
  5161. ))
  5162. characterMakers.push(() => makeCharacter(
  5163. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5164. {
  5165. front: {
  5166. height: math.unit(5, "meters"),
  5167. weight: math.unit(1000, "kg"),
  5168. name: "Front",
  5169. image: {
  5170. source: "./media/characters/asche/front.svg",
  5171. extra: 1258 / 1190,
  5172. bottom: 47 / 1305
  5173. }
  5174. },
  5175. frontUnderwear: {
  5176. height: math.unit(5, "meters"),
  5177. weight: math.unit(1000, "kg"),
  5178. name: "Front (Underwear)",
  5179. image: {
  5180. source: "./media/characters/asche/front-underwear.svg",
  5181. extra: 1258 / 1190,
  5182. bottom: 47 / 1305
  5183. }
  5184. },
  5185. frontDressed: {
  5186. height: math.unit(5, "meters"),
  5187. weight: math.unit(1000, "kg"),
  5188. name: "Front (Dressed)",
  5189. image: {
  5190. source: "./media/characters/asche/front-dressed.svg",
  5191. extra: 1258 / 1190,
  5192. bottom: 47 / 1305
  5193. }
  5194. },
  5195. frontArmor: {
  5196. height: math.unit(5, "meters"),
  5197. weight: math.unit(1000, "kg"),
  5198. name: "Front (Armored)",
  5199. image: {
  5200. source: "./media/characters/asche/front-armored.svg",
  5201. extra: 1374 / 1308,
  5202. bottom: 23 / 1397
  5203. }
  5204. },
  5205. mp724: {
  5206. height: math.unit(0.96, "meters"),
  5207. weight: math.unit(38, "kg"),
  5208. name: "H&K MP724",
  5209. image: {
  5210. source: "./media/characters/asche/h&k-mp724.svg"
  5211. }
  5212. },
  5213. side: {
  5214. height: math.unit(5, "meters"),
  5215. weight: math.unit(1000, "kg"),
  5216. name: "Side",
  5217. image: {
  5218. source: "./media/characters/asche/side.svg",
  5219. extra: 1717 / 1609,
  5220. bottom: 0.005
  5221. }
  5222. },
  5223. back: {
  5224. height: math.unit(5, "meters"),
  5225. weight: math.unit(1000, "kg"),
  5226. name: "Back",
  5227. image: {
  5228. source: "./media/characters/asche/back.svg",
  5229. extra: 1570 / 1501
  5230. }
  5231. },
  5232. },
  5233. [
  5234. {
  5235. name: "DEFCON 5",
  5236. height: math.unit(5, "meters")
  5237. },
  5238. {
  5239. name: "DEFCON 4",
  5240. height: math.unit(500, "meters"),
  5241. default: true
  5242. },
  5243. {
  5244. name: "DEFCON 3",
  5245. height: math.unit(5, "km")
  5246. },
  5247. {
  5248. name: "DEFCON 2",
  5249. height: math.unit(500, "km")
  5250. },
  5251. {
  5252. name: "DEFCON 1",
  5253. height: math.unit(500000, "km")
  5254. },
  5255. {
  5256. name: "DEFCON 0",
  5257. height: math.unit(3, "gigaparsecs")
  5258. },
  5259. ]
  5260. ))
  5261. characterMakers.push(() => makeCharacter(
  5262. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5263. {
  5264. front: {
  5265. height: math.unit(2, "meters"),
  5266. weight: math.unit(76, "kg"),
  5267. name: "Front",
  5268. image: {
  5269. source: "./media/characters/gale/front.svg"
  5270. }
  5271. },
  5272. frontAlt1: {
  5273. height: math.unit(2, "meters"),
  5274. weight: math.unit(76, "kg"),
  5275. name: "Front (Alt 1)",
  5276. image: {
  5277. source: "./media/characters/gale/front-alt-1.svg"
  5278. }
  5279. },
  5280. frontAlt2: {
  5281. height: math.unit(2, "meters"),
  5282. weight: math.unit(76, "kg"),
  5283. name: "Front (Alt 2)",
  5284. image: {
  5285. source: "./media/characters/gale/front-alt-2.svg"
  5286. }
  5287. },
  5288. },
  5289. [
  5290. {
  5291. name: "Normal",
  5292. height: math.unit(7, "feet")
  5293. },
  5294. {
  5295. name: "Macro",
  5296. height: math.unit(150, "feet"),
  5297. default: true
  5298. },
  5299. {
  5300. name: "Macro+",
  5301. height: math.unit(300, "feet")
  5302. },
  5303. ]
  5304. ))
  5305. characterMakers.push(() => makeCharacter(
  5306. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5307. {
  5308. front: {
  5309. height: math.unit(5 + 10/12, "feet"),
  5310. weight: math.unit(67, "kg"),
  5311. name: "Front",
  5312. image: {
  5313. source: "./media/characters/draylen/front.svg",
  5314. extra: 832/777,
  5315. bottom: 85/917
  5316. }
  5317. }
  5318. },
  5319. [
  5320. {
  5321. name: "Normal",
  5322. height: math.unit(5 + 10/12, "feet")
  5323. },
  5324. {
  5325. name: "Macro",
  5326. height: math.unit(150, "feet"),
  5327. default: true
  5328. }
  5329. ]
  5330. ))
  5331. characterMakers.push(() => makeCharacter(
  5332. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5333. {
  5334. front: {
  5335. height: math.unit(7 + 9 / 12, "feet"),
  5336. weight: math.unit(379, "lbs"),
  5337. name: "Front",
  5338. image: {
  5339. source: "./media/characters/chez/front.svg"
  5340. }
  5341. },
  5342. side: {
  5343. height: math.unit(7 + 9 / 12, "feet"),
  5344. weight: math.unit(379, "lbs"),
  5345. name: "Side",
  5346. image: {
  5347. source: "./media/characters/chez/side.svg"
  5348. }
  5349. }
  5350. },
  5351. [
  5352. {
  5353. name: "Normal",
  5354. height: math.unit(7 + 9 / 12, "feet"),
  5355. default: true
  5356. },
  5357. {
  5358. name: "God King",
  5359. height: math.unit(9750000, "meters")
  5360. }
  5361. ]
  5362. ))
  5363. characterMakers.push(() => makeCharacter(
  5364. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5365. {
  5366. front: {
  5367. height: math.unit(6, "feet"),
  5368. weight: math.unit(275, "lbs"),
  5369. name: "Front",
  5370. image: {
  5371. source: "./media/characters/kaylum/front.svg",
  5372. bottom: 0.01,
  5373. extra: 1166 / 1031
  5374. }
  5375. },
  5376. frontWingless: {
  5377. height: math.unit(6, "feet"),
  5378. weight: math.unit(275, "lbs"),
  5379. name: "Front (Wingless)",
  5380. image: {
  5381. source: "./media/characters/kaylum/front-wingless.svg",
  5382. bottom: 0.01,
  5383. extra: 1117 / 1031
  5384. }
  5385. }
  5386. },
  5387. [
  5388. {
  5389. name: "Normal",
  5390. height: math.unit(3.05, "meters")
  5391. },
  5392. {
  5393. name: "Master",
  5394. height: math.unit(5.5, "meters")
  5395. },
  5396. {
  5397. name: "Rampage",
  5398. height: math.unit(19, "meters")
  5399. },
  5400. {
  5401. name: "Macro Lite",
  5402. height: math.unit(37, "meters")
  5403. },
  5404. {
  5405. name: "Hyper Predator",
  5406. height: math.unit(61, "meters")
  5407. },
  5408. {
  5409. name: "Macro",
  5410. height: math.unit(138, "meters"),
  5411. default: true
  5412. }
  5413. ]
  5414. ))
  5415. characterMakers.push(() => makeCharacter(
  5416. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5417. {
  5418. front: {
  5419. height: math.unit(5 + 5 / 12, "feet"),
  5420. weight: math.unit(120, "lbs"),
  5421. name: "Front",
  5422. image: {
  5423. source: "./media/characters/geta/front.svg",
  5424. extra: 1003/933,
  5425. bottom: 21/1024
  5426. }
  5427. },
  5428. paw: {
  5429. height: math.unit(0.35, "feet"),
  5430. name: "Paw",
  5431. image: {
  5432. source: "./media/characters/geta/paw.svg"
  5433. }
  5434. },
  5435. },
  5436. [
  5437. {
  5438. name: "Micro",
  5439. height: math.unit(3, "inches"),
  5440. default: true
  5441. },
  5442. {
  5443. name: "Normal",
  5444. height: math.unit(5 + 5 / 12, "feet")
  5445. }
  5446. ]
  5447. ))
  5448. characterMakers.push(() => makeCharacter(
  5449. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5450. {
  5451. front: {
  5452. height: math.unit(6, "feet"),
  5453. weight: math.unit(300, "lbs"),
  5454. name: "Front",
  5455. image: {
  5456. source: "./media/characters/tyrnn/front.svg"
  5457. }
  5458. }
  5459. },
  5460. [
  5461. {
  5462. name: "Main Height",
  5463. height: math.unit(355, "feet"),
  5464. default: true
  5465. },
  5466. {
  5467. name: "Fave. Height",
  5468. height: math.unit(2400, "feet")
  5469. }
  5470. ]
  5471. ))
  5472. characterMakers.push(() => makeCharacter(
  5473. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5474. {
  5475. front: {
  5476. height: math.unit(6, "feet"),
  5477. weight: math.unit(300, "lbs"),
  5478. name: "Front",
  5479. image: {
  5480. source: "./media/characters/appledectomy/front.svg"
  5481. }
  5482. }
  5483. },
  5484. [
  5485. {
  5486. name: "Macro",
  5487. height: math.unit(2500, "feet")
  5488. },
  5489. {
  5490. name: "Megamacro",
  5491. height: math.unit(50, "miles"),
  5492. default: true
  5493. },
  5494. {
  5495. name: "Gigamacro",
  5496. height: math.unit(5000, "miles")
  5497. },
  5498. {
  5499. name: "Teramacro",
  5500. height: math.unit(250000, "miles")
  5501. },
  5502. ]
  5503. ))
  5504. characterMakers.push(() => makeCharacter(
  5505. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5506. {
  5507. front: {
  5508. height: math.unit(6, "feet"),
  5509. weight: math.unit(200, "lbs"),
  5510. name: "Front",
  5511. image: {
  5512. source: "./media/characters/vulpes/front.svg",
  5513. extra: 573 / 543,
  5514. bottom: 0.033
  5515. }
  5516. },
  5517. side: {
  5518. height: math.unit(6, "feet"),
  5519. weight: math.unit(200, "lbs"),
  5520. name: "Side",
  5521. image: {
  5522. source: "./media/characters/vulpes/side.svg",
  5523. extra: 577 / 549,
  5524. bottom: 11 / 588
  5525. }
  5526. },
  5527. back: {
  5528. height: math.unit(6, "feet"),
  5529. weight: math.unit(200, "lbs"),
  5530. name: "Back",
  5531. image: {
  5532. source: "./media/characters/vulpes/back.svg",
  5533. extra: 573 / 549,
  5534. bottom: 20 / 593
  5535. }
  5536. },
  5537. feet: {
  5538. height: math.unit(1.276, "feet"),
  5539. name: "Feet",
  5540. image: {
  5541. source: "./media/characters/vulpes/feet.svg"
  5542. }
  5543. },
  5544. maw: {
  5545. height: math.unit(1.18, "feet"),
  5546. name: "Maw",
  5547. image: {
  5548. source: "./media/characters/vulpes/maw.svg"
  5549. }
  5550. },
  5551. },
  5552. [
  5553. {
  5554. name: "Micro",
  5555. height: math.unit(2, "inches")
  5556. },
  5557. {
  5558. name: "Normal",
  5559. height: math.unit(6.3, "feet")
  5560. },
  5561. {
  5562. name: "Macro",
  5563. height: math.unit(850, "feet")
  5564. },
  5565. {
  5566. name: "Megamacro",
  5567. height: math.unit(7500, "feet"),
  5568. default: true
  5569. },
  5570. {
  5571. name: "Gigamacro",
  5572. height: math.unit(570000, "miles")
  5573. }
  5574. ]
  5575. ))
  5576. characterMakers.push(() => makeCharacter(
  5577. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5578. {
  5579. front: {
  5580. height: math.unit(6, "feet"),
  5581. weight: math.unit(210, "lbs"),
  5582. name: "Front",
  5583. image: {
  5584. source: "./media/characters/rain-fallen/front.svg"
  5585. }
  5586. },
  5587. side: {
  5588. height: math.unit(6, "feet"),
  5589. weight: math.unit(210, "lbs"),
  5590. name: "Side",
  5591. image: {
  5592. source: "./media/characters/rain-fallen/side.svg"
  5593. }
  5594. },
  5595. back: {
  5596. height: math.unit(6, "feet"),
  5597. weight: math.unit(210, "lbs"),
  5598. name: "Back",
  5599. image: {
  5600. source: "./media/characters/rain-fallen/back.svg"
  5601. }
  5602. },
  5603. feral: {
  5604. height: math.unit(9, "feet"),
  5605. weight: math.unit(700, "lbs"),
  5606. name: "Feral",
  5607. image: {
  5608. source: "./media/characters/rain-fallen/feral.svg"
  5609. }
  5610. },
  5611. },
  5612. [
  5613. {
  5614. name: "Meddling with Mortals",
  5615. height: math.unit(8 + 8/12, "feet")
  5616. },
  5617. {
  5618. name: "Normal",
  5619. height: math.unit(5, "meter")
  5620. },
  5621. {
  5622. name: "Macro",
  5623. height: math.unit(150, "meter"),
  5624. default: true
  5625. },
  5626. {
  5627. name: "Megamacro",
  5628. height: math.unit(278e6, "meter")
  5629. },
  5630. {
  5631. name: "Gigamacro",
  5632. height: math.unit(2e9, "meter")
  5633. },
  5634. {
  5635. name: "Teramacro",
  5636. height: math.unit(8e12, "meter")
  5637. },
  5638. {
  5639. name: "Devourer",
  5640. height: math.unit(14, "zettameters")
  5641. },
  5642. {
  5643. name: "Scarlet King",
  5644. height: math.unit(18, "yottameters")
  5645. },
  5646. {
  5647. name: "Void",
  5648. height: math.unit(1e88, "yottameters")
  5649. }
  5650. ]
  5651. ))
  5652. characterMakers.push(() => makeCharacter(
  5653. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5654. {
  5655. standing: {
  5656. height: math.unit(6, "feet"),
  5657. weight: math.unit(180, "lbs"),
  5658. name: "Standing",
  5659. image: {
  5660. source: "./media/characters/zaakira/standing.svg",
  5661. extra: 1599/1504,
  5662. bottom: 39/1638
  5663. }
  5664. },
  5665. laying: {
  5666. height: math.unit(3.3, "feet"),
  5667. weight: math.unit(180, "lbs"),
  5668. name: "Laying",
  5669. image: {
  5670. source: "./media/characters/zaakira/laying.svg"
  5671. }
  5672. },
  5673. },
  5674. [
  5675. {
  5676. name: "Normal",
  5677. height: math.unit(12, "feet")
  5678. },
  5679. {
  5680. name: "Macro",
  5681. height: math.unit(279, "feet"),
  5682. default: true
  5683. }
  5684. ]
  5685. ))
  5686. characterMakers.push(() => makeCharacter(
  5687. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5688. {
  5689. femSfw: {
  5690. height: math.unit(8, "feet"),
  5691. weight: math.unit(350, "lb"),
  5692. name: "Fem",
  5693. image: {
  5694. source: "./media/characters/sigvald/fem-sfw.svg",
  5695. extra: 182 / 164,
  5696. bottom: 8.7 / 190.5
  5697. }
  5698. },
  5699. femNsfw: {
  5700. height: math.unit(8, "feet"),
  5701. weight: math.unit(350, "lb"),
  5702. name: "Fem (NSFW)",
  5703. image: {
  5704. source: "./media/characters/sigvald/fem-nsfw.svg",
  5705. extra: 182 / 164,
  5706. bottom: 8.7 / 190.5
  5707. }
  5708. },
  5709. maleNsfw: {
  5710. height: math.unit(8, "feet"),
  5711. weight: math.unit(350, "lb"),
  5712. name: "Male (NSFW)",
  5713. image: {
  5714. source: "./media/characters/sigvald/male-nsfw.svg",
  5715. extra: 182 / 164,
  5716. bottom: 8.7 / 190.5
  5717. }
  5718. },
  5719. hermNsfw: {
  5720. height: math.unit(8, "feet"),
  5721. weight: math.unit(350, "lb"),
  5722. name: "Herm (NSFW)",
  5723. image: {
  5724. source: "./media/characters/sigvald/herm-nsfw.svg",
  5725. extra: 182 / 164,
  5726. bottom: 8.7 / 190.5
  5727. }
  5728. },
  5729. dick: {
  5730. height: math.unit(2.36, "feet"),
  5731. name: "Dick",
  5732. image: {
  5733. source: "./media/characters/sigvald/dick.svg"
  5734. }
  5735. },
  5736. eye: {
  5737. height: math.unit(0.31, "feet"),
  5738. name: "Eye",
  5739. image: {
  5740. source: "./media/characters/sigvald/eye.svg"
  5741. }
  5742. },
  5743. mouth: {
  5744. height: math.unit(0.92, "feet"),
  5745. name: "Mouth",
  5746. image: {
  5747. source: "./media/characters/sigvald/mouth.svg"
  5748. }
  5749. },
  5750. paws: {
  5751. height: math.unit(2.2, "feet"),
  5752. name: "Paws",
  5753. image: {
  5754. source: "./media/characters/sigvald/paws.svg"
  5755. }
  5756. }
  5757. },
  5758. [
  5759. {
  5760. name: "Normal",
  5761. height: math.unit(8, "feet")
  5762. },
  5763. {
  5764. name: "Large",
  5765. height: math.unit(12, "feet")
  5766. },
  5767. {
  5768. name: "Larger",
  5769. height: math.unit(20, "feet")
  5770. },
  5771. {
  5772. name: "Macro",
  5773. height: math.unit(150, "feet")
  5774. },
  5775. {
  5776. name: "Macro+",
  5777. height: math.unit(200, "feet"),
  5778. default: true
  5779. },
  5780. ]
  5781. ))
  5782. characterMakers.push(() => makeCharacter(
  5783. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5784. {
  5785. side: {
  5786. height: math.unit(12, "feet"),
  5787. weight: math.unit(2000, "kg"),
  5788. name: "Side",
  5789. image: {
  5790. source: "./media/characters/scott/side.svg",
  5791. extra: 754 / 724,
  5792. bottom: 0.069
  5793. }
  5794. },
  5795. upright: {
  5796. height: math.unit(12, "feet"),
  5797. weight: math.unit(2000, "kg"),
  5798. name: "Upright",
  5799. image: {
  5800. source: "./media/characters/scott/upright.svg",
  5801. extra: 3881 / 3722,
  5802. bottom: 0.05
  5803. }
  5804. },
  5805. },
  5806. [
  5807. {
  5808. name: "Normal",
  5809. height: math.unit(12, "feet"),
  5810. default: true
  5811. },
  5812. ]
  5813. ))
  5814. characterMakers.push(() => makeCharacter(
  5815. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5816. {
  5817. side: {
  5818. height: math.unit(8, "meters"),
  5819. weight: math.unit(84755, "lbs"),
  5820. name: "Side",
  5821. image: {
  5822. source: "./media/characters/tobias/side.svg",
  5823. extra: 1474 / 1096,
  5824. bottom: 38.9 / 1513.1235
  5825. }
  5826. },
  5827. },
  5828. [
  5829. {
  5830. name: "Normal",
  5831. height: math.unit(8, "meters"),
  5832. default: true
  5833. },
  5834. ]
  5835. ))
  5836. characterMakers.push(() => makeCharacter(
  5837. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5838. {
  5839. front: {
  5840. height: math.unit(5.5, "feet"),
  5841. weight: math.unit(400, "lbs"),
  5842. name: "Front",
  5843. image: {
  5844. source: "./media/characters/kieran/front.svg",
  5845. extra: 2694 / 2364,
  5846. bottom: 217 / 2908
  5847. }
  5848. },
  5849. side: {
  5850. height: math.unit(5.5, "feet"),
  5851. weight: math.unit(400, "lbs"),
  5852. name: "Side",
  5853. image: {
  5854. source: "./media/characters/kieran/side.svg",
  5855. extra: 875 / 777,
  5856. bottom: 84.6 / 959
  5857. }
  5858. },
  5859. },
  5860. [
  5861. {
  5862. name: "Normal",
  5863. height: math.unit(5.5, "feet"),
  5864. default: true
  5865. },
  5866. ]
  5867. ))
  5868. characterMakers.push(() => makeCharacter(
  5869. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5870. {
  5871. side: {
  5872. height: math.unit(2, "meters"),
  5873. weight: math.unit(70, "kg"),
  5874. name: "Side",
  5875. image: {
  5876. source: "./media/characters/sanya/side.svg",
  5877. bottom: 0.02,
  5878. extra: 1.02
  5879. }
  5880. },
  5881. },
  5882. [
  5883. {
  5884. name: "Small",
  5885. height: math.unit(2, "meters")
  5886. },
  5887. {
  5888. name: "Normal",
  5889. height: math.unit(3, "meters")
  5890. },
  5891. {
  5892. name: "Macro",
  5893. height: math.unit(16, "meters"),
  5894. default: true
  5895. },
  5896. ]
  5897. ))
  5898. characterMakers.push(() => makeCharacter(
  5899. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5900. {
  5901. front: {
  5902. height: math.unit(2, "meters"),
  5903. weight: math.unit(120, "kg"),
  5904. name: "Front",
  5905. image: {
  5906. source: "./media/characters/miranda/front.svg",
  5907. extra: 195 / 185,
  5908. bottom: 10.9 / 206.5
  5909. }
  5910. },
  5911. back: {
  5912. height: math.unit(2, "meters"),
  5913. weight: math.unit(120, "kg"),
  5914. name: "Back",
  5915. image: {
  5916. source: "./media/characters/miranda/back.svg",
  5917. extra: 201 / 193,
  5918. bottom: 2.3 / 203.7
  5919. }
  5920. },
  5921. },
  5922. [
  5923. {
  5924. name: "Normal",
  5925. height: math.unit(10, "feet"),
  5926. default: true
  5927. }
  5928. ]
  5929. ))
  5930. characterMakers.push(() => makeCharacter(
  5931. { name: "James", species: ["deer"], tags: ["anthro"] },
  5932. {
  5933. side: {
  5934. height: math.unit(2, "meters"),
  5935. weight: math.unit(100, "kg"),
  5936. name: "Front",
  5937. image: {
  5938. source: "./media/characters/james/front.svg",
  5939. extra: 10 / 8.5
  5940. }
  5941. },
  5942. },
  5943. [
  5944. {
  5945. name: "Normal",
  5946. height: math.unit(8.5, "feet"),
  5947. default: true
  5948. }
  5949. ]
  5950. ))
  5951. characterMakers.push(() => makeCharacter(
  5952. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5953. {
  5954. side: {
  5955. height: math.unit(9.5, "feet"),
  5956. weight: math.unit(2500, "lbs"),
  5957. name: "Side",
  5958. image: {
  5959. source: "./media/characters/heather/side.svg"
  5960. }
  5961. },
  5962. },
  5963. [
  5964. {
  5965. name: "Normal",
  5966. height: math.unit(9.5, "feet"),
  5967. default: true
  5968. }
  5969. ]
  5970. ))
  5971. characterMakers.push(() => makeCharacter(
  5972. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5973. {
  5974. side: {
  5975. height: math.unit(6.5, "feet"),
  5976. weight: math.unit(400, "lbs"),
  5977. name: "Side",
  5978. image: {
  5979. source: "./media/characters/lukas/side.svg",
  5980. extra: 7.25 / 6.5
  5981. }
  5982. },
  5983. },
  5984. [
  5985. {
  5986. name: "Normal",
  5987. height: math.unit(6.5, "feet"),
  5988. default: true
  5989. }
  5990. ]
  5991. ))
  5992. characterMakers.push(() => makeCharacter(
  5993. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5994. {
  5995. side: {
  5996. height: math.unit(5, "feet"),
  5997. weight: math.unit(3000, "lbs"),
  5998. name: "Side",
  5999. image: {
  6000. source: "./media/characters/louise/side.svg"
  6001. }
  6002. },
  6003. },
  6004. [
  6005. {
  6006. name: "Normal",
  6007. height: math.unit(5, "feet"),
  6008. default: true
  6009. }
  6010. ]
  6011. ))
  6012. characterMakers.push(() => makeCharacter(
  6013. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6014. {
  6015. side: {
  6016. height: math.unit(6, "feet"),
  6017. weight: math.unit(150, "lbs"),
  6018. name: "Side",
  6019. image: {
  6020. source: "./media/characters/ramona/side.svg",
  6021. extra: 871/854,
  6022. bottom: 41/912
  6023. }
  6024. },
  6025. },
  6026. [
  6027. {
  6028. name: "Normal",
  6029. height: math.unit(6 + 4/12, "feet")
  6030. },
  6031. {
  6032. name: "Minimacro",
  6033. height: math.unit(5.3, "meters"),
  6034. default: true
  6035. },
  6036. {
  6037. name: "Macro",
  6038. height: math.unit(20, "stories")
  6039. },
  6040. {
  6041. name: "Macro+",
  6042. height: math.unit(50, "stories")
  6043. },
  6044. ]
  6045. ))
  6046. characterMakers.push(() => makeCharacter(
  6047. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6048. {
  6049. standing: {
  6050. height: math.unit(5.75, "feet"),
  6051. weight: math.unit(160, "lbs"),
  6052. name: "Standing",
  6053. image: {
  6054. source: "./media/characters/deerpuff/standing.svg",
  6055. extra: 682 / 624
  6056. }
  6057. },
  6058. sitting: {
  6059. height: math.unit(5.75 / 1.79, "feet"),
  6060. weight: math.unit(160, "lbs"),
  6061. name: "Sitting",
  6062. image: {
  6063. source: "./media/characters/deerpuff/sitting.svg",
  6064. bottom: 44 / 400,
  6065. extra: 1
  6066. }
  6067. },
  6068. taurLaying: {
  6069. height: math.unit(6, "feet"),
  6070. weight: math.unit(400, "lbs"),
  6071. name: "Taur (Laying)",
  6072. image: {
  6073. source: "./media/characters/deerpuff/taur-laying.svg"
  6074. }
  6075. },
  6076. },
  6077. [
  6078. {
  6079. name: "Puffball",
  6080. height: math.unit(6, "inches")
  6081. },
  6082. {
  6083. name: "Normalpuff",
  6084. height: math.unit(5.75, "feet")
  6085. },
  6086. {
  6087. name: "Macropuff",
  6088. height: math.unit(1500, "feet"),
  6089. default: true
  6090. },
  6091. {
  6092. name: "Megapuff",
  6093. height: math.unit(500, "miles")
  6094. },
  6095. {
  6096. name: "Gigapuff",
  6097. height: math.unit(250000, "miles")
  6098. },
  6099. {
  6100. name: "Omegapuff",
  6101. height: math.unit(1000, "lightyears")
  6102. },
  6103. ]
  6104. ))
  6105. characterMakers.push(() => makeCharacter(
  6106. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6107. {
  6108. stomping: {
  6109. height: math.unit(6, "feet"),
  6110. weight: math.unit(170, "lbs"),
  6111. name: "Stomping",
  6112. image: {
  6113. source: "./media/characters/vivian/stomping.svg"
  6114. }
  6115. },
  6116. sitting: {
  6117. height: math.unit(6 / 1.75, "feet"),
  6118. weight: math.unit(170, "lbs"),
  6119. name: "Sitting",
  6120. image: {
  6121. source: "./media/characters/vivian/sitting.svg",
  6122. bottom: 1 / 6.4,
  6123. extra: 1,
  6124. }
  6125. },
  6126. },
  6127. [
  6128. {
  6129. name: "Normal",
  6130. height: math.unit(7, "feet"),
  6131. default: true
  6132. },
  6133. {
  6134. name: "Macro",
  6135. height: math.unit(10, "stories")
  6136. },
  6137. {
  6138. name: "Macro+",
  6139. height: math.unit(30, "stories")
  6140. },
  6141. {
  6142. name: "Megamacro",
  6143. height: math.unit(10, "miles")
  6144. },
  6145. {
  6146. name: "Megamacro+",
  6147. height: math.unit(2750000, "meters")
  6148. },
  6149. ]
  6150. ))
  6151. characterMakers.push(() => makeCharacter(
  6152. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6153. {
  6154. front: {
  6155. height: math.unit(6, "feet"),
  6156. weight: math.unit(160, "lbs"),
  6157. name: "Front",
  6158. image: {
  6159. source: "./media/characters/prince/front.svg",
  6160. extra: 1938/1682,
  6161. bottom: 45/1983
  6162. }
  6163. },
  6164. back: {
  6165. height: math.unit(6, "feet"),
  6166. weight: math.unit(160, "lbs"),
  6167. name: "Back",
  6168. image: {
  6169. source: "./media/characters/prince/back.svg",
  6170. extra: 1955/1726,
  6171. bottom: 6/1961
  6172. }
  6173. },
  6174. },
  6175. [
  6176. {
  6177. name: "Normal",
  6178. height: math.unit(7.75, "feet"),
  6179. default: true
  6180. },
  6181. {
  6182. name: "Not cute",
  6183. height: math.unit(17, "feet")
  6184. },
  6185. {
  6186. name: "I said NOT",
  6187. height: math.unit(91, "feet")
  6188. },
  6189. {
  6190. name: "Please stop",
  6191. height: math.unit(560, "feet")
  6192. },
  6193. {
  6194. name: "What have you done",
  6195. height: math.unit(2200, "feet")
  6196. },
  6197. {
  6198. name: "Deer God",
  6199. height: math.unit(3.6, "miles")
  6200. },
  6201. ]
  6202. ))
  6203. characterMakers.push(() => makeCharacter(
  6204. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6205. {
  6206. standing: {
  6207. height: math.unit(6, "feet"),
  6208. weight: math.unit(300, "lbs"),
  6209. name: "Standing",
  6210. image: {
  6211. source: "./media/characters/psymon/standing.svg",
  6212. extra: 1888 / 1810,
  6213. bottom: 0.05
  6214. }
  6215. },
  6216. slithering: {
  6217. height: math.unit(6, "feet"),
  6218. weight: math.unit(300, "lbs"),
  6219. name: "Slithering",
  6220. image: {
  6221. source: "./media/characters/psymon/slithering.svg",
  6222. extra: 1330 / 1224
  6223. }
  6224. },
  6225. slitheringAlt: {
  6226. height: math.unit(6, "feet"),
  6227. weight: math.unit(300, "lbs"),
  6228. name: "Slithering (Alt)",
  6229. image: {
  6230. source: "./media/characters/psymon/slithering-alt.svg",
  6231. extra: 1330 / 1224
  6232. }
  6233. },
  6234. },
  6235. [
  6236. {
  6237. name: "Normal",
  6238. height: math.unit(11.25, "feet"),
  6239. default: true
  6240. },
  6241. {
  6242. name: "Large",
  6243. height: math.unit(27, "feet")
  6244. },
  6245. {
  6246. name: "Giant",
  6247. height: math.unit(87, "feet")
  6248. },
  6249. {
  6250. name: "Macro",
  6251. height: math.unit(365, "feet")
  6252. },
  6253. {
  6254. name: "Megamacro",
  6255. height: math.unit(3, "miles")
  6256. },
  6257. {
  6258. name: "World Serpent",
  6259. height: math.unit(8000, "miles")
  6260. },
  6261. ]
  6262. ))
  6263. characterMakers.push(() => makeCharacter(
  6264. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6265. {
  6266. front: {
  6267. height: math.unit(6, "feet"),
  6268. weight: math.unit(180, "lbs"),
  6269. name: "Front",
  6270. image: {
  6271. source: "./media/characters/daimos/front.svg",
  6272. extra: 4160 / 3897,
  6273. bottom: 0.021
  6274. }
  6275. }
  6276. },
  6277. [
  6278. {
  6279. name: "Normal",
  6280. height: math.unit(8, "feet"),
  6281. default: true
  6282. },
  6283. {
  6284. name: "Big Dog",
  6285. height: math.unit(22, "feet")
  6286. },
  6287. {
  6288. name: "Macro",
  6289. height: math.unit(127, "feet")
  6290. },
  6291. {
  6292. name: "Megamacro",
  6293. height: math.unit(3600, "feet")
  6294. },
  6295. ]
  6296. ))
  6297. characterMakers.push(() => makeCharacter(
  6298. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6299. {
  6300. side: {
  6301. height: math.unit(6, "feet"),
  6302. weight: math.unit(180, "lbs"),
  6303. name: "Side",
  6304. image: {
  6305. source: "./media/characters/blake/side.svg",
  6306. extra: 1212 / 1120,
  6307. bottom: 0.05
  6308. }
  6309. },
  6310. crouched: {
  6311. height: math.unit(6 * 0.57, "feet"),
  6312. weight: math.unit(180, "lbs"),
  6313. name: "Crouched",
  6314. image: {
  6315. source: "./media/characters/blake/crouched.svg",
  6316. extra: 840 / 587,
  6317. bottom: 0.04
  6318. }
  6319. },
  6320. bent: {
  6321. height: math.unit(6 * 0.75, "feet"),
  6322. weight: math.unit(180, "lbs"),
  6323. name: "Bent",
  6324. image: {
  6325. source: "./media/characters/blake/bent.svg",
  6326. extra: 592 / 544,
  6327. bottom: 0.035
  6328. }
  6329. },
  6330. },
  6331. [
  6332. {
  6333. name: "Normal",
  6334. height: math.unit(8 + 1 / 6, "feet"),
  6335. default: true
  6336. },
  6337. {
  6338. name: "Big Backside",
  6339. height: math.unit(37, "feet")
  6340. },
  6341. {
  6342. name: "Subway Shredder",
  6343. height: math.unit(72, "feet")
  6344. },
  6345. {
  6346. name: "City Carver",
  6347. height: math.unit(1675, "feet")
  6348. },
  6349. {
  6350. name: "Tectonic Tweaker",
  6351. height: math.unit(2300, "miles")
  6352. },
  6353. ]
  6354. ))
  6355. characterMakers.push(() => makeCharacter(
  6356. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6357. {
  6358. front: {
  6359. height: math.unit(6, "feet"),
  6360. weight: math.unit(180, "lbs"),
  6361. name: "Front",
  6362. image: {
  6363. source: "./media/characters/guisetto/front.svg",
  6364. extra: 856 / 817,
  6365. bottom: 0.06
  6366. }
  6367. },
  6368. airborne: {
  6369. height: math.unit(6, "feet"),
  6370. weight: math.unit(180, "lbs"),
  6371. name: "Airborne",
  6372. image: {
  6373. source: "./media/characters/guisetto/airborne.svg",
  6374. extra: 584 / 525
  6375. }
  6376. },
  6377. },
  6378. [
  6379. {
  6380. name: "Normal",
  6381. height: math.unit(10 + 11 / 12, "feet"),
  6382. default: true
  6383. },
  6384. {
  6385. name: "Large",
  6386. height: math.unit(35, "feet")
  6387. },
  6388. {
  6389. name: "Macro",
  6390. height: math.unit(475, "feet")
  6391. },
  6392. ]
  6393. ))
  6394. characterMakers.push(() => makeCharacter(
  6395. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6396. {
  6397. front: {
  6398. height: math.unit(6, "feet"),
  6399. weight: math.unit(180, "lbs"),
  6400. name: "Front",
  6401. image: {
  6402. source: "./media/characters/luxor/front.svg",
  6403. extra: 2940 / 2152
  6404. }
  6405. },
  6406. back: {
  6407. height: math.unit(6, "feet"),
  6408. weight: math.unit(180, "lbs"),
  6409. name: "Back",
  6410. image: {
  6411. source: "./media/characters/luxor/back.svg",
  6412. extra: 1083 / 960
  6413. }
  6414. },
  6415. },
  6416. [
  6417. {
  6418. name: "Normal",
  6419. height: math.unit(5 + 5 / 6, "feet"),
  6420. default: true
  6421. },
  6422. {
  6423. name: "Lamp",
  6424. height: math.unit(50, "feet")
  6425. },
  6426. {
  6427. name: "Lämp",
  6428. height: math.unit(300, "feet")
  6429. },
  6430. {
  6431. name: "The sun is a lamp",
  6432. height: math.unit(250000, "miles")
  6433. },
  6434. ]
  6435. ))
  6436. characterMakers.push(() => makeCharacter(
  6437. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6438. {
  6439. front: {
  6440. height: math.unit(6, "feet"),
  6441. weight: math.unit(50, "lbs"),
  6442. name: "Front",
  6443. image: {
  6444. source: "./media/characters/huoyan/front.svg"
  6445. }
  6446. },
  6447. side: {
  6448. height: math.unit(6, "feet"),
  6449. weight: math.unit(180, "lbs"),
  6450. name: "Side",
  6451. image: {
  6452. source: "./media/characters/huoyan/side.svg"
  6453. }
  6454. },
  6455. },
  6456. [
  6457. {
  6458. name: "Chef",
  6459. height: math.unit(9, "feet")
  6460. },
  6461. {
  6462. name: "Normal",
  6463. height: math.unit(65, "feet"),
  6464. default: true
  6465. },
  6466. {
  6467. name: "Macro",
  6468. height: math.unit(780, "feet")
  6469. },
  6470. {
  6471. name: "Flaming Mountain",
  6472. height: math.unit(4.8, "miles")
  6473. },
  6474. {
  6475. name: "Celestial",
  6476. height: math.unit(765000, "miles")
  6477. },
  6478. ]
  6479. ))
  6480. characterMakers.push(() => makeCharacter(
  6481. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6482. {
  6483. front: {
  6484. height: math.unit(5 + 3 / 4, "feet"),
  6485. weight: math.unit(120, "lbs"),
  6486. name: "Front",
  6487. image: {
  6488. source: "./media/characters/tails/front.svg"
  6489. }
  6490. }
  6491. },
  6492. [
  6493. {
  6494. name: "Normal",
  6495. height: math.unit(5 + 3 / 4, "feet"),
  6496. default: true
  6497. }
  6498. ]
  6499. ))
  6500. characterMakers.push(() => makeCharacter(
  6501. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6502. {
  6503. front: {
  6504. height: math.unit(4, "feet"),
  6505. weight: math.unit(50, "lbs"),
  6506. name: "Front",
  6507. image: {
  6508. source: "./media/characters/rainy/front.svg"
  6509. }
  6510. }
  6511. },
  6512. [
  6513. {
  6514. name: "Macro",
  6515. height: math.unit(800, "feet"),
  6516. default: true
  6517. }
  6518. ]
  6519. ))
  6520. characterMakers.push(() => makeCharacter(
  6521. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6522. {
  6523. front: {
  6524. height: math.unit(6, "feet"),
  6525. weight: math.unit(150, "lbs"),
  6526. name: "Front",
  6527. image: {
  6528. source: "./media/characters/rainier/front.svg"
  6529. }
  6530. }
  6531. },
  6532. [
  6533. {
  6534. name: "Micro",
  6535. height: math.unit(2, "mm"),
  6536. default: true
  6537. }
  6538. ]
  6539. ))
  6540. characterMakers.push(() => makeCharacter(
  6541. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6542. {
  6543. front: {
  6544. height: math.unit(8 + 4/12, "feet"),
  6545. weight: math.unit(450, "kilograms"),
  6546. volume: math.unit(5, "cups"),
  6547. name: "Front",
  6548. image: {
  6549. source: "./media/characters/andy-renard/front.svg",
  6550. extra: 1839/1726,
  6551. bottom: 134/1973
  6552. }
  6553. },
  6554. back: {
  6555. height: math.unit(8 + 4/12, "feet"),
  6556. weight: math.unit(450, "kilograms"),
  6557. volume: math.unit(5, "cups"),
  6558. name: "Back",
  6559. image: {
  6560. source: "./media/characters/andy-renard/back.svg",
  6561. extra: 1838/1710,
  6562. bottom: 105/1943
  6563. }
  6564. },
  6565. },
  6566. [
  6567. {
  6568. name: "Tall",
  6569. height: math.unit(8 + 4/12, "feet")
  6570. },
  6571. {
  6572. name: "Mini Macro",
  6573. height: math.unit(15, "feet"),
  6574. default: true
  6575. },
  6576. {
  6577. name: "Macro",
  6578. height: math.unit(100, "feet")
  6579. },
  6580. {
  6581. name: "Mega Macro",
  6582. height: math.unit(1000, "feet")
  6583. },
  6584. {
  6585. name: "Giga Macro",
  6586. height: math.unit(10, "miles")
  6587. },
  6588. {
  6589. name: "God Macro",
  6590. height: math.unit(1, "multiverse")
  6591. },
  6592. ]
  6593. ))
  6594. characterMakers.push(() => makeCharacter(
  6595. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6596. {
  6597. front: {
  6598. height: math.unit(6, "feet"),
  6599. weight: math.unit(210, "lbs"),
  6600. name: "Front",
  6601. image: {
  6602. source: "./media/characters/cimmaron/front-sfw.svg",
  6603. extra: 701 / 676,
  6604. bottom: 0.046
  6605. }
  6606. },
  6607. back: {
  6608. height: math.unit(6, "feet"),
  6609. weight: math.unit(210, "lbs"),
  6610. name: "Back",
  6611. image: {
  6612. source: "./media/characters/cimmaron/back-sfw.svg",
  6613. extra: 701 / 676,
  6614. bottom: 0.046
  6615. }
  6616. },
  6617. frontNsfw: {
  6618. height: math.unit(6, "feet"),
  6619. weight: math.unit(210, "lbs"),
  6620. name: "Front (NSFW)",
  6621. image: {
  6622. source: "./media/characters/cimmaron/front-nsfw.svg",
  6623. extra: 701 / 676,
  6624. bottom: 0.046
  6625. }
  6626. },
  6627. backNsfw: {
  6628. height: math.unit(6, "feet"),
  6629. weight: math.unit(210, "lbs"),
  6630. name: "Back (NSFW)",
  6631. image: {
  6632. source: "./media/characters/cimmaron/back-nsfw.svg",
  6633. extra: 701 / 676,
  6634. bottom: 0.046
  6635. }
  6636. },
  6637. dick: {
  6638. height: math.unit(1.714, "feet"),
  6639. name: "Dick",
  6640. image: {
  6641. source: "./media/characters/cimmaron/dick.svg"
  6642. }
  6643. },
  6644. },
  6645. [
  6646. {
  6647. name: "Normal",
  6648. height: math.unit(6, "feet"),
  6649. default: true
  6650. },
  6651. {
  6652. name: "Macro Mayor",
  6653. height: math.unit(350, "meters")
  6654. },
  6655. ]
  6656. ))
  6657. characterMakers.push(() => makeCharacter(
  6658. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6659. {
  6660. front: {
  6661. height: math.unit(6, "feet"),
  6662. weight: math.unit(200, "lbs"),
  6663. name: "Front",
  6664. image: {
  6665. source: "./media/characters/akari/front.svg",
  6666. extra: 962 / 901,
  6667. bottom: 0.04
  6668. }
  6669. }
  6670. },
  6671. [
  6672. {
  6673. name: "Micro",
  6674. height: math.unit(5, "inches"),
  6675. default: true
  6676. },
  6677. {
  6678. name: "Normal",
  6679. height: math.unit(7, "feet")
  6680. },
  6681. ]
  6682. ))
  6683. characterMakers.push(() => makeCharacter(
  6684. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6685. {
  6686. front: {
  6687. height: math.unit(6, "feet"),
  6688. weight: math.unit(140, "lbs"),
  6689. name: "Front",
  6690. image: {
  6691. source: "./media/characters/cynosura/front.svg",
  6692. extra: 437/410,
  6693. bottom: 9/446
  6694. }
  6695. },
  6696. back: {
  6697. height: math.unit(6, "feet"),
  6698. weight: math.unit(140, "lbs"),
  6699. name: "Back",
  6700. image: {
  6701. source: "./media/characters/cynosura/back.svg",
  6702. extra: 1304/1160,
  6703. bottom: 71/1375
  6704. }
  6705. },
  6706. },
  6707. [
  6708. {
  6709. name: "Micro",
  6710. height: math.unit(4, "inches")
  6711. },
  6712. {
  6713. name: "Normal",
  6714. height: math.unit(5.75, "feet"),
  6715. default: true
  6716. },
  6717. {
  6718. name: "Tall",
  6719. height: math.unit(10, "feet")
  6720. },
  6721. {
  6722. name: "Big",
  6723. height: math.unit(20, "feet")
  6724. },
  6725. {
  6726. name: "Macro",
  6727. height: math.unit(50, "feet")
  6728. },
  6729. ]
  6730. ))
  6731. characterMakers.push(() => makeCharacter(
  6732. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6733. {
  6734. front: {
  6735. height: math.unit(13 + 2/12, "feet"),
  6736. weight: math.unit(800, "kg"),
  6737. name: "Front",
  6738. image: {
  6739. source: "./media/characters/gin/front.svg",
  6740. extra: 1312/1191,
  6741. bottom: 45/1357
  6742. }
  6743. },
  6744. mouth: {
  6745. height: math.unit(2.39 * 1.8, "feet"),
  6746. name: "Mouth",
  6747. image: {
  6748. source: "./media/characters/gin/mouth.svg"
  6749. }
  6750. },
  6751. hand: {
  6752. height: math.unit(1.57 * 2.19, "feet"),
  6753. name: "Hand",
  6754. image: {
  6755. source: "./media/characters/gin/hand.svg"
  6756. }
  6757. },
  6758. foot: {
  6759. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6760. name: "Foot",
  6761. image: {
  6762. source: "./media/characters/gin/foot.svg"
  6763. }
  6764. },
  6765. sole: {
  6766. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6767. name: "Sole",
  6768. image: {
  6769. source: "./media/characters/gin/sole.svg"
  6770. }
  6771. },
  6772. },
  6773. [
  6774. {
  6775. name: "Very Small",
  6776. height: math.unit(13 + 2 / 12, "feet")
  6777. },
  6778. {
  6779. name: "Micro",
  6780. height: math.unit(600, "miles")
  6781. },
  6782. {
  6783. name: "Regular",
  6784. height: math.unit(20, "earths"),
  6785. default: true
  6786. },
  6787. {
  6788. name: "Macro",
  6789. height: math.unit(2.2, "solarradii")
  6790. },
  6791. {
  6792. name: "Teramacro",
  6793. height: math.unit(1.2, "galaxies")
  6794. },
  6795. {
  6796. name: "Omegamacro",
  6797. height: math.unit(200, "universes")
  6798. },
  6799. ]
  6800. ))
  6801. characterMakers.push(() => makeCharacter(
  6802. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6803. {
  6804. front: {
  6805. height: math.unit(6 + 1 / 6, "feet"),
  6806. weight: math.unit(178, "lbs"),
  6807. name: "Front",
  6808. image: {
  6809. source: "./media/characters/guy/front.svg"
  6810. }
  6811. }
  6812. },
  6813. [
  6814. {
  6815. name: "Normal",
  6816. height: math.unit(6 + 1 / 6, "feet"),
  6817. default: true
  6818. },
  6819. {
  6820. name: "Large",
  6821. height: math.unit(25 + 7 / 12, "feet")
  6822. },
  6823. {
  6824. name: "Macro",
  6825. height: math.unit(60 + 9 / 12, "feet")
  6826. },
  6827. {
  6828. name: "Macro+",
  6829. height: math.unit(246, "feet")
  6830. },
  6831. {
  6832. name: "Macro++",
  6833. height: math.unit(878, "feet")
  6834. }
  6835. ]
  6836. ))
  6837. characterMakers.push(() => makeCharacter(
  6838. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6839. {
  6840. front: {
  6841. height: math.unit(9, "feet"),
  6842. weight: math.unit(800, "lbs"),
  6843. name: "Front",
  6844. image: {
  6845. source: "./media/characters/tiberius/front.svg",
  6846. extra: 2295 / 2071
  6847. }
  6848. },
  6849. back: {
  6850. height: math.unit(9, "feet"),
  6851. weight: math.unit(800, "lbs"),
  6852. name: "Back",
  6853. image: {
  6854. source: "./media/characters/tiberius/back.svg",
  6855. extra: 2373 / 2160
  6856. }
  6857. },
  6858. },
  6859. [
  6860. {
  6861. name: "Normal",
  6862. height: math.unit(9, "feet"),
  6863. default: true
  6864. }
  6865. ]
  6866. ))
  6867. characterMakers.push(() => makeCharacter(
  6868. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6869. {
  6870. front: {
  6871. height: math.unit(6, "feet"),
  6872. weight: math.unit(600, "lbs"),
  6873. name: "Front",
  6874. image: {
  6875. source: "./media/characters/surgo/front.svg",
  6876. extra: 3591 / 2227
  6877. }
  6878. },
  6879. back: {
  6880. height: math.unit(6, "feet"),
  6881. weight: math.unit(600, "lbs"),
  6882. name: "Back",
  6883. image: {
  6884. source: "./media/characters/surgo/back.svg",
  6885. extra: 3557 / 2228
  6886. }
  6887. },
  6888. laying: {
  6889. height: math.unit(6 * 0.85, "feet"),
  6890. weight: math.unit(600, "lbs"),
  6891. name: "Laying",
  6892. image: {
  6893. source: "./media/characters/surgo/laying.svg"
  6894. }
  6895. },
  6896. },
  6897. [
  6898. {
  6899. name: "Normal",
  6900. height: math.unit(6, "feet"),
  6901. default: true
  6902. }
  6903. ]
  6904. ))
  6905. characterMakers.push(() => makeCharacter(
  6906. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6907. {
  6908. side: {
  6909. height: math.unit(6, "feet"),
  6910. weight: math.unit(150, "lbs"),
  6911. name: "Side",
  6912. image: {
  6913. source: "./media/characters/cibus/side.svg",
  6914. extra: 800 / 400
  6915. }
  6916. },
  6917. },
  6918. [
  6919. {
  6920. name: "Normal",
  6921. height: math.unit(6, "feet"),
  6922. default: true
  6923. }
  6924. ]
  6925. ))
  6926. characterMakers.push(() => makeCharacter(
  6927. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6928. {
  6929. front: {
  6930. height: math.unit(6, "feet"),
  6931. weight: math.unit(240, "lbs"),
  6932. name: "Front",
  6933. image: {
  6934. source: "./media/characters/nibbles/front.svg"
  6935. }
  6936. },
  6937. side: {
  6938. height: math.unit(6, "feet"),
  6939. weight: math.unit(240, "lbs"),
  6940. name: "Side",
  6941. image: {
  6942. source: "./media/characters/nibbles/side.svg"
  6943. }
  6944. },
  6945. },
  6946. [
  6947. {
  6948. name: "Normal",
  6949. height: math.unit(9, "feet"),
  6950. default: true
  6951. }
  6952. ]
  6953. ))
  6954. characterMakers.push(() => makeCharacter(
  6955. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6956. {
  6957. side: {
  6958. height: math.unit(5 + 1 / 6, "feet"),
  6959. weight: math.unit(130, "lbs"),
  6960. name: "Side",
  6961. image: {
  6962. source: "./media/characters/rikky/side.svg",
  6963. extra: 851 / 801
  6964. }
  6965. },
  6966. },
  6967. [
  6968. {
  6969. name: "Normal",
  6970. height: math.unit(5 + 1 / 6, "feet")
  6971. },
  6972. {
  6973. name: "Macro",
  6974. height: math.unit(152, "feet"),
  6975. default: true
  6976. },
  6977. {
  6978. name: "Megamacro",
  6979. height: math.unit(7, "miles")
  6980. }
  6981. ]
  6982. ))
  6983. characterMakers.push(() => makeCharacter(
  6984. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6985. {
  6986. side: {
  6987. height: math.unit(370, "cm"),
  6988. weight: math.unit(350, "lbs"),
  6989. name: "Side",
  6990. image: {
  6991. source: "./media/characters/malfressa/side.svg"
  6992. }
  6993. },
  6994. walking: {
  6995. height: math.unit(370, "cm"),
  6996. weight: math.unit(350, "lbs"),
  6997. name: "Walking",
  6998. image: {
  6999. source: "./media/characters/malfressa/walking.svg"
  7000. }
  7001. },
  7002. feral: {
  7003. height: math.unit(2500, "cm"),
  7004. weight: math.unit(100000, "lbs"),
  7005. name: "Feral",
  7006. image: {
  7007. source: "./media/characters/malfressa/feral.svg",
  7008. extra: 2108 / 837,
  7009. bottom: 0.02
  7010. }
  7011. },
  7012. },
  7013. [
  7014. {
  7015. name: "Normal",
  7016. height: math.unit(370, "cm")
  7017. },
  7018. {
  7019. name: "Macro",
  7020. height: math.unit(300, "meters"),
  7021. default: true
  7022. }
  7023. ]
  7024. ))
  7025. characterMakers.push(() => makeCharacter(
  7026. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7027. {
  7028. front: {
  7029. height: math.unit(6, "feet"),
  7030. weight: math.unit(60, "kg"),
  7031. name: "Front",
  7032. image: {
  7033. source: "./media/characters/jaro/front.svg",
  7034. extra: 845/817,
  7035. bottom: 45/890
  7036. }
  7037. },
  7038. back: {
  7039. height: math.unit(6, "feet"),
  7040. weight: math.unit(60, "kg"),
  7041. name: "Back",
  7042. image: {
  7043. source: "./media/characters/jaro/back.svg",
  7044. extra: 847/817,
  7045. bottom: 34/881
  7046. }
  7047. },
  7048. },
  7049. [
  7050. {
  7051. name: "Micro",
  7052. height: math.unit(7, "inches")
  7053. },
  7054. {
  7055. name: "Normal",
  7056. height: math.unit(5.5, "feet"),
  7057. default: true
  7058. },
  7059. {
  7060. name: "Minimacro",
  7061. height: math.unit(20, "feet")
  7062. },
  7063. {
  7064. name: "Macro",
  7065. height: math.unit(200, "meters")
  7066. }
  7067. ]
  7068. ))
  7069. characterMakers.push(() => makeCharacter(
  7070. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7071. {
  7072. front: {
  7073. height: math.unit(6, "feet"),
  7074. weight: math.unit(195, "lb"),
  7075. name: "Front",
  7076. image: {
  7077. source: "./media/characters/rogue/front.svg"
  7078. }
  7079. },
  7080. },
  7081. [
  7082. {
  7083. name: "Macro",
  7084. height: math.unit(90, "feet"),
  7085. default: true
  7086. },
  7087. ]
  7088. ))
  7089. characterMakers.push(() => makeCharacter(
  7090. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7091. {
  7092. standing: {
  7093. height: math.unit(5 + 8 / 12, "feet"),
  7094. weight: math.unit(140, "lb"),
  7095. name: "Standing",
  7096. image: {
  7097. source: "./media/characters/piper/standing.svg",
  7098. extra: 1440/1284,
  7099. bottom: 66/1506
  7100. }
  7101. },
  7102. running: {
  7103. height: math.unit(5 + 8 / 12, "feet"),
  7104. weight: math.unit(140, "lb"),
  7105. name: "Running",
  7106. image: {
  7107. source: "./media/characters/piper/running.svg",
  7108. extra: 3948/3655,
  7109. bottom: 0/3948
  7110. }
  7111. },
  7112. sole: {
  7113. height: math.unit(0.81, "feet"),
  7114. weight: math.unit(2, "kg"),
  7115. name: "Sole",
  7116. image: {
  7117. source: "./media/characters/piper/sole.svg"
  7118. }
  7119. },
  7120. nipple: {
  7121. height: math.unit(0.25, "feet"),
  7122. weight: math.unit(1.5, "lb"),
  7123. name: "Nipple",
  7124. image: {
  7125. source: "./media/characters/piper/nipple.svg"
  7126. }
  7127. },
  7128. head: {
  7129. height: math.unit(1.1, "feet"),
  7130. name: "Head",
  7131. image: {
  7132. source: "./media/characters/piper/head.svg"
  7133. }
  7134. },
  7135. },
  7136. [
  7137. {
  7138. name: "Micro",
  7139. height: math.unit(2, "inches")
  7140. },
  7141. {
  7142. name: "Normal",
  7143. height: math.unit(5 + 8 / 12, "feet")
  7144. },
  7145. {
  7146. name: "Macro",
  7147. height: math.unit(250, "feet"),
  7148. default: true
  7149. },
  7150. {
  7151. name: "Megamacro",
  7152. height: math.unit(7, "miles")
  7153. },
  7154. ]
  7155. ))
  7156. characterMakers.push(() => makeCharacter(
  7157. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7158. {
  7159. front: {
  7160. height: math.unit(6, "feet"),
  7161. weight: math.unit(220, "lb"),
  7162. name: "Front",
  7163. image: {
  7164. source: "./media/characters/gemini/front.svg"
  7165. }
  7166. },
  7167. back: {
  7168. height: math.unit(6, "feet"),
  7169. weight: math.unit(220, "lb"),
  7170. name: "Back",
  7171. image: {
  7172. source: "./media/characters/gemini/back.svg"
  7173. }
  7174. },
  7175. kneeling: {
  7176. height: math.unit(6 / 1.5, "feet"),
  7177. weight: math.unit(220, "lb"),
  7178. name: "Kneeling",
  7179. image: {
  7180. source: "./media/characters/gemini/kneeling.svg",
  7181. bottom: 0.02
  7182. }
  7183. },
  7184. },
  7185. [
  7186. {
  7187. name: "Macro",
  7188. height: math.unit(300, "meters"),
  7189. default: true
  7190. },
  7191. {
  7192. name: "Megamacro",
  7193. height: math.unit(6900, "meters")
  7194. },
  7195. ]
  7196. ))
  7197. characterMakers.push(() => makeCharacter(
  7198. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7199. {
  7200. anthro: {
  7201. height: math.unit(2.35, "meters"),
  7202. weight: math.unit(73, "kg"),
  7203. name: "Anthro",
  7204. image: {
  7205. source: "./media/characters/alicia/anthro.svg",
  7206. extra: 2571 / 2385,
  7207. bottom: 75 / 2648
  7208. }
  7209. },
  7210. paw: {
  7211. height: math.unit(1.32, "feet"),
  7212. name: "Paw",
  7213. image: {
  7214. source: "./media/characters/alicia/paw.svg"
  7215. }
  7216. },
  7217. feral: {
  7218. height: math.unit(1.69, "meters"),
  7219. weight: math.unit(73, "kg"),
  7220. name: "Feral",
  7221. image: {
  7222. source: "./media/characters/alicia/feral.svg",
  7223. extra: 2123 / 1715,
  7224. bottom: 222 / 2349
  7225. }
  7226. },
  7227. },
  7228. [
  7229. {
  7230. name: "Normal",
  7231. height: math.unit(2.35, "meters")
  7232. },
  7233. {
  7234. name: "Macro",
  7235. height: math.unit(60, "meters"),
  7236. default: true
  7237. },
  7238. {
  7239. name: "Megamacro",
  7240. height: math.unit(10000, "kilometers")
  7241. },
  7242. ]
  7243. ))
  7244. characterMakers.push(() => makeCharacter(
  7245. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7246. {
  7247. front: {
  7248. height: math.unit(7, "feet"),
  7249. weight: math.unit(250, "lbs"),
  7250. name: "Front",
  7251. image: {
  7252. source: "./media/characters/archy/front.svg"
  7253. }
  7254. }
  7255. },
  7256. [
  7257. {
  7258. name: "Micro",
  7259. height: math.unit(1, "inch")
  7260. },
  7261. {
  7262. name: "Shorty",
  7263. height: math.unit(5, "feet")
  7264. },
  7265. {
  7266. name: "Normal",
  7267. height: math.unit(7, "feet")
  7268. },
  7269. {
  7270. name: "Macro",
  7271. height: math.unit(600, "meters"),
  7272. default: true
  7273. },
  7274. {
  7275. name: "Megamacro",
  7276. height: math.unit(1, "mile")
  7277. },
  7278. ]
  7279. ))
  7280. characterMakers.push(() => makeCharacter(
  7281. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7282. {
  7283. front: {
  7284. height: math.unit(1.65, "meters"),
  7285. weight: math.unit(74, "kg"),
  7286. name: "Front",
  7287. image: {
  7288. source: "./media/characters/berri/front.svg",
  7289. extra: 857 / 837,
  7290. bottom: 18 / 877
  7291. }
  7292. },
  7293. bum: {
  7294. height: math.unit(1.46, "feet"),
  7295. name: "Bum",
  7296. image: {
  7297. source: "./media/characters/berri/bum.svg"
  7298. }
  7299. },
  7300. mouth: {
  7301. height: math.unit(0.44, "feet"),
  7302. name: "Mouth",
  7303. image: {
  7304. source: "./media/characters/berri/mouth.svg"
  7305. }
  7306. },
  7307. paw: {
  7308. height: math.unit(0.826, "feet"),
  7309. name: "Paw",
  7310. image: {
  7311. source: "./media/characters/berri/paw.svg"
  7312. }
  7313. },
  7314. },
  7315. [
  7316. {
  7317. name: "Normal",
  7318. height: math.unit(1.65, "meters")
  7319. },
  7320. {
  7321. name: "Macro",
  7322. height: math.unit(60, "m"),
  7323. default: true
  7324. },
  7325. {
  7326. name: "Megamacro",
  7327. height: math.unit(9.213, "km")
  7328. },
  7329. {
  7330. name: "Planet Eater",
  7331. height: math.unit(489, "megameters")
  7332. },
  7333. {
  7334. name: "Teramacro",
  7335. height: math.unit(2471635000000, "meters")
  7336. },
  7337. {
  7338. name: "Examacro",
  7339. height: math.unit(8.0624e+26, "meters")
  7340. }
  7341. ]
  7342. ))
  7343. characterMakers.push(() => makeCharacter(
  7344. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7345. {
  7346. front: {
  7347. height: math.unit(1.72, "meters"),
  7348. weight: math.unit(68, "kg"),
  7349. name: "Front",
  7350. image: {
  7351. source: "./media/characters/lexi/front.svg"
  7352. }
  7353. }
  7354. },
  7355. [
  7356. {
  7357. name: "Very Smol",
  7358. height: math.unit(10, "mm")
  7359. },
  7360. {
  7361. name: "Micro",
  7362. height: math.unit(6.8, "cm"),
  7363. default: true
  7364. },
  7365. {
  7366. name: "Normal",
  7367. height: math.unit(1.72, "m")
  7368. }
  7369. ]
  7370. ))
  7371. characterMakers.push(() => makeCharacter(
  7372. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7373. {
  7374. front: {
  7375. height: math.unit(1.69, "meters"),
  7376. weight: math.unit(68, "kg"),
  7377. name: "Front",
  7378. image: {
  7379. source: "./media/characters/martin/front.svg",
  7380. extra: 596 / 581
  7381. }
  7382. }
  7383. },
  7384. [
  7385. {
  7386. name: "Micro",
  7387. height: math.unit(6.85, "cm"),
  7388. default: true
  7389. },
  7390. {
  7391. name: "Normal",
  7392. height: math.unit(1.69, "m")
  7393. }
  7394. ]
  7395. ))
  7396. characterMakers.push(() => makeCharacter(
  7397. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7398. {
  7399. front: {
  7400. height: math.unit(1.69, "meters"),
  7401. weight: math.unit(68, "kg"),
  7402. name: "Front",
  7403. image: {
  7404. source: "./media/characters/juno/front.svg"
  7405. }
  7406. }
  7407. },
  7408. [
  7409. {
  7410. name: "Micro",
  7411. height: math.unit(7, "cm")
  7412. },
  7413. {
  7414. name: "Normal",
  7415. height: math.unit(1.89, "m")
  7416. },
  7417. {
  7418. name: "Macro",
  7419. height: math.unit(353, "meters"),
  7420. default: true
  7421. }
  7422. ]
  7423. ))
  7424. characterMakers.push(() => makeCharacter(
  7425. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7426. {
  7427. front: {
  7428. height: math.unit(1.93, "meters"),
  7429. weight: math.unit(83, "kg"),
  7430. name: "Front",
  7431. image: {
  7432. source: "./media/characters/samantha/front.svg"
  7433. }
  7434. },
  7435. frontClothed: {
  7436. height: math.unit(1.93, "meters"),
  7437. weight: math.unit(83, "kg"),
  7438. name: "Front (Clothed)",
  7439. image: {
  7440. source: "./media/characters/samantha/front-clothed.svg"
  7441. }
  7442. },
  7443. back: {
  7444. height: math.unit(1.93, "meters"),
  7445. weight: math.unit(83, "kg"),
  7446. name: "Back",
  7447. image: {
  7448. source: "./media/characters/samantha/back.svg"
  7449. }
  7450. },
  7451. },
  7452. [
  7453. {
  7454. name: "Normal",
  7455. height: math.unit(1.93, "m")
  7456. },
  7457. {
  7458. name: "Macro",
  7459. height: math.unit(74, "meters"),
  7460. default: true
  7461. },
  7462. {
  7463. name: "Macro+",
  7464. height: math.unit(223, "meters"),
  7465. },
  7466. {
  7467. name: "Megamacro",
  7468. height: math.unit(8381, "meters"),
  7469. },
  7470. {
  7471. name: "Megamacro+",
  7472. height: math.unit(12000, "kilometers")
  7473. },
  7474. ]
  7475. ))
  7476. characterMakers.push(() => makeCharacter(
  7477. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7478. {
  7479. front: {
  7480. height: math.unit(1.92, "meters"),
  7481. weight: math.unit(80, "kg"),
  7482. name: "Front",
  7483. image: {
  7484. source: "./media/characters/dr-clay/front.svg"
  7485. }
  7486. },
  7487. frontClothed: {
  7488. height: math.unit(1.92, "meters"),
  7489. weight: math.unit(80, "kg"),
  7490. name: "Front (Clothed)",
  7491. image: {
  7492. source: "./media/characters/dr-clay/front-clothed.svg"
  7493. }
  7494. }
  7495. },
  7496. [
  7497. {
  7498. name: "Normal",
  7499. height: math.unit(1.92, "m")
  7500. },
  7501. {
  7502. name: "Macro",
  7503. height: math.unit(214, "meters"),
  7504. default: true
  7505. },
  7506. {
  7507. name: "Macro+",
  7508. height: math.unit(12.237, "meters"),
  7509. },
  7510. {
  7511. name: "Megamacro",
  7512. height: math.unit(557, "megameters"),
  7513. },
  7514. {
  7515. name: "Unimaginable",
  7516. height: math.unit(120e9, "lightyears")
  7517. },
  7518. ]
  7519. ))
  7520. characterMakers.push(() => makeCharacter(
  7521. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7522. {
  7523. front: {
  7524. height: math.unit(2, "meters"),
  7525. weight: math.unit(80, "kg"),
  7526. name: "Front",
  7527. image: {
  7528. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7529. }
  7530. }
  7531. },
  7532. [
  7533. {
  7534. name: "Teramacro",
  7535. height: math.unit(500000, "lightyears"),
  7536. default: true
  7537. },
  7538. ]
  7539. ))
  7540. characterMakers.push(() => makeCharacter(
  7541. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7542. {
  7543. crux: {
  7544. height: math.unit(2, "meters"),
  7545. weight: math.unit(150, "kg"),
  7546. name: "Crux",
  7547. image: {
  7548. source: "./media/characters/vemus/crux.svg",
  7549. extra: 1074/936,
  7550. bottom: 23/1097
  7551. }
  7552. },
  7553. skunkTanuki: {
  7554. height: math.unit(2, "meters"),
  7555. weight: math.unit(150, "kg"),
  7556. name: "Skunk-Tanuki",
  7557. image: {
  7558. source: "./media/characters/vemus/skunk-tanuki.svg",
  7559. extra: 926/893,
  7560. bottom: 20/946
  7561. }
  7562. },
  7563. },
  7564. [
  7565. {
  7566. name: "Normal",
  7567. height: math.unit(4, "meters"),
  7568. default: true
  7569. },
  7570. {
  7571. name: "Big",
  7572. height: math.unit(8, "meters")
  7573. },
  7574. {
  7575. name: "Macro",
  7576. height: math.unit(100, "meters")
  7577. },
  7578. {
  7579. name: "Macro+",
  7580. height: math.unit(1500, "meters")
  7581. },
  7582. {
  7583. name: "Stellar",
  7584. height: math.unit(14e8, "meters")
  7585. },
  7586. ]
  7587. ))
  7588. characterMakers.push(() => makeCharacter(
  7589. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7590. {
  7591. front: {
  7592. height: math.unit(2, "meters"),
  7593. weight: math.unit(70, "kg"),
  7594. name: "Front",
  7595. image: {
  7596. source: "./media/characters/beherit/front.svg",
  7597. extra: 1234/1109,
  7598. bottom: 55/1289
  7599. }
  7600. }
  7601. },
  7602. [
  7603. {
  7604. name: "Normal",
  7605. height: math.unit(6, "feet")
  7606. },
  7607. {
  7608. name: "Lorg",
  7609. height: math.unit(25, "feet"),
  7610. default: true
  7611. },
  7612. {
  7613. name: "Lorger",
  7614. height: math.unit(75, "feet")
  7615. },
  7616. {
  7617. name: "Macro",
  7618. height: math.unit(200, "meters")
  7619. },
  7620. ]
  7621. ))
  7622. characterMakers.push(() => makeCharacter(
  7623. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7624. {
  7625. front: {
  7626. height: math.unit(2, "meters"),
  7627. weight: math.unit(150, "kg"),
  7628. name: "Front",
  7629. image: {
  7630. source: "./media/characters/everett/front.svg",
  7631. extra: 1017/866,
  7632. bottom: 86/1103
  7633. }
  7634. },
  7635. paw: {
  7636. height: math.unit(2 / 3.6, "meters"),
  7637. name: "Paw",
  7638. image: {
  7639. source: "./media/characters/everett/paw.svg"
  7640. }
  7641. },
  7642. },
  7643. [
  7644. {
  7645. name: "Normal",
  7646. height: math.unit(15, "feet"),
  7647. default: true
  7648. },
  7649. {
  7650. name: "Lorg",
  7651. height: math.unit(70, "feet"),
  7652. default: true
  7653. },
  7654. {
  7655. name: "Lorger",
  7656. height: math.unit(250, "feet")
  7657. },
  7658. {
  7659. name: "Macro",
  7660. height: math.unit(500, "meters")
  7661. },
  7662. ]
  7663. ))
  7664. characterMakers.push(() => makeCharacter(
  7665. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7666. {
  7667. front: {
  7668. height: math.unit(2, "meters"),
  7669. weight: math.unit(86, "kg"),
  7670. name: "Front",
  7671. image: {
  7672. source: "./media/characters/rose/front.svg",
  7673. extra: 1785/1636,
  7674. bottom: 30/1815
  7675. },
  7676. form: "liom",
  7677. default: true
  7678. },
  7679. frontSporty: {
  7680. height: math.unit(2, "meters"),
  7681. weight: math.unit(86, "kg"),
  7682. name: "Front (Sporty)",
  7683. image: {
  7684. source: "./media/characters/rose/front-sporty.svg",
  7685. extra: 350/335,
  7686. bottom: 10/360
  7687. },
  7688. form: "liom"
  7689. },
  7690. frontAlt: {
  7691. height: math.unit(1.6, "meters"),
  7692. weight: math.unit(86, "kg"),
  7693. name: "Front (Alt)",
  7694. image: {
  7695. source: "./media/characters/rose/front-alt.svg",
  7696. extra: 299/283,
  7697. bottom: 3/302
  7698. },
  7699. form: "liom"
  7700. },
  7701. plush: {
  7702. height: math.unit(2, "meters"),
  7703. weight: math.unit(86/3, "kg"),
  7704. name: "Plush",
  7705. image: {
  7706. source: "./media/characters/rose/plush.svg",
  7707. extra: 361/337,
  7708. bottom: 11/372
  7709. },
  7710. form: "plush",
  7711. default: true
  7712. },
  7713. faeStanding: {
  7714. height: math.unit(10, "cm"),
  7715. weight: math.unit(10, "grams"),
  7716. name: "Standing",
  7717. image: {
  7718. source: "./media/characters/rose/fae-standing.svg",
  7719. extra: 1189/1060,
  7720. bottom: 27/1216
  7721. },
  7722. form: "fae",
  7723. default: true
  7724. },
  7725. faeSitting: {
  7726. height: math.unit(5, "cm"),
  7727. weight: math.unit(10, "grams"),
  7728. name: "Sitting",
  7729. image: {
  7730. source: "./media/characters/rose/fae-sitting.svg",
  7731. extra: 737/577,
  7732. bottom: 356/1093
  7733. },
  7734. form: "fae"
  7735. },
  7736. faePaw: {
  7737. height: math.unit(1.35, "cm"),
  7738. name: "Paw",
  7739. image: {
  7740. source: "./media/characters/rose/fae-paw.svg"
  7741. },
  7742. form: "fae"
  7743. },
  7744. },
  7745. [
  7746. {
  7747. name: "True Micro",
  7748. height: math.unit(9, "cm"),
  7749. form: "liom"
  7750. },
  7751. {
  7752. name: "Micro",
  7753. height: math.unit(16, "cm"),
  7754. form: "liom"
  7755. },
  7756. {
  7757. name: "Normal",
  7758. height: math.unit(1.85, "meters"),
  7759. default: true,
  7760. form: "liom"
  7761. },
  7762. {
  7763. name: "Mini-Macro",
  7764. height: math.unit(5, "meters"),
  7765. form: "liom"
  7766. },
  7767. {
  7768. name: "Macro",
  7769. height: math.unit(15, "meters"),
  7770. form: "liom"
  7771. },
  7772. {
  7773. name: "True Macro",
  7774. height: math.unit(40, "meters"),
  7775. form: "liom"
  7776. },
  7777. {
  7778. name: "City Scale",
  7779. height: math.unit(1, "km"),
  7780. form: "liom"
  7781. },
  7782. {
  7783. name: "Plushie",
  7784. height: math.unit(9, "cm"),
  7785. form: "plush",
  7786. default: true
  7787. },
  7788. {
  7789. name: "Fae",
  7790. height: math.unit(10, "cm"),
  7791. form: "fae",
  7792. default: true
  7793. },
  7794. ],
  7795. {
  7796. "liom": {
  7797. name: "Liom"
  7798. },
  7799. "plush": {
  7800. name: "Plush"
  7801. },
  7802. "fae": {
  7803. name: "Fae Fox",
  7804. default: true
  7805. }
  7806. }
  7807. ))
  7808. characterMakers.push(() => makeCharacter(
  7809. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7810. {
  7811. front: {
  7812. height: math.unit(2, "meters"),
  7813. weight: math.unit(350, "lbs"),
  7814. name: "Front",
  7815. image: {
  7816. source: "./media/characters/regal/front.svg"
  7817. }
  7818. },
  7819. back: {
  7820. height: math.unit(2, "meters"),
  7821. weight: math.unit(350, "lbs"),
  7822. name: "Back",
  7823. image: {
  7824. source: "./media/characters/regal/back.svg"
  7825. }
  7826. },
  7827. },
  7828. [
  7829. {
  7830. name: "Macro",
  7831. height: math.unit(350, "feet"),
  7832. default: true
  7833. }
  7834. ]
  7835. ))
  7836. characterMakers.push(() => makeCharacter(
  7837. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7838. {
  7839. front: {
  7840. height: math.unit(4 + 11 / 12, "feet"),
  7841. weight: math.unit(100, "lbs"),
  7842. name: "Front",
  7843. image: {
  7844. source: "./media/characters/opal/front.svg"
  7845. }
  7846. },
  7847. frontAlt: {
  7848. height: math.unit(4 + 11 / 12, "feet"),
  7849. weight: math.unit(100, "lbs"),
  7850. name: "Front (Alt)",
  7851. image: {
  7852. source: "./media/characters/opal/front-alt.svg"
  7853. }
  7854. },
  7855. },
  7856. [
  7857. {
  7858. name: "Small",
  7859. height: math.unit(4 + 11 / 12, "feet")
  7860. },
  7861. {
  7862. name: "Normal",
  7863. height: math.unit(20, "feet"),
  7864. default: true
  7865. },
  7866. {
  7867. name: "Macro",
  7868. height: math.unit(120, "feet")
  7869. },
  7870. {
  7871. name: "Megamacro",
  7872. height: math.unit(80, "miles")
  7873. },
  7874. {
  7875. name: "True Size",
  7876. height: math.unit(100000, "lightyears")
  7877. },
  7878. ]
  7879. ))
  7880. characterMakers.push(() => makeCharacter(
  7881. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7882. {
  7883. front: {
  7884. height: math.unit(6, "feet"),
  7885. weight: math.unit(200, "lbs"),
  7886. name: "Front",
  7887. image: {
  7888. source: "./media/characters/vector-wuff/front.svg"
  7889. }
  7890. }
  7891. },
  7892. [
  7893. {
  7894. name: "Normal",
  7895. height: math.unit(2.8, "meters")
  7896. },
  7897. {
  7898. name: "Macro",
  7899. height: math.unit(450, "meters"),
  7900. default: true
  7901. },
  7902. {
  7903. name: "Megamacro",
  7904. height: math.unit(15, "kilometers")
  7905. }
  7906. ]
  7907. ))
  7908. characterMakers.push(() => makeCharacter(
  7909. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7910. {
  7911. front: {
  7912. height: math.unit(6, "feet"),
  7913. weight: math.unit(256, "lbs"),
  7914. name: "Front",
  7915. image: {
  7916. source: "./media/characters/dannik/front.svg"
  7917. }
  7918. }
  7919. },
  7920. [
  7921. {
  7922. name: "Macro",
  7923. height: math.unit(69.57, "meters"),
  7924. default: true
  7925. },
  7926. ]
  7927. ))
  7928. characterMakers.push(() => makeCharacter(
  7929. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7930. {
  7931. front: {
  7932. height: math.unit(6, "feet"),
  7933. weight: math.unit(120, "lbs"),
  7934. name: "Front",
  7935. image: {
  7936. source: "./media/characters/azura-saharah/front.svg"
  7937. }
  7938. },
  7939. back: {
  7940. height: math.unit(6, "feet"),
  7941. weight: math.unit(120, "lbs"),
  7942. name: "Back",
  7943. image: {
  7944. source: "./media/characters/azura-saharah/back.svg"
  7945. }
  7946. },
  7947. },
  7948. [
  7949. {
  7950. name: "Macro",
  7951. height: math.unit(100, "feet"),
  7952. default: true
  7953. },
  7954. ]
  7955. ))
  7956. characterMakers.push(() => makeCharacter(
  7957. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7958. {
  7959. side: {
  7960. height: math.unit(5 + 4 / 12, "feet"),
  7961. weight: math.unit(163, "lbs"),
  7962. name: "Side",
  7963. image: {
  7964. source: "./media/characters/kennedy/side.svg"
  7965. }
  7966. }
  7967. },
  7968. [
  7969. {
  7970. name: "Standard Doggo",
  7971. height: math.unit(5 + 4 / 12, "feet")
  7972. },
  7973. {
  7974. name: "Big Doggo",
  7975. height: math.unit(25 + 3 / 12, "feet"),
  7976. default: true
  7977. },
  7978. ]
  7979. ))
  7980. characterMakers.push(() => makeCharacter(
  7981. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7982. {
  7983. front: {
  7984. height: math.unit(5 + 5/12, "feet"),
  7985. weight: math.unit(100, "lbs"),
  7986. name: "Front",
  7987. image: {
  7988. source: "./media/characters/odios-de-lunar/front.svg",
  7989. extra: 1468/1323,
  7990. bottom: 22/1490
  7991. }
  7992. }
  7993. },
  7994. [
  7995. {
  7996. name: "Micro",
  7997. height: math.unit(3, "inches")
  7998. },
  7999. {
  8000. name: "Normal",
  8001. height: math.unit(5.5, "feet"),
  8002. default: true
  8003. },
  8004. {
  8005. name: "Macro",
  8006. height: math.unit(100, "feet")
  8007. },
  8008. ]
  8009. ))
  8010. characterMakers.push(() => makeCharacter(
  8011. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8012. {
  8013. back: {
  8014. height: math.unit(6, "feet"),
  8015. weight: math.unit(220, "lbs"),
  8016. name: "Back",
  8017. image: {
  8018. source: "./media/characters/mandake/back.svg"
  8019. }
  8020. }
  8021. },
  8022. [
  8023. {
  8024. name: "Normal",
  8025. height: math.unit(7, "feet"),
  8026. default: true
  8027. },
  8028. {
  8029. name: "Macro",
  8030. height: math.unit(78, "feet")
  8031. },
  8032. {
  8033. name: "Macro+",
  8034. height: math.unit(300, "meters")
  8035. },
  8036. {
  8037. name: "Macro++",
  8038. height: math.unit(2400, "feet")
  8039. },
  8040. {
  8041. name: "Megamacro",
  8042. height: math.unit(5167, "meters")
  8043. },
  8044. {
  8045. name: "Gigamacro",
  8046. height: math.unit(41769, "miles")
  8047. },
  8048. ]
  8049. ))
  8050. characterMakers.push(() => makeCharacter(
  8051. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8052. {
  8053. front: {
  8054. height: math.unit(6, "feet"),
  8055. weight: math.unit(120, "lbs"),
  8056. name: "Front",
  8057. image: {
  8058. source: "./media/characters/yozey/front.svg"
  8059. }
  8060. },
  8061. frontAlt: {
  8062. height: math.unit(6, "feet"),
  8063. weight: math.unit(120, "lbs"),
  8064. name: "Front (Alt)",
  8065. image: {
  8066. source: "./media/characters/yozey/front-alt.svg"
  8067. }
  8068. },
  8069. side: {
  8070. height: math.unit(6, "feet"),
  8071. weight: math.unit(120, "lbs"),
  8072. name: "Side",
  8073. image: {
  8074. source: "./media/characters/yozey/side.svg"
  8075. }
  8076. },
  8077. },
  8078. [
  8079. {
  8080. name: "Micro",
  8081. height: math.unit(3, "inches"),
  8082. default: true
  8083. },
  8084. {
  8085. name: "Normal",
  8086. height: math.unit(6, "feet")
  8087. }
  8088. ]
  8089. ))
  8090. characterMakers.push(() => makeCharacter(
  8091. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8092. {
  8093. front: {
  8094. height: math.unit(6, "feet"),
  8095. weight: math.unit(103, "lbs"),
  8096. name: "Front",
  8097. image: {
  8098. source: "./media/characters/valeska-voss/front.svg"
  8099. }
  8100. }
  8101. },
  8102. [
  8103. {
  8104. name: "Mini-Sized Sub",
  8105. height: math.unit(3.1, "inches")
  8106. },
  8107. {
  8108. name: "Mid-Sized Sub",
  8109. height: math.unit(6.2, "inches")
  8110. },
  8111. {
  8112. name: "Full-Sized Sub",
  8113. height: math.unit(9.3, "inches")
  8114. },
  8115. {
  8116. name: "Normal",
  8117. height: math.unit(5 + 2 / 12, "foot"),
  8118. default: true
  8119. },
  8120. ]
  8121. ))
  8122. characterMakers.push(() => makeCharacter(
  8123. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8124. {
  8125. front: {
  8126. height: math.unit(6, "feet"),
  8127. weight: math.unit(160, "lbs"),
  8128. name: "Front",
  8129. image: {
  8130. source: "./media/characters/gene-zeta/front.svg",
  8131. extra: 3006 / 2826,
  8132. bottom: 182 / 3188
  8133. }
  8134. }
  8135. },
  8136. [
  8137. {
  8138. name: "Micro",
  8139. height: math.unit(6, "inches")
  8140. },
  8141. {
  8142. name: "Normal",
  8143. height: math.unit(5 + 11 / 12, "foot"),
  8144. default: true
  8145. },
  8146. {
  8147. name: "Macro",
  8148. height: math.unit(140, "feet")
  8149. },
  8150. {
  8151. name: "Supercharged",
  8152. height: math.unit(2500, "feet")
  8153. },
  8154. ]
  8155. ))
  8156. characterMakers.push(() => makeCharacter(
  8157. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8158. {
  8159. front: {
  8160. height: math.unit(6, "feet"),
  8161. weight: math.unit(350, "lbs"),
  8162. name: "Front",
  8163. image: {
  8164. source: "./media/characters/razinox/front.svg",
  8165. extra: 1686 / 1548,
  8166. bottom: 28.2 / 1868
  8167. }
  8168. },
  8169. back: {
  8170. height: math.unit(6, "feet"),
  8171. weight: math.unit(350, "lbs"),
  8172. name: "Back",
  8173. image: {
  8174. source: "./media/characters/razinox/back.svg",
  8175. extra: 1660 / 1590,
  8176. bottom: 15 / 1665
  8177. }
  8178. },
  8179. },
  8180. [
  8181. {
  8182. name: "Normal",
  8183. height: math.unit(10 + 8 / 12, "foot")
  8184. },
  8185. {
  8186. name: "Minimacro",
  8187. height: math.unit(15, "foot")
  8188. },
  8189. {
  8190. name: "Macro",
  8191. height: math.unit(60, "foot"),
  8192. default: true
  8193. },
  8194. {
  8195. name: "Megamacro",
  8196. height: math.unit(5, "miles")
  8197. },
  8198. {
  8199. name: "Gigamacro",
  8200. height: math.unit(6000, "miles")
  8201. },
  8202. ]
  8203. ))
  8204. characterMakers.push(() => makeCharacter(
  8205. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8206. {
  8207. front: {
  8208. height: math.unit(6, "feet"),
  8209. weight: math.unit(150, "lbs"),
  8210. name: "Front",
  8211. image: {
  8212. source: "./media/characters/cobalt/front.svg"
  8213. }
  8214. }
  8215. },
  8216. [
  8217. {
  8218. name: "Normal",
  8219. height: math.unit(8 + 1 / 12, "foot")
  8220. },
  8221. {
  8222. name: "Macro",
  8223. height: math.unit(111, "foot"),
  8224. default: true
  8225. },
  8226. {
  8227. name: "Supracosmic",
  8228. height: math.unit(1e42, "feet")
  8229. },
  8230. ]
  8231. ))
  8232. characterMakers.push(() => makeCharacter(
  8233. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8234. {
  8235. front: {
  8236. height: math.unit(5, "inches"),
  8237. name: "Front",
  8238. image: {
  8239. source: "./media/characters/amanda/front.svg",
  8240. extra: 926/791,
  8241. bottom: 38/964
  8242. }
  8243. },
  8244. back: {
  8245. height: math.unit(5, "inches"),
  8246. name: "Back",
  8247. image: {
  8248. source: "./media/characters/amanda/back.svg",
  8249. extra: 909/805,
  8250. bottom: 43/952
  8251. }
  8252. },
  8253. },
  8254. [
  8255. {
  8256. name: "Micro",
  8257. height: math.unit(5, "inches"),
  8258. default: true
  8259. },
  8260. ]
  8261. ))
  8262. characterMakers.push(() => makeCharacter(
  8263. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8264. {
  8265. front: {
  8266. height: math.unit(2.75, "meters"),
  8267. weight: math.unit(1200, "lb"),
  8268. name: "Front",
  8269. image: {
  8270. source: "./media/characters/teal/front.svg",
  8271. extra: 2463 / 2320,
  8272. bottom: 166 / 2629
  8273. }
  8274. },
  8275. back: {
  8276. height: math.unit(2.75, "meters"),
  8277. weight: math.unit(1200, "lb"),
  8278. name: "Back",
  8279. image: {
  8280. source: "./media/characters/teal/back.svg",
  8281. extra: 2580 / 2489,
  8282. bottom: 151 / 2731
  8283. }
  8284. },
  8285. sitting: {
  8286. height: math.unit(1.9, "meters"),
  8287. weight: math.unit(1200, "lb"),
  8288. name: "Sitting",
  8289. image: {
  8290. source: "./media/characters/teal/sitting.svg",
  8291. extra: 623 / 590,
  8292. bottom: 121 / 744
  8293. }
  8294. },
  8295. standing: {
  8296. height: math.unit(2.75, "meters"),
  8297. weight: math.unit(1200, "lb"),
  8298. name: "Standing",
  8299. image: {
  8300. source: "./media/characters/teal/standing.svg",
  8301. extra: 923 / 893,
  8302. bottom: 60 / 983
  8303. }
  8304. },
  8305. stretching: {
  8306. height: math.unit(3.65, "meters"),
  8307. weight: math.unit(1200, "lb"),
  8308. name: "Stretching",
  8309. image: {
  8310. source: "./media/characters/teal/stretching.svg",
  8311. extra: 1276 / 1244,
  8312. bottom: 0 / 1276
  8313. }
  8314. },
  8315. legged: {
  8316. height: math.unit(1.3, "meters"),
  8317. weight: math.unit(100, "lb"),
  8318. name: "Legged",
  8319. image: {
  8320. source: "./media/characters/teal/legged.svg",
  8321. extra: 462 / 437,
  8322. bottom: 24 / 486
  8323. }
  8324. },
  8325. naga: {
  8326. height: math.unit(5.4, "meters"),
  8327. weight: math.unit(4000, "lb"),
  8328. name: "Naga",
  8329. image: {
  8330. source: "./media/characters/teal/naga.svg",
  8331. extra: 1902 / 1858,
  8332. bottom: 0 / 1902
  8333. }
  8334. },
  8335. hand: {
  8336. height: math.unit(0.52, "meters"),
  8337. name: "Hand",
  8338. image: {
  8339. source: "./media/characters/teal/hand.svg"
  8340. }
  8341. },
  8342. maw: {
  8343. height: math.unit(0.43, "meters"),
  8344. name: "Maw",
  8345. image: {
  8346. source: "./media/characters/teal/maw.svg"
  8347. }
  8348. },
  8349. slit: {
  8350. height: math.unit(0.25, "meters"),
  8351. name: "Slit",
  8352. image: {
  8353. source: "./media/characters/teal/slit.svg"
  8354. }
  8355. },
  8356. },
  8357. [
  8358. {
  8359. name: "Normal",
  8360. height: math.unit(2.75, "meters"),
  8361. default: true
  8362. },
  8363. {
  8364. name: "Macro",
  8365. height: math.unit(300, "feet")
  8366. },
  8367. {
  8368. name: "Macro+",
  8369. height: math.unit(2000, "feet")
  8370. },
  8371. ]
  8372. ))
  8373. characterMakers.push(() => makeCharacter(
  8374. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8375. {
  8376. frontCat: {
  8377. height: math.unit(6, "feet"),
  8378. weight: math.unit(180, "lbs"),
  8379. name: "Front (Cat)",
  8380. image: {
  8381. source: "./media/characters/ravin-amulet/front-cat.svg"
  8382. }
  8383. },
  8384. frontCatAlt: {
  8385. height: math.unit(6, "feet"),
  8386. weight: math.unit(180, "lbs"),
  8387. name: "Front (Alt, Cat)",
  8388. image: {
  8389. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8390. }
  8391. },
  8392. frontWerewolf: {
  8393. height: math.unit(6 * 1.2, "feet"),
  8394. weight: math.unit(225, "lbs"),
  8395. name: "Front (Werewolf)",
  8396. image: {
  8397. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8398. }
  8399. },
  8400. backWerewolf: {
  8401. height: math.unit(6 * 1.2, "feet"),
  8402. weight: math.unit(225, "lbs"),
  8403. name: "Back (Werewolf)",
  8404. image: {
  8405. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8406. }
  8407. },
  8408. },
  8409. [
  8410. {
  8411. name: "Nano",
  8412. height: math.unit(1, "micrometer")
  8413. },
  8414. {
  8415. name: "Micro",
  8416. height: math.unit(1, "inch")
  8417. },
  8418. {
  8419. name: "Normal",
  8420. height: math.unit(6, "feet"),
  8421. default: true
  8422. },
  8423. {
  8424. name: "Macro",
  8425. height: math.unit(60, "feet")
  8426. }
  8427. ]
  8428. ))
  8429. characterMakers.push(() => makeCharacter(
  8430. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8431. {
  8432. front: {
  8433. height: math.unit(6, "feet"),
  8434. weight: math.unit(165, "lbs"),
  8435. name: "Front",
  8436. image: {
  8437. source: "./media/characters/fluoresce/front.svg"
  8438. }
  8439. }
  8440. },
  8441. [
  8442. {
  8443. name: "Micro",
  8444. height: math.unit(6, "cm")
  8445. },
  8446. {
  8447. name: "Normal",
  8448. height: math.unit(5 + 7 / 12, "feet"),
  8449. default: true
  8450. },
  8451. {
  8452. name: "Macro",
  8453. height: math.unit(56, "feet")
  8454. },
  8455. {
  8456. name: "Megamacro",
  8457. height: math.unit(1.9, "miles")
  8458. },
  8459. ]
  8460. ))
  8461. characterMakers.push(() => makeCharacter(
  8462. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8463. {
  8464. front: {
  8465. height: math.unit(9 + 6 / 12, "feet"),
  8466. weight: math.unit(523, "lbs"),
  8467. name: "Side",
  8468. image: {
  8469. source: "./media/characters/aurora/side.svg",
  8470. extra: 474/393,
  8471. bottom: 5/479
  8472. }
  8473. }
  8474. },
  8475. [
  8476. {
  8477. name: "Normal",
  8478. height: math.unit(9 + 6 / 12, "feet")
  8479. },
  8480. {
  8481. name: "Macro",
  8482. height: math.unit(96, "feet"),
  8483. default: true
  8484. },
  8485. {
  8486. name: "Macro+",
  8487. height: math.unit(243, "feet")
  8488. },
  8489. ]
  8490. ))
  8491. characterMakers.push(() => makeCharacter(
  8492. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8493. {
  8494. front: {
  8495. height: math.unit(194, "cm"),
  8496. weight: math.unit(90, "kg"),
  8497. name: "Front",
  8498. image: {
  8499. source: "./media/characters/ranek/front.svg",
  8500. extra: 1862/1791,
  8501. bottom: 80/1942
  8502. }
  8503. },
  8504. back: {
  8505. height: math.unit(194, "cm"),
  8506. weight: math.unit(90, "kg"),
  8507. name: "Back",
  8508. image: {
  8509. source: "./media/characters/ranek/back.svg",
  8510. extra: 1853/1787,
  8511. bottom: 74/1927
  8512. }
  8513. },
  8514. feral: {
  8515. height: math.unit(30, "cm"),
  8516. weight: math.unit(1.6, "lbs"),
  8517. name: "Feral",
  8518. image: {
  8519. source: "./media/characters/ranek/feral.svg",
  8520. extra: 990/631,
  8521. bottom: 29/1019
  8522. }
  8523. },
  8524. },
  8525. [
  8526. {
  8527. name: "Normal",
  8528. height: math.unit(194, "cm"),
  8529. default: true
  8530. },
  8531. {
  8532. name: "Macro",
  8533. height: math.unit(100, "meters")
  8534. },
  8535. ]
  8536. ))
  8537. characterMakers.push(() => makeCharacter(
  8538. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8539. {
  8540. front: {
  8541. height: math.unit(5 + 6 / 12, "feet"),
  8542. weight: math.unit(153, "lbs"),
  8543. name: "Front",
  8544. image: {
  8545. source: "./media/characters/andrew-cooper/front.svg"
  8546. }
  8547. },
  8548. },
  8549. [
  8550. {
  8551. name: "Nano",
  8552. height: math.unit(1, "mm")
  8553. },
  8554. {
  8555. name: "Micro",
  8556. height: math.unit(2, "inches")
  8557. },
  8558. {
  8559. name: "Normal",
  8560. height: math.unit(5 + 6 / 12, "feet"),
  8561. default: true
  8562. }
  8563. ]
  8564. ))
  8565. characterMakers.push(() => makeCharacter(
  8566. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8567. {
  8568. front: {
  8569. height: math.unit(6, "feet"),
  8570. weight: math.unit(180, "lbs"),
  8571. name: "Front",
  8572. image: {
  8573. source: "./media/characters/akane-sato/front.svg",
  8574. extra: 1219 / 1140
  8575. }
  8576. },
  8577. back: {
  8578. height: math.unit(6, "feet"),
  8579. weight: math.unit(180, "lbs"),
  8580. name: "Back",
  8581. image: {
  8582. source: "./media/characters/akane-sato/back.svg",
  8583. extra: 1219 / 1170
  8584. }
  8585. },
  8586. },
  8587. [
  8588. {
  8589. name: "Normal",
  8590. height: math.unit(2.5, "meters")
  8591. },
  8592. {
  8593. name: "Macro",
  8594. height: math.unit(250, "meters"),
  8595. default: true
  8596. },
  8597. {
  8598. name: "Megamacro",
  8599. height: math.unit(25, "km")
  8600. },
  8601. ]
  8602. ))
  8603. characterMakers.push(() => makeCharacter(
  8604. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8605. {
  8606. front: {
  8607. height: math.unit(6, "feet"),
  8608. weight: math.unit(65, "kg"),
  8609. name: "Front",
  8610. image: {
  8611. source: "./media/characters/rook/front.svg",
  8612. extra: 960 / 950
  8613. }
  8614. }
  8615. },
  8616. [
  8617. {
  8618. name: "Normal",
  8619. height: math.unit(8.8, "feet")
  8620. },
  8621. {
  8622. name: "Macro",
  8623. height: math.unit(88, "feet"),
  8624. default: true
  8625. },
  8626. {
  8627. name: "Megamacro",
  8628. height: math.unit(8, "miles")
  8629. },
  8630. ]
  8631. ))
  8632. characterMakers.push(() => makeCharacter(
  8633. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8634. {
  8635. front: {
  8636. height: math.unit(12 + 2 / 12, "feet"),
  8637. weight: math.unit(808, "lbs"),
  8638. name: "Front",
  8639. image: {
  8640. source: "./media/characters/prodigy/front.svg"
  8641. }
  8642. }
  8643. },
  8644. [
  8645. {
  8646. name: "Normal",
  8647. height: math.unit(12 + 2 / 12, "feet"),
  8648. default: true
  8649. },
  8650. {
  8651. name: "Macro",
  8652. height: math.unit(143, "feet")
  8653. },
  8654. {
  8655. name: "Macro+",
  8656. height: math.unit(400, "feet")
  8657. },
  8658. ]
  8659. ))
  8660. characterMakers.push(() => makeCharacter(
  8661. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8662. {
  8663. front: {
  8664. height: math.unit(6, "feet"),
  8665. weight: math.unit(225, "lbs"),
  8666. name: "Front",
  8667. image: {
  8668. source: "./media/characters/daniel/front.svg"
  8669. }
  8670. },
  8671. leaning: {
  8672. height: math.unit(6, "feet"),
  8673. weight: math.unit(225, "lbs"),
  8674. name: "Leaning",
  8675. image: {
  8676. source: "./media/characters/daniel/leaning.svg"
  8677. }
  8678. },
  8679. },
  8680. [
  8681. {
  8682. name: "Macro",
  8683. height: math.unit(1000, "feet"),
  8684. default: true
  8685. },
  8686. ]
  8687. ))
  8688. characterMakers.push(() => makeCharacter(
  8689. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8690. {
  8691. front: {
  8692. height: math.unit(6, "feet"),
  8693. weight: math.unit(88, "lbs"),
  8694. name: "Front",
  8695. image: {
  8696. source: "./media/characters/chiros/front.svg",
  8697. extra: 306 / 226
  8698. }
  8699. },
  8700. side: {
  8701. height: math.unit(6, "feet"),
  8702. weight: math.unit(88, "lbs"),
  8703. name: "Side",
  8704. image: {
  8705. source: "./media/characters/chiros/side.svg",
  8706. extra: 306 / 226
  8707. }
  8708. },
  8709. },
  8710. [
  8711. {
  8712. name: "Normal",
  8713. height: math.unit(6, "cm"),
  8714. default: true
  8715. },
  8716. ]
  8717. ))
  8718. characterMakers.push(() => makeCharacter(
  8719. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8720. {
  8721. front: {
  8722. height: math.unit(6, "feet"),
  8723. weight: math.unit(100, "lbs"),
  8724. name: "Front",
  8725. image: {
  8726. source: "./media/characters/selka/front.svg",
  8727. extra: 947 / 887
  8728. }
  8729. }
  8730. },
  8731. [
  8732. {
  8733. name: "Normal",
  8734. height: math.unit(5, "cm"),
  8735. default: true
  8736. },
  8737. ]
  8738. ))
  8739. characterMakers.push(() => makeCharacter(
  8740. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8741. {
  8742. front: {
  8743. height: math.unit(8 + 3 / 12, "feet"),
  8744. weight: math.unit(424, "lbs"),
  8745. name: "Front",
  8746. image: {
  8747. source: "./media/characters/verin/front.svg",
  8748. extra: 1845 / 1550
  8749. }
  8750. },
  8751. frontArmored: {
  8752. height: math.unit(8 + 3 / 12, "feet"),
  8753. weight: math.unit(424, "lbs"),
  8754. name: "Front (Armored)",
  8755. image: {
  8756. source: "./media/characters/verin/front-armor.svg",
  8757. extra: 1845 / 1550,
  8758. bottom: 0.01
  8759. }
  8760. },
  8761. back: {
  8762. height: math.unit(8 + 3 / 12, "feet"),
  8763. weight: math.unit(424, "lbs"),
  8764. name: "Back",
  8765. image: {
  8766. source: "./media/characters/verin/back.svg",
  8767. bottom: 0.1,
  8768. extra: 1
  8769. }
  8770. },
  8771. foot: {
  8772. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8773. name: "Foot",
  8774. image: {
  8775. source: "./media/characters/verin/foot.svg"
  8776. }
  8777. },
  8778. },
  8779. [
  8780. {
  8781. name: "Normal",
  8782. height: math.unit(8 + 3 / 12, "feet")
  8783. },
  8784. {
  8785. name: "Minimacro",
  8786. height: math.unit(21, "feet"),
  8787. default: true
  8788. },
  8789. {
  8790. name: "Macro",
  8791. height: math.unit(626, "feet")
  8792. },
  8793. ]
  8794. ))
  8795. characterMakers.push(() => makeCharacter(
  8796. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8797. {
  8798. front: {
  8799. height: math.unit(2.718, "meters"),
  8800. weight: math.unit(150, "lbs"),
  8801. name: "Front",
  8802. image: {
  8803. source: "./media/characters/sovrim-terraquian/front.svg",
  8804. extra: 1752/1689,
  8805. bottom: 36/1788
  8806. }
  8807. },
  8808. back: {
  8809. height: math.unit(2.718, "meters"),
  8810. weight: math.unit(150, "lbs"),
  8811. name: "Back",
  8812. image: {
  8813. source: "./media/characters/sovrim-terraquian/back.svg",
  8814. extra: 1698/1657,
  8815. bottom: 58/1756
  8816. }
  8817. },
  8818. tongue: {
  8819. height: math.unit(2.865, "feet"),
  8820. name: "Tongue",
  8821. image: {
  8822. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8823. }
  8824. },
  8825. hand: {
  8826. height: math.unit(1.61, "feet"),
  8827. name: "Hand",
  8828. image: {
  8829. source: "./media/characters/sovrim-terraquian/hand.svg"
  8830. }
  8831. },
  8832. foot: {
  8833. height: math.unit(1.05, "feet"),
  8834. name: "Foot",
  8835. image: {
  8836. source: "./media/characters/sovrim-terraquian/foot.svg"
  8837. }
  8838. },
  8839. footAlt: {
  8840. height: math.unit(0.88, "feet"),
  8841. name: "Foot (Alt)",
  8842. image: {
  8843. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8844. }
  8845. },
  8846. },
  8847. [
  8848. {
  8849. name: "Micro",
  8850. height: math.unit(2, "inches")
  8851. },
  8852. {
  8853. name: "Small",
  8854. height: math.unit(1, "meter")
  8855. },
  8856. {
  8857. name: "Normal",
  8858. height: math.unit(Math.E, "meters"),
  8859. default: true
  8860. },
  8861. {
  8862. name: "Macro",
  8863. height: math.unit(20, "meters")
  8864. },
  8865. {
  8866. name: "Macro+",
  8867. height: math.unit(400, "meters")
  8868. },
  8869. ]
  8870. ))
  8871. characterMakers.push(() => makeCharacter(
  8872. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8873. {
  8874. front: {
  8875. height: math.unit(7, "feet"),
  8876. weight: math.unit(489, "lbs"),
  8877. name: "Front",
  8878. image: {
  8879. source: "./media/characters/reece-silvermane/front.svg",
  8880. bottom: 0.02,
  8881. extra: 1
  8882. }
  8883. },
  8884. },
  8885. [
  8886. {
  8887. name: "Macro",
  8888. height: math.unit(1.5, "miles"),
  8889. default: true
  8890. },
  8891. ]
  8892. ))
  8893. characterMakers.push(() => makeCharacter(
  8894. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8895. {
  8896. front: {
  8897. height: math.unit(6, "feet"),
  8898. weight: math.unit(78, "kg"),
  8899. name: "Front",
  8900. image: {
  8901. source: "./media/characters/kane/front.svg",
  8902. extra: 978 / 899
  8903. }
  8904. },
  8905. },
  8906. [
  8907. {
  8908. name: "Normal",
  8909. height: math.unit(2.1, "m"),
  8910. },
  8911. {
  8912. name: "Macro",
  8913. height: math.unit(1, "km"),
  8914. default: true
  8915. },
  8916. ]
  8917. ))
  8918. characterMakers.push(() => makeCharacter(
  8919. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8920. {
  8921. front: {
  8922. height: math.unit(6, "feet"),
  8923. weight: math.unit(200, "kg"),
  8924. name: "Front",
  8925. image: {
  8926. source: "./media/characters/tegon/front.svg",
  8927. bottom: 0.01,
  8928. extra: 1
  8929. }
  8930. },
  8931. },
  8932. [
  8933. {
  8934. name: "Micro",
  8935. height: math.unit(1, "inch")
  8936. },
  8937. {
  8938. name: "Normal",
  8939. height: math.unit(6 + 3 / 12, "feet"),
  8940. default: true
  8941. },
  8942. {
  8943. name: "Macro",
  8944. height: math.unit(300, "feet")
  8945. },
  8946. {
  8947. name: "Megamacro",
  8948. height: math.unit(69, "miles")
  8949. },
  8950. ]
  8951. ))
  8952. characterMakers.push(() => makeCharacter(
  8953. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8954. {
  8955. side: {
  8956. height: math.unit(6, "feet"),
  8957. weight: math.unit(2304, "lbs"),
  8958. name: "Side",
  8959. image: {
  8960. source: "./media/characters/arcturax/side.svg",
  8961. extra: 790 / 376,
  8962. bottom: 0.01
  8963. }
  8964. },
  8965. },
  8966. [
  8967. {
  8968. name: "Micro",
  8969. height: math.unit(2, "inch")
  8970. },
  8971. {
  8972. name: "Normal",
  8973. height: math.unit(6, "feet")
  8974. },
  8975. {
  8976. name: "Macro",
  8977. height: math.unit(39, "feet"),
  8978. default: true
  8979. },
  8980. {
  8981. name: "Megamacro",
  8982. height: math.unit(7, "miles")
  8983. },
  8984. ]
  8985. ))
  8986. characterMakers.push(() => makeCharacter(
  8987. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8988. {
  8989. front: {
  8990. height: math.unit(6, "feet"),
  8991. weight: math.unit(50, "lbs"),
  8992. name: "Front",
  8993. image: {
  8994. source: "./media/characters/sentri/front.svg",
  8995. extra: 1750 / 1570,
  8996. bottom: 0.025
  8997. }
  8998. },
  8999. frontAlt: {
  9000. height: math.unit(6, "feet"),
  9001. weight: math.unit(50, "lbs"),
  9002. name: "Front (Alt)",
  9003. image: {
  9004. source: "./media/characters/sentri/front-alt.svg",
  9005. extra: 1750 / 1570,
  9006. bottom: 0.025
  9007. }
  9008. },
  9009. },
  9010. [
  9011. {
  9012. name: "Normal",
  9013. height: math.unit(15, "feet"),
  9014. default: true
  9015. },
  9016. {
  9017. name: "Macro",
  9018. height: math.unit(2500, "feet")
  9019. }
  9020. ]
  9021. ))
  9022. characterMakers.push(() => makeCharacter(
  9023. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9024. {
  9025. front: {
  9026. height: math.unit(5 + 8 / 12, "feet"),
  9027. weight: math.unit(130, "lbs"),
  9028. name: "Front",
  9029. image: {
  9030. source: "./media/characters/corvin/front.svg",
  9031. extra: 1803 / 1629
  9032. }
  9033. },
  9034. frontShirt: {
  9035. height: math.unit(5 + 8 / 12, "feet"),
  9036. weight: math.unit(130, "lbs"),
  9037. name: "Front (Shirt)",
  9038. image: {
  9039. source: "./media/characters/corvin/front-shirt.svg",
  9040. extra: 1803 / 1629
  9041. }
  9042. },
  9043. frontPoncho: {
  9044. height: math.unit(5 + 8 / 12, "feet"),
  9045. weight: math.unit(130, "lbs"),
  9046. name: "Front (Poncho)",
  9047. image: {
  9048. source: "./media/characters/corvin/front-poncho.svg",
  9049. extra: 1803 / 1629
  9050. }
  9051. },
  9052. side: {
  9053. height: math.unit(5 + 8 / 12, "feet"),
  9054. weight: math.unit(130, "lbs"),
  9055. name: "Side",
  9056. image: {
  9057. source: "./media/characters/corvin/side.svg",
  9058. extra: 1012 / 945
  9059. }
  9060. },
  9061. back: {
  9062. height: math.unit(5 + 8 / 12, "feet"),
  9063. weight: math.unit(130, "lbs"),
  9064. name: "Back",
  9065. image: {
  9066. source: "./media/characters/corvin/back.svg",
  9067. extra: 1803 / 1629
  9068. }
  9069. },
  9070. },
  9071. [
  9072. {
  9073. name: "Micro",
  9074. height: math.unit(3, "inches")
  9075. },
  9076. {
  9077. name: "Normal",
  9078. height: math.unit(5 + 8 / 12, "feet")
  9079. },
  9080. {
  9081. name: "Macro",
  9082. height: math.unit(300, "feet"),
  9083. default: true
  9084. },
  9085. {
  9086. name: "Megamacro",
  9087. height: math.unit(500, "miles")
  9088. }
  9089. ]
  9090. ))
  9091. characterMakers.push(() => makeCharacter(
  9092. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9093. {
  9094. front: {
  9095. height: math.unit(6, "feet"),
  9096. weight: math.unit(135, "lbs"),
  9097. name: "Front",
  9098. image: {
  9099. source: "./media/characters/q/front.svg",
  9100. extra: 854 / 752,
  9101. bottom: 0.005
  9102. }
  9103. },
  9104. back: {
  9105. height: math.unit(6, "feet"),
  9106. weight: math.unit(130, "lbs"),
  9107. name: "Back",
  9108. image: {
  9109. source: "./media/characters/q/back.svg",
  9110. extra: 854 / 752
  9111. }
  9112. },
  9113. },
  9114. [
  9115. {
  9116. name: "Macro",
  9117. height: math.unit(90, "feet"),
  9118. default: true
  9119. },
  9120. {
  9121. name: "Extra Macro",
  9122. height: math.unit(300, "feet"),
  9123. },
  9124. {
  9125. name: "BIG WALF",
  9126. height: math.unit(750, "feet"),
  9127. },
  9128. ]
  9129. ))
  9130. characterMakers.push(() => makeCharacter(
  9131. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9132. {
  9133. front: {
  9134. height: math.unit(3, "feet"),
  9135. weight: math.unit(28, "lbs"),
  9136. name: "Front",
  9137. image: {
  9138. source: "./media/characters/citrine/front.svg"
  9139. }
  9140. }
  9141. },
  9142. [
  9143. {
  9144. name: "Normal",
  9145. height: math.unit(3, "feet"),
  9146. default: true
  9147. }
  9148. ]
  9149. ))
  9150. characterMakers.push(() => makeCharacter(
  9151. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9152. {
  9153. front: {
  9154. height: math.unit(14, "feet"),
  9155. weight: math.unit(1450, "kg"),
  9156. preyCapacity: math.unit(15, "people"),
  9157. name: "Front",
  9158. image: {
  9159. source: "./media/characters/aura-starwind/front.svg",
  9160. extra: 1440/1327,
  9161. bottom: 11/1451
  9162. }
  9163. },
  9164. side: {
  9165. height: math.unit(14, "feet"),
  9166. weight: math.unit(1450, "kg"),
  9167. preyCapacity: math.unit(15, "people"),
  9168. name: "Side",
  9169. image: {
  9170. source: "./media/characters/aura-starwind/side.svg",
  9171. extra: 1654 / 1497
  9172. }
  9173. },
  9174. taur: {
  9175. height: math.unit(18, "feet"),
  9176. weight: math.unit(5500, "kg"),
  9177. preyCapacity: math.unit(50, "people"),
  9178. name: "Taur",
  9179. image: {
  9180. source: "./media/characters/aura-starwind/taur.svg",
  9181. extra: 1760 / 1650
  9182. }
  9183. },
  9184. feral: {
  9185. height: math.unit(46, "feet"),
  9186. weight: math.unit(25000, "kg"),
  9187. preyCapacity: math.unit(120, "people"),
  9188. name: "Feral",
  9189. image: {
  9190. source: "./media/characters/aura-starwind/feral.svg"
  9191. }
  9192. },
  9193. },
  9194. [
  9195. {
  9196. name: "Normal",
  9197. height: math.unit(14, "feet"),
  9198. default: true
  9199. },
  9200. {
  9201. name: "Macro",
  9202. height: math.unit(50, "meters")
  9203. },
  9204. {
  9205. name: "Megamacro",
  9206. height: math.unit(5000, "meters")
  9207. },
  9208. {
  9209. name: "Gigamacro",
  9210. height: math.unit(100000, "kilometers")
  9211. },
  9212. ]
  9213. ))
  9214. characterMakers.push(() => makeCharacter(
  9215. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9216. {
  9217. front: {
  9218. height: math.unit(2 + 7 / 12, "feet"),
  9219. weight: math.unit(32, "lbs"),
  9220. name: "Front",
  9221. image: {
  9222. source: "./media/characters/rivet/front.svg",
  9223. extra: 1716 / 1658,
  9224. bottom: 0.03
  9225. }
  9226. },
  9227. foot: {
  9228. height: math.unit(0.551, "feet"),
  9229. name: "Rivet's Foot",
  9230. image: {
  9231. source: "./media/characters/rivet/foot.svg"
  9232. },
  9233. rename: true
  9234. }
  9235. },
  9236. [
  9237. {
  9238. name: "Micro",
  9239. height: math.unit(1.5, "inches"),
  9240. },
  9241. {
  9242. name: "Normal",
  9243. height: math.unit(2 + 7 / 12, "feet"),
  9244. default: true
  9245. },
  9246. {
  9247. name: "Macro",
  9248. height: math.unit(85, "feet")
  9249. },
  9250. {
  9251. name: "Megamacro",
  9252. height: math.unit(2.2, "km")
  9253. }
  9254. ]
  9255. ))
  9256. characterMakers.push(() => makeCharacter(
  9257. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9258. {
  9259. front: {
  9260. height: math.unit(5 + 9 / 12, "feet"),
  9261. weight: math.unit(150, "lbs"),
  9262. name: "Front",
  9263. image: {
  9264. source: "./media/characters/coffee/front.svg",
  9265. extra: 946/880,
  9266. bottom: 66/1012
  9267. }
  9268. },
  9269. foot: {
  9270. height: math.unit(1.29, "feet"),
  9271. name: "Foot",
  9272. image: {
  9273. source: "./media/characters/coffee/foot.svg"
  9274. }
  9275. },
  9276. },
  9277. [
  9278. {
  9279. name: "Micro",
  9280. height: math.unit(2, "inches"),
  9281. },
  9282. {
  9283. name: "Normal",
  9284. height: math.unit(5 + 9 / 12, "feet"),
  9285. default: true
  9286. },
  9287. {
  9288. name: "Macro",
  9289. height: math.unit(800, "feet")
  9290. },
  9291. {
  9292. name: "Megamacro",
  9293. height: math.unit(25, "miles")
  9294. }
  9295. ]
  9296. ))
  9297. characterMakers.push(() => makeCharacter(
  9298. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9299. {
  9300. front: {
  9301. height: math.unit(6, "feet"),
  9302. weight: math.unit(200, "lbs"),
  9303. name: "Front",
  9304. image: {
  9305. source: "./media/characters/chari-gal/front.svg",
  9306. extra: 1568 / 1385,
  9307. bottom: 0.047
  9308. }
  9309. },
  9310. gigantamax: {
  9311. height: math.unit(6 * 16, "feet"),
  9312. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9313. name: "Gigantamax",
  9314. image: {
  9315. source: "./media/characters/chari-gal/gigantamax.svg",
  9316. extra: 1124 / 888,
  9317. bottom: 0.03
  9318. }
  9319. },
  9320. },
  9321. [
  9322. {
  9323. name: "Normal",
  9324. height: math.unit(5 + 7 / 12, "feet")
  9325. },
  9326. {
  9327. name: "Macro",
  9328. height: math.unit(200, "feet"),
  9329. default: true
  9330. }
  9331. ]
  9332. ))
  9333. characterMakers.push(() => makeCharacter(
  9334. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9335. {
  9336. front: {
  9337. height: math.unit(6, "feet"),
  9338. weight: math.unit(150, "lbs"),
  9339. name: "Front",
  9340. image: {
  9341. source: "./media/characters/nova/front.svg",
  9342. extra: 5000 / 4722,
  9343. bottom: 0.02
  9344. }
  9345. }
  9346. },
  9347. [
  9348. {
  9349. name: "Micro-",
  9350. height: math.unit(0.8, "inches")
  9351. },
  9352. {
  9353. name: "Micro",
  9354. height: math.unit(2, "inches"),
  9355. default: true
  9356. },
  9357. ]
  9358. ))
  9359. characterMakers.push(() => makeCharacter(
  9360. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9361. {
  9362. koboldFront: {
  9363. height: math.unit(3 + 1 / 12, "feet"),
  9364. weight: math.unit(21.7, "lbs"),
  9365. name: "Front",
  9366. image: {
  9367. source: "./media/characters/argent/kobold-front.svg",
  9368. extra: 1471 / 1331,
  9369. bottom: 100.8 / 1575.5
  9370. },
  9371. form: "kobold",
  9372. default: true
  9373. },
  9374. dragonFront: {
  9375. height: math.unit(75, "inches"),
  9376. name: "Front",
  9377. image: {
  9378. source: "./media/characters/argent/dragon-front.svg",
  9379. extra: 1389/1248,
  9380. bottom: 54/1443
  9381. },
  9382. form: "dragon",
  9383. },
  9384. dragonBack: {
  9385. height: math.unit(75, "inches"),
  9386. name: "Back",
  9387. image: {
  9388. source: "./media/characters/argent/dragon-back.svg",
  9389. extra: 1399/1271,
  9390. bottom: 23/1422
  9391. },
  9392. form: "dragon",
  9393. },
  9394. dragonDressed: {
  9395. height: math.unit(75, "inches"),
  9396. name: "Dressed",
  9397. image: {
  9398. source: "./media/characters/argent/dragon-dressed.svg",
  9399. extra: 1350/1215,
  9400. bottom: 26/1376
  9401. },
  9402. form: "dragon"
  9403. },
  9404. dragonHead: {
  9405. height: math.unit(23.5, "inches"),
  9406. name: "Head",
  9407. image: {
  9408. source: "./media/characters/argent/dragon-head.svg"
  9409. },
  9410. form: "dragon",
  9411. },
  9412. },
  9413. [
  9414. {
  9415. name: "Micro",
  9416. height: math.unit(2, "inches"),
  9417. form: "kobold",
  9418. },
  9419. {
  9420. name: "Normal",
  9421. height: math.unit(3 + 1 / 12, "feet"),
  9422. form: "kobold",
  9423. default: true
  9424. },
  9425. {
  9426. name: "Macro",
  9427. height: math.unit(120, "feet"),
  9428. form: "kobold",
  9429. },
  9430. {
  9431. name: "Speck",
  9432. height: math.unit(1, "mm"),
  9433. form: "dragon",
  9434. },
  9435. {
  9436. name: "Tiny",
  9437. height: math.unit(1, "cm"),
  9438. form: "dragon",
  9439. },
  9440. {
  9441. name: "Micro",
  9442. height: math.unit(5, "cm"),
  9443. form: "dragon",
  9444. },
  9445. {
  9446. name: "Normal",
  9447. height: math.unit(75, "inches"),
  9448. form: "dragon",
  9449. default: true
  9450. },
  9451. {
  9452. name: "Extra Tall",
  9453. height: math.unit(9, "feet"),
  9454. form: "dragon",
  9455. },
  9456. {
  9457. name: "Inconvenient",
  9458. height: math.unit(5, "meters"),
  9459. form: "dragon",
  9460. },
  9461. {
  9462. name: "Macro",
  9463. height: math.unit(70, "meters"),
  9464. form: "dragon",
  9465. },
  9466. {
  9467. name: "Macro+",
  9468. height: math.unit(250, "meters"),
  9469. form: "dragon",
  9470. },
  9471. {
  9472. name: "Megamacro",
  9473. height: math.unit(20, "km"),
  9474. form: "dragon",
  9475. },
  9476. {
  9477. name: "Mountainous",
  9478. height: math.unit(100, "km"),
  9479. form: "dragon",
  9480. },
  9481. {
  9482. name: "Continental",
  9483. height: math.unit(2, "megameters"),
  9484. form: "dragon",
  9485. },
  9486. {
  9487. name: "Too Big",
  9488. height: math.unit(900, "megameters"),
  9489. form: "dragon",
  9490. },
  9491. ],
  9492. {
  9493. "kobold": {
  9494. name: "Kobold",
  9495. default: true
  9496. },
  9497. "dragon": {
  9498. name: "Dragon",
  9499. },
  9500. }
  9501. ))
  9502. characterMakers.push(() => makeCharacter(
  9503. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9504. {
  9505. lamp: {
  9506. height: math.unit(7 * 1559 / 989, "feet"),
  9507. name: "Magic Lamp",
  9508. image: {
  9509. source: "./media/characters/mira-al-cul/lamp.svg",
  9510. extra: 1617 / 1559
  9511. }
  9512. },
  9513. front: {
  9514. height: math.unit(7, "feet"),
  9515. name: "Front",
  9516. image: {
  9517. source: "./media/characters/mira-al-cul/front.svg",
  9518. extra: 1044 / 990
  9519. }
  9520. },
  9521. },
  9522. [
  9523. {
  9524. name: "Heavily Restricted",
  9525. height: math.unit(7 * 1559 / 989, "feet")
  9526. },
  9527. {
  9528. name: "Freshly Freed",
  9529. height: math.unit(50 * 1559 / 989, "feet")
  9530. },
  9531. {
  9532. name: "World Encompassing",
  9533. height: math.unit(10000 * 1559 / 989, "miles")
  9534. },
  9535. {
  9536. name: "Galactic",
  9537. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9538. },
  9539. {
  9540. name: "Palmed Universe",
  9541. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9542. default: true
  9543. },
  9544. {
  9545. name: "Multiversal Matriarch",
  9546. height: math.unit(8.87e10, "yottameters")
  9547. },
  9548. {
  9549. name: "Void Mother",
  9550. height: math.unit(3.14e110, "yottaparsecs")
  9551. },
  9552. {
  9553. name: "Toying with Transcendence",
  9554. height: math.unit(1e307, "meters")
  9555. },
  9556. ]
  9557. ))
  9558. characterMakers.push(() => makeCharacter(
  9559. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9560. {
  9561. front: {
  9562. height: math.unit(17 + 1 / 12, "feet"),
  9563. weight: math.unit(476.2 * 5, "lbs"),
  9564. name: "Front",
  9565. image: {
  9566. source: "./media/characters/kuro-shi-uchū/front.svg",
  9567. extra: 2329 / 1835,
  9568. bottom: 0.02
  9569. }
  9570. },
  9571. },
  9572. [
  9573. {
  9574. name: "Micro",
  9575. height: math.unit(2, "inches")
  9576. },
  9577. {
  9578. name: "Normal",
  9579. height: math.unit(12, "meters")
  9580. },
  9581. {
  9582. name: "Planetary",
  9583. height: math.unit(0.00929, "AU"),
  9584. default: true
  9585. },
  9586. {
  9587. name: "Universal",
  9588. height: math.unit(20, "gigaparsecs")
  9589. },
  9590. ]
  9591. ))
  9592. characterMakers.push(() => makeCharacter(
  9593. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9594. {
  9595. front: {
  9596. height: math.unit(5 + 2 / 12, "feet"),
  9597. weight: math.unit(120, "lbs"),
  9598. name: "Front",
  9599. image: {
  9600. source: "./media/characters/katherine/front.svg",
  9601. extra: 2075 / 1969
  9602. }
  9603. },
  9604. dress: {
  9605. height: math.unit(5 + 2 / 12, "feet"),
  9606. weight: math.unit(120, "lbs"),
  9607. name: "Dress",
  9608. image: {
  9609. source: "./media/characters/katherine/dress.svg",
  9610. extra: 2258 / 2064
  9611. }
  9612. },
  9613. },
  9614. [
  9615. {
  9616. name: "Micro",
  9617. height: math.unit(1, "inches"),
  9618. default: true
  9619. },
  9620. {
  9621. name: "Normal",
  9622. height: math.unit(5 + 2 / 12, "feet")
  9623. },
  9624. {
  9625. name: "Macro",
  9626. height: math.unit(100, "meters")
  9627. },
  9628. {
  9629. name: "Megamacro",
  9630. height: math.unit(80, "miles")
  9631. },
  9632. ]
  9633. ))
  9634. characterMakers.push(() => makeCharacter(
  9635. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9636. {
  9637. front: {
  9638. height: math.unit(7 + 8 / 12, "feet"),
  9639. weight: math.unit(250, "lbs"),
  9640. name: "Front",
  9641. image: {
  9642. source: "./media/characters/yevis/front.svg",
  9643. extra: 1938 / 1755
  9644. }
  9645. }
  9646. },
  9647. [
  9648. {
  9649. name: "Mortal",
  9650. height: math.unit(7 + 8 / 12, "feet")
  9651. },
  9652. {
  9653. name: "Battle",
  9654. height: math.unit(25 + 11 / 12, "feet")
  9655. },
  9656. {
  9657. name: "Wrath",
  9658. height: math.unit(1654 + 11 / 12, "feet")
  9659. },
  9660. {
  9661. name: "Planet Destroyer",
  9662. height: math.unit(12000, "miles")
  9663. },
  9664. {
  9665. name: "Galaxy Conqueror",
  9666. height: math.unit(1.45, "zettameters"),
  9667. default: true
  9668. },
  9669. {
  9670. name: "Universal War",
  9671. height: math.unit(184, "gigaparsecs")
  9672. },
  9673. {
  9674. name: "Eternity War",
  9675. height: math.unit(1.98e55, "yottaparsecs")
  9676. },
  9677. ]
  9678. ))
  9679. characterMakers.push(() => makeCharacter(
  9680. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9681. {
  9682. front: {
  9683. height: math.unit(5 + 8 / 12, "feet"),
  9684. weight: math.unit(63, "kg"),
  9685. name: "Front",
  9686. image: {
  9687. source: "./media/characters/xavier/front.svg",
  9688. extra: 944 / 883
  9689. }
  9690. },
  9691. frontStretch: {
  9692. height: math.unit(5 + 8 / 12, "feet"),
  9693. weight: math.unit(63, "kg"),
  9694. name: "Stretching",
  9695. image: {
  9696. source: "./media/characters/xavier/front-stretch.svg",
  9697. extra: 962 / 820
  9698. }
  9699. },
  9700. },
  9701. [
  9702. {
  9703. name: "Normal",
  9704. height: math.unit(5 + 8 / 12, "feet")
  9705. },
  9706. {
  9707. name: "Macro",
  9708. height: math.unit(100, "meters"),
  9709. default: true
  9710. },
  9711. {
  9712. name: "McLargeHuge",
  9713. height: math.unit(10, "miles")
  9714. },
  9715. ]
  9716. ))
  9717. characterMakers.push(() => makeCharacter(
  9718. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9719. {
  9720. front: {
  9721. height: math.unit(5 + 5 / 12, "feet"),
  9722. weight: math.unit(150, "lb"),
  9723. name: "Front",
  9724. image: {
  9725. source: "./media/characters/joshii/front.svg",
  9726. extra: 765 / 653,
  9727. bottom: 51 / 816
  9728. }
  9729. },
  9730. foot: {
  9731. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9732. name: "Foot",
  9733. image: {
  9734. source: "./media/characters/joshii/foot.svg"
  9735. }
  9736. },
  9737. },
  9738. [
  9739. {
  9740. name: "Micro",
  9741. height: math.unit(2, "inches")
  9742. },
  9743. {
  9744. name: "Normal",
  9745. height: math.unit(5 + 5 / 12, "feet")
  9746. },
  9747. {
  9748. name: "Macro",
  9749. height: math.unit(785, "feet"),
  9750. default: true
  9751. },
  9752. {
  9753. name: "Megamacro",
  9754. height: math.unit(24.5, "miles")
  9755. },
  9756. ]
  9757. ))
  9758. characterMakers.push(() => makeCharacter(
  9759. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9760. {
  9761. front: {
  9762. height: math.unit(6, "feet"),
  9763. weight: math.unit(150, "lb"),
  9764. name: "Front",
  9765. image: {
  9766. source: "./media/characters/goddess-elizabeth/front.svg",
  9767. extra: 1800 / 1525,
  9768. bottom: 0.005
  9769. }
  9770. },
  9771. foot: {
  9772. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9773. name: "Foot",
  9774. image: {
  9775. source: "./media/characters/goddess-elizabeth/foot.svg"
  9776. }
  9777. },
  9778. mouth: {
  9779. height: math.unit(6, "feet"),
  9780. name: "Mouth",
  9781. image: {
  9782. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9783. }
  9784. },
  9785. },
  9786. [
  9787. {
  9788. name: "Micro",
  9789. height: math.unit(12, "feet")
  9790. },
  9791. {
  9792. name: "Normal",
  9793. height: math.unit(80, "miles"),
  9794. default: true
  9795. },
  9796. {
  9797. name: "Macro",
  9798. height: math.unit(15000, "parsecs")
  9799. },
  9800. ]
  9801. ))
  9802. characterMakers.push(() => makeCharacter(
  9803. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9804. {
  9805. front: {
  9806. height: math.unit(5 + 9 / 12, "feet"),
  9807. weight: math.unit(144, "lb"),
  9808. name: "Front",
  9809. image: {
  9810. source: "./media/characters/kara/front.svg"
  9811. }
  9812. },
  9813. feet: {
  9814. height: math.unit(6 / 6.765, "feet"),
  9815. name: "Kara's Feet",
  9816. rename: true,
  9817. image: {
  9818. source: "./media/characters/kara/feet.svg"
  9819. }
  9820. },
  9821. },
  9822. [
  9823. {
  9824. name: "Normal",
  9825. height: math.unit(5 + 9 / 12, "feet")
  9826. },
  9827. {
  9828. name: "Macro",
  9829. height: math.unit(174, "feet"),
  9830. default: true
  9831. },
  9832. ]
  9833. ))
  9834. characterMakers.push(() => makeCharacter(
  9835. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9836. {
  9837. front: {
  9838. height: math.unit(18, "feet"),
  9839. weight: math.unit(4050, "lb"),
  9840. name: "Front",
  9841. image: {
  9842. source: "./media/characters/tyrone/front.svg",
  9843. extra: 2405 / 2270,
  9844. bottom: 182 / 2587
  9845. }
  9846. },
  9847. },
  9848. [
  9849. {
  9850. name: "Normal",
  9851. height: math.unit(18, "feet"),
  9852. default: true
  9853. },
  9854. {
  9855. name: "Macro",
  9856. height: math.unit(300, "feet")
  9857. },
  9858. {
  9859. name: "Megamacro",
  9860. height: math.unit(15, "km")
  9861. },
  9862. {
  9863. name: "Gigamacro",
  9864. height: math.unit(500, "km")
  9865. },
  9866. {
  9867. name: "Teramacro",
  9868. height: math.unit(0.5, "gigameters")
  9869. },
  9870. {
  9871. name: "Omnimacro",
  9872. height: math.unit(1e252, "yottauniverse")
  9873. },
  9874. ]
  9875. ))
  9876. characterMakers.push(() => makeCharacter(
  9877. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9878. {
  9879. front: {
  9880. height: math.unit(7 + 8 / 12, "feet"),
  9881. weight: math.unit(120, "lb"),
  9882. name: "Front",
  9883. image: {
  9884. source: "./media/characters/danny/front.svg",
  9885. extra: 1490 / 1350
  9886. }
  9887. },
  9888. back: {
  9889. height: math.unit(7 + 8 / 12, "feet"),
  9890. weight: math.unit(120, "lb"),
  9891. name: "Back",
  9892. image: {
  9893. source: "./media/characters/danny/back.svg",
  9894. extra: 1490 / 1350
  9895. }
  9896. },
  9897. },
  9898. [
  9899. {
  9900. name: "Normal",
  9901. height: math.unit(7 + 8 / 12, "feet"),
  9902. default: true
  9903. },
  9904. ]
  9905. ))
  9906. characterMakers.push(() => makeCharacter(
  9907. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9908. {
  9909. front: {
  9910. height: math.unit(3.5, "inches"),
  9911. weight: math.unit(19, "grams"),
  9912. name: "Front",
  9913. image: {
  9914. source: "./media/characters/mallow/front.svg",
  9915. extra: 471 / 431
  9916. }
  9917. },
  9918. back: {
  9919. height: math.unit(3.5, "inches"),
  9920. weight: math.unit(19, "grams"),
  9921. name: "Back",
  9922. image: {
  9923. source: "./media/characters/mallow/back.svg",
  9924. extra: 471 / 431
  9925. }
  9926. },
  9927. },
  9928. [
  9929. {
  9930. name: "Normal",
  9931. height: math.unit(3.5, "inches"),
  9932. default: true
  9933. },
  9934. ]
  9935. ))
  9936. characterMakers.push(() => makeCharacter(
  9937. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9938. {
  9939. front: {
  9940. height: math.unit(9, "feet"),
  9941. weight: math.unit(230, "kg"),
  9942. name: "Front",
  9943. image: {
  9944. source: "./media/characters/starry-aqua/front.svg"
  9945. }
  9946. },
  9947. back: {
  9948. height: math.unit(9, "feet"),
  9949. weight: math.unit(230, "kg"),
  9950. name: "Back",
  9951. image: {
  9952. source: "./media/characters/starry-aqua/back.svg"
  9953. }
  9954. },
  9955. hand: {
  9956. height: math.unit(9 * 0.1168, "feet"),
  9957. name: "Hand",
  9958. image: {
  9959. source: "./media/characters/starry-aqua/hand.svg"
  9960. }
  9961. },
  9962. foot: {
  9963. height: math.unit(9 * 0.18, "feet"),
  9964. name: "Foot",
  9965. image: {
  9966. source: "./media/characters/starry-aqua/foot.svg"
  9967. }
  9968. }
  9969. },
  9970. [
  9971. {
  9972. name: "Micro",
  9973. height: math.unit(3, "inches")
  9974. },
  9975. {
  9976. name: "Normal",
  9977. height: math.unit(9, "feet")
  9978. },
  9979. {
  9980. name: "Macro",
  9981. height: math.unit(300, "feet"),
  9982. default: true
  9983. },
  9984. {
  9985. name: "Megamacro",
  9986. height: math.unit(3200, "feet")
  9987. }
  9988. ]
  9989. ))
  9990. characterMakers.push(() => makeCharacter(
  9991. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9992. {
  9993. front: {
  9994. height: math.unit(15, "feet"),
  9995. weight: math.unit(5026, "lb"),
  9996. name: "Front",
  9997. image: {
  9998. source: "./media/characters/luka-towers/front.svg",
  9999. extra: 1269/1133,
  10000. bottom: 51/1320
  10001. }
  10002. },
  10003. },
  10004. [
  10005. {
  10006. name: "Normal",
  10007. height: math.unit(15, "feet"),
  10008. default: true
  10009. },
  10010. {
  10011. name: "Minimacro",
  10012. height: math.unit(25, "feet")
  10013. },
  10014. {
  10015. name: "Macro",
  10016. height: math.unit(320, "feet")
  10017. },
  10018. {
  10019. name: "Megamacro",
  10020. height: math.unit(35000, "feet")
  10021. },
  10022. {
  10023. name: "Gigamacro",
  10024. height: math.unit(4000, "miles")
  10025. },
  10026. {
  10027. name: "Teramacro",
  10028. height: math.unit(15000, "miles")
  10029. },
  10030. ]
  10031. ))
  10032. characterMakers.push(() => makeCharacter(
  10033. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10034. {
  10035. front: {
  10036. height: math.unit(6, "feet"),
  10037. weight: math.unit(150, "lb"),
  10038. name: "Front",
  10039. image: {
  10040. source: "./media/characters/natalie-nightring/front.svg",
  10041. extra: 1,
  10042. bottom: 0.06
  10043. }
  10044. },
  10045. },
  10046. [
  10047. {
  10048. name: "Uh Oh",
  10049. height: math.unit(0.1, "mm")
  10050. },
  10051. {
  10052. name: "Small",
  10053. height: math.unit(3, "inches")
  10054. },
  10055. {
  10056. name: "Human Scale",
  10057. height: math.unit(6, "feet")
  10058. },
  10059. {
  10060. name: "Librarian",
  10061. height: math.unit(50, "feet"),
  10062. default: true
  10063. },
  10064. {
  10065. name: "Immense",
  10066. height: math.unit(200, "miles")
  10067. },
  10068. ]
  10069. ))
  10070. characterMakers.push(() => makeCharacter(
  10071. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10072. {
  10073. front: {
  10074. height: math.unit(6, "feet"),
  10075. weight: math.unit(180, "lbs"),
  10076. name: "Front",
  10077. image: {
  10078. source: "./media/characters/danni-rosie/front.svg",
  10079. extra: 1260 / 1128,
  10080. bottom: 0.022
  10081. }
  10082. },
  10083. },
  10084. [
  10085. {
  10086. name: "Micro",
  10087. height: math.unit(2, "inches"),
  10088. default: true
  10089. },
  10090. ]
  10091. ))
  10092. characterMakers.push(() => makeCharacter(
  10093. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10094. {
  10095. front: {
  10096. height: math.unit(5 + 9 / 12, "feet"),
  10097. weight: math.unit(220, "lb"),
  10098. name: "Front",
  10099. image: {
  10100. source: "./media/characters/samantha-kruse/front.svg",
  10101. extra: (985 / 935),
  10102. bottom: 0.03
  10103. }
  10104. },
  10105. frontUndressed: {
  10106. height: math.unit(5 + 9 / 12, "feet"),
  10107. weight: math.unit(220, "lb"),
  10108. name: "Front (Undressed)",
  10109. image: {
  10110. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10111. extra: (973 / 923),
  10112. bottom: 0.025
  10113. }
  10114. },
  10115. fat: {
  10116. height: math.unit(5 + 9 / 12, "feet"),
  10117. weight: math.unit(900, "lb"),
  10118. name: "Front (Fat)",
  10119. image: {
  10120. source: "./media/characters/samantha-kruse/fat.svg",
  10121. extra: 2688 / 2561
  10122. }
  10123. },
  10124. },
  10125. [
  10126. {
  10127. name: "Normal",
  10128. height: math.unit(5 + 9 / 12, "feet"),
  10129. default: true
  10130. }
  10131. ]
  10132. ))
  10133. characterMakers.push(() => makeCharacter(
  10134. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10135. {
  10136. back: {
  10137. height: math.unit(5 + 4 / 12, "feet"),
  10138. weight: math.unit(4963, "lb"),
  10139. name: "Back",
  10140. image: {
  10141. source: "./media/characters/amelia-rosie/back.svg",
  10142. extra: 1113 / 963,
  10143. bottom: 0.01
  10144. }
  10145. },
  10146. },
  10147. [
  10148. {
  10149. name: "Level 0",
  10150. height: math.unit(5 + 4 / 12, "feet")
  10151. },
  10152. {
  10153. name: "Level 1",
  10154. height: math.unit(164597, "feet"),
  10155. default: true
  10156. },
  10157. {
  10158. name: "Level 2",
  10159. height: math.unit(956243, "miles")
  10160. },
  10161. {
  10162. name: "Level 3",
  10163. height: math.unit(29421709423, "miles")
  10164. },
  10165. {
  10166. name: "Level 4",
  10167. height: math.unit(154, "lightyears")
  10168. },
  10169. {
  10170. name: "Level 5",
  10171. height: math.unit(4738272, "lightyears")
  10172. },
  10173. {
  10174. name: "Level 6",
  10175. height: math.unit(145787152896, "lightyears")
  10176. },
  10177. ]
  10178. ))
  10179. characterMakers.push(() => makeCharacter(
  10180. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10181. {
  10182. front: {
  10183. height: math.unit(5 + 11 / 12, "feet"),
  10184. weight: math.unit(65, "kg"),
  10185. name: "Front",
  10186. image: {
  10187. source: "./media/characters/rook-kitara/front.svg",
  10188. extra: 1347 / 1274,
  10189. bottom: 0.005
  10190. }
  10191. },
  10192. },
  10193. [
  10194. {
  10195. name: "Totally Unfair",
  10196. height: math.unit(1.8, "mm")
  10197. },
  10198. {
  10199. name: "Lap Rookie",
  10200. height: math.unit(1.4, "feet")
  10201. },
  10202. {
  10203. name: "Normal",
  10204. height: math.unit(5 + 11 / 12, "feet"),
  10205. default: true
  10206. },
  10207. {
  10208. name: "How Did This Happen",
  10209. height: math.unit(80, "miles")
  10210. }
  10211. ]
  10212. ))
  10213. characterMakers.push(() => makeCharacter(
  10214. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10215. {
  10216. front: {
  10217. height: math.unit(7, "feet"),
  10218. weight: math.unit(300, "lb"),
  10219. name: "Front",
  10220. image: {
  10221. source: "./media/characters/pisces/front.svg",
  10222. extra: 2255 / 2115,
  10223. bottom: 0.03
  10224. }
  10225. },
  10226. back: {
  10227. height: math.unit(7, "feet"),
  10228. weight: math.unit(300, "lb"),
  10229. name: "Back",
  10230. image: {
  10231. source: "./media/characters/pisces/back.svg",
  10232. extra: 2146 / 2055,
  10233. bottom: 0.04
  10234. }
  10235. },
  10236. },
  10237. [
  10238. {
  10239. name: "Normal",
  10240. height: math.unit(7, "feet"),
  10241. default: true
  10242. },
  10243. {
  10244. name: "Swimming Pool",
  10245. height: math.unit(12.2, "meters")
  10246. },
  10247. {
  10248. name: "Olympic Swimming Pool",
  10249. height: math.unit(56.3, "meters")
  10250. },
  10251. {
  10252. name: "Lake Superior",
  10253. height: math.unit(93900, "meters")
  10254. },
  10255. {
  10256. name: "Mediterranean Sea",
  10257. height: math.unit(644457, "meters")
  10258. },
  10259. {
  10260. name: "World's Oceans",
  10261. height: math.unit(4567491, "meters")
  10262. },
  10263. ]
  10264. ))
  10265. characterMakers.push(() => makeCharacter(
  10266. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10267. {
  10268. front: {
  10269. height: math.unit(2.3, "meters"),
  10270. weight: math.unit(120, "kg"),
  10271. name: "Front",
  10272. image: {
  10273. source: "./media/characters/zelas/front.svg"
  10274. }
  10275. },
  10276. side: {
  10277. height: math.unit(2.3, "meters"),
  10278. weight: math.unit(120, "kg"),
  10279. name: "Side",
  10280. image: {
  10281. source: "./media/characters/zelas/side.svg"
  10282. }
  10283. },
  10284. back: {
  10285. height: math.unit(2.3, "meters"),
  10286. weight: math.unit(120, "kg"),
  10287. name: "Back",
  10288. image: {
  10289. source: "./media/characters/zelas/back.svg"
  10290. }
  10291. },
  10292. foot: {
  10293. height: math.unit(1.116, "feet"),
  10294. name: "Foot",
  10295. image: {
  10296. source: "./media/characters/zelas/foot.svg"
  10297. }
  10298. },
  10299. },
  10300. [
  10301. {
  10302. name: "Normal",
  10303. height: math.unit(2.3, "meters")
  10304. },
  10305. {
  10306. name: "Macro",
  10307. height: math.unit(30, "meters"),
  10308. default: true
  10309. },
  10310. ]
  10311. ))
  10312. characterMakers.push(() => makeCharacter(
  10313. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10314. {
  10315. front: {
  10316. height: math.unit(1, "inch"),
  10317. weight: math.unit(0.21, "grams"),
  10318. name: "Front",
  10319. image: {
  10320. source: "./media/characters/talbot/front.svg",
  10321. extra: 594 / 544
  10322. }
  10323. },
  10324. },
  10325. [
  10326. {
  10327. name: "Micro",
  10328. height: math.unit(1, "inch"),
  10329. default: true
  10330. },
  10331. ]
  10332. ))
  10333. characterMakers.push(() => makeCharacter(
  10334. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10335. {
  10336. front: {
  10337. height: math.unit(3 + 3 / 12, "feet"),
  10338. weight: math.unit(51.8, "lb"),
  10339. name: "Front",
  10340. image: {
  10341. source: "./media/characters/fliss/front.svg",
  10342. extra: 840 / 640
  10343. }
  10344. },
  10345. },
  10346. [
  10347. {
  10348. name: "Teeny Tiny",
  10349. height: math.unit(1, "mm")
  10350. },
  10351. {
  10352. name: "Small",
  10353. height: math.unit(1, "inch"),
  10354. default: true
  10355. },
  10356. {
  10357. name: "Standard Sylveon",
  10358. height: math.unit(3 + 3 / 12, "feet")
  10359. },
  10360. {
  10361. name: "Large Nuisance",
  10362. height: math.unit(33, "feet")
  10363. },
  10364. {
  10365. name: "City Filler",
  10366. height: math.unit(3000, "feet")
  10367. },
  10368. {
  10369. name: "New Horizon",
  10370. height: math.unit(6000, "miles")
  10371. },
  10372. ]
  10373. ))
  10374. characterMakers.push(() => makeCharacter(
  10375. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10376. {
  10377. front: {
  10378. height: math.unit(5, "cm"),
  10379. weight: math.unit(1.94, "g"),
  10380. name: "Front",
  10381. image: {
  10382. source: "./media/characters/fleta/front.svg",
  10383. extra: 835 / 803
  10384. }
  10385. },
  10386. back: {
  10387. height: math.unit(5, "cm"),
  10388. weight: math.unit(1.94, "g"),
  10389. name: "Back",
  10390. image: {
  10391. source: "./media/characters/fleta/back.svg",
  10392. extra: 835 / 803
  10393. }
  10394. },
  10395. },
  10396. [
  10397. {
  10398. name: "Micro",
  10399. height: math.unit(5, "cm"),
  10400. default: true
  10401. },
  10402. ]
  10403. ))
  10404. characterMakers.push(() => makeCharacter(
  10405. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10406. {
  10407. front: {
  10408. height: math.unit(6, "feet"),
  10409. weight: math.unit(225, "lb"),
  10410. name: "Front",
  10411. image: {
  10412. source: "./media/characters/dominic/front.svg",
  10413. extra: 1770 / 1620,
  10414. bottom: 0.025
  10415. }
  10416. },
  10417. back: {
  10418. height: math.unit(6, "feet"),
  10419. weight: math.unit(225, "lb"),
  10420. name: "Back",
  10421. image: {
  10422. source: "./media/characters/dominic/back.svg",
  10423. extra: 1745 / 1620,
  10424. bottom: 0.065
  10425. }
  10426. },
  10427. },
  10428. [
  10429. {
  10430. name: "Nano",
  10431. height: math.unit(0.1, "mm")
  10432. },
  10433. {
  10434. name: "Micro-",
  10435. height: math.unit(1, "mm")
  10436. },
  10437. {
  10438. name: "Micro",
  10439. height: math.unit(4, "inches")
  10440. },
  10441. {
  10442. name: "Normal",
  10443. height: math.unit(6 + 4 / 12, "feet"),
  10444. default: true
  10445. },
  10446. {
  10447. name: "Macro",
  10448. height: math.unit(115, "feet")
  10449. },
  10450. {
  10451. name: "Macro+",
  10452. height: math.unit(955, "feet")
  10453. },
  10454. {
  10455. name: "Megamacro",
  10456. height: math.unit(8990, "feet")
  10457. },
  10458. {
  10459. name: "Gigmacro",
  10460. height: math.unit(9310, "miles")
  10461. },
  10462. {
  10463. name: "Teramacro",
  10464. height: math.unit(1567005010, "miles")
  10465. },
  10466. {
  10467. name: "Examacro",
  10468. height: math.unit(1425, "parsecs")
  10469. },
  10470. ]
  10471. ))
  10472. characterMakers.push(() => makeCharacter(
  10473. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10474. {
  10475. front: {
  10476. height: math.unit(400, "feet"),
  10477. weight: math.unit(44444444, "lb"),
  10478. name: "Front",
  10479. image: {
  10480. source: "./media/characters/major-colonel/front.svg"
  10481. }
  10482. },
  10483. back: {
  10484. height: math.unit(400, "feet"),
  10485. weight: math.unit(44444444, "lb"),
  10486. name: "Back",
  10487. image: {
  10488. source: "./media/characters/major-colonel/back.svg"
  10489. }
  10490. },
  10491. },
  10492. [
  10493. {
  10494. name: "Macro",
  10495. height: math.unit(400, "feet"),
  10496. default: true
  10497. },
  10498. ]
  10499. ))
  10500. characterMakers.push(() => makeCharacter(
  10501. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10502. {
  10503. catFront: {
  10504. height: math.unit(6, "feet"),
  10505. weight: math.unit(120, "lb"),
  10506. name: "Front (Cat Side)",
  10507. image: {
  10508. source: "./media/characters/axel-lycan/cat-front.svg",
  10509. extra: 430 / 402,
  10510. bottom: 43 / 472.35
  10511. }
  10512. },
  10513. catBack: {
  10514. height: math.unit(6, "feet"),
  10515. weight: math.unit(120, "lb"),
  10516. name: "Back (Cat Side)",
  10517. image: {
  10518. source: "./media/characters/axel-lycan/cat-back.svg",
  10519. extra: 447 / 419,
  10520. bottom: 23.3 / 469
  10521. }
  10522. },
  10523. wolfFront: {
  10524. height: math.unit(6, "feet"),
  10525. weight: math.unit(120, "lb"),
  10526. name: "Front (Wolf Side)",
  10527. image: {
  10528. source: "./media/characters/axel-lycan/wolf-front.svg",
  10529. extra: 485 / 456,
  10530. bottom: 19 / 504
  10531. }
  10532. },
  10533. wolfBack: {
  10534. height: math.unit(6, "feet"),
  10535. weight: math.unit(120, "lb"),
  10536. name: "Back (Wolf Side)",
  10537. image: {
  10538. source: "./media/characters/axel-lycan/wolf-back.svg",
  10539. extra: 475 / 438,
  10540. bottom: 39.2 / 514
  10541. }
  10542. },
  10543. },
  10544. [
  10545. {
  10546. name: "Macro",
  10547. height: math.unit(1, "km"),
  10548. default: true
  10549. },
  10550. ]
  10551. ))
  10552. characterMakers.push(() => makeCharacter(
  10553. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10554. {
  10555. front: {
  10556. height: math.unit(5 + 9 / 12, "feet"),
  10557. weight: math.unit(175, "lb"),
  10558. name: "Front",
  10559. image: {
  10560. source: "./media/characters/vanrel-hyena/front.svg",
  10561. extra: 1086 / 1010,
  10562. bottom: 0.04
  10563. }
  10564. },
  10565. },
  10566. [
  10567. {
  10568. name: "Normal",
  10569. height: math.unit(5 + 9 / 12, "feet"),
  10570. default: true
  10571. },
  10572. ]
  10573. ))
  10574. characterMakers.push(() => makeCharacter(
  10575. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10576. {
  10577. front: {
  10578. height: math.unit(6, "feet"),
  10579. weight: math.unit(103, "lb"),
  10580. name: "Front",
  10581. image: {
  10582. source: "./media/characters/abbott-absol/front.svg",
  10583. extra: 2010 / 1842
  10584. }
  10585. },
  10586. },
  10587. [
  10588. {
  10589. name: "Megamicro",
  10590. height: math.unit(0.1, "mm")
  10591. },
  10592. {
  10593. name: "Micro",
  10594. height: math.unit(1, "inch")
  10595. },
  10596. {
  10597. name: "Normal",
  10598. height: math.unit(6, "feet"),
  10599. default: true
  10600. },
  10601. ]
  10602. ))
  10603. characterMakers.push(() => makeCharacter(
  10604. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10605. {
  10606. front: {
  10607. height: math.unit(6, "feet"),
  10608. weight: math.unit(264, "lb"),
  10609. name: "Front",
  10610. image: {
  10611. source: "./media/characters/hector/front.svg",
  10612. extra: 2280 / 2130,
  10613. bottom: 0.07
  10614. }
  10615. },
  10616. },
  10617. [
  10618. {
  10619. name: "Normal",
  10620. height: math.unit(12.25, "foot"),
  10621. default: true
  10622. },
  10623. {
  10624. name: "Macro",
  10625. height: math.unit(160, "feet")
  10626. },
  10627. ]
  10628. ))
  10629. characterMakers.push(() => makeCharacter(
  10630. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10631. {
  10632. front: {
  10633. height: math.unit(6, "feet"),
  10634. weight: math.unit(150, "lb"),
  10635. name: "Front",
  10636. image: {
  10637. source: "./media/characters/sal/front.svg",
  10638. extra: 1846 / 1699,
  10639. bottom: 0.04
  10640. }
  10641. },
  10642. },
  10643. [
  10644. {
  10645. name: "Megamacro",
  10646. height: math.unit(10, "miles"),
  10647. default: true
  10648. },
  10649. ]
  10650. ))
  10651. characterMakers.push(() => makeCharacter(
  10652. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10653. {
  10654. front: {
  10655. height: math.unit(3, "meters"),
  10656. weight: math.unit(450, "kg"),
  10657. name: "front",
  10658. image: {
  10659. source: "./media/characters/ranger/front.svg",
  10660. extra: 2401 / 2243,
  10661. bottom: 0.05
  10662. }
  10663. },
  10664. },
  10665. [
  10666. {
  10667. name: "Normal",
  10668. height: math.unit(3, "meters"),
  10669. default: true
  10670. },
  10671. ]
  10672. ))
  10673. characterMakers.push(() => makeCharacter(
  10674. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10675. {
  10676. front: {
  10677. height: math.unit(14, "feet"),
  10678. weight: math.unit(800, "kg"),
  10679. name: "Front",
  10680. image: {
  10681. source: "./media/characters/theresa/front.svg",
  10682. extra: 3575 / 3346,
  10683. bottom: 0.03
  10684. }
  10685. },
  10686. },
  10687. [
  10688. {
  10689. name: "Normal",
  10690. height: math.unit(14, "feet"),
  10691. default: true
  10692. },
  10693. ]
  10694. ))
  10695. characterMakers.push(() => makeCharacter(
  10696. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10697. {
  10698. front: {
  10699. height: math.unit(6, "feet"),
  10700. weight: math.unit(3, "kg"),
  10701. name: "Front",
  10702. image: {
  10703. source: "./media/characters/ine/front.svg",
  10704. extra: 678 / 539,
  10705. bottom: 0.023
  10706. }
  10707. },
  10708. },
  10709. [
  10710. {
  10711. name: "Normal",
  10712. height: math.unit(2.265, "feet"),
  10713. default: true
  10714. },
  10715. ]
  10716. ))
  10717. characterMakers.push(() => makeCharacter(
  10718. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10719. {
  10720. front: {
  10721. height: math.unit(5, "feet"),
  10722. weight: math.unit(30, "kg"),
  10723. name: "Front",
  10724. image: {
  10725. source: "./media/characters/vial/front.svg",
  10726. extra: 1365 / 1277,
  10727. bottom: 0.04
  10728. }
  10729. },
  10730. },
  10731. [
  10732. {
  10733. name: "Normal",
  10734. height: math.unit(5, "feet"),
  10735. default: true
  10736. },
  10737. ]
  10738. ))
  10739. characterMakers.push(() => makeCharacter(
  10740. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10741. {
  10742. side: {
  10743. height: math.unit(3.4, "meters"),
  10744. weight: math.unit(1000, "lb"),
  10745. name: "Side",
  10746. image: {
  10747. source: "./media/characters/rovoska/side.svg",
  10748. extra: 4403 / 1515
  10749. }
  10750. },
  10751. },
  10752. [
  10753. {
  10754. name: "Normal",
  10755. height: math.unit(3.4, "meters"),
  10756. default: true
  10757. },
  10758. ]
  10759. ))
  10760. characterMakers.push(() => makeCharacter(
  10761. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10762. {
  10763. front: {
  10764. height: math.unit(8, "feet"),
  10765. weight: math.unit(315, "lb"),
  10766. name: "Front",
  10767. image: {
  10768. source: "./media/characters/gunner-rotthbauer/front.svg"
  10769. }
  10770. },
  10771. back: {
  10772. height: math.unit(8, "feet"),
  10773. weight: math.unit(315, "lb"),
  10774. name: "Back",
  10775. image: {
  10776. source: "./media/characters/gunner-rotthbauer/back.svg"
  10777. }
  10778. },
  10779. },
  10780. [
  10781. {
  10782. name: "Micro",
  10783. height: math.unit(3.5, "inches")
  10784. },
  10785. {
  10786. name: "Normal",
  10787. height: math.unit(8, "feet"),
  10788. default: true
  10789. },
  10790. {
  10791. name: "Macro",
  10792. height: math.unit(250, "feet")
  10793. },
  10794. {
  10795. name: "Megamacro",
  10796. height: math.unit(1, "AU")
  10797. },
  10798. ]
  10799. ))
  10800. characterMakers.push(() => makeCharacter(
  10801. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10802. {
  10803. front: {
  10804. height: math.unit(5 + 5 / 12, "feet"),
  10805. weight: math.unit(140, "lb"),
  10806. name: "Front",
  10807. image: {
  10808. source: "./media/characters/allatia/front.svg",
  10809. extra: 1227 / 1180,
  10810. bottom: 0.027
  10811. }
  10812. },
  10813. },
  10814. [
  10815. {
  10816. name: "Normal",
  10817. height: math.unit(5 + 5 / 12, "feet")
  10818. },
  10819. {
  10820. name: "Macro",
  10821. height: math.unit(250, "feet"),
  10822. default: true
  10823. },
  10824. {
  10825. name: "Megamacro",
  10826. height: math.unit(8, "miles")
  10827. }
  10828. ]
  10829. ))
  10830. characterMakers.push(() => makeCharacter(
  10831. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10832. {
  10833. front: {
  10834. height: math.unit(6, "feet"),
  10835. weight: math.unit(120, "lb"),
  10836. name: "Front",
  10837. image: {
  10838. source: "./media/characters/tene/front.svg",
  10839. extra: 814/750,
  10840. bottom: 36/850
  10841. }
  10842. },
  10843. stomping: {
  10844. height: math.unit(2.025, "meters"),
  10845. weight: math.unit(120, "lb"),
  10846. name: "Stomping",
  10847. image: {
  10848. source: "./media/characters/tene/stomping.svg",
  10849. extra: 885/821,
  10850. bottom: 15/900
  10851. }
  10852. },
  10853. sitting: {
  10854. height: math.unit(1, "meter"),
  10855. weight: math.unit(120, "lb"),
  10856. name: "Sitting",
  10857. image: {
  10858. source: "./media/characters/tene/sitting.svg",
  10859. extra: 396/366,
  10860. bottom: 79/475
  10861. }
  10862. },
  10863. smiling: {
  10864. height: math.unit(1.2, "feet"),
  10865. name: "Smiling",
  10866. image: {
  10867. source: "./media/characters/tene/smiling.svg",
  10868. extra: 1364/1071,
  10869. bottom: 0/1364
  10870. }
  10871. },
  10872. smug: {
  10873. height: math.unit(1.3, "feet"),
  10874. name: "Smug",
  10875. image: {
  10876. source: "./media/characters/tene/smug.svg",
  10877. extra: 1323/1082,
  10878. bottom: 0/1323
  10879. }
  10880. },
  10881. feral: {
  10882. height: math.unit(3.9, "feet"),
  10883. weight: math.unit(250, "lb"),
  10884. name: "Feral",
  10885. image: {
  10886. source: "./media/characters/tene/feral.svg",
  10887. extra: 717 / 458,
  10888. bottom: 0.179
  10889. }
  10890. },
  10891. },
  10892. [
  10893. {
  10894. name: "Normal",
  10895. height: math.unit(6, "feet")
  10896. },
  10897. {
  10898. name: "Macro",
  10899. height: math.unit(300, "feet"),
  10900. default: true
  10901. },
  10902. {
  10903. name: "Megamacro",
  10904. height: math.unit(5, "miles")
  10905. },
  10906. ]
  10907. ))
  10908. characterMakers.push(() => makeCharacter(
  10909. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10910. {
  10911. side: {
  10912. height: math.unit(6, "feet"),
  10913. name: "Side",
  10914. image: {
  10915. source: "./media/characters/evander/side.svg",
  10916. extra: 877 / 477
  10917. }
  10918. },
  10919. },
  10920. [
  10921. {
  10922. name: "Normal",
  10923. height: math.unit(0.83, "meters"),
  10924. default: true
  10925. },
  10926. ]
  10927. ))
  10928. characterMakers.push(() => makeCharacter(
  10929. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10930. {
  10931. front: {
  10932. height: math.unit(12, "feet"),
  10933. weight: math.unit(1000, "lb"),
  10934. name: "Front",
  10935. image: {
  10936. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10937. extra: 1762 / 1611
  10938. }
  10939. },
  10940. back: {
  10941. height: math.unit(12, "feet"),
  10942. weight: math.unit(1000, "lb"),
  10943. name: "Back",
  10944. image: {
  10945. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10946. extra: 1762 / 1611
  10947. }
  10948. },
  10949. },
  10950. [
  10951. {
  10952. name: "Normal",
  10953. height: math.unit(12, "feet"),
  10954. default: true
  10955. },
  10956. {
  10957. name: "Kaiju",
  10958. height: math.unit(150, "feet")
  10959. },
  10960. ]
  10961. ))
  10962. characterMakers.push(() => makeCharacter(
  10963. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10964. {
  10965. front: {
  10966. height: math.unit(6, "feet"),
  10967. weight: math.unit(150, "lb"),
  10968. name: "Front",
  10969. image: {
  10970. source: "./media/characters/zero-alurus/front.svg"
  10971. }
  10972. },
  10973. back: {
  10974. height: math.unit(6, "feet"),
  10975. weight: math.unit(150, "lb"),
  10976. name: "Back",
  10977. image: {
  10978. source: "./media/characters/zero-alurus/back.svg"
  10979. }
  10980. },
  10981. },
  10982. [
  10983. {
  10984. name: "Normal",
  10985. height: math.unit(5 + 10 / 12, "feet")
  10986. },
  10987. {
  10988. name: "Macro",
  10989. height: math.unit(60, "feet"),
  10990. default: true
  10991. },
  10992. {
  10993. name: "Macro+",
  10994. height: math.unit(450, "feet")
  10995. },
  10996. ]
  10997. ))
  10998. characterMakers.push(() => makeCharacter(
  10999. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11000. {
  11001. front: {
  11002. height: math.unit(6, "feet"),
  11003. weight: math.unit(200, "lb"),
  11004. name: "Front",
  11005. image: {
  11006. source: "./media/characters/mega-shi/front.svg",
  11007. extra: 1279 / 1250,
  11008. bottom: 0.02
  11009. }
  11010. },
  11011. back: {
  11012. height: math.unit(6, "feet"),
  11013. weight: math.unit(200, "lb"),
  11014. name: "Back",
  11015. image: {
  11016. source: "./media/characters/mega-shi/back.svg",
  11017. extra: 1279 / 1250,
  11018. bottom: 0.02
  11019. }
  11020. },
  11021. },
  11022. [
  11023. {
  11024. name: "Micro",
  11025. height: math.unit(16 + 6 / 12, "feet")
  11026. },
  11027. {
  11028. name: "Third Dimension",
  11029. height: math.unit(40, "meters")
  11030. },
  11031. {
  11032. name: "Normal",
  11033. height: math.unit(660, "feet"),
  11034. default: true
  11035. },
  11036. {
  11037. name: "Megamacro",
  11038. height: math.unit(10, "miles")
  11039. },
  11040. {
  11041. name: "Planetary Launch",
  11042. height: math.unit(500, "miles")
  11043. },
  11044. {
  11045. name: "Interstellar",
  11046. height: math.unit(1e9, "miles")
  11047. },
  11048. {
  11049. name: "Leaving the Universe",
  11050. height: math.unit(1, "gigaparsec")
  11051. },
  11052. {
  11053. name: "Travelling Universes",
  11054. height: math.unit(30e15, "parsecs")
  11055. },
  11056. ]
  11057. ))
  11058. characterMakers.push(() => makeCharacter(
  11059. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11060. {
  11061. front: {
  11062. height: math.unit(5 + 4/12, "feet"),
  11063. weight: math.unit(120, "lb"),
  11064. name: "Front",
  11065. image: {
  11066. source: "./media/characters/odyssey/front.svg",
  11067. extra: 1747/1571,
  11068. bottom: 47/1794
  11069. }
  11070. },
  11071. side: {
  11072. height: math.unit(5.1, "feet"),
  11073. weight: math.unit(120, "lb"),
  11074. name: "Side",
  11075. image: {
  11076. source: "./media/characters/odyssey/side.svg",
  11077. extra: 1847/1619,
  11078. bottom: 47/1894
  11079. }
  11080. },
  11081. lounging: {
  11082. height: math.unit(1.464, "feet"),
  11083. weight: math.unit(120, "lb"),
  11084. name: "Lounging",
  11085. image: {
  11086. source: "./media/characters/odyssey/lounging.svg",
  11087. extra: 1235/837,
  11088. bottom: 551/1786
  11089. }
  11090. },
  11091. },
  11092. [
  11093. {
  11094. name: "Normal",
  11095. height: math.unit(5 + 4 / 12, "feet")
  11096. },
  11097. {
  11098. name: "Macro",
  11099. height: math.unit(1, "km")
  11100. },
  11101. {
  11102. name: "Megamacro",
  11103. height: math.unit(3000, "km")
  11104. },
  11105. {
  11106. name: "Gigamacro",
  11107. height: math.unit(1, "AU"),
  11108. default: true
  11109. },
  11110. {
  11111. name: "Omniversal",
  11112. height: math.unit(100e14, "lightyears")
  11113. },
  11114. ]
  11115. ))
  11116. characterMakers.push(() => makeCharacter(
  11117. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11118. {
  11119. front: {
  11120. height: math.unit(6, "feet"),
  11121. weight: math.unit(300, "lb"),
  11122. name: "Front",
  11123. image: {
  11124. source: "./media/characters/mekuto/front.svg",
  11125. extra: 921 / 832,
  11126. bottom: 0.03
  11127. }
  11128. },
  11129. hand: {
  11130. height: math.unit(6 / 10.24, "feet"),
  11131. name: "Hand",
  11132. image: {
  11133. source: "./media/characters/mekuto/hand.svg"
  11134. }
  11135. },
  11136. foot: {
  11137. height: math.unit(6 / 5.05, "feet"),
  11138. name: "Foot",
  11139. image: {
  11140. source: "./media/characters/mekuto/foot.svg"
  11141. }
  11142. },
  11143. },
  11144. [
  11145. {
  11146. name: "Minimicro",
  11147. height: math.unit(0.2, "inches")
  11148. },
  11149. {
  11150. name: "Micro",
  11151. height: math.unit(1.5, "inches")
  11152. },
  11153. {
  11154. name: "Normal",
  11155. height: math.unit(5 + 11 / 12, "feet"),
  11156. default: true
  11157. },
  11158. {
  11159. name: "Minimacro",
  11160. height: math.unit(17 + 9 / 12, "feet")
  11161. },
  11162. {
  11163. name: "Macro",
  11164. height: math.unit(177.5, "feet")
  11165. },
  11166. {
  11167. name: "Megamacro",
  11168. height: math.unit(152, "miles")
  11169. },
  11170. ]
  11171. ))
  11172. characterMakers.push(() => makeCharacter(
  11173. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11174. {
  11175. front: {
  11176. height: math.unit(6.5, "inches"),
  11177. weight: math.unit(13, "oz"),
  11178. name: "Front",
  11179. image: {
  11180. source: "./media/characters/dafydd-tomos/front.svg",
  11181. extra: 2990 / 2603,
  11182. bottom: 0.03
  11183. }
  11184. },
  11185. },
  11186. [
  11187. {
  11188. name: "Micro",
  11189. height: math.unit(6.5, "inches"),
  11190. default: true
  11191. },
  11192. ]
  11193. ))
  11194. characterMakers.push(() => makeCharacter(
  11195. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11196. {
  11197. front: {
  11198. height: math.unit(6, "feet"),
  11199. weight: math.unit(150, "lb"),
  11200. name: "Front",
  11201. image: {
  11202. source: "./media/characters/splinter/front.svg",
  11203. extra: 2990 / 2882,
  11204. bottom: 0.04
  11205. }
  11206. },
  11207. back: {
  11208. height: math.unit(6, "feet"),
  11209. weight: math.unit(150, "lb"),
  11210. name: "Back",
  11211. image: {
  11212. source: "./media/characters/splinter/back.svg",
  11213. extra: 2990 / 2882,
  11214. bottom: 0.04
  11215. }
  11216. },
  11217. },
  11218. [
  11219. {
  11220. name: "Normal",
  11221. height: math.unit(6, "feet")
  11222. },
  11223. {
  11224. name: "Macro",
  11225. height: math.unit(230, "meters"),
  11226. default: true
  11227. },
  11228. ]
  11229. ))
  11230. characterMakers.push(() => makeCharacter(
  11231. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11232. {
  11233. front: {
  11234. height: math.unit(4 + 10 / 12, "feet"),
  11235. weight: math.unit(480, "lb"),
  11236. name: "Front",
  11237. image: {
  11238. source: "./media/characters/snow-gabumon/front.svg",
  11239. extra: 1140 / 963,
  11240. bottom: 0.058
  11241. }
  11242. },
  11243. back: {
  11244. height: math.unit(4 + 10 / 12, "feet"),
  11245. weight: math.unit(480, "lb"),
  11246. name: "Back",
  11247. image: {
  11248. source: "./media/characters/snow-gabumon/back.svg",
  11249. extra: 1115 / 962,
  11250. bottom: 0.041
  11251. }
  11252. },
  11253. frontUndresed: {
  11254. height: math.unit(4 + 10 / 12, "feet"),
  11255. weight: math.unit(480, "lb"),
  11256. name: "Front (Undressed)",
  11257. image: {
  11258. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11259. extra: 1061 / 960,
  11260. bottom: 0.045
  11261. }
  11262. },
  11263. },
  11264. [
  11265. {
  11266. name: "Micro",
  11267. height: math.unit(1, "inch")
  11268. },
  11269. {
  11270. name: "Normal",
  11271. height: math.unit(4 + 10 / 12, "feet"),
  11272. default: true
  11273. },
  11274. {
  11275. name: "Macro",
  11276. height: math.unit(200, "feet")
  11277. },
  11278. {
  11279. name: "Megamacro",
  11280. height: math.unit(120, "miles")
  11281. },
  11282. {
  11283. name: "Gigamacro",
  11284. height: math.unit(9800, "miles")
  11285. },
  11286. ]
  11287. ))
  11288. characterMakers.push(() => makeCharacter(
  11289. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11290. {
  11291. front: {
  11292. height: math.unit(1.7, "meters"),
  11293. weight: math.unit(140, "lb"),
  11294. name: "Front",
  11295. image: {
  11296. source: "./media/characters/moody/front.svg",
  11297. extra: 3226 / 3007,
  11298. bottom: 0.087
  11299. }
  11300. },
  11301. },
  11302. [
  11303. {
  11304. name: "Micro",
  11305. height: math.unit(1, "mm")
  11306. },
  11307. {
  11308. name: "Normal",
  11309. height: math.unit(1.7, "meters"),
  11310. default: true
  11311. },
  11312. {
  11313. name: "Macro",
  11314. height: math.unit(80, "meters")
  11315. },
  11316. {
  11317. name: "Macro+",
  11318. height: math.unit(500, "meters")
  11319. },
  11320. ]
  11321. ))
  11322. characterMakers.push(() => makeCharacter(
  11323. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11324. {
  11325. front: {
  11326. height: math.unit(6, "feet"),
  11327. weight: math.unit(150, "lb"),
  11328. name: "Front",
  11329. image: {
  11330. source: "./media/characters/zyas/front.svg",
  11331. extra: 1180 / 1120,
  11332. bottom: 0.045
  11333. }
  11334. },
  11335. },
  11336. [
  11337. {
  11338. name: "Normal",
  11339. height: math.unit(10, "feet"),
  11340. default: true
  11341. },
  11342. {
  11343. name: "Macro",
  11344. height: math.unit(500, "feet")
  11345. },
  11346. {
  11347. name: "Megamacro",
  11348. height: math.unit(5, "miles")
  11349. },
  11350. {
  11351. name: "Teramacro",
  11352. height: math.unit(150000, "miles")
  11353. },
  11354. ]
  11355. ))
  11356. characterMakers.push(() => makeCharacter(
  11357. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11358. {
  11359. front: {
  11360. height: math.unit(6, "feet"),
  11361. weight: math.unit(150, "lb"),
  11362. name: "Front",
  11363. image: {
  11364. source: "./media/characters/cuon/front.svg",
  11365. extra: 1390 / 1320,
  11366. bottom: 0.008
  11367. }
  11368. },
  11369. },
  11370. [
  11371. {
  11372. name: "Micro",
  11373. height: math.unit(3, "inches")
  11374. },
  11375. {
  11376. name: "Normal",
  11377. height: math.unit(18 + 9 / 12, "feet"),
  11378. default: true
  11379. },
  11380. {
  11381. name: "Macro",
  11382. height: math.unit(360, "feet")
  11383. },
  11384. {
  11385. name: "Megamacro",
  11386. height: math.unit(360, "miles")
  11387. },
  11388. ]
  11389. ))
  11390. characterMakers.push(() => makeCharacter(
  11391. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11392. {
  11393. front: {
  11394. height: math.unit(2.4, "meters"),
  11395. weight: math.unit(70, "kg"),
  11396. name: "Front",
  11397. image: {
  11398. source: "./media/characters/nyanuxk/front.svg",
  11399. extra: 1172 / 1084,
  11400. bottom: 0.065
  11401. }
  11402. },
  11403. side: {
  11404. height: math.unit(2.4, "meters"),
  11405. weight: math.unit(70, "kg"),
  11406. name: "Side",
  11407. image: {
  11408. source: "./media/characters/nyanuxk/side.svg",
  11409. extra: 1190 / 1132,
  11410. bottom: 0.007
  11411. }
  11412. },
  11413. back: {
  11414. height: math.unit(2.4, "meters"),
  11415. weight: math.unit(70, "kg"),
  11416. name: "Back",
  11417. image: {
  11418. source: "./media/characters/nyanuxk/back.svg",
  11419. extra: 1200 / 1141,
  11420. bottom: 0.015
  11421. }
  11422. },
  11423. foot: {
  11424. height: math.unit(0.52, "meters"),
  11425. name: "Foot",
  11426. image: {
  11427. source: "./media/characters/nyanuxk/foot.svg"
  11428. }
  11429. },
  11430. },
  11431. [
  11432. {
  11433. name: "Micro",
  11434. height: math.unit(2, "cm")
  11435. },
  11436. {
  11437. name: "Normal",
  11438. height: math.unit(2.4, "meters"),
  11439. default: true
  11440. },
  11441. {
  11442. name: "Smaller Macro",
  11443. height: math.unit(120, "meters")
  11444. },
  11445. {
  11446. name: "Bigger Macro",
  11447. height: math.unit(1.2, "km")
  11448. },
  11449. {
  11450. name: "Megamacro",
  11451. height: math.unit(15, "kilometers")
  11452. },
  11453. {
  11454. name: "Gigamacro",
  11455. height: math.unit(2000, "km")
  11456. },
  11457. {
  11458. name: "Teramacro",
  11459. height: math.unit(500000, "km")
  11460. },
  11461. ]
  11462. ))
  11463. characterMakers.push(() => makeCharacter(
  11464. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11465. {
  11466. side: {
  11467. height: math.unit(6, "feet"),
  11468. name: "Side",
  11469. image: {
  11470. source: "./media/characters/ailbhe/side.svg",
  11471. extra: 757 / 464,
  11472. bottom: 0.041
  11473. }
  11474. },
  11475. },
  11476. [
  11477. {
  11478. name: "Normal",
  11479. height: math.unit(1.07, "meters"),
  11480. default: true
  11481. },
  11482. ]
  11483. ))
  11484. characterMakers.push(() => makeCharacter(
  11485. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11486. {
  11487. front: {
  11488. height: math.unit(6, "feet"),
  11489. weight: math.unit(120, "kg"),
  11490. name: "Front",
  11491. image: {
  11492. source: "./media/characters/zevulfius/front.svg",
  11493. extra: 965 / 903
  11494. }
  11495. },
  11496. side: {
  11497. height: math.unit(6, "feet"),
  11498. weight: math.unit(120, "kg"),
  11499. name: "Side",
  11500. image: {
  11501. source: "./media/characters/zevulfius/side.svg",
  11502. extra: 939 / 900
  11503. }
  11504. },
  11505. back: {
  11506. height: math.unit(6, "feet"),
  11507. weight: math.unit(120, "kg"),
  11508. name: "Back",
  11509. image: {
  11510. source: "./media/characters/zevulfius/back.svg",
  11511. extra: 918 / 854,
  11512. bottom: 0.005
  11513. }
  11514. },
  11515. foot: {
  11516. height: math.unit(6 / 3.72, "feet"),
  11517. name: "Foot",
  11518. image: {
  11519. source: "./media/characters/zevulfius/foot.svg"
  11520. }
  11521. },
  11522. },
  11523. [
  11524. {
  11525. name: "Macro",
  11526. height: math.unit(750, "meters")
  11527. },
  11528. {
  11529. name: "Megamacro",
  11530. height: math.unit(20, "km"),
  11531. default: true
  11532. },
  11533. {
  11534. name: "Gigamacro",
  11535. height: math.unit(2000, "km")
  11536. },
  11537. {
  11538. name: "Teramacro",
  11539. height: math.unit(250000, "km")
  11540. },
  11541. ]
  11542. ))
  11543. characterMakers.push(() => makeCharacter(
  11544. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11545. {
  11546. front: {
  11547. height: math.unit(100, "feet"),
  11548. weight: math.unit(350, "kg"),
  11549. name: "Front",
  11550. image: {
  11551. source: "./media/characters/rikes/front.svg",
  11552. extra: 1565 / 1483,
  11553. bottom: 0.017
  11554. }
  11555. },
  11556. },
  11557. [
  11558. {
  11559. name: "Macro",
  11560. height: math.unit(100, "feet"),
  11561. default: true
  11562. },
  11563. ]
  11564. ))
  11565. characterMakers.push(() => makeCharacter(
  11566. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11567. {
  11568. front: {
  11569. height: math.unit(8, "feet"),
  11570. weight: math.unit(356, "lb"),
  11571. name: "Front",
  11572. image: {
  11573. source: "./media/characters/adam-silver-mane/front.svg",
  11574. extra: 1036/937,
  11575. bottom: 63/1099
  11576. }
  11577. },
  11578. side: {
  11579. height: math.unit(8, "feet"),
  11580. weight: math.unit(356, "lb"),
  11581. name: "Side",
  11582. image: {
  11583. source: "./media/characters/adam-silver-mane/side.svg",
  11584. extra: 997/901,
  11585. bottom: 59/1056
  11586. }
  11587. },
  11588. frontNsfw: {
  11589. height: math.unit(8, "feet"),
  11590. weight: math.unit(356, "lb"),
  11591. name: "Front (NSFW)",
  11592. image: {
  11593. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11594. extra: 1036/937,
  11595. bottom: 63/1099
  11596. }
  11597. },
  11598. sideNsfw: {
  11599. height: math.unit(8, "feet"),
  11600. weight: math.unit(356, "lb"),
  11601. name: "Side (NSFW)",
  11602. image: {
  11603. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11604. extra: 997/901,
  11605. bottom: 59/1056
  11606. }
  11607. },
  11608. dick: {
  11609. height: math.unit(2.1, "feet"),
  11610. name: "Dick",
  11611. image: {
  11612. source: "./media/characters/adam-silver-mane/dick.svg"
  11613. }
  11614. },
  11615. taur: {
  11616. height: math.unit(16, "feet"),
  11617. weight: math.unit(1500, "kg"),
  11618. name: "Taur",
  11619. image: {
  11620. source: "./media/characters/adam-silver-mane/taur.svg",
  11621. extra: 1713 / 1571,
  11622. bottom: 0.01
  11623. }
  11624. },
  11625. },
  11626. [
  11627. {
  11628. name: "Normal",
  11629. height: math.unit(8, "feet")
  11630. },
  11631. {
  11632. name: "Minimacro",
  11633. height: math.unit(80, "feet")
  11634. },
  11635. {
  11636. name: "MDA",
  11637. height: math.unit(80, "meters")
  11638. },
  11639. {
  11640. name: "Macro",
  11641. height: math.unit(800, "feet"),
  11642. default: true
  11643. },
  11644. {
  11645. name: "Megamacro",
  11646. height: math.unit(8000, "feet")
  11647. },
  11648. {
  11649. name: "Gigamacro",
  11650. height: math.unit(800, "miles")
  11651. },
  11652. {
  11653. name: "Teramacro",
  11654. height: math.unit(80000, "miles")
  11655. },
  11656. {
  11657. name: "Celestial",
  11658. height: math.unit(8e6, "miles")
  11659. },
  11660. {
  11661. name: "Star Dragon",
  11662. height: math.unit(800000, "parsecs")
  11663. },
  11664. {
  11665. name: "Godly",
  11666. height: math.unit(800, "teraparsecs")
  11667. },
  11668. ]
  11669. ))
  11670. characterMakers.push(() => makeCharacter(
  11671. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11672. {
  11673. front: {
  11674. height: math.unit(6, "feet"),
  11675. weight: math.unit(150, "lb"),
  11676. name: "Front",
  11677. image: {
  11678. source: "./media/characters/ky'owin/front.svg",
  11679. extra: 3862/3053,
  11680. bottom: 74/3936
  11681. }
  11682. },
  11683. },
  11684. [
  11685. {
  11686. name: "Normal",
  11687. height: math.unit(6 + 8 / 12, "feet")
  11688. },
  11689. {
  11690. name: "Large",
  11691. height: math.unit(68, "feet")
  11692. },
  11693. {
  11694. name: "Macro",
  11695. height: math.unit(132, "feet")
  11696. },
  11697. {
  11698. name: "Macro+",
  11699. height: math.unit(340, "feet")
  11700. },
  11701. {
  11702. name: "Macro++",
  11703. height: math.unit(680, "feet"),
  11704. default: true
  11705. },
  11706. {
  11707. name: "Megamacro",
  11708. height: math.unit(1, "mile")
  11709. },
  11710. {
  11711. name: "Megamacro+",
  11712. height: math.unit(10, "miles")
  11713. },
  11714. ]
  11715. ))
  11716. characterMakers.push(() => makeCharacter(
  11717. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11718. {
  11719. front: {
  11720. height: math.unit(4, "feet"),
  11721. weight: math.unit(50, "lb"),
  11722. name: "Front",
  11723. image: {
  11724. source: "./media/characters/mal/front.svg",
  11725. extra: 785 / 724,
  11726. bottom: 0.07
  11727. }
  11728. },
  11729. },
  11730. [
  11731. {
  11732. name: "Micro",
  11733. height: math.unit(4, "inches")
  11734. },
  11735. {
  11736. name: "Normal",
  11737. height: math.unit(4, "feet"),
  11738. default: true
  11739. },
  11740. {
  11741. name: "Macro",
  11742. height: math.unit(200, "feet")
  11743. },
  11744. ]
  11745. ))
  11746. characterMakers.push(() => makeCharacter(
  11747. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11748. {
  11749. front: {
  11750. height: math.unit(6, "feet"),
  11751. weight: math.unit(150, "lb"),
  11752. name: "Front",
  11753. image: {
  11754. source: "./media/characters/jordan-deware/front.svg",
  11755. extra: 1191 / 1012
  11756. }
  11757. },
  11758. },
  11759. [
  11760. {
  11761. name: "Nano",
  11762. height: math.unit(0.01, "mm")
  11763. },
  11764. {
  11765. name: "Minimicro",
  11766. height: math.unit(1, "mm")
  11767. },
  11768. {
  11769. name: "Micro",
  11770. height: math.unit(0.5, "inches")
  11771. },
  11772. {
  11773. name: "Normal",
  11774. height: math.unit(4, "feet"),
  11775. default: true
  11776. },
  11777. {
  11778. name: "Minimacro",
  11779. height: math.unit(40, "meters")
  11780. },
  11781. {
  11782. name: "Small Macro",
  11783. height: math.unit(400, "meters")
  11784. },
  11785. {
  11786. name: "Macro",
  11787. height: math.unit(4, "miles")
  11788. },
  11789. {
  11790. name: "Megamacro",
  11791. height: math.unit(40, "miles")
  11792. },
  11793. {
  11794. name: "Megamacro+",
  11795. height: math.unit(400, "miles")
  11796. },
  11797. {
  11798. name: "Gigamacro",
  11799. height: math.unit(400000, "miles")
  11800. },
  11801. ]
  11802. ))
  11803. characterMakers.push(() => makeCharacter(
  11804. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11805. {
  11806. side: {
  11807. height: math.unit(6, "feet"),
  11808. weight: math.unit(150, "lb"),
  11809. name: "Side",
  11810. image: {
  11811. source: "./media/characters/kimiko/side.svg",
  11812. extra: 600 / 358
  11813. }
  11814. },
  11815. },
  11816. [
  11817. {
  11818. name: "Normal",
  11819. height: math.unit(15, "feet"),
  11820. default: true
  11821. },
  11822. {
  11823. name: "Macro",
  11824. height: math.unit(220, "feet")
  11825. },
  11826. {
  11827. name: "Macro+",
  11828. height: math.unit(1450, "feet")
  11829. },
  11830. {
  11831. name: "Megamacro",
  11832. height: math.unit(11500, "feet")
  11833. },
  11834. {
  11835. name: "Gigamacro",
  11836. height: math.unit(9500, "miles")
  11837. },
  11838. {
  11839. name: "Teramacro",
  11840. height: math.unit(2208005005, "miles")
  11841. },
  11842. {
  11843. name: "Examacro",
  11844. height: math.unit(2750, "parsecs")
  11845. },
  11846. {
  11847. name: "Zettamacro",
  11848. height: math.unit(101500, "parsecs")
  11849. },
  11850. ]
  11851. ))
  11852. characterMakers.push(() => makeCharacter(
  11853. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11854. {
  11855. front: {
  11856. height: math.unit(6, "feet"),
  11857. weight: math.unit(70, "kg"),
  11858. name: "Front",
  11859. image: {
  11860. source: "./media/characters/andrew-sleepy/front.svg"
  11861. }
  11862. },
  11863. side: {
  11864. height: math.unit(6, "feet"),
  11865. weight: math.unit(70, "kg"),
  11866. name: "Side",
  11867. image: {
  11868. source: "./media/characters/andrew-sleepy/side.svg"
  11869. }
  11870. },
  11871. },
  11872. [
  11873. {
  11874. name: "Micro",
  11875. height: math.unit(1, "mm"),
  11876. default: true
  11877. },
  11878. ]
  11879. ))
  11880. characterMakers.push(() => makeCharacter(
  11881. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11882. {
  11883. front: {
  11884. height: math.unit(6, "feet"),
  11885. weight: math.unit(150, "lb"),
  11886. name: "Front",
  11887. image: {
  11888. source: "./media/characters/judio/front.svg",
  11889. extra: 1258 / 1110
  11890. }
  11891. },
  11892. },
  11893. [
  11894. {
  11895. name: "Normal",
  11896. height: math.unit(5 + 6 / 12, "feet")
  11897. },
  11898. {
  11899. name: "Macro",
  11900. height: math.unit(1000, "feet"),
  11901. default: true
  11902. },
  11903. {
  11904. name: "Megamacro",
  11905. height: math.unit(10, "miles")
  11906. },
  11907. ]
  11908. ))
  11909. characterMakers.push(() => makeCharacter(
  11910. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11911. {
  11912. frontDressed: {
  11913. height: math.unit(6, "feet"),
  11914. weight: math.unit(68, "kg"),
  11915. name: "Front (Dressed)",
  11916. image: {
  11917. source: "./media/characters/nomaxice/front-dressed.svg",
  11918. extra: 1137/824,
  11919. bottom: 74/1211
  11920. }
  11921. },
  11922. frontShorts: {
  11923. height: math.unit(6, "feet"),
  11924. weight: math.unit(68, "kg"),
  11925. name: "Front (Shorts)",
  11926. image: {
  11927. source: "./media/characters/nomaxice/front-shorts.svg",
  11928. extra: 1137/824,
  11929. bottom: 74/1211
  11930. }
  11931. },
  11932. back: {
  11933. height: math.unit(6, "feet"),
  11934. weight: math.unit(68, "kg"),
  11935. name: "Back",
  11936. image: {
  11937. source: "./media/characters/nomaxice/back.svg",
  11938. extra: 822/786,
  11939. bottom: 39/861
  11940. }
  11941. },
  11942. hand: {
  11943. height: math.unit(0.565, "feet"),
  11944. name: "Hand",
  11945. image: {
  11946. source: "./media/characters/nomaxice/hand.svg"
  11947. }
  11948. },
  11949. foot: {
  11950. height: math.unit(1, "feet"),
  11951. name: "Foot",
  11952. image: {
  11953. source: "./media/characters/nomaxice/foot.svg"
  11954. }
  11955. },
  11956. },
  11957. [
  11958. {
  11959. name: "Micro",
  11960. height: math.unit(8, "cm")
  11961. },
  11962. {
  11963. name: "Norm",
  11964. height: math.unit(1.82, "m")
  11965. },
  11966. {
  11967. name: "Norm+",
  11968. height: math.unit(8.8, "feet"),
  11969. default: true
  11970. },
  11971. {
  11972. name: "Big",
  11973. height: math.unit(8, "meters")
  11974. },
  11975. {
  11976. name: "Macro",
  11977. height: math.unit(18, "meters")
  11978. },
  11979. {
  11980. name: "Macro+",
  11981. height: math.unit(88, "meters")
  11982. },
  11983. ]
  11984. ))
  11985. characterMakers.push(() => makeCharacter(
  11986. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11987. {
  11988. front: {
  11989. height: math.unit(12, "feet"),
  11990. weight: math.unit(1.5, "tons"),
  11991. name: "Front",
  11992. image: {
  11993. source: "./media/characters/dydros/front.svg",
  11994. extra: 863 / 800,
  11995. bottom: 0.015
  11996. }
  11997. },
  11998. back: {
  11999. height: math.unit(12, "feet"),
  12000. weight: math.unit(1.5, "tons"),
  12001. name: "Back",
  12002. image: {
  12003. source: "./media/characters/dydros/back.svg",
  12004. extra: 900 / 843,
  12005. bottom: 0.005
  12006. }
  12007. },
  12008. },
  12009. [
  12010. {
  12011. name: "Normal",
  12012. height: math.unit(12, "feet"),
  12013. default: true
  12014. },
  12015. ]
  12016. ))
  12017. characterMakers.push(() => makeCharacter(
  12018. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12019. {
  12020. front: {
  12021. height: math.unit(6, "feet"),
  12022. weight: math.unit(100, "kg"),
  12023. name: "Front",
  12024. image: {
  12025. source: "./media/characters/riggi/front.svg",
  12026. extra: 5787 / 5303
  12027. }
  12028. },
  12029. hyper: {
  12030. height: math.unit(6 * 5 / 3, "feet"),
  12031. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12032. name: "Hyper",
  12033. image: {
  12034. source: "./media/characters/riggi/hyper.svg",
  12035. extra: 3595 / 3485
  12036. }
  12037. },
  12038. },
  12039. [
  12040. {
  12041. name: "Small Macro",
  12042. height: math.unit(50, "feet")
  12043. },
  12044. {
  12045. name: "Default",
  12046. height: math.unit(200, "feet"),
  12047. default: true
  12048. },
  12049. {
  12050. name: "Loom",
  12051. height: math.unit(10000, "feet")
  12052. },
  12053. {
  12054. name: "Cruising Altitude",
  12055. height: math.unit(30000, "feet")
  12056. },
  12057. {
  12058. name: "Megamacro",
  12059. height: math.unit(100, "miles")
  12060. },
  12061. {
  12062. name: "Continent Sized",
  12063. height: math.unit(2800, "miles")
  12064. },
  12065. {
  12066. name: "Earth Sized",
  12067. height: math.unit(8000, "miles")
  12068. },
  12069. ]
  12070. ))
  12071. characterMakers.push(() => makeCharacter(
  12072. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12073. {
  12074. front: {
  12075. height: math.unit(6, "feet"),
  12076. weight: math.unit(250, "lb"),
  12077. name: "Front",
  12078. image: {
  12079. source: "./media/characters/alexi/front.svg",
  12080. extra: 3483 / 3291,
  12081. bottom: 0.04
  12082. }
  12083. },
  12084. back: {
  12085. height: math.unit(6, "feet"),
  12086. weight: math.unit(250, "lb"),
  12087. name: "Back",
  12088. image: {
  12089. source: "./media/characters/alexi/back.svg",
  12090. extra: 3533 / 3356,
  12091. bottom: 0.021
  12092. }
  12093. },
  12094. frontTransforming: {
  12095. height: math.unit(8.58, "feet"),
  12096. weight: math.unit(1300, "lb"),
  12097. name: "Transforming",
  12098. image: {
  12099. source: "./media/characters/alexi/front-transforming.svg",
  12100. extra: 437 / 409,
  12101. bottom: 19 / 458.66
  12102. }
  12103. },
  12104. frontTransformed: {
  12105. height: math.unit(12.5, "feet"),
  12106. weight: math.unit(4000, "lb"),
  12107. name: "Transformed",
  12108. image: {
  12109. source: "./media/characters/alexi/front-transformed.svg",
  12110. extra: 639 / 614,
  12111. bottom: 30.55 / 671
  12112. }
  12113. },
  12114. },
  12115. [
  12116. {
  12117. name: "Normal",
  12118. height: math.unit(14, "feet"),
  12119. default: true
  12120. },
  12121. {
  12122. name: "Minimacro",
  12123. height: math.unit(30, "meters")
  12124. },
  12125. {
  12126. name: "Macro",
  12127. height: math.unit(500, "meters")
  12128. },
  12129. {
  12130. name: "Megamacro",
  12131. height: math.unit(9000, "km")
  12132. },
  12133. {
  12134. name: "Teramacro",
  12135. height: math.unit(384000, "km")
  12136. },
  12137. ]
  12138. ))
  12139. characterMakers.push(() => makeCharacter(
  12140. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12141. {
  12142. front: {
  12143. height: math.unit(6, "feet"),
  12144. weight: math.unit(150, "lb"),
  12145. name: "Front",
  12146. image: {
  12147. source: "./media/characters/kayroo/front.svg",
  12148. extra: 1153 / 1038,
  12149. bottom: 0.06
  12150. }
  12151. },
  12152. foot: {
  12153. height: math.unit(6, "feet"),
  12154. weight: math.unit(150, "lb"),
  12155. name: "Foot",
  12156. image: {
  12157. source: "./media/characters/kayroo/foot.svg"
  12158. }
  12159. },
  12160. },
  12161. [
  12162. {
  12163. name: "Normal",
  12164. height: math.unit(8, "feet"),
  12165. default: true
  12166. },
  12167. {
  12168. name: "Minimacro",
  12169. height: math.unit(250, "feet")
  12170. },
  12171. {
  12172. name: "Macro",
  12173. height: math.unit(2800, "feet")
  12174. },
  12175. {
  12176. name: "Megamacro",
  12177. height: math.unit(5200, "feet")
  12178. },
  12179. {
  12180. name: "Gigamacro",
  12181. height: math.unit(27000, "feet")
  12182. },
  12183. {
  12184. name: "Omega",
  12185. height: math.unit(45000, "feet")
  12186. },
  12187. ]
  12188. ))
  12189. characterMakers.push(() => makeCharacter(
  12190. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12191. {
  12192. front: {
  12193. height: math.unit(18, "feet"),
  12194. weight: math.unit(5800, "lb"),
  12195. name: "Front",
  12196. image: {
  12197. source: "./media/characters/rhys/front.svg",
  12198. extra: 3386 / 3090,
  12199. bottom: 0.07
  12200. }
  12201. },
  12202. },
  12203. [
  12204. {
  12205. name: "Normal",
  12206. height: math.unit(18, "feet"),
  12207. default: true
  12208. },
  12209. {
  12210. name: "Working Size",
  12211. height: math.unit(200, "feet")
  12212. },
  12213. {
  12214. name: "Demolition Size",
  12215. height: math.unit(2000, "feet")
  12216. },
  12217. {
  12218. name: "Maximum Licensed Size",
  12219. height: math.unit(5, "miles")
  12220. },
  12221. {
  12222. name: "Maximum Observed Size",
  12223. height: math.unit(10, "yottameters")
  12224. },
  12225. ]
  12226. ))
  12227. characterMakers.push(() => makeCharacter(
  12228. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12229. {
  12230. front: {
  12231. height: math.unit(6, "feet"),
  12232. weight: math.unit(250, "lb"),
  12233. name: "Front",
  12234. image: {
  12235. source: "./media/characters/toto/front.svg",
  12236. extra: 527 / 479,
  12237. bottom: 0.05
  12238. }
  12239. },
  12240. },
  12241. [
  12242. {
  12243. name: "Micro",
  12244. height: math.unit(3, "feet")
  12245. },
  12246. {
  12247. name: "Normal",
  12248. height: math.unit(10, "feet")
  12249. },
  12250. {
  12251. name: "Macro",
  12252. height: math.unit(150, "feet"),
  12253. default: true
  12254. },
  12255. {
  12256. name: "Megamacro",
  12257. height: math.unit(1200, "feet")
  12258. },
  12259. ]
  12260. ))
  12261. characterMakers.push(() => makeCharacter(
  12262. { name: "King", species: ["lion"], tags: ["anthro"] },
  12263. {
  12264. back: {
  12265. height: math.unit(6, "feet"),
  12266. weight: math.unit(150, "lb"),
  12267. name: "Back",
  12268. image: {
  12269. source: "./media/characters/king/back.svg"
  12270. }
  12271. },
  12272. },
  12273. [
  12274. {
  12275. name: "Micro",
  12276. height: math.unit(2, "inches")
  12277. },
  12278. {
  12279. name: "Normal",
  12280. height: math.unit(8, "feet")
  12281. },
  12282. {
  12283. name: "Macro",
  12284. height: math.unit(200, "feet"),
  12285. default: true
  12286. },
  12287. {
  12288. name: "Megamacro",
  12289. height: math.unit(50, "miles")
  12290. },
  12291. ]
  12292. ))
  12293. characterMakers.push(() => makeCharacter(
  12294. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12295. {
  12296. front: {
  12297. height: math.unit(11, "feet"),
  12298. weight: math.unit(1400, "lb"),
  12299. name: "Front",
  12300. image: {
  12301. source: "./media/characters/cordite/front.svg",
  12302. extra: 1919/1827,
  12303. bottom: 40/1959
  12304. }
  12305. },
  12306. side: {
  12307. height: math.unit(11, "feet"),
  12308. weight: math.unit(1400, "lb"),
  12309. name: "Side",
  12310. image: {
  12311. source: "./media/characters/cordite/side.svg",
  12312. extra: 1908/1793,
  12313. bottom: 38/1946
  12314. }
  12315. },
  12316. back: {
  12317. height: math.unit(11, "feet"),
  12318. weight: math.unit(1400, "lb"),
  12319. name: "Back",
  12320. image: {
  12321. source: "./media/characters/cordite/back.svg",
  12322. extra: 1938/1837,
  12323. bottom: 10/1948
  12324. }
  12325. },
  12326. feral: {
  12327. height: math.unit(2, "feet"),
  12328. weight: math.unit(90, "lb"),
  12329. name: "Feral",
  12330. image: {
  12331. source: "./media/characters/cordite/feral.svg",
  12332. extra: 1260 / 755,
  12333. bottom: 0.05
  12334. }
  12335. },
  12336. },
  12337. [
  12338. {
  12339. name: "Normal",
  12340. height: math.unit(11, "feet"),
  12341. default: true
  12342. },
  12343. ]
  12344. ))
  12345. characterMakers.push(() => makeCharacter(
  12346. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12347. {
  12348. front: {
  12349. height: math.unit(6, "feet"),
  12350. weight: math.unit(150, "lb"),
  12351. name: "Front",
  12352. image: {
  12353. source: "./media/characters/pianostrong/front.svg",
  12354. extra: 6577 / 6254,
  12355. bottom: 0.02
  12356. }
  12357. },
  12358. side: {
  12359. height: math.unit(6, "feet"),
  12360. weight: math.unit(150, "lb"),
  12361. name: "Side",
  12362. image: {
  12363. source: "./media/characters/pianostrong/side.svg",
  12364. extra: 6106 / 5730
  12365. }
  12366. },
  12367. back: {
  12368. height: math.unit(6, "feet"),
  12369. weight: math.unit(150, "lb"),
  12370. name: "Back",
  12371. image: {
  12372. source: "./media/characters/pianostrong/back.svg",
  12373. extra: 6085 / 5733,
  12374. bottom: 0.01
  12375. }
  12376. },
  12377. },
  12378. [
  12379. {
  12380. name: "Macro",
  12381. height: math.unit(100, "feet")
  12382. },
  12383. {
  12384. name: "Macro+",
  12385. height: math.unit(300, "feet"),
  12386. default: true
  12387. },
  12388. {
  12389. name: "Macro++",
  12390. height: math.unit(1000, "feet")
  12391. },
  12392. ]
  12393. ))
  12394. characterMakers.push(() => makeCharacter(
  12395. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12396. {
  12397. front: {
  12398. height: math.unit(6, "feet"),
  12399. weight: math.unit(150, "lb"),
  12400. name: "Front",
  12401. image: {
  12402. source: "./media/characters/kona/front.svg",
  12403. extra: 2960 / 2629,
  12404. bottom: 0.005
  12405. }
  12406. },
  12407. },
  12408. [
  12409. {
  12410. name: "Normal",
  12411. height: math.unit(11 + 8 / 12, "feet")
  12412. },
  12413. {
  12414. name: "Macro",
  12415. height: math.unit(850, "feet"),
  12416. default: true
  12417. },
  12418. {
  12419. name: "Macro+",
  12420. height: math.unit(1.5, "km"),
  12421. default: true
  12422. },
  12423. {
  12424. name: "Megamacro",
  12425. height: math.unit(80, "miles")
  12426. },
  12427. {
  12428. name: "Gigamacro",
  12429. height: math.unit(3500, "miles")
  12430. },
  12431. ]
  12432. ))
  12433. characterMakers.push(() => makeCharacter(
  12434. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12435. {
  12436. side: {
  12437. height: math.unit(1.9, "meters"),
  12438. weight: math.unit(326, "kg"),
  12439. name: "Side",
  12440. image: {
  12441. source: "./media/characters/levi/side.svg",
  12442. extra: 1704 / 1334,
  12443. bottom: 0.02
  12444. }
  12445. },
  12446. },
  12447. [
  12448. {
  12449. name: "Normal",
  12450. height: math.unit(1.9, "meters"),
  12451. default: true
  12452. },
  12453. {
  12454. name: "Macro",
  12455. height: math.unit(20, "meters")
  12456. },
  12457. {
  12458. name: "Macro+",
  12459. height: math.unit(200, "meters")
  12460. },
  12461. {
  12462. name: "Megamacro",
  12463. height: math.unit(2, "km")
  12464. },
  12465. {
  12466. name: "Megamacro+",
  12467. height: math.unit(20, "km")
  12468. },
  12469. {
  12470. name: "Gigamacro",
  12471. height: math.unit(2500, "km")
  12472. },
  12473. {
  12474. name: "Gigamacro+",
  12475. height: math.unit(120000, "km")
  12476. },
  12477. {
  12478. name: "Teramacro",
  12479. height: math.unit(7.77e6, "km")
  12480. },
  12481. ]
  12482. ))
  12483. characterMakers.push(() => makeCharacter(
  12484. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12485. {
  12486. front: {
  12487. height: math.unit(6 + 4/12, "feet"),
  12488. weight: math.unit(190, "lb"),
  12489. name: "Front",
  12490. image: {
  12491. source: "./media/characters/bmc/front.svg",
  12492. extra: 1626/1472,
  12493. bottom: 79/1705
  12494. }
  12495. },
  12496. back: {
  12497. height: math.unit(6 + 4/12, "feet"),
  12498. weight: math.unit(190, "lb"),
  12499. name: "Back",
  12500. image: {
  12501. source: "./media/characters/bmc/back.svg",
  12502. extra: 1640/1479,
  12503. bottom: 45/1685
  12504. }
  12505. },
  12506. frontArmor: {
  12507. height: math.unit(6 + 4/12, "feet"),
  12508. weight: math.unit(190, "lb"),
  12509. name: "Front-armor",
  12510. image: {
  12511. source: "./media/characters/bmc/front-armor.svg",
  12512. extra: 1538/1468,
  12513. bottom: 79/1617
  12514. }
  12515. },
  12516. },
  12517. [
  12518. {
  12519. name: "Human-sized",
  12520. height: math.unit(6 + 4 / 12, "feet")
  12521. },
  12522. {
  12523. name: "Interactive Size",
  12524. height: math.unit(25, "feet")
  12525. },
  12526. {
  12527. name: "Small",
  12528. height: math.unit(250, "feet")
  12529. },
  12530. {
  12531. name: "Normal",
  12532. height: math.unit(1250, "feet"),
  12533. default: true
  12534. },
  12535. {
  12536. name: "Good Day",
  12537. height: math.unit(88, "miles")
  12538. },
  12539. {
  12540. name: "Largest Measured Size",
  12541. height: math.unit(105.960, "galaxies")
  12542. },
  12543. ]
  12544. ))
  12545. characterMakers.push(() => makeCharacter(
  12546. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12547. {
  12548. front: {
  12549. height: math.unit(20, "feet"),
  12550. weight: math.unit(2016, "kg"),
  12551. name: "Front",
  12552. image: {
  12553. source: "./media/characters/sven-the-kaiju/front.svg",
  12554. extra: 1277/1250,
  12555. bottom: 35/1312
  12556. }
  12557. },
  12558. mouth: {
  12559. height: math.unit(1.85, "feet"),
  12560. name: "Mouth",
  12561. image: {
  12562. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12563. }
  12564. },
  12565. },
  12566. [
  12567. {
  12568. name: "Fairy",
  12569. height: math.unit(6, "inches")
  12570. },
  12571. {
  12572. name: "Normal",
  12573. height: math.unit(20, "feet"),
  12574. default: true
  12575. },
  12576. {
  12577. name: "Rampage",
  12578. height: math.unit(200, "feet")
  12579. },
  12580. {
  12581. name: "Archfey Forest Guardian",
  12582. height: math.unit(1, "mile")
  12583. },
  12584. ]
  12585. ))
  12586. characterMakers.push(() => makeCharacter(
  12587. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12588. {
  12589. front: {
  12590. height: math.unit(4, "meters"),
  12591. weight: math.unit(2, "tons"),
  12592. name: "Front",
  12593. image: {
  12594. source: "./media/characters/marik/front.svg",
  12595. extra: 1057 / 1003,
  12596. bottom: 0.08
  12597. }
  12598. },
  12599. },
  12600. [
  12601. {
  12602. name: "Normal",
  12603. height: math.unit(4, "meters"),
  12604. default: true
  12605. },
  12606. {
  12607. name: "Macro",
  12608. height: math.unit(20, "meters")
  12609. },
  12610. {
  12611. name: "Megamacro",
  12612. height: math.unit(50, "km")
  12613. },
  12614. {
  12615. name: "Gigamacro",
  12616. height: math.unit(100, "km")
  12617. },
  12618. {
  12619. name: "Alpha Macro",
  12620. height: math.unit(7.88e7, "yottameters")
  12621. },
  12622. ]
  12623. ))
  12624. characterMakers.push(() => makeCharacter(
  12625. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12626. {
  12627. front: {
  12628. height: math.unit(6, "feet"),
  12629. weight: math.unit(110, "lb"),
  12630. name: "Front",
  12631. image: {
  12632. source: "./media/characters/mel/front.svg",
  12633. extra: 736 / 617,
  12634. bottom: 0.017
  12635. }
  12636. },
  12637. },
  12638. [
  12639. {
  12640. name: "Pico",
  12641. height: math.unit(3, "pm")
  12642. },
  12643. {
  12644. name: "Nano",
  12645. height: math.unit(3, "nm")
  12646. },
  12647. {
  12648. name: "Micro",
  12649. height: math.unit(0.3, "mm"),
  12650. default: true
  12651. },
  12652. {
  12653. name: "Micro+",
  12654. height: math.unit(3, "mm")
  12655. },
  12656. {
  12657. name: "Normal",
  12658. height: math.unit(5 + 10.5 / 12, "feet")
  12659. },
  12660. ]
  12661. ))
  12662. characterMakers.push(() => makeCharacter(
  12663. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12664. {
  12665. kaiju: {
  12666. height: math.unit(1.75, "meters"),
  12667. weight: math.unit(55, "kg"),
  12668. name: "Kaiju",
  12669. image: {
  12670. source: "./media/characters/lykonous/kaiju.svg",
  12671. extra: 1055 / 946,
  12672. bottom: 0.135
  12673. }
  12674. },
  12675. },
  12676. [
  12677. {
  12678. name: "Normal",
  12679. height: math.unit(2.5, "meters"),
  12680. default: true
  12681. },
  12682. {
  12683. name: "Kaiju Dragon",
  12684. height: math.unit(60, "meters")
  12685. },
  12686. {
  12687. name: "Mega Kaiju",
  12688. height: math.unit(120, "km")
  12689. },
  12690. {
  12691. name: "Giga Kaiju",
  12692. height: math.unit(200, "megameters")
  12693. },
  12694. {
  12695. name: "Terra Kaiju",
  12696. height: math.unit(400, "gigameters")
  12697. },
  12698. {
  12699. name: "Kaiju Dragon God",
  12700. height: math.unit(13000, "exaparsecs")
  12701. },
  12702. ]
  12703. ))
  12704. characterMakers.push(() => makeCharacter(
  12705. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12706. {
  12707. front: {
  12708. height: math.unit(6, "feet"),
  12709. weight: math.unit(150, "lb"),
  12710. name: "Front",
  12711. image: {
  12712. source: "./media/characters/blü/front.svg",
  12713. extra: 1883 / 1564,
  12714. bottom: 0.031
  12715. }
  12716. },
  12717. },
  12718. [
  12719. {
  12720. name: "Normal",
  12721. height: math.unit(13, "feet"),
  12722. default: true
  12723. },
  12724. {
  12725. name: "Big Boi",
  12726. height: math.unit(150, "meters")
  12727. },
  12728. {
  12729. name: "Mini Stomper",
  12730. height: math.unit(300, "meters")
  12731. },
  12732. {
  12733. name: "Macro",
  12734. height: math.unit(1000, "meters")
  12735. },
  12736. {
  12737. name: "Megamacro",
  12738. height: math.unit(11000, "meters")
  12739. },
  12740. {
  12741. name: "Gigamacro",
  12742. height: math.unit(11000, "km")
  12743. },
  12744. {
  12745. name: "Teramacro",
  12746. height: math.unit(420000, "km")
  12747. },
  12748. {
  12749. name: "Examacro",
  12750. height: math.unit(120, "parsecs")
  12751. },
  12752. {
  12753. name: "God Tho",
  12754. height: math.unit(98000000000, "parsecs")
  12755. },
  12756. ]
  12757. ))
  12758. characterMakers.push(() => makeCharacter(
  12759. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12760. {
  12761. taurFront: {
  12762. height: math.unit(6, "feet"),
  12763. weight: math.unit(200, "lb"),
  12764. name: "Taur (Front)",
  12765. image: {
  12766. source: "./media/characters/scales/taur-front.svg",
  12767. extra: 1,
  12768. bottom: 0.05
  12769. }
  12770. },
  12771. taurBack: {
  12772. height: math.unit(6, "feet"),
  12773. weight: math.unit(200, "lb"),
  12774. name: "Taur (Back)",
  12775. image: {
  12776. source: "./media/characters/scales/taur-back.svg",
  12777. extra: 1,
  12778. bottom: 0.08
  12779. }
  12780. },
  12781. anthro: {
  12782. height: math.unit(6 * 7 / 12, "feet"),
  12783. weight: math.unit(100, "lb"),
  12784. name: "Anthro",
  12785. image: {
  12786. source: "./media/characters/scales/anthro.svg",
  12787. extra: 1,
  12788. bottom: 0.06
  12789. }
  12790. },
  12791. },
  12792. [
  12793. {
  12794. name: "Normal",
  12795. height: math.unit(12, "feet"),
  12796. default: true
  12797. },
  12798. ]
  12799. ))
  12800. characterMakers.push(() => makeCharacter(
  12801. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12802. {
  12803. front: {
  12804. height: math.unit(6, "feet"),
  12805. weight: math.unit(150, "lb"),
  12806. name: "Front",
  12807. image: {
  12808. source: "./media/characters/koragos/front.svg",
  12809. extra: 841 / 794,
  12810. bottom: 0.035
  12811. }
  12812. },
  12813. back: {
  12814. height: math.unit(6, "feet"),
  12815. weight: math.unit(150, "lb"),
  12816. name: "Back",
  12817. image: {
  12818. source: "./media/characters/koragos/back.svg",
  12819. extra: 841 / 810,
  12820. bottom: 0.022
  12821. }
  12822. },
  12823. },
  12824. [
  12825. {
  12826. name: "Normal",
  12827. height: math.unit(6 + 11 / 12, "feet"),
  12828. default: true
  12829. },
  12830. {
  12831. name: "Macro",
  12832. height: math.unit(490, "feet")
  12833. },
  12834. {
  12835. name: "Megamacro",
  12836. height: math.unit(10, "miles")
  12837. },
  12838. {
  12839. name: "Gigamacro",
  12840. height: math.unit(50, "miles")
  12841. },
  12842. ]
  12843. ))
  12844. characterMakers.push(() => makeCharacter(
  12845. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12846. {
  12847. front: {
  12848. height: math.unit(6, "feet"),
  12849. weight: math.unit(250, "lb"),
  12850. name: "Front",
  12851. image: {
  12852. source: "./media/characters/xylrem/front.svg",
  12853. extra: 3323 / 3050,
  12854. bottom: 0.065
  12855. }
  12856. },
  12857. },
  12858. [
  12859. {
  12860. name: "Micro",
  12861. height: math.unit(4, "feet")
  12862. },
  12863. {
  12864. name: "Normal",
  12865. height: math.unit(16, "feet"),
  12866. default: true
  12867. },
  12868. {
  12869. name: "Macro",
  12870. height: math.unit(2720, "feet")
  12871. },
  12872. {
  12873. name: "Megamacro",
  12874. height: math.unit(25000, "miles")
  12875. },
  12876. ]
  12877. ))
  12878. characterMakers.push(() => makeCharacter(
  12879. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12880. {
  12881. front: {
  12882. height: math.unit(8, "feet"),
  12883. weight: math.unit(250, "kg"),
  12884. name: "Front",
  12885. image: {
  12886. source: "./media/characters/ikideru/front.svg",
  12887. extra: 930 / 870,
  12888. bottom: 0.087
  12889. }
  12890. },
  12891. back: {
  12892. height: math.unit(8, "feet"),
  12893. weight: math.unit(250, "kg"),
  12894. name: "Back",
  12895. image: {
  12896. source: "./media/characters/ikideru/back.svg",
  12897. extra: 919 / 852,
  12898. bottom: 0.055
  12899. }
  12900. },
  12901. },
  12902. [
  12903. {
  12904. name: "Rare",
  12905. height: math.unit(8, "feet"),
  12906. default: true
  12907. },
  12908. {
  12909. name: "Playful Loom",
  12910. height: math.unit(80, "feet")
  12911. },
  12912. {
  12913. name: "City Leaner",
  12914. height: math.unit(230, "feet")
  12915. },
  12916. {
  12917. name: "Megamacro",
  12918. height: math.unit(2500, "feet")
  12919. },
  12920. {
  12921. name: "Gigamacro",
  12922. height: math.unit(26400, "feet")
  12923. },
  12924. {
  12925. name: "Tectonic Shifter",
  12926. height: math.unit(1.7, "megameters")
  12927. },
  12928. {
  12929. name: "Planet Carer",
  12930. height: math.unit(21, "megameters")
  12931. },
  12932. {
  12933. name: "God",
  12934. height: math.unit(11157.22, "parsecs")
  12935. },
  12936. ]
  12937. ))
  12938. characterMakers.push(() => makeCharacter(
  12939. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12940. {
  12941. front: {
  12942. height: math.unit(6, "feet"),
  12943. weight: math.unit(120, "lb"),
  12944. name: "Front",
  12945. image: {
  12946. source: "./media/characters/neo/front.svg"
  12947. }
  12948. },
  12949. },
  12950. [
  12951. {
  12952. name: "Micro",
  12953. height: math.unit(2, "inches"),
  12954. default: true
  12955. },
  12956. {
  12957. name: "Human Size",
  12958. height: math.unit(5 + 8 / 12, "feet")
  12959. },
  12960. ]
  12961. ))
  12962. characterMakers.push(() => makeCharacter(
  12963. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12964. {
  12965. front: {
  12966. height: math.unit(13 + 10 / 12, "feet"),
  12967. weight: math.unit(5320, "lb"),
  12968. name: "Front",
  12969. image: {
  12970. source: "./media/characters/chauncey-chantz/front.svg",
  12971. extra: 1587 / 1435,
  12972. bottom: 0.02
  12973. }
  12974. },
  12975. },
  12976. [
  12977. {
  12978. name: "Normal",
  12979. height: math.unit(13 + 10 / 12, "feet"),
  12980. default: true
  12981. },
  12982. {
  12983. name: "Macro",
  12984. height: math.unit(45, "feet")
  12985. },
  12986. {
  12987. name: "Megamacro",
  12988. height: math.unit(250, "miles")
  12989. },
  12990. {
  12991. name: "Planetary",
  12992. height: math.unit(10000, "miles")
  12993. },
  12994. {
  12995. name: "Galactic",
  12996. height: math.unit(40000, "parsecs")
  12997. },
  12998. {
  12999. name: "Universal",
  13000. height: math.unit(1, "yottameter")
  13001. },
  13002. ]
  13003. ))
  13004. characterMakers.push(() => makeCharacter(
  13005. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13006. {
  13007. front: {
  13008. height: math.unit(6, "feet"),
  13009. weight: math.unit(150, "lb"),
  13010. name: "Front",
  13011. image: {
  13012. source: "./media/characters/epifox/front.svg",
  13013. extra: 1,
  13014. bottom: 0.075
  13015. }
  13016. },
  13017. },
  13018. [
  13019. {
  13020. name: "Micro",
  13021. height: math.unit(6, "inches")
  13022. },
  13023. {
  13024. name: "Normal",
  13025. height: math.unit(12, "feet"),
  13026. default: true
  13027. },
  13028. {
  13029. name: "Macro",
  13030. height: math.unit(3810, "feet")
  13031. },
  13032. {
  13033. name: "Megamacro",
  13034. height: math.unit(500, "miles")
  13035. },
  13036. ]
  13037. ))
  13038. characterMakers.push(() => makeCharacter(
  13039. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13040. {
  13041. front: {
  13042. height: math.unit(1.8796, "m"),
  13043. weight: math.unit(230, "lb"),
  13044. name: "Front",
  13045. image: {
  13046. source: "./media/characters/colin-t/front.svg",
  13047. extra: 1272 / 1193,
  13048. bottom: 0.07
  13049. }
  13050. },
  13051. },
  13052. [
  13053. {
  13054. name: "Micro",
  13055. height: math.unit(0.571, "meters")
  13056. },
  13057. {
  13058. name: "Normal",
  13059. height: math.unit(1.8796, "meters"),
  13060. default: true
  13061. },
  13062. {
  13063. name: "Tall",
  13064. height: math.unit(4, "meters")
  13065. },
  13066. {
  13067. name: "Macro",
  13068. height: math.unit(67.241, "meters")
  13069. },
  13070. {
  13071. name: "Megamacro",
  13072. height: math.unit(371.856, "meters")
  13073. },
  13074. {
  13075. name: "Planetary",
  13076. height: math.unit(12631.5689, "km")
  13077. },
  13078. ]
  13079. ))
  13080. characterMakers.push(() => makeCharacter(
  13081. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13082. {
  13083. front: {
  13084. height: math.unit(1.85, "meters"),
  13085. weight: math.unit(80, "kg"),
  13086. name: "Front",
  13087. image: {
  13088. source: "./media/characters/matvei/front.svg",
  13089. extra: 456/447,
  13090. bottom: 8/464
  13091. }
  13092. },
  13093. back: {
  13094. height: math.unit(1.85, "meters"),
  13095. weight: math.unit(80, "kg"),
  13096. name: "Back",
  13097. image: {
  13098. source: "./media/characters/matvei/back.svg",
  13099. extra: 434/427,
  13100. bottom: 11/445
  13101. }
  13102. },
  13103. },
  13104. [
  13105. {
  13106. name: "Normal",
  13107. height: math.unit(1.85, "meters"),
  13108. default: true
  13109. },
  13110. ]
  13111. ))
  13112. characterMakers.push(() => makeCharacter(
  13113. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13114. {
  13115. front: {
  13116. height: math.unit(5 + 9 / 12, "feet"),
  13117. weight: math.unit(70, "lb"),
  13118. name: "Front",
  13119. image: {
  13120. source: "./media/characters/quincy/front.svg",
  13121. extra: 3041 / 2751
  13122. }
  13123. },
  13124. back: {
  13125. height: math.unit(5 + 9 / 12, "feet"),
  13126. weight: math.unit(70, "lb"),
  13127. name: "Back",
  13128. image: {
  13129. source: "./media/characters/quincy/back.svg",
  13130. extra: 3041 / 2751
  13131. }
  13132. },
  13133. flying: {
  13134. height: math.unit(5 + 4 / 12, "feet"),
  13135. weight: math.unit(70, "lb"),
  13136. name: "Flying",
  13137. image: {
  13138. source: "./media/characters/quincy/flying.svg",
  13139. extra: 1044 / 930
  13140. }
  13141. },
  13142. },
  13143. [
  13144. {
  13145. name: "Micro",
  13146. height: math.unit(3, "cm")
  13147. },
  13148. {
  13149. name: "Normal",
  13150. height: math.unit(5 + 9 / 12, "feet")
  13151. },
  13152. {
  13153. name: "Macro",
  13154. height: math.unit(200, "meters"),
  13155. default: true
  13156. },
  13157. {
  13158. name: "Megamacro",
  13159. height: math.unit(1000, "meters")
  13160. },
  13161. ]
  13162. ))
  13163. characterMakers.push(() => makeCharacter(
  13164. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13165. {
  13166. front: {
  13167. height: math.unit(3 + 11/12, "feet"),
  13168. weight: math.unit(50, "lb"),
  13169. name: "Front",
  13170. image: {
  13171. source: "./media/characters/vanrel/front.svg",
  13172. extra: 1104/949,
  13173. bottom: 52/1156
  13174. }
  13175. },
  13176. back: {
  13177. height: math.unit(3 + 11/12, "feet"),
  13178. weight: math.unit(50, "lb"),
  13179. name: "Back",
  13180. image: {
  13181. source: "./media/characters/vanrel/back.svg",
  13182. extra: 1119/976,
  13183. bottom: 37/1156
  13184. }
  13185. },
  13186. tome: {
  13187. height: math.unit(1.35, "feet"),
  13188. weight: math.unit(10, "lb"),
  13189. name: "Vanrel's Tome",
  13190. rename: true,
  13191. image: {
  13192. source: "./media/characters/vanrel/tome.svg"
  13193. }
  13194. },
  13195. beans: {
  13196. height: math.unit(0.89, "feet"),
  13197. name: "Beans",
  13198. image: {
  13199. source: "./media/characters/vanrel/beans.svg"
  13200. }
  13201. },
  13202. },
  13203. [
  13204. {
  13205. name: "Normal",
  13206. height: math.unit(3 + 11/12, "feet"),
  13207. default: true
  13208. },
  13209. ]
  13210. ))
  13211. characterMakers.push(() => makeCharacter(
  13212. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13213. {
  13214. front: {
  13215. height: math.unit(7 + 5 / 12, "feet"),
  13216. name: "Front",
  13217. image: {
  13218. source: "./media/characters/kuiper-vanrel/front.svg",
  13219. extra: 1219/1169,
  13220. bottom: 69/1288
  13221. }
  13222. },
  13223. back: {
  13224. height: math.unit(7 + 5 / 12, "feet"),
  13225. name: "Back",
  13226. image: {
  13227. source: "./media/characters/kuiper-vanrel/back.svg",
  13228. extra: 1236/1193,
  13229. bottom: 27/1263
  13230. }
  13231. },
  13232. foot: {
  13233. height: math.unit(0.55, "meters"),
  13234. name: "Foot",
  13235. image: {
  13236. source: "./media/characters/kuiper-vanrel/foot.svg",
  13237. }
  13238. },
  13239. battle: {
  13240. height: math.unit(6.824, "feet"),
  13241. name: "Battle",
  13242. image: {
  13243. source: "./media/characters/kuiper-vanrel/battle.svg",
  13244. extra: 1466 / 1327,
  13245. bottom: 29 / 1492.5
  13246. }
  13247. },
  13248. meerkui: {
  13249. height: math.unit(18, "inches"),
  13250. name: "Meerkui",
  13251. image: {
  13252. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13253. extra: 1354/1289,
  13254. bottom: 69/1423
  13255. }
  13256. },
  13257. },
  13258. [
  13259. {
  13260. name: "Normal",
  13261. height: math.unit(7 + 5 / 12, "feet"),
  13262. default: true
  13263. },
  13264. ]
  13265. ))
  13266. characterMakers.push(() => makeCharacter(
  13267. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13268. {
  13269. front: {
  13270. height: math.unit(8 + 5 / 12, "feet"),
  13271. name: "Front",
  13272. image: {
  13273. source: "./media/characters/keset-vanrel/front.svg",
  13274. extra: 1231/1148,
  13275. bottom: 82/1313
  13276. }
  13277. },
  13278. back: {
  13279. height: math.unit(8 + 5 / 12, "feet"),
  13280. name: "Back",
  13281. image: {
  13282. source: "./media/characters/keset-vanrel/back.svg",
  13283. extra: 1240/1174,
  13284. bottom: 33/1273
  13285. }
  13286. },
  13287. hand: {
  13288. height: math.unit(0.6, "meters"),
  13289. name: "Hand",
  13290. image: {
  13291. source: "./media/characters/keset-vanrel/hand.svg"
  13292. }
  13293. },
  13294. foot: {
  13295. height: math.unit(0.94978, "meters"),
  13296. name: "Foot",
  13297. image: {
  13298. source: "./media/characters/keset-vanrel/foot.svg"
  13299. }
  13300. },
  13301. battle: {
  13302. height: math.unit(7.408, "feet"),
  13303. name: "Battle",
  13304. image: {
  13305. source: "./media/characters/keset-vanrel/battle.svg",
  13306. extra: 1890 / 1386,
  13307. bottom: 73.28 / 1970
  13308. }
  13309. },
  13310. },
  13311. [
  13312. {
  13313. name: "Normal",
  13314. height: math.unit(8 + 5 / 12, "feet"),
  13315. default: true
  13316. },
  13317. ]
  13318. ))
  13319. characterMakers.push(() => makeCharacter(
  13320. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13321. {
  13322. front: {
  13323. height: math.unit(6, "feet"),
  13324. weight: math.unit(150, "lb"),
  13325. name: "Front",
  13326. image: {
  13327. source: "./media/characters/neos/front.svg",
  13328. extra: 1696 / 992,
  13329. bottom: 0.14
  13330. }
  13331. },
  13332. },
  13333. [
  13334. {
  13335. name: "Normal",
  13336. height: math.unit(54, "cm"),
  13337. default: true
  13338. },
  13339. {
  13340. name: "Macro",
  13341. height: math.unit(100, "m")
  13342. },
  13343. {
  13344. name: "Megamacro",
  13345. height: math.unit(10, "km")
  13346. },
  13347. {
  13348. name: "Megamacro+",
  13349. height: math.unit(100, "km")
  13350. },
  13351. {
  13352. name: "Gigamacro",
  13353. height: math.unit(100, "Mm")
  13354. },
  13355. {
  13356. name: "Teramacro",
  13357. height: math.unit(100, "Gm")
  13358. },
  13359. {
  13360. name: "Examacro",
  13361. height: math.unit(100, "Em")
  13362. },
  13363. {
  13364. name: "Godly",
  13365. height: math.unit(10000, "Ym")
  13366. },
  13367. {
  13368. name: "Beyond Godly",
  13369. height: math.unit(25, "multiverses")
  13370. },
  13371. ]
  13372. ))
  13373. characterMakers.push(() => makeCharacter(
  13374. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13375. {
  13376. feminine: {
  13377. height: math.unit(5, "feet"),
  13378. weight: math.unit(100, "lb"),
  13379. name: "Feminine",
  13380. image: {
  13381. source: "./media/characters/sammy-mouse/feminine.svg",
  13382. extra: 2526 / 2425,
  13383. bottom: 0.123
  13384. }
  13385. },
  13386. masculine: {
  13387. height: math.unit(5, "feet"),
  13388. weight: math.unit(100, "lb"),
  13389. name: "Masculine",
  13390. image: {
  13391. source: "./media/characters/sammy-mouse/masculine.svg",
  13392. extra: 2526 / 2425,
  13393. bottom: 0.123
  13394. }
  13395. },
  13396. },
  13397. [
  13398. {
  13399. name: "Micro",
  13400. height: math.unit(5, "inches")
  13401. },
  13402. {
  13403. name: "Normal",
  13404. height: math.unit(5, "feet"),
  13405. default: true
  13406. },
  13407. {
  13408. name: "Macro",
  13409. height: math.unit(60, "feet")
  13410. },
  13411. ]
  13412. ))
  13413. characterMakers.push(() => makeCharacter(
  13414. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13415. {
  13416. front: {
  13417. height: math.unit(4, "feet"),
  13418. weight: math.unit(50, "lb"),
  13419. name: "Front",
  13420. image: {
  13421. source: "./media/characters/kole/front.svg",
  13422. extra: 1423 / 1303,
  13423. bottom: 0.025
  13424. }
  13425. },
  13426. back: {
  13427. height: math.unit(4, "feet"),
  13428. weight: math.unit(50, "lb"),
  13429. name: "Back",
  13430. image: {
  13431. source: "./media/characters/kole/back.svg",
  13432. extra: 1426 / 1280,
  13433. bottom: 0.02
  13434. }
  13435. },
  13436. },
  13437. [
  13438. {
  13439. name: "Normal",
  13440. height: math.unit(4, "feet"),
  13441. default: true
  13442. },
  13443. ]
  13444. ))
  13445. characterMakers.push(() => makeCharacter(
  13446. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13447. {
  13448. front: {
  13449. height: math.unit(2.5, "feet"),
  13450. weight: math.unit(32, "lb"),
  13451. name: "Front",
  13452. image: {
  13453. source: "./media/characters/rufran/front.svg",
  13454. extra: 1313/885,
  13455. bottom: 94/1407
  13456. }
  13457. },
  13458. side: {
  13459. height: math.unit(2.5, "feet"),
  13460. weight: math.unit(32, "lb"),
  13461. name: "Side",
  13462. image: {
  13463. source: "./media/characters/rufran/side.svg",
  13464. extra: 1109/852,
  13465. bottom: 118/1227
  13466. }
  13467. },
  13468. back: {
  13469. height: math.unit(2.5, "feet"),
  13470. weight: math.unit(32, "lb"),
  13471. name: "Back",
  13472. image: {
  13473. source: "./media/characters/rufran/back.svg",
  13474. extra: 1280/878,
  13475. bottom: 131/1411
  13476. }
  13477. },
  13478. mouth: {
  13479. height: math.unit(1.13, "feet"),
  13480. name: "Mouth",
  13481. image: {
  13482. source: "./media/characters/rufran/mouth.svg"
  13483. }
  13484. },
  13485. foot: {
  13486. height: math.unit(1.33, "feet"),
  13487. name: "Foot",
  13488. image: {
  13489. source: "./media/characters/rufran/foot.svg"
  13490. }
  13491. },
  13492. koboldFront: {
  13493. height: math.unit(2 + 6 / 12, "feet"),
  13494. weight: math.unit(20, "lb"),
  13495. name: "Front (Kobold)",
  13496. image: {
  13497. source: "./media/characters/rufran/kobold-front.svg",
  13498. extra: 2041 / 1839,
  13499. bottom: 0.055
  13500. }
  13501. },
  13502. koboldBack: {
  13503. height: math.unit(2 + 6 / 12, "feet"),
  13504. weight: math.unit(20, "lb"),
  13505. name: "Back (Kobold)",
  13506. image: {
  13507. source: "./media/characters/rufran/kobold-back.svg",
  13508. extra: 2054 / 1839,
  13509. bottom: 0.01
  13510. }
  13511. },
  13512. koboldHand: {
  13513. height: math.unit(0.2166, "meters"),
  13514. name: "Hand (Kobold)",
  13515. image: {
  13516. source: "./media/characters/rufran/kobold-hand.svg"
  13517. }
  13518. },
  13519. koboldFoot: {
  13520. height: math.unit(0.185, "meters"),
  13521. name: "Foot (Kobold)",
  13522. image: {
  13523. source: "./media/characters/rufran/kobold-foot.svg"
  13524. }
  13525. },
  13526. },
  13527. [
  13528. {
  13529. name: "Micro",
  13530. height: math.unit(1, "inch")
  13531. },
  13532. {
  13533. name: "Normal",
  13534. height: math.unit(2 + 6 / 12, "feet"),
  13535. default: true
  13536. },
  13537. {
  13538. name: "Big",
  13539. height: math.unit(60, "feet")
  13540. },
  13541. {
  13542. name: "Macro",
  13543. height: math.unit(325, "feet")
  13544. },
  13545. ]
  13546. ))
  13547. characterMakers.push(() => makeCharacter(
  13548. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13549. {
  13550. front: {
  13551. height: math.unit(0.3, "meters"),
  13552. weight: math.unit(3.5, "kg"),
  13553. name: "Front",
  13554. image: {
  13555. source: "./media/characters/chip/front.svg",
  13556. extra: 748 / 674
  13557. }
  13558. },
  13559. },
  13560. [
  13561. {
  13562. name: "Micro",
  13563. height: math.unit(1, "inch"),
  13564. default: true
  13565. },
  13566. ]
  13567. ))
  13568. characterMakers.push(() => makeCharacter(
  13569. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13570. {
  13571. side: {
  13572. height: math.unit(2.3, "meters"),
  13573. weight: math.unit(3500, "lb"),
  13574. name: "Side",
  13575. image: {
  13576. source: "./media/characters/torvid/side.svg",
  13577. extra: 1972 / 722,
  13578. bottom: 0.035
  13579. }
  13580. },
  13581. },
  13582. [
  13583. {
  13584. name: "Normal",
  13585. height: math.unit(2.3, "meters"),
  13586. default: true
  13587. },
  13588. ]
  13589. ))
  13590. characterMakers.push(() => makeCharacter(
  13591. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13592. {
  13593. front: {
  13594. height: math.unit(2, "meters"),
  13595. weight: math.unit(150.5, "kg"),
  13596. name: "Front",
  13597. image: {
  13598. source: "./media/characters/susan/front.svg",
  13599. extra: 693 / 635,
  13600. bottom: 0.05
  13601. }
  13602. },
  13603. },
  13604. [
  13605. {
  13606. name: "Megamacro",
  13607. height: math.unit(505, "miles"),
  13608. default: true
  13609. },
  13610. ]
  13611. ))
  13612. characterMakers.push(() => makeCharacter(
  13613. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13614. {
  13615. front: {
  13616. height: math.unit(6, "feet"),
  13617. weight: math.unit(150, "lb"),
  13618. name: "Front",
  13619. image: {
  13620. source: "./media/characters/raindrops/front.svg",
  13621. extra: 2655 / 2461,
  13622. bottom: 49 / 2705
  13623. }
  13624. },
  13625. back: {
  13626. height: math.unit(6, "feet"),
  13627. weight: math.unit(150, "lb"),
  13628. name: "Back",
  13629. image: {
  13630. source: "./media/characters/raindrops/back.svg",
  13631. extra: 2574 / 2400,
  13632. bottom: 65 / 2634
  13633. }
  13634. },
  13635. },
  13636. [
  13637. {
  13638. name: "Micro",
  13639. height: math.unit(6, "inches")
  13640. },
  13641. {
  13642. name: "Normal",
  13643. height: math.unit(6 + 2 / 12, "feet")
  13644. },
  13645. {
  13646. name: "Macro",
  13647. height: math.unit(131, "feet"),
  13648. default: true
  13649. },
  13650. {
  13651. name: "Megamacro",
  13652. height: math.unit(15, "miles")
  13653. },
  13654. {
  13655. name: "Gigamacro",
  13656. height: math.unit(4000, "miles")
  13657. },
  13658. {
  13659. name: "Teramacro",
  13660. height: math.unit(315000, "miles")
  13661. },
  13662. ]
  13663. ))
  13664. characterMakers.push(() => makeCharacter(
  13665. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13666. {
  13667. front: {
  13668. height: math.unit(2.794, "meters"),
  13669. weight: math.unit(325, "kg"),
  13670. name: "Front",
  13671. image: {
  13672. source: "./media/characters/tezwa/front.svg",
  13673. extra: 2083 / 1906,
  13674. bottom: 0.031
  13675. }
  13676. },
  13677. foot: {
  13678. height: math.unit(0.687, "meters"),
  13679. name: "Foot",
  13680. image: {
  13681. source: "./media/characters/tezwa/foot.svg"
  13682. }
  13683. },
  13684. },
  13685. [
  13686. {
  13687. name: "Normal",
  13688. height: math.unit(9 + 2 / 12, "feet"),
  13689. default: true
  13690. },
  13691. ]
  13692. ))
  13693. characterMakers.push(() => makeCharacter(
  13694. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13695. {
  13696. front: {
  13697. height: math.unit(58, "feet"),
  13698. weight: math.unit(89000, "lb"),
  13699. name: "Front",
  13700. image: {
  13701. source: "./media/characters/typhus/front.svg",
  13702. extra: 816 / 800,
  13703. bottom: 0.065
  13704. }
  13705. },
  13706. },
  13707. [
  13708. {
  13709. name: "Macro",
  13710. height: math.unit(58, "feet"),
  13711. default: true
  13712. },
  13713. ]
  13714. ))
  13715. characterMakers.push(() => makeCharacter(
  13716. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13717. {
  13718. front: {
  13719. height: math.unit(12, "feet"),
  13720. weight: math.unit(6, "tonnes"),
  13721. name: "Front",
  13722. image: {
  13723. source: "./media/characters/lyra-von-wulf/front.svg",
  13724. extra: 1,
  13725. bottom: 0.10
  13726. }
  13727. },
  13728. frontMecha: {
  13729. height: math.unit(12, "feet"),
  13730. weight: math.unit(12, "tonnes"),
  13731. name: "Front (Mecha)",
  13732. image: {
  13733. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13734. extra: 1,
  13735. bottom: 0.042
  13736. }
  13737. },
  13738. maw: {
  13739. height: math.unit(2.2, "feet"),
  13740. name: "Maw",
  13741. image: {
  13742. source: "./media/characters/lyra-von-wulf/maw.svg"
  13743. }
  13744. },
  13745. },
  13746. [
  13747. {
  13748. name: "Normal",
  13749. height: math.unit(12, "feet"),
  13750. default: true
  13751. },
  13752. {
  13753. name: "Classic",
  13754. height: math.unit(50, "feet")
  13755. },
  13756. {
  13757. name: "Macro",
  13758. height: math.unit(500, "feet")
  13759. },
  13760. {
  13761. name: "Megamacro",
  13762. height: math.unit(1, "mile")
  13763. },
  13764. {
  13765. name: "Gigamacro",
  13766. height: math.unit(400, "miles")
  13767. },
  13768. {
  13769. name: "Teramacro",
  13770. height: math.unit(22000, "miles")
  13771. },
  13772. {
  13773. name: "Solarmacro",
  13774. height: math.unit(8600000, "miles")
  13775. },
  13776. {
  13777. name: "Galactic",
  13778. height: math.unit(1057000, "lightyears")
  13779. },
  13780. ]
  13781. ))
  13782. characterMakers.push(() => makeCharacter(
  13783. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13784. {
  13785. front: {
  13786. height: math.unit(6 + 10 / 12, "feet"),
  13787. weight: math.unit(150, "lb"),
  13788. name: "Front",
  13789. image: {
  13790. source: "./media/characters/dixon/front.svg",
  13791. extra: 3361 / 3209,
  13792. bottom: 0.01
  13793. }
  13794. },
  13795. },
  13796. [
  13797. {
  13798. name: "Normal",
  13799. height: math.unit(6 + 10 / 12, "feet"),
  13800. default: true
  13801. },
  13802. {
  13803. name: "Big",
  13804. height: math.unit(12, "meters")
  13805. },
  13806. {
  13807. name: "Macro",
  13808. height: math.unit(500, "meters")
  13809. },
  13810. {
  13811. name: "Megamacro",
  13812. height: math.unit(2, "km")
  13813. },
  13814. ]
  13815. ))
  13816. characterMakers.push(() => makeCharacter(
  13817. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13818. {
  13819. front: {
  13820. height: math.unit(185, "cm"),
  13821. weight: math.unit(68, "kg"),
  13822. name: "Front",
  13823. image: {
  13824. source: "./media/characters/kauko/front.svg",
  13825. extra: 1455 / 1421,
  13826. bottom: 0.03
  13827. }
  13828. },
  13829. back: {
  13830. height: math.unit(185, "cm"),
  13831. weight: math.unit(68, "kg"),
  13832. name: "Back",
  13833. image: {
  13834. source: "./media/characters/kauko/back.svg",
  13835. extra: 1455 / 1421,
  13836. bottom: 0.004
  13837. }
  13838. },
  13839. },
  13840. [
  13841. {
  13842. name: "Normal",
  13843. height: math.unit(185, "cm"),
  13844. default: true
  13845. },
  13846. ]
  13847. ))
  13848. characterMakers.push(() => makeCharacter(
  13849. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13850. {
  13851. frontSfw: {
  13852. height: math.unit(5, "meters"),
  13853. weight: math.unit(4250, "lb"),
  13854. name: "Front",
  13855. image: {
  13856. source: "./media/characters/varg/front-sfw.svg",
  13857. extra: 1103/1010,
  13858. bottom: 50/1153
  13859. },
  13860. form: "anthro",
  13861. default: true
  13862. },
  13863. backSfw: {
  13864. height: math.unit(5, "meters"),
  13865. weight: math.unit(4250, "lb"),
  13866. name: "Back",
  13867. image: {
  13868. source: "./media/characters/varg/back-sfw.svg",
  13869. extra: 1038/1022,
  13870. bottom: 36/1074
  13871. },
  13872. form: "anthro"
  13873. },
  13874. frontNsfw: {
  13875. height: math.unit(5, "meters"),
  13876. weight: math.unit(4250, "lb"),
  13877. name: "Front (NSFW)",
  13878. image: {
  13879. source: "./media/characters/varg/front-nsfw.svg",
  13880. extra: 1103/1010,
  13881. bottom: 50/1153
  13882. },
  13883. form: "anthro"
  13884. },
  13885. sheath: {
  13886. height: math.unit(3.8, "feet"),
  13887. weight: math.unit(90, "kilograms"),
  13888. name: "Sheath",
  13889. image: {
  13890. source: "./media/characters/varg/sheath.svg"
  13891. },
  13892. form: "anthro"
  13893. },
  13894. dick: {
  13895. height: math.unit(4.6, "feet"),
  13896. weight: math.unit(451, "kilograms"),
  13897. name: "Dick",
  13898. image: {
  13899. source: "./media/characters/varg/dick.svg"
  13900. },
  13901. form: "anthro"
  13902. },
  13903. feralSfw: {
  13904. height: math.unit(5, "meters"),
  13905. weight: math.unit(100000, "lb"),
  13906. name: "Side",
  13907. image: {
  13908. source: "./media/characters/varg/feral-sfw.svg",
  13909. extra: 1065/511,
  13910. bottom: 211/1276
  13911. },
  13912. form: "feral",
  13913. default: true
  13914. },
  13915. feralNsfw: {
  13916. height: math.unit(5, "meters"),
  13917. weight: math.unit(100000, "lb"),
  13918. name: "Side (NSFW)",
  13919. image: {
  13920. source: "./media/characters/varg/feral-nsfw.svg",
  13921. extra: 1065/511,
  13922. bottom: 211/1276
  13923. },
  13924. form: "feral",
  13925. },
  13926. feralSheath: {
  13927. height: math.unit(9.8, "feet"),
  13928. weight: math.unit(2000, "kilograms"),
  13929. name: "Sheath",
  13930. image: {
  13931. source: "./media/characters/varg/sheath.svg"
  13932. },
  13933. form: "feral"
  13934. },
  13935. feralDick: {
  13936. height: math.unit(13.11, "feet"),
  13937. weight: math.unit(10440, "kilograms"),
  13938. name: "Dick",
  13939. image: {
  13940. source: "./media/characters/varg/dick.svg"
  13941. },
  13942. form: "feral"
  13943. },
  13944. },
  13945. [
  13946. {
  13947. name: "Normal",
  13948. height: math.unit(5, "meters"),
  13949. form: "anthro"
  13950. },
  13951. {
  13952. name: "Macro",
  13953. height: math.unit(200, "meters"),
  13954. form: "anthro"
  13955. },
  13956. {
  13957. name: "Megamacro",
  13958. height: math.unit(20, "kilometers"),
  13959. form: "anthro"
  13960. },
  13961. {
  13962. name: "True Size",
  13963. height: math.unit(211, "km"),
  13964. form: "anthro",
  13965. default: true
  13966. },
  13967. {
  13968. name: "Gigamacro",
  13969. height: math.unit(1000, "km"),
  13970. form: "anthro"
  13971. },
  13972. {
  13973. name: "Gigamacro+",
  13974. height: math.unit(8000, "km"),
  13975. form: "anthro"
  13976. },
  13977. {
  13978. name: "Teramacro",
  13979. height: math.unit(1000000, "km"),
  13980. form: "anthro"
  13981. },
  13982. {
  13983. name: "Normal",
  13984. height: math.unit(5, "meters"),
  13985. form: "feral"
  13986. },
  13987. {
  13988. name: "Macro",
  13989. height: math.unit(200, "meters"),
  13990. form: "feral"
  13991. },
  13992. {
  13993. name: "Megamacro",
  13994. height: math.unit(20, "kilometers"),
  13995. form: "feral"
  13996. },
  13997. {
  13998. name: "True Size",
  13999. height: math.unit(211, "km"),
  14000. form: "feral",
  14001. default: true
  14002. },
  14003. {
  14004. name: "Gigamacro",
  14005. height: math.unit(1000, "km"),
  14006. form: "feral"
  14007. },
  14008. {
  14009. name: "Gigamacro+",
  14010. height: math.unit(8000, "km"),
  14011. form: "feral"
  14012. },
  14013. {
  14014. name: "Teramacro",
  14015. height: math.unit(1000000, "km"),
  14016. form: "feral"
  14017. },
  14018. ],
  14019. {
  14020. "anthro": {
  14021. name: "Anthro",
  14022. default: true
  14023. },
  14024. "feral": {
  14025. name: "Feral",
  14026. },
  14027. }
  14028. ))
  14029. characterMakers.push(() => makeCharacter(
  14030. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14031. {
  14032. front: {
  14033. height: math.unit(7 + 7 / 12, "feet"),
  14034. weight: math.unit(267, "lb"),
  14035. name: "Front",
  14036. image: {
  14037. source: "./media/characters/dayza/front.svg",
  14038. extra: 1262 / 1200,
  14039. bottom: 0.035
  14040. }
  14041. },
  14042. side: {
  14043. height: math.unit(7 + 7 / 12, "feet"),
  14044. weight: math.unit(267, "lb"),
  14045. name: "Side",
  14046. image: {
  14047. source: "./media/characters/dayza/side.svg",
  14048. extra: 1295 / 1245,
  14049. bottom: 0.05
  14050. }
  14051. },
  14052. back: {
  14053. height: math.unit(7 + 7 / 12, "feet"),
  14054. weight: math.unit(267, "lb"),
  14055. name: "Back",
  14056. image: {
  14057. source: "./media/characters/dayza/back.svg",
  14058. extra: 1241 / 1170
  14059. }
  14060. },
  14061. },
  14062. [
  14063. {
  14064. name: "Normal",
  14065. height: math.unit(7 + 7 / 12, "feet"),
  14066. default: true
  14067. },
  14068. {
  14069. name: "Macro",
  14070. height: math.unit(155, "feet")
  14071. },
  14072. ]
  14073. ))
  14074. characterMakers.push(() => makeCharacter(
  14075. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14076. {
  14077. front: {
  14078. height: math.unit(6 + 5 / 12, "feet"),
  14079. weight: math.unit(160, "lb"),
  14080. name: "Front",
  14081. image: {
  14082. source: "./media/characters/xanthos/front.svg",
  14083. extra: 1,
  14084. bottom: 0.04
  14085. }
  14086. },
  14087. back: {
  14088. height: math.unit(6 + 5 / 12, "feet"),
  14089. weight: math.unit(160, "lb"),
  14090. name: "Back",
  14091. image: {
  14092. source: "./media/characters/xanthos/back.svg",
  14093. extra: 1,
  14094. bottom: 0.03
  14095. }
  14096. },
  14097. hand: {
  14098. height: math.unit(0.928, "feet"),
  14099. name: "Hand",
  14100. image: {
  14101. source: "./media/characters/xanthos/hand.svg"
  14102. }
  14103. },
  14104. foot: {
  14105. height: math.unit(1.286, "feet"),
  14106. name: "Foot",
  14107. image: {
  14108. source: "./media/characters/xanthos/foot.svg"
  14109. }
  14110. },
  14111. },
  14112. [
  14113. {
  14114. name: "Normal",
  14115. height: math.unit(6 + 5 / 12, "feet"),
  14116. default: true
  14117. },
  14118. {
  14119. name: "Normal+",
  14120. height: math.unit(6, "meters")
  14121. },
  14122. {
  14123. name: "Macro",
  14124. height: math.unit(40, "feet")
  14125. },
  14126. {
  14127. name: "Macro+",
  14128. height: math.unit(200, "meters")
  14129. },
  14130. {
  14131. name: "Megamacro",
  14132. height: math.unit(20, "km")
  14133. },
  14134. {
  14135. name: "Megamacro+",
  14136. height: math.unit(100, "km")
  14137. },
  14138. {
  14139. name: "Gigamacro",
  14140. height: math.unit(200, "megameters")
  14141. },
  14142. {
  14143. name: "Gigamacro+",
  14144. height: math.unit(1.5, "gigameters")
  14145. },
  14146. ]
  14147. ))
  14148. characterMakers.push(() => makeCharacter(
  14149. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14150. {
  14151. front: {
  14152. height: math.unit(6 + 3 / 12, "feet"),
  14153. weight: math.unit(215, "lb"),
  14154. name: "Front",
  14155. image: {
  14156. source: "./media/characters/grynn/front.svg",
  14157. extra: 4627 / 4209,
  14158. bottom: 0.047
  14159. }
  14160. },
  14161. },
  14162. [
  14163. {
  14164. name: "Micro",
  14165. height: math.unit(6, "inches")
  14166. },
  14167. {
  14168. name: "Normal",
  14169. height: math.unit(6 + 3 / 12, "feet"),
  14170. default: true
  14171. },
  14172. {
  14173. name: "Big",
  14174. height: math.unit(104, "feet")
  14175. },
  14176. {
  14177. name: "Macro",
  14178. height: math.unit(944, "feet")
  14179. },
  14180. {
  14181. name: "Macro+",
  14182. height: math.unit(9480, "feet")
  14183. },
  14184. {
  14185. name: "Megamacro",
  14186. height: math.unit(78752, "feet")
  14187. },
  14188. {
  14189. name: "Megamacro+",
  14190. height: math.unit(630128, "feet")
  14191. },
  14192. {
  14193. name: "Megamacro++",
  14194. height: math.unit(3150695, "feet")
  14195. },
  14196. ]
  14197. ))
  14198. characterMakers.push(() => makeCharacter(
  14199. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14200. {
  14201. front: {
  14202. height: math.unit(7 + 5 / 12, "feet"),
  14203. weight: math.unit(450, "lb"),
  14204. name: "Front",
  14205. image: {
  14206. source: "./media/characters/mocha-aura/front.svg",
  14207. extra: 1907 / 1817,
  14208. bottom: 0.04
  14209. }
  14210. },
  14211. back: {
  14212. height: math.unit(7 + 5 / 12, "feet"),
  14213. weight: math.unit(450, "lb"),
  14214. name: "Back",
  14215. image: {
  14216. source: "./media/characters/mocha-aura/back.svg",
  14217. extra: 1900 / 1825,
  14218. bottom: 0.045
  14219. }
  14220. },
  14221. },
  14222. [
  14223. {
  14224. name: "Nano",
  14225. height: math.unit(1, "nm")
  14226. },
  14227. {
  14228. name: "Megamicro",
  14229. height: math.unit(1, "mm")
  14230. },
  14231. {
  14232. name: "Micro",
  14233. height: math.unit(3, "inches")
  14234. },
  14235. {
  14236. name: "Normal",
  14237. height: math.unit(7 + 5 / 12, "feet"),
  14238. default: true
  14239. },
  14240. {
  14241. name: "Macro",
  14242. height: math.unit(30, "feet")
  14243. },
  14244. {
  14245. name: "Megamacro",
  14246. height: math.unit(3500, "feet")
  14247. },
  14248. {
  14249. name: "Teramacro",
  14250. height: math.unit(500000, "miles")
  14251. },
  14252. {
  14253. name: "Petamacro",
  14254. height: math.unit(50000000000000000, "parsecs")
  14255. },
  14256. ]
  14257. ))
  14258. characterMakers.push(() => makeCharacter(
  14259. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14260. {
  14261. front: {
  14262. height: math.unit(6, "feet"),
  14263. weight: math.unit(150, "lb"),
  14264. name: "Front",
  14265. image: {
  14266. source: "./media/characters/ilisha-devya/front.svg",
  14267. extra: 1053/1049,
  14268. bottom: 270/1323
  14269. }
  14270. },
  14271. back: {
  14272. height: math.unit(6, "feet"),
  14273. weight: math.unit(150, "lb"),
  14274. name: "Back",
  14275. image: {
  14276. source: "./media/characters/ilisha-devya/back.svg",
  14277. extra: 1131/1128,
  14278. bottom: 39/1170
  14279. }
  14280. },
  14281. },
  14282. [
  14283. {
  14284. name: "Macro",
  14285. height: math.unit(500, "feet"),
  14286. default: true
  14287. },
  14288. {
  14289. name: "Megamacro",
  14290. height: math.unit(10, "miles")
  14291. },
  14292. {
  14293. name: "Gigamacro",
  14294. height: math.unit(100000, "miles")
  14295. },
  14296. {
  14297. name: "Examacro",
  14298. height: math.unit(1e9, "lightyears")
  14299. },
  14300. {
  14301. name: "Omniversal",
  14302. height: math.unit(1e33, "lightyears")
  14303. },
  14304. {
  14305. name: "Beyond Infinite",
  14306. height: math.unit(1e100, "lightyears")
  14307. },
  14308. ]
  14309. ))
  14310. characterMakers.push(() => makeCharacter(
  14311. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14312. {
  14313. Side: {
  14314. height: math.unit(6, "feet"),
  14315. weight: math.unit(150, "lb"),
  14316. name: "Side",
  14317. image: {
  14318. source: "./media/characters/mira/side.svg",
  14319. extra: 900 / 799,
  14320. bottom: 0.02
  14321. }
  14322. },
  14323. },
  14324. [
  14325. {
  14326. name: "Human Size",
  14327. height: math.unit(6, "feet")
  14328. },
  14329. {
  14330. name: "Macro",
  14331. height: math.unit(100, "feet"),
  14332. default: true
  14333. },
  14334. {
  14335. name: "Megamacro",
  14336. height: math.unit(10, "miles")
  14337. },
  14338. {
  14339. name: "Gigamacro",
  14340. height: math.unit(25000, "miles")
  14341. },
  14342. {
  14343. name: "Teramacro",
  14344. height: math.unit(300, "AU")
  14345. },
  14346. {
  14347. name: "Full Size",
  14348. height: math.unit(4.5e10, "lightyears")
  14349. },
  14350. ]
  14351. ))
  14352. characterMakers.push(() => makeCharacter(
  14353. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14354. {
  14355. front: {
  14356. height: math.unit(6, "feet"),
  14357. weight: math.unit(150, "lb"),
  14358. name: "Front",
  14359. image: {
  14360. source: "./media/characters/holly/front.svg",
  14361. extra: 639 / 606
  14362. }
  14363. },
  14364. back: {
  14365. height: math.unit(6, "feet"),
  14366. weight: math.unit(150, "lb"),
  14367. name: "Back",
  14368. image: {
  14369. source: "./media/characters/holly/back.svg",
  14370. extra: 623 / 598
  14371. }
  14372. },
  14373. frontWorking: {
  14374. height: math.unit(6, "feet"),
  14375. weight: math.unit(150, "lb"),
  14376. name: "Front (Working)",
  14377. image: {
  14378. source: "./media/characters/holly/front-working.svg",
  14379. extra: 607 / 577,
  14380. bottom: 0.048
  14381. }
  14382. },
  14383. },
  14384. [
  14385. {
  14386. name: "Normal",
  14387. height: math.unit(12 + 3 / 12, "feet"),
  14388. default: true
  14389. },
  14390. ]
  14391. ))
  14392. characterMakers.push(() => makeCharacter(
  14393. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14394. {
  14395. front: {
  14396. height: math.unit(6, "feet"),
  14397. weight: math.unit(150, "lb"),
  14398. name: "Front",
  14399. image: {
  14400. source: "./media/characters/porter/front.svg",
  14401. extra: 1,
  14402. bottom: 0.01
  14403. }
  14404. },
  14405. frontRobes: {
  14406. height: math.unit(6, "feet"),
  14407. weight: math.unit(150, "lb"),
  14408. name: "Front (Robes)",
  14409. image: {
  14410. source: "./media/characters/porter/front-robes.svg",
  14411. extra: 1.01,
  14412. bottom: 0.01
  14413. }
  14414. },
  14415. },
  14416. [
  14417. {
  14418. name: "Normal",
  14419. height: math.unit(11 + 9 / 12, "feet"),
  14420. default: true
  14421. },
  14422. ]
  14423. ))
  14424. characterMakers.push(() => makeCharacter(
  14425. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14426. {
  14427. legendary: {
  14428. height: math.unit(6, "feet"),
  14429. weight: math.unit(150, "lb"),
  14430. name: "Legendary",
  14431. image: {
  14432. source: "./media/characters/lucy/legendary.svg",
  14433. extra: 1355 / 1100,
  14434. bottom: 0.045
  14435. }
  14436. },
  14437. },
  14438. [
  14439. {
  14440. name: "Legendary",
  14441. height: math.unit(86882 * 2, "miles"),
  14442. default: true
  14443. },
  14444. ]
  14445. ))
  14446. characterMakers.push(() => makeCharacter(
  14447. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14448. {
  14449. front: {
  14450. height: math.unit(6, "feet"),
  14451. weight: math.unit(150, "lb"),
  14452. name: "Front",
  14453. image: {
  14454. source: "./media/characters/drusilla/front.svg",
  14455. extra: 678 / 635,
  14456. bottom: 0.03
  14457. }
  14458. },
  14459. back: {
  14460. height: math.unit(6, "feet"),
  14461. weight: math.unit(150, "lb"),
  14462. name: "Back",
  14463. image: {
  14464. source: "./media/characters/drusilla/back.svg",
  14465. extra: 678 / 635,
  14466. bottom: 0.005
  14467. }
  14468. },
  14469. },
  14470. [
  14471. {
  14472. name: "Macro",
  14473. height: math.unit(100, "feet")
  14474. },
  14475. {
  14476. name: "Canon Height",
  14477. height: math.unit(2000, "feet"),
  14478. default: true
  14479. },
  14480. ]
  14481. ))
  14482. characterMakers.push(() => makeCharacter(
  14483. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14484. {
  14485. front: {
  14486. height: math.unit(6, "feet"),
  14487. weight: math.unit(180, "lb"),
  14488. name: "Front",
  14489. image: {
  14490. source: "./media/characters/renard-thatch/front.svg",
  14491. extra: 2411 / 2275,
  14492. bottom: 0.01
  14493. }
  14494. },
  14495. frontPosing: {
  14496. height: math.unit(6, "feet"),
  14497. weight: math.unit(180, "lb"),
  14498. name: "Front (Posing)",
  14499. image: {
  14500. source: "./media/characters/renard-thatch/front-posing.svg",
  14501. extra: 2381 / 2261,
  14502. bottom: 0.01
  14503. }
  14504. },
  14505. back: {
  14506. height: math.unit(6, "feet"),
  14507. weight: math.unit(180, "lb"),
  14508. name: "Back",
  14509. image: {
  14510. source: "./media/characters/renard-thatch/back.svg",
  14511. extra: 2428 / 2288
  14512. }
  14513. },
  14514. },
  14515. [
  14516. {
  14517. name: "Micro",
  14518. height: math.unit(3, "inches")
  14519. },
  14520. {
  14521. name: "Default",
  14522. height: math.unit(6, "feet"),
  14523. default: true
  14524. },
  14525. {
  14526. name: "Macro",
  14527. height: math.unit(75, "feet")
  14528. },
  14529. ]
  14530. ))
  14531. characterMakers.push(() => makeCharacter(
  14532. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14533. {
  14534. front: {
  14535. height: math.unit(1450, "feet"),
  14536. weight: math.unit(1.21e6, "tons"),
  14537. name: "Front",
  14538. image: {
  14539. source: "./media/characters/sekvra/front.svg",
  14540. extra: 1193/1190,
  14541. bottom: 78/1271
  14542. }
  14543. },
  14544. side: {
  14545. height: math.unit(1450, "feet"),
  14546. weight: math.unit(1.21e6, "tons"),
  14547. name: "Side",
  14548. image: {
  14549. source: "./media/characters/sekvra/side.svg",
  14550. extra: 1193/1190,
  14551. bottom: 52/1245
  14552. }
  14553. },
  14554. back: {
  14555. height: math.unit(1450, "feet"),
  14556. weight: math.unit(1.21e6, "tons"),
  14557. name: "Back",
  14558. image: {
  14559. source: "./media/characters/sekvra/back.svg",
  14560. extra: 1219/1216,
  14561. bottom: 21/1240
  14562. }
  14563. },
  14564. frontClothed: {
  14565. height: math.unit(1450, "feet"),
  14566. weight: math.unit(1.21e6, "tons"),
  14567. name: "Front (Clothed)",
  14568. image: {
  14569. source: "./media/characters/sekvra/front-clothed.svg",
  14570. extra: 1192/1189,
  14571. bottom: 79/1271
  14572. }
  14573. },
  14574. },
  14575. [
  14576. {
  14577. name: "Macro",
  14578. height: math.unit(1450, "feet"),
  14579. default: true
  14580. },
  14581. {
  14582. name: "Megamacro",
  14583. height: math.unit(15000, "feet")
  14584. },
  14585. ]
  14586. ))
  14587. characterMakers.push(() => makeCharacter(
  14588. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14589. {
  14590. front: {
  14591. height: math.unit(6, "feet"),
  14592. weight: math.unit(150, "lb"),
  14593. name: "Front",
  14594. image: {
  14595. source: "./media/characters/carmine/front.svg",
  14596. extra: 1,
  14597. bottom: 0.035
  14598. }
  14599. },
  14600. frontArmor: {
  14601. height: math.unit(6, "feet"),
  14602. weight: math.unit(150, "lb"),
  14603. name: "Front (Armor)",
  14604. image: {
  14605. source: "./media/characters/carmine/front-armor.svg",
  14606. extra: 1,
  14607. bottom: 0.035
  14608. }
  14609. },
  14610. },
  14611. [
  14612. {
  14613. name: "Large",
  14614. height: math.unit(1, "mile")
  14615. },
  14616. {
  14617. name: "Huge",
  14618. height: math.unit(40, "miles"),
  14619. default: true
  14620. },
  14621. {
  14622. name: "Colossal",
  14623. height: math.unit(2500, "miles")
  14624. },
  14625. ]
  14626. ))
  14627. characterMakers.push(() => makeCharacter(
  14628. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14629. {
  14630. front: {
  14631. height: math.unit(6, "feet"),
  14632. weight: math.unit(150, "lb"),
  14633. name: "Front",
  14634. image: {
  14635. source: "./media/characters/elyssia/front.svg",
  14636. extra: 2201 / 2035,
  14637. bottom: 0.05
  14638. }
  14639. },
  14640. frontClothed: {
  14641. height: math.unit(6, "feet"),
  14642. weight: math.unit(150, "lb"),
  14643. name: "Front (Clothed)",
  14644. image: {
  14645. source: "./media/characters/elyssia/front-clothed.svg",
  14646. extra: 2201 / 2035,
  14647. bottom: 0.05
  14648. }
  14649. },
  14650. back: {
  14651. height: math.unit(6, "feet"),
  14652. weight: math.unit(150, "lb"),
  14653. name: "Back",
  14654. image: {
  14655. source: "./media/characters/elyssia/back.svg",
  14656. extra: 2201 / 2035,
  14657. bottom: 0.013
  14658. }
  14659. },
  14660. },
  14661. [
  14662. {
  14663. name: "Smaller",
  14664. height: math.unit(150, "feet")
  14665. },
  14666. {
  14667. name: "Standard",
  14668. height: math.unit(1400, "feet"),
  14669. default: true
  14670. },
  14671. {
  14672. name: "Distracted",
  14673. height: math.unit(15000, "feet")
  14674. },
  14675. ]
  14676. ))
  14677. characterMakers.push(() => makeCharacter(
  14678. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14679. {
  14680. front: {
  14681. height: math.unit(7 + 4/12, "feet"),
  14682. weight: math.unit(690, "lb"),
  14683. name: "Front",
  14684. image: {
  14685. source: "./media/characters/geno-maxwell/front.svg",
  14686. extra: 984/856,
  14687. bottom: 87/1071
  14688. }
  14689. },
  14690. back: {
  14691. height: math.unit(7 + 4/12, "feet"),
  14692. weight: math.unit(690, "lb"),
  14693. name: "Back",
  14694. image: {
  14695. source: "./media/characters/geno-maxwell/back.svg",
  14696. extra: 981/854,
  14697. bottom: 57/1038
  14698. }
  14699. },
  14700. frontCostume: {
  14701. height: math.unit(7 + 4/12, "feet"),
  14702. weight: math.unit(690, "lb"),
  14703. name: "Front (Costume)",
  14704. image: {
  14705. source: "./media/characters/geno-maxwell/front-costume.svg",
  14706. extra: 984/856,
  14707. bottom: 87/1071
  14708. }
  14709. },
  14710. backcostume: {
  14711. height: math.unit(7 + 4/12, "feet"),
  14712. weight: math.unit(690, "lb"),
  14713. name: "Back (Costume)",
  14714. image: {
  14715. source: "./media/characters/geno-maxwell/back-costume.svg",
  14716. extra: 981/854,
  14717. bottom: 57/1038
  14718. }
  14719. },
  14720. },
  14721. [
  14722. {
  14723. name: "Micro",
  14724. height: math.unit(3, "inches")
  14725. },
  14726. {
  14727. name: "Normal",
  14728. height: math.unit(7 + 4 / 12, "feet"),
  14729. default: true
  14730. },
  14731. {
  14732. name: "Macro",
  14733. height: math.unit(220, "feet")
  14734. },
  14735. {
  14736. name: "Megamacro",
  14737. height: math.unit(11, "miles")
  14738. },
  14739. ]
  14740. ))
  14741. characterMakers.push(() => makeCharacter(
  14742. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14743. {
  14744. front: {
  14745. height: math.unit(7 + 4/12, "feet"),
  14746. weight: math.unit(750, "lb"),
  14747. name: "Front",
  14748. image: {
  14749. source: "./media/characters/regena-maxwell/front.svg",
  14750. extra: 984/856,
  14751. bottom: 87/1071
  14752. }
  14753. },
  14754. back: {
  14755. height: math.unit(7 + 4/12, "feet"),
  14756. weight: math.unit(750, "lb"),
  14757. name: "Back",
  14758. image: {
  14759. source: "./media/characters/regena-maxwell/back.svg",
  14760. extra: 981/854,
  14761. bottom: 57/1038
  14762. }
  14763. },
  14764. frontCostume: {
  14765. height: math.unit(7 + 4/12, "feet"),
  14766. weight: math.unit(750, "lb"),
  14767. name: "Front (Costume)",
  14768. image: {
  14769. source: "./media/characters/regena-maxwell/front-costume.svg",
  14770. extra: 984/856,
  14771. bottom: 87/1071
  14772. }
  14773. },
  14774. backcostume: {
  14775. height: math.unit(7 + 4/12, "feet"),
  14776. weight: math.unit(750, "lb"),
  14777. name: "Back (Costume)",
  14778. image: {
  14779. source: "./media/characters/regena-maxwell/back-costume.svg",
  14780. extra: 981/854,
  14781. bottom: 57/1038
  14782. }
  14783. },
  14784. },
  14785. [
  14786. {
  14787. name: "Normal",
  14788. height: math.unit(7 + 4 / 12, "feet"),
  14789. default: true
  14790. },
  14791. {
  14792. name: "Macro",
  14793. height: math.unit(220, "feet")
  14794. },
  14795. {
  14796. name: "Megamacro",
  14797. height: math.unit(11, "miles")
  14798. },
  14799. ]
  14800. ))
  14801. characterMakers.push(() => makeCharacter(
  14802. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14803. {
  14804. front: {
  14805. height: math.unit(6, "feet"),
  14806. weight: math.unit(150, "lb"),
  14807. name: "Front",
  14808. image: {
  14809. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14810. extra: 860 / 690,
  14811. bottom: 0.03
  14812. }
  14813. },
  14814. },
  14815. [
  14816. {
  14817. name: "Normal",
  14818. height: math.unit(1.7, "meters"),
  14819. default: true
  14820. },
  14821. ]
  14822. ))
  14823. characterMakers.push(() => makeCharacter(
  14824. { name: "Quilly", species: ["quilava"], 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/quilly/front.svg",
  14832. extra: 890 / 776
  14833. }
  14834. },
  14835. },
  14836. [
  14837. {
  14838. name: "Gigamacro",
  14839. height: math.unit(404090, "miles"),
  14840. default: true
  14841. },
  14842. ]
  14843. ))
  14844. characterMakers.push(() => makeCharacter(
  14845. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14846. {
  14847. front: {
  14848. height: math.unit(7 + 8 / 12, "feet"),
  14849. weight: math.unit(350, "lb"),
  14850. name: "Front",
  14851. image: {
  14852. source: "./media/characters/tempest/front.svg",
  14853. extra: 1175 / 1086,
  14854. bottom: 0.02
  14855. }
  14856. },
  14857. },
  14858. [
  14859. {
  14860. name: "Normal",
  14861. height: math.unit(7 + 8 / 12, "feet"),
  14862. default: true
  14863. },
  14864. ]
  14865. ))
  14866. characterMakers.push(() => makeCharacter(
  14867. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14868. {
  14869. side: {
  14870. height: math.unit(4 + 5 / 12, "feet"),
  14871. weight: math.unit(80, "lb"),
  14872. name: "Side",
  14873. image: {
  14874. source: "./media/characters/rodger/side.svg",
  14875. extra: 1235 / 1118
  14876. }
  14877. },
  14878. },
  14879. [
  14880. {
  14881. name: "Micro",
  14882. height: math.unit(1, "inch")
  14883. },
  14884. {
  14885. name: "Normal",
  14886. height: math.unit(4 + 5 / 12, "feet"),
  14887. default: true
  14888. },
  14889. {
  14890. name: "Macro",
  14891. height: math.unit(120, "feet")
  14892. },
  14893. ]
  14894. ))
  14895. characterMakers.push(() => makeCharacter(
  14896. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14897. {
  14898. front: {
  14899. height: math.unit(6, "feet"),
  14900. weight: math.unit(150, "lb"),
  14901. name: "Front",
  14902. image: {
  14903. source: "./media/characters/danyel/front.svg",
  14904. extra: 1185 / 1123,
  14905. bottom: 0.05
  14906. }
  14907. },
  14908. },
  14909. [
  14910. {
  14911. name: "Shrunken",
  14912. height: math.unit(0.5, "mm")
  14913. },
  14914. {
  14915. name: "Micro",
  14916. height: math.unit(1, "mm"),
  14917. default: true
  14918. },
  14919. {
  14920. name: "Upsized",
  14921. height: math.unit(5 + 5 / 12, "feet")
  14922. },
  14923. ]
  14924. ))
  14925. characterMakers.push(() => makeCharacter(
  14926. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14927. {
  14928. front: {
  14929. height: math.unit(5 + 6 / 12, "feet"),
  14930. weight: math.unit(200, "lb"),
  14931. name: "Front",
  14932. image: {
  14933. source: "./media/characters/vivian-bijoux/front.svg",
  14934. extra: 1217/1209,
  14935. bottom: 76/1293
  14936. }
  14937. },
  14938. back: {
  14939. height: math.unit(5 + 6 / 12, "feet"),
  14940. weight: math.unit(200, "lb"),
  14941. name: "Back",
  14942. image: {
  14943. source: "./media/characters/vivian-bijoux/back.svg",
  14944. extra: 1214/1208,
  14945. bottom: 51/1265
  14946. }
  14947. },
  14948. dressed: {
  14949. height: math.unit(5 + 6 / 12, "feet"),
  14950. weight: math.unit(200, "lb"),
  14951. name: "Dressed",
  14952. image: {
  14953. source: "./media/characters/vivian-bijoux/dressed.svg",
  14954. extra: 1217/1209,
  14955. bottom: 76/1293
  14956. }
  14957. },
  14958. },
  14959. [
  14960. {
  14961. name: "Normal",
  14962. height: math.unit(5 + 6 / 12, "feet"),
  14963. default: true
  14964. },
  14965. {
  14966. name: "Bad Dream",
  14967. height: math.unit(500, "feet")
  14968. },
  14969. {
  14970. name: "Nightmare",
  14971. height: math.unit(500, "miles")
  14972. },
  14973. ]
  14974. ))
  14975. characterMakers.push(() => makeCharacter(
  14976. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14977. {
  14978. front: {
  14979. height: math.unit(6 + 1 / 12, "feet"),
  14980. weight: math.unit(260, "lb"),
  14981. name: "Front",
  14982. image: {
  14983. source: "./media/characters/zeta/front.svg",
  14984. extra: 1968 / 1889,
  14985. bottom: 0.06
  14986. }
  14987. },
  14988. back: {
  14989. height: math.unit(6 + 1 / 12, "feet"),
  14990. weight: math.unit(260, "lb"),
  14991. name: "Back",
  14992. image: {
  14993. source: "./media/characters/zeta/back.svg",
  14994. extra: 1944 / 1858,
  14995. bottom: 0.03
  14996. }
  14997. },
  14998. hand: {
  14999. height: math.unit(1.112, "feet"),
  15000. name: "Hand",
  15001. image: {
  15002. source: "./media/characters/zeta/hand.svg"
  15003. }
  15004. },
  15005. foot: {
  15006. height: math.unit(1.48, "feet"),
  15007. name: "Foot",
  15008. image: {
  15009. source: "./media/characters/zeta/foot.svg"
  15010. }
  15011. },
  15012. },
  15013. [
  15014. {
  15015. name: "Micro",
  15016. height: math.unit(6, "inches")
  15017. },
  15018. {
  15019. name: "Normal",
  15020. height: math.unit(6 + 1 / 12, "feet"),
  15021. default: true
  15022. },
  15023. {
  15024. name: "Macro",
  15025. height: math.unit(20, "feet")
  15026. },
  15027. ]
  15028. ))
  15029. characterMakers.push(() => makeCharacter(
  15030. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15031. {
  15032. front: {
  15033. height: math.unit(6, "feet"),
  15034. weight: math.unit(150, "lb"),
  15035. name: "Front",
  15036. image: {
  15037. source: "./media/characters/jamie-larsen/front.svg",
  15038. extra: 962 / 933,
  15039. bottom: 0.02
  15040. }
  15041. },
  15042. back: {
  15043. height: math.unit(6, "feet"),
  15044. weight: math.unit(150, "lb"),
  15045. name: "Back",
  15046. image: {
  15047. source: "./media/characters/jamie-larsen/back.svg",
  15048. extra: 997 / 946
  15049. }
  15050. },
  15051. },
  15052. [
  15053. {
  15054. name: "Macro",
  15055. height: math.unit(28 + 7 / 12, "feet"),
  15056. default: true
  15057. },
  15058. {
  15059. name: "Macro+",
  15060. height: math.unit(180, "feet")
  15061. },
  15062. {
  15063. name: "Megamacro",
  15064. height: math.unit(10, "miles")
  15065. },
  15066. {
  15067. name: "Gigamacro",
  15068. height: math.unit(200000, "miles")
  15069. },
  15070. ]
  15071. ))
  15072. characterMakers.push(() => makeCharacter(
  15073. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15074. {
  15075. front: {
  15076. height: math.unit(6, "feet"),
  15077. weight: math.unit(120, "lb"),
  15078. name: "Front",
  15079. image: {
  15080. source: "./media/characters/vance/front.svg",
  15081. extra: 1980 / 1890,
  15082. bottom: 0.09
  15083. }
  15084. },
  15085. back: {
  15086. height: math.unit(6, "feet"),
  15087. weight: math.unit(120, "lb"),
  15088. name: "Back",
  15089. image: {
  15090. source: "./media/characters/vance/back.svg",
  15091. extra: 2081 / 1994,
  15092. bottom: 0.014
  15093. }
  15094. },
  15095. hand: {
  15096. height: math.unit(0.88, "feet"),
  15097. name: "Hand",
  15098. image: {
  15099. source: "./media/characters/vance/hand.svg"
  15100. }
  15101. },
  15102. foot: {
  15103. height: math.unit(0.64, "feet"),
  15104. name: "Foot",
  15105. image: {
  15106. source: "./media/characters/vance/foot.svg"
  15107. }
  15108. },
  15109. },
  15110. [
  15111. {
  15112. name: "Small",
  15113. height: math.unit(90, "feet"),
  15114. default: true
  15115. },
  15116. {
  15117. name: "Macro",
  15118. height: math.unit(100, "meters")
  15119. },
  15120. {
  15121. name: "Megamacro",
  15122. height: math.unit(15, "miles")
  15123. },
  15124. ]
  15125. ))
  15126. characterMakers.push(() => makeCharacter(
  15127. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15128. {
  15129. front: {
  15130. height: math.unit(6, "feet"),
  15131. weight: math.unit(180, "lb"),
  15132. name: "Front",
  15133. image: {
  15134. source: "./media/characters/xochitl/front.svg",
  15135. extra: 2297 / 2261,
  15136. bottom: 0.065
  15137. }
  15138. },
  15139. back: {
  15140. height: math.unit(6, "feet"),
  15141. weight: math.unit(180, "lb"),
  15142. name: "Back",
  15143. image: {
  15144. source: "./media/characters/xochitl/back.svg",
  15145. extra: 2386 / 2354,
  15146. bottom: 0.01
  15147. }
  15148. },
  15149. foot: {
  15150. height: math.unit(6 / 5 * 1.15, "feet"),
  15151. weight: math.unit(150, "lb"),
  15152. name: "Foot",
  15153. image: {
  15154. source: "./media/characters/xochitl/foot.svg"
  15155. }
  15156. },
  15157. },
  15158. [
  15159. {
  15160. name: "Macro",
  15161. height: math.unit(80, "feet")
  15162. },
  15163. {
  15164. name: "Macro+",
  15165. height: math.unit(400, "feet"),
  15166. default: true
  15167. },
  15168. {
  15169. name: "Gigamacro",
  15170. height: math.unit(80000, "miles")
  15171. },
  15172. {
  15173. name: "Gigamacro+",
  15174. height: math.unit(400000, "miles")
  15175. },
  15176. {
  15177. name: "Teramacro",
  15178. height: math.unit(300, "AU")
  15179. },
  15180. ]
  15181. ))
  15182. characterMakers.push(() => makeCharacter(
  15183. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15184. {
  15185. front: {
  15186. height: math.unit(6, "feet"),
  15187. weight: math.unit(150, "lb"),
  15188. name: "Front",
  15189. image: {
  15190. source: "./media/characters/vincent/front.svg",
  15191. extra: 1130 / 1080,
  15192. bottom: 0.055
  15193. }
  15194. },
  15195. beak: {
  15196. height: math.unit(6 * 0.1, "feet"),
  15197. name: "Beak",
  15198. image: {
  15199. source: "./media/characters/vincent/beak.svg"
  15200. }
  15201. },
  15202. hand: {
  15203. height: math.unit(6 * 0.85, "feet"),
  15204. weight: math.unit(150, "lb"),
  15205. name: "Hand",
  15206. image: {
  15207. source: "./media/characters/vincent/hand.svg"
  15208. }
  15209. },
  15210. foot: {
  15211. height: math.unit(6 * 0.19, "feet"),
  15212. weight: math.unit(150, "lb"),
  15213. name: "Foot",
  15214. image: {
  15215. source: "./media/characters/vincent/foot.svg"
  15216. }
  15217. },
  15218. },
  15219. [
  15220. {
  15221. name: "Base",
  15222. height: math.unit(6 + 5 / 12, "feet"),
  15223. default: true
  15224. },
  15225. {
  15226. name: "Macro",
  15227. height: math.unit(300, "feet")
  15228. },
  15229. {
  15230. name: "Megamacro",
  15231. height: math.unit(2, "miles")
  15232. },
  15233. {
  15234. name: "Gigamacro",
  15235. height: math.unit(1000, "miles")
  15236. },
  15237. ]
  15238. ))
  15239. characterMakers.push(() => makeCharacter(
  15240. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15241. {
  15242. front: {
  15243. height: math.unit(2, "meters"),
  15244. weight: math.unit(500, "kg"),
  15245. name: "Front",
  15246. image: {
  15247. source: "./media/characters/coatl/front.svg",
  15248. extra: 3948 / 3500,
  15249. bottom: 0.082
  15250. }
  15251. },
  15252. },
  15253. [
  15254. {
  15255. name: "Normal",
  15256. height: math.unit(4, "meters")
  15257. },
  15258. {
  15259. name: "Macro",
  15260. height: math.unit(100, "meters"),
  15261. default: true
  15262. },
  15263. {
  15264. name: "Macro+",
  15265. height: math.unit(300, "meters")
  15266. },
  15267. {
  15268. name: "Megamacro",
  15269. height: math.unit(3, "gigameters")
  15270. },
  15271. {
  15272. name: "Megamacro+",
  15273. height: math.unit(300, "terameters")
  15274. },
  15275. {
  15276. name: "Megamacro++",
  15277. height: math.unit(3, "lightyears")
  15278. },
  15279. ]
  15280. ))
  15281. characterMakers.push(() => makeCharacter(
  15282. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15283. {
  15284. front: {
  15285. height: math.unit(6, "feet"),
  15286. weight: math.unit(50, "kg"),
  15287. name: "front",
  15288. image: {
  15289. source: "./media/characters/shiroryu/front.svg",
  15290. extra: 1990 / 1935
  15291. }
  15292. },
  15293. },
  15294. [
  15295. {
  15296. name: "Mortal Mingling",
  15297. height: math.unit(3, "meters")
  15298. },
  15299. {
  15300. name: "Kaiju-ish",
  15301. height: math.unit(250, "meters")
  15302. },
  15303. {
  15304. name: "Somewhat Godly",
  15305. height: math.unit(400, "km"),
  15306. default: true
  15307. },
  15308. {
  15309. name: "Planetary",
  15310. height: math.unit(300, "megameters")
  15311. },
  15312. {
  15313. name: "Galaxy-dwarfing",
  15314. height: math.unit(450, "kiloparsecs")
  15315. },
  15316. {
  15317. name: "Universe Eater",
  15318. height: math.unit(150, "gigaparsecs")
  15319. },
  15320. {
  15321. name: "Almost Immeasurable",
  15322. height: math.unit(1.3e266, "yottaparsecs")
  15323. },
  15324. ]
  15325. ))
  15326. characterMakers.push(() => makeCharacter(
  15327. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15328. {
  15329. front: {
  15330. height: math.unit(6, "feet"),
  15331. weight: math.unit(150, "lb"),
  15332. name: "Front",
  15333. image: {
  15334. source: "./media/characters/umeko/front.svg",
  15335. extra: 1,
  15336. bottom: 0.019
  15337. }
  15338. },
  15339. frontArmored: {
  15340. height: math.unit(6, "feet"),
  15341. weight: math.unit(150, "lb"),
  15342. name: "Front (Armored)",
  15343. image: {
  15344. source: "./media/characters/umeko/front-armored.svg",
  15345. extra: 1,
  15346. bottom: 0.021
  15347. }
  15348. },
  15349. },
  15350. [
  15351. {
  15352. name: "Macro",
  15353. height: math.unit(220, "feet"),
  15354. default: true
  15355. },
  15356. {
  15357. name: "Guardian Dragon",
  15358. height: math.unit(50, "miles")
  15359. },
  15360. {
  15361. name: "Cosmic",
  15362. height: math.unit(800000, "miles")
  15363. },
  15364. ]
  15365. ))
  15366. characterMakers.push(() => makeCharacter(
  15367. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15368. {
  15369. front: {
  15370. height: math.unit(6, "feet"),
  15371. weight: math.unit(150, "lb"),
  15372. name: "Front",
  15373. image: {
  15374. source: "./media/characters/cassidy/front.svg",
  15375. extra: 810/808,
  15376. bottom: 41/851
  15377. }
  15378. },
  15379. },
  15380. [
  15381. {
  15382. name: "Canon Height",
  15383. height: math.unit(120, "feet"),
  15384. default: true
  15385. },
  15386. {
  15387. name: "Macro+",
  15388. height: math.unit(400, "feet")
  15389. },
  15390. {
  15391. name: "Macro++",
  15392. height: math.unit(4000, "feet")
  15393. },
  15394. {
  15395. name: "Megamacro",
  15396. height: math.unit(3, "miles")
  15397. },
  15398. ]
  15399. ))
  15400. characterMakers.push(() => makeCharacter(
  15401. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15402. {
  15403. front: {
  15404. height: math.unit(6, "feet"),
  15405. weight: math.unit(150, "lb"),
  15406. name: "Front",
  15407. image: {
  15408. source: "./media/characters/isaac/front.svg",
  15409. extra: 896 / 815,
  15410. bottom: 0.11
  15411. }
  15412. },
  15413. },
  15414. [
  15415. {
  15416. name: "Human Size",
  15417. height: math.unit(8, "feet"),
  15418. default: true
  15419. },
  15420. {
  15421. name: "Macro",
  15422. height: math.unit(400, "feet")
  15423. },
  15424. {
  15425. name: "Megamacro",
  15426. height: math.unit(50, "miles")
  15427. },
  15428. {
  15429. name: "Canon Height",
  15430. height: math.unit(200, "AU")
  15431. },
  15432. ]
  15433. ))
  15434. characterMakers.push(() => makeCharacter(
  15435. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15436. {
  15437. front: {
  15438. height: math.unit(6, "feet"),
  15439. weight: math.unit(72, "kg"),
  15440. name: "Front",
  15441. image: {
  15442. source: "./media/characters/sleekit/front.svg",
  15443. extra: 4693 / 4487,
  15444. bottom: 0.012
  15445. }
  15446. },
  15447. },
  15448. [
  15449. {
  15450. name: "Minimum Height",
  15451. height: math.unit(10, "meters")
  15452. },
  15453. {
  15454. name: "Smaller",
  15455. height: math.unit(25, "meters")
  15456. },
  15457. {
  15458. name: "Larger",
  15459. height: math.unit(38, "meters"),
  15460. default: true
  15461. },
  15462. {
  15463. name: "Maximum height",
  15464. height: math.unit(100, "meters")
  15465. },
  15466. ]
  15467. ))
  15468. characterMakers.push(() => makeCharacter(
  15469. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15470. {
  15471. front: {
  15472. height: math.unit(6, "feet"),
  15473. weight: math.unit(150, "lb"),
  15474. name: "Front",
  15475. image: {
  15476. source: "./media/characters/nillia/front.svg",
  15477. extra: 2195 / 2037,
  15478. bottom: 0.005
  15479. }
  15480. },
  15481. back: {
  15482. height: math.unit(6, "feet"),
  15483. weight: math.unit(150, "lb"),
  15484. name: "Back",
  15485. image: {
  15486. source: "./media/characters/nillia/back.svg",
  15487. extra: 2195 / 2037,
  15488. bottom: 0.005
  15489. }
  15490. },
  15491. },
  15492. [
  15493. {
  15494. name: "Canon Height",
  15495. height: math.unit(489, "feet"),
  15496. default: true
  15497. }
  15498. ]
  15499. ))
  15500. characterMakers.push(() => makeCharacter(
  15501. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15502. {
  15503. front: {
  15504. height: math.unit(6, "feet"),
  15505. weight: math.unit(150, "lb"),
  15506. name: "Front",
  15507. image: {
  15508. source: "./media/characters/mesmyriza/front.svg",
  15509. extra: 2067 / 1784,
  15510. bottom: 0.035
  15511. }
  15512. },
  15513. foot: {
  15514. height: math.unit(6 / (250 / 35), "feet"),
  15515. name: "Foot",
  15516. image: {
  15517. source: "./media/characters/mesmyriza/foot.svg"
  15518. }
  15519. },
  15520. },
  15521. [
  15522. {
  15523. name: "Macro",
  15524. height: math.unit(457, "meters"),
  15525. default: true
  15526. },
  15527. {
  15528. name: "Megamacro",
  15529. height: math.unit(8, "megameters")
  15530. },
  15531. ]
  15532. ))
  15533. characterMakers.push(() => makeCharacter(
  15534. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15535. {
  15536. front: {
  15537. height: math.unit(6, "feet"),
  15538. weight: math.unit(250, "lb"),
  15539. name: "Front",
  15540. image: {
  15541. source: "./media/characters/saudade/front.svg",
  15542. extra: 1172 / 1139,
  15543. bottom: 0.035
  15544. }
  15545. },
  15546. },
  15547. [
  15548. {
  15549. name: "Micro",
  15550. height: math.unit(3, "inches")
  15551. },
  15552. {
  15553. name: "Normal",
  15554. height: math.unit(6, "feet"),
  15555. default: true
  15556. },
  15557. {
  15558. name: "Macro",
  15559. height: math.unit(50, "feet")
  15560. },
  15561. {
  15562. name: "Megamacro",
  15563. height: math.unit(2800, "feet")
  15564. },
  15565. ]
  15566. ))
  15567. characterMakers.push(() => makeCharacter(
  15568. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15569. {
  15570. front: {
  15571. height: math.unit(5 + 4 / 12, "feet"),
  15572. weight: math.unit(100, "lb"),
  15573. name: "Front",
  15574. image: {
  15575. source: "./media/characters/keireer/front.svg",
  15576. extra: 716 / 666,
  15577. bottom: 0.05
  15578. }
  15579. },
  15580. },
  15581. [
  15582. {
  15583. name: "Normal",
  15584. height: math.unit(5 + 4 / 12, "feet"),
  15585. default: true
  15586. },
  15587. ]
  15588. ))
  15589. characterMakers.push(() => makeCharacter(
  15590. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15591. {
  15592. front: {
  15593. height: math.unit(5.5, "feet"),
  15594. weight: math.unit(90, "kg"),
  15595. name: "Front",
  15596. image: {
  15597. source: "./media/characters/mirja/front.svg",
  15598. extra: 1452/1262,
  15599. bottom: 67/1519
  15600. }
  15601. },
  15602. frontDressed: {
  15603. height: math.unit(5.5, "feet"),
  15604. weight: math.unit(90, "lb"),
  15605. name: "Front (Dressed)",
  15606. image: {
  15607. source: "./media/characters/mirja/dressed.svg",
  15608. extra: 1452/1262,
  15609. bottom: 67/1519
  15610. }
  15611. },
  15612. back: {
  15613. height: math.unit(6, "feet"),
  15614. weight: math.unit(90, "lb"),
  15615. name: "Back",
  15616. image: {
  15617. source: "./media/characters/mirja/back.svg",
  15618. extra: 1892/1795,
  15619. bottom: 48/1940
  15620. }
  15621. },
  15622. maw: {
  15623. height: math.unit(1.312, "feet"),
  15624. name: "Maw",
  15625. image: {
  15626. source: "./media/characters/mirja/maw.svg"
  15627. }
  15628. },
  15629. paw: {
  15630. height: math.unit(1.15, "feet"),
  15631. name: "Paw",
  15632. image: {
  15633. source: "./media/characters/mirja/paw.svg"
  15634. }
  15635. },
  15636. },
  15637. [
  15638. {
  15639. name: "\"Incognito\"",
  15640. height: math.unit(3, "meters")
  15641. },
  15642. {
  15643. name: "Strolling Size",
  15644. height: math.unit(15, "km")
  15645. },
  15646. {
  15647. name: "Larger Strolling Size",
  15648. height: math.unit(400, "km")
  15649. },
  15650. {
  15651. name: "Preferred Size",
  15652. height: math.unit(5000, "km"),
  15653. default: true
  15654. },
  15655. {
  15656. name: "True Size",
  15657. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15658. },
  15659. ]
  15660. ))
  15661. characterMakers.push(() => makeCharacter(
  15662. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15663. {
  15664. front: {
  15665. height: math.unit(15, "feet"),
  15666. weight: math.unit(880, "kg"),
  15667. name: "Front",
  15668. image: {
  15669. source: "./media/characters/nightraver/front.svg",
  15670. extra: 2444 / 2160,
  15671. bottom: 0.027
  15672. }
  15673. },
  15674. back: {
  15675. height: math.unit(15, "feet"),
  15676. weight: math.unit(880, "kg"),
  15677. name: "Back",
  15678. image: {
  15679. source: "./media/characters/nightraver/back.svg",
  15680. extra: 2309 / 2180,
  15681. bottom: 0.005
  15682. }
  15683. },
  15684. sole: {
  15685. height: math.unit(2.878, "feet"),
  15686. name: "Sole",
  15687. image: {
  15688. source: "./media/characters/nightraver/sole.svg"
  15689. }
  15690. },
  15691. foot: {
  15692. height: math.unit(2.285, "feet"),
  15693. name: "Foot",
  15694. image: {
  15695. source: "./media/characters/nightraver/foot.svg"
  15696. }
  15697. },
  15698. maw: {
  15699. height: math.unit(2.67, "feet"),
  15700. name: "Maw",
  15701. image: {
  15702. source: "./media/characters/nightraver/maw.svg"
  15703. }
  15704. },
  15705. },
  15706. [
  15707. {
  15708. name: "Micro",
  15709. height: math.unit(1, "cm")
  15710. },
  15711. {
  15712. name: "Normal",
  15713. height: math.unit(15, "feet"),
  15714. default: true
  15715. },
  15716. {
  15717. name: "Macro",
  15718. height: math.unit(300, "feet")
  15719. },
  15720. {
  15721. name: "Megamacro",
  15722. height: math.unit(300, "miles")
  15723. },
  15724. {
  15725. name: "Gigamacro",
  15726. height: math.unit(10000, "miles")
  15727. },
  15728. ]
  15729. ))
  15730. characterMakers.push(() => makeCharacter(
  15731. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15732. {
  15733. side: {
  15734. height: math.unit(2, "inches"),
  15735. weight: math.unit(5, "grams"),
  15736. name: "Side",
  15737. image: {
  15738. source: "./media/characters/arc/side.svg"
  15739. }
  15740. },
  15741. },
  15742. [
  15743. {
  15744. name: "Micro",
  15745. height: math.unit(2, "inches"),
  15746. default: true
  15747. },
  15748. ]
  15749. ))
  15750. characterMakers.push(() => makeCharacter(
  15751. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15752. {
  15753. front: {
  15754. height: math.unit(1.1938, "meters"),
  15755. weight: math.unit(54, "kg"),
  15756. name: "Front",
  15757. image: {
  15758. source: "./media/characters/nebula-shahar/front.svg",
  15759. extra: 1642 / 1436,
  15760. bottom: 0.06
  15761. }
  15762. },
  15763. },
  15764. [
  15765. {
  15766. name: "Megamicro",
  15767. height: math.unit(0.3, "mm")
  15768. },
  15769. {
  15770. name: "Micro",
  15771. height: math.unit(3, "cm")
  15772. },
  15773. {
  15774. name: "Normal",
  15775. height: math.unit(138, "cm"),
  15776. default: true
  15777. },
  15778. {
  15779. name: "Macro",
  15780. height: math.unit(30, "m")
  15781. },
  15782. ]
  15783. ))
  15784. characterMakers.push(() => makeCharacter(
  15785. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15786. {
  15787. front: {
  15788. height: math.unit(5.24, "feet"),
  15789. weight: math.unit(150, "lb"),
  15790. name: "Front",
  15791. image: {
  15792. source: "./media/characters/shayla/front.svg",
  15793. extra: 1512 / 1414,
  15794. bottom: 0.01
  15795. }
  15796. },
  15797. back: {
  15798. height: math.unit(5.24, "feet"),
  15799. weight: math.unit(150, "lb"),
  15800. name: "Back",
  15801. image: {
  15802. source: "./media/characters/shayla/back.svg",
  15803. extra: 1512 / 1414
  15804. }
  15805. },
  15806. hand: {
  15807. height: math.unit(0.7781496062992126, "feet"),
  15808. name: "Hand",
  15809. image: {
  15810. source: "./media/characters/shayla/hand.svg"
  15811. }
  15812. },
  15813. foot: {
  15814. height: math.unit(1.4206036745406823, "feet"),
  15815. name: "Foot",
  15816. image: {
  15817. source: "./media/characters/shayla/foot.svg"
  15818. }
  15819. },
  15820. },
  15821. [
  15822. {
  15823. name: "Micro",
  15824. height: math.unit(0.32, "feet")
  15825. },
  15826. {
  15827. name: "Normal",
  15828. height: math.unit(5.24, "feet"),
  15829. default: true
  15830. },
  15831. {
  15832. name: "Macro",
  15833. height: math.unit(492.12, "feet")
  15834. },
  15835. {
  15836. name: "Megamacro",
  15837. height: math.unit(186.41, "miles")
  15838. },
  15839. ]
  15840. ))
  15841. characterMakers.push(() => makeCharacter(
  15842. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15843. {
  15844. front: {
  15845. height: math.unit(2.2, "m"),
  15846. weight: math.unit(120, "kg"),
  15847. name: "Front",
  15848. image: {
  15849. source: "./media/characters/pia-jr/front.svg",
  15850. extra: 1000 / 970,
  15851. bottom: 0.035
  15852. }
  15853. },
  15854. hand: {
  15855. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15856. name: "Hand",
  15857. image: {
  15858. source: "./media/characters/pia-jr/hand.svg"
  15859. }
  15860. },
  15861. paw: {
  15862. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15863. name: "Paw",
  15864. image: {
  15865. source: "./media/characters/pia-jr/paw.svg"
  15866. }
  15867. },
  15868. },
  15869. [
  15870. {
  15871. name: "Micro",
  15872. height: math.unit(1.2, "cm")
  15873. },
  15874. {
  15875. name: "Normal",
  15876. height: math.unit(2.2, "m"),
  15877. default: true
  15878. },
  15879. {
  15880. name: "Macro",
  15881. height: math.unit(180, "m")
  15882. },
  15883. {
  15884. name: "Megamacro",
  15885. height: math.unit(420, "km")
  15886. },
  15887. ]
  15888. ))
  15889. characterMakers.push(() => makeCharacter(
  15890. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15891. {
  15892. front: {
  15893. height: math.unit(2, "m"),
  15894. weight: math.unit(115, "kg"),
  15895. name: "Front",
  15896. image: {
  15897. source: "./media/characters/pia-sr/front.svg",
  15898. extra: 760 / 730,
  15899. bottom: 0.015
  15900. }
  15901. },
  15902. back: {
  15903. height: math.unit(2, "m"),
  15904. weight: math.unit(115, "kg"),
  15905. name: "Back",
  15906. image: {
  15907. source: "./media/characters/pia-sr/back.svg",
  15908. extra: 760 / 730,
  15909. bottom: 0.01
  15910. }
  15911. },
  15912. hand: {
  15913. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15914. name: "Hand",
  15915. image: {
  15916. source: "./media/characters/pia-sr/hand.svg"
  15917. }
  15918. },
  15919. foot: {
  15920. height: math.unit(1.83, "feet"),
  15921. name: "Foot",
  15922. image: {
  15923. source: "./media/characters/pia-sr/foot.svg"
  15924. }
  15925. },
  15926. },
  15927. [
  15928. {
  15929. name: "Micro",
  15930. height: math.unit(88, "mm")
  15931. },
  15932. {
  15933. name: "Normal",
  15934. height: math.unit(2, "m"),
  15935. default: true
  15936. },
  15937. {
  15938. name: "Macro",
  15939. height: math.unit(200, "m")
  15940. },
  15941. {
  15942. name: "Megamacro",
  15943. height: math.unit(420, "km")
  15944. },
  15945. ]
  15946. ))
  15947. characterMakers.push(() => makeCharacter(
  15948. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15949. {
  15950. front: {
  15951. height: math.unit(8 + 2 / 12, "feet"),
  15952. weight: math.unit(300, "lb"),
  15953. name: "Front",
  15954. image: {
  15955. source: "./media/characters/kibibyte/front.svg",
  15956. extra: 2221 / 2098,
  15957. bottom: 0.04
  15958. }
  15959. },
  15960. },
  15961. [
  15962. {
  15963. name: "Normal",
  15964. height: math.unit(8 + 2 / 12, "feet"),
  15965. default: true
  15966. },
  15967. {
  15968. name: "Socialable Macro",
  15969. height: math.unit(50, "feet")
  15970. },
  15971. {
  15972. name: "Macro",
  15973. height: math.unit(300, "feet")
  15974. },
  15975. {
  15976. name: "Megamacro",
  15977. height: math.unit(500, "miles")
  15978. },
  15979. ]
  15980. ))
  15981. characterMakers.push(() => makeCharacter(
  15982. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15983. {
  15984. front: {
  15985. height: math.unit(6, "feet"),
  15986. weight: math.unit(150, "lb"),
  15987. name: "Front",
  15988. image: {
  15989. source: "./media/characters/felix/front.svg",
  15990. extra: 762 / 722,
  15991. bottom: 0.02
  15992. }
  15993. },
  15994. frontClothed: {
  15995. height: math.unit(6, "feet"),
  15996. weight: math.unit(150, "lb"),
  15997. name: "Front (Clothed)",
  15998. image: {
  15999. source: "./media/characters/felix/front-clothed.svg",
  16000. extra: 762 / 722,
  16001. bottom: 0.02
  16002. }
  16003. },
  16004. },
  16005. [
  16006. {
  16007. name: "Normal",
  16008. height: math.unit(6 + 8 / 12, "feet"),
  16009. default: true
  16010. },
  16011. {
  16012. name: "Macro",
  16013. height: math.unit(2600, "feet")
  16014. },
  16015. {
  16016. name: "Megamacro",
  16017. height: math.unit(450, "miles")
  16018. },
  16019. ]
  16020. ))
  16021. characterMakers.push(() => makeCharacter(
  16022. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16023. {
  16024. front: {
  16025. height: math.unit(6 + 1 / 12, "feet"),
  16026. weight: math.unit(250, "lb"),
  16027. name: "Front",
  16028. image: {
  16029. source: "./media/characters/tobo/front.svg",
  16030. extra: 608 / 586,
  16031. bottom: 0.023
  16032. }
  16033. },
  16034. back: {
  16035. height: math.unit(6 + 1 / 12, "feet"),
  16036. weight: math.unit(250, "lb"),
  16037. name: "Back",
  16038. image: {
  16039. source: "./media/characters/tobo/back.svg",
  16040. extra: 608 / 586
  16041. }
  16042. },
  16043. },
  16044. [
  16045. {
  16046. name: "Nano",
  16047. height: math.unit(2, "nm")
  16048. },
  16049. {
  16050. name: "Megamicro",
  16051. height: math.unit(0.1, "mm")
  16052. },
  16053. {
  16054. name: "Micro",
  16055. height: math.unit(1, "inch"),
  16056. default: true
  16057. },
  16058. {
  16059. name: "Human-sized",
  16060. height: math.unit(6 + 1 / 12, "feet")
  16061. },
  16062. {
  16063. name: "Macro",
  16064. height: math.unit(250, "feet")
  16065. },
  16066. {
  16067. name: "Megamacro",
  16068. height: math.unit(75, "miles")
  16069. },
  16070. {
  16071. name: "Texas-sized",
  16072. height: math.unit(750, "miles")
  16073. },
  16074. {
  16075. name: "Teramacro",
  16076. height: math.unit(50000, "miles")
  16077. },
  16078. ]
  16079. ))
  16080. characterMakers.push(() => makeCharacter(
  16081. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16082. {
  16083. front: {
  16084. height: math.unit(6, "feet"),
  16085. weight: math.unit(269, "lb"),
  16086. name: "Front",
  16087. image: {
  16088. source: "./media/characters/danny-kapowsky/front.svg",
  16089. extra: 766 / 736,
  16090. bottom: 0.044
  16091. }
  16092. },
  16093. back: {
  16094. height: math.unit(6, "feet"),
  16095. weight: math.unit(269, "lb"),
  16096. name: "Back",
  16097. image: {
  16098. source: "./media/characters/danny-kapowsky/back.svg",
  16099. extra: 797 / 760,
  16100. bottom: 0.025
  16101. }
  16102. },
  16103. },
  16104. [
  16105. {
  16106. name: "Macro",
  16107. height: math.unit(150, "feet"),
  16108. default: true
  16109. },
  16110. {
  16111. name: "Macro+",
  16112. height: math.unit(200, "feet")
  16113. },
  16114. {
  16115. name: "Macro++",
  16116. height: math.unit(300, "feet")
  16117. },
  16118. {
  16119. name: "Macro+++",
  16120. height: math.unit(400, "feet")
  16121. },
  16122. ]
  16123. ))
  16124. characterMakers.push(() => makeCharacter(
  16125. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16126. {
  16127. side: {
  16128. height: math.unit(6, "feet"),
  16129. weight: math.unit(170, "lb"),
  16130. name: "Side",
  16131. image: {
  16132. source: "./media/characters/finn/side.svg",
  16133. extra: 1953 / 1807,
  16134. bottom: 0.057
  16135. }
  16136. },
  16137. },
  16138. [
  16139. {
  16140. name: "Megamacro",
  16141. height: math.unit(14445, "feet"),
  16142. default: true
  16143. },
  16144. ]
  16145. ))
  16146. characterMakers.push(() => makeCharacter(
  16147. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16148. {
  16149. front: {
  16150. height: math.unit(5 + 6 / 12, "feet"),
  16151. weight: math.unit(125, "lb"),
  16152. name: "Front",
  16153. image: {
  16154. source: "./media/characters/roy/front.svg",
  16155. extra: 1,
  16156. bottom: 0.11
  16157. }
  16158. },
  16159. },
  16160. [
  16161. {
  16162. name: "Micro",
  16163. height: math.unit(3, "inches"),
  16164. default: true
  16165. },
  16166. {
  16167. name: "Normal",
  16168. height: math.unit(5 + 6 / 12, "feet")
  16169. },
  16170. {
  16171. name: "Lesser Macro",
  16172. height: math.unit(60, "feet")
  16173. },
  16174. {
  16175. name: "Greater Macro",
  16176. height: math.unit(120, "feet")
  16177. },
  16178. ]
  16179. ))
  16180. characterMakers.push(() => makeCharacter(
  16181. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16182. {
  16183. front: {
  16184. height: math.unit(6, "feet"),
  16185. weight: math.unit(100, "lb"),
  16186. name: "Front",
  16187. image: {
  16188. source: "./media/characters/aevsivs/front.svg",
  16189. extra: 1,
  16190. bottom: 0.03
  16191. }
  16192. },
  16193. back: {
  16194. height: math.unit(6, "feet"),
  16195. weight: math.unit(100, "lb"),
  16196. name: "Back",
  16197. image: {
  16198. source: "./media/characters/aevsivs/back.svg"
  16199. }
  16200. },
  16201. },
  16202. [
  16203. {
  16204. name: "Micro",
  16205. height: math.unit(2, "inches"),
  16206. default: true
  16207. },
  16208. {
  16209. name: "Normal",
  16210. height: math.unit(5, "feet")
  16211. },
  16212. ]
  16213. ))
  16214. characterMakers.push(() => makeCharacter(
  16215. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16216. {
  16217. front: {
  16218. height: math.unit(5 + 7 / 12, "feet"),
  16219. weight: math.unit(159, "lb"),
  16220. name: "Front",
  16221. image: {
  16222. source: "./media/characters/hildegard/front.svg",
  16223. extra: 289 / 269,
  16224. bottom: 7.63 / 297.8
  16225. }
  16226. },
  16227. back: {
  16228. height: math.unit(5 + 7 / 12, "feet"),
  16229. weight: math.unit(159, "lb"),
  16230. name: "Back",
  16231. image: {
  16232. source: "./media/characters/hildegard/back.svg",
  16233. extra: 280 / 260,
  16234. bottom: 2.3 / 282
  16235. }
  16236. },
  16237. },
  16238. [
  16239. {
  16240. name: "Normal",
  16241. height: math.unit(5 + 7 / 12, "feet"),
  16242. default: true
  16243. },
  16244. ]
  16245. ))
  16246. characterMakers.push(() => makeCharacter(
  16247. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16248. {
  16249. bernard: {
  16250. height: math.unit(2 + 7 / 12, "feet"),
  16251. weight: math.unit(66, "lb"),
  16252. name: "Bernard",
  16253. rename: true,
  16254. image: {
  16255. source: "./media/characters/bernard-wilder/bernard.svg",
  16256. extra: 192 / 128,
  16257. bottom: 0.05
  16258. }
  16259. },
  16260. wilder: {
  16261. height: math.unit(5 + 8 / 12, "feet"),
  16262. weight: math.unit(143, "lb"),
  16263. name: "Wilder",
  16264. rename: true,
  16265. image: {
  16266. source: "./media/characters/bernard-wilder/wilder.svg",
  16267. extra: 361 / 312,
  16268. bottom: 0.02
  16269. }
  16270. },
  16271. },
  16272. [
  16273. {
  16274. name: "Normal",
  16275. height: math.unit(2 + 7 / 12, "feet"),
  16276. default: true
  16277. },
  16278. ]
  16279. ))
  16280. characterMakers.push(() => makeCharacter(
  16281. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16282. {
  16283. anthro: {
  16284. height: math.unit(6 + 1 / 12, "feet"),
  16285. weight: math.unit(155, "lb"),
  16286. name: "Anthro",
  16287. image: {
  16288. source: "./media/characters/hearth/anthro.svg",
  16289. extra: 1178/1136,
  16290. bottom: 28/1206
  16291. }
  16292. },
  16293. feral: {
  16294. height: math.unit(3.78, "feet"),
  16295. weight: math.unit(35, "kg"),
  16296. name: "Feral",
  16297. image: {
  16298. source: "./media/characters/hearth/feral.svg",
  16299. extra: 153 / 135,
  16300. bottom: 0.03
  16301. }
  16302. },
  16303. },
  16304. [
  16305. {
  16306. name: "Normal",
  16307. height: math.unit(6 + 1 / 12, "feet"),
  16308. default: true
  16309. },
  16310. ]
  16311. ))
  16312. characterMakers.push(() => makeCharacter(
  16313. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16314. {
  16315. front: {
  16316. height: math.unit(6, "feet"),
  16317. weight: math.unit(182, "lb"),
  16318. name: "Front",
  16319. image: {
  16320. source: "./media/characters/ingrid/front.svg",
  16321. extra: 294 / 268,
  16322. bottom: 0.027
  16323. }
  16324. },
  16325. },
  16326. [
  16327. {
  16328. name: "Normal",
  16329. height: math.unit(6, "feet"),
  16330. default: true
  16331. },
  16332. ]
  16333. ))
  16334. characterMakers.push(() => makeCharacter(
  16335. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16336. {
  16337. eevee: {
  16338. height: math.unit(2 + 10 / 12, "feet"),
  16339. weight: math.unit(86, "lb"),
  16340. name: "Malgam",
  16341. image: {
  16342. source: "./media/characters/malgam/eevee.svg",
  16343. extra: 952/784,
  16344. bottom: 38/990
  16345. }
  16346. },
  16347. sylveon: {
  16348. height: math.unit(4, "feet"),
  16349. weight: math.unit(101, "lb"),
  16350. name: "Future Malgam",
  16351. rename: true,
  16352. image: {
  16353. source: "./media/characters/malgam/sylveon.svg",
  16354. extra: 371 / 325,
  16355. bottom: 0.015
  16356. }
  16357. },
  16358. gigantamax: {
  16359. height: math.unit(50, "feet"),
  16360. name: "Gigantamax Malgam",
  16361. rename: true,
  16362. image: {
  16363. source: "./media/characters/malgam/gigantamax.svg"
  16364. }
  16365. },
  16366. },
  16367. [
  16368. {
  16369. name: "Normal",
  16370. height: math.unit(2 + 10 / 12, "feet"),
  16371. default: true
  16372. },
  16373. ]
  16374. ))
  16375. characterMakers.push(() => makeCharacter(
  16376. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16377. {
  16378. front: {
  16379. height: math.unit(5 + 11 / 12, "feet"),
  16380. weight: math.unit(188, "lb"),
  16381. name: "Front",
  16382. image: {
  16383. source: "./media/characters/fleur/front.svg",
  16384. extra: 309 / 283,
  16385. bottom: 0.007
  16386. }
  16387. },
  16388. },
  16389. [
  16390. {
  16391. name: "Normal",
  16392. height: math.unit(5 + 11 / 12, "feet"),
  16393. default: true
  16394. },
  16395. ]
  16396. ))
  16397. characterMakers.push(() => makeCharacter(
  16398. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16399. {
  16400. front: {
  16401. height: math.unit(5 + 4 / 12, "feet"),
  16402. weight: math.unit(122, "lb"),
  16403. name: "Front",
  16404. image: {
  16405. source: "./media/characters/jude/front.svg",
  16406. extra: 288 / 273,
  16407. bottom: 0.03
  16408. }
  16409. },
  16410. },
  16411. [
  16412. {
  16413. name: "Normal",
  16414. height: math.unit(5 + 4 / 12, "feet"),
  16415. default: true
  16416. },
  16417. ]
  16418. ))
  16419. characterMakers.push(() => makeCharacter(
  16420. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16421. {
  16422. front: {
  16423. height: math.unit(5 + 11 / 12, "feet"),
  16424. weight: math.unit(190, "lb"),
  16425. name: "Front",
  16426. image: {
  16427. source: "./media/characters/seara/front.svg",
  16428. extra: 1,
  16429. bottom: 0.05
  16430. }
  16431. },
  16432. },
  16433. [
  16434. {
  16435. name: "Normal",
  16436. height: math.unit(5 + 11 / 12, "feet"),
  16437. default: true
  16438. },
  16439. ]
  16440. ))
  16441. characterMakers.push(() => makeCharacter(
  16442. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16443. {
  16444. front: {
  16445. height: math.unit(16 + 5 / 12, "feet"),
  16446. weight: math.unit(524, "lb"),
  16447. name: "Front",
  16448. image: {
  16449. source: "./media/characters/caspian-lugia/front.svg",
  16450. extra: 1,
  16451. bottom: 0.04
  16452. }
  16453. },
  16454. },
  16455. [
  16456. {
  16457. name: "Normal",
  16458. height: math.unit(16 + 5 / 12, "feet"),
  16459. default: true
  16460. },
  16461. ]
  16462. ))
  16463. characterMakers.push(() => makeCharacter(
  16464. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16465. {
  16466. front: {
  16467. height: math.unit(5 + 7 / 12, "feet"),
  16468. weight: math.unit(170, "lb"),
  16469. name: "Front",
  16470. image: {
  16471. source: "./media/characters/mika/front.svg",
  16472. extra: 1,
  16473. bottom: 0.016
  16474. }
  16475. },
  16476. },
  16477. [
  16478. {
  16479. name: "Normal",
  16480. height: math.unit(5 + 7 / 12, "feet"),
  16481. default: true
  16482. },
  16483. ]
  16484. ))
  16485. characterMakers.push(() => makeCharacter(
  16486. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16487. {
  16488. front: {
  16489. height: math.unit(6 + 2 / 12, "feet"),
  16490. weight: math.unit(268, "lb"),
  16491. name: "Front",
  16492. image: {
  16493. source: "./media/characters/sol/front.svg",
  16494. extra: 247 / 231,
  16495. bottom: 0.05
  16496. }
  16497. },
  16498. },
  16499. [
  16500. {
  16501. name: "Normal",
  16502. height: math.unit(6 + 2 / 12, "feet"),
  16503. default: true
  16504. },
  16505. ]
  16506. ))
  16507. characterMakers.push(() => makeCharacter(
  16508. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16509. {
  16510. buizel: {
  16511. height: math.unit(2 + 5 / 12, "feet"),
  16512. weight: math.unit(87, "lb"),
  16513. name: "Front",
  16514. image: {
  16515. source: "./media/characters/umiko/buizel.svg",
  16516. extra: 172 / 157,
  16517. bottom: 0.01
  16518. },
  16519. form: "buizel",
  16520. default: true
  16521. },
  16522. floatzel: {
  16523. height: math.unit(5 + 9 / 12, "feet"),
  16524. weight: math.unit(250, "lb"),
  16525. name: "Front",
  16526. image: {
  16527. source: "./media/characters/umiko/floatzel.svg",
  16528. extra: 1076/1006,
  16529. bottom: 15/1091
  16530. },
  16531. form: "floatzel",
  16532. default: true
  16533. },
  16534. },
  16535. [
  16536. {
  16537. name: "Normal",
  16538. height: math.unit(2 + 5 / 12, "feet"),
  16539. form: "buizel",
  16540. default: true
  16541. },
  16542. {
  16543. name: "Normal",
  16544. height: math.unit(5 + 9 / 12, "feet"),
  16545. form: "floatzel",
  16546. default: true
  16547. },
  16548. ],
  16549. {
  16550. "buizel": {
  16551. name: "Buizel"
  16552. },
  16553. "floatzel": {
  16554. name: "Floatzel",
  16555. default: true
  16556. }
  16557. }
  16558. ))
  16559. characterMakers.push(() => makeCharacter(
  16560. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16561. {
  16562. front: {
  16563. height: math.unit(6 + 2 / 12, "feet"),
  16564. weight: math.unit(146, "lb"),
  16565. name: "Front",
  16566. image: {
  16567. source: "./media/characters/iliac/front.svg",
  16568. extra: 389 / 365,
  16569. bottom: 0.035
  16570. }
  16571. },
  16572. },
  16573. [
  16574. {
  16575. name: "Normal",
  16576. height: math.unit(6 + 2 / 12, "feet"),
  16577. default: true
  16578. },
  16579. ]
  16580. ))
  16581. characterMakers.push(() => makeCharacter(
  16582. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16583. {
  16584. front: {
  16585. height: math.unit(6, "feet"),
  16586. weight: math.unit(170, "lb"),
  16587. name: "Front",
  16588. image: {
  16589. source: "./media/characters/topaz/front.svg",
  16590. extra: 317 / 303,
  16591. bottom: 0.055
  16592. }
  16593. },
  16594. },
  16595. [
  16596. {
  16597. name: "Normal",
  16598. height: math.unit(6, "feet"),
  16599. default: true
  16600. },
  16601. ]
  16602. ))
  16603. characterMakers.push(() => makeCharacter(
  16604. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16605. {
  16606. front: {
  16607. height: math.unit(5 + 11 / 12, "feet"),
  16608. weight: math.unit(144, "lb"),
  16609. name: "Front",
  16610. image: {
  16611. source: "./media/characters/gabriel/front.svg",
  16612. extra: 285 / 262,
  16613. bottom: 0.004
  16614. }
  16615. },
  16616. },
  16617. [
  16618. {
  16619. name: "Normal",
  16620. height: math.unit(5 + 11 / 12, "feet"),
  16621. default: true
  16622. },
  16623. ]
  16624. ))
  16625. characterMakers.push(() => makeCharacter(
  16626. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16627. {
  16628. side: {
  16629. height: math.unit(6 + 5 / 12, "feet"),
  16630. weight: math.unit(300, "lb"),
  16631. name: "Side",
  16632. image: {
  16633. source: "./media/characters/tempest-suicune/side.svg",
  16634. extra: 195 / 154,
  16635. bottom: 0.04
  16636. }
  16637. },
  16638. },
  16639. [
  16640. {
  16641. name: "Normal",
  16642. height: math.unit(6 + 5 / 12, "feet"),
  16643. default: true
  16644. },
  16645. ]
  16646. ))
  16647. characterMakers.push(() => makeCharacter(
  16648. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16649. {
  16650. front: {
  16651. height: math.unit(7 + 2 / 12, "feet"),
  16652. weight: math.unit(322, "lb"),
  16653. name: "Front",
  16654. image: {
  16655. source: "./media/characters/vulcan/front.svg",
  16656. extra: 154 / 147,
  16657. bottom: 0.04
  16658. }
  16659. },
  16660. },
  16661. [
  16662. {
  16663. name: "Normal",
  16664. height: math.unit(7 + 2 / 12, "feet"),
  16665. default: true
  16666. },
  16667. ]
  16668. ))
  16669. characterMakers.push(() => makeCharacter(
  16670. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16671. {
  16672. front: {
  16673. height: math.unit(5 + 10 / 12, "feet"),
  16674. weight: math.unit(264, "lb"),
  16675. name: "Front",
  16676. image: {
  16677. source: "./media/characters/gault/front.svg",
  16678. extra: 161 / 140,
  16679. bottom: 0.028
  16680. }
  16681. },
  16682. },
  16683. [
  16684. {
  16685. name: "Normal",
  16686. height: math.unit(5 + 10 / 12, "feet"),
  16687. default: true
  16688. },
  16689. ]
  16690. ))
  16691. characterMakers.push(() => makeCharacter(
  16692. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16693. {
  16694. front: {
  16695. height: math.unit(6, "feet"),
  16696. weight: math.unit(150, "lb"),
  16697. name: "Front",
  16698. image: {
  16699. source: "./media/characters/shard/front.svg",
  16700. extra: 273 / 238,
  16701. bottom: 0.02
  16702. }
  16703. },
  16704. },
  16705. [
  16706. {
  16707. name: "Normal",
  16708. height: math.unit(3 + 6 / 12, "feet"),
  16709. default: true
  16710. },
  16711. ]
  16712. ))
  16713. characterMakers.push(() => makeCharacter(
  16714. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16715. {
  16716. front: {
  16717. height: math.unit(5 + 11 / 12, "feet"),
  16718. weight: math.unit(146, "lb"),
  16719. name: "Front",
  16720. image: {
  16721. source: "./media/characters/ashe/front.svg",
  16722. extra: 400 / 373,
  16723. bottom: 0.01
  16724. }
  16725. },
  16726. },
  16727. [
  16728. {
  16729. name: "Normal",
  16730. height: math.unit(5 + 11 / 12, "feet"),
  16731. default: true
  16732. },
  16733. ]
  16734. ))
  16735. characterMakers.push(() => makeCharacter(
  16736. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16737. {
  16738. front: {
  16739. height: math.unit(5 + 5 / 12, "feet"),
  16740. weight: math.unit(135, "lb"),
  16741. name: "Front",
  16742. image: {
  16743. source: "./media/characters/beatrix/front.svg",
  16744. extra: 392 / 379,
  16745. bottom: 0.01
  16746. }
  16747. },
  16748. },
  16749. [
  16750. {
  16751. name: "Normal",
  16752. height: math.unit(6, "feet"),
  16753. default: true
  16754. },
  16755. ]
  16756. ))
  16757. characterMakers.push(() => makeCharacter(
  16758. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16759. {
  16760. front: {
  16761. height: math.unit(6 + 2/12, "feet"),
  16762. weight: math.unit(135, "lb"),
  16763. name: "Front",
  16764. image: {
  16765. source: "./media/characters/ignatius/front.svg",
  16766. extra: 1380/1259,
  16767. bottom: 27/1407
  16768. }
  16769. },
  16770. },
  16771. [
  16772. {
  16773. name: "Normal",
  16774. height: math.unit(6 + 2/12, "feet"),
  16775. default: true
  16776. },
  16777. ]
  16778. ))
  16779. characterMakers.push(() => makeCharacter(
  16780. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16781. {
  16782. front: {
  16783. height: math.unit(6 + 2 / 12, "feet"),
  16784. weight: math.unit(138, "lb"),
  16785. name: "Front",
  16786. image: {
  16787. source: "./media/characters/mei-li/front.svg",
  16788. extra: 237 / 229,
  16789. bottom: 0.03
  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: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16803. {
  16804. front: {
  16805. height: math.unit(2 + 4 / 12, "feet"),
  16806. weight: math.unit(62, "lb"),
  16807. name: "Front",
  16808. image: {
  16809. source: "./media/characters/puru/front.svg",
  16810. extra: 206 / 149,
  16811. bottom: 0.06
  16812. }
  16813. },
  16814. },
  16815. [
  16816. {
  16817. name: "Normal",
  16818. height: math.unit(2 + 4 / 12, "feet"),
  16819. default: true
  16820. },
  16821. ]
  16822. ))
  16823. characterMakers.push(() => makeCharacter(
  16824. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16825. {
  16826. anthro: {
  16827. height: math.unit(5 + 8/12, "feet"),
  16828. weight: math.unit(200, "lb"),
  16829. energyNeed: math.unit(2000, "kcal"),
  16830. name: "Anthro",
  16831. image: {
  16832. source: "./media/characters/kee/anthro.svg",
  16833. extra: 3251/3184,
  16834. bottom: 250/3501
  16835. }
  16836. },
  16837. taur: {
  16838. height: math.unit(11, "feet"),
  16839. weight: math.unit(500, "lb"),
  16840. energyNeed: math.unit(5000, "kcal"),
  16841. name: "Taur",
  16842. image: {
  16843. source: "./media/characters/kee/taur.svg",
  16844. extra: 1362/1320,
  16845. bottom: 83/1445
  16846. }
  16847. },
  16848. },
  16849. [
  16850. {
  16851. name: "Normal",
  16852. height: math.unit(5 + 8/12, "feet"),
  16853. default: true
  16854. },
  16855. {
  16856. name: "Macro",
  16857. height: math.unit(35, "feet")
  16858. },
  16859. ]
  16860. ))
  16861. characterMakers.push(() => makeCharacter(
  16862. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16863. {
  16864. anthro: {
  16865. height: math.unit(7, "feet"),
  16866. weight: math.unit(190, "lb"),
  16867. name: "Anthro",
  16868. image: {
  16869. source: "./media/characters/cobalt-dracha/anthro.svg",
  16870. extra: 231 / 225,
  16871. bottom: 0.04
  16872. }
  16873. },
  16874. feral: {
  16875. height: math.unit(9 + 7 / 12, "feet"),
  16876. weight: math.unit(294, "lb"),
  16877. name: "Feral",
  16878. image: {
  16879. source: "./media/characters/cobalt-dracha/feral.svg",
  16880. extra: 692 / 633,
  16881. bottom: 0.05
  16882. }
  16883. },
  16884. },
  16885. [
  16886. {
  16887. name: "Normal",
  16888. height: math.unit(7, "feet"),
  16889. default: true
  16890. },
  16891. ]
  16892. ))
  16893. characterMakers.push(() => makeCharacter(
  16894. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16895. {
  16896. fallen: {
  16897. height: math.unit(11 + 8 / 12, "feet"),
  16898. weight: math.unit(485, "lb"),
  16899. name: "Java (Fallen)",
  16900. rename: true,
  16901. image: {
  16902. source: "./media/characters/java/fallen.svg",
  16903. extra: 226 / 208,
  16904. bottom: 0.005
  16905. }
  16906. },
  16907. godkin: {
  16908. height: math.unit(10 + 6 / 12, "feet"),
  16909. weight: math.unit(328, "lb"),
  16910. name: "Java (Godkin)",
  16911. rename: true,
  16912. image: {
  16913. source: "./media/characters/java/godkin.svg",
  16914. extra: 1104/1068,
  16915. bottom: 36/1140
  16916. }
  16917. },
  16918. },
  16919. [
  16920. {
  16921. name: "Normal",
  16922. height: math.unit(11 + 8 / 12, "feet"),
  16923. default: true
  16924. },
  16925. ]
  16926. ))
  16927. characterMakers.push(() => makeCharacter(
  16928. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16929. {
  16930. front: {
  16931. height: math.unit(5 + 9 / 12, "feet"),
  16932. weight: math.unit(170, "lb"),
  16933. name: "Front",
  16934. image: {
  16935. source: "./media/characters/purna/front.svg",
  16936. extra: 239 / 229,
  16937. bottom: 0.01
  16938. }
  16939. },
  16940. },
  16941. [
  16942. {
  16943. name: "Normal",
  16944. height: math.unit(5 + 9 / 12, "feet"),
  16945. default: true
  16946. },
  16947. ]
  16948. ))
  16949. characterMakers.push(() => makeCharacter(
  16950. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16951. {
  16952. front: {
  16953. height: math.unit(5 + 9 / 12, "feet"),
  16954. weight: math.unit(142, "lb"),
  16955. name: "Front",
  16956. image: {
  16957. source: "./media/characters/kuva/front.svg",
  16958. extra: 281 / 271,
  16959. bottom: 0.006
  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: "Embra", species: ["dracha"], tags: ["anthro"] },
  16973. {
  16974. anthro: {
  16975. height: math.unit(9 + 2 / 12, "feet"),
  16976. weight: math.unit(270, "lb"),
  16977. name: "Anthro",
  16978. image: {
  16979. source: "./media/characters/embra/anthro.svg",
  16980. extra: 200 / 187,
  16981. bottom: 0.02
  16982. }
  16983. },
  16984. feral: {
  16985. height: math.unit(18 + 8 / 12, "feet"),
  16986. weight: math.unit(576, "lb"),
  16987. name: "Feral",
  16988. image: {
  16989. source: "./media/characters/embra/feral.svg",
  16990. extra: 152 / 137,
  16991. bottom: 0.037
  16992. }
  16993. },
  16994. },
  16995. [
  16996. {
  16997. name: "Normal",
  16998. height: math.unit(9 + 2 / 12, "feet"),
  16999. default: true
  17000. },
  17001. ]
  17002. ))
  17003. characterMakers.push(() => makeCharacter(
  17004. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17005. {
  17006. anthro: {
  17007. height: math.unit(10 + 9 / 12, "feet"),
  17008. weight: math.unit(224, "lb"),
  17009. name: "Anthro",
  17010. image: {
  17011. source: "./media/characters/grottos/anthro.svg",
  17012. extra: 350 / 332,
  17013. bottom: 0.045
  17014. }
  17015. },
  17016. feral: {
  17017. height: math.unit(20 + 7 / 12, "feet"),
  17018. weight: math.unit(629, "lb"),
  17019. name: "Feral",
  17020. image: {
  17021. source: "./media/characters/grottos/feral.svg",
  17022. extra: 207 / 190,
  17023. bottom: 0.05
  17024. }
  17025. },
  17026. },
  17027. [
  17028. {
  17029. name: "Normal",
  17030. height: math.unit(10 + 9 / 12, "feet"),
  17031. default: true
  17032. },
  17033. ]
  17034. ))
  17035. characterMakers.push(() => makeCharacter(
  17036. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17037. {
  17038. anthro: {
  17039. height: math.unit(9 + 6 / 12, "feet"),
  17040. weight: math.unit(298, "lb"),
  17041. name: "Anthro",
  17042. image: {
  17043. source: "./media/characters/frifna/anthro.svg",
  17044. extra: 282 / 269,
  17045. bottom: 0.015
  17046. }
  17047. },
  17048. feral: {
  17049. height: math.unit(16 + 2 / 12, "feet"),
  17050. weight: math.unit(624, "lb"),
  17051. name: "Feral",
  17052. image: {
  17053. source: "./media/characters/frifna/feral.svg"
  17054. }
  17055. },
  17056. },
  17057. [
  17058. {
  17059. name: "Normal",
  17060. height: math.unit(9 + 6 / 12, "feet"),
  17061. default: true
  17062. },
  17063. ]
  17064. ))
  17065. characterMakers.push(() => makeCharacter(
  17066. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17067. {
  17068. front: {
  17069. height: math.unit(6 + 2 / 12, "feet"),
  17070. weight: math.unit(168, "lb"),
  17071. name: "Front",
  17072. image: {
  17073. source: "./media/characters/elise/front.svg",
  17074. extra: 276 / 271
  17075. }
  17076. },
  17077. },
  17078. [
  17079. {
  17080. name: "Normal",
  17081. height: math.unit(6 + 2 / 12, "feet"),
  17082. default: true
  17083. },
  17084. ]
  17085. ))
  17086. characterMakers.push(() => makeCharacter(
  17087. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17088. {
  17089. front: {
  17090. height: math.unit(5 + 10 / 12, "feet"),
  17091. weight: math.unit(210, "lb"),
  17092. name: "Front",
  17093. image: {
  17094. source: "./media/characters/glade/front.svg",
  17095. extra: 258 / 247,
  17096. bottom: 0.008
  17097. }
  17098. },
  17099. },
  17100. [
  17101. {
  17102. name: "Normal",
  17103. height: math.unit(5 + 10 / 12, "feet"),
  17104. default: true
  17105. },
  17106. ]
  17107. ))
  17108. characterMakers.push(() => makeCharacter(
  17109. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17110. {
  17111. front: {
  17112. height: math.unit(5 + 10 / 12, "feet"),
  17113. weight: math.unit(129, "lb"),
  17114. name: "Front",
  17115. image: {
  17116. source: "./media/characters/rina/front.svg",
  17117. extra: 266 / 255,
  17118. bottom: 0.005
  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: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17132. {
  17133. front: {
  17134. height: math.unit(6 + 1 / 12, "feet"),
  17135. weight: math.unit(192, "lb"),
  17136. name: "Front",
  17137. image: {
  17138. source: "./media/characters/veronica/front.svg",
  17139. extra: 319 / 309,
  17140. bottom: 0.005
  17141. }
  17142. },
  17143. },
  17144. [
  17145. {
  17146. name: "Normal",
  17147. height: math.unit(6 + 1 / 12, "feet"),
  17148. default: true
  17149. },
  17150. ]
  17151. ))
  17152. characterMakers.push(() => makeCharacter(
  17153. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17154. {
  17155. front: {
  17156. height: math.unit(9 + 3 / 12, "feet"),
  17157. weight: math.unit(1100, "lb"),
  17158. name: "Front",
  17159. image: {
  17160. source: "./media/characters/braxton/front.svg",
  17161. extra: 1057 / 984,
  17162. bottom: 0.05
  17163. }
  17164. },
  17165. },
  17166. [
  17167. {
  17168. name: "Normal",
  17169. height: math.unit(9 + 3 / 12, "feet")
  17170. },
  17171. {
  17172. name: "Giant",
  17173. height: math.unit(300, "feet"),
  17174. default: true
  17175. },
  17176. {
  17177. name: "Macro",
  17178. height: math.unit(700, "feet")
  17179. },
  17180. {
  17181. name: "Megamacro",
  17182. height: math.unit(6000, "feet")
  17183. },
  17184. ]
  17185. ))
  17186. characterMakers.push(() => makeCharacter(
  17187. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17188. {
  17189. front: {
  17190. height: math.unit(6 + 7 / 12, "feet"),
  17191. weight: math.unit(150, "lb"),
  17192. name: "Front",
  17193. image: {
  17194. source: "./media/characters/blue-feyonics/front.svg",
  17195. extra: 1403 / 1306,
  17196. bottom: 0.047
  17197. }
  17198. },
  17199. },
  17200. [
  17201. {
  17202. name: "Normal",
  17203. height: math.unit(6 + 7 / 12, "feet"),
  17204. default: true
  17205. },
  17206. ]
  17207. ))
  17208. characterMakers.push(() => makeCharacter(
  17209. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17210. {
  17211. front: {
  17212. height: math.unit(1.8, "meters"),
  17213. weight: math.unit(60, "kg"),
  17214. name: "Front",
  17215. image: {
  17216. source: "./media/characters/maxwell/front.svg",
  17217. extra: 2060 / 1873
  17218. }
  17219. },
  17220. },
  17221. [
  17222. {
  17223. name: "Micro",
  17224. height: math.unit(1, "mm")
  17225. },
  17226. {
  17227. name: "Normal",
  17228. height: math.unit(1.8, "meter"),
  17229. default: true
  17230. },
  17231. {
  17232. name: "Macro",
  17233. height: math.unit(30, "meters")
  17234. },
  17235. {
  17236. name: "Megamacro",
  17237. height: math.unit(10, "km")
  17238. },
  17239. ]
  17240. ))
  17241. characterMakers.push(() => makeCharacter(
  17242. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17243. {
  17244. front: {
  17245. height: math.unit(6, "feet"),
  17246. weight: math.unit(150, "lb"),
  17247. name: "Front",
  17248. image: {
  17249. source: "./media/characters/jack/front.svg",
  17250. extra: 1754 / 1640,
  17251. bottom: 0.01
  17252. }
  17253. },
  17254. },
  17255. [
  17256. {
  17257. name: "Normal",
  17258. height: math.unit(80000, "feet"),
  17259. default: true
  17260. },
  17261. {
  17262. name: "Max size",
  17263. height: math.unit(10, "lightyears")
  17264. },
  17265. ]
  17266. ))
  17267. characterMakers.push(() => makeCharacter(
  17268. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17269. {
  17270. urban: {
  17271. height: math.unit(5, "feet"),
  17272. weight: math.unit(240, "lb"),
  17273. name: "Urban",
  17274. image: {
  17275. source: "./media/characters/cafat/urban.svg",
  17276. extra: 1223/1126,
  17277. bottom: 205/1428
  17278. }
  17279. },
  17280. summer: {
  17281. height: math.unit(5, "feet"),
  17282. weight: math.unit(240, "lb"),
  17283. name: "Summer",
  17284. image: {
  17285. source: "./media/characters/cafat/summer.svg",
  17286. extra: 1223/1126,
  17287. bottom: 205/1428
  17288. }
  17289. },
  17290. winter: {
  17291. height: math.unit(5, "feet"),
  17292. weight: math.unit(240, "lb"),
  17293. name: "Winter",
  17294. image: {
  17295. source: "./media/characters/cafat/winter.svg",
  17296. extra: 1223/1126,
  17297. bottom: 205/1428
  17298. }
  17299. },
  17300. lingerie: {
  17301. height: math.unit(5, "feet"),
  17302. weight: math.unit(240, "lb"),
  17303. name: "Lingerie",
  17304. image: {
  17305. source: "./media/characters/cafat/lingerie.svg",
  17306. extra: 1223/1126,
  17307. bottom: 205/1428
  17308. }
  17309. },
  17310. upright: {
  17311. height: math.unit(6.3, "feet"),
  17312. weight: math.unit(240, "lb"),
  17313. name: "Upright",
  17314. image: {
  17315. source: "./media/characters/cafat/upright.svg",
  17316. bottom: 0.01
  17317. }
  17318. },
  17319. uprightFull: {
  17320. height: math.unit(6.3, "feet"),
  17321. weight: math.unit(240, "lb"),
  17322. name: "Upright (Full)",
  17323. image: {
  17324. source: "./media/characters/cafat/upright-full.svg",
  17325. bottom: 0.01
  17326. }
  17327. },
  17328. },
  17329. [
  17330. {
  17331. name: "Small",
  17332. height: math.unit(5, "feet"),
  17333. default: true
  17334. },
  17335. {
  17336. name: "Large",
  17337. height: math.unit(13, "feet")
  17338. },
  17339. ]
  17340. ))
  17341. characterMakers.push(() => makeCharacter(
  17342. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17343. {
  17344. front: {
  17345. height: math.unit(6, "feet"),
  17346. weight: math.unit(150, "lb"),
  17347. name: "Front",
  17348. image: {
  17349. source: "./media/characters/verin-raharra/front.svg",
  17350. extra: 5019 / 4835,
  17351. bottom: 0.023
  17352. }
  17353. },
  17354. },
  17355. [
  17356. {
  17357. name: "Normal",
  17358. height: math.unit(7 + 5 / 12, "feet"),
  17359. default: true
  17360. },
  17361. {
  17362. name: "Upsized",
  17363. height: math.unit(20, "feet")
  17364. },
  17365. ]
  17366. ))
  17367. characterMakers.push(() => makeCharacter(
  17368. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17369. {
  17370. front: {
  17371. height: math.unit(7, "feet"),
  17372. weight: math.unit(230, "lb"),
  17373. name: "Front",
  17374. image: {
  17375. source: "./media/characters/nakata/front.svg",
  17376. extra: 1.005,
  17377. bottom: 0.01
  17378. }
  17379. },
  17380. },
  17381. [
  17382. {
  17383. name: "Normal",
  17384. height: math.unit(7, "feet"),
  17385. default: true
  17386. },
  17387. {
  17388. name: "Big",
  17389. height: math.unit(14, "feet")
  17390. },
  17391. {
  17392. name: "Macro",
  17393. height: math.unit(400, "feet")
  17394. },
  17395. ]
  17396. ))
  17397. characterMakers.push(() => makeCharacter(
  17398. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17399. {
  17400. front: {
  17401. height: math.unit(4.91, "feet"),
  17402. weight: math.unit(100, "lb"),
  17403. name: "Front",
  17404. image: {
  17405. source: "./media/characters/lily/front.svg",
  17406. extra: 1585 / 1415,
  17407. bottom: 0.02
  17408. }
  17409. },
  17410. },
  17411. [
  17412. {
  17413. name: "Normal",
  17414. height: math.unit(4.91, "feet"),
  17415. default: true
  17416. },
  17417. ]
  17418. ))
  17419. characterMakers.push(() => makeCharacter(
  17420. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17421. {
  17422. laying: {
  17423. height: math.unit(4 + 4 / 12, "feet"),
  17424. weight: math.unit(600, "lb"),
  17425. name: "Laying",
  17426. image: {
  17427. source: "./media/characters/sheila/laying.svg",
  17428. extra: 1333 / 1265,
  17429. bottom: 0.16
  17430. }
  17431. },
  17432. },
  17433. [
  17434. {
  17435. name: "Normal",
  17436. height: math.unit(4 + 4 / 12, "feet"),
  17437. default: true
  17438. },
  17439. ]
  17440. ))
  17441. characterMakers.push(() => makeCharacter(
  17442. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17443. {
  17444. front: {
  17445. height: math.unit(6, "feet"),
  17446. weight: math.unit(190, "lb"),
  17447. name: "Front",
  17448. image: {
  17449. source: "./media/characters/sax/front.svg",
  17450. extra: 1187 / 973,
  17451. bottom: 0.042
  17452. }
  17453. },
  17454. },
  17455. [
  17456. {
  17457. name: "Micro",
  17458. height: math.unit(4, "inches"),
  17459. default: true
  17460. },
  17461. ]
  17462. ))
  17463. characterMakers.push(() => makeCharacter(
  17464. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17465. {
  17466. front: {
  17467. height: math.unit(6, "feet"),
  17468. weight: math.unit(150, "lb"),
  17469. name: "Front",
  17470. image: {
  17471. source: "./media/characters/pandora/front.svg",
  17472. extra: 2720 / 2556,
  17473. bottom: 0.015
  17474. }
  17475. },
  17476. back: {
  17477. height: math.unit(6, "feet"),
  17478. weight: math.unit(150, "lb"),
  17479. name: "Back",
  17480. image: {
  17481. source: "./media/characters/pandora/back.svg",
  17482. extra: 2720 / 2556,
  17483. bottom: 0.01
  17484. }
  17485. },
  17486. beans: {
  17487. height: math.unit(6 / 8, "feet"),
  17488. name: "Beans",
  17489. image: {
  17490. source: "./media/characters/pandora/beans.svg"
  17491. }
  17492. },
  17493. collar: {
  17494. height: math.unit(0.31, "feet"),
  17495. name: "Collar",
  17496. image: {
  17497. source: "./media/characters/pandora/collar.svg"
  17498. }
  17499. },
  17500. skirt: {
  17501. height: math.unit(6, "feet"),
  17502. weight: math.unit(150, "lb"),
  17503. name: "Skirt",
  17504. image: {
  17505. source: "./media/characters/pandora/skirt.svg",
  17506. extra: 1622 / 1525,
  17507. bottom: 0.015
  17508. }
  17509. },
  17510. hoodie: {
  17511. height: math.unit(6, "feet"),
  17512. weight: math.unit(150, "lb"),
  17513. name: "Hoodie",
  17514. image: {
  17515. source: "./media/characters/pandora/hoodie.svg",
  17516. extra: 1622 / 1525,
  17517. bottom: 0.015
  17518. }
  17519. },
  17520. casual: {
  17521. height: math.unit(6, "feet"),
  17522. weight: math.unit(150, "lb"),
  17523. name: "Casual",
  17524. image: {
  17525. source: "./media/characters/pandora/casual.svg",
  17526. extra: 1622 / 1525,
  17527. bottom: 0.015
  17528. }
  17529. },
  17530. },
  17531. [
  17532. {
  17533. name: "Normal",
  17534. height: math.unit(6, "feet")
  17535. },
  17536. {
  17537. name: "Big Steppy",
  17538. height: math.unit(1, "km"),
  17539. default: true
  17540. },
  17541. {
  17542. name: "Galactic Steppy",
  17543. height: math.unit(2, "gigameters")
  17544. },
  17545. ]
  17546. ))
  17547. characterMakers.push(() => makeCharacter(
  17548. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17549. {
  17550. side: {
  17551. height: math.unit(10, "feet"),
  17552. weight: math.unit(800, "kg"),
  17553. name: "Side",
  17554. image: {
  17555. source: "./media/characters/venio-darcony/side.svg",
  17556. extra: 1373 / 1003,
  17557. bottom: 0.037
  17558. }
  17559. },
  17560. front: {
  17561. height: math.unit(19, "feet"),
  17562. weight: math.unit(800, "kg"),
  17563. name: "Front",
  17564. image: {
  17565. source: "./media/characters/venio-darcony/front.svg"
  17566. }
  17567. },
  17568. back: {
  17569. height: math.unit(19, "feet"),
  17570. weight: math.unit(800, "kg"),
  17571. name: "Back",
  17572. image: {
  17573. source: "./media/characters/venio-darcony/back.svg"
  17574. }
  17575. },
  17576. sideNsfw: {
  17577. height: math.unit(10, "feet"),
  17578. weight: math.unit(800, "kg"),
  17579. name: "Side (NSFW)",
  17580. image: {
  17581. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17582. extra: 1373 / 1003,
  17583. bottom: 0.037
  17584. }
  17585. },
  17586. frontNsfw: {
  17587. height: math.unit(19, "feet"),
  17588. weight: math.unit(800, "kg"),
  17589. name: "Front (NSFW)",
  17590. image: {
  17591. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17592. }
  17593. },
  17594. backNsfw: {
  17595. height: math.unit(19, "feet"),
  17596. weight: math.unit(800, "kg"),
  17597. name: "Back (NSFW)",
  17598. image: {
  17599. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17600. }
  17601. },
  17602. sideArmored: {
  17603. height: math.unit(10, "feet"),
  17604. weight: math.unit(800, "kg"),
  17605. name: "Side (Armored)",
  17606. image: {
  17607. source: "./media/characters/venio-darcony/side-armored.svg",
  17608. extra: 1373 / 1003,
  17609. bottom: 0.037
  17610. }
  17611. },
  17612. frontArmored: {
  17613. height: math.unit(19, "feet"),
  17614. weight: math.unit(900, "kg"),
  17615. name: "Front (Armored)",
  17616. image: {
  17617. source: "./media/characters/venio-darcony/front-armored.svg"
  17618. }
  17619. },
  17620. backArmored: {
  17621. height: math.unit(19, "feet"),
  17622. weight: math.unit(900, "kg"),
  17623. name: "Back (Armored)",
  17624. image: {
  17625. source: "./media/characters/venio-darcony/back-armored.svg"
  17626. }
  17627. },
  17628. sword: {
  17629. height: math.unit(10, "feet"),
  17630. weight: math.unit(50, "lb"),
  17631. name: "Sword",
  17632. image: {
  17633. source: "./media/characters/venio-darcony/sword.svg"
  17634. }
  17635. },
  17636. },
  17637. [
  17638. {
  17639. name: "Normal",
  17640. height: math.unit(10, "feet")
  17641. },
  17642. {
  17643. name: "Macro",
  17644. height: math.unit(130, "feet"),
  17645. default: true
  17646. },
  17647. {
  17648. name: "Macro+",
  17649. height: math.unit(240, "feet")
  17650. },
  17651. ]
  17652. ))
  17653. characterMakers.push(() => makeCharacter(
  17654. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17655. {
  17656. front: {
  17657. height: math.unit(6, "feet"),
  17658. weight: math.unit(150, "lb"),
  17659. name: "Front",
  17660. image: {
  17661. source: "./media/characters/veski/front.svg",
  17662. extra: 1299 / 1225,
  17663. bottom: 0.04
  17664. }
  17665. },
  17666. back: {
  17667. height: math.unit(6, "feet"),
  17668. weight: math.unit(150, "lb"),
  17669. name: "Back",
  17670. image: {
  17671. source: "./media/characters/veski/back.svg",
  17672. extra: 1299 / 1225,
  17673. bottom: 0.008
  17674. }
  17675. },
  17676. maw: {
  17677. height: math.unit(1.5 * 1.21, "feet"),
  17678. name: "Maw",
  17679. image: {
  17680. source: "./media/characters/veski/maw.svg"
  17681. }
  17682. },
  17683. },
  17684. [
  17685. {
  17686. name: "Macro",
  17687. height: math.unit(2, "km"),
  17688. default: true
  17689. },
  17690. ]
  17691. ))
  17692. characterMakers.push(() => makeCharacter(
  17693. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17694. {
  17695. front: {
  17696. height: math.unit(5 + 7 / 12, "feet"),
  17697. name: "Front",
  17698. image: {
  17699. source: "./media/characters/isabelle/front.svg",
  17700. extra: 2130 / 1976,
  17701. bottom: 0.05
  17702. }
  17703. },
  17704. },
  17705. [
  17706. {
  17707. name: "Supermicro",
  17708. height: math.unit(10, "micrometers")
  17709. },
  17710. {
  17711. name: "Micro",
  17712. height: math.unit(1, "inch")
  17713. },
  17714. {
  17715. name: "Tiny",
  17716. height: math.unit(5, "inches")
  17717. },
  17718. {
  17719. name: "Standard",
  17720. height: math.unit(5 + 7 / 12, "inches")
  17721. },
  17722. {
  17723. name: "Macro",
  17724. height: math.unit(80, "meters"),
  17725. default: true
  17726. },
  17727. {
  17728. name: "Megamacro",
  17729. height: math.unit(250, "meters")
  17730. },
  17731. {
  17732. name: "Gigamacro",
  17733. height: math.unit(5, "km")
  17734. },
  17735. {
  17736. name: "Cosmic",
  17737. height: math.unit(2.5e6, "miles")
  17738. },
  17739. ]
  17740. ))
  17741. characterMakers.push(() => makeCharacter(
  17742. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17743. {
  17744. front: {
  17745. height: math.unit(6, "feet"),
  17746. weight: math.unit(150, "lb"),
  17747. name: "Front",
  17748. image: {
  17749. source: "./media/characters/hanzo/front.svg",
  17750. extra: 374 / 344,
  17751. bottom: 0.02
  17752. }
  17753. },
  17754. },
  17755. [
  17756. {
  17757. name: "Normal",
  17758. height: math.unit(8, "feet"),
  17759. default: true
  17760. },
  17761. ]
  17762. ))
  17763. characterMakers.push(() => makeCharacter(
  17764. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17765. {
  17766. front: {
  17767. height: math.unit(7, "feet"),
  17768. weight: math.unit(130, "lb"),
  17769. name: "Front",
  17770. image: {
  17771. source: "./media/characters/anna/front.svg",
  17772. extra: 169 / 145,
  17773. bottom: 0.06
  17774. }
  17775. },
  17776. full: {
  17777. height: math.unit(4.96, "feet"),
  17778. weight: math.unit(220, "lb"),
  17779. name: "Full",
  17780. image: {
  17781. source: "./media/characters/anna/full.svg",
  17782. extra: 138 / 114,
  17783. bottom: 0.15
  17784. }
  17785. },
  17786. tongue: {
  17787. height: math.unit(2.53, "feet"),
  17788. name: "Tongue",
  17789. image: {
  17790. source: "./media/characters/anna/tongue.svg"
  17791. }
  17792. },
  17793. },
  17794. [
  17795. {
  17796. name: "Normal",
  17797. height: math.unit(7, "feet"),
  17798. default: true
  17799. },
  17800. ]
  17801. ))
  17802. characterMakers.push(() => makeCharacter(
  17803. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17804. {
  17805. front: {
  17806. height: math.unit(7, "feet"),
  17807. weight: math.unit(150, "lb"),
  17808. name: "Front",
  17809. image: {
  17810. source: "./media/characters/ian-corvid/front.svg",
  17811. extra: 150 / 142,
  17812. bottom: 0.02
  17813. }
  17814. },
  17815. back: {
  17816. height: math.unit(7, "feet"),
  17817. weight: math.unit(150, "lb"),
  17818. name: "Back",
  17819. image: {
  17820. source: "./media/characters/ian-corvid/back.svg",
  17821. extra: 150 / 143,
  17822. bottom: 0.01
  17823. }
  17824. },
  17825. stomping: {
  17826. height: math.unit(7, "feet"),
  17827. weight: math.unit(150, "lb"),
  17828. name: "Stomping",
  17829. image: {
  17830. source: "./media/characters/ian-corvid/stomping.svg",
  17831. extra: 76 / 72
  17832. }
  17833. },
  17834. sitting: {
  17835. height: math.unit(7 / 1.8, "feet"),
  17836. weight: math.unit(150, "lb"),
  17837. name: "Sitting",
  17838. image: {
  17839. source: "./media/characters/ian-corvid/sitting.svg",
  17840. extra: 1400 / 1269,
  17841. bottom: 0.15
  17842. }
  17843. },
  17844. },
  17845. [
  17846. {
  17847. name: "Tiny Microw",
  17848. height: math.unit(1, "inch")
  17849. },
  17850. {
  17851. name: "Microw",
  17852. height: math.unit(6, "inches")
  17853. },
  17854. {
  17855. name: "Crow",
  17856. height: math.unit(7 + 1 / 12, "feet"),
  17857. default: true
  17858. },
  17859. {
  17860. name: "Macrow",
  17861. height: math.unit(176, "feet")
  17862. },
  17863. ]
  17864. ))
  17865. characterMakers.push(() => makeCharacter(
  17866. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17867. {
  17868. front: {
  17869. height: math.unit(5 + 7 / 12, "feet"),
  17870. weight: math.unit(147, "lb"),
  17871. name: "Front",
  17872. image: {
  17873. source: "./media/characters/natalie-kellon/front.svg",
  17874. extra: 1214 / 1141,
  17875. bottom: 0.02
  17876. }
  17877. },
  17878. },
  17879. [
  17880. {
  17881. name: "Micro",
  17882. height: math.unit(1 / 16, "inch")
  17883. },
  17884. {
  17885. name: "Tiny",
  17886. height: math.unit(4, "inches")
  17887. },
  17888. {
  17889. name: "Normal",
  17890. height: math.unit(5 + 7 / 12, "feet"),
  17891. default: true
  17892. },
  17893. {
  17894. name: "Amazon",
  17895. height: math.unit(12, "feet")
  17896. },
  17897. {
  17898. name: "Giantess",
  17899. height: math.unit(160, "meters")
  17900. },
  17901. {
  17902. name: "Titaness",
  17903. height: math.unit(800, "meters")
  17904. },
  17905. ]
  17906. ))
  17907. characterMakers.push(() => makeCharacter(
  17908. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17909. {
  17910. front: {
  17911. height: math.unit(6, "feet"),
  17912. weight: math.unit(150, "lb"),
  17913. name: "Front",
  17914. image: {
  17915. source: "./media/characters/alluria/front.svg",
  17916. extra: 806 / 738,
  17917. bottom: 0.01
  17918. }
  17919. },
  17920. side: {
  17921. height: math.unit(6, "feet"),
  17922. weight: math.unit(150, "lb"),
  17923. name: "Side",
  17924. image: {
  17925. source: "./media/characters/alluria/side.svg",
  17926. extra: 800 / 750,
  17927. }
  17928. },
  17929. back: {
  17930. height: math.unit(6, "feet"),
  17931. weight: math.unit(150, "lb"),
  17932. name: "Back",
  17933. image: {
  17934. source: "./media/characters/alluria/back.svg",
  17935. extra: 806 / 738,
  17936. }
  17937. },
  17938. frontMaid: {
  17939. height: math.unit(6, "feet"),
  17940. weight: math.unit(150, "lb"),
  17941. name: "Front (Maid)",
  17942. image: {
  17943. source: "./media/characters/alluria/front-maid.svg",
  17944. extra: 806 / 738,
  17945. bottom: 0.01
  17946. }
  17947. },
  17948. sideMaid: {
  17949. height: math.unit(6, "feet"),
  17950. weight: math.unit(150, "lb"),
  17951. name: "Side (Maid)",
  17952. image: {
  17953. source: "./media/characters/alluria/side-maid.svg",
  17954. extra: 800 / 750,
  17955. bottom: 0.005
  17956. }
  17957. },
  17958. backMaid: {
  17959. height: math.unit(6, "feet"),
  17960. weight: math.unit(150, "lb"),
  17961. name: "Back (Maid)",
  17962. image: {
  17963. source: "./media/characters/alluria/back-maid.svg",
  17964. extra: 806 / 738,
  17965. }
  17966. },
  17967. },
  17968. [
  17969. {
  17970. name: "Micro",
  17971. height: math.unit(6, "inches"),
  17972. default: true
  17973. },
  17974. ]
  17975. ))
  17976. characterMakers.push(() => makeCharacter(
  17977. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17978. {
  17979. front: {
  17980. height: math.unit(6, "feet"),
  17981. weight: math.unit(150, "lb"),
  17982. name: "Front",
  17983. image: {
  17984. source: "./media/characters/kyle/front.svg",
  17985. extra: 1069 / 962,
  17986. bottom: 77.228 / 1727.45
  17987. }
  17988. },
  17989. },
  17990. [
  17991. {
  17992. name: "Macro",
  17993. height: math.unit(150, "feet"),
  17994. default: true
  17995. },
  17996. ]
  17997. ))
  17998. characterMakers.push(() => makeCharacter(
  17999. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18000. {
  18001. front: {
  18002. height: math.unit(6, "feet"),
  18003. weight: math.unit(300, "lb"),
  18004. name: "Front",
  18005. image: {
  18006. source: "./media/characters/duncan/front.svg",
  18007. extra: 1650 / 1482,
  18008. bottom: 0.05
  18009. }
  18010. },
  18011. },
  18012. [
  18013. {
  18014. name: "Macro",
  18015. height: math.unit(100, "feet"),
  18016. default: true
  18017. },
  18018. ]
  18019. ))
  18020. characterMakers.push(() => makeCharacter(
  18021. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18022. {
  18023. front: {
  18024. height: math.unit(5 + 4 / 12, "feet"),
  18025. weight: math.unit(220, "lb"),
  18026. name: "Front",
  18027. image: {
  18028. source: "./media/characters/memory/front.svg",
  18029. extra: 3641 / 3545,
  18030. bottom: 0.03
  18031. }
  18032. },
  18033. back: {
  18034. height: math.unit(5 + 4 / 12, "feet"),
  18035. weight: math.unit(220, "lb"),
  18036. name: "Back",
  18037. image: {
  18038. source: "./media/characters/memory/back.svg",
  18039. extra: 3641 / 3545,
  18040. bottom: 0.025
  18041. }
  18042. },
  18043. frontSkirt: {
  18044. height: math.unit(5 + 4 / 12, "feet"),
  18045. weight: math.unit(220, "lb"),
  18046. name: "Front (Skirt)",
  18047. image: {
  18048. source: "./media/characters/memory/front-skirt.svg",
  18049. extra: 3641 / 3545,
  18050. bottom: 0.03
  18051. }
  18052. },
  18053. frontDress: {
  18054. height: math.unit(5 + 4 / 12, "feet"),
  18055. weight: math.unit(220, "lb"),
  18056. name: "Front (Dress)",
  18057. image: {
  18058. source: "./media/characters/memory/front-dress.svg",
  18059. extra: 3641 / 3545,
  18060. bottom: 0.03
  18061. }
  18062. },
  18063. },
  18064. [
  18065. {
  18066. name: "Micro",
  18067. height: math.unit(6, "inches"),
  18068. default: true
  18069. },
  18070. {
  18071. name: "Normal",
  18072. height: math.unit(5 + 4 / 12, "feet")
  18073. },
  18074. ]
  18075. ))
  18076. characterMakers.push(() => makeCharacter(
  18077. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18078. {
  18079. front: {
  18080. height: math.unit(4 + 11 / 12, "feet"),
  18081. weight: math.unit(100, "lb"),
  18082. name: "Front",
  18083. image: {
  18084. source: "./media/characters/luno/front.svg",
  18085. extra: 1535 / 1487,
  18086. bottom: 0.03
  18087. }
  18088. },
  18089. },
  18090. [
  18091. {
  18092. name: "Micro",
  18093. height: math.unit(3, "inches")
  18094. },
  18095. {
  18096. name: "Normal",
  18097. height: math.unit(4 + 11 / 12, "feet"),
  18098. default: true
  18099. },
  18100. {
  18101. name: "Macro",
  18102. height: math.unit(300, "feet")
  18103. },
  18104. {
  18105. name: "Megamacro",
  18106. height: math.unit(700, "miles")
  18107. },
  18108. ]
  18109. ))
  18110. characterMakers.push(() => makeCharacter(
  18111. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18112. {
  18113. front: {
  18114. height: math.unit(6 + 2 / 12, "feet"),
  18115. weight: math.unit(170, "lb"),
  18116. name: "Front",
  18117. image: {
  18118. source: "./media/characters/jamesy/front.svg",
  18119. extra: 440 / 382,
  18120. bottom: 0.005
  18121. }
  18122. },
  18123. },
  18124. [
  18125. {
  18126. name: "Micro",
  18127. height: math.unit(3, "inches")
  18128. },
  18129. {
  18130. name: "Normal",
  18131. height: math.unit(6 + 2 / 12, "feet"),
  18132. default: true
  18133. },
  18134. {
  18135. name: "Macro",
  18136. height: math.unit(300, "feet")
  18137. },
  18138. {
  18139. name: "Megamacro",
  18140. height: math.unit(700, "miles")
  18141. },
  18142. ]
  18143. ))
  18144. characterMakers.push(() => makeCharacter(
  18145. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18146. {
  18147. front: {
  18148. height: math.unit(6, "feet"),
  18149. weight: math.unit(160, "lb"),
  18150. name: "Front",
  18151. image: {
  18152. source: "./media/characters/mark/front.svg",
  18153. extra: 3300 / 3100,
  18154. bottom: 136.42 / 3440.47
  18155. }
  18156. },
  18157. },
  18158. [
  18159. {
  18160. name: "Macro",
  18161. height: math.unit(120, "meters")
  18162. },
  18163. {
  18164. name: "Bigger Macro",
  18165. height: math.unit(350, "meters")
  18166. },
  18167. {
  18168. name: "Megamacro",
  18169. height: math.unit(8, "km"),
  18170. default: true
  18171. },
  18172. {
  18173. name: "Continental",
  18174. height: math.unit(4550, "km")
  18175. },
  18176. {
  18177. name: "Planetary",
  18178. height: math.unit(65000, "km")
  18179. },
  18180. ]
  18181. ))
  18182. characterMakers.push(() => makeCharacter(
  18183. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18184. {
  18185. front: {
  18186. height: math.unit(6, "feet"),
  18187. weight: math.unit(400, "lb"),
  18188. name: "Front",
  18189. image: {
  18190. source: "./media/characters/mac/front.svg",
  18191. extra: 1048 / 987.7,
  18192. bottom: 60 / 1107.6,
  18193. }
  18194. },
  18195. },
  18196. [
  18197. {
  18198. name: "Macro",
  18199. height: math.unit(500, "feet"),
  18200. default: true
  18201. },
  18202. ]
  18203. ))
  18204. characterMakers.push(() => makeCharacter(
  18205. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18206. {
  18207. front: {
  18208. height: math.unit(5 + 2 / 12, "feet"),
  18209. weight: math.unit(190, "lb"),
  18210. name: "Front",
  18211. image: {
  18212. source: "./media/characters/bari/front.svg",
  18213. extra: 3156 / 2880,
  18214. bottom: 0.03
  18215. }
  18216. },
  18217. back: {
  18218. height: math.unit(5 + 2 / 12, "feet"),
  18219. weight: math.unit(190, "lb"),
  18220. name: "Back",
  18221. image: {
  18222. source: "./media/characters/bari/back.svg",
  18223. extra: 3260 / 2834,
  18224. bottom: 0.025
  18225. }
  18226. },
  18227. frontPlush: {
  18228. height: math.unit(5 + 2 / 12, "feet"),
  18229. weight: math.unit(190, "lb"),
  18230. name: "Front (Plush)",
  18231. image: {
  18232. source: "./media/characters/bari/front-plush.svg",
  18233. extra: 1112 / 1061,
  18234. bottom: 0.002
  18235. }
  18236. },
  18237. },
  18238. [
  18239. {
  18240. name: "Micro",
  18241. height: math.unit(3, "inches")
  18242. },
  18243. {
  18244. name: "Normal",
  18245. height: math.unit(5 + 2 / 12, "feet"),
  18246. default: true
  18247. },
  18248. {
  18249. name: "Macro",
  18250. height: math.unit(20, "feet")
  18251. },
  18252. ]
  18253. ))
  18254. characterMakers.push(() => makeCharacter(
  18255. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18256. {
  18257. front: {
  18258. height: math.unit(6 + 1 / 12, "feet"),
  18259. weight: math.unit(275, "lb"),
  18260. name: "Front",
  18261. image: {
  18262. source: "./media/characters/hunter-misha-raven/front.svg"
  18263. }
  18264. },
  18265. },
  18266. [
  18267. {
  18268. name: "Mortal",
  18269. height: math.unit(6 + 1 / 12, "feet")
  18270. },
  18271. {
  18272. name: "Divine",
  18273. height: math.unit(1.12134e34, "parsecs"),
  18274. default: true
  18275. },
  18276. ]
  18277. ))
  18278. characterMakers.push(() => makeCharacter(
  18279. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18280. {
  18281. front: {
  18282. height: math.unit(6 + 3 / 12, "feet"),
  18283. weight: math.unit(220, "lb"),
  18284. name: "Front",
  18285. image: {
  18286. source: "./media/characters/max-calore/front.svg",
  18287. extra: 1700 / 1648,
  18288. bottom: 0.01
  18289. }
  18290. },
  18291. back: {
  18292. height: math.unit(6 + 3 / 12, "feet"),
  18293. weight: math.unit(220, "lb"),
  18294. name: "Back",
  18295. image: {
  18296. source: "./media/characters/max-calore/back.svg",
  18297. extra: 1700 / 1648,
  18298. bottom: 0.01
  18299. }
  18300. },
  18301. },
  18302. [
  18303. {
  18304. name: "Normal",
  18305. height: math.unit(6 + 3 / 12, "feet"),
  18306. default: true
  18307. },
  18308. ]
  18309. ))
  18310. characterMakers.push(() => makeCharacter(
  18311. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18312. {
  18313. side: {
  18314. height: math.unit(2 + 8 / 12, "feet"),
  18315. weight: math.unit(99, "lb"),
  18316. name: "Side",
  18317. image: {
  18318. source: "./media/characters/aspen/side.svg",
  18319. extra: 152 / 138,
  18320. bottom: 0.032
  18321. }
  18322. },
  18323. },
  18324. [
  18325. {
  18326. name: "Normal",
  18327. height: math.unit(2 + 8 / 12, "feet"),
  18328. default: true
  18329. },
  18330. ]
  18331. ))
  18332. characterMakers.push(() => makeCharacter(
  18333. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18334. {
  18335. side: {
  18336. height: math.unit(3 + 2 / 12, "feet"),
  18337. weight: math.unit(224, "lb"),
  18338. name: "Side",
  18339. image: {
  18340. source: "./media/characters/sheila-feral-wolf/side.svg",
  18341. extra: 179 / 166,
  18342. bottom: 0.03
  18343. }
  18344. },
  18345. },
  18346. [
  18347. {
  18348. name: "Normal",
  18349. height: math.unit(3 + 2 / 12, "feet"),
  18350. default: true
  18351. },
  18352. ]
  18353. ))
  18354. characterMakers.push(() => makeCharacter(
  18355. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18356. {
  18357. side: {
  18358. height: math.unit(1 + 9 / 12, "feet"),
  18359. weight: math.unit(38, "lb"),
  18360. name: "Side",
  18361. image: {
  18362. source: "./media/characters/michelle/side.svg",
  18363. extra: 147 / 136.7,
  18364. bottom: 0.03
  18365. }
  18366. },
  18367. },
  18368. [
  18369. {
  18370. name: "Normal",
  18371. height: math.unit(1 + 9 / 12, "feet"),
  18372. default: true
  18373. },
  18374. ]
  18375. ))
  18376. characterMakers.push(() => makeCharacter(
  18377. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18378. {
  18379. front: {
  18380. height: math.unit(1.54, "feet"),
  18381. weight: math.unit(50, "lb"),
  18382. name: "Front",
  18383. image: {
  18384. source: "./media/characters/nino/front.svg"
  18385. }
  18386. },
  18387. },
  18388. [
  18389. {
  18390. name: "Normal",
  18391. height: math.unit(1.54, "feet"),
  18392. default: true
  18393. },
  18394. ]
  18395. ))
  18396. characterMakers.push(() => makeCharacter(
  18397. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18398. {
  18399. front: {
  18400. height: math.unit(1.49, "feet"),
  18401. weight: math.unit(45, "lb"),
  18402. name: "Front",
  18403. image: {
  18404. source: "./media/characters/viola/front.svg"
  18405. }
  18406. },
  18407. },
  18408. [
  18409. {
  18410. name: "Normal",
  18411. height: math.unit(1.49, "feet"),
  18412. default: true
  18413. },
  18414. ]
  18415. ))
  18416. characterMakers.push(() => makeCharacter(
  18417. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18418. {
  18419. front: {
  18420. height: math.unit(6 + 5 / 12, "feet"),
  18421. weight: math.unit(580, "lb"),
  18422. name: "Front",
  18423. image: {
  18424. source: "./media/characters/atlas/front.svg",
  18425. extra: 298.5 / 290,
  18426. bottom: 0.015
  18427. }
  18428. },
  18429. },
  18430. [
  18431. {
  18432. name: "Normal",
  18433. height: math.unit(6 + 5 / 12, "feet"),
  18434. default: true
  18435. },
  18436. ]
  18437. ))
  18438. characterMakers.push(() => makeCharacter(
  18439. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18440. {
  18441. side: {
  18442. height: math.unit(15.6, "inches"),
  18443. weight: math.unit(10, "lb"),
  18444. name: "Side",
  18445. image: {
  18446. source: "./media/characters/davy/side.svg",
  18447. extra: 200 / 170,
  18448. bottom: 0.01
  18449. }
  18450. },
  18451. },
  18452. [
  18453. {
  18454. name: "Normal",
  18455. height: math.unit(15.6, "inches"),
  18456. default: true
  18457. },
  18458. ]
  18459. ))
  18460. characterMakers.push(() => makeCharacter(
  18461. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18462. {
  18463. side: {
  18464. height: math.unit(4 + 8 / 12, "feet"),
  18465. weight: math.unit(166, "lb"),
  18466. name: "Side",
  18467. image: {
  18468. source: "./media/characters/fiona/side.svg",
  18469. extra: 232 / 220,
  18470. bottom: 0.03
  18471. }
  18472. },
  18473. },
  18474. [
  18475. {
  18476. name: "Normal",
  18477. height: math.unit(4 + 8 / 12, "feet"),
  18478. default: true
  18479. },
  18480. ]
  18481. ))
  18482. characterMakers.push(() => makeCharacter(
  18483. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18484. {
  18485. front: {
  18486. height: math.unit(26, "inches"),
  18487. weight: math.unit(35, "lb"),
  18488. name: "Front",
  18489. image: {
  18490. source: "./media/characters/lyla/front.svg",
  18491. bottom: 0.1
  18492. }
  18493. },
  18494. },
  18495. [
  18496. {
  18497. name: "Normal",
  18498. height: math.unit(3, "feet"),
  18499. default: true
  18500. },
  18501. ]
  18502. ))
  18503. characterMakers.push(() => makeCharacter(
  18504. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18505. {
  18506. side: {
  18507. height: math.unit(1.8, "feet"),
  18508. weight: math.unit(44, "lb"),
  18509. name: "Side",
  18510. image: {
  18511. source: "./media/characters/perseus/side.svg",
  18512. bottom: 0.21
  18513. }
  18514. },
  18515. },
  18516. [
  18517. {
  18518. name: "Normal",
  18519. height: math.unit(1.8, "feet"),
  18520. default: true
  18521. },
  18522. ]
  18523. ))
  18524. characterMakers.push(() => makeCharacter(
  18525. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18526. {
  18527. side: {
  18528. height: math.unit(4 + 2 / 12, "feet"),
  18529. weight: math.unit(20, "lb"),
  18530. name: "Side",
  18531. image: {
  18532. source: "./media/characters/remus/side.svg"
  18533. }
  18534. },
  18535. },
  18536. [
  18537. {
  18538. name: "Normal",
  18539. height: math.unit(4 + 2 / 12, "feet"),
  18540. default: true
  18541. },
  18542. ]
  18543. ))
  18544. characterMakers.push(() => makeCharacter(
  18545. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18546. {
  18547. front: {
  18548. height: math.unit(4 + 11 / 12, "feet"),
  18549. weight: math.unit(114, "lb"),
  18550. name: "Front",
  18551. image: {
  18552. source: "./media/characters/raf/front.svg",
  18553. extra: 1504/1339,
  18554. bottom: 26/1530
  18555. }
  18556. },
  18557. side: {
  18558. height: math.unit(4 + 11 / 12, "feet"),
  18559. weight: math.unit(114, "lb"),
  18560. name: "Side",
  18561. image: {
  18562. source: "./media/characters/raf/side.svg",
  18563. extra: 1466/1316,
  18564. bottom: 29/1495
  18565. }
  18566. },
  18567. paw: {
  18568. height: math.unit(1.45, "feet"),
  18569. name: "Paw",
  18570. image: {
  18571. source: "./media/characters/raf/paw.svg"
  18572. },
  18573. extraAttributes: {
  18574. "toeSize": {
  18575. name: "Toe Size",
  18576. power: 2,
  18577. type: "area",
  18578. base: math.unit(0.004, "m^2")
  18579. },
  18580. "padSize": {
  18581. name: "Pad Size",
  18582. power: 2,
  18583. type: "area",
  18584. base: math.unit(0.04, "m^2")
  18585. },
  18586. "footSize": {
  18587. name: "Foot Size",
  18588. power: 2,
  18589. type: "area",
  18590. base: math.unit(0.08, "m^2")
  18591. },
  18592. }
  18593. },
  18594. },
  18595. [
  18596. {
  18597. name: "Micro",
  18598. height: math.unit(2, "inches")
  18599. },
  18600. {
  18601. name: "Normal",
  18602. height: math.unit(4 + 11 / 12, "feet"),
  18603. default: true
  18604. },
  18605. {
  18606. name: "Macro",
  18607. height: math.unit(70, "feet")
  18608. },
  18609. ]
  18610. ))
  18611. characterMakers.push(() => makeCharacter(
  18612. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18613. {
  18614. front: {
  18615. height: math.unit(1.5, "meters"),
  18616. weight: math.unit(68, "kg"),
  18617. name: "Front",
  18618. image: {
  18619. source: "./media/characters/liam-einarr/front.svg",
  18620. extra: 2822 / 2666
  18621. }
  18622. },
  18623. back: {
  18624. height: math.unit(1.5, "meters"),
  18625. weight: math.unit(68, "kg"),
  18626. name: "Back",
  18627. image: {
  18628. source: "./media/characters/liam-einarr/back.svg",
  18629. extra: 2822 / 2666,
  18630. bottom: 0.015
  18631. }
  18632. },
  18633. },
  18634. [
  18635. {
  18636. name: "Normal",
  18637. height: math.unit(1.5, "meters"),
  18638. default: true
  18639. },
  18640. {
  18641. name: "Macro",
  18642. height: math.unit(150, "meters")
  18643. },
  18644. {
  18645. name: "Megamacro",
  18646. height: math.unit(35, "km")
  18647. },
  18648. ]
  18649. ))
  18650. characterMakers.push(() => makeCharacter(
  18651. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18652. {
  18653. front: {
  18654. height: math.unit(6, "feet"),
  18655. weight: math.unit(75, "kg"),
  18656. name: "Front",
  18657. image: {
  18658. source: "./media/characters/linda/front.svg",
  18659. extra: 930 / 874,
  18660. bottom: 0.004
  18661. }
  18662. },
  18663. },
  18664. [
  18665. {
  18666. name: "Normal",
  18667. height: math.unit(6, "feet"),
  18668. default: true
  18669. },
  18670. ]
  18671. ))
  18672. characterMakers.push(() => makeCharacter(
  18673. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18674. {
  18675. front: {
  18676. height: math.unit(6 + 8 / 12, "feet"),
  18677. weight: math.unit(220, "lb"),
  18678. name: "Front",
  18679. image: {
  18680. source: "./media/characters/caylex/front.svg",
  18681. extra: 821 / 772,
  18682. bottom: 0.07
  18683. }
  18684. },
  18685. back: {
  18686. height: math.unit(6 + 8 / 12, "feet"),
  18687. weight: math.unit(220, "lb"),
  18688. name: "Back",
  18689. image: {
  18690. source: "./media/characters/caylex/back.svg",
  18691. extra: 821 / 772,
  18692. bottom: 0.022
  18693. }
  18694. },
  18695. hand: {
  18696. height: math.unit(1.25, "feet"),
  18697. name: "Hand",
  18698. image: {
  18699. source: "./media/characters/caylex/hand.svg"
  18700. }
  18701. },
  18702. foot: {
  18703. height: math.unit(1.6, "feet"),
  18704. name: "Foot",
  18705. image: {
  18706. source: "./media/characters/caylex/foot.svg"
  18707. }
  18708. },
  18709. armored: {
  18710. height: math.unit(6 + 8 / 12, "feet"),
  18711. weight: math.unit(250, "lb"),
  18712. name: "Armored",
  18713. image: {
  18714. source: "./media/characters/caylex/armored.svg",
  18715. extra: 1420 / 1310,
  18716. bottom: 0.045
  18717. }
  18718. },
  18719. },
  18720. [
  18721. {
  18722. name: "Normal",
  18723. height: math.unit(6 + 8 / 12, "feet"),
  18724. default: true
  18725. },
  18726. {
  18727. name: "Normal+",
  18728. height: math.unit(12, "feet")
  18729. },
  18730. ]
  18731. ))
  18732. characterMakers.push(() => makeCharacter(
  18733. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18734. {
  18735. front: {
  18736. height: math.unit(7 + 6 / 12, "feet"),
  18737. weight: math.unit(288, "lb"),
  18738. name: "Front",
  18739. image: {
  18740. source: "./media/characters/alana/front.svg",
  18741. extra: 679 / 653,
  18742. bottom: 22.5 / 701
  18743. }
  18744. },
  18745. },
  18746. [
  18747. {
  18748. name: "Normal",
  18749. height: math.unit(7 + 6 / 12, "feet")
  18750. },
  18751. {
  18752. name: "Large",
  18753. height: math.unit(50, "feet")
  18754. },
  18755. {
  18756. name: "Macro",
  18757. height: math.unit(100, "feet"),
  18758. default: true
  18759. },
  18760. {
  18761. name: "Macro+",
  18762. height: math.unit(200, "feet")
  18763. },
  18764. ]
  18765. ))
  18766. characterMakers.push(() => makeCharacter(
  18767. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18768. {
  18769. front: {
  18770. height: math.unit(6 + 1 / 12, "feet"),
  18771. weight: math.unit(210, "lb"),
  18772. name: "Front",
  18773. image: {
  18774. source: "./media/characters/hasani/front.svg",
  18775. extra: 244 / 232,
  18776. bottom: 0.01
  18777. }
  18778. },
  18779. back: {
  18780. height: math.unit(6 + 1 / 12, "feet"),
  18781. weight: math.unit(210, "lb"),
  18782. name: "Back",
  18783. image: {
  18784. source: "./media/characters/hasani/back.svg",
  18785. extra: 244 / 232,
  18786. bottom: 0.01
  18787. }
  18788. },
  18789. },
  18790. [
  18791. {
  18792. name: "Normal",
  18793. height: math.unit(6 + 1 / 12, "feet")
  18794. },
  18795. {
  18796. name: "Macro",
  18797. height: math.unit(175, "feet"),
  18798. default: true
  18799. },
  18800. ]
  18801. ))
  18802. characterMakers.push(() => makeCharacter(
  18803. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18804. {
  18805. front: {
  18806. height: math.unit(1.82, "meters"),
  18807. weight: math.unit(140, "lb"),
  18808. name: "Front",
  18809. image: {
  18810. source: "./media/characters/nita/front.svg",
  18811. extra: 2473 / 2363,
  18812. bottom: 0.01
  18813. }
  18814. },
  18815. },
  18816. [
  18817. {
  18818. name: "Normal",
  18819. height: math.unit(1.82, "m")
  18820. },
  18821. {
  18822. name: "Macro",
  18823. height: math.unit(300, "m")
  18824. },
  18825. {
  18826. name: "Mistake Canon",
  18827. height: math.unit(0.5, "miles"),
  18828. default: true
  18829. },
  18830. {
  18831. name: "Big Mistake",
  18832. height: math.unit(13, "miles")
  18833. },
  18834. {
  18835. name: "Playing God",
  18836. height: math.unit(2450, "miles")
  18837. },
  18838. ]
  18839. ))
  18840. characterMakers.push(() => makeCharacter(
  18841. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18842. {
  18843. front: {
  18844. height: math.unit(4, "feet"),
  18845. weight: math.unit(120, "lb"),
  18846. name: "Front",
  18847. image: {
  18848. source: "./media/characters/shiriko/front.svg",
  18849. extra: 970/934,
  18850. bottom: 5/975
  18851. }
  18852. },
  18853. },
  18854. [
  18855. {
  18856. name: "Normal",
  18857. height: math.unit(4, "feet"),
  18858. default: true
  18859. },
  18860. ]
  18861. ))
  18862. characterMakers.push(() => makeCharacter(
  18863. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18864. {
  18865. front: {
  18866. height: math.unit(6, "feet"),
  18867. name: "front",
  18868. image: {
  18869. source: "./media/characters/deja/front.svg",
  18870. extra: 926 / 840,
  18871. bottom: 0.07
  18872. }
  18873. },
  18874. },
  18875. [
  18876. {
  18877. name: "Planck Length",
  18878. height: math.unit(1.6e-35, "meters")
  18879. },
  18880. {
  18881. name: "Normal",
  18882. height: math.unit(30.48, "meters"),
  18883. default: true
  18884. },
  18885. {
  18886. name: "Universal",
  18887. height: math.unit(8.8e26, "meters")
  18888. },
  18889. ]
  18890. ))
  18891. characterMakers.push(() => makeCharacter(
  18892. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18893. {
  18894. side: {
  18895. height: math.unit(8, "feet"),
  18896. weight: math.unit(6300, "lb"),
  18897. name: "Side",
  18898. image: {
  18899. source: "./media/characters/anima/side.svg",
  18900. bottom: 0.035
  18901. }
  18902. },
  18903. },
  18904. [
  18905. {
  18906. name: "Normal",
  18907. height: math.unit(8, "feet"),
  18908. default: true
  18909. },
  18910. ]
  18911. ))
  18912. characterMakers.push(() => makeCharacter(
  18913. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18914. {
  18915. front: {
  18916. height: math.unit(8, "feet"),
  18917. weight: math.unit(350, "lb"),
  18918. name: "Front",
  18919. image: {
  18920. source: "./media/characters/bianca/front.svg",
  18921. extra: 234 / 225,
  18922. bottom: 0.03
  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: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18936. {
  18937. front: {
  18938. height: math.unit(11 + 5/12, "feet"),
  18939. weight: math.unit(1200, "lb"),
  18940. name: "Front",
  18941. image: {
  18942. source: "./media/characters/adinia/front.svg",
  18943. extra: 1767/1641,
  18944. bottom: 44/1811
  18945. },
  18946. extraAttributes: {
  18947. "energyIntake": {
  18948. name: "Energy Intake",
  18949. power: 3,
  18950. type: "energy",
  18951. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18952. },
  18953. }
  18954. },
  18955. back: {
  18956. height: math.unit(11 + 5/12, "feet"),
  18957. weight: math.unit(1200, "lb"),
  18958. name: "Back",
  18959. image: {
  18960. source: "./media/characters/adinia/back.svg",
  18961. extra: 1834/1684,
  18962. bottom: 14/1848
  18963. },
  18964. extraAttributes: {
  18965. "energyIntake": {
  18966. name: "Energy Intake",
  18967. power: 3,
  18968. type: "energy",
  18969. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18970. },
  18971. }
  18972. },
  18973. maw: {
  18974. height: math.unit(3.79, "feet"),
  18975. name: "Maw",
  18976. image: {
  18977. source: "./media/characters/adinia/maw.svg"
  18978. }
  18979. },
  18980. rump: {
  18981. height: math.unit(4.6, "feet"),
  18982. name: "Rump",
  18983. image: {
  18984. source: "./media/characters/adinia/rump.svg"
  18985. }
  18986. },
  18987. },
  18988. [
  18989. {
  18990. name: "Normal",
  18991. height: math.unit(11 + 5 / 12, "feet"),
  18992. default: true
  18993. },
  18994. ]
  18995. ))
  18996. characterMakers.push(() => makeCharacter(
  18997. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18998. {
  18999. front: {
  19000. height: math.unit(3, "meters"),
  19001. weight: math.unit(200, "kg"),
  19002. name: "Front",
  19003. image: {
  19004. source: "./media/characters/lykasa/front.svg",
  19005. extra: 1076 / 976,
  19006. bottom: 0.06
  19007. }
  19008. },
  19009. },
  19010. [
  19011. {
  19012. name: "Normal",
  19013. height: math.unit(3, "meters")
  19014. },
  19015. {
  19016. name: "Kaiju",
  19017. height: math.unit(120, "meters"),
  19018. default: true
  19019. },
  19020. {
  19021. name: "Mega Kaiju",
  19022. height: math.unit(240, "km")
  19023. },
  19024. {
  19025. name: "Giga Kaiju",
  19026. height: math.unit(400, "megameters")
  19027. },
  19028. {
  19029. name: "Tera Kaiju",
  19030. height: math.unit(800, "gigameters")
  19031. },
  19032. {
  19033. name: "Kaiju Dragon Goddess",
  19034. height: math.unit(26, "zettaparsecs")
  19035. },
  19036. ]
  19037. ))
  19038. characterMakers.push(() => makeCharacter(
  19039. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19040. {
  19041. side: {
  19042. height: math.unit(283 / 124 * 6, "feet"),
  19043. weight: math.unit(35000, "lb"),
  19044. name: "Side",
  19045. image: {
  19046. source: "./media/characters/malfaren/side.svg",
  19047. extra: 1310/529,
  19048. bottom: 24/1334
  19049. }
  19050. },
  19051. front: {
  19052. height: math.unit(22.36, "feet"),
  19053. weight: math.unit(35000, "lb"),
  19054. name: "Front",
  19055. image: {
  19056. source: "./media/characters/malfaren/front.svg",
  19057. extra: 1237/1115,
  19058. bottom: 32/1269
  19059. }
  19060. },
  19061. maw: {
  19062. height: math.unit(6.9, "feet"),
  19063. name: "Maw",
  19064. image: {
  19065. source: "./media/characters/malfaren/maw.svg"
  19066. }
  19067. },
  19068. dick: {
  19069. height: math.unit(6.19, "feet"),
  19070. name: "Dick",
  19071. image: {
  19072. source: "./media/characters/malfaren/dick.svg"
  19073. }
  19074. },
  19075. eye: {
  19076. height: math.unit(0.69, "feet"),
  19077. name: "Eye",
  19078. image: {
  19079. source: "./media/characters/malfaren/eye.svg"
  19080. }
  19081. },
  19082. },
  19083. [
  19084. {
  19085. name: "Big",
  19086. height: math.unit(283 / 162 * 6, "feet"),
  19087. },
  19088. {
  19089. name: "Bigger",
  19090. height: math.unit(283 / 124 * 6, "feet")
  19091. },
  19092. {
  19093. name: "Massive",
  19094. height: math.unit(283 / 92 * 6, "feet"),
  19095. default: true
  19096. },
  19097. {
  19098. name: "👀💦",
  19099. height: math.unit(283 / 73 * 6, "feet"),
  19100. },
  19101. ]
  19102. ))
  19103. characterMakers.push(() => makeCharacter(
  19104. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19105. {
  19106. front: {
  19107. height: math.unit(1.7, "m"),
  19108. weight: math.unit(70, "kg"),
  19109. name: "Front",
  19110. image: {
  19111. source: "./media/characters/kernel/front.svg",
  19112. extra: 222 / 210,
  19113. bottom: 0.007
  19114. }
  19115. },
  19116. },
  19117. [
  19118. {
  19119. name: "Nano",
  19120. height: math.unit(17, "micrometers")
  19121. },
  19122. {
  19123. name: "Micro",
  19124. height: math.unit(1.7, "mm")
  19125. },
  19126. {
  19127. name: "Small",
  19128. height: math.unit(1.7, "cm")
  19129. },
  19130. {
  19131. name: "Normal",
  19132. height: math.unit(1.7, "m"),
  19133. default: true
  19134. },
  19135. ]
  19136. ))
  19137. characterMakers.push(() => makeCharacter(
  19138. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19139. {
  19140. front: {
  19141. height: math.unit(1.75, "meters"),
  19142. weight: math.unit(65, "kg"),
  19143. name: "Front",
  19144. image: {
  19145. source: "./media/characters/jayne-folest/front.svg",
  19146. extra: 2115 / 2007,
  19147. bottom: 0.02
  19148. }
  19149. },
  19150. back: {
  19151. height: math.unit(1.75, "meters"),
  19152. weight: math.unit(65, "kg"),
  19153. name: "Back",
  19154. image: {
  19155. source: "./media/characters/jayne-folest/back.svg",
  19156. extra: 2115 / 2007,
  19157. bottom: 0.005
  19158. }
  19159. },
  19160. frontClothed: {
  19161. height: math.unit(1.75, "meters"),
  19162. weight: math.unit(65, "kg"),
  19163. name: "Front (Clothed)",
  19164. image: {
  19165. source: "./media/characters/jayne-folest/front-clothed.svg",
  19166. extra: 2115 / 2007,
  19167. bottom: 0.035
  19168. }
  19169. },
  19170. hand: {
  19171. height: math.unit(1 / 1.260, "feet"),
  19172. name: "Hand",
  19173. image: {
  19174. source: "./media/characters/jayne-folest/hand.svg"
  19175. }
  19176. },
  19177. foot: {
  19178. height: math.unit(1 / 0.918, "feet"),
  19179. name: "Foot",
  19180. image: {
  19181. source: "./media/characters/jayne-folest/foot.svg"
  19182. }
  19183. },
  19184. },
  19185. [
  19186. {
  19187. name: "Micro",
  19188. height: math.unit(4, "cm")
  19189. },
  19190. {
  19191. name: "Normal",
  19192. height: math.unit(1.75, "meters")
  19193. },
  19194. {
  19195. name: "Macro",
  19196. height: math.unit(47.5, "meters"),
  19197. default: true
  19198. },
  19199. ]
  19200. ))
  19201. characterMakers.push(() => makeCharacter(
  19202. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19203. {
  19204. front: {
  19205. height: math.unit(180, "cm"),
  19206. weight: math.unit(70, "kg"),
  19207. name: "Front",
  19208. image: {
  19209. source: "./media/characters/algier/front.svg",
  19210. extra: 596 / 572,
  19211. bottom: 0.04
  19212. }
  19213. },
  19214. back: {
  19215. height: math.unit(180, "cm"),
  19216. weight: math.unit(70, "kg"),
  19217. name: "Back",
  19218. image: {
  19219. source: "./media/characters/algier/back.svg",
  19220. extra: 596 / 572,
  19221. bottom: 0.025
  19222. }
  19223. },
  19224. frontdressed: {
  19225. height: math.unit(180, "cm"),
  19226. weight: math.unit(150, "kg"),
  19227. name: "Front-dressed",
  19228. image: {
  19229. source: "./media/characters/algier/front-dressed.svg",
  19230. extra: 596 / 572,
  19231. bottom: 0.038
  19232. }
  19233. },
  19234. },
  19235. [
  19236. {
  19237. name: "Micro",
  19238. height: math.unit(5, "cm")
  19239. },
  19240. {
  19241. name: "Normal",
  19242. height: math.unit(180, "cm"),
  19243. default: true
  19244. },
  19245. {
  19246. name: "Macro",
  19247. height: math.unit(64, "m")
  19248. },
  19249. ]
  19250. ))
  19251. characterMakers.push(() => makeCharacter(
  19252. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19253. {
  19254. upright: {
  19255. height: math.unit(7, "feet"),
  19256. weight: math.unit(300, "lb"),
  19257. name: "Upright",
  19258. image: {
  19259. source: "./media/characters/pretzel/upright.svg",
  19260. extra: 534 / 522,
  19261. bottom: 0.065
  19262. }
  19263. },
  19264. sprawling: {
  19265. height: math.unit(3.75, "feet"),
  19266. weight: math.unit(300, "lb"),
  19267. name: "Sprawling",
  19268. image: {
  19269. source: "./media/characters/pretzel/sprawling.svg",
  19270. extra: 314 / 281,
  19271. bottom: 0.1
  19272. }
  19273. },
  19274. tongue: {
  19275. height: math.unit(2, "feet"),
  19276. name: "Tongue",
  19277. image: {
  19278. source: "./media/characters/pretzel/tongue.svg"
  19279. }
  19280. },
  19281. },
  19282. [
  19283. {
  19284. name: "Normal",
  19285. height: math.unit(7, "feet"),
  19286. default: true
  19287. },
  19288. {
  19289. name: "Oversized",
  19290. height: math.unit(15, "feet")
  19291. },
  19292. {
  19293. name: "Huge",
  19294. height: math.unit(30, "feet")
  19295. },
  19296. {
  19297. name: "Macro",
  19298. height: math.unit(250, "feet")
  19299. },
  19300. ]
  19301. ))
  19302. characterMakers.push(() => makeCharacter(
  19303. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19304. {
  19305. sideFront: {
  19306. height: math.unit(5 + 2 / 12, "feet"),
  19307. weight: math.unit(120, "lb"),
  19308. name: "Front Side",
  19309. image: {
  19310. source: "./media/characters/roxi/side-front.svg",
  19311. extra: 2924 / 2717,
  19312. bottom: 0.08
  19313. }
  19314. },
  19315. sideBack: {
  19316. height: math.unit(5 + 2 / 12, "feet"),
  19317. weight: math.unit(120, "lb"),
  19318. name: "Back Side",
  19319. image: {
  19320. source: "./media/characters/roxi/side-back.svg",
  19321. extra: 2904 / 2693,
  19322. bottom: 0.06
  19323. }
  19324. },
  19325. front: {
  19326. height: math.unit(5 + 2 / 12, "feet"),
  19327. weight: math.unit(120, "lb"),
  19328. name: "Front",
  19329. image: {
  19330. source: "./media/characters/roxi/front.svg",
  19331. extra: 2028 / 1907,
  19332. bottom: 0.01
  19333. }
  19334. },
  19335. frontAlt: {
  19336. height: math.unit(5 + 2 / 12, "feet"),
  19337. weight: math.unit(120, "lb"),
  19338. name: "Front (Alt)",
  19339. image: {
  19340. source: "./media/characters/roxi/front-alt.svg",
  19341. extra: 1828 / 1798,
  19342. bottom: 0.01
  19343. }
  19344. },
  19345. sitting: {
  19346. height: math.unit(2.8, "feet"),
  19347. weight: math.unit(120, "lb"),
  19348. name: "Sitting",
  19349. image: {
  19350. source: "./media/characters/roxi/sitting.svg",
  19351. extra: 2660 / 2462,
  19352. bottom: 0.1
  19353. }
  19354. },
  19355. },
  19356. [
  19357. {
  19358. name: "Normal",
  19359. height: math.unit(5 + 2 / 12, "feet"),
  19360. default: true
  19361. },
  19362. ]
  19363. ))
  19364. characterMakers.push(() => makeCharacter(
  19365. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19366. {
  19367. side: {
  19368. height: math.unit(55, "feet"),
  19369. weight: math.unit(153, "tons"),
  19370. name: "Side",
  19371. image: {
  19372. source: "./media/characters/shadow/side.svg",
  19373. extra: 701 / 628,
  19374. bottom: 0.02
  19375. }
  19376. },
  19377. flying: {
  19378. height: math.unit(145, "feet"),
  19379. weight: math.unit(153, "tons"),
  19380. name: "Flying",
  19381. image: {
  19382. source: "./media/characters/shadow/flying.svg"
  19383. }
  19384. },
  19385. },
  19386. [
  19387. {
  19388. name: "Normal",
  19389. height: math.unit(55, "feet"),
  19390. default: true
  19391. },
  19392. ]
  19393. ))
  19394. characterMakers.push(() => makeCharacter(
  19395. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19396. {
  19397. front: {
  19398. height: math.unit(6, "feet"),
  19399. weight: math.unit(200, "lb"),
  19400. name: "Front",
  19401. image: {
  19402. source: "./media/characters/marcie/front.svg",
  19403. extra: 960 / 876,
  19404. bottom: 58 / 1017.87
  19405. }
  19406. },
  19407. },
  19408. [
  19409. {
  19410. name: "Macro",
  19411. height: math.unit(1, "mile"),
  19412. default: true
  19413. },
  19414. ]
  19415. ))
  19416. characterMakers.push(() => makeCharacter(
  19417. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19418. {
  19419. front: {
  19420. height: math.unit(7, "feet"),
  19421. weight: math.unit(200, "lb"),
  19422. name: "Front",
  19423. image: {
  19424. source: "./media/characters/kachina/front.svg",
  19425. extra: 1290.68 / 1119,
  19426. bottom: 36.5 / 1327.18
  19427. }
  19428. },
  19429. },
  19430. [
  19431. {
  19432. name: "Normal",
  19433. height: math.unit(7, "feet"),
  19434. default: true
  19435. },
  19436. ]
  19437. ))
  19438. characterMakers.push(() => makeCharacter(
  19439. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19440. {
  19441. looking: {
  19442. height: math.unit(2, "meters"),
  19443. weight: math.unit(300, "kg"),
  19444. name: "Looking",
  19445. image: {
  19446. source: "./media/characters/kash/looking.svg",
  19447. extra: 474 / 344,
  19448. bottom: 0.03
  19449. }
  19450. },
  19451. side: {
  19452. height: math.unit(2, "meters"),
  19453. weight: math.unit(300, "kg"),
  19454. name: "Side",
  19455. image: {
  19456. source: "./media/characters/kash/side.svg",
  19457. extra: 302 / 251,
  19458. bottom: 0.03
  19459. }
  19460. },
  19461. front: {
  19462. height: math.unit(2, "meters"),
  19463. weight: math.unit(300, "kg"),
  19464. name: "Front",
  19465. image: {
  19466. source: "./media/characters/kash/front.svg",
  19467. extra: 495 / 360,
  19468. bottom: 0.015
  19469. }
  19470. },
  19471. },
  19472. [
  19473. {
  19474. name: "Normal",
  19475. height: math.unit(2, "meters"),
  19476. default: true
  19477. },
  19478. {
  19479. name: "Big",
  19480. height: math.unit(3, "meters")
  19481. },
  19482. {
  19483. name: "Large",
  19484. height: math.unit(5, "meters")
  19485. },
  19486. ]
  19487. ))
  19488. characterMakers.push(() => makeCharacter(
  19489. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19490. {
  19491. feeding: {
  19492. height: math.unit(6.7, "feet"),
  19493. weight: math.unit(350, "lb"),
  19494. name: "Feeding",
  19495. image: {
  19496. source: "./media/characters/lalim/feeding.svg",
  19497. }
  19498. },
  19499. },
  19500. [
  19501. {
  19502. name: "Normal",
  19503. height: math.unit(6.7, "feet"),
  19504. default: true
  19505. },
  19506. ]
  19507. ))
  19508. characterMakers.push(() => makeCharacter(
  19509. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19510. {
  19511. front: {
  19512. height: math.unit(9.5, "feet"),
  19513. weight: math.unit(600, "lb"),
  19514. name: "Front",
  19515. image: {
  19516. source: "./media/characters/de'vout/front.svg",
  19517. extra: 1443 / 1328,
  19518. bottom: 0.025
  19519. }
  19520. },
  19521. back: {
  19522. height: math.unit(9.5, "feet"),
  19523. weight: math.unit(600, "lb"),
  19524. name: "Back",
  19525. image: {
  19526. source: "./media/characters/de'vout/back.svg",
  19527. extra: 1443 / 1328
  19528. }
  19529. },
  19530. frontDressed: {
  19531. height: math.unit(9.5, "feet"),
  19532. weight: math.unit(600, "lb"),
  19533. name: "Front (Dressed",
  19534. image: {
  19535. source: "./media/characters/de'vout/front-dressed.svg",
  19536. extra: 1443 / 1328,
  19537. bottom: 0.025
  19538. }
  19539. },
  19540. backDressed: {
  19541. height: math.unit(9.5, "feet"),
  19542. weight: math.unit(600, "lb"),
  19543. name: "Back (Dressed",
  19544. image: {
  19545. source: "./media/characters/de'vout/back-dressed.svg",
  19546. extra: 1443 / 1328
  19547. }
  19548. },
  19549. },
  19550. [
  19551. {
  19552. name: "Normal",
  19553. height: math.unit(9.5, "feet"),
  19554. default: true
  19555. },
  19556. ]
  19557. ))
  19558. characterMakers.push(() => makeCharacter(
  19559. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19560. {
  19561. front: {
  19562. height: math.unit(8, "feet"),
  19563. weight: math.unit(225, "lb"),
  19564. name: "Front",
  19565. image: {
  19566. source: "./media/characters/talana/front.svg",
  19567. extra: 1410 / 1300,
  19568. bottom: 0.015
  19569. }
  19570. },
  19571. frontDressed: {
  19572. height: math.unit(8, "feet"),
  19573. weight: math.unit(225, "lb"),
  19574. name: "Front (Dressed",
  19575. image: {
  19576. source: "./media/characters/talana/front-dressed.svg",
  19577. extra: 1410 / 1300,
  19578. bottom: 0.015
  19579. }
  19580. },
  19581. },
  19582. [
  19583. {
  19584. name: "Normal",
  19585. height: math.unit(8, "feet"),
  19586. default: true
  19587. },
  19588. ]
  19589. ))
  19590. characterMakers.push(() => makeCharacter(
  19591. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19592. {
  19593. side: {
  19594. height: math.unit(7.2, "feet"),
  19595. weight: math.unit(150, "lb"),
  19596. name: "Side",
  19597. image: {
  19598. source: "./media/characters/xeauvok/side.svg",
  19599. extra: 1975 / 1523,
  19600. bottom: 0.07
  19601. }
  19602. },
  19603. },
  19604. [
  19605. {
  19606. name: "Normal",
  19607. height: math.unit(7.2, "feet"),
  19608. default: true
  19609. },
  19610. ]
  19611. ))
  19612. characterMakers.push(() => makeCharacter(
  19613. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19614. {
  19615. side: {
  19616. height: math.unit(4, "meters"),
  19617. weight: math.unit(2200, "kg"),
  19618. name: "Side",
  19619. image: {
  19620. source: "./media/characters/zara/side.svg",
  19621. extra: 765/744,
  19622. bottom: 156/921
  19623. }
  19624. },
  19625. },
  19626. [
  19627. {
  19628. name: "Normal",
  19629. height: math.unit(4, "meters"),
  19630. default: true
  19631. },
  19632. ]
  19633. ))
  19634. characterMakers.push(() => makeCharacter(
  19635. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19636. {
  19637. side: {
  19638. height: math.unit(6, "feet"),
  19639. weight: math.unit(150, "lb"),
  19640. name: "Side",
  19641. image: {
  19642. source: "./media/characters/richard-dragon/side.svg",
  19643. extra: 845 / 340,
  19644. bottom: 0.017
  19645. }
  19646. },
  19647. maw: {
  19648. height: math.unit(2.97, "feet"),
  19649. name: "Maw",
  19650. image: {
  19651. source: "./media/characters/richard-dragon/maw.svg"
  19652. }
  19653. },
  19654. },
  19655. [
  19656. ]
  19657. ))
  19658. characterMakers.push(() => makeCharacter(
  19659. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19660. {
  19661. front: {
  19662. height: math.unit(4, "feet"),
  19663. weight: math.unit(100, "lb"),
  19664. name: "Front",
  19665. image: {
  19666. source: "./media/characters/richard-smeargle/front.svg",
  19667. extra: 2952 / 2820,
  19668. bottom: 0.028
  19669. }
  19670. },
  19671. },
  19672. [
  19673. {
  19674. name: "Normal",
  19675. height: math.unit(4, "feet"),
  19676. default: true
  19677. },
  19678. {
  19679. name: "Dynamax",
  19680. height: math.unit(20, "meters")
  19681. },
  19682. ]
  19683. ))
  19684. characterMakers.push(() => makeCharacter(
  19685. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19686. {
  19687. front: {
  19688. height: math.unit(6, "feet"),
  19689. weight: math.unit(110, "lb"),
  19690. name: "Front",
  19691. image: {
  19692. source: "./media/characters/klay/front.svg",
  19693. extra: 962 / 883,
  19694. bottom: 0.04
  19695. }
  19696. },
  19697. back: {
  19698. height: math.unit(6, "feet"),
  19699. weight: math.unit(110, "lb"),
  19700. name: "Back",
  19701. image: {
  19702. source: "./media/characters/klay/back.svg",
  19703. extra: 962 / 883
  19704. }
  19705. },
  19706. beans: {
  19707. height: math.unit(1.15, "feet"),
  19708. name: "Beans",
  19709. image: {
  19710. source: "./media/characters/klay/beans.svg"
  19711. }
  19712. },
  19713. },
  19714. [
  19715. {
  19716. name: "Micro",
  19717. height: math.unit(6, "inches")
  19718. },
  19719. {
  19720. name: "Mini",
  19721. height: math.unit(3, "feet")
  19722. },
  19723. {
  19724. name: "Normal",
  19725. height: math.unit(6, "feet"),
  19726. default: true
  19727. },
  19728. {
  19729. name: "Big",
  19730. height: math.unit(25, "feet")
  19731. },
  19732. {
  19733. name: "Macro",
  19734. height: math.unit(100, "feet")
  19735. },
  19736. {
  19737. name: "Megamacro",
  19738. height: math.unit(400, "feet")
  19739. },
  19740. ]
  19741. ))
  19742. characterMakers.push(() => makeCharacter(
  19743. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19744. {
  19745. front: {
  19746. height: math.unit(6, "feet"),
  19747. weight: math.unit(160, "lb"),
  19748. name: "Front",
  19749. image: {
  19750. source: "./media/characters/marcus/front.svg",
  19751. extra: 734 / 676,
  19752. bottom: 0.03
  19753. }
  19754. },
  19755. },
  19756. [
  19757. {
  19758. name: "Little",
  19759. height: math.unit(6, "feet")
  19760. },
  19761. {
  19762. name: "Normal",
  19763. height: math.unit(110, "feet"),
  19764. default: true
  19765. },
  19766. {
  19767. name: "Macro",
  19768. height: math.unit(250, "feet")
  19769. },
  19770. {
  19771. name: "Megamacro",
  19772. height: math.unit(1000, "feet")
  19773. },
  19774. ]
  19775. ))
  19776. characterMakers.push(() => makeCharacter(
  19777. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19778. {
  19779. front: {
  19780. height: math.unit(7, "feet"),
  19781. weight: math.unit(275, "lb"),
  19782. name: "Front",
  19783. image: {
  19784. source: "./media/characters/claude-delroute/front.svg",
  19785. extra: 902/827,
  19786. bottom: 26/928
  19787. }
  19788. },
  19789. side: {
  19790. height: math.unit(7, "feet"),
  19791. weight: math.unit(275, "lb"),
  19792. name: "Side",
  19793. image: {
  19794. source: "./media/characters/claude-delroute/side.svg",
  19795. extra: 908/853,
  19796. bottom: 16/924
  19797. }
  19798. },
  19799. back: {
  19800. height: math.unit(7, "feet"),
  19801. weight: math.unit(275, "lb"),
  19802. name: "Back",
  19803. image: {
  19804. source: "./media/characters/claude-delroute/back.svg",
  19805. extra: 911/829,
  19806. bottom: 18/929
  19807. }
  19808. },
  19809. maw: {
  19810. height: math.unit(0.6407, "meters"),
  19811. name: "Maw",
  19812. image: {
  19813. source: "./media/characters/claude-delroute/maw.svg"
  19814. }
  19815. },
  19816. },
  19817. [
  19818. {
  19819. name: "Normal",
  19820. height: math.unit(7, "feet"),
  19821. default: true
  19822. },
  19823. {
  19824. name: "Lorge",
  19825. height: math.unit(20, "feet")
  19826. },
  19827. ]
  19828. ))
  19829. characterMakers.push(() => makeCharacter(
  19830. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19831. {
  19832. front: {
  19833. height: math.unit(8 + 4 / 12, "feet"),
  19834. weight: math.unit(600, "lb"),
  19835. name: "Front",
  19836. image: {
  19837. source: "./media/characters/dragonien/front.svg",
  19838. extra: 100 / 94,
  19839. bottom: 3.3 / 103.3445
  19840. }
  19841. },
  19842. back: {
  19843. height: math.unit(8 + 4 / 12, "feet"),
  19844. weight: math.unit(600, "lb"),
  19845. name: "Back",
  19846. image: {
  19847. source: "./media/characters/dragonien/back.svg",
  19848. extra: 776 / 746,
  19849. bottom: 6.4 / 782.0616
  19850. }
  19851. },
  19852. foot: {
  19853. height: math.unit(1.54, "feet"),
  19854. name: "Foot",
  19855. image: {
  19856. source: "./media/characters/dragonien/foot.svg",
  19857. }
  19858. },
  19859. },
  19860. [
  19861. {
  19862. name: "Normal",
  19863. height: math.unit(8 + 4 / 12, "feet"),
  19864. default: true
  19865. },
  19866. {
  19867. name: "Macro",
  19868. height: math.unit(200, "feet")
  19869. },
  19870. {
  19871. name: "Megamacro",
  19872. height: math.unit(1, "mile")
  19873. },
  19874. {
  19875. name: "Gigamacro",
  19876. height: math.unit(1000, "miles")
  19877. },
  19878. ]
  19879. ))
  19880. characterMakers.push(() => makeCharacter(
  19881. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19882. {
  19883. front: {
  19884. height: math.unit(5 + 2 / 12, "feet"),
  19885. weight: math.unit(110, "lb"),
  19886. name: "Front",
  19887. image: {
  19888. source: "./media/characters/desta/front.svg",
  19889. extra: 767 / 726,
  19890. bottom: 11.7 / 779
  19891. }
  19892. },
  19893. back: {
  19894. height: math.unit(5 + 2 / 12, "feet"),
  19895. weight: math.unit(110, "lb"),
  19896. name: "Back",
  19897. image: {
  19898. source: "./media/characters/desta/back.svg",
  19899. extra: 777 / 728,
  19900. bottom: 6 / 784
  19901. }
  19902. },
  19903. frontAlt: {
  19904. height: math.unit(5 + 2 / 12, "feet"),
  19905. weight: math.unit(110, "lb"),
  19906. name: "Front",
  19907. image: {
  19908. source: "./media/characters/desta/front-alt.svg",
  19909. extra: 1482 / 1417
  19910. }
  19911. },
  19912. side: {
  19913. height: math.unit(5 + 2 / 12, "feet"),
  19914. weight: math.unit(110, "lb"),
  19915. name: "Side",
  19916. image: {
  19917. source: "./media/characters/desta/side.svg",
  19918. extra: 2579 / 2491,
  19919. bottom: 0.053
  19920. }
  19921. },
  19922. },
  19923. [
  19924. {
  19925. name: "Micro",
  19926. height: math.unit(6, "inches")
  19927. },
  19928. {
  19929. name: "Normal",
  19930. height: math.unit(5 + 2 / 12, "feet"),
  19931. default: true
  19932. },
  19933. {
  19934. name: "Macro",
  19935. height: math.unit(62, "feet")
  19936. },
  19937. {
  19938. name: "Megamacro",
  19939. height: math.unit(1800, "feet")
  19940. },
  19941. ]
  19942. ))
  19943. characterMakers.push(() => makeCharacter(
  19944. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19945. {
  19946. front: {
  19947. height: math.unit(10, "feet"),
  19948. weight: math.unit(700, "lb"),
  19949. name: "Front",
  19950. image: {
  19951. source: "./media/characters/storm-alystar/front.svg",
  19952. extra: 2112 / 1898,
  19953. bottom: 0.034
  19954. }
  19955. },
  19956. },
  19957. [
  19958. {
  19959. name: "Micro",
  19960. height: math.unit(3.5, "inches")
  19961. },
  19962. {
  19963. name: "Normal",
  19964. height: math.unit(10, "feet"),
  19965. default: true
  19966. },
  19967. {
  19968. name: "Macro",
  19969. height: math.unit(400, "feet")
  19970. },
  19971. {
  19972. name: "Deific",
  19973. height: math.unit(60, "miles")
  19974. },
  19975. ]
  19976. ))
  19977. characterMakers.push(() => makeCharacter(
  19978. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19979. {
  19980. front: {
  19981. height: math.unit(2.35, "meters"),
  19982. weight: math.unit(119, "kg"),
  19983. name: "Front",
  19984. image: {
  19985. source: "./media/characters/ilia/front.svg",
  19986. extra: 1285 / 1255,
  19987. bottom: 0.06
  19988. }
  19989. },
  19990. },
  19991. [
  19992. {
  19993. name: "Normal",
  19994. height: math.unit(2.35, "meters")
  19995. },
  19996. {
  19997. name: "Macro",
  19998. height: math.unit(140, "meters"),
  19999. default: true
  20000. },
  20001. {
  20002. name: "Megamacro",
  20003. height: math.unit(100, "miles")
  20004. },
  20005. ]
  20006. ))
  20007. characterMakers.push(() => makeCharacter(
  20008. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20009. {
  20010. front: {
  20011. height: math.unit(6 + 5 / 12, "feet"),
  20012. weight: math.unit(190, "lb"),
  20013. name: "Front",
  20014. image: {
  20015. source: "./media/characters/kingdead/front.svg",
  20016. extra: 1228 / 1177
  20017. }
  20018. },
  20019. },
  20020. [
  20021. {
  20022. name: "Micro",
  20023. height: math.unit(7, "inches")
  20024. },
  20025. {
  20026. name: "Normal",
  20027. height: math.unit(6 + 5 / 12, "feet")
  20028. },
  20029. {
  20030. name: "Macro",
  20031. height: math.unit(150, "feet"),
  20032. default: true
  20033. },
  20034. {
  20035. name: "Megamacro",
  20036. height: math.unit(200, "miles")
  20037. },
  20038. ]
  20039. ))
  20040. characterMakers.push(() => makeCharacter(
  20041. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20042. {
  20043. front: {
  20044. height: math.unit(8, "feet"),
  20045. weight: math.unit(600, "lb"),
  20046. name: "Front",
  20047. image: {
  20048. source: "./media/characters/kyrehx/front.svg",
  20049. extra: 1195 / 1095,
  20050. bottom: 0.034
  20051. }
  20052. },
  20053. },
  20054. [
  20055. {
  20056. name: "Micro",
  20057. height: math.unit(2, "inches")
  20058. },
  20059. {
  20060. name: "Normal",
  20061. height: math.unit(8, "feet"),
  20062. default: true
  20063. },
  20064. {
  20065. name: "Macro",
  20066. height: math.unit(255, "feet")
  20067. },
  20068. ]
  20069. ))
  20070. characterMakers.push(() => makeCharacter(
  20071. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20072. {
  20073. front: {
  20074. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20075. weight: math.unit(184, "lb"),
  20076. name: "Front",
  20077. image: {
  20078. source: "./media/characters/xang/front.svg",
  20079. extra: 845 / 755
  20080. }
  20081. },
  20082. },
  20083. [
  20084. {
  20085. name: "Normal",
  20086. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20087. default: true
  20088. },
  20089. {
  20090. name: "Macro",
  20091. height: math.unit(0.935 * 146, "feet")
  20092. },
  20093. {
  20094. name: "Megamacro",
  20095. height: math.unit(0.935 * 3, "miles")
  20096. },
  20097. ]
  20098. ))
  20099. characterMakers.push(() => makeCharacter(
  20100. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20101. {
  20102. frontDressed: {
  20103. height: math.unit(5 + 7 / 12, "feet"),
  20104. weight: math.unit(140, "lb"),
  20105. name: "Front (Dressed)",
  20106. image: {
  20107. source: "./media/characters/doc-weardno/front-dressed.svg",
  20108. extra: 263 / 234
  20109. }
  20110. },
  20111. backDressed: {
  20112. height: math.unit(5 + 7 / 12, "feet"),
  20113. weight: math.unit(140, "lb"),
  20114. name: "Back (Dressed)",
  20115. image: {
  20116. source: "./media/characters/doc-weardno/back-dressed.svg",
  20117. extra: 266 / 238
  20118. }
  20119. },
  20120. front: {
  20121. height: math.unit(5 + 7 / 12, "feet"),
  20122. weight: math.unit(140, "lb"),
  20123. name: "Front",
  20124. image: {
  20125. source: "./media/characters/doc-weardno/front.svg",
  20126. extra: 254 / 233
  20127. }
  20128. },
  20129. },
  20130. [
  20131. {
  20132. name: "Micro",
  20133. height: math.unit(3, "inches")
  20134. },
  20135. {
  20136. name: "Normal",
  20137. height: math.unit(5 + 7 / 12, "feet"),
  20138. default: true
  20139. },
  20140. {
  20141. name: "Macro",
  20142. height: math.unit(25, "feet")
  20143. },
  20144. {
  20145. name: "Megamacro",
  20146. height: math.unit(2, "miles")
  20147. },
  20148. ]
  20149. ))
  20150. characterMakers.push(() => makeCharacter(
  20151. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20152. {
  20153. front: {
  20154. height: math.unit(6 + 2 / 12, "feet"),
  20155. weight: math.unit(153, "lb"),
  20156. name: "Front",
  20157. image: {
  20158. source: "./media/characters/seth-whilst/front.svg",
  20159. bottom: 0.07
  20160. }
  20161. },
  20162. },
  20163. [
  20164. {
  20165. name: "Micro",
  20166. height: math.unit(5, "inches")
  20167. },
  20168. {
  20169. name: "Normal",
  20170. height: math.unit(6 + 2 / 12, "feet"),
  20171. default: true
  20172. },
  20173. ]
  20174. ))
  20175. characterMakers.push(() => makeCharacter(
  20176. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20177. {
  20178. front: {
  20179. height: math.unit(3, "inches"),
  20180. weight: math.unit(8, "grams"),
  20181. name: "Front",
  20182. image: {
  20183. source: "./media/characters/pocket-jabari/front.svg",
  20184. extra: 1024 / 974,
  20185. bottom: 0.039
  20186. }
  20187. },
  20188. },
  20189. [
  20190. {
  20191. name: "Minimicro",
  20192. height: math.unit(8, "mm")
  20193. },
  20194. {
  20195. name: "Micro",
  20196. height: math.unit(3, "inches"),
  20197. default: true
  20198. },
  20199. {
  20200. name: "Normal",
  20201. height: math.unit(3, "feet")
  20202. },
  20203. ]
  20204. ))
  20205. characterMakers.push(() => makeCharacter(
  20206. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20207. {
  20208. frontDressed: {
  20209. height: math.unit(15, "feet"),
  20210. weight: math.unit(3280, "lb"),
  20211. name: "Front (Dressed)",
  20212. image: {
  20213. source: "./media/characters/sapphy/front-dressed.svg",
  20214. extra: 1951/1654,
  20215. bottom: 194/2145
  20216. },
  20217. form: "anthro",
  20218. default: true
  20219. },
  20220. backDressed: {
  20221. height: math.unit(15, "feet"),
  20222. weight: math.unit(3280, "lb"),
  20223. name: "Back (Dressed)",
  20224. image: {
  20225. source: "./media/characters/sapphy/back-dressed.svg",
  20226. extra: 2058/1918,
  20227. bottom: 125/2183
  20228. },
  20229. form: "anthro"
  20230. },
  20231. frontNude: {
  20232. height: math.unit(15, "feet"),
  20233. weight: math.unit(3280, "lb"),
  20234. name: "Front (Nude)",
  20235. image: {
  20236. source: "./media/characters/sapphy/front-nude.svg",
  20237. extra: 1951/1654,
  20238. bottom: 194/2145
  20239. },
  20240. form: "anthro"
  20241. },
  20242. backNude: {
  20243. height: math.unit(15, "feet"),
  20244. weight: math.unit(3280, "lb"),
  20245. name: "Back (Nude)",
  20246. image: {
  20247. source: "./media/characters/sapphy/back-nude.svg",
  20248. extra: 2058/1918,
  20249. bottom: 125/2183
  20250. },
  20251. form: "anthro"
  20252. },
  20253. full: {
  20254. height: math.unit(15, "feet"),
  20255. weight: math.unit(3280, "lb"),
  20256. name: "Full",
  20257. image: {
  20258. source: "./media/characters/sapphy/full.svg",
  20259. extra: 1396/1317,
  20260. bottom: 44/1440
  20261. },
  20262. form: "anthro"
  20263. },
  20264. dick: {
  20265. height: math.unit(3.8, "feet"),
  20266. name: "Dick",
  20267. image: {
  20268. source: "./media/characters/sapphy/dick.svg"
  20269. },
  20270. form: "anthro"
  20271. },
  20272. feral: {
  20273. height: math.unit(35, "feet"),
  20274. weight: math.unit(160, "tons"),
  20275. name: "Feral",
  20276. image: {
  20277. source: "./media/characters/sapphy/feral.svg",
  20278. extra: 1050/573,
  20279. bottom: 60/1110
  20280. },
  20281. form: "feral",
  20282. default: true
  20283. },
  20284. },
  20285. [
  20286. {
  20287. name: "Normal",
  20288. height: math.unit(15, "feet"),
  20289. form: "anthro"
  20290. },
  20291. {
  20292. name: "Casual Macro",
  20293. height: math.unit(120, "feet"),
  20294. form: "anthro"
  20295. },
  20296. {
  20297. name: "Macro",
  20298. height: math.unit(2150, "feet"),
  20299. default: true,
  20300. form: "anthro"
  20301. },
  20302. {
  20303. name: "Megamacro",
  20304. height: math.unit(8, "miles"),
  20305. form: "anthro"
  20306. },
  20307. {
  20308. name: "Galaxy Mom",
  20309. height: math.unit(6, "megalightyears"),
  20310. form: "anthro"
  20311. },
  20312. {
  20313. name: "Normal",
  20314. height: math.unit(35, "feet"),
  20315. form: "feral",
  20316. default: true
  20317. },
  20318. {
  20319. name: "Macro",
  20320. height: math.unit(300, "feet"),
  20321. form: "feral"
  20322. },
  20323. {
  20324. name: "Galaxy Mom",
  20325. height: math.unit(10, "megalightyears"),
  20326. form: "feral"
  20327. },
  20328. ],
  20329. {
  20330. "anthro": {
  20331. name: "Anthro",
  20332. default: true
  20333. },
  20334. "feral": {
  20335. name: "Feral"
  20336. }
  20337. }
  20338. ))
  20339. characterMakers.push(() => makeCharacter(
  20340. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20341. {
  20342. hyenaFront: {
  20343. height: math.unit(6, "feet"),
  20344. weight: math.unit(190, "lb"),
  20345. name: "Front",
  20346. image: {
  20347. source: "./media/characters/kiro/hyena-front.svg",
  20348. extra: 927/839,
  20349. bottom: 91/1018
  20350. },
  20351. form: "hyena",
  20352. default: true
  20353. },
  20354. front: {
  20355. height: math.unit(6, "feet"),
  20356. weight: math.unit(170, "lb"),
  20357. name: "Front",
  20358. image: {
  20359. source: "./media/characters/kiro/front.svg",
  20360. extra: 1064 / 1012,
  20361. bottom: 0.052
  20362. },
  20363. form: "folf",
  20364. default: true
  20365. },
  20366. },
  20367. [
  20368. {
  20369. name: "Micro",
  20370. height: math.unit(6, "inches"),
  20371. form: "folf"
  20372. },
  20373. {
  20374. name: "Normal",
  20375. height: math.unit(6, "feet"),
  20376. form: "folf",
  20377. default: true
  20378. },
  20379. {
  20380. name: "Macro",
  20381. height: math.unit(72, "feet"),
  20382. form: "folf"
  20383. },
  20384. {
  20385. name: "Micro",
  20386. height: math.unit(6, "inches"),
  20387. form: "hyena"
  20388. },
  20389. {
  20390. name: "Normal",
  20391. height: math.unit(6, "feet"),
  20392. form: "hyena",
  20393. default: true
  20394. },
  20395. {
  20396. name: "Macro",
  20397. height: math.unit(72, "feet"),
  20398. form: "hyena"
  20399. },
  20400. ],
  20401. {
  20402. "hyena": {
  20403. name: "Hyena",
  20404. default: true
  20405. },
  20406. "folf": {
  20407. name: "Folf",
  20408. },
  20409. }
  20410. ))
  20411. characterMakers.push(() => makeCharacter(
  20412. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20413. {
  20414. front: {
  20415. height: math.unit(5 + 9 / 12, "feet"),
  20416. weight: math.unit(175, "lb"),
  20417. name: "Front",
  20418. image: {
  20419. source: "./media/characters/irishfox/front.svg",
  20420. extra: 1912 / 1680,
  20421. bottom: 0.02
  20422. }
  20423. },
  20424. },
  20425. [
  20426. {
  20427. name: "Nano",
  20428. height: math.unit(1, "mm")
  20429. },
  20430. {
  20431. name: "Micro",
  20432. height: math.unit(2, "inches")
  20433. },
  20434. {
  20435. name: "Normal",
  20436. height: math.unit(5 + 9 / 12, "feet"),
  20437. default: true
  20438. },
  20439. {
  20440. name: "Macro",
  20441. height: math.unit(45, "feet")
  20442. },
  20443. ]
  20444. ))
  20445. characterMakers.push(() => makeCharacter(
  20446. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20447. {
  20448. front: {
  20449. height: math.unit(6 + 1 / 12, "feet"),
  20450. weight: math.unit(75, "lb"),
  20451. name: "Front",
  20452. image: {
  20453. source: "./media/characters/aronai-sieyes/front.svg",
  20454. extra: 1532/1450,
  20455. bottom: 42/1574
  20456. }
  20457. },
  20458. side: {
  20459. height: math.unit(6 + 1 / 12, "feet"),
  20460. weight: math.unit(75, "lb"),
  20461. name: "Side",
  20462. image: {
  20463. source: "./media/characters/aronai-sieyes/side.svg",
  20464. extra: 1422/1365,
  20465. bottom: 148/1570
  20466. }
  20467. },
  20468. back: {
  20469. height: math.unit(6 + 1 / 12, "feet"),
  20470. weight: math.unit(75, "lb"),
  20471. name: "Back",
  20472. image: {
  20473. source: "./media/characters/aronai-sieyes/back.svg",
  20474. extra: 1526/1464,
  20475. bottom: 51/1577
  20476. }
  20477. },
  20478. dressed: {
  20479. height: math.unit(6 + 1 / 12, "feet"),
  20480. weight: math.unit(75, "lb"),
  20481. name: "Dressed",
  20482. image: {
  20483. source: "./media/characters/aronai-sieyes/dressed.svg",
  20484. extra: 1559/1483,
  20485. bottom: 39/1598
  20486. }
  20487. },
  20488. slit: {
  20489. height: math.unit(1.3, "feet"),
  20490. name: "Slit",
  20491. image: {
  20492. source: "./media/characters/aronai-sieyes/slit.svg"
  20493. }
  20494. },
  20495. slitSpread: {
  20496. height: math.unit(0.9, "feet"),
  20497. name: "Slit (Spread)",
  20498. image: {
  20499. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20500. }
  20501. },
  20502. rump: {
  20503. height: math.unit(1.3, "feet"),
  20504. name: "Rump",
  20505. image: {
  20506. source: "./media/characters/aronai-sieyes/rump.svg"
  20507. }
  20508. },
  20509. maw: {
  20510. height: math.unit(1.25, "feet"),
  20511. name: "Maw",
  20512. image: {
  20513. source: "./media/characters/aronai-sieyes/maw.svg"
  20514. }
  20515. },
  20516. feral: {
  20517. height: math.unit(18, "feet"),
  20518. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20519. name: "Feral",
  20520. image: {
  20521. source: "./media/characters/aronai-sieyes/feral.svg",
  20522. extra: 1530 / 1240,
  20523. bottom: 0.035
  20524. }
  20525. },
  20526. },
  20527. [
  20528. {
  20529. name: "Micro",
  20530. height: math.unit(2, "inches")
  20531. },
  20532. {
  20533. name: "Normal",
  20534. height: math.unit(6 + 1 / 12, "feet"),
  20535. default: true
  20536. }
  20537. ]
  20538. ))
  20539. characterMakers.push(() => makeCharacter(
  20540. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20541. {
  20542. front: {
  20543. height: math.unit(12, "feet"),
  20544. weight: math.unit(410, "kg"),
  20545. name: "Front",
  20546. image: {
  20547. source: "./media/characters/xuna/front.svg",
  20548. extra: 2184 / 1980
  20549. }
  20550. },
  20551. side: {
  20552. height: math.unit(12, "feet"),
  20553. weight: math.unit(410, "kg"),
  20554. name: "Side",
  20555. image: {
  20556. source: "./media/characters/xuna/side.svg",
  20557. extra: 2184 / 1980
  20558. }
  20559. },
  20560. back: {
  20561. height: math.unit(12, "feet"),
  20562. weight: math.unit(410, "kg"),
  20563. name: "Back",
  20564. image: {
  20565. source: "./media/characters/xuna/back.svg",
  20566. extra: 2184 / 1980
  20567. }
  20568. },
  20569. },
  20570. [
  20571. {
  20572. name: "Nano glow",
  20573. height: math.unit(10, "nm")
  20574. },
  20575. {
  20576. name: "Micro floof",
  20577. height: math.unit(0.3, "m")
  20578. },
  20579. {
  20580. name: "Huggable softy boi",
  20581. height: math.unit(3.6576, "m"),
  20582. default: true
  20583. },
  20584. {
  20585. name: "Admirable floof",
  20586. height: math.unit(80, "meters")
  20587. },
  20588. {
  20589. name: "Gentle macro",
  20590. height: math.unit(300, "meters")
  20591. },
  20592. {
  20593. name: "Very careful floof",
  20594. height: math.unit(3200, "meters")
  20595. },
  20596. {
  20597. name: "The mega floof",
  20598. height: math.unit(36000, "meters")
  20599. },
  20600. {
  20601. name: "Giga-fur-Wicker",
  20602. height: math.unit(4800000, "meters")
  20603. },
  20604. {
  20605. name: "Licky world",
  20606. height: math.unit(20000000, "meters")
  20607. },
  20608. {
  20609. name: "Floofy cyan sun",
  20610. height: math.unit(1500000000, "meters")
  20611. },
  20612. {
  20613. name: "Milky Wicker",
  20614. height: math.unit(1000000000000000000000, "meters")
  20615. },
  20616. {
  20617. name: "The observing Wicker",
  20618. height: math.unit(999999999999999999999999999, "meters")
  20619. },
  20620. ]
  20621. ))
  20622. characterMakers.push(() => makeCharacter(
  20623. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20624. {
  20625. front: {
  20626. height: math.unit(5 + 9 / 12, "feet"),
  20627. weight: math.unit(150, "lb"),
  20628. name: "Front",
  20629. image: {
  20630. source: "./media/characters/arokha-sieyes/front.svg",
  20631. extra: 1425 / 1284,
  20632. bottom: 0.05
  20633. }
  20634. },
  20635. },
  20636. [
  20637. {
  20638. name: "Normal",
  20639. height: math.unit(5 + 9 / 12, "feet")
  20640. },
  20641. {
  20642. name: "Macro",
  20643. height: math.unit(30, "meters"),
  20644. default: true
  20645. },
  20646. ]
  20647. ))
  20648. characterMakers.push(() => makeCharacter(
  20649. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20650. {
  20651. front: {
  20652. height: math.unit(6, "feet"),
  20653. weight: math.unit(180, "lb"),
  20654. name: "Front",
  20655. image: {
  20656. source: "./media/characters/arokh-sieyes/front.svg",
  20657. extra: 1830 / 1769,
  20658. bottom: 0.01
  20659. }
  20660. },
  20661. },
  20662. [
  20663. {
  20664. name: "Normal",
  20665. height: math.unit(6, "feet")
  20666. },
  20667. {
  20668. name: "Macro",
  20669. height: math.unit(30, "meters"),
  20670. default: true
  20671. },
  20672. ]
  20673. ))
  20674. characterMakers.push(() => makeCharacter(
  20675. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20676. {
  20677. side: {
  20678. height: math.unit(13 + 1 / 12, "feet"),
  20679. weight: math.unit(8.5, "tonnes"),
  20680. preyCapacity: math.unit(36, "people"),
  20681. name: "Side",
  20682. image: {
  20683. source: "./media/characters/goldeneye/side.svg",
  20684. extra: 1139/741,
  20685. bottom: 98/1237
  20686. }
  20687. },
  20688. front: {
  20689. height: math.unit(5.1, "feet"),
  20690. weight: math.unit(8.5, "tonnes"),
  20691. preyCapacity: math.unit(36, "people"),
  20692. name: "Front",
  20693. image: {
  20694. source: "./media/characters/goldeneye/front.svg",
  20695. extra: 635/365,
  20696. bottom: 598/1233
  20697. }
  20698. },
  20699. maw: {
  20700. height: math.unit(6.6, "feet"),
  20701. name: "Maw",
  20702. image: {
  20703. source: "./media/characters/goldeneye/maw.svg"
  20704. }
  20705. },
  20706. headFront: {
  20707. height: math.unit(8, "feet"),
  20708. name: "Head (Front)",
  20709. image: {
  20710. source: "./media/characters/goldeneye/head-front.svg"
  20711. }
  20712. },
  20713. headSide: {
  20714. height: math.unit(6, "feet"),
  20715. name: "Head (Side)",
  20716. image: {
  20717. source: "./media/characters/goldeneye/head-side.svg"
  20718. }
  20719. },
  20720. headBack: {
  20721. height: math.unit(8, "feet"),
  20722. name: "Head (Back)",
  20723. image: {
  20724. source: "./media/characters/goldeneye/head-back.svg"
  20725. }
  20726. },
  20727. paw: {
  20728. height: math.unit(3.4, "feet"),
  20729. name: "Paw",
  20730. image: {
  20731. source: "./media/characters/goldeneye/paw.svg"
  20732. }
  20733. },
  20734. toering: {
  20735. height: math.unit(0.45, "feet"),
  20736. name: "Toering",
  20737. image: {
  20738. source: "./media/characters/goldeneye/toering.svg"
  20739. }
  20740. },
  20741. eyes: {
  20742. height: math.unit(0.5, "feet"),
  20743. name: "Eyes",
  20744. image: {
  20745. source: "./media/characters/goldeneye/eyes.svg"
  20746. }
  20747. },
  20748. },
  20749. [
  20750. {
  20751. name: "Normal",
  20752. height: math.unit(13 + 1 / 12, "feet"),
  20753. default: true
  20754. },
  20755. ]
  20756. ))
  20757. characterMakers.push(() => makeCharacter(
  20758. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20759. {
  20760. front: {
  20761. height: math.unit(6 + 1 / 12, "feet"),
  20762. weight: math.unit(210, "lb"),
  20763. name: "Front",
  20764. image: {
  20765. source: "./media/characters/leonardo-lycheborne/front.svg",
  20766. extra: 776/723,
  20767. bottom: 34/810
  20768. }
  20769. },
  20770. side: {
  20771. height: math.unit(6 + 1 / 12, "feet"),
  20772. weight: math.unit(210, "lb"),
  20773. name: "Side",
  20774. image: {
  20775. source: "./media/characters/leonardo-lycheborne/side.svg",
  20776. extra: 780/728,
  20777. bottom: 12/792
  20778. }
  20779. },
  20780. back: {
  20781. height: math.unit(6 + 1 / 12, "feet"),
  20782. weight: math.unit(210, "lb"),
  20783. name: "Back",
  20784. image: {
  20785. source: "./media/characters/leonardo-lycheborne/back.svg",
  20786. extra: 775/721,
  20787. bottom: 17/792
  20788. }
  20789. },
  20790. hand: {
  20791. height: math.unit(1.08, "feet"),
  20792. name: "Hand",
  20793. image: {
  20794. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20795. }
  20796. },
  20797. foot: {
  20798. height: math.unit(1.32, "feet"),
  20799. name: "Foot",
  20800. image: {
  20801. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20802. }
  20803. },
  20804. maw: {
  20805. height: math.unit(1, "feet"),
  20806. name: "Maw",
  20807. image: {
  20808. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20809. }
  20810. },
  20811. were: {
  20812. height: math.unit(20, "feet"),
  20813. weight: math.unit(7800, "lb"),
  20814. name: "Were",
  20815. image: {
  20816. source: "./media/characters/leonardo-lycheborne/were.svg",
  20817. extra: 1224/1165,
  20818. bottom: 72/1296
  20819. }
  20820. },
  20821. feral: {
  20822. height: math.unit(7.5, "feet"),
  20823. weight: math.unit(600, "lb"),
  20824. name: "Feral",
  20825. image: {
  20826. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20827. extra: 797/702,
  20828. bottom: 139/936
  20829. }
  20830. },
  20831. taur: {
  20832. height: math.unit(11, "feet"),
  20833. weight: math.unit(3300, "lb"),
  20834. name: "Taur",
  20835. image: {
  20836. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20837. extra: 1271/1197,
  20838. bottom: 47/1318
  20839. }
  20840. },
  20841. barghest: {
  20842. height: math.unit(11, "feet"),
  20843. weight: math.unit(1300, "lb"),
  20844. name: "Barghest",
  20845. image: {
  20846. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20847. extra: 1291/1204,
  20848. bottom: 37/1328
  20849. }
  20850. },
  20851. dick: {
  20852. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20853. name: "Dick",
  20854. image: {
  20855. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20856. }
  20857. },
  20858. dickWere: {
  20859. height: math.unit((20) / 3.8, "feet"),
  20860. name: "Dick (Were)",
  20861. image: {
  20862. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20863. }
  20864. },
  20865. },
  20866. [
  20867. {
  20868. name: "Normal",
  20869. height: math.unit(6 + 1 / 12, "feet"),
  20870. default: true
  20871. },
  20872. ]
  20873. ))
  20874. characterMakers.push(() => makeCharacter(
  20875. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20876. {
  20877. front: {
  20878. height: math.unit(10, "feet"),
  20879. weight: math.unit(350, "lb"),
  20880. name: "Front",
  20881. image: {
  20882. source: "./media/characters/jet/front.svg",
  20883. extra: 2050 / 1980,
  20884. bottom: 0.013
  20885. }
  20886. },
  20887. back: {
  20888. height: math.unit(10, "feet"),
  20889. weight: math.unit(350, "lb"),
  20890. name: "Back",
  20891. image: {
  20892. source: "./media/characters/jet/back.svg",
  20893. extra: 2050 / 1980,
  20894. bottom: 0.013
  20895. }
  20896. },
  20897. },
  20898. [
  20899. {
  20900. name: "Micro",
  20901. height: math.unit(6, "inches")
  20902. },
  20903. {
  20904. name: "Normal",
  20905. height: math.unit(10, "feet"),
  20906. default: true
  20907. },
  20908. {
  20909. name: "Macro",
  20910. height: math.unit(100, "feet")
  20911. },
  20912. ]
  20913. ))
  20914. characterMakers.push(() => makeCharacter(
  20915. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20916. {
  20917. front: {
  20918. height: math.unit(15, "feet"),
  20919. weight: math.unit(2800, "lb"),
  20920. name: "Front",
  20921. image: {
  20922. source: "./media/characters/tanarath/front.svg",
  20923. extra: 2392 / 2220,
  20924. bottom: 0.03
  20925. }
  20926. },
  20927. back: {
  20928. height: math.unit(15, "feet"),
  20929. weight: math.unit(2800, "lb"),
  20930. name: "Back",
  20931. image: {
  20932. source: "./media/characters/tanarath/back.svg",
  20933. extra: 2392 / 2220,
  20934. bottom: 0.03
  20935. }
  20936. },
  20937. },
  20938. [
  20939. {
  20940. name: "Normal",
  20941. height: math.unit(15, "feet"),
  20942. default: true
  20943. },
  20944. ]
  20945. ))
  20946. characterMakers.push(() => makeCharacter(
  20947. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20948. {
  20949. front: {
  20950. height: math.unit(7 + 1 / 12, "feet"),
  20951. weight: math.unit(175, "lb"),
  20952. name: "Front",
  20953. image: {
  20954. source: "./media/characters/patty-cattybatty/front.svg",
  20955. extra: 908 / 874,
  20956. bottom: 0.025
  20957. }
  20958. },
  20959. },
  20960. [
  20961. {
  20962. name: "Micro",
  20963. height: math.unit(1, "inch")
  20964. },
  20965. {
  20966. name: "Normal",
  20967. height: math.unit(7 + 1 / 12, "feet")
  20968. },
  20969. {
  20970. name: "Mini Macro",
  20971. height: math.unit(155, "feet")
  20972. },
  20973. {
  20974. name: "Macro",
  20975. height: math.unit(1077, "feet")
  20976. },
  20977. {
  20978. name: "Mega Macro",
  20979. height: math.unit(47650, "feet"),
  20980. default: true
  20981. },
  20982. {
  20983. name: "Giga Macro",
  20984. height: math.unit(440, "miles")
  20985. },
  20986. {
  20987. name: "Tera Macro",
  20988. height: math.unit(8700, "miles")
  20989. },
  20990. {
  20991. name: "Planetary Macro",
  20992. height: math.unit(32700, "miles")
  20993. },
  20994. {
  20995. name: "Solar Macro",
  20996. height: math.unit(550000, "miles")
  20997. },
  20998. {
  20999. name: "Celestial Macro",
  21000. height: math.unit(2.5, "AU")
  21001. },
  21002. ]
  21003. ))
  21004. characterMakers.push(() => makeCharacter(
  21005. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21006. {
  21007. front: {
  21008. height: math.unit(4 + 5 / 12, "feet"),
  21009. weight: math.unit(90, "lb"),
  21010. name: "Front",
  21011. image: {
  21012. source: "./media/characters/cappu/front.svg",
  21013. extra: 1247 / 1152,
  21014. bottom: 0.012
  21015. }
  21016. },
  21017. },
  21018. [
  21019. {
  21020. name: "Normal",
  21021. height: math.unit(4 + 5 / 12, "feet"),
  21022. default: true
  21023. },
  21024. ]
  21025. ))
  21026. characterMakers.push(() => makeCharacter(
  21027. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21028. {
  21029. frontDressed: {
  21030. height: math.unit(70, "cm"),
  21031. weight: math.unit(6, "kg"),
  21032. name: "Front (Dressed)",
  21033. image: {
  21034. source: "./media/characters/sebi/front-dressed.svg",
  21035. extra: 713.5 / 686.5,
  21036. bottom: 0.003
  21037. }
  21038. },
  21039. front: {
  21040. height: math.unit(70, "cm"),
  21041. weight: math.unit(5, "kg"),
  21042. name: "Front",
  21043. image: {
  21044. source: "./media/characters/sebi/front.svg",
  21045. extra: 713.5 / 686.5,
  21046. bottom: 0.003
  21047. }
  21048. }
  21049. },
  21050. [
  21051. {
  21052. name: "Normal",
  21053. height: math.unit(70, "cm"),
  21054. default: true
  21055. },
  21056. {
  21057. name: "Macro",
  21058. height: math.unit(8, "meters")
  21059. },
  21060. ]
  21061. ))
  21062. characterMakers.push(() => makeCharacter(
  21063. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21064. {
  21065. front: {
  21066. height: math.unit(6, "feet"),
  21067. weight: math.unit(150, "lb"),
  21068. name: "Front",
  21069. image: {
  21070. source: "./media/characters/typhek/front.svg",
  21071. extra: 1948 / 1929,
  21072. bottom: 0.025
  21073. }
  21074. },
  21075. side: {
  21076. height: math.unit(6, "feet"),
  21077. weight: math.unit(150, "lb"),
  21078. name: "Side",
  21079. image: {
  21080. source: "./media/characters/typhek/side.svg",
  21081. extra: 2034 / 2010,
  21082. bottom: 0.003
  21083. }
  21084. },
  21085. back: {
  21086. height: math.unit(6, "feet"),
  21087. weight: math.unit(150, "lb"),
  21088. name: "Back",
  21089. image: {
  21090. source: "./media/characters/typhek/back.svg",
  21091. extra: 2005 / 1978,
  21092. bottom: 0.004
  21093. }
  21094. },
  21095. palm: {
  21096. height: math.unit(1.2, "feet"),
  21097. name: "Palm",
  21098. image: {
  21099. source: "./media/characters/typhek/palm.svg"
  21100. }
  21101. },
  21102. fist: {
  21103. height: math.unit(1.1, "feet"),
  21104. name: "Fist",
  21105. image: {
  21106. source: "./media/characters/typhek/fist.svg"
  21107. }
  21108. },
  21109. foot: {
  21110. height: math.unit(1.57, "feet"),
  21111. name: "Foot",
  21112. image: {
  21113. source: "./media/characters/typhek/foot.svg"
  21114. }
  21115. },
  21116. sole: {
  21117. height: math.unit(2.05, "feet"),
  21118. name: "Sole",
  21119. image: {
  21120. source: "./media/characters/typhek/sole.svg"
  21121. }
  21122. },
  21123. },
  21124. [
  21125. {
  21126. name: "Macro",
  21127. height: math.unit(40, "stories"),
  21128. default: true
  21129. },
  21130. {
  21131. name: "Megamacro",
  21132. height: math.unit(1, "mile")
  21133. },
  21134. {
  21135. name: "Gigamacro",
  21136. height: math.unit(4000, "solarradii")
  21137. },
  21138. {
  21139. name: "Universal",
  21140. height: math.unit(1.1, "universes")
  21141. }
  21142. ]
  21143. ))
  21144. characterMakers.push(() => makeCharacter(
  21145. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21146. {
  21147. side: {
  21148. height: math.unit(5 + 7 / 12, "feet"),
  21149. weight: math.unit(150, "lb"),
  21150. name: "Side",
  21151. image: {
  21152. source: "./media/characters/kassy/side.svg",
  21153. extra: 1280 / 1225,
  21154. bottom: 0.002
  21155. }
  21156. },
  21157. front: {
  21158. height: math.unit(5 + 7 / 12, "feet"),
  21159. weight: math.unit(150, "lb"),
  21160. name: "Front",
  21161. image: {
  21162. source: "./media/characters/kassy/front.svg",
  21163. extra: 1280 / 1225,
  21164. bottom: 0.025
  21165. }
  21166. },
  21167. back: {
  21168. height: math.unit(5 + 7 / 12, "feet"),
  21169. weight: math.unit(150, "lb"),
  21170. name: "Back",
  21171. image: {
  21172. source: "./media/characters/kassy/back.svg",
  21173. extra: 1280 / 1225,
  21174. bottom: 0.002
  21175. }
  21176. },
  21177. foot: {
  21178. height: math.unit(1.266, "feet"),
  21179. name: "Foot",
  21180. image: {
  21181. source: "./media/characters/kassy/foot.svg"
  21182. }
  21183. },
  21184. },
  21185. [
  21186. {
  21187. name: "Normal",
  21188. height: math.unit(5 + 7 / 12, "feet")
  21189. },
  21190. {
  21191. name: "Macro",
  21192. height: math.unit(137, "feet"),
  21193. default: true
  21194. },
  21195. {
  21196. name: "Megamacro",
  21197. height: math.unit(1, "mile")
  21198. },
  21199. ]
  21200. ))
  21201. characterMakers.push(() => makeCharacter(
  21202. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21203. {
  21204. front: {
  21205. height: math.unit(6 + 1 / 12, "feet"),
  21206. weight: math.unit(200, "lb"),
  21207. name: "Front",
  21208. image: {
  21209. source: "./media/characters/neil/front.svg",
  21210. extra: 1326 / 1250,
  21211. bottom: 0.023
  21212. }
  21213. },
  21214. },
  21215. [
  21216. {
  21217. name: "Normal",
  21218. height: math.unit(6 + 1 / 12, "feet"),
  21219. default: true
  21220. },
  21221. {
  21222. name: "Macro",
  21223. height: math.unit(200, "feet")
  21224. },
  21225. ]
  21226. ))
  21227. characterMakers.push(() => makeCharacter(
  21228. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21229. {
  21230. front: {
  21231. height: math.unit(5 + 9 / 12, "feet"),
  21232. weight: math.unit(190, "lb"),
  21233. name: "Front",
  21234. image: {
  21235. source: "./media/characters/atticus/front.svg",
  21236. extra: 2934 / 2785,
  21237. bottom: 0.025
  21238. }
  21239. },
  21240. },
  21241. [
  21242. {
  21243. name: "Normal",
  21244. height: math.unit(5 + 9 / 12, "feet"),
  21245. default: true
  21246. },
  21247. {
  21248. name: "Macro",
  21249. height: math.unit(180, "feet")
  21250. },
  21251. ]
  21252. ))
  21253. characterMakers.push(() => makeCharacter(
  21254. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21255. {
  21256. side: {
  21257. height: math.unit(9, "feet"),
  21258. weight: math.unit(650, "lb"),
  21259. name: "Side",
  21260. image: {
  21261. source: "./media/characters/milo/side.svg",
  21262. extra: 2644 / 2310,
  21263. bottom: 0.032
  21264. }
  21265. },
  21266. },
  21267. [
  21268. {
  21269. name: "Normal",
  21270. height: math.unit(9, "feet"),
  21271. default: true
  21272. },
  21273. {
  21274. name: "Macro",
  21275. height: math.unit(300, "feet")
  21276. },
  21277. ]
  21278. ))
  21279. characterMakers.push(() => makeCharacter(
  21280. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21281. {
  21282. side: {
  21283. height: math.unit(8, "meters"),
  21284. weight: math.unit(90000, "kg"),
  21285. name: "Side",
  21286. image: {
  21287. source: "./media/characters/ijzer/side.svg",
  21288. extra: 2756 / 1600,
  21289. bottom: 0.01
  21290. }
  21291. },
  21292. },
  21293. [
  21294. {
  21295. name: "Small",
  21296. height: math.unit(3, "meters")
  21297. },
  21298. {
  21299. name: "Normal",
  21300. height: math.unit(8, "meters"),
  21301. default: true
  21302. },
  21303. {
  21304. name: "Normal+",
  21305. height: math.unit(10, "meters")
  21306. },
  21307. {
  21308. name: "Bigger",
  21309. height: math.unit(24, "meters")
  21310. },
  21311. {
  21312. name: "Huge",
  21313. height: math.unit(80, "meters")
  21314. },
  21315. ]
  21316. ))
  21317. characterMakers.push(() => makeCharacter(
  21318. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21319. {
  21320. front: {
  21321. height: math.unit(6 + 2 / 12, "feet"),
  21322. weight: math.unit(153, "lb"),
  21323. name: "Front",
  21324. image: {
  21325. source: "./media/characters/luca-cervicum/front.svg",
  21326. extra: 370 / 327,
  21327. bottom: 0.015
  21328. }
  21329. },
  21330. back: {
  21331. height: math.unit(6 + 2 / 12, "feet"),
  21332. weight: math.unit(153, "lb"),
  21333. name: "Back",
  21334. image: {
  21335. source: "./media/characters/luca-cervicum/back.svg",
  21336. extra: 367 / 333,
  21337. bottom: 0.005
  21338. }
  21339. },
  21340. frontGear: {
  21341. height: math.unit(6 + 2 / 12, "feet"),
  21342. weight: math.unit(173, "lb"),
  21343. name: "Front (Gear)",
  21344. image: {
  21345. source: "./media/characters/luca-cervicum/front-gear.svg",
  21346. extra: 377 / 333,
  21347. bottom: 0.006
  21348. }
  21349. },
  21350. },
  21351. [
  21352. {
  21353. name: "Normal",
  21354. height: math.unit(6 + 2 / 12, "feet"),
  21355. default: true
  21356. },
  21357. ]
  21358. ))
  21359. characterMakers.push(() => makeCharacter(
  21360. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21361. {
  21362. front: {
  21363. height: math.unit(6 + 1 / 12, "feet"),
  21364. weight: math.unit(304, "lb"),
  21365. name: "Front",
  21366. image: {
  21367. source: "./media/characters/oliver/front.svg",
  21368. extra: 157 / 143,
  21369. bottom: 0.08
  21370. }
  21371. },
  21372. },
  21373. [
  21374. {
  21375. name: "Normal",
  21376. height: math.unit(6 + 1 / 12, "feet"),
  21377. default: true
  21378. },
  21379. ]
  21380. ))
  21381. characterMakers.push(() => makeCharacter(
  21382. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21383. {
  21384. front: {
  21385. height: math.unit(5 + 7 / 12, "feet"),
  21386. weight: math.unit(140, "lb"),
  21387. name: "Front",
  21388. image: {
  21389. source: "./media/characters/shane/front.svg",
  21390. extra: 304 / 289,
  21391. bottom: 0.005
  21392. }
  21393. },
  21394. },
  21395. [
  21396. {
  21397. name: "Normal",
  21398. height: math.unit(5 + 7 / 12, "feet"),
  21399. default: true
  21400. },
  21401. ]
  21402. ))
  21403. characterMakers.push(() => makeCharacter(
  21404. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21405. {
  21406. front: {
  21407. height: math.unit(5 + 9 / 12, "feet"),
  21408. weight: math.unit(178, "lb"),
  21409. name: "Front",
  21410. image: {
  21411. source: "./media/characters/shin/front.svg",
  21412. extra: 159 / 151,
  21413. bottom: 0.015
  21414. }
  21415. },
  21416. },
  21417. [
  21418. {
  21419. name: "Normal",
  21420. height: math.unit(5 + 9 / 12, "feet"),
  21421. default: true
  21422. },
  21423. ]
  21424. ))
  21425. characterMakers.push(() => makeCharacter(
  21426. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21427. {
  21428. front: {
  21429. height: math.unit(5 + 10 / 12, "feet"),
  21430. weight: math.unit(168, "lb"),
  21431. name: "Front",
  21432. image: {
  21433. source: "./media/characters/xerxes/front.svg",
  21434. extra: 282 / 260,
  21435. bottom: 0.045
  21436. }
  21437. },
  21438. },
  21439. [
  21440. {
  21441. name: "Normal",
  21442. height: math.unit(5 + 10 / 12, "feet"),
  21443. default: true
  21444. },
  21445. ]
  21446. ))
  21447. characterMakers.push(() => makeCharacter(
  21448. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21449. {
  21450. front: {
  21451. height: math.unit(6 + 7 / 12, "feet"),
  21452. weight: math.unit(208, "lb"),
  21453. name: "Front",
  21454. image: {
  21455. source: "./media/characters/chaska/front.svg",
  21456. extra: 332 / 319,
  21457. bottom: 0.015
  21458. }
  21459. },
  21460. },
  21461. [
  21462. {
  21463. name: "Normal",
  21464. height: math.unit(6 + 7 / 12, "feet"),
  21465. default: true
  21466. },
  21467. ]
  21468. ))
  21469. characterMakers.push(() => makeCharacter(
  21470. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21471. {
  21472. front: {
  21473. height: math.unit(5 + 8 / 12, "feet"),
  21474. weight: math.unit(208, "lb"),
  21475. name: "Front",
  21476. image: {
  21477. source: "./media/characters/enuk/front.svg",
  21478. extra: 437 / 406,
  21479. bottom: 0.02
  21480. }
  21481. },
  21482. },
  21483. [
  21484. {
  21485. name: "Normal",
  21486. height: math.unit(5 + 8 / 12, "feet"),
  21487. default: true
  21488. },
  21489. ]
  21490. ))
  21491. characterMakers.push(() => makeCharacter(
  21492. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21493. {
  21494. front: {
  21495. height: math.unit(5 + 10 / 12, "feet"),
  21496. weight: math.unit(252, "lb"),
  21497. name: "Front",
  21498. image: {
  21499. source: "./media/characters/bruun/front.svg",
  21500. extra: 197 / 187,
  21501. bottom: 0.012
  21502. }
  21503. },
  21504. },
  21505. [
  21506. {
  21507. name: "Normal",
  21508. height: math.unit(5 + 10 / 12, "feet"),
  21509. default: true
  21510. },
  21511. ]
  21512. ))
  21513. characterMakers.push(() => makeCharacter(
  21514. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21515. {
  21516. front: {
  21517. height: math.unit(6 + 10 / 12, "feet"),
  21518. weight: math.unit(255, "lb"),
  21519. name: "Front",
  21520. image: {
  21521. source: "./media/characters/alexeev/front.svg",
  21522. extra: 213 / 200,
  21523. bottom: 0.05
  21524. }
  21525. },
  21526. },
  21527. [
  21528. {
  21529. name: "Normal",
  21530. height: math.unit(6 + 10 / 12, "feet"),
  21531. default: true
  21532. },
  21533. ]
  21534. ))
  21535. characterMakers.push(() => makeCharacter(
  21536. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21537. {
  21538. front: {
  21539. height: math.unit(2 + 8 / 12, "feet"),
  21540. weight: math.unit(22, "lb"),
  21541. name: "Front",
  21542. image: {
  21543. source: "./media/characters/evelyn/front.svg",
  21544. extra: 208 / 180
  21545. }
  21546. },
  21547. },
  21548. [
  21549. {
  21550. name: "Normal",
  21551. height: math.unit(2 + 8 / 12, "feet"),
  21552. default: true
  21553. },
  21554. ]
  21555. ))
  21556. characterMakers.push(() => makeCharacter(
  21557. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21558. {
  21559. front: {
  21560. height: math.unit(5 + 9 / 12, "feet"),
  21561. weight: math.unit(139, "lb"),
  21562. name: "Front",
  21563. image: {
  21564. source: "./media/characters/inca/front.svg",
  21565. extra: 294 / 291,
  21566. bottom: 0.03
  21567. }
  21568. },
  21569. },
  21570. [
  21571. {
  21572. name: "Normal",
  21573. height: math.unit(5 + 9 / 12, "feet"),
  21574. default: true
  21575. },
  21576. ]
  21577. ))
  21578. characterMakers.push(() => makeCharacter(
  21579. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21580. {
  21581. front: {
  21582. height: math.unit(6 + 3 / 12, "feet"),
  21583. weight: math.unit(185, "lb"),
  21584. name: "Front",
  21585. image: {
  21586. source: "./media/characters/mera/front.svg",
  21587. extra: 291 / 277,
  21588. bottom: 0.03
  21589. }
  21590. },
  21591. },
  21592. [
  21593. {
  21594. name: "Normal",
  21595. height: math.unit(6 + 3 / 12, "feet"),
  21596. default: true
  21597. },
  21598. ]
  21599. ))
  21600. characterMakers.push(() => makeCharacter(
  21601. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21602. {
  21603. front: {
  21604. height: math.unit(6 + 7 / 12, "feet"),
  21605. weight: math.unit(160, "lb"),
  21606. name: "Front",
  21607. image: {
  21608. source: "./media/characters/ceres/front.svg",
  21609. extra: 1023 / 950,
  21610. bottom: 0.027
  21611. }
  21612. },
  21613. back: {
  21614. height: math.unit(6 + 7 / 12, "feet"),
  21615. weight: math.unit(160, "lb"),
  21616. name: "Back",
  21617. image: {
  21618. source: "./media/characters/ceres/back.svg",
  21619. extra: 1023 / 950
  21620. }
  21621. },
  21622. },
  21623. [
  21624. {
  21625. name: "Normal",
  21626. height: math.unit(6 + 7 / 12, "feet"),
  21627. default: true
  21628. },
  21629. ]
  21630. ))
  21631. characterMakers.push(() => makeCharacter(
  21632. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21633. {
  21634. front: {
  21635. height: math.unit(5 + 10 / 12, "feet"),
  21636. weight: math.unit(150, "lb"),
  21637. name: "Front",
  21638. image: {
  21639. source: "./media/characters/kris/front.svg",
  21640. extra: 885 / 803,
  21641. bottom: 0.03
  21642. }
  21643. },
  21644. },
  21645. [
  21646. {
  21647. name: "Normal",
  21648. height: math.unit(5 + 10 / 12, "feet"),
  21649. default: true
  21650. },
  21651. ]
  21652. ))
  21653. characterMakers.push(() => makeCharacter(
  21654. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21655. {
  21656. front: {
  21657. height: math.unit(7, "feet"),
  21658. weight: math.unit(120, "kg"),
  21659. name: "Front",
  21660. image: {
  21661. source: "./media/characters/taluthus/front.svg",
  21662. extra: 903 / 833,
  21663. bottom: 0.015
  21664. }
  21665. },
  21666. },
  21667. [
  21668. {
  21669. name: "Normal",
  21670. height: math.unit(7, "feet"),
  21671. default: true
  21672. },
  21673. {
  21674. name: "Macro",
  21675. height: math.unit(300, "feet")
  21676. },
  21677. ]
  21678. ))
  21679. characterMakers.push(() => makeCharacter(
  21680. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21681. {
  21682. front: {
  21683. height: math.unit(5 + 9 / 12, "feet"),
  21684. weight: math.unit(145, "lb"),
  21685. name: "Front",
  21686. image: {
  21687. source: "./media/characters/dawn/front.svg",
  21688. extra: 2094 / 2016,
  21689. bottom: 0.025
  21690. }
  21691. },
  21692. back: {
  21693. height: math.unit(5 + 9 / 12, "feet"),
  21694. weight: math.unit(160, "lb"),
  21695. name: "Back",
  21696. image: {
  21697. source: "./media/characters/dawn/back.svg",
  21698. extra: 2112 / 2080,
  21699. bottom: 0.005
  21700. }
  21701. },
  21702. },
  21703. [
  21704. {
  21705. name: "Normal",
  21706. height: math.unit(6 + 7 / 12, "feet"),
  21707. default: true
  21708. },
  21709. ]
  21710. ))
  21711. characterMakers.push(() => makeCharacter(
  21712. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21713. {
  21714. anthro: {
  21715. height: math.unit(8 + 3 / 12, "feet"),
  21716. weight: math.unit(450, "lb"),
  21717. name: "Anthro",
  21718. image: {
  21719. source: "./media/characters/arador/anthro.svg",
  21720. extra: 1835 / 1718,
  21721. bottom: 0.025
  21722. }
  21723. },
  21724. feral: {
  21725. height: math.unit(4, "feet"),
  21726. weight: math.unit(200, "lb"),
  21727. name: "Feral",
  21728. image: {
  21729. source: "./media/characters/arador/feral.svg",
  21730. extra: 1683 / 1514,
  21731. bottom: 0.07
  21732. }
  21733. },
  21734. },
  21735. [
  21736. {
  21737. name: "Normal",
  21738. height: math.unit(8 + 3 / 12, "feet")
  21739. },
  21740. {
  21741. name: "Macro",
  21742. height: math.unit(82.5, "feet"),
  21743. default: true
  21744. },
  21745. ]
  21746. ))
  21747. characterMakers.push(() => makeCharacter(
  21748. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21749. {
  21750. front: {
  21751. height: math.unit(5 + 10 / 12, "feet"),
  21752. weight: math.unit(125, "lb"),
  21753. name: "Front",
  21754. image: {
  21755. source: "./media/characters/dharsi/front.svg",
  21756. extra: 716 / 630,
  21757. bottom: 0.035
  21758. }
  21759. },
  21760. },
  21761. [
  21762. {
  21763. name: "Nano",
  21764. height: math.unit(100, "nm")
  21765. },
  21766. {
  21767. name: "Micro",
  21768. height: math.unit(2, "inches")
  21769. },
  21770. {
  21771. name: "Normal",
  21772. height: math.unit(5 + 10 / 12, "feet"),
  21773. default: true
  21774. },
  21775. {
  21776. name: "Macro",
  21777. height: math.unit(1000, "feet")
  21778. },
  21779. {
  21780. name: "Megamacro",
  21781. height: math.unit(10, "miles")
  21782. },
  21783. {
  21784. name: "Gigamacro",
  21785. height: math.unit(3000, "miles")
  21786. },
  21787. {
  21788. name: "Teramacro",
  21789. height: math.unit(500000, "miles")
  21790. },
  21791. {
  21792. name: "Teramacro+",
  21793. height: math.unit(30, "galaxies")
  21794. },
  21795. ]
  21796. ))
  21797. characterMakers.push(() => makeCharacter(
  21798. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21799. {
  21800. front: {
  21801. height: math.unit(6, "feet"),
  21802. weight: math.unit(150, "lb"),
  21803. name: "Front",
  21804. image: {
  21805. source: "./media/characters/deathy/front.svg",
  21806. extra: 1552 / 1463,
  21807. bottom: 0.025
  21808. }
  21809. },
  21810. side: {
  21811. height: math.unit(6, "feet"),
  21812. weight: math.unit(150, "lb"),
  21813. name: "Side",
  21814. image: {
  21815. source: "./media/characters/deathy/side.svg",
  21816. extra: 1604 / 1455,
  21817. bottom: 0.025
  21818. }
  21819. },
  21820. back: {
  21821. height: math.unit(6, "feet"),
  21822. weight: math.unit(150, "lb"),
  21823. name: "Back",
  21824. image: {
  21825. source: "./media/characters/deathy/back.svg",
  21826. extra: 1580 / 1463,
  21827. bottom: 0.005
  21828. }
  21829. },
  21830. },
  21831. [
  21832. {
  21833. name: "Micro",
  21834. height: math.unit(5, "millimeters")
  21835. },
  21836. {
  21837. name: "Normal",
  21838. height: math.unit(6 + 5 / 12, "feet"),
  21839. default: true
  21840. },
  21841. ]
  21842. ))
  21843. characterMakers.push(() => makeCharacter(
  21844. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21845. {
  21846. front: {
  21847. height: math.unit(16, "feet"),
  21848. weight: math.unit(4000, "lb"),
  21849. name: "Front",
  21850. image: {
  21851. source: "./media/characters/juniper/front.svg",
  21852. bottom: 0.04
  21853. }
  21854. },
  21855. },
  21856. [
  21857. {
  21858. name: "Normal",
  21859. height: math.unit(16, "feet"),
  21860. default: true
  21861. },
  21862. ]
  21863. ))
  21864. characterMakers.push(() => makeCharacter(
  21865. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21866. {
  21867. front: {
  21868. height: math.unit(6, "feet"),
  21869. weight: math.unit(150, "lb"),
  21870. name: "Front",
  21871. image: {
  21872. source: "./media/characters/hipster/front.svg",
  21873. extra: 1312 / 1209,
  21874. bottom: 0.025
  21875. }
  21876. },
  21877. back: {
  21878. height: math.unit(6, "feet"),
  21879. weight: math.unit(150, "lb"),
  21880. name: "Back",
  21881. image: {
  21882. source: "./media/characters/hipster/back.svg",
  21883. extra: 1281 / 1196,
  21884. bottom: 0.01
  21885. }
  21886. },
  21887. },
  21888. [
  21889. {
  21890. name: "Micro",
  21891. height: math.unit(1, "mm")
  21892. },
  21893. {
  21894. name: "Normal",
  21895. height: math.unit(4, "inches"),
  21896. default: true
  21897. },
  21898. {
  21899. name: "Macro",
  21900. height: math.unit(500, "feet")
  21901. },
  21902. {
  21903. name: "Megamacro",
  21904. height: math.unit(1000, "miles")
  21905. },
  21906. ]
  21907. ))
  21908. characterMakers.push(() => makeCharacter(
  21909. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21910. {
  21911. front: {
  21912. height: math.unit(6, "feet"),
  21913. weight: math.unit(150, "lb"),
  21914. name: "Front",
  21915. image: {
  21916. source: "./media/characters/tendirmuldr/front.svg",
  21917. extra: 1878 / 1772,
  21918. bottom: 0.015
  21919. }
  21920. },
  21921. },
  21922. [
  21923. {
  21924. name: "Megamacro",
  21925. height: math.unit(1500, "miles"),
  21926. default: true
  21927. },
  21928. ]
  21929. ))
  21930. characterMakers.push(() => makeCharacter(
  21931. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21932. {
  21933. front: {
  21934. height: math.unit(14, "feet"),
  21935. weight: math.unit(12000, "lb"),
  21936. name: "Front",
  21937. image: {
  21938. source: "./media/characters/mort/front.svg",
  21939. extra: 365 / 318,
  21940. bottom: 0.01
  21941. }
  21942. },
  21943. side: {
  21944. height: math.unit(14, "feet"),
  21945. weight: math.unit(12000, "lb"),
  21946. name: "Side",
  21947. image: {
  21948. source: "./media/characters/mort/side.svg",
  21949. extra: 365 / 318,
  21950. bottom: 0.052
  21951. },
  21952. default: true
  21953. },
  21954. back: {
  21955. height: math.unit(14, "feet"),
  21956. weight: math.unit(12000, "lb"),
  21957. name: "Back",
  21958. image: {
  21959. source: "./media/characters/mort/back.svg",
  21960. extra: 371 / 332,
  21961. bottom: 0.18
  21962. }
  21963. },
  21964. },
  21965. [
  21966. {
  21967. name: "Normal",
  21968. height: math.unit(14, "feet"),
  21969. default: true
  21970. },
  21971. ]
  21972. ))
  21973. characterMakers.push(() => makeCharacter(
  21974. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21975. {
  21976. front: {
  21977. height: math.unit(8, "feet"),
  21978. weight: math.unit(1, "ton"),
  21979. name: "Front",
  21980. image: {
  21981. source: "./media/characters/lycoa/front.svg",
  21982. extra: 1836/1728,
  21983. bottom: 81/1917
  21984. }
  21985. },
  21986. back: {
  21987. height: math.unit(8, "feet"),
  21988. weight: math.unit(1, "ton"),
  21989. name: "Back",
  21990. image: {
  21991. source: "./media/characters/lycoa/back.svg",
  21992. extra: 1785/1720,
  21993. bottom: 91/1876
  21994. }
  21995. },
  21996. head: {
  21997. height: math.unit(1.6243, "feet"),
  21998. name: "Head",
  21999. image: {
  22000. source: "./media/characters/lycoa/head.svg",
  22001. extra: 1011/782,
  22002. bottom: 0/1011
  22003. }
  22004. },
  22005. tailmaw: {
  22006. height: math.unit(1.9, "feet"),
  22007. name: "Tailmaw",
  22008. image: {
  22009. source: "./media/characters/lycoa/tailmaw.svg"
  22010. }
  22011. },
  22012. tentacles: {
  22013. height: math.unit(2.1, "feet"),
  22014. name: "Tentacles",
  22015. image: {
  22016. source: "./media/characters/lycoa/tentacles.svg"
  22017. }
  22018. },
  22019. dick: {
  22020. height: math.unit(1.73, "feet"),
  22021. name: "Dick",
  22022. image: {
  22023. source: "./media/characters/lycoa/dick.svg"
  22024. }
  22025. },
  22026. },
  22027. [
  22028. {
  22029. name: "Normal",
  22030. height: math.unit(8, "feet"),
  22031. default: true
  22032. },
  22033. {
  22034. name: "Macro",
  22035. height: math.unit(30, "feet")
  22036. },
  22037. ]
  22038. ))
  22039. characterMakers.push(() => makeCharacter(
  22040. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22041. {
  22042. front: {
  22043. height: math.unit(4 + 2 / 12, "feet"),
  22044. weight: math.unit(70, "lb"),
  22045. name: "Front",
  22046. image: {
  22047. source: "./media/characters/naldara/front.svg",
  22048. extra: 1664/1387,
  22049. bottom: 81/1745
  22050. },
  22051. form: "anthro",
  22052. default: true
  22053. },
  22054. naga: {
  22055. height: math.unit(20, "feet"),
  22056. weight: math.unit(15000, "kg"),
  22057. name: "Front",
  22058. image: {
  22059. source: "./media/characters/naldara/naga.svg",
  22060. extra: 1590/1396,
  22061. bottom: 285/1875
  22062. },
  22063. form: "naga",
  22064. default: true
  22065. },
  22066. },
  22067. [
  22068. {
  22069. name: "Normal",
  22070. height: math.unit(4 + 2 / 12, "feet"),
  22071. form: "anthro",
  22072. default: true
  22073. },
  22074. {
  22075. name: "Normal",
  22076. height: math.unit(20, "feet"),
  22077. form: "naga",
  22078. default: true
  22079. },
  22080. ],
  22081. {
  22082. "anthro": {
  22083. name: "Anthro",
  22084. default: true
  22085. },
  22086. "naga": {
  22087. name: "Naga"
  22088. }
  22089. }
  22090. ))
  22091. characterMakers.push(() => makeCharacter(
  22092. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22093. {
  22094. front: {
  22095. height: math.unit(13 + 7 / 12, "feet"),
  22096. weight: math.unit(1500, "lb"),
  22097. name: "Front",
  22098. image: {
  22099. source: "./media/characters/briar/front.svg",
  22100. extra: 1223/1157,
  22101. bottom: 123/1346
  22102. }
  22103. },
  22104. },
  22105. [
  22106. {
  22107. name: "Normal",
  22108. height: math.unit(13 + 7 / 12, "feet"),
  22109. default: true
  22110. },
  22111. ]
  22112. ))
  22113. characterMakers.push(() => makeCharacter(
  22114. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22115. {
  22116. side: {
  22117. height: math.unit(16, "feet"),
  22118. weight: math.unit(500, "lb"),
  22119. name: "Side",
  22120. image: {
  22121. source: "./media/characters/vanguard/side.svg",
  22122. extra: 1022/914,
  22123. bottom: 30/1052
  22124. }
  22125. },
  22126. sideAlt: {
  22127. height: math.unit(10, "feet"),
  22128. weight: math.unit(500, "lb"),
  22129. name: "Side (Alt)",
  22130. image: {
  22131. source: "./media/characters/vanguard/side-alt.svg",
  22132. extra: 502 / 425,
  22133. bottom: 0.087
  22134. }
  22135. },
  22136. },
  22137. [
  22138. {
  22139. name: "Normal",
  22140. height: math.unit(17.71, "feet"),
  22141. default: true
  22142. },
  22143. ]
  22144. ))
  22145. characterMakers.push(() => makeCharacter(
  22146. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22147. {
  22148. front: {
  22149. height: math.unit(7.5, "feet"),
  22150. weight: math.unit(2, "lb"),
  22151. name: "Front",
  22152. image: {
  22153. source: "./media/characters/artemis/work-safe-front.svg",
  22154. extra: 1192 / 1075,
  22155. bottom: 0.07
  22156. },
  22157. form: "work-safe",
  22158. default: true
  22159. },
  22160. frontNsfw: {
  22161. height: math.unit(7.5, "feet"),
  22162. weight: math.unit(2, "lb"),
  22163. name: "Front",
  22164. image: {
  22165. source: "./media/characters/artemis/calibrating-front.svg",
  22166. extra: 1192 / 1075,
  22167. bottom: 0.07
  22168. },
  22169. form: "calibrating",
  22170. default: true
  22171. },
  22172. frontNsfwer: {
  22173. height: math.unit(7.5, "feet"),
  22174. weight: math.unit(2, "lb"),
  22175. name: "Front",
  22176. image: {
  22177. source: "./media/characters/artemis/oversize-load-front.svg",
  22178. extra: 1192 / 1075,
  22179. bottom: 0.07
  22180. },
  22181. form: "oversize-load",
  22182. default: true
  22183. },
  22184. side: {
  22185. height: math.unit(7.5, "feet"),
  22186. weight: math.unit(2, "lb"),
  22187. name: "Side",
  22188. image: {
  22189. source: "./media/characters/artemis/work-safe-side.svg",
  22190. extra: 1192 / 1075,
  22191. bottom: 0.07
  22192. },
  22193. form: "work-safe"
  22194. },
  22195. sideNsfw: {
  22196. height: math.unit(7.5, "feet"),
  22197. weight: math.unit(2, "lb"),
  22198. name: "Side",
  22199. image: {
  22200. source: "./media/characters/artemis/calibrating-side.svg",
  22201. extra: 1192 / 1075,
  22202. bottom: 0.07
  22203. },
  22204. form: "calibrating"
  22205. },
  22206. sideNsfwer: {
  22207. height: math.unit(7.5, "feet"),
  22208. weight: math.unit(2, "lb"),
  22209. name: "Side",
  22210. image: {
  22211. source: "./media/characters/artemis/oversize-load-side.svg",
  22212. extra: 1192 / 1075,
  22213. bottom: 0.07
  22214. },
  22215. form: "oversize-load"
  22216. },
  22217. maw: {
  22218. height: math.unit(1.1, "feet"),
  22219. name: "Maw",
  22220. image: {
  22221. source: "./media/characters/artemis/maw.svg"
  22222. },
  22223. form: "work-safe"
  22224. },
  22225. stomach: {
  22226. height: math.unit(0.95, "feet"),
  22227. name: "Stomach",
  22228. image: {
  22229. source: "./media/characters/artemis/stomach.svg"
  22230. },
  22231. form: "work-safe"
  22232. },
  22233. dickCanine: {
  22234. height: math.unit(1, "feet"),
  22235. name: "Dick (Canine)",
  22236. image: {
  22237. source: "./media/characters/artemis/dick-canine.svg"
  22238. },
  22239. form: "calibrating"
  22240. },
  22241. dickEquine: {
  22242. height: math.unit(0.85, "feet"),
  22243. name: "Dick (Equine)",
  22244. image: {
  22245. source: "./media/characters/artemis/dick-equine.svg"
  22246. },
  22247. form: "calibrating"
  22248. },
  22249. dickExotic: {
  22250. height: math.unit(0.85, "feet"),
  22251. name: "Dick (Exotic)",
  22252. image: {
  22253. source: "./media/characters/artemis/dick-exotic.svg"
  22254. },
  22255. form: "calibrating"
  22256. },
  22257. dickCanineBigger: {
  22258. height: math.unit(1 * 1.33, "feet"),
  22259. name: "Dick (Canine)",
  22260. image: {
  22261. source: "./media/characters/artemis/dick-canine.svg"
  22262. },
  22263. form: "oversize-load"
  22264. },
  22265. dickEquineBigger: {
  22266. height: math.unit(0.85 * 1.33, "feet"),
  22267. name: "Dick (Equine)",
  22268. image: {
  22269. source: "./media/characters/artemis/dick-equine.svg"
  22270. },
  22271. form: "oversize-load"
  22272. },
  22273. dickExoticBigger: {
  22274. height: math.unit(0.85 * 1.33, "feet"),
  22275. name: "Dick (Exotic)",
  22276. image: {
  22277. source: "./media/characters/artemis/dick-exotic.svg"
  22278. },
  22279. form: "oversize-load"
  22280. },
  22281. },
  22282. [
  22283. {
  22284. name: "Normal",
  22285. height: math.unit(7.5, "feet"),
  22286. form: "work-safe",
  22287. default: true
  22288. },
  22289. {
  22290. name: "Normal",
  22291. height: math.unit(7.5, "feet"),
  22292. form: "calibrating",
  22293. default: true
  22294. },
  22295. {
  22296. name: "Normal",
  22297. height: math.unit(7.5, "feet"),
  22298. form: "oversize-load",
  22299. default: true
  22300. },
  22301. {
  22302. name: "Enlarged",
  22303. height: math.unit(12, "feet"),
  22304. form: "work-safe",
  22305. },
  22306. {
  22307. name: "Enlarged",
  22308. height: math.unit(12, "feet"),
  22309. form: "calibrating",
  22310. },
  22311. {
  22312. name: "Enlarged",
  22313. height: math.unit(12, "feet"),
  22314. form: "oversize-load",
  22315. },
  22316. ],
  22317. {
  22318. "work-safe": {
  22319. name: "Work-Safe",
  22320. default: true
  22321. },
  22322. "calibrating": {
  22323. name: "Calibrating"
  22324. },
  22325. "oversize-load": {
  22326. name: "Oversize Load"
  22327. }
  22328. }
  22329. ))
  22330. characterMakers.push(() => makeCharacter(
  22331. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22332. {
  22333. front: {
  22334. height: math.unit(5 + 3 / 12, "feet"),
  22335. weight: math.unit(160, "lb"),
  22336. name: "Front",
  22337. image: {
  22338. source: "./media/characters/kira/front.svg",
  22339. extra: 906 / 786,
  22340. bottom: 0.01
  22341. }
  22342. },
  22343. back: {
  22344. height: math.unit(5 + 3 / 12, "feet"),
  22345. weight: math.unit(160, "lb"),
  22346. name: "Back",
  22347. image: {
  22348. source: "./media/characters/kira/back.svg",
  22349. extra: 882 / 757,
  22350. bottom: 0.005
  22351. }
  22352. },
  22353. frontDressed: {
  22354. height: math.unit(5 + 3 / 12, "feet"),
  22355. weight: math.unit(160, "lb"),
  22356. name: "Front (Dressed)",
  22357. image: {
  22358. source: "./media/characters/kira/front-dressed.svg",
  22359. extra: 906 / 786,
  22360. bottom: 0.01
  22361. }
  22362. },
  22363. beans: {
  22364. height: math.unit(0.92, "feet"),
  22365. name: "Beans",
  22366. image: {
  22367. source: "./media/characters/kira/beans.svg"
  22368. }
  22369. },
  22370. },
  22371. [
  22372. {
  22373. name: "Normal",
  22374. height: math.unit(5 + 3 / 12, "feet"),
  22375. default: true
  22376. },
  22377. ]
  22378. ))
  22379. characterMakers.push(() => makeCharacter(
  22380. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22381. {
  22382. front: {
  22383. height: math.unit(5 + 4 / 12, "feet"),
  22384. weight: math.unit(145, "lb"),
  22385. name: "Front",
  22386. image: {
  22387. source: "./media/characters/scramble/front.svg",
  22388. extra: 763 / 727,
  22389. bottom: 0.05
  22390. }
  22391. },
  22392. back: {
  22393. height: math.unit(5 + 4 / 12, "feet"),
  22394. weight: math.unit(145, "lb"),
  22395. name: "Back",
  22396. image: {
  22397. source: "./media/characters/scramble/back.svg",
  22398. extra: 826 / 737,
  22399. bottom: 0.002
  22400. }
  22401. },
  22402. },
  22403. [
  22404. {
  22405. name: "Normal",
  22406. height: math.unit(5 + 4 / 12, "feet"),
  22407. default: true
  22408. },
  22409. ]
  22410. ))
  22411. characterMakers.push(() => makeCharacter(
  22412. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22413. {
  22414. side: {
  22415. height: math.unit(6 + 2 / 12, "feet"),
  22416. weight: math.unit(190, "lb"),
  22417. name: "Side",
  22418. image: {
  22419. source: "./media/characters/biscuit/side.svg",
  22420. extra: 858 / 791,
  22421. bottom: 0.044
  22422. }
  22423. },
  22424. },
  22425. [
  22426. {
  22427. name: "Normal",
  22428. height: math.unit(6 + 2 / 12, "feet"),
  22429. default: true
  22430. },
  22431. ]
  22432. ))
  22433. characterMakers.push(() => makeCharacter(
  22434. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22435. {
  22436. front: {
  22437. height: math.unit(5 + 2 / 12, "feet"),
  22438. weight: math.unit(120, "lb"),
  22439. name: "Front",
  22440. image: {
  22441. source: "./media/characters/poffin/front.svg",
  22442. extra: 786 / 680,
  22443. bottom: 0.005
  22444. }
  22445. },
  22446. },
  22447. [
  22448. {
  22449. name: "Normal",
  22450. height: math.unit(5 + 2 / 12, "feet"),
  22451. default: true
  22452. },
  22453. ]
  22454. ))
  22455. characterMakers.push(() => makeCharacter(
  22456. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22457. {
  22458. front: {
  22459. height: math.unit(6 + 3 / 12, "feet"),
  22460. weight: math.unit(519, "lb"),
  22461. name: "Front",
  22462. image: {
  22463. source: "./media/characters/dhari/front.svg",
  22464. extra: 1048 / 946,
  22465. bottom: 0.015
  22466. }
  22467. },
  22468. back: {
  22469. height: math.unit(6 + 3 / 12, "feet"),
  22470. weight: math.unit(519, "lb"),
  22471. name: "Back",
  22472. image: {
  22473. source: "./media/characters/dhari/back.svg",
  22474. extra: 1048 / 931,
  22475. bottom: 0.005
  22476. }
  22477. },
  22478. frontDressed: {
  22479. height: math.unit(6 + 3 / 12, "feet"),
  22480. weight: math.unit(519, "lb"),
  22481. name: "Front (Dressed)",
  22482. image: {
  22483. source: "./media/characters/dhari/front-dressed.svg",
  22484. extra: 1713 / 1546,
  22485. bottom: 0.02
  22486. }
  22487. },
  22488. backDressed: {
  22489. height: math.unit(6 + 3 / 12, "feet"),
  22490. weight: math.unit(519, "lb"),
  22491. name: "Back (Dressed)",
  22492. image: {
  22493. source: "./media/characters/dhari/back-dressed.svg",
  22494. extra: 1699 / 1537,
  22495. bottom: 0.01
  22496. }
  22497. },
  22498. maw: {
  22499. height: math.unit(0.95, "feet"),
  22500. name: "Maw",
  22501. image: {
  22502. source: "./media/characters/dhari/maw.svg"
  22503. }
  22504. },
  22505. wereFront: {
  22506. height: math.unit(12 + 8 / 12, "feet"),
  22507. weight: math.unit(4000, "lb"),
  22508. name: "Front (Were)",
  22509. image: {
  22510. source: "./media/characters/dhari/were-front.svg",
  22511. extra: 1065 / 969,
  22512. bottom: 0.015
  22513. }
  22514. },
  22515. wereBack: {
  22516. height: math.unit(12 + 8 / 12, "feet"),
  22517. weight: math.unit(4000, "lb"),
  22518. name: "Back (Were)",
  22519. image: {
  22520. source: "./media/characters/dhari/were-back.svg",
  22521. extra: 1065 / 969,
  22522. bottom: 0.012
  22523. }
  22524. },
  22525. wereMaw: {
  22526. height: math.unit(0.625, "meters"),
  22527. name: "Maw (Were)",
  22528. image: {
  22529. source: "./media/characters/dhari/were-maw.svg"
  22530. }
  22531. },
  22532. },
  22533. [
  22534. {
  22535. name: "Normal",
  22536. height: math.unit(6 + 3 / 12, "feet"),
  22537. default: true
  22538. },
  22539. ]
  22540. ))
  22541. characterMakers.push(() => makeCharacter(
  22542. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22543. {
  22544. anthro: {
  22545. height: math.unit(5 + 7 / 12, "feet"),
  22546. weight: math.unit(175, "lb"),
  22547. name: "Anthro",
  22548. image: {
  22549. source: "./media/characters/rena-dyne/anthro.svg",
  22550. extra: 1849 / 1785,
  22551. bottom: 0.005
  22552. }
  22553. },
  22554. taur: {
  22555. height: math.unit(15 + 6 / 12, "feet"),
  22556. weight: math.unit(8000, "lb"),
  22557. name: "Taur",
  22558. image: {
  22559. source: "./media/characters/rena-dyne/taur.svg",
  22560. extra: 2315 / 2234,
  22561. bottom: 0.033
  22562. }
  22563. },
  22564. },
  22565. [
  22566. {
  22567. name: "Normal",
  22568. height: math.unit(5 + 7 / 12, "feet"),
  22569. default: true
  22570. },
  22571. ]
  22572. ))
  22573. characterMakers.push(() => makeCharacter(
  22574. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22575. {
  22576. front: {
  22577. height: math.unit(8, "feet"),
  22578. weight: math.unit(600, "lb"),
  22579. name: "Front",
  22580. image: {
  22581. source: "./media/characters/weremeep/front.svg",
  22582. extra: 970/849,
  22583. bottom: 7/977
  22584. }
  22585. },
  22586. },
  22587. [
  22588. {
  22589. name: "Normal",
  22590. height: math.unit(8, "feet"),
  22591. default: true
  22592. },
  22593. {
  22594. name: "Lorg",
  22595. height: math.unit(12, "feet")
  22596. },
  22597. {
  22598. name: "Oh Lawd She Comin'",
  22599. height: math.unit(20, "feet")
  22600. },
  22601. ]
  22602. ))
  22603. characterMakers.push(() => makeCharacter(
  22604. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22605. {
  22606. front: {
  22607. height: math.unit(4, "feet"),
  22608. weight: math.unit(90, "lb"),
  22609. name: "Front",
  22610. image: {
  22611. source: "./media/characters/reza/front.svg",
  22612. extra: 1183 / 1111,
  22613. bottom: 0.017
  22614. }
  22615. },
  22616. back: {
  22617. height: math.unit(4, "feet"),
  22618. weight: math.unit(90, "lb"),
  22619. name: "Back",
  22620. image: {
  22621. source: "./media/characters/reza/back.svg",
  22622. extra: 1183 / 1111,
  22623. bottom: 0.01
  22624. }
  22625. },
  22626. drake: {
  22627. height: math.unit(30, "feet"),
  22628. weight: math.unit(246960, "lb"),
  22629. name: "Drake",
  22630. image: {
  22631. source: "./media/characters/reza/drake.svg",
  22632. extra: 2350 / 2024,
  22633. bottom: 60.7 / 2403
  22634. }
  22635. },
  22636. },
  22637. [
  22638. {
  22639. name: "Normal",
  22640. height: math.unit(4, "feet"),
  22641. default: true
  22642. },
  22643. ]
  22644. ))
  22645. characterMakers.push(() => makeCharacter(
  22646. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22647. {
  22648. side: {
  22649. height: math.unit(15, "feet"),
  22650. weight: math.unit(14, "tons"),
  22651. name: "Side",
  22652. image: {
  22653. source: "./media/characters/athea/side.svg",
  22654. extra: 960 / 540,
  22655. bottom: 0.003
  22656. }
  22657. },
  22658. sitting: {
  22659. height: math.unit(6 * 2.85, "feet"),
  22660. weight: math.unit(14, "tons"),
  22661. name: "Sitting",
  22662. image: {
  22663. source: "./media/characters/athea/sitting.svg",
  22664. extra: 621 / 581,
  22665. bottom: 0.075
  22666. }
  22667. },
  22668. maw: {
  22669. height: math.unit(7.59498031496063, "feet"),
  22670. name: "Maw",
  22671. image: {
  22672. source: "./media/characters/athea/maw.svg"
  22673. }
  22674. },
  22675. },
  22676. [
  22677. {
  22678. name: "Lap Cat",
  22679. height: math.unit(2.5, "feet")
  22680. },
  22681. {
  22682. name: "Minimacro",
  22683. height: math.unit(15, "feet"),
  22684. default: true
  22685. },
  22686. {
  22687. name: "Macro",
  22688. height: math.unit(120, "feet")
  22689. },
  22690. {
  22691. name: "Macro+",
  22692. height: math.unit(640, "feet")
  22693. },
  22694. {
  22695. name: "Colossus",
  22696. height: math.unit(2.2, "miles")
  22697. },
  22698. ]
  22699. ))
  22700. characterMakers.push(() => makeCharacter(
  22701. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22702. {
  22703. front: {
  22704. height: math.unit(8 + 8 / 12, "feet"),
  22705. weight: math.unit(130, "kg"),
  22706. name: "Front",
  22707. image: {
  22708. source: "./media/characters/seroko/front.svg",
  22709. extra: 1385 / 1280,
  22710. bottom: 0.025
  22711. }
  22712. },
  22713. back: {
  22714. height: math.unit(8 + 8 / 12, "feet"),
  22715. weight: math.unit(130, "kg"),
  22716. name: "Back",
  22717. image: {
  22718. source: "./media/characters/seroko/back.svg",
  22719. extra: 1369 / 1238,
  22720. bottom: 0.018
  22721. }
  22722. },
  22723. frontDressed: {
  22724. height: math.unit(8 + 8 / 12, "feet"),
  22725. weight: math.unit(130, "kg"),
  22726. name: "Front (Dressed)",
  22727. image: {
  22728. source: "./media/characters/seroko/front-dressed.svg",
  22729. extra: 1366 / 1275,
  22730. bottom: 0.03
  22731. }
  22732. },
  22733. },
  22734. [
  22735. {
  22736. name: "Normal",
  22737. height: math.unit(8 + 8 / 12, "feet"),
  22738. default: true
  22739. },
  22740. ]
  22741. ))
  22742. characterMakers.push(() => makeCharacter(
  22743. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22744. {
  22745. front: {
  22746. height: math.unit(5.5, "feet"),
  22747. weight: math.unit(160, "lb"),
  22748. name: "Front",
  22749. image: {
  22750. source: "./media/characters/quatzi/front.svg",
  22751. extra: 2346 / 2242,
  22752. bottom: 0.015
  22753. }
  22754. },
  22755. },
  22756. [
  22757. {
  22758. name: "Normal",
  22759. height: math.unit(5.5, "feet"),
  22760. default: true
  22761. },
  22762. {
  22763. name: "Big",
  22764. height: math.unit(7.7, "feet")
  22765. },
  22766. ]
  22767. ))
  22768. characterMakers.push(() => makeCharacter(
  22769. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22770. {
  22771. front: {
  22772. height: math.unit(5 + 11 / 12, "feet"),
  22773. weight: math.unit(180, "lb"),
  22774. name: "Front",
  22775. image: {
  22776. source: "./media/characters/sen/front.svg",
  22777. extra: 1321 / 1254,
  22778. bottom: 0.015
  22779. }
  22780. },
  22781. side: {
  22782. height: math.unit(5 + 11 / 12, "feet"),
  22783. weight: math.unit(180, "lb"),
  22784. name: "Side",
  22785. image: {
  22786. source: "./media/characters/sen/side.svg",
  22787. extra: 1321 / 1254,
  22788. bottom: 0.007
  22789. }
  22790. },
  22791. back: {
  22792. height: math.unit(5 + 11 / 12, "feet"),
  22793. weight: math.unit(180, "lb"),
  22794. name: "Back",
  22795. image: {
  22796. source: "./media/characters/sen/back.svg",
  22797. extra: 1321 / 1254
  22798. }
  22799. },
  22800. },
  22801. [
  22802. {
  22803. name: "Normal",
  22804. height: math.unit(5 + 11 / 12, "feet"),
  22805. default: true
  22806. },
  22807. ]
  22808. ))
  22809. characterMakers.push(() => makeCharacter(
  22810. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22811. {
  22812. front: {
  22813. height: math.unit(166.6, "cm"),
  22814. weight: math.unit(66.6, "kg"),
  22815. name: "Front",
  22816. image: {
  22817. source: "./media/characters/fruity/front.svg",
  22818. extra: 1510 / 1386,
  22819. bottom: 0.04
  22820. }
  22821. },
  22822. back: {
  22823. height: math.unit(166.6, "cm"),
  22824. weight: math.unit(66.6, "lb"),
  22825. name: "Back",
  22826. image: {
  22827. source: "./media/characters/fruity/back.svg",
  22828. extra: 1563 / 1435,
  22829. bottom: 0.005
  22830. }
  22831. },
  22832. },
  22833. [
  22834. {
  22835. name: "Normal",
  22836. height: math.unit(166.6, "cm"),
  22837. default: true
  22838. },
  22839. {
  22840. name: "Demonic",
  22841. height: math.unit(166.6, "feet")
  22842. },
  22843. ]
  22844. ))
  22845. characterMakers.push(() => makeCharacter(
  22846. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22847. {
  22848. side: {
  22849. height: math.unit(10, "feet"),
  22850. weight: math.unit(500, "lb"),
  22851. name: "Side",
  22852. image: {
  22853. source: "./media/characters/zost/side.svg",
  22854. extra: 2870/2533,
  22855. bottom: 252/3122
  22856. }
  22857. },
  22858. mawFront: {
  22859. height: math.unit(1.08, "meters"),
  22860. name: "Maw (Front)",
  22861. image: {
  22862. source: "./media/characters/zost/maw-front.svg"
  22863. }
  22864. },
  22865. mawSide: {
  22866. height: math.unit(2.66, "feet"),
  22867. name: "Maw (Side)",
  22868. image: {
  22869. source: "./media/characters/zost/maw-side.svg"
  22870. }
  22871. },
  22872. wingspan: {
  22873. height: math.unit(7.4, "feet"),
  22874. name: "Wingspan",
  22875. image: {
  22876. source: "./media/characters/zost/wingspan.svg"
  22877. }
  22878. },
  22879. },
  22880. [
  22881. {
  22882. name: "Normal",
  22883. height: math.unit(10, "feet"),
  22884. default: true
  22885. },
  22886. ]
  22887. ))
  22888. characterMakers.push(() => makeCharacter(
  22889. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22890. {
  22891. front: {
  22892. height: math.unit(5 + 4 / 12, "feet"),
  22893. weight: math.unit(120, "lb"),
  22894. name: "Front",
  22895. image: {
  22896. source: "./media/characters/luci/front.svg",
  22897. extra: 1985 / 1884,
  22898. bottom: 0.04
  22899. }
  22900. },
  22901. back: {
  22902. height: math.unit(5 + 4 / 12, "feet"),
  22903. weight: math.unit(120, "lb"),
  22904. name: "Back",
  22905. image: {
  22906. source: "./media/characters/luci/back.svg",
  22907. extra: 1892 / 1791,
  22908. bottom: 0.002
  22909. }
  22910. },
  22911. },
  22912. [
  22913. {
  22914. name: "Normal",
  22915. height: math.unit(5 + 4 / 12, "feet"),
  22916. default: true
  22917. },
  22918. ]
  22919. ))
  22920. characterMakers.push(() => makeCharacter(
  22921. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22922. {
  22923. front: {
  22924. height: math.unit(1500, "feet"),
  22925. weight: math.unit(3.8e6, "tons"),
  22926. name: "Front",
  22927. image: {
  22928. source: "./media/characters/2th/front.svg",
  22929. extra: 3489 / 3350,
  22930. bottom: 0.1
  22931. }
  22932. },
  22933. foot: {
  22934. height: math.unit(461, "feet"),
  22935. name: "Foot",
  22936. image: {
  22937. source: "./media/characters/2th/foot.svg"
  22938. }
  22939. },
  22940. },
  22941. [
  22942. {
  22943. name: "\"Micro\"",
  22944. height: math.unit(15 + 7 / 12, "feet")
  22945. },
  22946. {
  22947. name: "Normal",
  22948. height: math.unit(1500, "feet"),
  22949. default: true
  22950. },
  22951. {
  22952. name: "Macro",
  22953. height: math.unit(5000, "feet")
  22954. },
  22955. {
  22956. name: "Megamacro",
  22957. height: math.unit(15, "miles")
  22958. },
  22959. {
  22960. name: "Gigamacro",
  22961. height: math.unit(4000, "miles")
  22962. },
  22963. {
  22964. name: "Galactic",
  22965. height: math.unit(50, "AU")
  22966. },
  22967. ]
  22968. ))
  22969. characterMakers.push(() => makeCharacter(
  22970. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22971. {
  22972. front: {
  22973. height: math.unit(5 + 6 / 12, "feet"),
  22974. weight: math.unit(220, "lb"),
  22975. name: "Front",
  22976. image: {
  22977. source: "./media/characters/amethyst/front.svg",
  22978. extra: 2078 / 2040,
  22979. bottom: 0.045
  22980. }
  22981. },
  22982. back: {
  22983. height: math.unit(5 + 6 / 12, "feet"),
  22984. weight: math.unit(220, "lb"),
  22985. name: "Back",
  22986. image: {
  22987. source: "./media/characters/amethyst/back.svg",
  22988. extra: 2021 / 1989,
  22989. bottom: 0.02
  22990. }
  22991. },
  22992. },
  22993. [
  22994. {
  22995. name: "Normal",
  22996. height: math.unit(5 + 6 / 12, "feet"),
  22997. default: true
  22998. },
  22999. ]
  23000. ))
  23001. characterMakers.push(() => makeCharacter(
  23002. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23003. {
  23004. front: {
  23005. height: math.unit(4 + 11 / 12, "feet"),
  23006. weight: math.unit(120, "lb"),
  23007. name: "Front",
  23008. image: {
  23009. source: "./media/characters/yumi-akiyama/front.svg",
  23010. extra: 1327 / 1235,
  23011. bottom: 0.02
  23012. }
  23013. },
  23014. back: {
  23015. height: math.unit(4 + 11 / 12, "feet"),
  23016. weight: math.unit(120, "lb"),
  23017. name: "Back",
  23018. image: {
  23019. source: "./media/characters/yumi-akiyama/back.svg",
  23020. extra: 1287 / 1245,
  23021. bottom: 0.002
  23022. }
  23023. },
  23024. },
  23025. [
  23026. {
  23027. name: "Galactic",
  23028. height: math.unit(50, "galaxies"),
  23029. default: true
  23030. },
  23031. {
  23032. name: "Universal",
  23033. height: math.unit(100, "universes")
  23034. },
  23035. ]
  23036. ))
  23037. characterMakers.push(() => makeCharacter(
  23038. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23039. {
  23040. front: {
  23041. height: math.unit(8, "feet"),
  23042. weight: math.unit(500, "lb"),
  23043. name: "Front",
  23044. image: {
  23045. source: "./media/characters/rifter-yrmori/front.svg",
  23046. extra: 1180 / 1125,
  23047. bottom: 0.02
  23048. }
  23049. },
  23050. back: {
  23051. height: math.unit(8, "feet"),
  23052. weight: math.unit(500, "lb"),
  23053. name: "Back",
  23054. image: {
  23055. source: "./media/characters/rifter-yrmori/back.svg",
  23056. extra: 1190 / 1145,
  23057. bottom: 0.001
  23058. }
  23059. },
  23060. wings: {
  23061. height: math.unit(7.75, "feet"),
  23062. weight: math.unit(500, "lb"),
  23063. name: "Wings",
  23064. image: {
  23065. source: "./media/characters/rifter-yrmori/wings.svg",
  23066. extra: 1357 / 1285
  23067. }
  23068. },
  23069. maw: {
  23070. height: math.unit(0.8, "feet"),
  23071. name: "Maw",
  23072. image: {
  23073. source: "./media/characters/rifter-yrmori/maw.svg"
  23074. }
  23075. },
  23076. mawfront: {
  23077. height: math.unit(1.45, "feet"),
  23078. name: "Maw (Front)",
  23079. image: {
  23080. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23081. }
  23082. },
  23083. },
  23084. [
  23085. {
  23086. name: "Normal",
  23087. height: math.unit(8, "feet"),
  23088. default: true
  23089. },
  23090. {
  23091. name: "Macro",
  23092. height: math.unit(42, "meters")
  23093. },
  23094. ]
  23095. ))
  23096. characterMakers.push(() => makeCharacter(
  23097. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23098. {
  23099. were: {
  23100. height: math.unit(25 + 6 / 12, "feet"),
  23101. weight: math.unit(10000, "lb"),
  23102. name: "Were",
  23103. image: {
  23104. source: "./media/characters/tahajin/were.svg",
  23105. extra: 801 / 770,
  23106. bottom: 0.042
  23107. }
  23108. },
  23109. aquatic: {
  23110. height: math.unit(6 + 4 / 12, "feet"),
  23111. weight: math.unit(160, "lb"),
  23112. name: "Aquatic",
  23113. image: {
  23114. source: "./media/characters/tahajin/aquatic.svg",
  23115. extra: 572 / 542,
  23116. bottom: 0.04
  23117. }
  23118. },
  23119. chow: {
  23120. height: math.unit(8 + 11 / 12, "feet"),
  23121. weight: math.unit(450, "lb"),
  23122. name: "Chow",
  23123. image: {
  23124. source: "./media/characters/tahajin/chow.svg",
  23125. extra: 660 / 640,
  23126. bottom: 0.015
  23127. }
  23128. },
  23129. demiNaga: {
  23130. height: math.unit(6 + 8 / 12, "feet"),
  23131. weight: math.unit(300, "lb"),
  23132. name: "Demi Naga",
  23133. image: {
  23134. source: "./media/characters/tahajin/demi-naga.svg",
  23135. extra: 643 / 615,
  23136. bottom: 0.1
  23137. }
  23138. },
  23139. data: {
  23140. height: math.unit(5, "inches"),
  23141. weight: math.unit(0.1, "lb"),
  23142. name: "Data",
  23143. image: {
  23144. source: "./media/characters/tahajin/data.svg"
  23145. }
  23146. },
  23147. fluu: {
  23148. height: math.unit(5 + 7 / 12, "feet"),
  23149. weight: math.unit(140, "lb"),
  23150. name: "Fluu",
  23151. image: {
  23152. source: "./media/characters/tahajin/fluu.svg",
  23153. extra: 628 / 592,
  23154. bottom: 0.02
  23155. }
  23156. },
  23157. starWarrior: {
  23158. height: math.unit(4 + 5 / 12, "feet"),
  23159. weight: math.unit(50, "lb"),
  23160. name: "Star Warrior",
  23161. image: {
  23162. source: "./media/characters/tahajin/star-warrior.svg"
  23163. }
  23164. },
  23165. },
  23166. [
  23167. {
  23168. name: "Normal",
  23169. height: math.unit(25 + 6 / 12, "feet"),
  23170. default: true
  23171. },
  23172. ]
  23173. ))
  23174. characterMakers.push(() => makeCharacter(
  23175. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23176. {
  23177. front: {
  23178. height: math.unit(8, "feet"),
  23179. weight: math.unit(350, "lb"),
  23180. name: "Front",
  23181. image: {
  23182. source: "./media/characters/gabira/front.svg",
  23183. extra: 1261/1154,
  23184. bottom: 51/1312
  23185. }
  23186. },
  23187. back: {
  23188. height: math.unit(8, "feet"),
  23189. weight: math.unit(350, "lb"),
  23190. name: "Back",
  23191. image: {
  23192. source: "./media/characters/gabira/back.svg",
  23193. extra: 1265/1163,
  23194. bottom: 46/1311
  23195. }
  23196. },
  23197. head: {
  23198. height: math.unit(2.85, "feet"),
  23199. name: "Head",
  23200. image: {
  23201. source: "./media/characters/gabira/head.svg"
  23202. }
  23203. },
  23204. },
  23205. [
  23206. {
  23207. name: "Normal",
  23208. height: math.unit(8, "feet"),
  23209. default: true
  23210. },
  23211. ]
  23212. ))
  23213. characterMakers.push(() => makeCharacter(
  23214. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23215. {
  23216. front: {
  23217. height: math.unit(5 + 3 / 12, "feet"),
  23218. weight: math.unit(137, "lb"),
  23219. name: "Front",
  23220. image: {
  23221. source: "./media/characters/sasha-katraine/front.svg",
  23222. extra: 1745/1694,
  23223. bottom: 37/1782
  23224. }
  23225. },
  23226. back: {
  23227. height: math.unit(5 + 3 / 12, "feet"),
  23228. weight: math.unit(137, "lb"),
  23229. name: "Back",
  23230. image: {
  23231. source: "./media/characters/sasha-katraine/back.svg",
  23232. extra: 1776/1699,
  23233. bottom: 26/1802
  23234. }
  23235. },
  23236. },
  23237. [
  23238. {
  23239. name: "Micro",
  23240. height: math.unit(5, "inches")
  23241. },
  23242. {
  23243. name: "Normal",
  23244. height: math.unit(5 + 3 / 12, "feet"),
  23245. default: true
  23246. },
  23247. ]
  23248. ))
  23249. characterMakers.push(() => makeCharacter(
  23250. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23251. {
  23252. side: {
  23253. height: math.unit(4, "inches"),
  23254. weight: math.unit(200, "grams"),
  23255. name: "Side",
  23256. image: {
  23257. source: "./media/characters/der/side.svg",
  23258. extra: 719 / 400,
  23259. bottom: 30.6 / 749.9187
  23260. }
  23261. },
  23262. },
  23263. [
  23264. {
  23265. name: "Micro",
  23266. height: math.unit(4, "inches"),
  23267. default: true
  23268. },
  23269. ]
  23270. ))
  23271. characterMakers.push(() => makeCharacter(
  23272. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23273. {
  23274. side: {
  23275. height: math.unit(30, "meters"),
  23276. weight: math.unit(700, "tonnes"),
  23277. name: "Side",
  23278. image: {
  23279. source: "./media/characters/fixerdragon/side.svg",
  23280. extra: (1293.0514 - 116.03) / 1106.86,
  23281. bottom: 116.03 / 1293.0514
  23282. }
  23283. },
  23284. },
  23285. [
  23286. {
  23287. name: "Planck",
  23288. height: math.unit(1.6e-35, "meters")
  23289. },
  23290. {
  23291. name: "Micro",
  23292. height: math.unit(0.4, "meters")
  23293. },
  23294. {
  23295. name: "Normal",
  23296. height: math.unit(30, "meters"),
  23297. default: true
  23298. },
  23299. {
  23300. name: "Megamacro",
  23301. height: math.unit(1.2, "megameters")
  23302. },
  23303. {
  23304. name: "Teramacro",
  23305. height: math.unit(130, "terameters")
  23306. },
  23307. {
  23308. name: "Yottamacro",
  23309. height: math.unit(6200, "yottameters")
  23310. },
  23311. ]
  23312. ));
  23313. characterMakers.push(() => makeCharacter(
  23314. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23315. {
  23316. front: {
  23317. height: math.unit(8, "feet"),
  23318. weight: math.unit(250, "lb"),
  23319. name: "Front",
  23320. image: {
  23321. source: "./media/characters/kite/front.svg",
  23322. extra: 2796 / 2659,
  23323. bottom: 0.002
  23324. }
  23325. },
  23326. },
  23327. [
  23328. {
  23329. name: "Normal",
  23330. height: math.unit(8, "feet"),
  23331. default: true
  23332. },
  23333. {
  23334. name: "Macro",
  23335. height: math.unit(360, "feet")
  23336. },
  23337. {
  23338. name: "Megamacro",
  23339. height: math.unit(1500, "feet")
  23340. },
  23341. ]
  23342. ))
  23343. characterMakers.push(() => makeCharacter(
  23344. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23345. {
  23346. front: {
  23347. height: math.unit(5 + 11/12, "feet"),
  23348. weight: math.unit(170, "lb"),
  23349. name: "Front",
  23350. image: {
  23351. source: "./media/characters/poojawa-vynar/front.svg",
  23352. extra: 1735/1585,
  23353. bottom: 96/1831
  23354. }
  23355. },
  23356. back: {
  23357. height: math.unit(5 + 11/12, "feet"),
  23358. weight: math.unit(170, "lb"),
  23359. name: "Back",
  23360. image: {
  23361. source: "./media/characters/poojawa-vynar/back.svg",
  23362. extra: 1749/1607,
  23363. bottom: 28/1777
  23364. }
  23365. },
  23366. male: {
  23367. height: math.unit(5 + 11/12, "feet"),
  23368. weight: math.unit(170, "lb"),
  23369. name: "Male",
  23370. image: {
  23371. source: "./media/characters/poojawa-vynar/male.svg",
  23372. extra: 1855/1713,
  23373. bottom: 63/1918
  23374. }
  23375. },
  23376. taur: {
  23377. height: math.unit(5 + 11/12, "feet"),
  23378. weight: math.unit(170, "lb"),
  23379. name: "Taur",
  23380. image: {
  23381. source: "./media/characters/poojawa-vynar/taur.svg",
  23382. extra: 1151/1059,
  23383. bottom: 356/1507
  23384. }
  23385. },
  23386. frontDressed: {
  23387. height: math.unit(5 + 11/12, "feet"),
  23388. weight: math.unit(170, "lb"),
  23389. name: "Front (Dressed)",
  23390. image: {
  23391. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23392. extra: 1735/1585,
  23393. bottom: 96/1831
  23394. }
  23395. },
  23396. backDressed: {
  23397. height: math.unit(5 + 11/12, "feet"),
  23398. weight: math.unit(170, "lb"),
  23399. name: "Back (Dressed)",
  23400. image: {
  23401. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23402. extra: 1749/1607,
  23403. bottom: 28/1777
  23404. }
  23405. },
  23406. maleDressed: {
  23407. height: math.unit(5 + 11/12, "feet"),
  23408. weight: math.unit(170, "lb"),
  23409. name: "Male (Dressed)",
  23410. image: {
  23411. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23412. extra: 1855/1713,
  23413. bottom: 63/1918
  23414. }
  23415. },
  23416. taurDressed: {
  23417. height: math.unit(5 + 11/12, "feet"),
  23418. weight: math.unit(170, "lb"),
  23419. name: "Taur (Dressed)",
  23420. image: {
  23421. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23422. extra: 1151/1059,
  23423. bottom: 356/1507
  23424. }
  23425. },
  23426. maw: {
  23427. height: math.unit(1.46, "feet"),
  23428. name: "Maw",
  23429. image: {
  23430. source: "./media/characters/poojawa-vynar/maw.svg"
  23431. }
  23432. },
  23433. head: {
  23434. height: math.unit(2.34, "feet"),
  23435. name: "Head",
  23436. image: {
  23437. source: "./media/characters/poojawa-vynar/head.svg"
  23438. }
  23439. },
  23440. paw: {
  23441. height: math.unit(1.61, "feet"),
  23442. name: "Paw",
  23443. image: {
  23444. source: "./media/characters/poojawa-vynar/paw.svg"
  23445. }
  23446. },
  23447. pawToering: {
  23448. height: math.unit(1.72, "feet"),
  23449. name: "Paw (Toering)",
  23450. image: {
  23451. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23452. }
  23453. },
  23454. toering: {
  23455. height: math.unit(2.9, "inches"),
  23456. name: "Toering",
  23457. image: {
  23458. source: "./media/characters/poojawa-vynar/toering.svg"
  23459. }
  23460. },
  23461. shaft: {
  23462. height: math.unit(0.625, "feet"),
  23463. name: "Shaft",
  23464. image: {
  23465. source: "./media/characters/poojawa-vynar/shaft.svg"
  23466. }
  23467. },
  23468. spade: {
  23469. height: math.unit(0.42, "feet"),
  23470. name: "Spade",
  23471. image: {
  23472. source: "./media/characters/poojawa-vynar/spade.svg"
  23473. }
  23474. },
  23475. },
  23476. [
  23477. {
  23478. name: "Shortstack",
  23479. height: math.unit(4, "feet")
  23480. },
  23481. {
  23482. name: "Normal",
  23483. height: math.unit(5 + 11 / 12, "feet"),
  23484. default: true
  23485. },
  23486. {
  23487. name: "Tauric",
  23488. height: math.unit(4, "meters")
  23489. },
  23490. ]
  23491. ))
  23492. characterMakers.push(() => makeCharacter(
  23493. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23494. {
  23495. front: {
  23496. height: math.unit(293, "meters"),
  23497. weight: math.unit(70400, "tons"),
  23498. name: "Front",
  23499. image: {
  23500. source: "./media/characters/violette/front.svg",
  23501. extra: 1227 / 1180,
  23502. bottom: 0.005
  23503. }
  23504. },
  23505. back: {
  23506. height: math.unit(293, "meters"),
  23507. weight: math.unit(70400, "tons"),
  23508. name: "Back",
  23509. image: {
  23510. source: "./media/characters/violette/back.svg",
  23511. extra: 1227 / 1180,
  23512. bottom: 0.005
  23513. }
  23514. },
  23515. },
  23516. [
  23517. {
  23518. name: "Macro",
  23519. height: math.unit(293, "meters"),
  23520. default: true
  23521. },
  23522. ]
  23523. ))
  23524. characterMakers.push(() => makeCharacter(
  23525. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23526. {
  23527. front: {
  23528. height: math.unit(1050, "feet"),
  23529. weight: math.unit(200000, "tons"),
  23530. name: "Front",
  23531. image: {
  23532. source: "./media/characters/alessandra/front.svg",
  23533. extra: 960 / 912,
  23534. bottom: 0.06
  23535. }
  23536. },
  23537. },
  23538. [
  23539. {
  23540. name: "Macro",
  23541. height: math.unit(1050, "feet")
  23542. },
  23543. {
  23544. name: "Macro+",
  23545. height: math.unit(900, "meters"),
  23546. default: true
  23547. },
  23548. ]
  23549. ))
  23550. characterMakers.push(() => makeCharacter(
  23551. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23552. {
  23553. front: {
  23554. height: math.unit(5, "feet"),
  23555. weight: math.unit(187, "lb"),
  23556. name: "Front",
  23557. image: {
  23558. source: "./media/characters/person/front.svg",
  23559. extra: 3087 / 2945,
  23560. bottom: 91 / 3181
  23561. }
  23562. },
  23563. },
  23564. [
  23565. {
  23566. name: "Micro",
  23567. height: math.unit(3, "inches")
  23568. },
  23569. {
  23570. name: "Normal",
  23571. height: math.unit(5, "feet"),
  23572. default: true
  23573. },
  23574. {
  23575. name: "Macro",
  23576. height: math.unit(90, "feet")
  23577. },
  23578. {
  23579. name: "Max Size",
  23580. height: math.unit(280, "feet")
  23581. },
  23582. ]
  23583. ))
  23584. characterMakers.push(() => makeCharacter(
  23585. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23586. {
  23587. front: {
  23588. height: math.unit(4.5, "meters"),
  23589. weight: math.unit(3200, "lb"),
  23590. name: "Front",
  23591. image: {
  23592. source: "./media/characters/ty/front.svg",
  23593. extra: 1038 / 960,
  23594. bottom: 31.156 / 1068
  23595. }
  23596. },
  23597. back: {
  23598. height: math.unit(4.5, "meters"),
  23599. weight: math.unit(3200, "lb"),
  23600. name: "Back",
  23601. image: {
  23602. source: "./media/characters/ty/back.svg",
  23603. extra: 1044 / 966,
  23604. bottom: 7.48 / 1049
  23605. }
  23606. },
  23607. },
  23608. [
  23609. {
  23610. name: "Normal",
  23611. height: math.unit(4.5, "meters"),
  23612. default: true
  23613. },
  23614. ]
  23615. ))
  23616. characterMakers.push(() => makeCharacter(
  23617. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23618. {
  23619. front: {
  23620. height: math.unit(5 + 4 / 12, "feet"),
  23621. weight: math.unit(115, "lb"),
  23622. name: "Front",
  23623. image: {
  23624. source: "./media/characters/rocky/front.svg",
  23625. extra: 1012 / 975,
  23626. bottom: 54 / 1066
  23627. }
  23628. },
  23629. },
  23630. [
  23631. {
  23632. name: "Normal",
  23633. height: math.unit(5 + 4 / 12, "feet"),
  23634. default: true
  23635. },
  23636. ]
  23637. ))
  23638. characterMakers.push(() => makeCharacter(
  23639. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23640. {
  23641. upright: {
  23642. height: math.unit(6, "meters"),
  23643. weight: math.unit(4000, "kg"),
  23644. name: "Upright",
  23645. image: {
  23646. source: "./media/characters/ruin/upright.svg",
  23647. extra: 668 / 661,
  23648. bottom: 42 / 799.8396
  23649. }
  23650. },
  23651. },
  23652. [
  23653. {
  23654. name: "Normal",
  23655. height: math.unit(6, "meters"),
  23656. default: true
  23657. },
  23658. ]
  23659. ))
  23660. characterMakers.push(() => makeCharacter(
  23661. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23662. {
  23663. front: {
  23664. height: math.unit(5, "feet"),
  23665. weight: math.unit(106, "lb"),
  23666. name: "Front",
  23667. image: {
  23668. source: "./media/characters/robin/front.svg",
  23669. extra: 862 / 799,
  23670. bottom: 42.4 / 914.8856
  23671. }
  23672. },
  23673. },
  23674. [
  23675. {
  23676. name: "Normal",
  23677. height: math.unit(5, "feet"),
  23678. default: true
  23679. },
  23680. ]
  23681. ))
  23682. characterMakers.push(() => makeCharacter(
  23683. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23684. {
  23685. side: {
  23686. height: math.unit(3, "feet"),
  23687. weight: math.unit(225, "lb"),
  23688. name: "Side",
  23689. image: {
  23690. source: "./media/characters/saian/side.svg",
  23691. extra: 566 / 356,
  23692. bottom: 79.7 / 643
  23693. }
  23694. },
  23695. maw: {
  23696. height: math.unit(2.85, "feet"),
  23697. name: "Maw",
  23698. image: {
  23699. source: "./media/characters/saian/maw.svg"
  23700. }
  23701. },
  23702. },
  23703. [
  23704. {
  23705. name: "Normal",
  23706. height: math.unit(3, "feet"),
  23707. default: true
  23708. },
  23709. ]
  23710. ))
  23711. characterMakers.push(() => makeCharacter(
  23712. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23713. {
  23714. side: {
  23715. height: math.unit(8, "feet"),
  23716. weight: math.unit(300, "lb"),
  23717. name: "Side",
  23718. image: {
  23719. source: "./media/characters/equus-silvermane/side.svg",
  23720. extra: 2176 / 2050,
  23721. bottom: 65.7 / 2245
  23722. }
  23723. },
  23724. front: {
  23725. height: math.unit(8, "feet"),
  23726. weight: math.unit(300, "lb"),
  23727. name: "Front",
  23728. image: {
  23729. source: "./media/characters/equus-silvermane/front.svg",
  23730. extra: 4633 / 4400,
  23731. bottom: 71.3 / 4706.915
  23732. }
  23733. },
  23734. sideStepping: {
  23735. height: math.unit(8, "feet"),
  23736. weight: math.unit(300, "lb"),
  23737. name: "Side (Stepping)",
  23738. image: {
  23739. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23740. extra: 1968 / 1860,
  23741. bottom: 16.4 / 1989
  23742. }
  23743. },
  23744. },
  23745. [
  23746. {
  23747. name: "Normal",
  23748. height: math.unit(8, "feet")
  23749. },
  23750. {
  23751. name: "Minimacro",
  23752. height: math.unit(75, "feet"),
  23753. default: true
  23754. },
  23755. {
  23756. name: "Macro",
  23757. height: math.unit(150, "feet")
  23758. },
  23759. {
  23760. name: "Macro+",
  23761. height: math.unit(1000, "feet")
  23762. },
  23763. {
  23764. name: "Megamacro",
  23765. height: math.unit(1, "mile")
  23766. },
  23767. ]
  23768. ))
  23769. characterMakers.push(() => makeCharacter(
  23770. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23771. {
  23772. side: {
  23773. height: math.unit(20, "feet"),
  23774. weight: math.unit(30000, "kg"),
  23775. name: "Side",
  23776. image: {
  23777. source: "./media/characters/windar/side.svg",
  23778. extra: 1491 / 1248,
  23779. bottom: 82.56 / 1568
  23780. }
  23781. },
  23782. },
  23783. [
  23784. {
  23785. name: "Normal",
  23786. height: math.unit(20, "feet"),
  23787. default: true
  23788. },
  23789. ]
  23790. ))
  23791. characterMakers.push(() => makeCharacter(
  23792. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23793. {
  23794. side: {
  23795. height: math.unit(15.66, "feet"),
  23796. weight: math.unit(150, "lb"),
  23797. name: "Side",
  23798. image: {
  23799. source: "./media/characters/melody/side.svg",
  23800. extra: 1097 / 944,
  23801. bottom: 11.8 / 1109
  23802. }
  23803. },
  23804. sideOutfit: {
  23805. height: math.unit(15.66, "feet"),
  23806. weight: math.unit(150, "lb"),
  23807. name: "Side (Outfit)",
  23808. image: {
  23809. source: "./media/characters/melody/side-outfit.svg",
  23810. extra: 1097 / 944,
  23811. bottom: 11.8 / 1109
  23812. }
  23813. },
  23814. },
  23815. [
  23816. {
  23817. name: "Normal",
  23818. height: math.unit(15.66, "feet"),
  23819. default: true
  23820. },
  23821. ]
  23822. ))
  23823. characterMakers.push(() => makeCharacter(
  23824. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23825. {
  23826. armoredFront: {
  23827. height: math.unit(8, "feet"),
  23828. weight: math.unit(325, "lb"),
  23829. name: "Front",
  23830. image: {
  23831. source: "./media/characters/windera/armored-front.svg",
  23832. extra: 1830/1598,
  23833. bottom: 151/1981
  23834. },
  23835. form: "armored",
  23836. default: true
  23837. },
  23838. macroFront: {
  23839. height: math.unit(70, "feet"),
  23840. weight: math.unit(315453, "lb"),
  23841. name: "Front",
  23842. image: {
  23843. source: "./media/characters/windera/macro-front.svg",
  23844. extra: 963/883,
  23845. bottom: 23/986
  23846. },
  23847. form: "macro",
  23848. default: true
  23849. },
  23850. },
  23851. [
  23852. {
  23853. name: "Normal",
  23854. height: math.unit(8, "feet"),
  23855. default: true,
  23856. form: "armored"
  23857. },
  23858. {
  23859. name: "Normal",
  23860. height: math.unit(70, "feet"),
  23861. default: true,
  23862. form: "macro"
  23863. },
  23864. ],
  23865. {
  23866. "armored": {
  23867. name: "Armored",
  23868. default: true
  23869. },
  23870. "macro": {
  23871. name: "Macro",
  23872. },
  23873. }
  23874. ))
  23875. characterMakers.push(() => makeCharacter(
  23876. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23877. {
  23878. front: {
  23879. height: math.unit(28.75, "feet"),
  23880. weight: math.unit(2000, "kg"),
  23881. name: "Front",
  23882. image: {
  23883. source: "./media/characters/sonear/front.svg",
  23884. extra: 1041.1 / 964.9,
  23885. bottom: 53.7 / 1096.6
  23886. }
  23887. },
  23888. },
  23889. [
  23890. {
  23891. name: "Normal",
  23892. height: math.unit(28.75, "feet"),
  23893. default: true
  23894. },
  23895. ]
  23896. ))
  23897. characterMakers.push(() => makeCharacter(
  23898. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23899. {
  23900. side: {
  23901. height: math.unit(25.5, "feet"),
  23902. weight: math.unit(23000, "kg"),
  23903. name: "Side",
  23904. image: {
  23905. source: "./media/characters/kanara/side.svg"
  23906. }
  23907. },
  23908. },
  23909. [
  23910. {
  23911. name: "Normal",
  23912. height: math.unit(25.5, "feet"),
  23913. default: true
  23914. },
  23915. ]
  23916. ))
  23917. characterMakers.push(() => makeCharacter(
  23918. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23919. {
  23920. side: {
  23921. height: math.unit(10, "feet"),
  23922. weight: math.unit(1000, "kg"),
  23923. name: "Side",
  23924. image: {
  23925. source: "./media/characters/ereus/side.svg",
  23926. extra: 1157 / 959,
  23927. bottom: 153 / 1312.5
  23928. }
  23929. },
  23930. },
  23931. [
  23932. {
  23933. name: "Normal",
  23934. height: math.unit(10, "feet"),
  23935. default: true
  23936. },
  23937. ]
  23938. ))
  23939. characterMakers.push(() => makeCharacter(
  23940. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23941. {
  23942. side: {
  23943. height: math.unit(4.5, "feet"),
  23944. weight: math.unit(500, "lb"),
  23945. name: "Side",
  23946. image: {
  23947. source: "./media/characters/e-ter/side.svg",
  23948. extra: 1550 / 1248,
  23949. bottom: 146 / 1694
  23950. }
  23951. },
  23952. },
  23953. [
  23954. {
  23955. name: "Normal",
  23956. height: math.unit(4.5, "feet"),
  23957. default: true
  23958. },
  23959. ]
  23960. ))
  23961. characterMakers.push(() => makeCharacter(
  23962. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23963. {
  23964. side: {
  23965. height: math.unit(9.7, "feet"),
  23966. weight: math.unit(4000, "kg"),
  23967. name: "Side",
  23968. image: {
  23969. source: "./media/characters/yamie/side.svg"
  23970. }
  23971. },
  23972. },
  23973. [
  23974. {
  23975. name: "Normal",
  23976. height: math.unit(9.7, "feet"),
  23977. default: true
  23978. },
  23979. ]
  23980. ))
  23981. characterMakers.push(() => makeCharacter(
  23982. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23983. {
  23984. front: {
  23985. height: math.unit(50, "feet"),
  23986. weight: math.unit(50000, "kg"),
  23987. name: "Front",
  23988. image: {
  23989. source: "./media/characters/anders/front.svg",
  23990. extra: 570 / 539,
  23991. bottom: 14.7 / 586.7
  23992. }
  23993. },
  23994. },
  23995. [
  23996. {
  23997. name: "Large",
  23998. height: math.unit(50, "feet")
  23999. },
  24000. {
  24001. name: "Macro",
  24002. height: math.unit(2000, "feet"),
  24003. default: true
  24004. },
  24005. {
  24006. name: "Megamacro",
  24007. height: math.unit(12, "miles")
  24008. },
  24009. ]
  24010. ))
  24011. characterMakers.push(() => makeCharacter(
  24012. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24013. {
  24014. front: {
  24015. height: math.unit(7 + 2 / 12, "feet"),
  24016. weight: math.unit(300, "lb"),
  24017. name: "Front",
  24018. image: {
  24019. source: "./media/characters/reban/front.svg",
  24020. extra: 1287/1212,
  24021. bottom: 148/1435
  24022. }
  24023. },
  24024. head: {
  24025. height: math.unit(1.95, "feet"),
  24026. name: "Head",
  24027. image: {
  24028. source: "./media/characters/reban/head.svg"
  24029. }
  24030. },
  24031. maw: {
  24032. height: math.unit(0.95, "feet"),
  24033. name: "Maw",
  24034. image: {
  24035. source: "./media/characters/reban/maw.svg"
  24036. }
  24037. },
  24038. foot: {
  24039. height: math.unit(1.65, "feet"),
  24040. name: "Foot",
  24041. image: {
  24042. source: "./media/characters/reban/foot.svg"
  24043. }
  24044. },
  24045. dick: {
  24046. height: math.unit(7 / 5, "feet"),
  24047. name: "Dick",
  24048. image: {
  24049. source: "./media/characters/reban/dick.svg"
  24050. }
  24051. },
  24052. },
  24053. [
  24054. {
  24055. name: "Natural Height",
  24056. height: math.unit(7 + 2 / 12, "feet")
  24057. },
  24058. {
  24059. name: "Macro",
  24060. height: math.unit(500, "feet"),
  24061. default: true
  24062. },
  24063. {
  24064. name: "Canon Height",
  24065. height: math.unit(50, "AU")
  24066. },
  24067. ]
  24068. ))
  24069. characterMakers.push(() => makeCharacter(
  24070. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24071. {
  24072. front: {
  24073. height: math.unit(6, "feet"),
  24074. weight: math.unit(150, "lb"),
  24075. name: "Front",
  24076. image: {
  24077. source: "./media/characters/terrance-keayes/front.svg",
  24078. extra: 1.005,
  24079. bottom: 151 / 1615
  24080. }
  24081. },
  24082. side: {
  24083. height: math.unit(6, "feet"),
  24084. weight: math.unit(150, "lb"),
  24085. name: "Side",
  24086. image: {
  24087. source: "./media/characters/terrance-keayes/side.svg",
  24088. extra: 1.005,
  24089. bottom: 129.4 / 1544
  24090. }
  24091. },
  24092. back: {
  24093. height: math.unit(6, "feet"),
  24094. weight: math.unit(150, "lb"),
  24095. name: "Back",
  24096. image: {
  24097. source: "./media/characters/terrance-keayes/back.svg",
  24098. extra: 1.005,
  24099. bottom: 58.4 / 1557.3
  24100. }
  24101. },
  24102. dick: {
  24103. height: math.unit(6 * 0.208, "feet"),
  24104. name: "Dick",
  24105. image: {
  24106. source: "./media/characters/terrance-keayes/dick.svg"
  24107. }
  24108. },
  24109. },
  24110. [
  24111. {
  24112. name: "Canon Height",
  24113. height: math.unit(35, "miles"),
  24114. default: true
  24115. },
  24116. ]
  24117. ))
  24118. characterMakers.push(() => makeCharacter(
  24119. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24120. {
  24121. front: {
  24122. height: math.unit(6, "feet"),
  24123. weight: math.unit(150, "lb"),
  24124. name: "Front",
  24125. image: {
  24126. source: "./media/characters/ofelia/front.svg",
  24127. extra: 1130/1117,
  24128. bottom: 91/1221
  24129. }
  24130. },
  24131. back: {
  24132. height: math.unit(6, "feet"),
  24133. weight: math.unit(150, "lb"),
  24134. name: "Back",
  24135. image: {
  24136. source: "./media/characters/ofelia/back.svg",
  24137. extra: 1172/1159,
  24138. bottom: 28/1200
  24139. }
  24140. },
  24141. maw: {
  24142. height: math.unit(1, "feet"),
  24143. name: "Maw",
  24144. image: {
  24145. source: "./media/characters/ofelia/maw.svg"
  24146. }
  24147. },
  24148. foot: {
  24149. height: math.unit(1.949, "feet"),
  24150. name: "Foot",
  24151. image: {
  24152. source: "./media/characters/ofelia/foot.svg"
  24153. }
  24154. },
  24155. },
  24156. [
  24157. {
  24158. name: "Canon Height",
  24159. height: math.unit(2000, "miles"),
  24160. default: true
  24161. },
  24162. ]
  24163. ))
  24164. characterMakers.push(() => makeCharacter(
  24165. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24166. {
  24167. front: {
  24168. height: math.unit(6, "feet"),
  24169. weight: math.unit(150, "lb"),
  24170. name: "Front",
  24171. image: {
  24172. source: "./media/characters/samuel/front.svg",
  24173. extra: 265 / 258,
  24174. bottom: 2 / 266.1566
  24175. }
  24176. },
  24177. },
  24178. [
  24179. {
  24180. name: "Macro",
  24181. height: math.unit(100, "feet"),
  24182. default: true
  24183. },
  24184. {
  24185. name: "Full Size",
  24186. height: math.unit(1000, "miles")
  24187. },
  24188. ]
  24189. ))
  24190. characterMakers.push(() => makeCharacter(
  24191. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24192. {
  24193. front: {
  24194. height: math.unit(6, "feet"),
  24195. weight: math.unit(300, "lb"),
  24196. name: "Front",
  24197. image: {
  24198. source: "./media/characters/beishir-kiel/front.svg",
  24199. extra: 569 / 547,
  24200. bottom: 41.9 / 609
  24201. }
  24202. },
  24203. maw: {
  24204. height: math.unit(6 * 0.202, "feet"),
  24205. name: "Maw",
  24206. image: {
  24207. source: "./media/characters/beishir-kiel/maw.svg"
  24208. }
  24209. },
  24210. },
  24211. [
  24212. {
  24213. name: "Macro",
  24214. height: math.unit(300, "feet"),
  24215. default: true
  24216. },
  24217. ]
  24218. ))
  24219. characterMakers.push(() => makeCharacter(
  24220. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24221. {
  24222. front: {
  24223. height: math.unit(5 + 7/12, "feet"),
  24224. weight: math.unit(120, "lb"),
  24225. name: "Front",
  24226. image: {
  24227. source: "./media/characters/logan-grey/front.svg",
  24228. extra: 1836/1738,
  24229. bottom: 108/1944
  24230. }
  24231. },
  24232. back: {
  24233. height: math.unit(5 + 7/12, "feet"),
  24234. weight: math.unit(120, "lb"),
  24235. name: "Back",
  24236. image: {
  24237. source: "./media/characters/logan-grey/back.svg",
  24238. extra: 1880/1794,
  24239. bottom: 24/1904
  24240. }
  24241. },
  24242. frontSfw: {
  24243. height: math.unit(5 + 7/12, "feet"),
  24244. weight: math.unit(120, "lb"),
  24245. name: "Front (SFW)",
  24246. image: {
  24247. source: "./media/characters/logan-grey/front-sfw.svg",
  24248. extra: 1836/1738,
  24249. bottom: 108/1944
  24250. }
  24251. },
  24252. backSfw: {
  24253. height: math.unit(5 + 7/12, "feet"),
  24254. weight: math.unit(120, "lb"),
  24255. name: "Back (SFW)",
  24256. image: {
  24257. source: "./media/characters/logan-grey/back-sfw.svg",
  24258. extra: 1880/1794,
  24259. bottom: 24/1904
  24260. }
  24261. },
  24262. hands: {
  24263. height: math.unit(0.84, "feet"),
  24264. name: "Hands",
  24265. image: {
  24266. source: "./media/characters/logan-grey/hands.svg"
  24267. }
  24268. },
  24269. paws: {
  24270. height: math.unit(0.72, "feet"),
  24271. name: "Paws",
  24272. image: {
  24273. source: "./media/characters/logan-grey/paws.svg"
  24274. }
  24275. },
  24276. cock: {
  24277. height: math.unit(1.45, "feet"),
  24278. name: "Cock",
  24279. image: {
  24280. source: "./media/characters/logan-grey/cock.svg"
  24281. }
  24282. },
  24283. cockAlt: {
  24284. height: math.unit(1.437, "feet"),
  24285. name: "Cock (alt)",
  24286. image: {
  24287. source: "./media/characters/logan-grey/cock-alt.svg"
  24288. }
  24289. },
  24290. },
  24291. [
  24292. {
  24293. name: "Normal",
  24294. height: math.unit(5 + 8 / 12, "feet")
  24295. },
  24296. {
  24297. name: "The 500 Foot Femboy",
  24298. height: math.unit(500, "feet"),
  24299. default: true
  24300. },
  24301. {
  24302. name: "Megmacro",
  24303. height: math.unit(20, "miles")
  24304. },
  24305. ]
  24306. ))
  24307. characterMakers.push(() => makeCharacter(
  24308. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24309. {
  24310. front: {
  24311. height: math.unit(8 + 2 / 12, "feet"),
  24312. weight: math.unit(275, "lb"),
  24313. name: "Front",
  24314. image: {
  24315. source: "./media/characters/draganta/front.svg",
  24316. extra: 1177 / 1135,
  24317. bottom: 33.46 / 1212.1
  24318. }
  24319. },
  24320. },
  24321. [
  24322. {
  24323. name: "Normal",
  24324. height: math.unit(8 + 6 / 12, "feet"),
  24325. default: true
  24326. },
  24327. {
  24328. name: "Macro",
  24329. height: math.unit(150, "feet")
  24330. },
  24331. {
  24332. name: "Megamacro",
  24333. height: math.unit(1000, "miles")
  24334. },
  24335. ]
  24336. ))
  24337. characterMakers.push(() => makeCharacter(
  24338. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24339. {
  24340. front: {
  24341. height: math.unit(1.72, "m"),
  24342. weight: math.unit(80, "lb"),
  24343. name: "Front",
  24344. image: {
  24345. source: "./media/characters/voski/front.svg",
  24346. extra: 2076.22 / 2022.4,
  24347. bottom: 102.7 / 2177.3866
  24348. }
  24349. },
  24350. frontFlaccid: {
  24351. height: math.unit(1.72, "m"),
  24352. weight: math.unit(80, "lb"),
  24353. name: "Front (Flaccid)",
  24354. image: {
  24355. source: "./media/characters/voski/front-flaccid.svg",
  24356. extra: 2076.22 / 2022.4,
  24357. bottom: 102.7 / 2177.3866
  24358. }
  24359. },
  24360. frontErect: {
  24361. height: math.unit(1.72, "m"),
  24362. weight: math.unit(80, "lb"),
  24363. name: "Front (Erect)",
  24364. image: {
  24365. source: "./media/characters/voski/front-erect.svg",
  24366. extra: 2076.22 / 2022.4,
  24367. bottom: 102.7 / 2177.3866
  24368. }
  24369. },
  24370. back: {
  24371. height: math.unit(1.72, "m"),
  24372. weight: math.unit(80, "lb"),
  24373. name: "Back",
  24374. image: {
  24375. source: "./media/characters/voski/back.svg",
  24376. extra: 2104 / 2051,
  24377. bottom: 10.45 / 2113.63
  24378. }
  24379. },
  24380. },
  24381. [
  24382. {
  24383. name: "Normal",
  24384. height: math.unit(1.72, "m")
  24385. },
  24386. {
  24387. name: "Macro",
  24388. height: math.unit(55, "m"),
  24389. default: true
  24390. },
  24391. {
  24392. name: "Macro+",
  24393. height: math.unit(300, "m")
  24394. },
  24395. {
  24396. name: "Macro++",
  24397. height: math.unit(700, "m")
  24398. },
  24399. {
  24400. name: "Macro+++",
  24401. height: math.unit(4500, "m")
  24402. },
  24403. {
  24404. name: "Macro++++",
  24405. height: math.unit(45, "km")
  24406. },
  24407. {
  24408. name: "Macro+++++",
  24409. height: math.unit(1220, "km")
  24410. },
  24411. ]
  24412. ))
  24413. characterMakers.push(() => makeCharacter(
  24414. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24415. {
  24416. front: {
  24417. height: math.unit(2.3, "m"),
  24418. weight: math.unit(304, "kg"),
  24419. name: "Front",
  24420. image: {
  24421. source: "./media/characters/icowom-lee/front.svg",
  24422. extra: 985 / 955,
  24423. bottom: 25.4 / 1012
  24424. }
  24425. },
  24426. fronttentacles: {
  24427. height: math.unit(2.3, "m"),
  24428. weight: math.unit(304, "kg"),
  24429. name: "Front-tentacles",
  24430. image: {
  24431. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24432. extra: 985 / 955,
  24433. bottom: 25.4 / 1012
  24434. }
  24435. },
  24436. back: {
  24437. height: math.unit(2.3, "m"),
  24438. weight: math.unit(304, "kg"),
  24439. name: "Back",
  24440. image: {
  24441. source: "./media/characters/icowom-lee/back.svg",
  24442. extra: 975 / 954,
  24443. bottom: 9.5 / 985
  24444. }
  24445. },
  24446. backtentacles: {
  24447. height: math.unit(2.3, "m"),
  24448. weight: math.unit(304, "kg"),
  24449. name: "Back-tentacles",
  24450. image: {
  24451. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24452. extra: 975 / 954,
  24453. bottom: 9.5 / 985
  24454. }
  24455. },
  24456. frontDressed: {
  24457. height: math.unit(2.3, "m"),
  24458. weight: math.unit(304, "kg"),
  24459. name: "Front (Dressed)",
  24460. image: {
  24461. source: "./media/characters/icowom-lee/front-dressed.svg",
  24462. extra: 3076 / 2933,
  24463. bottom: 51.4 / 3125.1889
  24464. }
  24465. },
  24466. rump: {
  24467. height: math.unit(0.776, "meters"),
  24468. name: "Rump",
  24469. image: {
  24470. source: "./media/characters/icowom-lee/rump.svg"
  24471. }
  24472. },
  24473. genitals: {
  24474. height: math.unit(0.78, "meters"),
  24475. name: "Genitals",
  24476. image: {
  24477. source: "./media/characters/icowom-lee/genitals.svg"
  24478. }
  24479. },
  24480. },
  24481. [
  24482. {
  24483. name: "Normal",
  24484. height: math.unit(2.3, "meters"),
  24485. default: true
  24486. },
  24487. {
  24488. name: "Macro",
  24489. height: math.unit(94, "meters"),
  24490. default: true
  24491. },
  24492. ]
  24493. ))
  24494. characterMakers.push(() => makeCharacter(
  24495. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24496. {
  24497. front: {
  24498. height: math.unit(22, "meters"),
  24499. weight: math.unit(21000, "kg"),
  24500. name: "Front",
  24501. image: {
  24502. source: "./media/characters/shock-diamond/front.svg",
  24503. extra: 2204 / 2053,
  24504. bottom: 65 / 2239.47
  24505. }
  24506. },
  24507. frontNude: {
  24508. height: math.unit(22, "meters"),
  24509. weight: math.unit(21000, "kg"),
  24510. name: "Front (Nude)",
  24511. image: {
  24512. source: "./media/characters/shock-diamond/front-nude.svg",
  24513. extra: 2514 / 2285,
  24514. bottom: 13 / 2527.56
  24515. }
  24516. },
  24517. },
  24518. [
  24519. {
  24520. name: "Normal",
  24521. height: math.unit(3, "meters")
  24522. },
  24523. {
  24524. name: "Macro",
  24525. height: math.unit(22, "meters"),
  24526. default: true
  24527. },
  24528. ]
  24529. ))
  24530. characterMakers.push(() => makeCharacter(
  24531. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24532. {
  24533. front: {
  24534. height: math.unit(5 + 4/12, "feet"),
  24535. weight: math.unit(125, "lb"),
  24536. name: "Front",
  24537. image: {
  24538. source: "./media/characters/rory/front.svg",
  24539. extra: 1790/1681,
  24540. bottom: 66/1856
  24541. }
  24542. },
  24543. back: {
  24544. height: math.unit(5 + 4/12, "feet"),
  24545. weight: math.unit(125, "lb"),
  24546. name: "Back",
  24547. image: {
  24548. source: "./media/characters/rory/back.svg",
  24549. extra: 1805/1690,
  24550. bottom: 56/1861
  24551. }
  24552. },
  24553. frontDressed: {
  24554. height: math.unit(5 + 4/12, "feet"),
  24555. weight: math.unit(125, "lb"),
  24556. name: "Front (Dressed)",
  24557. image: {
  24558. source: "./media/characters/rory/front-dressed.svg",
  24559. extra: 1790/1681,
  24560. bottom: 66/1856
  24561. }
  24562. },
  24563. backDressed: {
  24564. height: math.unit(5 + 4/12, "feet"),
  24565. weight: math.unit(125, "lb"),
  24566. name: "Back (Dressed)",
  24567. image: {
  24568. source: "./media/characters/rory/back-dressed.svg",
  24569. extra: 1805/1690,
  24570. bottom: 56/1861
  24571. }
  24572. },
  24573. frontNsfw: {
  24574. height: math.unit(5 + 4/12, "feet"),
  24575. weight: math.unit(125, "lb"),
  24576. name: "Front (NSFW)",
  24577. image: {
  24578. source: "./media/characters/rory/front-nsfw.svg",
  24579. extra: 1790/1681,
  24580. bottom: 66/1856
  24581. }
  24582. },
  24583. backNsfw: {
  24584. height: math.unit(5 + 4/12, "feet"),
  24585. weight: math.unit(125, "lb"),
  24586. name: "Back (NSFW)",
  24587. image: {
  24588. source: "./media/characters/rory/back-nsfw.svg",
  24589. extra: 1805/1690,
  24590. bottom: 56/1861
  24591. }
  24592. },
  24593. dick: {
  24594. height: math.unit(0.8, "feet"),
  24595. name: "Dick",
  24596. image: {
  24597. source: "./media/characters/rory/dick.svg"
  24598. }
  24599. },
  24600. },
  24601. [
  24602. {
  24603. name: "Micro",
  24604. height: math.unit(3, "inches")
  24605. },
  24606. {
  24607. name: "Normal",
  24608. height: math.unit(5 + 4/12, "feet"),
  24609. default: true
  24610. },
  24611. {
  24612. name: "Macro",
  24613. height: math.unit(90, "feet")
  24614. },
  24615. {
  24616. name: "Supercharged",
  24617. height: math.unit(270, "feet")
  24618. },
  24619. ]
  24620. ))
  24621. characterMakers.push(() => makeCharacter(
  24622. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24623. {
  24624. front: {
  24625. height: math.unit(5 + 9 / 12, "feet"),
  24626. weight: math.unit(190, "lb"),
  24627. name: "Front",
  24628. image: {
  24629. source: "./media/characters/sprisk/front.svg",
  24630. extra: 1225 / 1180,
  24631. bottom: 42.7 / 1266.4
  24632. }
  24633. },
  24634. frontNsfw: {
  24635. height: math.unit(5 + 9 / 12, "feet"),
  24636. weight: math.unit(190, "lb"),
  24637. name: "Front (NSFW)",
  24638. image: {
  24639. source: "./media/characters/sprisk/front-nsfw.svg",
  24640. extra: 1225 / 1180,
  24641. bottom: 42.7 / 1266.4
  24642. }
  24643. },
  24644. back: {
  24645. height: math.unit(5 + 9 / 12, "feet"),
  24646. weight: math.unit(190, "lb"),
  24647. name: "Back",
  24648. image: {
  24649. source: "./media/characters/sprisk/back.svg",
  24650. extra: 1247 / 1200,
  24651. bottom: 5.6 / 1253.04
  24652. }
  24653. },
  24654. },
  24655. [
  24656. {
  24657. name: "Tiny",
  24658. height: math.unit(2, "inches")
  24659. },
  24660. {
  24661. name: "Normal",
  24662. height: math.unit(5 + 9 / 12, "feet"),
  24663. default: true
  24664. },
  24665. {
  24666. name: "Mini Macro",
  24667. height: math.unit(18, "feet")
  24668. },
  24669. {
  24670. name: "Macro",
  24671. height: math.unit(100, "feet")
  24672. },
  24673. {
  24674. name: "MACRO",
  24675. height: math.unit(50, "miles")
  24676. },
  24677. {
  24678. name: "M A C R O",
  24679. height: math.unit(300, "miles")
  24680. },
  24681. ]
  24682. ))
  24683. characterMakers.push(() => makeCharacter(
  24684. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24685. {
  24686. side: {
  24687. height: math.unit(15.6, "meters"),
  24688. weight: math.unit(700000, "kg"),
  24689. name: "Side",
  24690. image: {
  24691. source: "./media/characters/bunsen/side.svg",
  24692. extra: 1644 / 358
  24693. }
  24694. },
  24695. foot: {
  24696. height: math.unit(1.611 * 1644 / 358, "meter"),
  24697. name: "Foot",
  24698. image: {
  24699. source: "./media/characters/bunsen/foot.svg"
  24700. }
  24701. },
  24702. },
  24703. [
  24704. {
  24705. name: "Small",
  24706. height: math.unit(10, "feet")
  24707. },
  24708. {
  24709. name: "Normal",
  24710. height: math.unit(15.6, "meters"),
  24711. default: true
  24712. },
  24713. ]
  24714. ))
  24715. characterMakers.push(() => makeCharacter(
  24716. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24717. {
  24718. front: {
  24719. height: math.unit(4 + 11 / 12, "feet"),
  24720. weight: math.unit(140, "lb"),
  24721. name: "Front",
  24722. image: {
  24723. source: "./media/characters/sesh/front.svg",
  24724. extra: 3420 / 3231,
  24725. bottom: 72 / 3949.5
  24726. }
  24727. },
  24728. },
  24729. [
  24730. {
  24731. name: "Normal",
  24732. height: math.unit(4 + 11 / 12, "feet")
  24733. },
  24734. {
  24735. name: "Grown",
  24736. height: math.unit(15, "feet"),
  24737. default: true
  24738. },
  24739. {
  24740. name: "Macro",
  24741. height: math.unit(1500, "feet")
  24742. },
  24743. {
  24744. name: "Megamacro",
  24745. height: math.unit(30, "miles")
  24746. },
  24747. {
  24748. name: "Continental",
  24749. height: math.unit(3000, "miles")
  24750. },
  24751. {
  24752. name: "Gravity Mass",
  24753. height: math.unit(300000, "miles")
  24754. },
  24755. {
  24756. name: "Planet Buster",
  24757. height: math.unit(30000000, "miles")
  24758. },
  24759. {
  24760. name: "Big",
  24761. height: math.unit(3000000000, "miles")
  24762. },
  24763. ]
  24764. ))
  24765. characterMakers.push(() => makeCharacter(
  24766. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24767. {
  24768. front: {
  24769. height: math.unit(9, "feet"),
  24770. weight: math.unit(350, "lb"),
  24771. name: "Front",
  24772. image: {
  24773. source: "./media/characters/pepper/front.svg",
  24774. extra: 1448 / 1312,
  24775. bottom: 9.4 / 1457.88
  24776. }
  24777. },
  24778. back: {
  24779. height: math.unit(9, "feet"),
  24780. weight: math.unit(350, "lb"),
  24781. name: "Back",
  24782. image: {
  24783. source: "./media/characters/pepper/back.svg",
  24784. extra: 1423 / 1300,
  24785. bottom: 4.6 / 1429
  24786. }
  24787. },
  24788. maw: {
  24789. height: math.unit(0.932, "feet"),
  24790. name: "Maw",
  24791. image: {
  24792. source: "./media/characters/pepper/maw.svg"
  24793. }
  24794. },
  24795. },
  24796. [
  24797. {
  24798. name: "Normal",
  24799. height: math.unit(9, "feet"),
  24800. default: true
  24801. },
  24802. ]
  24803. ))
  24804. characterMakers.push(() => makeCharacter(
  24805. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24806. {
  24807. front: {
  24808. height: math.unit(6, "feet"),
  24809. weight: math.unit(150, "lb"),
  24810. name: "Front",
  24811. image: {
  24812. source: "./media/characters/maelstrom/front.svg",
  24813. extra: 2100 / 1883,
  24814. bottom: 94 / 2196.7
  24815. }
  24816. },
  24817. },
  24818. [
  24819. {
  24820. name: "Less Kaiju",
  24821. height: math.unit(200, "feet")
  24822. },
  24823. {
  24824. name: "Kaiju",
  24825. height: math.unit(400, "feet"),
  24826. default: true
  24827. },
  24828. {
  24829. name: "Kaiju-er",
  24830. height: math.unit(600, "feet")
  24831. },
  24832. ]
  24833. ))
  24834. characterMakers.push(() => makeCharacter(
  24835. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24836. {
  24837. front: {
  24838. height: math.unit(6 + 5 / 12, "feet"),
  24839. weight: math.unit(180, "lb"),
  24840. name: "Front",
  24841. image: {
  24842. source: "./media/characters/lexir/front.svg",
  24843. extra: 180 / 172,
  24844. bottom: 12 / 192
  24845. }
  24846. },
  24847. back: {
  24848. height: math.unit(6 + 5 / 12, "feet"),
  24849. weight: math.unit(180, "lb"),
  24850. name: "Back",
  24851. image: {
  24852. source: "./media/characters/lexir/back.svg",
  24853. extra: 1273/1201,
  24854. bottom: 39/1312
  24855. }
  24856. },
  24857. },
  24858. [
  24859. {
  24860. name: "Very Smal",
  24861. height: math.unit(1, "nm")
  24862. },
  24863. {
  24864. name: "Normal",
  24865. height: math.unit(6 + 5 / 12, "feet"),
  24866. default: true
  24867. },
  24868. {
  24869. name: "Macro",
  24870. height: math.unit(1, "mile")
  24871. },
  24872. {
  24873. name: "Megamacro",
  24874. height: math.unit(50, "miles")
  24875. },
  24876. ]
  24877. ))
  24878. characterMakers.push(() => makeCharacter(
  24879. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24880. {
  24881. front: {
  24882. height: math.unit(1.5, "meters"),
  24883. weight: math.unit(100, "lb"),
  24884. name: "Front",
  24885. image: {
  24886. source: "./media/characters/maksio/front.svg",
  24887. extra: 1549 / 1531,
  24888. bottom: 123.7 / 1674.5429
  24889. }
  24890. },
  24891. back: {
  24892. height: math.unit(1.5, "meters"),
  24893. weight: math.unit(100, "lb"),
  24894. name: "Back",
  24895. image: {
  24896. source: "./media/characters/maksio/back.svg",
  24897. extra: 1541 / 1509,
  24898. bottom: 97 / 1639
  24899. }
  24900. },
  24901. hand: {
  24902. height: math.unit(0.621, "feet"),
  24903. name: "Hand",
  24904. image: {
  24905. source: "./media/characters/maksio/hand.svg"
  24906. }
  24907. },
  24908. foot: {
  24909. height: math.unit(1.611, "feet"),
  24910. name: "Foot",
  24911. image: {
  24912. source: "./media/characters/maksio/foot.svg"
  24913. }
  24914. },
  24915. },
  24916. [
  24917. {
  24918. name: "Shrunken",
  24919. height: math.unit(10, "cm")
  24920. },
  24921. {
  24922. name: "Normal",
  24923. height: math.unit(150, "cm"),
  24924. default: true
  24925. },
  24926. ]
  24927. ))
  24928. characterMakers.push(() => makeCharacter(
  24929. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24930. {
  24931. front: {
  24932. height: math.unit(100, "feet"),
  24933. name: "Front",
  24934. image: {
  24935. source: "./media/characters/erza-bear/front.svg",
  24936. extra: 2449 / 2390,
  24937. bottom: 46 / 2494
  24938. }
  24939. },
  24940. back: {
  24941. height: math.unit(100, "feet"),
  24942. name: "Back",
  24943. image: {
  24944. source: "./media/characters/erza-bear/back.svg",
  24945. extra: 2489 / 2430,
  24946. bottom: 85.4 / 2480
  24947. }
  24948. },
  24949. tail: {
  24950. height: math.unit(42, "feet"),
  24951. name: "Tail",
  24952. image: {
  24953. source: "./media/characters/erza-bear/tail.svg"
  24954. }
  24955. },
  24956. tongue: {
  24957. height: math.unit(8, "feet"),
  24958. name: "Tongue",
  24959. image: {
  24960. source: "./media/characters/erza-bear/tongue.svg"
  24961. }
  24962. },
  24963. dick: {
  24964. height: math.unit(10.5, "feet"),
  24965. name: "Dick",
  24966. image: {
  24967. source: "./media/characters/erza-bear/dick.svg"
  24968. }
  24969. },
  24970. dickVertical: {
  24971. height: math.unit(16.9, "feet"),
  24972. name: "Dick (Vertical)",
  24973. image: {
  24974. source: "./media/characters/erza-bear/dick-vertical.svg"
  24975. }
  24976. },
  24977. },
  24978. [
  24979. {
  24980. name: "Macro",
  24981. height: math.unit(100, "feet"),
  24982. default: true
  24983. },
  24984. ]
  24985. ))
  24986. characterMakers.push(() => makeCharacter(
  24987. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24988. {
  24989. front: {
  24990. height: math.unit(172, "cm"),
  24991. weight: math.unit(73, "kg"),
  24992. name: "Front",
  24993. image: {
  24994. source: "./media/characters/violet-flor/front.svg",
  24995. extra: 1530 / 1442,
  24996. bottom: 61.9 / 1588.8
  24997. }
  24998. },
  24999. back: {
  25000. height: math.unit(180, "cm"),
  25001. weight: math.unit(73, "kg"),
  25002. name: "Back",
  25003. image: {
  25004. source: "./media/characters/violet-flor/back.svg",
  25005. extra: 1692 / 1630,
  25006. bottom: 20 / 1712
  25007. }
  25008. },
  25009. },
  25010. [
  25011. {
  25012. name: "Normal",
  25013. height: math.unit(172, "cm"),
  25014. default: true
  25015. },
  25016. ]
  25017. ))
  25018. characterMakers.push(() => makeCharacter(
  25019. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25020. {
  25021. front: {
  25022. height: math.unit(6, "feet"),
  25023. weight: math.unit(220, "lb"),
  25024. name: "Front",
  25025. image: {
  25026. source: "./media/characters/lynn-rhea/front.svg",
  25027. extra: 310 / 273
  25028. }
  25029. },
  25030. back: {
  25031. height: math.unit(6, "feet"),
  25032. weight: math.unit(220, "lb"),
  25033. name: "Back",
  25034. image: {
  25035. source: "./media/characters/lynn-rhea/back.svg",
  25036. extra: 310 / 273
  25037. }
  25038. },
  25039. dicks: {
  25040. height: math.unit(0.9, "feet"),
  25041. name: "Dicks",
  25042. image: {
  25043. source: "./media/characters/lynn-rhea/dicks.svg"
  25044. }
  25045. },
  25046. slit: {
  25047. height: math.unit(0.4, "feet"),
  25048. name: "Slit",
  25049. image: {
  25050. source: "./media/characters/lynn-rhea/slit.svg"
  25051. }
  25052. },
  25053. },
  25054. [
  25055. {
  25056. name: "Micro",
  25057. height: math.unit(1, "inch")
  25058. },
  25059. {
  25060. name: "Macro",
  25061. height: math.unit(60, "feet"),
  25062. default: true
  25063. },
  25064. {
  25065. name: "Megamacro",
  25066. height: math.unit(2, "miles")
  25067. },
  25068. {
  25069. name: "Gigamacro",
  25070. height: math.unit(3, "earths")
  25071. },
  25072. {
  25073. name: "Galactic",
  25074. height: math.unit(0.8, "galaxies")
  25075. },
  25076. ]
  25077. ))
  25078. characterMakers.push(() => makeCharacter(
  25079. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25080. {
  25081. front: {
  25082. height: math.unit(1600, "feet"),
  25083. weight: math.unit(85758785169, "kg"),
  25084. name: "Front",
  25085. image: {
  25086. source: "./media/characters/valathos/front.svg",
  25087. extra: 1451 / 1339
  25088. }
  25089. },
  25090. },
  25091. [
  25092. {
  25093. name: "Macro",
  25094. height: math.unit(1600, "feet"),
  25095. default: true
  25096. },
  25097. ]
  25098. ))
  25099. characterMakers.push(() => makeCharacter(
  25100. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25101. {
  25102. front: {
  25103. height: math.unit(7 + 5 / 12, "feet"),
  25104. weight: math.unit(300, "lb"),
  25105. name: "Front",
  25106. image: {
  25107. source: "./media/characters/azula/front.svg",
  25108. extra: 3208 / 2880,
  25109. bottom: 80.2 / 3277
  25110. }
  25111. },
  25112. back: {
  25113. height: math.unit(7 + 5 / 12, "feet"),
  25114. weight: math.unit(300, "lb"),
  25115. name: "Back",
  25116. image: {
  25117. source: "./media/characters/azula/back.svg",
  25118. extra: 3169 / 2822,
  25119. bottom: 150.6 / 3321
  25120. }
  25121. },
  25122. },
  25123. [
  25124. {
  25125. name: "Normal",
  25126. height: math.unit(7 + 5 / 12, "feet"),
  25127. default: true
  25128. },
  25129. {
  25130. name: "Big",
  25131. height: math.unit(20, "feet")
  25132. },
  25133. ]
  25134. ))
  25135. characterMakers.push(() => makeCharacter(
  25136. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25137. {
  25138. front: {
  25139. height: math.unit(5 + 1 / 12, "feet"),
  25140. weight: math.unit(110, "lb"),
  25141. name: "Front",
  25142. image: {
  25143. source: "./media/characters/rupert/front.svg",
  25144. extra: 1549 / 1495,
  25145. bottom: 54.2 / 1604.4
  25146. }
  25147. },
  25148. },
  25149. [
  25150. {
  25151. name: "Normal",
  25152. height: math.unit(5 + 1 / 12, "feet"),
  25153. default: true
  25154. },
  25155. ]
  25156. ))
  25157. characterMakers.push(() => makeCharacter(
  25158. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25159. {
  25160. front: {
  25161. height: math.unit(8 + 4 / 12, "feet"),
  25162. weight: math.unit(350, "lb"),
  25163. name: "Front",
  25164. image: {
  25165. source: "./media/characters/sheera-castellar/front.svg",
  25166. extra: 1957 / 1894,
  25167. bottom: 26.97 / 1975.017
  25168. }
  25169. },
  25170. side: {
  25171. height: math.unit(8 + 4 / 12, "feet"),
  25172. weight: math.unit(350, "lb"),
  25173. name: "Side",
  25174. image: {
  25175. source: "./media/characters/sheera-castellar/side.svg",
  25176. extra: 1957 / 1894
  25177. }
  25178. },
  25179. back: {
  25180. height: math.unit(8 + 4 / 12, "feet"),
  25181. weight: math.unit(350, "lb"),
  25182. name: "Back",
  25183. image: {
  25184. source: "./media/characters/sheera-castellar/back.svg",
  25185. extra: 1957 / 1894
  25186. }
  25187. },
  25188. angled: {
  25189. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25190. weight: math.unit(350, "lb"),
  25191. name: "Angled",
  25192. image: {
  25193. source: "./media/characters/sheera-castellar/angled.svg",
  25194. extra: 1807 / 1707,
  25195. bottom: 68 / 1875
  25196. }
  25197. },
  25198. genitals: {
  25199. height: math.unit(2.2, "feet"),
  25200. name: "Genitals",
  25201. image: {
  25202. source: "./media/characters/sheera-castellar/genitals.svg"
  25203. }
  25204. },
  25205. taur: {
  25206. height: math.unit(10 + 6/12, "feet"),
  25207. name: "Taur",
  25208. image: {
  25209. source: "./media/characters/sheera-castellar/taur.svg",
  25210. extra: 2017/1909,
  25211. bottom: 185/2202
  25212. }
  25213. },
  25214. },
  25215. [
  25216. {
  25217. name: "Normal",
  25218. height: math.unit(8 + 4 / 12, "feet")
  25219. },
  25220. {
  25221. name: "Macro",
  25222. height: math.unit(150, "feet"),
  25223. default: true
  25224. },
  25225. {
  25226. name: "Macro+",
  25227. height: math.unit(800, "feet")
  25228. },
  25229. ]
  25230. ))
  25231. characterMakers.push(() => makeCharacter(
  25232. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25233. {
  25234. front: {
  25235. height: math.unit(6, "feet"),
  25236. weight: math.unit(150, "lb"),
  25237. name: "Front",
  25238. image: {
  25239. source: "./media/characters/jaipur/front.svg",
  25240. extra: 3860 / 3731,
  25241. bottom: 287 / 4140
  25242. }
  25243. },
  25244. back: {
  25245. height: math.unit(6, "feet"),
  25246. weight: math.unit(150, "lb"),
  25247. name: "Back",
  25248. image: {
  25249. source: "./media/characters/jaipur/back.svg",
  25250. extra: 1637/1561,
  25251. bottom: 154/1791
  25252. }
  25253. },
  25254. },
  25255. [
  25256. {
  25257. name: "Normal",
  25258. height: math.unit(1.85, "meters"),
  25259. default: true
  25260. },
  25261. {
  25262. name: "Macro",
  25263. height: math.unit(150, "meters")
  25264. },
  25265. {
  25266. name: "Macro+",
  25267. height: math.unit(0.5, "miles")
  25268. },
  25269. {
  25270. name: "Macro++",
  25271. height: math.unit(2.5, "miles")
  25272. },
  25273. {
  25274. name: "Macro+++",
  25275. height: math.unit(12, "miles")
  25276. },
  25277. {
  25278. name: "Macro++++",
  25279. height: math.unit(120, "miles")
  25280. },
  25281. {
  25282. name: "Macro+++++",
  25283. height: math.unit(1200, "miles")
  25284. },
  25285. ]
  25286. ))
  25287. characterMakers.push(() => makeCharacter(
  25288. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25289. {
  25290. front: {
  25291. height: math.unit(6, "feet"),
  25292. weight: math.unit(150, "lb"),
  25293. name: "Front",
  25294. image: {
  25295. source: "./media/characters/sheila-wolf/front.svg",
  25296. extra: 1931 / 1808,
  25297. bottom: 29.5 / 1960
  25298. }
  25299. },
  25300. dick: {
  25301. height: math.unit(1.464, "feet"),
  25302. name: "Dick",
  25303. image: {
  25304. source: "./media/characters/sheila-wolf/dick.svg"
  25305. }
  25306. },
  25307. muzzle: {
  25308. height: math.unit(0.513, "feet"),
  25309. name: "Muzzle",
  25310. image: {
  25311. source: "./media/characters/sheila-wolf/muzzle.svg"
  25312. }
  25313. },
  25314. },
  25315. [
  25316. {
  25317. name: "Macro",
  25318. height: math.unit(70, "feet"),
  25319. default: true
  25320. },
  25321. ]
  25322. ))
  25323. characterMakers.push(() => makeCharacter(
  25324. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25325. {
  25326. front: {
  25327. height: math.unit(32, "meters"),
  25328. weight: math.unit(300000, "kg"),
  25329. name: "Front",
  25330. image: {
  25331. source: "./media/characters/almor/front.svg",
  25332. extra: 1408 / 1322,
  25333. bottom: 94.6 / 1506.5
  25334. }
  25335. },
  25336. },
  25337. [
  25338. {
  25339. name: "Macro",
  25340. height: math.unit(32, "meters"),
  25341. default: true
  25342. },
  25343. ]
  25344. ))
  25345. characterMakers.push(() => makeCharacter(
  25346. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25347. {
  25348. front: {
  25349. height: math.unit(7, "feet"),
  25350. weight: math.unit(200, "lb"),
  25351. name: "Front",
  25352. image: {
  25353. source: "./media/characters/silver/front.svg",
  25354. extra: 472.1 / 450.5,
  25355. bottom: 26.5 / 499.424
  25356. }
  25357. },
  25358. },
  25359. [
  25360. {
  25361. name: "Normal",
  25362. height: math.unit(7, "feet"),
  25363. default: true
  25364. },
  25365. {
  25366. name: "Macro",
  25367. height: math.unit(800, "feet")
  25368. },
  25369. {
  25370. name: "Megamacro",
  25371. height: math.unit(250, "miles")
  25372. },
  25373. ]
  25374. ))
  25375. characterMakers.push(() => makeCharacter(
  25376. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25377. {
  25378. front: {
  25379. height: math.unit(6, "feet"),
  25380. weight: math.unit(150, "lb"),
  25381. name: "Front",
  25382. image: {
  25383. source: "./media/characters/pliskin/front.svg",
  25384. extra: 1469 / 1359,
  25385. bottom: 70 / 1540
  25386. }
  25387. },
  25388. },
  25389. [
  25390. {
  25391. name: "Micro",
  25392. height: math.unit(3, "inches")
  25393. },
  25394. {
  25395. name: "Normal",
  25396. height: math.unit(5 + 11 / 12, "feet"),
  25397. default: true
  25398. },
  25399. {
  25400. name: "Macro",
  25401. height: math.unit(120, "feet")
  25402. },
  25403. ]
  25404. ))
  25405. characterMakers.push(() => makeCharacter(
  25406. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25407. {
  25408. front: {
  25409. height: math.unit(6, "feet"),
  25410. weight: math.unit(150, "lb"),
  25411. name: "Front",
  25412. image: {
  25413. source: "./media/characters/sammy/front.svg",
  25414. extra: 1193 / 1089,
  25415. bottom: 30.5 / 1226
  25416. }
  25417. },
  25418. },
  25419. [
  25420. {
  25421. name: "Macro",
  25422. height: math.unit(1700, "feet"),
  25423. default: true
  25424. },
  25425. {
  25426. name: "Examacro",
  25427. height: math.unit(2.5e9, "lightyears")
  25428. },
  25429. ]
  25430. ))
  25431. characterMakers.push(() => makeCharacter(
  25432. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25433. {
  25434. front: {
  25435. height: math.unit(21, "meters"),
  25436. weight: math.unit(12, "tonnes"),
  25437. name: "Front",
  25438. image: {
  25439. source: "./media/characters/kuru/front.svg",
  25440. extra: 4301 / 3785,
  25441. bottom: 371.3 / 4691
  25442. }
  25443. },
  25444. },
  25445. [
  25446. {
  25447. name: "Macro",
  25448. height: math.unit(21, "meters"),
  25449. default: true
  25450. },
  25451. ]
  25452. ))
  25453. characterMakers.push(() => makeCharacter(
  25454. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25455. {
  25456. front: {
  25457. height: math.unit(23, "meters"),
  25458. weight: math.unit(12.2, "tonnes"),
  25459. name: "Front",
  25460. image: {
  25461. source: "./media/characters/rakka/front.svg",
  25462. extra: 4670 / 4169,
  25463. bottom: 301 / 4968.7
  25464. }
  25465. },
  25466. },
  25467. [
  25468. {
  25469. name: "Macro",
  25470. height: math.unit(23, "meters"),
  25471. default: true
  25472. },
  25473. ]
  25474. ))
  25475. characterMakers.push(() => makeCharacter(
  25476. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25477. {
  25478. front: {
  25479. height: math.unit(6, "feet"),
  25480. weight: math.unit(150, "lb"),
  25481. name: "Front",
  25482. image: {
  25483. source: "./media/characters/rhys-feline/front.svg",
  25484. extra: 2488 / 2308,
  25485. bottom: 35.67 / 2519.19
  25486. }
  25487. },
  25488. },
  25489. [
  25490. {
  25491. name: "Really Small",
  25492. height: math.unit(1, "nm")
  25493. },
  25494. {
  25495. name: "Micro",
  25496. height: math.unit(4, "inches")
  25497. },
  25498. {
  25499. name: "Normal",
  25500. height: math.unit(4 + 10 / 12, "feet"),
  25501. default: true
  25502. },
  25503. {
  25504. name: "Macro",
  25505. height: math.unit(100, "feet")
  25506. },
  25507. {
  25508. name: "Megamacto",
  25509. height: math.unit(50, "miles")
  25510. },
  25511. ]
  25512. ))
  25513. characterMakers.push(() => makeCharacter(
  25514. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25515. {
  25516. side: {
  25517. height: math.unit(30, "feet"),
  25518. weight: math.unit(35000, "kg"),
  25519. name: "Side",
  25520. image: {
  25521. source: "./media/characters/alydar/side.svg",
  25522. extra: 234 / 222,
  25523. bottom: 6.5 / 241
  25524. }
  25525. },
  25526. front: {
  25527. height: math.unit(30, "feet"),
  25528. weight: math.unit(35000, "kg"),
  25529. name: "Front",
  25530. image: {
  25531. source: "./media/characters/alydar/front.svg",
  25532. extra: 223.37 / 210.2,
  25533. bottom: 22.3 / 246.76
  25534. }
  25535. },
  25536. top: {
  25537. height: math.unit(64.54, "feet"),
  25538. weight: math.unit(35000, "kg"),
  25539. name: "Top",
  25540. image: {
  25541. source: "./media/characters/alydar/top.svg"
  25542. }
  25543. },
  25544. anthro: {
  25545. height: math.unit(30, "feet"),
  25546. weight: math.unit(9000, "kg"),
  25547. name: "Anthro",
  25548. image: {
  25549. source: "./media/characters/alydar/anthro.svg",
  25550. extra: 432 / 421,
  25551. bottom: 7.18 / 440
  25552. }
  25553. },
  25554. maw: {
  25555. height: math.unit(11.693, "feet"),
  25556. name: "Maw",
  25557. image: {
  25558. source: "./media/characters/alydar/maw.svg"
  25559. }
  25560. },
  25561. head: {
  25562. height: math.unit(11.693, "feet"),
  25563. name: "Head",
  25564. image: {
  25565. source: "./media/characters/alydar/head.svg"
  25566. }
  25567. },
  25568. headAlt: {
  25569. height: math.unit(12.861, "feet"),
  25570. name: "Head (Alt)",
  25571. image: {
  25572. source: "./media/characters/alydar/head-alt.svg"
  25573. }
  25574. },
  25575. wing: {
  25576. height: math.unit(20.712, "feet"),
  25577. name: "Wing",
  25578. image: {
  25579. source: "./media/characters/alydar/wing.svg"
  25580. }
  25581. },
  25582. wingFeather: {
  25583. height: math.unit(9.662, "feet"),
  25584. name: "Wing Feather",
  25585. image: {
  25586. source: "./media/characters/alydar/wing-feather.svg"
  25587. }
  25588. },
  25589. countourFeather: {
  25590. height: math.unit(4.154, "feet"),
  25591. name: "Contour Feather",
  25592. image: {
  25593. source: "./media/characters/alydar/contour-feather.svg"
  25594. }
  25595. },
  25596. },
  25597. [
  25598. {
  25599. name: "Diplomatic",
  25600. height: math.unit(13, "feet"),
  25601. default: true
  25602. },
  25603. {
  25604. name: "Small",
  25605. height: math.unit(30, "feet")
  25606. },
  25607. {
  25608. name: "Normal",
  25609. height: math.unit(95, "feet"),
  25610. default: true
  25611. },
  25612. {
  25613. name: "Large",
  25614. height: math.unit(285, "feet")
  25615. },
  25616. {
  25617. name: "Incomprehensible",
  25618. height: math.unit(450, "megameters")
  25619. },
  25620. ]
  25621. ))
  25622. characterMakers.push(() => makeCharacter(
  25623. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25624. {
  25625. side: {
  25626. height: math.unit(11, "feet"),
  25627. weight: math.unit(1750, "kg"),
  25628. name: "Side",
  25629. image: {
  25630. source: "./media/characters/selicia/side.svg",
  25631. extra: 440 / 396,
  25632. bottom: 24.8 / 465.979
  25633. }
  25634. },
  25635. maw: {
  25636. height: math.unit(4.665, "feet"),
  25637. name: "Maw",
  25638. image: {
  25639. source: "./media/characters/selicia/maw.svg"
  25640. }
  25641. },
  25642. },
  25643. [
  25644. {
  25645. name: "Normal",
  25646. height: math.unit(11, "feet"),
  25647. default: true
  25648. },
  25649. ]
  25650. ))
  25651. characterMakers.push(() => makeCharacter(
  25652. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25653. {
  25654. side: {
  25655. height: math.unit(2 + 6 / 12, "feet"),
  25656. weight: math.unit(30, "lb"),
  25657. name: "Side",
  25658. image: {
  25659. source: "./media/characters/layla/side.svg",
  25660. extra: 244 / 188,
  25661. bottom: 18.2 / 262.1
  25662. }
  25663. },
  25664. back: {
  25665. height: math.unit(2 + 6 / 12, "feet"),
  25666. weight: math.unit(30, "lb"),
  25667. name: "Back",
  25668. image: {
  25669. source: "./media/characters/layla/back.svg",
  25670. extra: 308 / 241.5,
  25671. bottom: 8.9 / 316.8
  25672. }
  25673. },
  25674. cumming: {
  25675. height: math.unit(2 + 6 / 12, "feet"),
  25676. weight: math.unit(30, "lb"),
  25677. name: "Cumming",
  25678. image: {
  25679. source: "./media/characters/layla/cumming.svg",
  25680. extra: 342 / 279,
  25681. bottom: 595 / 938
  25682. }
  25683. },
  25684. dickFlaccid: {
  25685. height: math.unit(2.595, "feet"),
  25686. name: "Flaccid Genitals",
  25687. image: {
  25688. source: "./media/characters/layla/dick-flaccid.svg"
  25689. }
  25690. },
  25691. dickErect: {
  25692. height: math.unit(2.359, "feet"),
  25693. name: "Erect Genitals",
  25694. image: {
  25695. source: "./media/characters/layla/dick-erect.svg"
  25696. }
  25697. },
  25698. dragon: {
  25699. height: math.unit(40, "feet"),
  25700. name: "Dragon",
  25701. image: {
  25702. source: "./media/characters/layla/dragon.svg",
  25703. extra: 610/535,
  25704. bottom: 367/977
  25705. }
  25706. },
  25707. taur: {
  25708. height: math.unit(30, "feet"),
  25709. name: "Taur",
  25710. image: {
  25711. source: "./media/characters/layla/taur.svg",
  25712. extra: 1268/1199,
  25713. bottom: 112/1380
  25714. }
  25715. },
  25716. },
  25717. [
  25718. {
  25719. name: "Micro",
  25720. height: math.unit(1, "inch")
  25721. },
  25722. {
  25723. name: "Small",
  25724. height: math.unit(1, "foot")
  25725. },
  25726. {
  25727. name: "Normal",
  25728. height: math.unit(2 + 6 / 12, "feet"),
  25729. default: true
  25730. },
  25731. {
  25732. name: "Macro",
  25733. height: math.unit(200, "feet")
  25734. },
  25735. {
  25736. name: "Megamacro",
  25737. height: math.unit(1000, "miles")
  25738. },
  25739. {
  25740. name: "Planetary",
  25741. height: math.unit(8000, "miles")
  25742. },
  25743. {
  25744. name: "True Layla",
  25745. height: math.unit(200000 * 7, "multiverses")
  25746. },
  25747. ]
  25748. ))
  25749. characterMakers.push(() => makeCharacter(
  25750. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25751. {
  25752. back: {
  25753. height: math.unit(10.5, "feet"),
  25754. weight: math.unit(800, "lb"),
  25755. name: "Back",
  25756. image: {
  25757. source: "./media/characters/knox/back.svg",
  25758. extra: 1486 / 1089,
  25759. bottom: 107 / 1601.4
  25760. }
  25761. },
  25762. side: {
  25763. height: math.unit(10.5, "feet"),
  25764. weight: math.unit(800, "lb"),
  25765. name: "Side",
  25766. image: {
  25767. source: "./media/characters/knox/side.svg",
  25768. extra: 244 / 218,
  25769. bottom: 14 / 260
  25770. }
  25771. },
  25772. },
  25773. [
  25774. {
  25775. name: "Compact",
  25776. height: math.unit(10.5, "feet"),
  25777. default: true
  25778. },
  25779. {
  25780. name: "Dynamax",
  25781. height: math.unit(210, "feet")
  25782. },
  25783. {
  25784. name: "Full Macro",
  25785. height: math.unit(850, "feet")
  25786. },
  25787. ]
  25788. ))
  25789. characterMakers.push(() => makeCharacter(
  25790. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25791. {
  25792. front: {
  25793. height: math.unit(28, "feet"),
  25794. weight: math.unit(10500, "lb"),
  25795. name: "Front",
  25796. image: {
  25797. source: "./media/characters/kayda/front.svg",
  25798. extra: 1536 / 1428,
  25799. bottom: 68.7 / 1603
  25800. }
  25801. },
  25802. back: {
  25803. height: math.unit(28, "feet"),
  25804. weight: math.unit(10500, "lb"),
  25805. name: "Back",
  25806. image: {
  25807. source: "./media/characters/kayda/back.svg",
  25808. extra: 1557 / 1464,
  25809. bottom: 39.5 / 1597.49
  25810. }
  25811. },
  25812. dick: {
  25813. height: math.unit(3.858, "feet"),
  25814. name: "Dick",
  25815. image: {
  25816. source: "./media/characters/kayda/dick.svg"
  25817. }
  25818. },
  25819. },
  25820. [
  25821. {
  25822. name: "Macro",
  25823. height: math.unit(28, "feet"),
  25824. default: true
  25825. },
  25826. ]
  25827. ))
  25828. characterMakers.push(() => makeCharacter(
  25829. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25830. {
  25831. front: {
  25832. height: math.unit(10 + 11 / 12, "feet"),
  25833. weight: math.unit(1400, "lb"),
  25834. name: "Front",
  25835. image: {
  25836. source: "./media/characters/brian/front.svg",
  25837. extra: 737 / 692,
  25838. bottom: 55.4 / 785
  25839. }
  25840. },
  25841. },
  25842. [
  25843. {
  25844. name: "Normal",
  25845. height: math.unit(10 + 11 / 12, "feet"),
  25846. default: true
  25847. },
  25848. ]
  25849. ))
  25850. characterMakers.push(() => makeCharacter(
  25851. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25852. {
  25853. front: {
  25854. height: math.unit(5 + 8 / 12, "feet"),
  25855. weight: math.unit(140, "lb"),
  25856. name: "Front",
  25857. image: {
  25858. source: "./media/characters/khemri/front.svg",
  25859. extra: 4780 / 4059,
  25860. bottom: 80.1 / 4859.25
  25861. }
  25862. },
  25863. },
  25864. [
  25865. {
  25866. name: "Micro",
  25867. height: math.unit(6, "inches")
  25868. },
  25869. {
  25870. name: "Normal",
  25871. height: math.unit(5 + 8 / 12, "feet"),
  25872. default: true
  25873. },
  25874. ]
  25875. ))
  25876. characterMakers.push(() => makeCharacter(
  25877. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25878. {
  25879. front: {
  25880. height: math.unit(13, "feet"),
  25881. weight: math.unit(1700, "lb"),
  25882. name: "Front",
  25883. image: {
  25884. source: "./media/characters/felix-braveheart/front.svg",
  25885. extra: 1222 / 1157,
  25886. bottom: 53.2 / 1280
  25887. }
  25888. },
  25889. back: {
  25890. height: math.unit(13, "feet"),
  25891. weight: math.unit(1700, "lb"),
  25892. name: "Back",
  25893. image: {
  25894. source: "./media/characters/felix-braveheart/back.svg",
  25895. extra: 1277 / 1203,
  25896. bottom: 50.2 / 1327
  25897. }
  25898. },
  25899. feral: {
  25900. height: math.unit(6, "feet"),
  25901. weight: math.unit(400, "lb"),
  25902. name: "Feral",
  25903. image: {
  25904. source: "./media/characters/felix-braveheart/feral.svg",
  25905. extra: 682 / 625,
  25906. bottom: 6.9 / 688
  25907. }
  25908. },
  25909. },
  25910. [
  25911. {
  25912. name: "Normal",
  25913. height: math.unit(13, "feet"),
  25914. default: true
  25915. },
  25916. ]
  25917. ))
  25918. characterMakers.push(() => makeCharacter(
  25919. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25920. {
  25921. side: {
  25922. height: math.unit(5 + 11 / 12, "feet"),
  25923. weight: math.unit(1400, "lb"),
  25924. name: "Side",
  25925. image: {
  25926. source: "./media/characters/shadow-blade/side.svg",
  25927. extra: 1726 / 1267,
  25928. bottom: 58.4 / 1785
  25929. }
  25930. },
  25931. },
  25932. [
  25933. {
  25934. name: "Normal",
  25935. height: math.unit(5 + 11 / 12, "feet"),
  25936. default: true
  25937. },
  25938. ]
  25939. ))
  25940. characterMakers.push(() => makeCharacter(
  25941. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25942. {
  25943. front: {
  25944. height: math.unit(1 + 6 / 12, "feet"),
  25945. weight: math.unit(25, "lb"),
  25946. name: "Front",
  25947. image: {
  25948. source: "./media/characters/karla-halldor/front.svg",
  25949. extra: 1459 / 1383,
  25950. bottom: 12 / 1472
  25951. }
  25952. },
  25953. },
  25954. [
  25955. {
  25956. name: "Normal",
  25957. height: math.unit(1 + 6 / 12, "feet"),
  25958. default: true
  25959. },
  25960. ]
  25961. ))
  25962. characterMakers.push(() => makeCharacter(
  25963. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25964. {
  25965. front: {
  25966. height: math.unit(6 + 2 / 12, "feet"),
  25967. weight: math.unit(160, "lb"),
  25968. name: "Front",
  25969. image: {
  25970. source: "./media/characters/ariam/front.svg",
  25971. extra: 1073/976,
  25972. bottom: 52/1125
  25973. }
  25974. },
  25975. back: {
  25976. height: math.unit(6 + 2/12, "feet"),
  25977. weight: math.unit(160, "lb"),
  25978. name: "Back",
  25979. image: {
  25980. source: "./media/characters/ariam/back.svg",
  25981. extra: 1103/1023,
  25982. bottom: 9/1112
  25983. }
  25984. },
  25985. dressed: {
  25986. height: math.unit(6 + 2/12, "feet"),
  25987. weight: math.unit(160, "lb"),
  25988. name: "Dressed",
  25989. image: {
  25990. source: "./media/characters/ariam/dressed.svg",
  25991. extra: 1099/1009,
  25992. bottom: 25/1124
  25993. }
  25994. },
  25995. squatting: {
  25996. height: math.unit(4.1, "feet"),
  25997. weight: math.unit(160, "lb"),
  25998. name: "Squatting",
  25999. image: {
  26000. source: "./media/characters/ariam/squatting.svg",
  26001. extra: 2617 / 2112,
  26002. bottom: 61.2 / 2681,
  26003. }
  26004. },
  26005. },
  26006. [
  26007. {
  26008. name: "Normal",
  26009. height: math.unit(6 + 2 / 12, "feet"),
  26010. default: true
  26011. },
  26012. {
  26013. name: "Normal+",
  26014. height: math.unit(4, "meters")
  26015. },
  26016. {
  26017. name: "Macro",
  26018. height: math.unit(50, "meters")
  26019. },
  26020. {
  26021. name: "Macro+",
  26022. height: math.unit(100, "meters")
  26023. },
  26024. {
  26025. name: "Megamacro",
  26026. height: math.unit(20, "km")
  26027. },
  26028. {
  26029. name: "Caretaker",
  26030. height: math.unit(444, "megameters")
  26031. },
  26032. ]
  26033. ))
  26034. characterMakers.push(() => makeCharacter(
  26035. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26036. {
  26037. front: {
  26038. height: math.unit(1.67, "meters"),
  26039. weight: math.unit(140, "lb"),
  26040. name: "Front",
  26041. image: {
  26042. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26043. extra: 438 / 410,
  26044. bottom: 0.75 / 439
  26045. }
  26046. },
  26047. },
  26048. [
  26049. {
  26050. name: "Shrunken",
  26051. height: math.unit(7.6, "cm")
  26052. },
  26053. {
  26054. name: "Human Scale",
  26055. height: math.unit(1.67, "meters")
  26056. },
  26057. {
  26058. name: "Wolxi Scale",
  26059. height: math.unit(36.7, "meters"),
  26060. default: true
  26061. },
  26062. ]
  26063. ))
  26064. characterMakers.push(() => makeCharacter(
  26065. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26066. {
  26067. front: {
  26068. height: math.unit(1.73, "meters"),
  26069. weight: math.unit(240, "lb"),
  26070. name: "Front",
  26071. image: {
  26072. source: "./media/characters/izue-two-mothers/front.svg",
  26073. extra: 469 / 437,
  26074. bottom: 1.24 / 470.6
  26075. }
  26076. },
  26077. },
  26078. [
  26079. {
  26080. name: "Shrunken",
  26081. height: math.unit(7.86, "cm")
  26082. },
  26083. {
  26084. name: "Human Scale",
  26085. height: math.unit(1.73, "meters")
  26086. },
  26087. {
  26088. name: "Wolxi Scale",
  26089. height: math.unit(38, "meters"),
  26090. default: true
  26091. },
  26092. ]
  26093. ))
  26094. characterMakers.push(() => makeCharacter(
  26095. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26096. {
  26097. front: {
  26098. height: math.unit(1.55, "meters"),
  26099. weight: math.unit(120, "lb"),
  26100. name: "Front",
  26101. image: {
  26102. source: "./media/characters/teeku-love-shack/front.svg",
  26103. extra: 387 / 362,
  26104. bottom: 1.51 / 388
  26105. }
  26106. },
  26107. },
  26108. [
  26109. {
  26110. name: "Shrunken",
  26111. height: math.unit(7, "cm")
  26112. },
  26113. {
  26114. name: "Human Scale",
  26115. height: math.unit(1.55, "meters")
  26116. },
  26117. {
  26118. name: "Wolxi Scale",
  26119. height: math.unit(34.1, "meters"),
  26120. default: true
  26121. },
  26122. ]
  26123. ))
  26124. characterMakers.push(() => makeCharacter(
  26125. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26126. {
  26127. front: {
  26128. height: math.unit(1.83, "meters"),
  26129. weight: math.unit(135, "lb"),
  26130. name: "Front",
  26131. image: {
  26132. source: "./media/characters/dejma-the-red/front.svg",
  26133. extra: 480 / 458,
  26134. bottom: 1.8 / 482
  26135. }
  26136. },
  26137. },
  26138. [
  26139. {
  26140. name: "Shrunken",
  26141. height: math.unit(8.3, "cm")
  26142. },
  26143. {
  26144. name: "Human Scale",
  26145. height: math.unit(1.83, "meters")
  26146. },
  26147. {
  26148. name: "Wolxi Scale",
  26149. height: math.unit(40, "meters"),
  26150. default: true
  26151. },
  26152. ]
  26153. ))
  26154. characterMakers.push(() => makeCharacter(
  26155. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26156. {
  26157. front: {
  26158. height: math.unit(1.78, "meters"),
  26159. weight: math.unit(65, "kg"),
  26160. name: "Front",
  26161. image: {
  26162. source: "./media/characters/aki/front.svg",
  26163. extra: 452 / 415
  26164. }
  26165. },
  26166. frontNsfw: {
  26167. height: math.unit(1.78, "meters"),
  26168. weight: math.unit(65, "kg"),
  26169. name: "Front (NSFW)",
  26170. image: {
  26171. source: "./media/characters/aki/front-nsfw.svg",
  26172. extra: 452 / 415
  26173. }
  26174. },
  26175. back: {
  26176. height: math.unit(1.78, "meters"),
  26177. weight: math.unit(65, "kg"),
  26178. name: "Back",
  26179. image: {
  26180. source: "./media/characters/aki/back.svg",
  26181. extra: 452 / 415
  26182. }
  26183. },
  26184. rump: {
  26185. height: math.unit(2.05, "feet"),
  26186. name: "Rump",
  26187. image: {
  26188. source: "./media/characters/aki/rump.svg"
  26189. }
  26190. },
  26191. dick: {
  26192. height: math.unit(0.95, "feet"),
  26193. name: "Dick",
  26194. image: {
  26195. source: "./media/characters/aki/dick.svg"
  26196. }
  26197. },
  26198. },
  26199. [
  26200. {
  26201. name: "Micro",
  26202. height: math.unit(15, "cm")
  26203. },
  26204. {
  26205. name: "Normal",
  26206. height: math.unit(178, "cm"),
  26207. default: true
  26208. },
  26209. {
  26210. name: "Macro",
  26211. height: math.unit(214, "m")
  26212. },
  26213. {
  26214. name: "Macro+",
  26215. height: math.unit(534, "m")
  26216. },
  26217. ]
  26218. ))
  26219. characterMakers.push(() => makeCharacter(
  26220. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26221. {
  26222. front: {
  26223. height: math.unit(5 + 5 / 12, "feet"),
  26224. weight: math.unit(120, "lb"),
  26225. name: "Front",
  26226. image: {
  26227. source: "./media/characters/ari/front.svg",
  26228. extra: 1550/1471,
  26229. bottom: 39/1589
  26230. }
  26231. },
  26232. },
  26233. [
  26234. {
  26235. name: "Normal",
  26236. height: math.unit(5 + 5 / 12, "feet")
  26237. },
  26238. {
  26239. name: "Macro",
  26240. height: math.unit(100, "feet"),
  26241. default: true
  26242. },
  26243. {
  26244. name: "Megamacro",
  26245. height: math.unit(100, "miles")
  26246. },
  26247. {
  26248. name: "Gigamacro",
  26249. height: math.unit(80000, "miles")
  26250. },
  26251. ]
  26252. ))
  26253. characterMakers.push(() => makeCharacter(
  26254. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26255. {
  26256. side: {
  26257. height: math.unit(9, "feet"),
  26258. weight: math.unit(400, "kg"),
  26259. name: "Side",
  26260. image: {
  26261. source: "./media/characters/bolt/side.svg",
  26262. extra: 1126 / 896,
  26263. bottom: 60 / 1187.3,
  26264. }
  26265. },
  26266. },
  26267. [
  26268. {
  26269. name: "Micro",
  26270. height: math.unit(5, "inches")
  26271. },
  26272. {
  26273. name: "Normal",
  26274. height: math.unit(9, "feet"),
  26275. default: true
  26276. },
  26277. {
  26278. name: "Macro",
  26279. height: math.unit(700, "feet")
  26280. },
  26281. {
  26282. name: "Max Size",
  26283. height: math.unit(1.52e22, "yottameters")
  26284. },
  26285. ]
  26286. ))
  26287. characterMakers.push(() => makeCharacter(
  26288. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26289. {
  26290. front: {
  26291. height: math.unit(4.3, "meters"),
  26292. weight: math.unit(3, "tons"),
  26293. name: "Front",
  26294. image: {
  26295. source: "./media/characters/draekon-sylviar/front.svg",
  26296. extra: 2072/1512,
  26297. bottom: 74/2146
  26298. }
  26299. },
  26300. back: {
  26301. height: math.unit(4.3, "meters"),
  26302. weight: math.unit(3, "tons"),
  26303. name: "Back",
  26304. image: {
  26305. source: "./media/characters/draekon-sylviar/back.svg",
  26306. extra: 1639/1483,
  26307. bottom: 41/1680
  26308. }
  26309. },
  26310. feral: {
  26311. height: math.unit(1.15, "meters"),
  26312. weight: math.unit(3, "tons"),
  26313. name: "Feral",
  26314. image: {
  26315. source: "./media/characters/draekon-sylviar/feral.svg",
  26316. extra: 1033/395,
  26317. bottom: 130/1163
  26318. }
  26319. },
  26320. maw: {
  26321. height: math.unit(1.3, "meters"),
  26322. name: "Maw",
  26323. image: {
  26324. source: "./media/characters/draekon-sylviar/maw.svg"
  26325. }
  26326. },
  26327. mawSeparated: {
  26328. height: math.unit(1.53, "meters"),
  26329. name: "Separated Maw",
  26330. image: {
  26331. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26332. }
  26333. },
  26334. tail: {
  26335. height: math.unit(1.15, "meters"),
  26336. name: "Tail",
  26337. image: {
  26338. source: "./media/characters/draekon-sylviar/tail.svg"
  26339. }
  26340. },
  26341. tailDick: {
  26342. height: math.unit(1.15, "meters"),
  26343. name: "Tail (Dick)",
  26344. image: {
  26345. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26346. }
  26347. },
  26348. tailDickSeparated: {
  26349. height: math.unit(1.19, "meters"),
  26350. name: "Tail (Separated Dick)",
  26351. image: {
  26352. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26353. }
  26354. },
  26355. slit: {
  26356. height: math.unit(1, "meters"),
  26357. name: "Slit",
  26358. image: {
  26359. source: "./media/characters/draekon-sylviar/slit.svg"
  26360. }
  26361. },
  26362. dick: {
  26363. height: math.unit(1.15, "meters"),
  26364. name: "Dick",
  26365. image: {
  26366. source: "./media/characters/draekon-sylviar/dick.svg"
  26367. }
  26368. },
  26369. dickSeparated: {
  26370. height: math.unit(1.1, "meters"),
  26371. name: "Separated Dick",
  26372. image: {
  26373. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26374. }
  26375. },
  26376. sheath: {
  26377. height: math.unit(1.15, "meters"),
  26378. name: "Sheath",
  26379. image: {
  26380. source: "./media/characters/draekon-sylviar/sheath.svg"
  26381. }
  26382. },
  26383. },
  26384. [
  26385. {
  26386. name: "Small",
  26387. height: math.unit(4.53 / 2, "meters"),
  26388. default: true
  26389. },
  26390. {
  26391. name: "Normal",
  26392. height: math.unit(4.53, "meters"),
  26393. default: true
  26394. },
  26395. {
  26396. name: "Large",
  26397. height: math.unit(4.53 * 2, "meters"),
  26398. },
  26399. ]
  26400. ))
  26401. characterMakers.push(() => makeCharacter(
  26402. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26403. {
  26404. front: {
  26405. height: math.unit(6 + 2 / 12, "feet"),
  26406. weight: math.unit(180, "lb"),
  26407. name: "Front",
  26408. image: {
  26409. source: "./media/characters/brawler/front.svg",
  26410. extra: 3301 / 3027,
  26411. bottom: 138 / 3439
  26412. }
  26413. },
  26414. },
  26415. [
  26416. {
  26417. name: "Normal",
  26418. height: math.unit(6 + 2 / 12, "feet"),
  26419. default: true
  26420. },
  26421. ]
  26422. ))
  26423. characterMakers.push(() => makeCharacter(
  26424. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26425. {
  26426. front: {
  26427. height: math.unit(11, "feet"),
  26428. weight: math.unit(1000, "lb"),
  26429. name: "Front",
  26430. image: {
  26431. source: "./media/characters/alex/front.svg",
  26432. bottom: 44.5 / 620
  26433. }
  26434. },
  26435. },
  26436. [
  26437. {
  26438. name: "Micro",
  26439. height: math.unit(5, "inches")
  26440. },
  26441. {
  26442. name: "Normal",
  26443. height: math.unit(11, "feet"),
  26444. default: true
  26445. },
  26446. {
  26447. name: "Macro",
  26448. height: math.unit(9.5e9, "feet")
  26449. },
  26450. {
  26451. name: "Max Size",
  26452. height: math.unit(1.4e283, "yottameters")
  26453. },
  26454. ]
  26455. ))
  26456. characterMakers.push(() => makeCharacter(
  26457. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26458. {
  26459. female: {
  26460. height: math.unit(29.9, "m"),
  26461. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26462. name: "Female",
  26463. image: {
  26464. source: "./media/characters/zenari/female.svg",
  26465. extra: 3281.6 / 3217,
  26466. bottom: 72.2 / 3353
  26467. }
  26468. },
  26469. male: {
  26470. height: math.unit(27.7, "m"),
  26471. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26472. name: "Male",
  26473. image: {
  26474. source: "./media/characters/zenari/male.svg",
  26475. extra: 3008 / 2991,
  26476. bottom: 54.6 / 3069
  26477. }
  26478. },
  26479. },
  26480. [
  26481. {
  26482. name: "Macro",
  26483. height: math.unit(29.7, "meters"),
  26484. default: true
  26485. },
  26486. ]
  26487. ))
  26488. characterMakers.push(() => makeCharacter(
  26489. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26490. {
  26491. female: {
  26492. height: math.unit(23.8, "m"),
  26493. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26494. name: "Female",
  26495. image: {
  26496. source: "./media/characters/mactarian/female.svg",
  26497. extra: 2662 / 2569,
  26498. bottom: 73 / 2736
  26499. }
  26500. },
  26501. male: {
  26502. height: math.unit(23.8, "m"),
  26503. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26504. name: "Male",
  26505. image: {
  26506. source: "./media/characters/mactarian/male.svg",
  26507. extra: 2673 / 2600,
  26508. bottom: 76 / 2750
  26509. }
  26510. },
  26511. },
  26512. [
  26513. {
  26514. name: "Macro",
  26515. height: math.unit(23.8, "meters"),
  26516. default: true
  26517. },
  26518. ]
  26519. ))
  26520. characterMakers.push(() => makeCharacter(
  26521. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26522. {
  26523. female: {
  26524. height: math.unit(19.3, "m"),
  26525. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26526. name: "Female",
  26527. image: {
  26528. source: "./media/characters/umok/female.svg",
  26529. extra: 2186 / 2078,
  26530. bottom: 87 / 2277
  26531. }
  26532. },
  26533. male: {
  26534. height: math.unit(19.5, "m"),
  26535. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26536. name: "Male",
  26537. image: {
  26538. source: "./media/characters/umok/male.svg",
  26539. extra: 2233 / 2140,
  26540. bottom: 24.4 / 2258
  26541. }
  26542. },
  26543. },
  26544. [
  26545. {
  26546. name: "Macro",
  26547. height: math.unit(19.3, "meters"),
  26548. default: true
  26549. },
  26550. ]
  26551. ))
  26552. characterMakers.push(() => makeCharacter(
  26553. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26554. {
  26555. female: {
  26556. height: math.unit(26.15, "m"),
  26557. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26558. name: "Female",
  26559. image: {
  26560. source: "./media/characters/joraxian/female.svg",
  26561. extra: 2912 / 2824,
  26562. bottom: 36 / 2956
  26563. }
  26564. },
  26565. male: {
  26566. height: math.unit(25.4, "m"),
  26567. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26568. name: "Male",
  26569. image: {
  26570. source: "./media/characters/joraxian/male.svg",
  26571. extra: 2877 / 2721,
  26572. bottom: 82 / 2967
  26573. }
  26574. },
  26575. },
  26576. [
  26577. {
  26578. name: "Macro",
  26579. height: math.unit(26.15, "meters"),
  26580. default: true
  26581. },
  26582. ]
  26583. ))
  26584. characterMakers.push(() => makeCharacter(
  26585. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26586. {
  26587. female: {
  26588. height: math.unit(21.6, "m"),
  26589. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26590. name: "Female",
  26591. image: {
  26592. source: "./media/characters/sthara/female.svg",
  26593. extra: 2516 / 2347,
  26594. bottom: 21.5 / 2537
  26595. }
  26596. },
  26597. male: {
  26598. height: math.unit(24, "m"),
  26599. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26600. name: "Male",
  26601. image: {
  26602. source: "./media/characters/sthara/male.svg",
  26603. extra: 2732 / 2607,
  26604. bottom: 23 / 2732
  26605. }
  26606. },
  26607. },
  26608. [
  26609. {
  26610. name: "Macro",
  26611. height: math.unit(21.6, "meters"),
  26612. default: true
  26613. },
  26614. ]
  26615. ))
  26616. characterMakers.push(() => makeCharacter(
  26617. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26618. {
  26619. front: {
  26620. height: math.unit(6 + 4 / 12, "feet"),
  26621. weight: math.unit(175, "lb"),
  26622. name: "Front",
  26623. image: {
  26624. source: "./media/characters/luka-bryzant/front.svg",
  26625. extra: 311 / 289,
  26626. bottom: 4 / 315
  26627. }
  26628. },
  26629. back: {
  26630. height: math.unit(6 + 4 / 12, "feet"),
  26631. weight: math.unit(175, "lb"),
  26632. name: "Back",
  26633. image: {
  26634. source: "./media/characters/luka-bryzant/back.svg",
  26635. extra: 311 / 289,
  26636. bottom: 3.8 / 313.7
  26637. }
  26638. },
  26639. },
  26640. [
  26641. {
  26642. name: "Micro",
  26643. height: math.unit(10, "inches")
  26644. },
  26645. {
  26646. name: "Normal",
  26647. height: math.unit(6 + 4 / 12, "feet"),
  26648. default: true
  26649. },
  26650. {
  26651. name: "Large",
  26652. height: math.unit(12, "feet")
  26653. },
  26654. ]
  26655. ))
  26656. characterMakers.push(() => makeCharacter(
  26657. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26658. {
  26659. front: {
  26660. height: math.unit(5 + 7 / 12, "feet"),
  26661. weight: math.unit(185, "lb"),
  26662. name: "Front",
  26663. image: {
  26664. source: "./media/characters/aman-aquila/front.svg",
  26665. extra: 1013 / 976,
  26666. bottom: 45.6 / 1057
  26667. }
  26668. },
  26669. side: {
  26670. height: math.unit(5 + 7 / 12, "feet"),
  26671. weight: math.unit(185, "lb"),
  26672. name: "Side",
  26673. image: {
  26674. source: "./media/characters/aman-aquila/side.svg",
  26675. extra: 1054 / 1011,
  26676. bottom: 15 / 1070
  26677. }
  26678. },
  26679. back: {
  26680. height: math.unit(5 + 7 / 12, "feet"),
  26681. weight: math.unit(185, "lb"),
  26682. name: "Back",
  26683. image: {
  26684. source: "./media/characters/aman-aquila/back.svg",
  26685. extra: 1026 / 970,
  26686. bottom: 12 / 1039
  26687. }
  26688. },
  26689. head: {
  26690. height: math.unit(1.211, "feet"),
  26691. name: "Head",
  26692. image: {
  26693. source: "./media/characters/aman-aquila/head.svg",
  26694. }
  26695. },
  26696. },
  26697. [
  26698. {
  26699. name: "Minimicro",
  26700. height: math.unit(0.057, "inches")
  26701. },
  26702. {
  26703. name: "Micro",
  26704. height: math.unit(7, "inches")
  26705. },
  26706. {
  26707. name: "Mini",
  26708. height: math.unit(3 + 7 / 12, "feet")
  26709. },
  26710. {
  26711. name: "Normal",
  26712. height: math.unit(5 + 7 / 12, "feet"),
  26713. default: true
  26714. },
  26715. {
  26716. name: "Macro",
  26717. height: math.unit(157 + 7 / 12, "feet")
  26718. },
  26719. {
  26720. name: "Megamacro",
  26721. height: math.unit(1557 + 7 / 12, "feet")
  26722. },
  26723. {
  26724. name: "Gigamacro",
  26725. height: math.unit(15557 + 7 / 12, "feet")
  26726. },
  26727. ]
  26728. ))
  26729. characterMakers.push(() => makeCharacter(
  26730. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26731. {
  26732. front: {
  26733. height: math.unit(3 + 2 / 12, "inches"),
  26734. weight: math.unit(0.3, "ounces"),
  26735. name: "Front",
  26736. image: {
  26737. source: "./media/characters/hiphae/front.svg",
  26738. extra: 1931 / 1683,
  26739. bottom: 24 / 1955
  26740. }
  26741. },
  26742. },
  26743. [
  26744. {
  26745. name: "Normal",
  26746. height: math.unit(3 + 1 / 2, "inches"),
  26747. default: true
  26748. },
  26749. ]
  26750. ))
  26751. characterMakers.push(() => makeCharacter(
  26752. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26753. {
  26754. front: {
  26755. height: math.unit(5 + 10 / 12, "feet"),
  26756. weight: math.unit(165, "lb"),
  26757. name: "Front",
  26758. image: {
  26759. source: "./media/characters/nicky/front.svg",
  26760. extra: 3144 / 2886,
  26761. bottom: 45.6 / 3192
  26762. }
  26763. },
  26764. back: {
  26765. height: math.unit(5 + 10 / 12, "feet"),
  26766. weight: math.unit(165, "lb"),
  26767. name: "Back",
  26768. image: {
  26769. source: "./media/characters/nicky/back.svg",
  26770. extra: 3055 / 2804,
  26771. bottom: 28.4 / 3087
  26772. }
  26773. },
  26774. frontclothed: {
  26775. height: math.unit(5 + 10 / 12, "feet"),
  26776. weight: math.unit(165, "lb"),
  26777. name: "Front-clothed",
  26778. image: {
  26779. source: "./media/characters/nicky/front-clothed.svg",
  26780. extra: 3184.9 / 2926.9,
  26781. bottom: 86.5 / 3239.9
  26782. }
  26783. },
  26784. foot: {
  26785. height: math.unit(1.16, "feet"),
  26786. name: "Foot",
  26787. image: {
  26788. source: "./media/characters/nicky/foot.svg"
  26789. }
  26790. },
  26791. feet: {
  26792. height: math.unit(1.34, "feet"),
  26793. name: "Feet",
  26794. image: {
  26795. source: "./media/characters/nicky/feet.svg"
  26796. }
  26797. },
  26798. maw: {
  26799. height: math.unit(0.9, "feet"),
  26800. name: "Maw",
  26801. image: {
  26802. source: "./media/characters/nicky/maw.svg"
  26803. }
  26804. },
  26805. },
  26806. [
  26807. {
  26808. name: "Normal",
  26809. height: math.unit(5 + 10 / 12, "feet"),
  26810. default: true
  26811. },
  26812. {
  26813. name: "Macro",
  26814. height: math.unit(60, "feet")
  26815. },
  26816. {
  26817. name: "Megamacro",
  26818. height: math.unit(1, "mile")
  26819. },
  26820. ]
  26821. ))
  26822. characterMakers.push(() => makeCharacter(
  26823. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26824. {
  26825. side: {
  26826. height: math.unit(10, "feet"),
  26827. weight: math.unit(600, "lb"),
  26828. name: "Side",
  26829. image: {
  26830. source: "./media/characters/blair/side.svg",
  26831. bottom: 16.6 / 475,
  26832. extra: 458 / 431
  26833. }
  26834. },
  26835. },
  26836. [
  26837. {
  26838. name: "Micro",
  26839. height: math.unit(8, "inches")
  26840. },
  26841. {
  26842. name: "Normal",
  26843. height: math.unit(10, "feet"),
  26844. default: true
  26845. },
  26846. {
  26847. name: "Macro",
  26848. height: math.unit(180, "feet")
  26849. },
  26850. ]
  26851. ))
  26852. characterMakers.push(() => makeCharacter(
  26853. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26854. {
  26855. front: {
  26856. height: math.unit(5 + 4 / 12, "feet"),
  26857. weight: math.unit(125, "lb"),
  26858. name: "Front",
  26859. image: {
  26860. source: "./media/characters/fisher/front.svg",
  26861. extra: 444 / 390,
  26862. bottom: 2 / 444.8
  26863. }
  26864. },
  26865. },
  26866. [
  26867. {
  26868. name: "Micro",
  26869. height: math.unit(4, "inches")
  26870. },
  26871. {
  26872. name: "Normal",
  26873. height: math.unit(5 + 4 / 12, "feet"),
  26874. default: true
  26875. },
  26876. {
  26877. name: "Macro",
  26878. height: math.unit(100, "feet")
  26879. },
  26880. ]
  26881. ))
  26882. characterMakers.push(() => makeCharacter(
  26883. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26884. {
  26885. front: {
  26886. height: math.unit(6.71, "feet"),
  26887. weight: math.unit(200, "lb"),
  26888. preyCapacity: math.unit(1000000, "people"),
  26889. name: "Front",
  26890. image: {
  26891. source: "./media/characters/gliss/front.svg",
  26892. extra: 2347 / 2231,
  26893. bottom: 113 / 2462
  26894. }
  26895. },
  26896. hammerspaceSize: {
  26897. height: math.unit(6.71 * 717, "feet"),
  26898. weight: math.unit(200, "lb"),
  26899. preyCapacity: math.unit(1000000, "people"),
  26900. name: "Hammerspace Size",
  26901. image: {
  26902. source: "./media/characters/gliss/front.svg",
  26903. extra: 2347 / 2231,
  26904. bottom: 113 / 2462
  26905. }
  26906. },
  26907. },
  26908. [
  26909. {
  26910. name: "Normal",
  26911. height: math.unit(6.71, "feet"),
  26912. default: true
  26913. },
  26914. ]
  26915. ))
  26916. characterMakers.push(() => makeCharacter(
  26917. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26918. {
  26919. side: {
  26920. height: math.unit(1.44, "m"),
  26921. weight: math.unit(80, "kg"),
  26922. name: "Side",
  26923. image: {
  26924. source: "./media/characters/dune-anderson/side.svg",
  26925. bottom: 49 / 1426
  26926. }
  26927. },
  26928. },
  26929. [
  26930. {
  26931. name: "Wolf-sized",
  26932. height: math.unit(1.44, "meters")
  26933. },
  26934. {
  26935. name: "Normal",
  26936. height: math.unit(5.05, "meters"),
  26937. default: true
  26938. },
  26939. {
  26940. name: "Big",
  26941. height: math.unit(14.4, "meters")
  26942. },
  26943. {
  26944. name: "Huge",
  26945. height: math.unit(144, "meters")
  26946. },
  26947. ]
  26948. ))
  26949. characterMakers.push(() => makeCharacter(
  26950. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26951. {
  26952. front: {
  26953. height: math.unit(7, "feet"),
  26954. weight: math.unit(425, "lb"),
  26955. name: "Front",
  26956. image: {
  26957. source: "./media/characters/hind/front.svg",
  26958. extra: 2091 / 1860,
  26959. bottom: 129 / 2220
  26960. }
  26961. },
  26962. back: {
  26963. height: math.unit(7, "feet"),
  26964. weight: math.unit(425, "lb"),
  26965. name: "Back",
  26966. image: {
  26967. source: "./media/characters/hind/back.svg",
  26968. extra: 2091 / 1860,
  26969. bottom: 24.6 / 2309
  26970. }
  26971. },
  26972. tail: {
  26973. height: math.unit(2.8, "feet"),
  26974. name: "Tail",
  26975. image: {
  26976. source: "./media/characters/hind/tail.svg"
  26977. }
  26978. },
  26979. head: {
  26980. height: math.unit(2.55, "feet"),
  26981. name: "Head",
  26982. image: {
  26983. source: "./media/characters/hind/head.svg"
  26984. }
  26985. },
  26986. },
  26987. [
  26988. {
  26989. name: "XS",
  26990. height: math.unit(0.7, "feet")
  26991. },
  26992. {
  26993. name: "Normal",
  26994. height: math.unit(7, "feet"),
  26995. default: true
  26996. },
  26997. {
  26998. name: "XL",
  26999. height: math.unit(70, "feet")
  27000. },
  27001. ]
  27002. ))
  27003. characterMakers.push(() => makeCharacter(
  27004. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27005. {
  27006. front: {
  27007. height: math.unit(2.1, "meters"),
  27008. weight: math.unit(150, "lb"),
  27009. name: "Front",
  27010. image: {
  27011. source: "./media/characters/tharquench-sizestealer/front.svg",
  27012. extra: 1605/1470,
  27013. bottom: 36/1641
  27014. }
  27015. },
  27016. frontAlt: {
  27017. height: math.unit(2.1, "meters"),
  27018. weight: math.unit(150, "lb"),
  27019. name: "Front (Alt)",
  27020. image: {
  27021. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27022. extra: 2318 / 2063,
  27023. bottom: 93.4 / 2410
  27024. }
  27025. },
  27026. },
  27027. [
  27028. {
  27029. name: "Nano",
  27030. height: math.unit(1, "mm")
  27031. },
  27032. {
  27033. name: "Micro",
  27034. height: math.unit(1, "cm")
  27035. },
  27036. {
  27037. name: "Normal",
  27038. height: math.unit(2.1, "meters"),
  27039. default: true
  27040. },
  27041. ]
  27042. ))
  27043. characterMakers.push(() => makeCharacter(
  27044. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27045. {
  27046. front: {
  27047. height: math.unit(7 + 5 / 12, "feet"),
  27048. weight: math.unit(357, "lb"),
  27049. name: "Front",
  27050. image: {
  27051. source: "./media/characters/solex-draconov/front.svg",
  27052. extra: 1993 / 1865,
  27053. bottom: 117 / 2111
  27054. }
  27055. },
  27056. },
  27057. [
  27058. {
  27059. name: "Natural Height",
  27060. height: math.unit(7 + 5 / 12, "feet"),
  27061. default: true
  27062. },
  27063. {
  27064. name: "Macro",
  27065. height: math.unit(350, "feet")
  27066. },
  27067. {
  27068. name: "Macro+",
  27069. height: math.unit(1000, "feet")
  27070. },
  27071. {
  27072. name: "Megamacro",
  27073. height: math.unit(20, "km")
  27074. },
  27075. {
  27076. name: "Megamacro+",
  27077. height: math.unit(1000, "km")
  27078. },
  27079. {
  27080. name: "Gigamacro",
  27081. height: math.unit(2.5, "Gm")
  27082. },
  27083. {
  27084. name: "Teramacro",
  27085. height: math.unit(15, "Tm")
  27086. },
  27087. {
  27088. name: "Galactic",
  27089. height: math.unit(30, "Zm")
  27090. },
  27091. {
  27092. name: "Universal",
  27093. height: math.unit(21000, "Ym")
  27094. },
  27095. {
  27096. name: "Omniversal",
  27097. height: math.unit(9.861e50, "Ym")
  27098. },
  27099. {
  27100. name: "Existential",
  27101. height: math.unit(1e300, "meters")
  27102. },
  27103. ]
  27104. ))
  27105. characterMakers.push(() => makeCharacter(
  27106. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27107. {
  27108. side: {
  27109. height: math.unit(25, "feet"),
  27110. weight: math.unit(90000, "lb"),
  27111. name: "Side",
  27112. image: {
  27113. source: "./media/characters/mandarax/side.svg",
  27114. extra: 614 / 332,
  27115. bottom: 55 / 630
  27116. }
  27117. },
  27118. lounging: {
  27119. height: math.unit(15.4, "feet"),
  27120. weight: math.unit(90000, "lb"),
  27121. name: "Lounging",
  27122. image: {
  27123. source: "./media/characters/mandarax/lounging.svg",
  27124. extra: 817/609,
  27125. bottom: 685/1502
  27126. }
  27127. },
  27128. head: {
  27129. height: math.unit(11.4, "feet"),
  27130. name: "Head",
  27131. image: {
  27132. source: "./media/characters/mandarax/head.svg"
  27133. }
  27134. },
  27135. belly: {
  27136. height: math.unit(33, "feet"),
  27137. name: "Belly",
  27138. preyCapacity: math.unit(500, "people"),
  27139. image: {
  27140. source: "./media/characters/mandarax/belly.svg"
  27141. }
  27142. },
  27143. dick: {
  27144. height: math.unit(8.46, "feet"),
  27145. name: "Dick",
  27146. image: {
  27147. source: "./media/characters/mandarax/dick.svg"
  27148. }
  27149. },
  27150. top: {
  27151. height: math.unit(28, "meters"),
  27152. name: "Top",
  27153. image: {
  27154. source: "./media/characters/mandarax/top.svg"
  27155. }
  27156. },
  27157. },
  27158. [
  27159. {
  27160. name: "Normal",
  27161. height: math.unit(25, "feet"),
  27162. default: true
  27163. },
  27164. ]
  27165. ))
  27166. characterMakers.push(() => makeCharacter(
  27167. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27168. {
  27169. front: {
  27170. height: math.unit(5, "feet"),
  27171. weight: math.unit(90, "lb"),
  27172. name: "Front",
  27173. image: {
  27174. source: "./media/characters/pixil/front.svg",
  27175. extra: 2000 / 1618,
  27176. bottom: 12.3 / 2011
  27177. }
  27178. },
  27179. },
  27180. [
  27181. {
  27182. name: "Normal",
  27183. height: math.unit(5, "feet"),
  27184. default: true
  27185. },
  27186. {
  27187. name: "Megamacro",
  27188. height: math.unit(10, "miles"),
  27189. },
  27190. ]
  27191. ))
  27192. characterMakers.push(() => makeCharacter(
  27193. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27194. {
  27195. front: {
  27196. height: math.unit(7 + 2 / 12, "feet"),
  27197. weight: math.unit(200, "lb"),
  27198. name: "Front",
  27199. image: {
  27200. source: "./media/characters/angel/front.svg",
  27201. extra: 1830 / 1737,
  27202. bottom: 22.6 / 1854,
  27203. }
  27204. },
  27205. },
  27206. [
  27207. {
  27208. name: "Normal",
  27209. height: math.unit(7 + 2 / 12, "feet"),
  27210. default: true
  27211. },
  27212. {
  27213. name: "Macro",
  27214. height: math.unit(1000, "feet")
  27215. },
  27216. {
  27217. name: "Megamacro",
  27218. height: math.unit(2, "miles")
  27219. },
  27220. {
  27221. name: "Gigamacro",
  27222. height: math.unit(20, "earths")
  27223. },
  27224. ]
  27225. ))
  27226. characterMakers.push(() => makeCharacter(
  27227. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27228. {
  27229. front: {
  27230. height: math.unit(5, "feet"),
  27231. weight: math.unit(180, "lb"),
  27232. name: "Front",
  27233. image: {
  27234. source: "./media/characters/mekana/front.svg",
  27235. extra: 1671 / 1605,
  27236. bottom: 3.5 / 1691
  27237. }
  27238. },
  27239. side: {
  27240. height: math.unit(5, "feet"),
  27241. weight: math.unit(180, "lb"),
  27242. name: "Side",
  27243. image: {
  27244. source: "./media/characters/mekana/side.svg",
  27245. extra: 1671 / 1605,
  27246. bottom: 3.5 / 1691
  27247. }
  27248. },
  27249. back: {
  27250. height: math.unit(5, "feet"),
  27251. weight: math.unit(180, "lb"),
  27252. name: "Back",
  27253. image: {
  27254. source: "./media/characters/mekana/back.svg",
  27255. extra: 1671 / 1605,
  27256. bottom: 3.5 / 1691
  27257. }
  27258. },
  27259. },
  27260. [
  27261. {
  27262. name: "Normal",
  27263. height: math.unit(5, "feet"),
  27264. default: true
  27265. },
  27266. ]
  27267. ))
  27268. characterMakers.push(() => makeCharacter(
  27269. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27270. {
  27271. front: {
  27272. height: math.unit(4 + 6 / 12, "feet"),
  27273. weight: math.unit(80, "lb"),
  27274. name: "Front",
  27275. image: {
  27276. source: "./media/characters/pixie/front.svg",
  27277. extra: 1924 / 1825,
  27278. bottom: 22.4 / 1946
  27279. }
  27280. },
  27281. },
  27282. [
  27283. {
  27284. name: "Normal",
  27285. height: math.unit(4 + 6 / 12, "feet"),
  27286. default: true
  27287. },
  27288. {
  27289. name: "Macro",
  27290. height: math.unit(40, "feet")
  27291. },
  27292. ]
  27293. ))
  27294. characterMakers.push(() => makeCharacter(
  27295. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27296. {
  27297. front: {
  27298. height: math.unit(2.1, "meters"),
  27299. weight: math.unit(200, "lb"),
  27300. name: "Front",
  27301. image: {
  27302. source: "./media/characters/the-lascivious/front.svg",
  27303. extra: 1 / 0.893,
  27304. bottom: 3.5 / 573.7
  27305. }
  27306. },
  27307. },
  27308. [
  27309. {
  27310. name: "Human Scale",
  27311. height: math.unit(2.1, "meters")
  27312. },
  27313. {
  27314. name: "Wolxi Scale",
  27315. height: math.unit(46.2, "m"),
  27316. default: true
  27317. },
  27318. {
  27319. name: "Boinker of Buildings",
  27320. height: math.unit(10, "km")
  27321. },
  27322. {
  27323. name: "Shagger of Skyscrapers",
  27324. height: math.unit(40, "km")
  27325. },
  27326. {
  27327. name: "Banger of Boroughs",
  27328. height: math.unit(4000, "km")
  27329. },
  27330. {
  27331. name: "Screwer of States",
  27332. height: math.unit(100000, "km")
  27333. },
  27334. {
  27335. name: "Pounder of Planets",
  27336. height: math.unit(2000000, "km")
  27337. },
  27338. ]
  27339. ))
  27340. characterMakers.push(() => makeCharacter(
  27341. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27342. {
  27343. front: {
  27344. height: math.unit(6, "feet"),
  27345. weight: math.unit(150, "lb"),
  27346. name: "Front",
  27347. image: {
  27348. source: "./media/characters/aj/front.svg",
  27349. extra: 2039 / 1562,
  27350. bottom: 40 / 2079
  27351. }
  27352. },
  27353. },
  27354. [
  27355. {
  27356. name: "Normal",
  27357. height: math.unit(11 + 6 / 12, "feet"),
  27358. default: true
  27359. },
  27360. {
  27361. name: "Megamacro",
  27362. height: math.unit(60, "megameters")
  27363. },
  27364. ]
  27365. ))
  27366. characterMakers.push(() => makeCharacter(
  27367. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27368. {
  27369. side: {
  27370. height: math.unit(31 + 8 / 12, "feet"),
  27371. weight: math.unit(75000, "kg"),
  27372. name: "Side",
  27373. image: {
  27374. source: "./media/characters/koros/side.svg",
  27375. extra: 1442 / 1297,
  27376. bottom: 122.7 / 1562
  27377. }
  27378. },
  27379. dicksKingsCrown: {
  27380. height: math.unit(6, "feet"),
  27381. name: "Dicks (King's Crown)",
  27382. image: {
  27383. source: "./media/characters/koros/dicks-kings-crown.svg"
  27384. }
  27385. },
  27386. dicksTailSet: {
  27387. height: math.unit(3, "feet"),
  27388. name: "Dicks (Tail Set)",
  27389. image: {
  27390. source: "./media/characters/koros/dicks-tail-set.svg"
  27391. }
  27392. },
  27393. dickCumming: {
  27394. height: math.unit(7.98, "feet"),
  27395. name: "Dick (Cumming)",
  27396. image: {
  27397. source: "./media/characters/koros/dick-cumming.svg"
  27398. }
  27399. },
  27400. dicksBack: {
  27401. height: math.unit(5.9, "feet"),
  27402. name: "Dicks (Back)",
  27403. image: {
  27404. source: "./media/characters/koros/dicks-back.svg"
  27405. }
  27406. },
  27407. dicksFront: {
  27408. height: math.unit(3.72, "feet"),
  27409. name: "Dicks (Front)",
  27410. image: {
  27411. source: "./media/characters/koros/dicks-front.svg"
  27412. }
  27413. },
  27414. dicksPeeking: {
  27415. height: math.unit(3.0, "feet"),
  27416. name: "Dicks (Peeking)",
  27417. image: {
  27418. source: "./media/characters/koros/dicks-peeking.svg"
  27419. }
  27420. },
  27421. eye: {
  27422. height: math.unit(1.7, "feet"),
  27423. name: "Eye",
  27424. image: {
  27425. source: "./media/characters/koros/eye.svg"
  27426. }
  27427. },
  27428. headFront: {
  27429. height: math.unit(11.69, "feet"),
  27430. name: "Head (Front)",
  27431. image: {
  27432. source: "./media/characters/koros/head-front.svg"
  27433. }
  27434. },
  27435. headSide: {
  27436. height: math.unit(14, "feet"),
  27437. name: "Head (Side)",
  27438. image: {
  27439. source: "./media/characters/koros/head-side.svg"
  27440. }
  27441. },
  27442. leg: {
  27443. height: math.unit(17, "feet"),
  27444. name: "Leg",
  27445. image: {
  27446. source: "./media/characters/koros/leg.svg"
  27447. }
  27448. },
  27449. mawSide: {
  27450. height: math.unit(12.8, "feet"),
  27451. name: "Maw (Side)",
  27452. image: {
  27453. source: "./media/characters/koros/maw-side.svg"
  27454. }
  27455. },
  27456. mawSpitting: {
  27457. height: math.unit(17, "feet"),
  27458. name: "Maw (Spitting)",
  27459. image: {
  27460. source: "./media/characters/koros/maw-spitting.svg"
  27461. }
  27462. },
  27463. slit: {
  27464. height: math.unit(2.8, "feet"),
  27465. name: "Slit",
  27466. image: {
  27467. source: "./media/characters/koros/slit.svg"
  27468. }
  27469. },
  27470. stomach: {
  27471. height: math.unit(6.8, "feet"),
  27472. preyCapacity: math.unit(20, "people"),
  27473. name: "Stomach",
  27474. image: {
  27475. source: "./media/characters/koros/stomach.svg"
  27476. }
  27477. },
  27478. wingspanBottom: {
  27479. height: math.unit(114, "feet"),
  27480. name: "Wingspan (Bottom)",
  27481. image: {
  27482. source: "./media/characters/koros/wingspan-bottom.svg"
  27483. }
  27484. },
  27485. wingspanTop: {
  27486. height: math.unit(104, "feet"),
  27487. name: "Wingspan (Top)",
  27488. image: {
  27489. source: "./media/characters/koros/wingspan-top.svg"
  27490. }
  27491. },
  27492. },
  27493. [
  27494. {
  27495. name: "Normal",
  27496. height: math.unit(31 + 8 / 12, "feet"),
  27497. default: true
  27498. },
  27499. ]
  27500. ))
  27501. characterMakers.push(() => makeCharacter(
  27502. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27503. {
  27504. front: {
  27505. height: math.unit(18 + 5 / 12, "feet"),
  27506. weight: math.unit(3750, "kg"),
  27507. name: "Front",
  27508. image: {
  27509. source: "./media/characters/vexx/front.svg",
  27510. extra: 426 / 396,
  27511. bottom: 31.5 / 458
  27512. }
  27513. },
  27514. maw: {
  27515. height: math.unit(6, "feet"),
  27516. name: "Maw",
  27517. image: {
  27518. source: "./media/characters/vexx/maw.svg"
  27519. }
  27520. },
  27521. },
  27522. [
  27523. {
  27524. name: "Normal",
  27525. height: math.unit(18 + 5 / 12, "feet"),
  27526. default: true
  27527. },
  27528. ]
  27529. ))
  27530. characterMakers.push(() => makeCharacter(
  27531. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27532. {
  27533. front: {
  27534. height: math.unit(17 + 6 / 12, "feet"),
  27535. weight: math.unit(150, "lb"),
  27536. name: "Front",
  27537. image: {
  27538. source: "./media/characters/baadra/front.svg",
  27539. extra: 1694/1553,
  27540. bottom: 179/1873
  27541. }
  27542. },
  27543. frontAlt: {
  27544. height: math.unit(17 + 6 / 12, "feet"),
  27545. weight: math.unit(150, "lb"),
  27546. name: "Front (Alt)",
  27547. image: {
  27548. source: "./media/characters/baadra/front-alt.svg",
  27549. extra: 3137 / 2890,
  27550. bottom: 168.4 / 3305
  27551. }
  27552. },
  27553. back: {
  27554. height: math.unit(17 + 6 / 12, "feet"),
  27555. weight: math.unit(150, "lb"),
  27556. name: "Back",
  27557. image: {
  27558. source: "./media/characters/baadra/back.svg",
  27559. extra: 3142 / 2890,
  27560. bottom: 220 / 3371
  27561. }
  27562. },
  27563. head: {
  27564. height: math.unit(5.45, "feet"),
  27565. name: "Head",
  27566. image: {
  27567. source: "./media/characters/baadra/head.svg"
  27568. }
  27569. },
  27570. headAngry: {
  27571. height: math.unit(4.95, "feet"),
  27572. name: "Head (Angry)",
  27573. image: {
  27574. source: "./media/characters/baadra/head-angry.svg"
  27575. }
  27576. },
  27577. headOpen: {
  27578. height: math.unit(6, "feet"),
  27579. name: "Head (Open)",
  27580. image: {
  27581. source: "./media/characters/baadra/head-open.svg"
  27582. }
  27583. },
  27584. },
  27585. [
  27586. {
  27587. name: "Normal",
  27588. height: math.unit(17 + 6 / 12, "feet"),
  27589. default: true
  27590. },
  27591. ]
  27592. ))
  27593. characterMakers.push(() => makeCharacter(
  27594. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27595. {
  27596. front: {
  27597. height: math.unit(7 + 3 / 12, "feet"),
  27598. weight: math.unit(180, "lb"),
  27599. name: "Front",
  27600. image: {
  27601. source: "./media/characters/juri/front.svg",
  27602. extra: 1401 / 1237,
  27603. bottom: 18.5 / 1418
  27604. }
  27605. },
  27606. side: {
  27607. height: math.unit(7 + 3 / 12, "feet"),
  27608. weight: math.unit(180, "lb"),
  27609. name: "Side",
  27610. image: {
  27611. source: "./media/characters/juri/side.svg",
  27612. extra: 1424 / 1242,
  27613. bottom: 18.5 / 1447
  27614. }
  27615. },
  27616. sitting: {
  27617. height: math.unit(6, "feet"),
  27618. weight: math.unit(180, "lb"),
  27619. name: "Sitting",
  27620. image: {
  27621. source: "./media/characters/juri/sitting.svg",
  27622. extra: 1270 / 1143,
  27623. bottom: 100 / 1343
  27624. }
  27625. },
  27626. back: {
  27627. height: math.unit(7 + 3 / 12, "feet"),
  27628. weight: math.unit(180, "lb"),
  27629. name: "Back",
  27630. image: {
  27631. source: "./media/characters/juri/back.svg",
  27632. extra: 1377 / 1240,
  27633. bottom: 23.7 / 1405
  27634. }
  27635. },
  27636. maw: {
  27637. height: math.unit(2.8, "feet"),
  27638. name: "Maw",
  27639. image: {
  27640. source: "./media/characters/juri/maw.svg"
  27641. }
  27642. },
  27643. stomach: {
  27644. height: math.unit(0.89, "feet"),
  27645. preyCapacity: math.unit(4, "liters"),
  27646. name: "Stomach",
  27647. image: {
  27648. source: "./media/characters/juri/stomach.svg"
  27649. }
  27650. },
  27651. },
  27652. [
  27653. {
  27654. name: "Normal",
  27655. height: math.unit(7 + 3 / 12, "feet"),
  27656. default: true
  27657. },
  27658. ]
  27659. ))
  27660. characterMakers.push(() => makeCharacter(
  27661. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27662. {
  27663. fox: {
  27664. height: math.unit(5 + 6 / 12, "feet"),
  27665. weight: math.unit(140, "lb"),
  27666. name: "Fox",
  27667. image: {
  27668. source: "./media/characters/maxene-sita/fox.svg",
  27669. extra: 146 / 138,
  27670. bottom: 2.1 / 148.19
  27671. }
  27672. },
  27673. foxLaying: {
  27674. height: math.unit(1.70, "feet"),
  27675. weight: math.unit(140, "lb"),
  27676. name: "Fox (Laying)",
  27677. image: {
  27678. source: "./media/characters/maxene-sita/fox-laying.svg",
  27679. extra: 910 / 572,
  27680. bottom: 71 / 981
  27681. }
  27682. },
  27683. kitsune: {
  27684. height: math.unit(10, "feet"),
  27685. weight: math.unit(800, "lb"),
  27686. name: "Kitsune",
  27687. image: {
  27688. source: "./media/characters/maxene-sita/kitsune.svg",
  27689. extra: 185 / 176,
  27690. bottom: 4.7 / 189.9
  27691. }
  27692. },
  27693. hellhound: {
  27694. height: math.unit(10, "feet"),
  27695. weight: math.unit(700, "lb"),
  27696. name: "Hellhound",
  27697. image: {
  27698. source: "./media/characters/maxene-sita/hellhound.svg",
  27699. extra: 1600 / 1545,
  27700. bottom: 81 / 1681
  27701. }
  27702. },
  27703. },
  27704. [
  27705. {
  27706. name: "Normal",
  27707. height: math.unit(5 + 6 / 12, "feet"),
  27708. default: true
  27709. },
  27710. ]
  27711. ))
  27712. characterMakers.push(() => makeCharacter(
  27713. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27714. {
  27715. front: {
  27716. height: math.unit(3 + 4 / 12, "feet"),
  27717. weight: math.unit(70, "lb"),
  27718. name: "Front",
  27719. image: {
  27720. source: "./media/characters/maia/front.svg",
  27721. extra: 227 / 219.5,
  27722. bottom: 40 / 267
  27723. }
  27724. },
  27725. back: {
  27726. height: math.unit(3 + 4 / 12, "feet"),
  27727. weight: math.unit(70, "lb"),
  27728. name: "Back",
  27729. image: {
  27730. source: "./media/characters/maia/back.svg",
  27731. extra: 237 / 225
  27732. }
  27733. },
  27734. },
  27735. [
  27736. {
  27737. name: "Normal",
  27738. height: math.unit(3 + 4 / 12, "feet"),
  27739. default: true
  27740. },
  27741. ]
  27742. ))
  27743. characterMakers.push(() => makeCharacter(
  27744. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27745. {
  27746. front: {
  27747. height: math.unit(5 + 10 / 12, "feet"),
  27748. weight: math.unit(197, "lb"),
  27749. name: "Front",
  27750. image: {
  27751. source: "./media/characters/jabaro/front.svg",
  27752. extra: 225 / 216,
  27753. bottom: 5.06 / 230
  27754. }
  27755. },
  27756. back: {
  27757. height: math.unit(5 + 10 / 12, "feet"),
  27758. weight: math.unit(197, "lb"),
  27759. name: "Back",
  27760. image: {
  27761. source: "./media/characters/jabaro/back.svg",
  27762. extra: 225 / 219,
  27763. bottom: 1.9 / 227
  27764. }
  27765. },
  27766. },
  27767. [
  27768. {
  27769. name: "Normal",
  27770. height: math.unit(5 + 10 / 12, "feet"),
  27771. default: true
  27772. },
  27773. ]
  27774. ))
  27775. characterMakers.push(() => makeCharacter(
  27776. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27777. {
  27778. front: {
  27779. height: math.unit(5 + 8 / 12, "feet"),
  27780. weight: math.unit(139, "lb"),
  27781. name: "Front",
  27782. image: {
  27783. source: "./media/characters/risa/front.svg",
  27784. extra: 270 / 260,
  27785. bottom: 11.2 / 282
  27786. }
  27787. },
  27788. back: {
  27789. height: math.unit(5 + 8 / 12, "feet"),
  27790. weight: math.unit(139, "lb"),
  27791. name: "Back",
  27792. image: {
  27793. source: "./media/characters/risa/back.svg",
  27794. extra: 264 / 255,
  27795. bottom: 4 / 268
  27796. }
  27797. },
  27798. },
  27799. [
  27800. {
  27801. name: "Normal",
  27802. height: math.unit(5 + 8 / 12, "feet"),
  27803. default: true
  27804. },
  27805. ]
  27806. ))
  27807. characterMakers.push(() => makeCharacter(
  27808. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27809. {
  27810. front: {
  27811. height: math.unit(2 + 11 / 12, "feet"),
  27812. weight: math.unit(30, "lb"),
  27813. name: "Front",
  27814. image: {
  27815. source: "./media/characters/weatley/front.svg",
  27816. bottom: 10.7 / 414,
  27817. extra: 403.5 / 362
  27818. }
  27819. },
  27820. back: {
  27821. height: math.unit(2 + 11 / 12, "feet"),
  27822. weight: math.unit(30, "lb"),
  27823. name: "Back",
  27824. image: {
  27825. source: "./media/characters/weatley/back.svg",
  27826. bottom: 10.7 / 414,
  27827. extra: 403.5 / 362
  27828. }
  27829. },
  27830. },
  27831. [
  27832. {
  27833. name: "Normal",
  27834. height: math.unit(2 + 11 / 12, "feet"),
  27835. default: true
  27836. },
  27837. ]
  27838. ))
  27839. characterMakers.push(() => makeCharacter(
  27840. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27841. {
  27842. front: {
  27843. height: math.unit(5 + 2 / 12, "feet"),
  27844. weight: math.unit(50, "kg"),
  27845. name: "Front",
  27846. image: {
  27847. source: "./media/characters/mercury-crescent/front.svg",
  27848. extra: 1088 / 1033,
  27849. bottom: 18.9 / 1109
  27850. }
  27851. },
  27852. },
  27853. [
  27854. {
  27855. name: "Normal",
  27856. height: math.unit(5 + 2 / 12, "feet"),
  27857. default: true
  27858. },
  27859. ]
  27860. ))
  27861. characterMakers.push(() => makeCharacter(
  27862. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27863. {
  27864. front: {
  27865. height: math.unit(2, "feet"),
  27866. weight: math.unit(15, "kg"),
  27867. name: "Front",
  27868. image: {
  27869. source: "./media/characters/diamond-jones/front.svg",
  27870. extra: 727/723,
  27871. bottom: 46/773
  27872. }
  27873. },
  27874. },
  27875. [
  27876. {
  27877. name: "Normal",
  27878. height: math.unit(2, "feet"),
  27879. default: true
  27880. },
  27881. ]
  27882. ))
  27883. characterMakers.push(() => makeCharacter(
  27884. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27885. {
  27886. front: {
  27887. height: math.unit(3, "feet"),
  27888. weight: math.unit(30, "kg"),
  27889. name: "Front",
  27890. image: {
  27891. source: "./media/characters/sweet-bit/front.svg",
  27892. extra: 675 / 567,
  27893. bottom: 27.7 / 703
  27894. }
  27895. },
  27896. },
  27897. [
  27898. {
  27899. name: "Normal",
  27900. height: math.unit(3, "feet"),
  27901. default: true
  27902. },
  27903. ]
  27904. ))
  27905. characterMakers.push(() => makeCharacter(
  27906. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27907. {
  27908. side: {
  27909. height: math.unit(9.178, "feet"),
  27910. weight: math.unit(500, "lb"),
  27911. name: "Side",
  27912. image: {
  27913. source: "./media/characters/umbrazen/side.svg",
  27914. extra: 1730 / 1473,
  27915. bottom: 34.6 / 1765
  27916. }
  27917. },
  27918. },
  27919. [
  27920. {
  27921. name: "Normal",
  27922. height: math.unit(9.178, "feet"),
  27923. default: true
  27924. },
  27925. ]
  27926. ))
  27927. characterMakers.push(() => makeCharacter(
  27928. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27929. {
  27930. front: {
  27931. height: math.unit(10, "feet"),
  27932. weight: math.unit(750, "lb"),
  27933. name: "Front",
  27934. image: {
  27935. source: "./media/characters/arlist/front.svg",
  27936. extra: 961 / 778,
  27937. bottom: 6.2 / 986
  27938. }
  27939. },
  27940. },
  27941. [
  27942. {
  27943. name: "Normal",
  27944. height: math.unit(10, "feet"),
  27945. default: true
  27946. },
  27947. ]
  27948. ))
  27949. characterMakers.push(() => makeCharacter(
  27950. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27951. {
  27952. front: {
  27953. height: math.unit(5 + 1 / 12, "feet"),
  27954. weight: math.unit(110, "lb"),
  27955. name: "Front",
  27956. image: {
  27957. source: "./media/characters/aradel/front.svg",
  27958. extra: 324 / 303,
  27959. bottom: 3.6 / 329.4
  27960. }
  27961. },
  27962. },
  27963. [
  27964. {
  27965. name: "Normal",
  27966. height: math.unit(5 + 1 / 12, "feet"),
  27967. default: true
  27968. },
  27969. ]
  27970. ))
  27971. characterMakers.push(() => makeCharacter(
  27972. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27973. {
  27974. dressed: {
  27975. height: math.unit(3 + 8 / 12, "feet"),
  27976. weight: math.unit(50, "lb"),
  27977. name: "Dressed",
  27978. image: {
  27979. source: "./media/characters/serryn/dressed.svg",
  27980. extra: 1792 / 1656,
  27981. bottom: 43.5 / 1840
  27982. }
  27983. },
  27984. nude: {
  27985. height: math.unit(3 + 8 / 12, "feet"),
  27986. weight: math.unit(50, "lb"),
  27987. name: "Nude",
  27988. image: {
  27989. source: "./media/characters/serryn/nude.svg",
  27990. extra: 1792 / 1656,
  27991. bottom: 43.5 / 1840
  27992. }
  27993. },
  27994. },
  27995. [
  27996. {
  27997. name: "Normal",
  27998. height: math.unit(3 + 8 / 12, "feet"),
  27999. default: true
  28000. },
  28001. ]
  28002. ))
  28003. characterMakers.push(() => makeCharacter(
  28004. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28005. {
  28006. front: {
  28007. height: math.unit(7 + 10 / 12, "feet"),
  28008. weight: math.unit(255, "lb"),
  28009. name: "Front",
  28010. image: {
  28011. source: "./media/characters/xavier-thyme/front.svg",
  28012. extra: 3733 / 3642,
  28013. bottom: 131 / 3869
  28014. }
  28015. },
  28016. frontRaven: {
  28017. height: math.unit(7 + 10 / 12, "feet"),
  28018. weight: math.unit(255, "lb"),
  28019. name: "Front (Raven)",
  28020. image: {
  28021. source: "./media/characters/xavier-thyme/front-raven.svg",
  28022. extra: 4385 / 3642,
  28023. bottom: 131 / 4517
  28024. }
  28025. },
  28026. },
  28027. [
  28028. {
  28029. name: "Normal",
  28030. height: math.unit(7 + 10 / 12, "feet"),
  28031. default: true
  28032. },
  28033. ]
  28034. ))
  28035. characterMakers.push(() => makeCharacter(
  28036. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28037. {
  28038. front: {
  28039. height: math.unit(1.6, "m"),
  28040. weight: math.unit(50, "kg"),
  28041. name: "Front",
  28042. image: {
  28043. source: "./media/characters/kiki/front.svg",
  28044. extra: 4682 / 3610,
  28045. bottom: 115 / 4777
  28046. }
  28047. },
  28048. },
  28049. [
  28050. {
  28051. name: "Normal",
  28052. height: math.unit(1.6, "meters"),
  28053. default: true
  28054. },
  28055. ]
  28056. ))
  28057. characterMakers.push(() => makeCharacter(
  28058. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28059. {
  28060. front: {
  28061. height: math.unit(50, "m"),
  28062. weight: math.unit(500, "tonnes"),
  28063. name: "Front",
  28064. image: {
  28065. source: "./media/characters/ryoko/front.svg",
  28066. extra: 4632 / 3926,
  28067. bottom: 193 / 4823
  28068. }
  28069. },
  28070. },
  28071. [
  28072. {
  28073. name: "Normal",
  28074. height: math.unit(50, "meters"),
  28075. default: true
  28076. },
  28077. ]
  28078. ))
  28079. characterMakers.push(() => makeCharacter(
  28080. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28081. {
  28082. front: {
  28083. height: math.unit(30, "m"),
  28084. weight: math.unit(22, "tonnes"),
  28085. name: "Front",
  28086. image: {
  28087. source: "./media/characters/elio/front.svg",
  28088. extra: 4582 / 3720,
  28089. bottom: 236 / 4828
  28090. }
  28091. },
  28092. },
  28093. [
  28094. {
  28095. name: "Normal",
  28096. height: math.unit(30, "meters"),
  28097. default: true
  28098. },
  28099. ]
  28100. ))
  28101. characterMakers.push(() => makeCharacter(
  28102. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28103. {
  28104. front: {
  28105. height: math.unit(6 + 3 / 12, "feet"),
  28106. weight: math.unit(120, "lb"),
  28107. name: "Front",
  28108. image: {
  28109. source: "./media/characters/azura/front.svg",
  28110. extra: 1149 / 1135,
  28111. bottom: 45 / 1194
  28112. }
  28113. },
  28114. frontClothed: {
  28115. height: math.unit(6 + 3 / 12, "feet"),
  28116. weight: math.unit(120, "lb"),
  28117. name: "Front (Clothed)",
  28118. image: {
  28119. source: "./media/characters/azura/front-clothed.svg",
  28120. extra: 1149 / 1135,
  28121. bottom: 45 / 1194
  28122. }
  28123. },
  28124. },
  28125. [
  28126. {
  28127. name: "Normal",
  28128. height: math.unit(6 + 3 / 12, "feet"),
  28129. default: true
  28130. },
  28131. {
  28132. name: "Macro",
  28133. height: math.unit(20 + 6 / 12, "feet")
  28134. },
  28135. {
  28136. name: "Megamacro",
  28137. height: math.unit(12, "miles")
  28138. },
  28139. {
  28140. name: "Gigamacro",
  28141. height: math.unit(10000, "miles")
  28142. },
  28143. {
  28144. name: "Teramacro",
  28145. height: math.unit(900000, "miles")
  28146. },
  28147. ]
  28148. ))
  28149. characterMakers.push(() => makeCharacter(
  28150. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28151. {
  28152. front: {
  28153. height: math.unit(12, "feet"),
  28154. weight: math.unit(1, "ton"),
  28155. capacity: math.unit(660000, "gallons"),
  28156. name: "Front",
  28157. image: {
  28158. source: "./media/characters/zeus/front.svg",
  28159. extra: 5005 / 4717,
  28160. bottom: 363 / 5388
  28161. }
  28162. },
  28163. },
  28164. [
  28165. {
  28166. name: "Normal",
  28167. height: math.unit(12, "feet")
  28168. },
  28169. {
  28170. name: "Preferred Size",
  28171. height: math.unit(0.5, "miles"),
  28172. default: true
  28173. },
  28174. {
  28175. name: "Giga Horse",
  28176. height: math.unit(300, "miles")
  28177. },
  28178. {
  28179. name: "Riding Planets",
  28180. height: math.unit(30, "megameters")
  28181. },
  28182. {
  28183. name: "Cosmic Giant",
  28184. height: math.unit(3, "zettameters")
  28185. },
  28186. {
  28187. name: "Breeding God",
  28188. height: math.unit(9.92e22, "yottameters")
  28189. },
  28190. ]
  28191. ))
  28192. characterMakers.push(() => makeCharacter(
  28193. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28194. {
  28195. side: {
  28196. height: math.unit(9, "feet"),
  28197. weight: math.unit(1500, "kg"),
  28198. name: "Side",
  28199. image: {
  28200. source: "./media/characters/fang/side.svg",
  28201. extra: 924 / 866,
  28202. bottom: 47.5 / 972.3
  28203. }
  28204. },
  28205. },
  28206. [
  28207. {
  28208. name: "Normal",
  28209. height: math.unit(9, "feet"),
  28210. default: true
  28211. },
  28212. {
  28213. name: "Macro",
  28214. height: math.unit(75 + 6 / 12, "feet")
  28215. },
  28216. {
  28217. name: "Teramacro",
  28218. height: math.unit(50000, "miles")
  28219. },
  28220. ]
  28221. ))
  28222. characterMakers.push(() => makeCharacter(
  28223. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28224. {
  28225. front: {
  28226. height: math.unit(10, "feet"),
  28227. weight: math.unit(2, "tons"),
  28228. name: "Front",
  28229. image: {
  28230. source: "./media/characters/rekhit/front.svg",
  28231. extra: 2796 / 2590,
  28232. bottom: 225 / 3022
  28233. }
  28234. },
  28235. },
  28236. [
  28237. {
  28238. name: "Normal",
  28239. height: math.unit(10, "feet"),
  28240. default: true
  28241. },
  28242. {
  28243. name: "Macro",
  28244. height: math.unit(500, "feet")
  28245. },
  28246. ]
  28247. ))
  28248. characterMakers.push(() => makeCharacter(
  28249. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28250. {
  28251. front: {
  28252. height: math.unit(7 + 6.451 / 12, "feet"),
  28253. weight: math.unit(310, "lb"),
  28254. name: "Front",
  28255. image: {
  28256. source: "./media/characters/dahlia-verrick/front.svg",
  28257. extra: 1488 / 1365,
  28258. bottom: 6.2 / 1495
  28259. }
  28260. },
  28261. back: {
  28262. height: math.unit(7 + 6.451 / 12, "feet"),
  28263. weight: math.unit(310, "lb"),
  28264. name: "Back",
  28265. image: {
  28266. source: "./media/characters/dahlia-verrick/back.svg",
  28267. extra: 1472 / 1351,
  28268. bottom: 5.28 / 1477
  28269. }
  28270. },
  28271. frontBusiness: {
  28272. height: math.unit(7 + 6.451 / 12, "feet"),
  28273. weight: math.unit(200, "lb"),
  28274. name: "Front (Business)",
  28275. image: {
  28276. source: "./media/characters/dahlia-verrick/front-business.svg",
  28277. extra: 1478 / 1381,
  28278. bottom: 5.5 / 1484
  28279. }
  28280. },
  28281. frontCasual: {
  28282. height: math.unit(7 + 6.451 / 12, "feet"),
  28283. weight: math.unit(200, "lb"),
  28284. name: "Front (Casual)",
  28285. image: {
  28286. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28287. extra: 1478 / 1381,
  28288. bottom: 5.5 / 1484
  28289. }
  28290. },
  28291. },
  28292. [
  28293. {
  28294. name: "Travel-Sized",
  28295. height: math.unit(7.45, "inches")
  28296. },
  28297. {
  28298. name: "Normal",
  28299. height: math.unit(7 + 6.451 / 12, "feet"),
  28300. default: true
  28301. },
  28302. {
  28303. name: "Hitting the Town",
  28304. height: math.unit(37 + 8 / 12, "feet")
  28305. },
  28306. {
  28307. name: "Stomp in the Suburbs",
  28308. height: math.unit(964 + 9.728 / 12, "feet")
  28309. },
  28310. {
  28311. name: "Sit on the City",
  28312. height: math.unit(61747 + 10.592 / 12, "feet")
  28313. },
  28314. {
  28315. name: "Glomp the Globe",
  28316. height: math.unit(252919327 + 4.832 / 12, "feet")
  28317. },
  28318. ]
  28319. ))
  28320. characterMakers.push(() => makeCharacter(
  28321. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28322. {
  28323. front: {
  28324. height: math.unit(6 + 4 / 12, "feet"),
  28325. weight: math.unit(320, "lb"),
  28326. name: "Front",
  28327. image: {
  28328. source: "./media/characters/balina-mahigan/front.svg",
  28329. extra: 447 / 428,
  28330. bottom: 18 / 466
  28331. }
  28332. },
  28333. back: {
  28334. height: math.unit(6 + 4 / 12, "feet"),
  28335. weight: math.unit(320, "lb"),
  28336. name: "Back",
  28337. image: {
  28338. source: "./media/characters/balina-mahigan/back.svg",
  28339. extra: 445 / 428,
  28340. bottom: 4.07 / 448
  28341. }
  28342. },
  28343. arm: {
  28344. height: math.unit(1.88, "feet"),
  28345. name: "Arm",
  28346. image: {
  28347. source: "./media/characters/balina-mahigan/arm.svg"
  28348. }
  28349. },
  28350. backPort: {
  28351. height: math.unit(0.685, "feet"),
  28352. name: "Back Port",
  28353. image: {
  28354. source: "./media/characters/balina-mahigan/back-port.svg"
  28355. }
  28356. },
  28357. hoofpaw: {
  28358. height: math.unit(1.41, "feet"),
  28359. name: "Hoofpaw",
  28360. image: {
  28361. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28362. }
  28363. },
  28364. leftHandBack: {
  28365. height: math.unit(0.938, "feet"),
  28366. name: "Left Hand (Back)",
  28367. image: {
  28368. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28369. }
  28370. },
  28371. leftHandFront: {
  28372. height: math.unit(0.938, "feet"),
  28373. name: "Left Hand (Front)",
  28374. image: {
  28375. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28376. }
  28377. },
  28378. rightHandBack: {
  28379. height: math.unit(0.95, "feet"),
  28380. name: "Right Hand (Back)",
  28381. image: {
  28382. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28383. }
  28384. },
  28385. rightHandFront: {
  28386. height: math.unit(0.95, "feet"),
  28387. name: "Right Hand (Front)",
  28388. image: {
  28389. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28390. }
  28391. },
  28392. },
  28393. [
  28394. {
  28395. name: "Normal",
  28396. height: math.unit(6 + 4 / 12, "feet"),
  28397. default: true
  28398. },
  28399. ]
  28400. ))
  28401. characterMakers.push(() => makeCharacter(
  28402. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28403. {
  28404. front: {
  28405. height: math.unit(6, "feet"),
  28406. weight: math.unit(320, "lb"),
  28407. name: "Front",
  28408. image: {
  28409. source: "./media/characters/balina-mejeri/front.svg",
  28410. extra: 517 / 488,
  28411. bottom: 44.2 / 561
  28412. }
  28413. },
  28414. },
  28415. [
  28416. {
  28417. name: "Normal",
  28418. height: math.unit(6 + 4 / 12, "feet")
  28419. },
  28420. {
  28421. name: "Business",
  28422. height: math.unit(155, "feet"),
  28423. default: true
  28424. },
  28425. ]
  28426. ))
  28427. characterMakers.push(() => makeCharacter(
  28428. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28429. {
  28430. kneeling: {
  28431. height: math.unit(6 + 4 / 12, "feet"),
  28432. weight: math.unit(300 * 20, "lb"),
  28433. name: "Kneeling",
  28434. image: {
  28435. source: "./media/characters/balbarian/kneeling.svg",
  28436. extra: 922 / 862,
  28437. bottom: 42.4 / 965
  28438. }
  28439. },
  28440. },
  28441. [
  28442. {
  28443. name: "Normal",
  28444. height: math.unit(6 + 4 / 12, "feet")
  28445. },
  28446. {
  28447. name: "Treasured",
  28448. height: math.unit(18 + 9 / 12, "feet"),
  28449. default: true
  28450. },
  28451. {
  28452. name: "Macro",
  28453. height: math.unit(900, "feet")
  28454. },
  28455. ]
  28456. ))
  28457. characterMakers.push(() => makeCharacter(
  28458. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28459. {
  28460. front: {
  28461. height: math.unit(6 + 4 / 12, "feet"),
  28462. weight: math.unit(325, "lb"),
  28463. name: "Front",
  28464. image: {
  28465. source: "./media/characters/balina-amarini/front.svg",
  28466. extra: 415 / 403,
  28467. bottom: 19 / 433.4
  28468. }
  28469. },
  28470. back: {
  28471. height: math.unit(6 + 4 / 12, "feet"),
  28472. weight: math.unit(325, "lb"),
  28473. name: "Back",
  28474. image: {
  28475. source: "./media/characters/balina-amarini/back.svg",
  28476. extra: 415 / 403,
  28477. bottom: 13.5 / 432
  28478. }
  28479. },
  28480. overdrive: {
  28481. height: math.unit(6 + 4 / 12, "feet"),
  28482. weight: math.unit(400, "lb"),
  28483. name: "Overdrive",
  28484. image: {
  28485. source: "./media/characters/balina-amarini/overdrive.svg",
  28486. extra: 269 / 259,
  28487. bottom: 12 / 282
  28488. }
  28489. },
  28490. },
  28491. [
  28492. {
  28493. name: "Boom",
  28494. height: math.unit(9 + 10 / 12, "feet"),
  28495. default: true
  28496. },
  28497. {
  28498. name: "Macro",
  28499. height: math.unit(280, "feet")
  28500. },
  28501. ]
  28502. ))
  28503. characterMakers.push(() => makeCharacter(
  28504. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28505. {
  28506. goddess: {
  28507. height: math.unit(600, "feet"),
  28508. weight: math.unit(2000000, "tons"),
  28509. name: "Goddess",
  28510. image: {
  28511. source: "./media/characters/lady-kubwa/goddess.svg",
  28512. extra: 1240.5 / 1223,
  28513. bottom: 22 / 1263
  28514. }
  28515. },
  28516. goddesser: {
  28517. height: math.unit(900, "feet"),
  28518. weight: math.unit(20000000, "lb"),
  28519. name: "Goddess-er",
  28520. image: {
  28521. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28522. extra: 899 / 888,
  28523. bottom: 12.6 / 912
  28524. }
  28525. },
  28526. },
  28527. [
  28528. {
  28529. name: "Macro",
  28530. height: math.unit(600, "feet"),
  28531. default: true
  28532. },
  28533. {
  28534. name: "Megamacro",
  28535. height: math.unit(250, "miles")
  28536. },
  28537. ]
  28538. ))
  28539. characterMakers.push(() => makeCharacter(
  28540. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28541. {
  28542. front: {
  28543. height: math.unit(7 + 7 / 12, "feet"),
  28544. weight: math.unit(250, "lb"),
  28545. name: "Front",
  28546. image: {
  28547. source: "./media/characters/tala-grovehorn/front.svg",
  28548. extra: 2636 / 2525,
  28549. bottom: 147 / 2781
  28550. }
  28551. },
  28552. back: {
  28553. height: math.unit(7 + 7 / 12, "feet"),
  28554. weight: math.unit(250, "lb"),
  28555. name: "Back",
  28556. image: {
  28557. source: "./media/characters/tala-grovehorn/back.svg",
  28558. extra: 2635 / 2539,
  28559. bottom: 100 / 2732.8
  28560. }
  28561. },
  28562. mouth: {
  28563. height: math.unit(1.15, "feet"),
  28564. name: "Mouth",
  28565. image: {
  28566. source: "./media/characters/tala-grovehorn/mouth.svg"
  28567. }
  28568. },
  28569. dick: {
  28570. height: math.unit(2.36, "feet"),
  28571. name: "Dick",
  28572. image: {
  28573. source: "./media/characters/tala-grovehorn/dick.svg"
  28574. }
  28575. },
  28576. slit: {
  28577. height: math.unit(0.61, "feet"),
  28578. name: "Slit",
  28579. image: {
  28580. source: "./media/characters/tala-grovehorn/slit.svg"
  28581. }
  28582. },
  28583. },
  28584. [
  28585. ]
  28586. ))
  28587. characterMakers.push(() => makeCharacter(
  28588. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28589. {
  28590. front: {
  28591. height: math.unit(7 + 7 / 12, "feet"),
  28592. weight: math.unit(225, "lb"),
  28593. name: "Front",
  28594. image: {
  28595. source: "./media/characters/epona/front.svg",
  28596. extra: 2445 / 2290,
  28597. bottom: 251 / 2696
  28598. }
  28599. },
  28600. back: {
  28601. height: math.unit(7 + 7 / 12, "feet"),
  28602. weight: math.unit(225, "lb"),
  28603. name: "Back",
  28604. image: {
  28605. source: "./media/characters/epona/back.svg",
  28606. extra: 2546 / 2408,
  28607. bottom: 44 / 2589
  28608. }
  28609. },
  28610. genitals: {
  28611. height: math.unit(1.5, "feet"),
  28612. name: "Genitals",
  28613. image: {
  28614. source: "./media/characters/epona/genitals.svg"
  28615. }
  28616. },
  28617. },
  28618. [
  28619. {
  28620. name: "Normal",
  28621. height: math.unit(7 + 7 / 12, "feet"),
  28622. default: true
  28623. },
  28624. ]
  28625. ))
  28626. characterMakers.push(() => makeCharacter(
  28627. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28628. {
  28629. front: {
  28630. height: math.unit(7, "feet"),
  28631. weight: math.unit(518, "lb"),
  28632. name: "Front",
  28633. image: {
  28634. source: "./media/characters/avia-bloodbourn/front.svg",
  28635. extra: 1466 / 1350,
  28636. bottom: 65 / 1527
  28637. }
  28638. },
  28639. },
  28640. [
  28641. ]
  28642. ))
  28643. characterMakers.push(() => makeCharacter(
  28644. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28645. {
  28646. front: {
  28647. height: math.unit(9.35, "feet"),
  28648. weight: math.unit(600, "lb"),
  28649. name: "Front",
  28650. image: {
  28651. source: "./media/characters/amera/front.svg",
  28652. extra: 891 / 818,
  28653. bottom: 30 / 922.7
  28654. }
  28655. },
  28656. back: {
  28657. height: math.unit(9.35, "feet"),
  28658. weight: math.unit(600, "lb"),
  28659. name: "Back",
  28660. image: {
  28661. source: "./media/characters/amera/back.svg",
  28662. extra: 876 / 824,
  28663. bottom: 6.8 / 884
  28664. }
  28665. },
  28666. dick: {
  28667. height: math.unit(2.14, "feet"),
  28668. name: "Dick",
  28669. image: {
  28670. source: "./media/characters/amera/dick.svg"
  28671. }
  28672. },
  28673. },
  28674. [
  28675. {
  28676. name: "Normal",
  28677. height: math.unit(9.35, "feet"),
  28678. default: true
  28679. },
  28680. ]
  28681. ))
  28682. characterMakers.push(() => makeCharacter(
  28683. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28684. {
  28685. kneeling: {
  28686. height: math.unit(3 + 4 / 12, "feet"),
  28687. weight: math.unit(90, "lb"),
  28688. name: "Kneeling",
  28689. image: {
  28690. source: "./media/characters/rosewen/kneeling.svg",
  28691. extra: 1835 / 1571,
  28692. bottom: 27.7 / 1862
  28693. }
  28694. },
  28695. },
  28696. [
  28697. {
  28698. name: "Normal",
  28699. height: math.unit(3 + 4 / 12, "feet"),
  28700. default: true
  28701. },
  28702. ]
  28703. ))
  28704. characterMakers.push(() => makeCharacter(
  28705. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28706. {
  28707. front: {
  28708. height: math.unit(5 + 10 / 12, "feet"),
  28709. weight: math.unit(200, "lb"),
  28710. name: "Front",
  28711. image: {
  28712. source: "./media/characters/sabah/front.svg",
  28713. extra: 849 / 763,
  28714. bottom: 33.9 / 881
  28715. }
  28716. },
  28717. },
  28718. [
  28719. {
  28720. name: "Normal",
  28721. height: math.unit(5 + 10 / 12, "feet"),
  28722. default: true
  28723. },
  28724. ]
  28725. ))
  28726. characterMakers.push(() => makeCharacter(
  28727. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28728. {
  28729. front: {
  28730. height: math.unit(3 + 5 / 12, "feet"),
  28731. weight: math.unit(40, "kg"),
  28732. name: "Front",
  28733. image: {
  28734. source: "./media/characters/purple-flame/front.svg",
  28735. extra: 1577 / 1412,
  28736. bottom: 97 / 1694
  28737. }
  28738. },
  28739. frontDressed: {
  28740. height: math.unit(3 + 5 / 12, "feet"),
  28741. weight: math.unit(40, "kg"),
  28742. name: "Front (Dressed)",
  28743. image: {
  28744. source: "./media/characters/purple-flame/front-dressed.svg",
  28745. extra: 1577 / 1412,
  28746. bottom: 97 / 1694
  28747. }
  28748. },
  28749. headphones: {
  28750. height: math.unit(0.85, "feet"),
  28751. name: "Headphones",
  28752. image: {
  28753. source: "./media/characters/purple-flame/headphones.svg"
  28754. }
  28755. },
  28756. },
  28757. [
  28758. {
  28759. name: "Really Small",
  28760. height: math.unit(5, "cm")
  28761. },
  28762. {
  28763. name: "Micro",
  28764. height: math.unit(1 + 5 / 12, "feet")
  28765. },
  28766. {
  28767. name: "Normal",
  28768. height: math.unit(3 + 5 / 12, "feet"),
  28769. default: true
  28770. },
  28771. {
  28772. name: "Minimacro",
  28773. height: math.unit(125, "feet")
  28774. },
  28775. {
  28776. name: "Macro",
  28777. height: math.unit(0.5, "miles")
  28778. },
  28779. {
  28780. name: "Megamacro",
  28781. height: math.unit(50, "miles")
  28782. },
  28783. {
  28784. name: "Gigantic",
  28785. height: math.unit(750, "miles")
  28786. },
  28787. {
  28788. name: "Planetary",
  28789. height: math.unit(15000, "miles")
  28790. },
  28791. ]
  28792. ))
  28793. characterMakers.push(() => makeCharacter(
  28794. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28795. {
  28796. front: {
  28797. height: math.unit(14, "feet"),
  28798. weight: math.unit(959, "lb"),
  28799. name: "Front",
  28800. image: {
  28801. source: "./media/characters/arsenal/front.svg",
  28802. extra: 2357 / 2157,
  28803. bottom: 93 / 2458
  28804. }
  28805. },
  28806. },
  28807. [
  28808. {
  28809. name: "Normal",
  28810. height: math.unit(14, "feet"),
  28811. default: true
  28812. },
  28813. ]
  28814. ))
  28815. characterMakers.push(() => makeCharacter(
  28816. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28817. {
  28818. front: {
  28819. height: math.unit(6, "feet"),
  28820. weight: math.unit(150, "lb"),
  28821. name: "Front",
  28822. image: {
  28823. source: "./media/characters/adira/front.svg",
  28824. extra: 1078 / 1029,
  28825. bottom: 87 / 1166
  28826. }
  28827. },
  28828. },
  28829. [
  28830. {
  28831. name: "Micro",
  28832. height: math.unit(4, "inches"),
  28833. default: true
  28834. },
  28835. {
  28836. name: "Macro",
  28837. height: math.unit(50, "feet")
  28838. },
  28839. ]
  28840. ))
  28841. characterMakers.push(() => makeCharacter(
  28842. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28843. {
  28844. front: {
  28845. height: math.unit(16, "feet"),
  28846. weight: math.unit(1000, "lb"),
  28847. name: "Front",
  28848. image: {
  28849. source: "./media/characters/grim/front.svg",
  28850. extra: 622 / 614,
  28851. bottom: 18.1 / 642
  28852. }
  28853. },
  28854. back: {
  28855. height: math.unit(16, "feet"),
  28856. weight: math.unit(1000, "lb"),
  28857. name: "Back",
  28858. image: {
  28859. source: "./media/characters/grim/back.svg",
  28860. extra: 610.6 / 602,
  28861. bottom: 40.8 / 652
  28862. }
  28863. },
  28864. hunched: {
  28865. height: math.unit(9.75, "feet"),
  28866. weight: math.unit(1000, "lb"),
  28867. name: "Hunched",
  28868. image: {
  28869. source: "./media/characters/grim/hunched.svg",
  28870. extra: 304 / 297,
  28871. bottom: 35.4 / 394
  28872. }
  28873. },
  28874. },
  28875. [
  28876. {
  28877. name: "Normal",
  28878. height: math.unit(16, "feet"),
  28879. default: true
  28880. },
  28881. ]
  28882. ))
  28883. characterMakers.push(() => makeCharacter(
  28884. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28885. {
  28886. front: {
  28887. height: math.unit(2.3, "meters"),
  28888. weight: math.unit(300, "lb"),
  28889. name: "Front",
  28890. image: {
  28891. source: "./media/characters/sinja/front-sfw.svg",
  28892. extra: 1393 / 1294,
  28893. bottom: 70 / 1463
  28894. }
  28895. },
  28896. frontNsfw: {
  28897. height: math.unit(2.3, "meters"),
  28898. weight: math.unit(300, "lb"),
  28899. name: "Front (NSFW)",
  28900. image: {
  28901. source: "./media/characters/sinja/front-nsfw.svg",
  28902. extra: 1393 / 1294,
  28903. bottom: 70 / 1463
  28904. }
  28905. },
  28906. back: {
  28907. height: math.unit(2.3, "meters"),
  28908. weight: math.unit(300, "lb"),
  28909. name: "Back",
  28910. image: {
  28911. source: "./media/characters/sinja/back.svg",
  28912. extra: 1393 / 1294,
  28913. bottom: 70 / 1463
  28914. }
  28915. },
  28916. head: {
  28917. height: math.unit(1.771, "feet"),
  28918. name: "Head",
  28919. image: {
  28920. source: "./media/characters/sinja/head.svg"
  28921. }
  28922. },
  28923. slit: {
  28924. height: math.unit(0.8, "feet"),
  28925. name: "Slit",
  28926. image: {
  28927. source: "./media/characters/sinja/slit.svg"
  28928. }
  28929. },
  28930. },
  28931. [
  28932. {
  28933. name: "Normal",
  28934. height: math.unit(2.3, "meters")
  28935. },
  28936. {
  28937. name: "Macro",
  28938. height: math.unit(91, "meters"),
  28939. default: true
  28940. },
  28941. {
  28942. name: "Megamacro",
  28943. height: math.unit(91440, "meters")
  28944. },
  28945. {
  28946. name: "Gigamacro",
  28947. height: math.unit(60960000, "meters")
  28948. },
  28949. {
  28950. name: "Teramacro",
  28951. height: math.unit(9144000000, "meters")
  28952. },
  28953. ]
  28954. ))
  28955. characterMakers.push(() => makeCharacter(
  28956. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28957. {
  28958. front: {
  28959. height: math.unit(1.7, "meters"),
  28960. weight: math.unit(130, "lb"),
  28961. name: "Front",
  28962. image: {
  28963. source: "./media/characters/kyu/front.svg",
  28964. extra: 415 / 395,
  28965. bottom: 5 / 420
  28966. }
  28967. },
  28968. head: {
  28969. height: math.unit(1.75, "feet"),
  28970. name: "Head",
  28971. image: {
  28972. source: "./media/characters/kyu/head.svg"
  28973. }
  28974. },
  28975. foot: {
  28976. height: math.unit(0.81, "feet"),
  28977. name: "Foot",
  28978. image: {
  28979. source: "./media/characters/kyu/foot.svg"
  28980. }
  28981. },
  28982. },
  28983. [
  28984. {
  28985. name: "Normal",
  28986. height: math.unit(1.7, "meters")
  28987. },
  28988. {
  28989. name: "Macro",
  28990. height: math.unit(131, "feet"),
  28991. default: true
  28992. },
  28993. {
  28994. name: "Megamacro",
  28995. height: math.unit(91440, "meters")
  28996. },
  28997. {
  28998. name: "Gigamacro",
  28999. height: math.unit(60960000, "meters")
  29000. },
  29001. {
  29002. name: "Teramacro",
  29003. height: math.unit(9144000000, "meters")
  29004. },
  29005. ]
  29006. ))
  29007. characterMakers.push(() => makeCharacter(
  29008. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29009. {
  29010. front: {
  29011. height: math.unit(7 + 1 / 12, "feet"),
  29012. weight: math.unit(250, "lb"),
  29013. name: "Front",
  29014. image: {
  29015. source: "./media/characters/joey/front.svg",
  29016. extra: 1791 / 1537,
  29017. bottom: 28 / 1816
  29018. }
  29019. },
  29020. },
  29021. [
  29022. {
  29023. name: "Micro",
  29024. height: math.unit(3, "inches")
  29025. },
  29026. {
  29027. name: "Normal",
  29028. height: math.unit(7 + 1 / 12, "feet"),
  29029. default: true
  29030. },
  29031. ]
  29032. ))
  29033. characterMakers.push(() => makeCharacter(
  29034. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29035. {
  29036. front: {
  29037. height: math.unit(165, "cm"),
  29038. weight: math.unit(140, "lb"),
  29039. name: "Front",
  29040. image: {
  29041. source: "./media/characters/sam-evans/front.svg",
  29042. extra: 3417 / 3230,
  29043. bottom: 41.3 / 3417
  29044. }
  29045. },
  29046. frontSixTails: {
  29047. height: math.unit(165, "cm"),
  29048. weight: math.unit(140, "lb"),
  29049. name: "Front-six-tails",
  29050. image: {
  29051. source: "./media/characters/sam-evans/front-six-tails.svg",
  29052. extra: 3417 / 3230,
  29053. bottom: 41.3 / 3417
  29054. }
  29055. },
  29056. back: {
  29057. height: math.unit(165, "cm"),
  29058. weight: math.unit(140, "lb"),
  29059. name: "Back",
  29060. image: {
  29061. source: "./media/characters/sam-evans/back.svg",
  29062. extra: 3227 / 3032,
  29063. bottom: 6.8 / 3234
  29064. }
  29065. },
  29066. face: {
  29067. height: math.unit(0.68, "feet"),
  29068. name: "Face",
  29069. image: {
  29070. source: "./media/characters/sam-evans/face.svg"
  29071. }
  29072. },
  29073. },
  29074. [
  29075. {
  29076. name: "Normal",
  29077. height: math.unit(165, "cm"),
  29078. default: true
  29079. },
  29080. {
  29081. name: "Macro",
  29082. height: math.unit(100, "meters")
  29083. },
  29084. {
  29085. name: "Macro+",
  29086. height: math.unit(800, "meters")
  29087. },
  29088. {
  29089. name: "Macro++",
  29090. height: math.unit(3, "km")
  29091. },
  29092. {
  29093. name: "Macro+++",
  29094. height: math.unit(30, "km")
  29095. },
  29096. ]
  29097. ))
  29098. characterMakers.push(() => makeCharacter(
  29099. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29100. {
  29101. front: {
  29102. height: math.unit(10, "feet"),
  29103. weight: math.unit(750, "lb"),
  29104. name: "Front",
  29105. image: {
  29106. source: "./media/characters/juliet-a/front.svg",
  29107. extra: 1766 / 1720,
  29108. bottom: 43 / 1809
  29109. }
  29110. },
  29111. back: {
  29112. height: math.unit(10, "feet"),
  29113. weight: math.unit(750, "lb"),
  29114. name: "Back",
  29115. image: {
  29116. source: "./media/characters/juliet-a/back.svg",
  29117. extra: 1781 / 1734,
  29118. bottom: 35 / 1810,
  29119. }
  29120. },
  29121. },
  29122. [
  29123. {
  29124. name: "Normal",
  29125. height: math.unit(10, "feet"),
  29126. default: true
  29127. },
  29128. {
  29129. name: "Dragon Form",
  29130. height: math.unit(250, "feet")
  29131. },
  29132. {
  29133. name: "Macro",
  29134. height: math.unit(1000, "feet")
  29135. },
  29136. {
  29137. name: "Megamacro",
  29138. height: math.unit(10000, "feet")
  29139. }
  29140. ]
  29141. ))
  29142. characterMakers.push(() => makeCharacter(
  29143. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29144. {
  29145. regular: {
  29146. height: math.unit(7 + 3 / 12, "feet"),
  29147. weight: math.unit(260, "lb"),
  29148. name: "Regular",
  29149. image: {
  29150. source: "./media/characters/wild/regular.svg",
  29151. extra: 97.45 / 92,
  29152. bottom: 6.8 / 104.3
  29153. }
  29154. },
  29155. biggums: {
  29156. height: math.unit(8 + 6 / 12, "feet"),
  29157. weight: math.unit(425, "lb"),
  29158. name: "Biggums",
  29159. image: {
  29160. source: "./media/characters/wild/biggums.svg",
  29161. extra: 97.45 / 92,
  29162. bottom: 7.5 / 132.34
  29163. }
  29164. },
  29165. mawRegular: {
  29166. height: math.unit(1.24, "feet"),
  29167. name: "Maw (Regular)",
  29168. image: {
  29169. source: "./media/characters/wild/maw.svg"
  29170. }
  29171. },
  29172. mawBiggums: {
  29173. height: math.unit(1.47, "feet"),
  29174. name: "Maw (Biggums)",
  29175. image: {
  29176. source: "./media/characters/wild/maw.svg"
  29177. }
  29178. },
  29179. },
  29180. [
  29181. {
  29182. name: "Normal",
  29183. height: math.unit(7 + 3 / 12, "feet"),
  29184. default: true
  29185. },
  29186. ]
  29187. ))
  29188. characterMakers.push(() => makeCharacter(
  29189. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29190. {
  29191. front: {
  29192. height: math.unit(2.5, "meters"),
  29193. weight: math.unit(200, "kg"),
  29194. name: "Front",
  29195. image: {
  29196. source: "./media/characters/vidar/front.svg",
  29197. extra: 2994 / 2795,
  29198. bottom: 56 / 3061
  29199. }
  29200. },
  29201. back: {
  29202. height: math.unit(2.5, "meters"),
  29203. weight: math.unit(200, "kg"),
  29204. name: "Back",
  29205. image: {
  29206. source: "./media/characters/vidar/back.svg",
  29207. extra: 3131 / 2928,
  29208. bottom: 13.5 / 3141.5
  29209. }
  29210. },
  29211. feral: {
  29212. height: math.unit(2.5, "meters"),
  29213. weight: math.unit(2000, "kg"),
  29214. name: "Feral",
  29215. image: {
  29216. source: "./media/characters/vidar/feral.svg",
  29217. extra: 2790 / 1765,
  29218. bottom: 6 / 2796
  29219. }
  29220. },
  29221. },
  29222. [
  29223. {
  29224. name: "Normal",
  29225. height: math.unit(2.5, "meters"),
  29226. default: true
  29227. },
  29228. {
  29229. name: "Macro",
  29230. height: math.unit(100, "meters")
  29231. },
  29232. ]
  29233. ))
  29234. characterMakers.push(() => makeCharacter(
  29235. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29236. {
  29237. front: {
  29238. height: math.unit(5 + 9 / 12, "feet"),
  29239. weight: math.unit(120, "lb"),
  29240. name: "Front",
  29241. image: {
  29242. source: "./media/characters/ash/front.svg",
  29243. extra: 2189 / 1961,
  29244. bottom: 5.2 / 2194
  29245. }
  29246. },
  29247. },
  29248. [
  29249. {
  29250. name: "Normal",
  29251. height: math.unit(5 + 9 / 12, "feet"),
  29252. default: true
  29253. },
  29254. ]
  29255. ))
  29256. characterMakers.push(() => makeCharacter(
  29257. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29258. {
  29259. front: {
  29260. height: math.unit(9, "feet"),
  29261. weight: math.unit(10000, "lb"),
  29262. name: "Front",
  29263. image: {
  29264. source: "./media/characters/gygabite/front.svg",
  29265. bottom: 31.7 / 537.8,
  29266. extra: 505 / 370
  29267. }
  29268. },
  29269. },
  29270. [
  29271. {
  29272. name: "Normal",
  29273. height: math.unit(9, "feet"),
  29274. default: true
  29275. },
  29276. ]
  29277. ))
  29278. characterMakers.push(() => makeCharacter(
  29279. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29280. {
  29281. front: {
  29282. height: math.unit(12, "feet"),
  29283. weight: math.unit(4000, "lb"),
  29284. name: "Front",
  29285. image: {
  29286. source: "./media/characters/p0tat0/front.svg",
  29287. extra: 1065 / 921,
  29288. bottom: 55.7 / 1121.25
  29289. }
  29290. },
  29291. },
  29292. [
  29293. {
  29294. name: "Normal",
  29295. height: math.unit(12, "feet"),
  29296. default: true
  29297. },
  29298. ]
  29299. ))
  29300. characterMakers.push(() => makeCharacter(
  29301. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29302. {
  29303. side: {
  29304. height: math.unit(6.5, "feet"),
  29305. weight: math.unit(800, "lb"),
  29306. name: "Side",
  29307. image: {
  29308. source: "./media/characters/dusk/side.svg",
  29309. extra: 615 / 373,
  29310. bottom: 53 / 664
  29311. }
  29312. },
  29313. sitting: {
  29314. height: math.unit(7, "feet"),
  29315. weight: math.unit(800, "lb"),
  29316. name: "Sitting",
  29317. image: {
  29318. source: "./media/characters/dusk/sitting.svg",
  29319. extra: 753 / 425,
  29320. bottom: 33 / 774
  29321. }
  29322. },
  29323. head: {
  29324. height: math.unit(6.1, "feet"),
  29325. name: "Head",
  29326. image: {
  29327. source: "./media/characters/dusk/head.svg"
  29328. }
  29329. },
  29330. },
  29331. [
  29332. {
  29333. name: "Normal",
  29334. height: math.unit(7, "feet"),
  29335. default: true
  29336. },
  29337. ]
  29338. ))
  29339. characterMakers.push(() => makeCharacter(
  29340. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29341. {
  29342. front: {
  29343. height: math.unit(15, "feet"),
  29344. weight: math.unit(7000, "lb"),
  29345. name: "Front",
  29346. image: {
  29347. source: "./media/characters/jay-direwolf/front.svg",
  29348. extra: 1810 / 1732,
  29349. bottom: 66 / 1892
  29350. }
  29351. },
  29352. },
  29353. [
  29354. {
  29355. name: "Normal",
  29356. height: math.unit(15, "feet"),
  29357. default: true
  29358. },
  29359. ]
  29360. ))
  29361. characterMakers.push(() => makeCharacter(
  29362. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29363. {
  29364. front: {
  29365. height: math.unit(4 + 9 / 12, "feet"),
  29366. weight: math.unit(130, "lb"),
  29367. name: "Front",
  29368. image: {
  29369. source: "./media/characters/anchovie/front.svg",
  29370. extra: 382 / 350,
  29371. bottom: 25 / 409
  29372. }
  29373. },
  29374. back: {
  29375. height: math.unit(4 + 9 / 12, "feet"),
  29376. weight: math.unit(130, "lb"),
  29377. name: "Back",
  29378. image: {
  29379. source: "./media/characters/anchovie/back.svg",
  29380. extra: 385 / 352,
  29381. bottom: 16.6 / 402
  29382. }
  29383. },
  29384. frontDressed: {
  29385. height: math.unit(4 + 9 / 12, "feet"),
  29386. weight: math.unit(130, "lb"),
  29387. name: "Front (Dressed)",
  29388. image: {
  29389. source: "./media/characters/anchovie/front-dressed.svg",
  29390. extra: 382 / 350,
  29391. bottom: 25 / 409
  29392. }
  29393. },
  29394. backDressed: {
  29395. height: math.unit(4 + 9 / 12, "feet"),
  29396. weight: math.unit(130, "lb"),
  29397. name: "Back (Dressed)",
  29398. image: {
  29399. source: "./media/characters/anchovie/back-dressed.svg",
  29400. extra: 385 / 352,
  29401. bottom: 16.6 / 402
  29402. }
  29403. },
  29404. },
  29405. [
  29406. {
  29407. name: "Micro",
  29408. height: math.unit(6.4, "inches")
  29409. },
  29410. {
  29411. name: "Normal",
  29412. height: math.unit(4 + 9 / 12, "feet"),
  29413. default: true
  29414. },
  29415. ]
  29416. ))
  29417. characterMakers.push(() => makeCharacter(
  29418. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29419. {
  29420. front: {
  29421. height: math.unit(2, "meters"),
  29422. weight: math.unit(180, "lb"),
  29423. name: "Front",
  29424. image: {
  29425. source: "./media/characters/acidrenamon/front.svg",
  29426. extra: 987 / 890,
  29427. bottom: 22.8 / 1009
  29428. }
  29429. },
  29430. back: {
  29431. height: math.unit(2, "meters"),
  29432. weight: math.unit(180, "lb"),
  29433. name: "Back",
  29434. image: {
  29435. source: "./media/characters/acidrenamon/back.svg",
  29436. extra: 983 / 891,
  29437. bottom: 8.4 / 992
  29438. }
  29439. },
  29440. head: {
  29441. height: math.unit(1.92, "feet"),
  29442. name: "Head",
  29443. image: {
  29444. source: "./media/characters/acidrenamon/head.svg"
  29445. }
  29446. },
  29447. rump: {
  29448. height: math.unit(1.72, "feet"),
  29449. name: "Rump",
  29450. image: {
  29451. source: "./media/characters/acidrenamon/rump.svg"
  29452. }
  29453. },
  29454. tail: {
  29455. height: math.unit(4.2, "feet"),
  29456. name: "Tail",
  29457. image: {
  29458. source: "./media/characters/acidrenamon/tail.svg"
  29459. }
  29460. },
  29461. },
  29462. [
  29463. {
  29464. name: "Normal",
  29465. height: math.unit(2, "meters"),
  29466. default: true
  29467. },
  29468. {
  29469. name: "Minimacro",
  29470. height: math.unit(7, "meters")
  29471. },
  29472. {
  29473. name: "Macro",
  29474. height: math.unit(200, "meters")
  29475. },
  29476. {
  29477. name: "Gigamacro",
  29478. height: math.unit(0.2, "earths")
  29479. },
  29480. ]
  29481. ))
  29482. characterMakers.push(() => makeCharacter(
  29483. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29484. {
  29485. front: {
  29486. height: math.unit(152, "feet"),
  29487. name: "Front",
  29488. image: {
  29489. source: "./media/characters/kenzie-lee/front.svg",
  29490. extra: 1869/1774,
  29491. bottom: 128/1997
  29492. }
  29493. },
  29494. side: {
  29495. height: math.unit(86, "feet"),
  29496. name: "Side",
  29497. image: {
  29498. source: "./media/characters/kenzie-lee/side.svg",
  29499. extra: 930/815,
  29500. bottom: 177/1107
  29501. }
  29502. },
  29503. paw: {
  29504. height: math.unit(15, "feet"),
  29505. name: "Paw",
  29506. image: {
  29507. source: "./media/characters/kenzie-lee/paw.svg"
  29508. }
  29509. },
  29510. },
  29511. [
  29512. {
  29513. name: "Kenzie Flea",
  29514. height: math.unit(2, "mm"),
  29515. default: true
  29516. },
  29517. {
  29518. name: "Micro",
  29519. height: math.unit(2, "inches")
  29520. },
  29521. {
  29522. name: "Normal",
  29523. height: math.unit(152, "feet")
  29524. },
  29525. {
  29526. name: "Megamacro",
  29527. height: math.unit(7, "miles")
  29528. },
  29529. {
  29530. name: "Gigamacro",
  29531. height: math.unit(8000, "miles")
  29532. },
  29533. ]
  29534. ))
  29535. characterMakers.push(() => makeCharacter(
  29536. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29537. {
  29538. front: {
  29539. height: math.unit(6, "feet"),
  29540. name: "Front",
  29541. image: {
  29542. source: "./media/characters/withers/front.svg",
  29543. extra: 1935/1760,
  29544. bottom: 72/2007
  29545. }
  29546. },
  29547. back: {
  29548. height: math.unit(6, "feet"),
  29549. name: "Back",
  29550. image: {
  29551. source: "./media/characters/withers/back.svg",
  29552. extra: 1944/1792,
  29553. bottom: 12/1956
  29554. }
  29555. },
  29556. dressed: {
  29557. height: math.unit(6, "feet"),
  29558. name: "Dressed",
  29559. image: {
  29560. source: "./media/characters/withers/dressed.svg",
  29561. extra: 1937/1765,
  29562. bottom: 73/2010
  29563. }
  29564. },
  29565. phase1: {
  29566. height: math.unit(1.1, "feet"),
  29567. name: "Phase 1",
  29568. image: {
  29569. source: "./media/characters/withers/phase-1.svg",
  29570. extra: 1885/1232,
  29571. bottom: 0/1885
  29572. }
  29573. },
  29574. phase2: {
  29575. height: math.unit(1.05, "feet"),
  29576. name: "Phase 2",
  29577. image: {
  29578. source: "./media/characters/withers/phase-2.svg",
  29579. extra: 1792/1090,
  29580. bottom: 0/1792
  29581. }
  29582. },
  29583. partyWipe: {
  29584. height: math.unit(1.1, "feet"),
  29585. name: "Party Wipe",
  29586. image: {
  29587. source: "./media/characters/withers/party-wipe.svg",
  29588. extra: 1864/1207,
  29589. bottom: 0/1864
  29590. }
  29591. },
  29592. },
  29593. [
  29594. {
  29595. name: "Macro",
  29596. height: math.unit(167, "feet"),
  29597. default: true
  29598. },
  29599. {
  29600. name: "Megamacro",
  29601. height: math.unit(15, "miles")
  29602. }
  29603. ]
  29604. ))
  29605. characterMakers.push(() => makeCharacter(
  29606. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29607. {
  29608. front: {
  29609. height: math.unit(6 + 7 / 12, "feet"),
  29610. weight: math.unit(250, "lb"),
  29611. name: "Front",
  29612. image: {
  29613. source: "./media/characters/nemoskii/front.svg",
  29614. extra: 2270 / 1734,
  29615. bottom: 86 / 2354
  29616. }
  29617. },
  29618. back: {
  29619. height: math.unit(6 + 7 / 12, "feet"),
  29620. weight: math.unit(250, "lb"),
  29621. name: "Back",
  29622. image: {
  29623. source: "./media/characters/nemoskii/back.svg",
  29624. extra: 1845 / 1788,
  29625. bottom: 10.5 / 1852
  29626. }
  29627. },
  29628. head: {
  29629. height: math.unit(1.31, "feet"),
  29630. name: "Head",
  29631. image: {
  29632. source: "./media/characters/nemoskii/head.svg"
  29633. }
  29634. },
  29635. },
  29636. [
  29637. {
  29638. name: "Micro",
  29639. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29640. },
  29641. {
  29642. name: "Normal",
  29643. height: math.unit(6 + 7 / 12, "feet"),
  29644. default: true
  29645. },
  29646. {
  29647. name: "Macro",
  29648. height: math.unit((6 + 7 / 12) * 150, "feet")
  29649. },
  29650. {
  29651. name: "Macro+",
  29652. height: math.unit((6 + 7 / 12) * 500, "feet")
  29653. },
  29654. {
  29655. name: "Megamacro",
  29656. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29657. },
  29658. ]
  29659. ))
  29660. characterMakers.push(() => makeCharacter(
  29661. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29662. {
  29663. front: {
  29664. height: math.unit(1, "mile"),
  29665. weight: math.unit(265261.9, "lb"),
  29666. name: "Front",
  29667. image: {
  29668. source: "./media/characters/shui/front.svg",
  29669. extra: 1633 / 1564,
  29670. bottom: 91.5 / 1726
  29671. }
  29672. },
  29673. },
  29674. [
  29675. {
  29676. name: "Macro",
  29677. height: math.unit(1, "mile"),
  29678. default: true
  29679. },
  29680. ]
  29681. ))
  29682. characterMakers.push(() => makeCharacter(
  29683. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29684. {
  29685. front: {
  29686. height: math.unit(12 + 6 / 12, "feet"),
  29687. weight: math.unit(1342, "lb"),
  29688. name: "Front",
  29689. image: {
  29690. source: "./media/characters/arokh-takakura/front.svg",
  29691. extra: 1089 / 1043,
  29692. bottom: 77.4 / 1176.7
  29693. }
  29694. },
  29695. back: {
  29696. height: math.unit(12 + 6 / 12, "feet"),
  29697. weight: math.unit(1342, "lb"),
  29698. name: "Back",
  29699. image: {
  29700. source: "./media/characters/arokh-takakura/back.svg",
  29701. extra: 1046 / 1019,
  29702. bottom: 102 / 1150
  29703. }
  29704. },
  29705. },
  29706. [
  29707. {
  29708. name: "Big",
  29709. height: math.unit(12 + 6 / 12, "feet"),
  29710. default: true
  29711. },
  29712. ]
  29713. ))
  29714. characterMakers.push(() => makeCharacter(
  29715. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29716. {
  29717. front: {
  29718. height: math.unit(5 + 6 / 12, "feet"),
  29719. weight: math.unit(150, "lb"),
  29720. name: "Front",
  29721. image: {
  29722. source: "./media/characters/theo/front.svg",
  29723. extra: 1184 / 1131,
  29724. bottom: 7.4 / 1191
  29725. }
  29726. },
  29727. },
  29728. [
  29729. {
  29730. name: "Micro",
  29731. height: math.unit(5, "inches")
  29732. },
  29733. {
  29734. name: "Normal",
  29735. height: math.unit(5 + 6 / 12, "feet"),
  29736. default: true
  29737. },
  29738. ]
  29739. ))
  29740. characterMakers.push(() => makeCharacter(
  29741. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29742. {
  29743. front: {
  29744. height: math.unit(5 + 9 / 12, "feet"),
  29745. weight: math.unit(130, "lb"),
  29746. name: "Front",
  29747. image: {
  29748. source: "./media/characters/cecelia-swift/front.svg",
  29749. extra: 502 / 484,
  29750. bottom: 23 / 523
  29751. }
  29752. },
  29753. back: {
  29754. height: math.unit(5 + 9 / 12, "feet"),
  29755. weight: math.unit(130, "lb"),
  29756. name: "Back",
  29757. image: {
  29758. source: "./media/characters/cecelia-swift/back.svg",
  29759. extra: 499 / 485,
  29760. bottom: 12 / 511
  29761. }
  29762. },
  29763. head: {
  29764. height: math.unit(0.90, "feet"),
  29765. name: "Head",
  29766. image: {
  29767. source: "./media/characters/cecelia-swift/head.svg"
  29768. }
  29769. },
  29770. rump: {
  29771. height: math.unit(1.75, "feet"),
  29772. name: "Rump",
  29773. image: {
  29774. source: "./media/characters/cecelia-swift/rump.svg"
  29775. }
  29776. },
  29777. },
  29778. [
  29779. {
  29780. name: "Normal",
  29781. height: math.unit(5 + 9 / 12, "feet"),
  29782. default: true
  29783. },
  29784. {
  29785. name: "Big",
  29786. height: math.unit(50, "feet")
  29787. },
  29788. {
  29789. name: "Macro",
  29790. height: math.unit(100, "feet")
  29791. },
  29792. {
  29793. name: "Macro+",
  29794. height: math.unit(500, "feet")
  29795. },
  29796. {
  29797. name: "Macro++",
  29798. height: math.unit(1000, "feet")
  29799. },
  29800. ]
  29801. ))
  29802. characterMakers.push(() => makeCharacter(
  29803. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29804. {
  29805. front: {
  29806. height: math.unit(6, "feet"),
  29807. weight: math.unit(150, "lb"),
  29808. name: "Front",
  29809. image: {
  29810. source: "./media/characters/kaunan/front.svg",
  29811. extra: 2890 / 2523,
  29812. bottom: 49 / 2939
  29813. }
  29814. },
  29815. },
  29816. [
  29817. {
  29818. name: "Macro",
  29819. height: math.unit(150, "feet"),
  29820. default: true
  29821. },
  29822. ]
  29823. ))
  29824. characterMakers.push(() => makeCharacter(
  29825. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29826. {
  29827. dressed: {
  29828. height: math.unit(175, "cm"),
  29829. weight: math.unit(60, "kg"),
  29830. name: "Dressed",
  29831. image: {
  29832. source: "./media/characters/fei/dressed.svg",
  29833. extra: 1402/1278,
  29834. bottom: 27/1429
  29835. }
  29836. },
  29837. nude: {
  29838. height: math.unit(175, "cm"),
  29839. weight: math.unit(60, "kg"),
  29840. name: "Nude",
  29841. image: {
  29842. source: "./media/characters/fei/nude.svg",
  29843. extra: 1402/1278,
  29844. bottom: 27/1429
  29845. }
  29846. },
  29847. heels: {
  29848. height: math.unit(0.466, "feet"),
  29849. name: "Heels",
  29850. image: {
  29851. source: "./media/characters/fei/heels.svg",
  29852. extra: 156/152,
  29853. bottom: 28/184
  29854. }
  29855. },
  29856. },
  29857. [
  29858. {
  29859. name: "Mortal",
  29860. height: math.unit(175, "cm")
  29861. },
  29862. {
  29863. name: "Normal",
  29864. height: math.unit(3500, "m")
  29865. },
  29866. {
  29867. name: "Stroll",
  29868. height: math.unit(18.4, "km"),
  29869. default: true
  29870. },
  29871. {
  29872. name: "Showoff",
  29873. height: math.unit(175, "km")
  29874. },
  29875. ]
  29876. ))
  29877. characterMakers.push(() => makeCharacter(
  29878. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29879. {
  29880. front: {
  29881. height: math.unit(7, "feet"),
  29882. weight: math.unit(1000, "kg"),
  29883. name: "Front",
  29884. image: {
  29885. source: "./media/characters/edrax/front.svg",
  29886. extra: 2838 / 2550,
  29887. bottom: 130 / 2968
  29888. }
  29889. },
  29890. },
  29891. [
  29892. {
  29893. name: "Small",
  29894. height: math.unit(7, "feet")
  29895. },
  29896. {
  29897. name: "Normal",
  29898. height: math.unit(1500, "meters")
  29899. },
  29900. {
  29901. name: "Mega",
  29902. height: math.unit(12000000, "km"),
  29903. default: true
  29904. },
  29905. {
  29906. name: "Megamacro",
  29907. height: math.unit(10600000, "lightyears")
  29908. },
  29909. {
  29910. name: "Hypermacro",
  29911. height: math.unit(256, "yottameters")
  29912. },
  29913. ]
  29914. ))
  29915. characterMakers.push(() => makeCharacter(
  29916. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29917. {
  29918. front: {
  29919. height: math.unit(10, "feet"),
  29920. weight: math.unit(750, "lb"),
  29921. name: "Front",
  29922. image: {
  29923. source: "./media/characters/clove/front.svg",
  29924. extra: 1918/1751,
  29925. bottom: 52/1970
  29926. }
  29927. },
  29928. back: {
  29929. height: math.unit(10, "feet"),
  29930. weight: math.unit(750, "lb"),
  29931. name: "Back",
  29932. image: {
  29933. source: "./media/characters/clove/back.svg",
  29934. extra: 1912/1747,
  29935. bottom: 50/1962
  29936. }
  29937. },
  29938. },
  29939. [
  29940. {
  29941. name: "Normal",
  29942. height: math.unit(10, "feet"),
  29943. default: true
  29944. },
  29945. ]
  29946. ))
  29947. characterMakers.push(() => makeCharacter(
  29948. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29949. {
  29950. front: {
  29951. height: math.unit(4, "feet"),
  29952. weight: math.unit(50, "lb"),
  29953. name: "Front",
  29954. image: {
  29955. source: "./media/characters/alex-rabbit/front.svg",
  29956. extra: 507 / 458,
  29957. bottom: 18.5 / 527
  29958. }
  29959. },
  29960. back: {
  29961. height: math.unit(4, "feet"),
  29962. weight: math.unit(50, "lb"),
  29963. name: "Back",
  29964. image: {
  29965. source: "./media/characters/alex-rabbit/back.svg",
  29966. extra: 502 / 460,
  29967. bottom: 18.9 / 521
  29968. }
  29969. },
  29970. },
  29971. [
  29972. {
  29973. name: "Normal",
  29974. height: math.unit(4, "feet"),
  29975. default: true
  29976. },
  29977. ]
  29978. ))
  29979. characterMakers.push(() => makeCharacter(
  29980. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29981. {
  29982. front: {
  29983. height: math.unit(1 + 3 / 12, "feet"),
  29984. weight: math.unit(80, "lb"),
  29985. name: "Front",
  29986. image: {
  29987. source: "./media/characters/zander-rose/front.svg",
  29988. extra: 916 / 797,
  29989. bottom: 17 / 933
  29990. }
  29991. },
  29992. back: {
  29993. height: math.unit(1 + 3 / 12, "feet"),
  29994. weight: math.unit(80, "lb"),
  29995. name: "Back",
  29996. image: {
  29997. source: "./media/characters/zander-rose/back.svg",
  29998. extra: 903 / 779,
  29999. bottom: 31 / 934
  30000. }
  30001. },
  30002. },
  30003. [
  30004. {
  30005. name: "Normal",
  30006. height: math.unit(1 + 3 / 12, "feet"),
  30007. default: true
  30008. },
  30009. ]
  30010. ))
  30011. characterMakers.push(() => makeCharacter(
  30012. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30013. {
  30014. anthro: {
  30015. height: math.unit(6, "feet"),
  30016. weight: math.unit(150, "lb"),
  30017. name: "Anthro",
  30018. image: {
  30019. source: "./media/characters/razz/anthro.svg",
  30020. extra: 1437 / 1343,
  30021. bottom: 48 / 1485
  30022. }
  30023. },
  30024. feral: {
  30025. height: math.unit(6, "feet"),
  30026. weight: math.unit(150, "lb"),
  30027. name: "Feral",
  30028. image: {
  30029. source: "./media/characters/razz/feral.svg",
  30030. extra: 2569 / 1385,
  30031. bottom: 95 / 2664
  30032. }
  30033. },
  30034. },
  30035. [
  30036. {
  30037. name: "Normal",
  30038. height: math.unit(6, "feet"),
  30039. default: true
  30040. },
  30041. ]
  30042. ))
  30043. characterMakers.push(() => makeCharacter(
  30044. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30045. {
  30046. front: {
  30047. height: math.unit(9 + 4 / 12, "feet"),
  30048. weight: math.unit(500, "lb"),
  30049. name: "Front",
  30050. image: {
  30051. source: "./media/characters/morrigan/front.svg",
  30052. extra: 2707 / 2579,
  30053. bottom: 156 / 2863
  30054. }
  30055. },
  30056. },
  30057. [
  30058. {
  30059. name: "Normal",
  30060. height: math.unit(9 + 4 / 12, "feet"),
  30061. default: true
  30062. },
  30063. ]
  30064. ))
  30065. characterMakers.push(() => makeCharacter(
  30066. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30067. {
  30068. front: {
  30069. height: math.unit(5, "stories"),
  30070. weight: math.unit(4000, "lb"),
  30071. name: "Front",
  30072. image: {
  30073. source: "./media/characters/jenene/front.svg",
  30074. extra: 1780 / 1710,
  30075. bottom: 57 / 1837
  30076. }
  30077. },
  30078. },
  30079. [
  30080. {
  30081. name: "Normal",
  30082. height: math.unit(5, "stories"),
  30083. default: true
  30084. },
  30085. ]
  30086. ))
  30087. characterMakers.push(() => makeCharacter(
  30088. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30089. {
  30090. taurSfw: {
  30091. height: math.unit(10, "meters"),
  30092. weight: math.unit(17500, "kg"),
  30093. name: "Taur",
  30094. image: {
  30095. source: "./media/characters/faey/taur-sfw.svg",
  30096. extra: 1200 / 968,
  30097. bottom: 41 / 1241
  30098. }
  30099. },
  30100. chestmaw: {
  30101. height: math.unit(2.01, "meters"),
  30102. name: "Chestmaw",
  30103. image: {
  30104. source: "./media/characters/faey/chestmaw.svg"
  30105. }
  30106. },
  30107. foot: {
  30108. height: math.unit(2.43, "meters"),
  30109. name: "Foot",
  30110. image: {
  30111. source: "./media/characters/faey/foot.svg"
  30112. }
  30113. },
  30114. jaws: {
  30115. height: math.unit(1.66, "meters"),
  30116. name: "Jaws",
  30117. image: {
  30118. source: "./media/characters/faey/jaws.svg"
  30119. }
  30120. },
  30121. tongues: {
  30122. height: math.unit(2.01, "meters"),
  30123. name: "Tongues",
  30124. image: {
  30125. source: "./media/characters/faey/tongues.svg"
  30126. }
  30127. },
  30128. },
  30129. [
  30130. {
  30131. name: "Small",
  30132. height: math.unit(10, "meters"),
  30133. default: true
  30134. },
  30135. {
  30136. name: "Big",
  30137. height: math.unit(500000, "km")
  30138. },
  30139. ]
  30140. ))
  30141. characterMakers.push(() => makeCharacter(
  30142. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30143. {
  30144. front: {
  30145. height: math.unit(7, "feet"),
  30146. weight: math.unit(275, "lb"),
  30147. name: "Front",
  30148. image: {
  30149. source: "./media/characters/roku/front.svg",
  30150. extra: 903 / 878,
  30151. bottom: 37 / 940
  30152. }
  30153. },
  30154. },
  30155. [
  30156. {
  30157. name: "Normal",
  30158. height: math.unit(7, "feet"),
  30159. default: true
  30160. },
  30161. {
  30162. name: "Macro",
  30163. height: math.unit(500, "feet")
  30164. },
  30165. {
  30166. name: "Megamacro",
  30167. height: math.unit(200, "miles")
  30168. },
  30169. ]
  30170. ))
  30171. characterMakers.push(() => makeCharacter(
  30172. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30173. {
  30174. front: {
  30175. height: math.unit(6 + 2 / 12, "feet"),
  30176. weight: math.unit(150, "lb"),
  30177. name: "Front",
  30178. image: {
  30179. source: "./media/characters/lira/front.svg",
  30180. extra: 1727 / 1605,
  30181. bottom: 26 / 1753
  30182. }
  30183. },
  30184. back: {
  30185. height: math.unit(6 + 2 / 12, "feet"),
  30186. weight: math.unit(150, "lb"),
  30187. name: "Back",
  30188. image: {
  30189. source: "./media/characters/lira/back.svg",
  30190. extra: 1713/1621,
  30191. bottom: 20/1733
  30192. }
  30193. },
  30194. hand: {
  30195. height: math.unit(0.75, "feet"),
  30196. name: "Hand",
  30197. image: {
  30198. source: "./media/characters/lira/hand.svg"
  30199. }
  30200. },
  30201. maw: {
  30202. height: math.unit(0.65, "feet"),
  30203. name: "Maw",
  30204. image: {
  30205. source: "./media/characters/lira/maw.svg"
  30206. }
  30207. },
  30208. pawDigi: {
  30209. height: math.unit(1.6, "feet"),
  30210. name: "Paw Digi",
  30211. image: {
  30212. source: "./media/characters/lira/paw-digi.svg"
  30213. }
  30214. },
  30215. pawPlanti: {
  30216. height: math.unit(1.4, "feet"),
  30217. name: "Paw Planti",
  30218. image: {
  30219. source: "./media/characters/lira/paw-planti.svg"
  30220. }
  30221. },
  30222. },
  30223. [
  30224. {
  30225. name: "Normal",
  30226. height: math.unit(6 + 2 / 12, "feet"),
  30227. default: true
  30228. },
  30229. {
  30230. name: "Macro",
  30231. height: math.unit(100, "feet")
  30232. },
  30233. {
  30234. name: "Macro²",
  30235. height: math.unit(1600, "feet")
  30236. },
  30237. {
  30238. name: "Planetary",
  30239. height: math.unit(20, "earths")
  30240. },
  30241. ]
  30242. ))
  30243. characterMakers.push(() => makeCharacter(
  30244. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30245. {
  30246. front: {
  30247. height: math.unit(6, "feet"),
  30248. weight: math.unit(150, "lb"),
  30249. name: "Front",
  30250. image: {
  30251. source: "./media/characters/hadjet/front.svg",
  30252. extra: 1480 / 1346,
  30253. bottom: 26 / 1506
  30254. }
  30255. },
  30256. frontNsfw: {
  30257. height: math.unit(6, "feet"),
  30258. weight: math.unit(150, "lb"),
  30259. name: "Front (NSFW)",
  30260. image: {
  30261. source: "./media/characters/hadjet/front-nsfw.svg",
  30262. extra: 1440 / 1358,
  30263. bottom: 52 / 1492
  30264. }
  30265. },
  30266. },
  30267. [
  30268. {
  30269. name: "Macro",
  30270. height: math.unit(10, "stories"),
  30271. default: true
  30272. },
  30273. {
  30274. name: "Megamacro",
  30275. height: math.unit(1.5, "miles")
  30276. },
  30277. {
  30278. name: "Megamacro+",
  30279. height: math.unit(5, "miles")
  30280. },
  30281. ]
  30282. ))
  30283. characterMakers.push(() => makeCharacter(
  30284. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30285. {
  30286. side: {
  30287. height: math.unit(106, "feet"),
  30288. weight: math.unit(500, "tonnes"),
  30289. name: "Side",
  30290. image: {
  30291. source: "./media/characters/kodran/side.svg",
  30292. extra: 553 / 480,
  30293. bottom: 33 / 586
  30294. }
  30295. },
  30296. front: {
  30297. height: math.unit(132, "feet"),
  30298. weight: math.unit(500, "tonnes"),
  30299. name: "Front",
  30300. image: {
  30301. source: "./media/characters/kodran/front.svg",
  30302. extra: 667 / 643,
  30303. bottom: 42 / 709
  30304. }
  30305. },
  30306. flying: {
  30307. height: math.unit(350, "feet"),
  30308. weight: math.unit(500, "tonnes"),
  30309. name: "Flying",
  30310. image: {
  30311. source: "./media/characters/kodran/flying.svg"
  30312. }
  30313. },
  30314. foot: {
  30315. height: math.unit(33, "feet"),
  30316. name: "Foot",
  30317. image: {
  30318. source: "./media/characters/kodran/foot.svg"
  30319. }
  30320. },
  30321. footFront: {
  30322. height: math.unit(19, "feet"),
  30323. name: "Foot (Front)",
  30324. image: {
  30325. source: "./media/characters/kodran/foot-front.svg",
  30326. extra: 261 / 261,
  30327. bottom: 91 / 352
  30328. }
  30329. },
  30330. headFront: {
  30331. height: math.unit(53, "feet"),
  30332. name: "Head (Front)",
  30333. image: {
  30334. source: "./media/characters/kodran/head-front.svg"
  30335. }
  30336. },
  30337. headSide: {
  30338. height: math.unit(65, "feet"),
  30339. name: "Head (Side)",
  30340. image: {
  30341. source: "./media/characters/kodran/head-side.svg"
  30342. }
  30343. },
  30344. throat: {
  30345. height: math.unit(79, "feet"),
  30346. name: "Throat",
  30347. image: {
  30348. source: "./media/characters/kodran/throat.svg"
  30349. }
  30350. },
  30351. },
  30352. [
  30353. {
  30354. name: "Large",
  30355. height: math.unit(106, "feet"),
  30356. default: true
  30357. },
  30358. ]
  30359. ))
  30360. characterMakers.push(() => makeCharacter(
  30361. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30362. {
  30363. side: {
  30364. height: math.unit(11, "feet"),
  30365. weight: math.unit(150, "lb"),
  30366. name: "Side",
  30367. image: {
  30368. source: "./media/characters/pyxaron/side.svg",
  30369. extra: 305 / 195,
  30370. bottom: 17 / 322
  30371. }
  30372. },
  30373. },
  30374. [
  30375. {
  30376. name: "Normal",
  30377. height: math.unit(11, "feet"),
  30378. default: true
  30379. },
  30380. ]
  30381. ))
  30382. characterMakers.push(() => makeCharacter(
  30383. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30384. {
  30385. front: {
  30386. height: math.unit(6, "feet"),
  30387. weight: math.unit(150, "lb"),
  30388. name: "Front",
  30389. image: {
  30390. source: "./media/characters/meep/front.svg",
  30391. extra: 88 / 80,
  30392. bottom: 6 / 94
  30393. }
  30394. },
  30395. },
  30396. [
  30397. {
  30398. name: "Fun Sized",
  30399. height: math.unit(2, "inches"),
  30400. default: true
  30401. },
  30402. {
  30403. name: "Friend Sized",
  30404. height: math.unit(8, "inches")
  30405. },
  30406. ]
  30407. ))
  30408. characterMakers.push(() => makeCharacter(
  30409. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30410. {
  30411. front: {
  30412. height: math.unit(15, "feet"),
  30413. weight: math.unit(2500, "lb"),
  30414. name: "Front",
  30415. image: {
  30416. source: "./media/characters/holly-rabbit/front.svg",
  30417. extra: 1433 / 1233,
  30418. bottom: 125 / 1558
  30419. }
  30420. },
  30421. dick: {
  30422. height: math.unit(4.6, "feet"),
  30423. name: "Dick",
  30424. image: {
  30425. source: "./media/characters/holly-rabbit/dick.svg"
  30426. }
  30427. },
  30428. },
  30429. [
  30430. {
  30431. name: "Normal",
  30432. height: math.unit(15, "feet"),
  30433. default: true
  30434. },
  30435. {
  30436. name: "Macro",
  30437. height: math.unit(250, "feet")
  30438. },
  30439. {
  30440. name: "Macro+",
  30441. height: math.unit(2500, "feet")
  30442. },
  30443. ]
  30444. ))
  30445. characterMakers.push(() => makeCharacter(
  30446. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30447. {
  30448. front: {
  30449. height: math.unit(3.02, "meters"),
  30450. weight: math.unit(500, "kg"),
  30451. name: "Front",
  30452. image: {
  30453. source: "./media/characters/drena/front.svg",
  30454. extra: 282 / 243,
  30455. bottom: 8 / 290
  30456. }
  30457. },
  30458. side: {
  30459. height: math.unit(3.02, "meters"),
  30460. weight: math.unit(500, "kg"),
  30461. name: "Side",
  30462. image: {
  30463. source: "./media/characters/drena/side.svg",
  30464. extra: 280 / 245,
  30465. bottom: 10 / 290
  30466. }
  30467. },
  30468. back: {
  30469. height: math.unit(3.02, "meters"),
  30470. weight: math.unit(500, "kg"),
  30471. name: "Back",
  30472. image: {
  30473. source: "./media/characters/drena/back.svg",
  30474. extra: 278 / 243,
  30475. bottom: 2 / 280
  30476. }
  30477. },
  30478. foot: {
  30479. height: math.unit(0.75, "meters"),
  30480. name: "Foot",
  30481. image: {
  30482. source: "./media/characters/drena/foot.svg"
  30483. }
  30484. },
  30485. maw: {
  30486. height: math.unit(0.82, "meters"),
  30487. name: "Maw",
  30488. image: {
  30489. source: "./media/characters/drena/maw.svg"
  30490. }
  30491. },
  30492. eating: {
  30493. height: math.unit(0.75, "meters"),
  30494. name: "Eating",
  30495. image: {
  30496. source: "./media/characters/drena/eating.svg"
  30497. }
  30498. },
  30499. rump: {
  30500. height: math.unit(0.93, "meters"),
  30501. name: "Rump",
  30502. image: {
  30503. source: "./media/characters/drena/rump.svg"
  30504. }
  30505. },
  30506. },
  30507. [
  30508. {
  30509. name: "Normal",
  30510. height: math.unit(3.02, "meters"),
  30511. default: true
  30512. },
  30513. ]
  30514. ))
  30515. characterMakers.push(() => makeCharacter(
  30516. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30517. {
  30518. front: {
  30519. height: math.unit(6 + 4 / 12, "feet"),
  30520. weight: math.unit(250, "lb"),
  30521. name: "Front",
  30522. image: {
  30523. source: "./media/characters/remmyzilla/front.svg",
  30524. extra: 4033 / 3588,
  30525. bottom: 123 / 4156
  30526. }
  30527. },
  30528. back: {
  30529. height: math.unit(6 + 4 / 12, "feet"),
  30530. weight: math.unit(250, "lb"),
  30531. name: "Back",
  30532. image: {
  30533. source: "./media/characters/remmyzilla/back.svg",
  30534. extra: 2687 / 2555,
  30535. bottom: 48 / 2735
  30536. }
  30537. },
  30538. paw: {
  30539. height: math.unit(1.73, "feet"),
  30540. name: "Paw",
  30541. image: {
  30542. source: "./media/characters/remmyzilla/paw.svg"
  30543. },
  30544. extraAttributes: {
  30545. "toeSize": {
  30546. name: "Toe Size",
  30547. power: 2,
  30548. type: "area",
  30549. base: math.unit(0.0035, "m^2")
  30550. },
  30551. "padSize": {
  30552. name: "Pad Size",
  30553. power: 2,
  30554. type: "area",
  30555. base: math.unit(0.015, "m^2")
  30556. },
  30557. "pawsize": {
  30558. name: "Paw Size",
  30559. power: 2,
  30560. type: "area",
  30561. base: math.unit(0.072, "m^2")
  30562. },
  30563. }
  30564. },
  30565. maw: {
  30566. height: math.unit(1.73, "feet"),
  30567. name: "Maw",
  30568. image: {
  30569. source: "./media/characters/remmyzilla/maw.svg"
  30570. }
  30571. },
  30572. },
  30573. [
  30574. {
  30575. name: "Normal",
  30576. height: math.unit(6 + 4 / 12, "feet")
  30577. },
  30578. {
  30579. name: "Minimacro",
  30580. height: math.unit(12 + 8 / 12, "feet")
  30581. },
  30582. {
  30583. name: "Normal",
  30584. height: math.unit(640, "feet"),
  30585. default: true
  30586. },
  30587. {
  30588. name: "Megamacro",
  30589. height: math.unit(6400, "feet")
  30590. },
  30591. {
  30592. name: "Gigamacro",
  30593. height: math.unit(64000, "miles")
  30594. },
  30595. ]
  30596. ))
  30597. characterMakers.push(() => makeCharacter(
  30598. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30599. {
  30600. front: {
  30601. height: math.unit(2.5, "meters"),
  30602. weight: math.unit(300, "lb"),
  30603. name: "Front",
  30604. image: {
  30605. source: "./media/characters/lawrence/front.svg",
  30606. extra: 357 / 335,
  30607. bottom: 30 / 387
  30608. }
  30609. },
  30610. back: {
  30611. height: math.unit(2.5, "meters"),
  30612. weight: math.unit(300, "lb"),
  30613. name: "Back",
  30614. image: {
  30615. source: "./media/characters/lawrence/back.svg",
  30616. extra: 357 / 338,
  30617. bottom: 16 / 373
  30618. }
  30619. },
  30620. head: {
  30621. height: math.unit(0.9, "meter"),
  30622. name: "Head",
  30623. image: {
  30624. source: "./media/characters/lawrence/head.svg"
  30625. }
  30626. },
  30627. maw: {
  30628. height: math.unit(0.7, "meter"),
  30629. name: "Maw",
  30630. image: {
  30631. source: "./media/characters/lawrence/maw.svg"
  30632. }
  30633. },
  30634. footBottom: {
  30635. height: math.unit(0.5, "meter"),
  30636. name: "Foot (Bottom)",
  30637. image: {
  30638. source: "./media/characters/lawrence/foot-bottom.svg"
  30639. }
  30640. },
  30641. footTop: {
  30642. height: math.unit(0.5, "meter"),
  30643. name: "Foot (Top)",
  30644. image: {
  30645. source: "./media/characters/lawrence/foot-top.svg"
  30646. }
  30647. },
  30648. },
  30649. [
  30650. {
  30651. name: "Normal",
  30652. height: math.unit(2.5, "meters"),
  30653. default: true
  30654. },
  30655. {
  30656. name: "Macro",
  30657. height: math.unit(95, "meters")
  30658. },
  30659. {
  30660. name: "Megamacro",
  30661. height: math.unit(150, "km")
  30662. },
  30663. ]
  30664. ))
  30665. characterMakers.push(() => makeCharacter(
  30666. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30667. {
  30668. front: {
  30669. height: math.unit(4.2, "meters"),
  30670. name: "Front",
  30671. image: {
  30672. source: "./media/characters/sydney/front.svg",
  30673. extra: 1323 / 1277,
  30674. bottom: 111 / 1434
  30675. }
  30676. },
  30677. },
  30678. [
  30679. {
  30680. name: "Normal",
  30681. height: math.unit(4.2, "meters"),
  30682. default: true
  30683. },
  30684. ]
  30685. ))
  30686. characterMakers.push(() => makeCharacter(
  30687. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30688. {
  30689. back: {
  30690. height: math.unit(201, "feet"),
  30691. name: "Back",
  30692. image: {
  30693. source: "./media/characters/jessica/back.svg",
  30694. extra: 273 / 259,
  30695. bottom: 7 / 280
  30696. }
  30697. },
  30698. },
  30699. [
  30700. {
  30701. name: "Normal",
  30702. height: math.unit(201, "feet"),
  30703. default: true
  30704. },
  30705. {
  30706. name: "Megamacro",
  30707. height: math.unit(8, "miles")
  30708. },
  30709. ]
  30710. ))
  30711. characterMakers.push(() => makeCharacter(
  30712. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30713. {
  30714. side: {
  30715. height: math.unit(5.6, "m"),
  30716. weight: math.unit(8000, "kg"),
  30717. name: "Side",
  30718. image: {
  30719. source: "./media/characters/victoria/side.svg",
  30720. extra: 1542/1229,
  30721. bottom: 124/1666
  30722. }
  30723. },
  30724. maw: {
  30725. height: math.unit(7.14, "feet"),
  30726. name: "Maw",
  30727. image: {
  30728. source: "./media/characters/victoria/maw.svg"
  30729. }
  30730. },
  30731. },
  30732. [
  30733. {
  30734. name: "Normal",
  30735. height: math.unit(5.6, "m"),
  30736. default: true
  30737. },
  30738. ]
  30739. ))
  30740. characterMakers.push(() => makeCharacter(
  30741. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30742. {
  30743. front: {
  30744. height: math.unit(5 + 6 / 12, "feet"),
  30745. name: "Front",
  30746. image: {
  30747. source: "./media/characters/cat/front.svg",
  30748. extra: 1449/1295,
  30749. bottom: 34/1483
  30750. },
  30751. form: "cat",
  30752. default: true
  30753. },
  30754. back: {
  30755. height: math.unit(5 + 6 / 12, "feet"),
  30756. name: "Back",
  30757. image: {
  30758. source: "./media/characters/cat/back.svg",
  30759. extra: 1466/1301,
  30760. bottom: 19/1485
  30761. },
  30762. form: "cat"
  30763. },
  30764. taur: {
  30765. height: math.unit(7, "feet"),
  30766. name: "Taur",
  30767. image: {
  30768. source: "./media/characters/cat/taur.svg",
  30769. extra: 1389/1233,
  30770. bottom: 83/1472
  30771. },
  30772. form: "taur",
  30773. default: true
  30774. },
  30775. lucarioFront: {
  30776. height: math.unit(4, "feet"),
  30777. name: "Lucario (Front)",
  30778. image: {
  30779. source: "./media/characters/cat/lucario-front.svg",
  30780. extra: 1149/1019,
  30781. bottom: 84/1233
  30782. },
  30783. form: "lucario",
  30784. default: true
  30785. },
  30786. lucarioBack: {
  30787. height: math.unit(4, "feet"),
  30788. name: "Lucario (Back)",
  30789. image: {
  30790. source: "./media/characters/cat/lucario-back.svg",
  30791. extra: 1190/1059,
  30792. bottom: 33/1223
  30793. },
  30794. form: "lucario"
  30795. },
  30796. megaLucario: {
  30797. height: math.unit(4, "feet"),
  30798. name: "Mega Lucario",
  30799. image: {
  30800. source: "./media/characters/cat/mega-lucario.svg",
  30801. extra: 1515 / 1319,
  30802. bottom: 63 / 1578
  30803. },
  30804. form: "lucario"
  30805. },
  30806. nickit: {
  30807. height: math.unit(2, "feet"),
  30808. name: "Nickit",
  30809. image: {
  30810. source: "./media/characters/cat/nickit.svg",
  30811. extra: 1980 / 1585,
  30812. bottom: 102 / 2082
  30813. },
  30814. form: "nickit",
  30815. default: true
  30816. },
  30817. lopunnyFront: {
  30818. height: math.unit(5, "feet"),
  30819. name: "Lopunny (Front)",
  30820. image: {
  30821. source: "./media/characters/cat/lopunny-front.svg",
  30822. extra: 1782 / 1469,
  30823. bottom: 38 / 1820
  30824. },
  30825. form: "lopunny",
  30826. default: true
  30827. },
  30828. lopunnyBack: {
  30829. height: math.unit(5, "feet"),
  30830. name: "Lopunny (Back)",
  30831. image: {
  30832. source: "./media/characters/cat/lopunny-back.svg",
  30833. extra: 1660 / 1490,
  30834. bottom: 25 / 1685
  30835. },
  30836. form: "lopunny"
  30837. },
  30838. },
  30839. [
  30840. {
  30841. name: "Really small",
  30842. height: math.unit(1, "nm")
  30843. },
  30844. {
  30845. name: "Micro",
  30846. height: math.unit(5, "inches")
  30847. },
  30848. {
  30849. name: "Normal",
  30850. height: math.unit(5 + 6 / 12, "feet"),
  30851. default: true
  30852. },
  30853. {
  30854. name: "Macro",
  30855. height: math.unit(50, "feet")
  30856. },
  30857. {
  30858. name: "Macro+",
  30859. height: math.unit(150, "feet")
  30860. },
  30861. {
  30862. name: "Megamacro",
  30863. height: math.unit(100, "miles")
  30864. },
  30865. ]
  30866. ))
  30867. characterMakers.push(() => makeCharacter(
  30868. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30869. {
  30870. front: {
  30871. height: math.unit(63.4, "meters"),
  30872. weight: math.unit(3.28349e+6, "kilograms"),
  30873. name: "Front",
  30874. image: {
  30875. source: "./media/characters/kirina-violet/front.svg",
  30876. extra: 2812 / 2725,
  30877. bottom: 0 / 2812
  30878. }
  30879. },
  30880. back: {
  30881. height: math.unit(63.4, "meters"),
  30882. weight: math.unit(3.28349e+6, "kilograms"),
  30883. name: "Back",
  30884. image: {
  30885. source: "./media/characters/kirina-violet/back.svg",
  30886. extra: 2812 / 2725,
  30887. bottom: 0 / 2812
  30888. }
  30889. },
  30890. mouth: {
  30891. height: math.unit(4.35, "meters"),
  30892. name: "Mouth",
  30893. image: {
  30894. source: "./media/characters/kirina-violet/mouth.svg"
  30895. }
  30896. },
  30897. paw: {
  30898. height: math.unit(5.6, "meters"),
  30899. name: "Paw",
  30900. image: {
  30901. source: "./media/characters/kirina-violet/paw.svg"
  30902. }
  30903. },
  30904. tail: {
  30905. height: math.unit(18, "meters"),
  30906. name: "Tail",
  30907. image: {
  30908. source: "./media/characters/kirina-violet/tail.svg"
  30909. }
  30910. },
  30911. },
  30912. [
  30913. {
  30914. name: "Macro",
  30915. height: math.unit(63.4, "meters"),
  30916. default: true
  30917. },
  30918. ]
  30919. ))
  30920. characterMakers.push(() => makeCharacter(
  30921. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30922. {
  30923. front: {
  30924. height: math.unit(75, "feet"),
  30925. name: "Front",
  30926. image: {
  30927. source: "./media/characters/cat-gigachu/front.svg",
  30928. extra: 1239/1027,
  30929. bottom: 32/1271
  30930. }
  30931. },
  30932. back: {
  30933. height: math.unit(75, "feet"),
  30934. name: "Back",
  30935. image: {
  30936. source: "./media/characters/cat-gigachu/back.svg",
  30937. extra: 1229/1030,
  30938. bottom: 9/1238
  30939. }
  30940. },
  30941. },
  30942. [
  30943. {
  30944. name: "Dynamax",
  30945. height: math.unit(75, "feet"),
  30946. default: true
  30947. },
  30948. ]
  30949. ))
  30950. characterMakers.push(() => makeCharacter(
  30951. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30952. {
  30953. front: {
  30954. height: math.unit(6, "feet"),
  30955. weight: math.unit(150, "lb"),
  30956. name: "Front",
  30957. image: {
  30958. source: "./media/characters/sfaiyan/front.svg",
  30959. extra: 999 / 978,
  30960. bottom: 5 / 1004
  30961. }
  30962. },
  30963. },
  30964. [
  30965. {
  30966. name: "Normal",
  30967. height: math.unit(1.82, "meters")
  30968. },
  30969. {
  30970. name: "Giant",
  30971. height: math.unit(2.27, "km"),
  30972. default: true
  30973. },
  30974. ]
  30975. ))
  30976. characterMakers.push(() => makeCharacter(
  30977. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30978. {
  30979. front: {
  30980. height: math.unit(179, "cm"),
  30981. weight: math.unit(100, "kg"),
  30982. name: "Front",
  30983. image: {
  30984. source: "./media/characters/raunehkeli/front.svg",
  30985. extra: 1934 / 1926,
  30986. bottom: 0 / 1934
  30987. }
  30988. },
  30989. },
  30990. [
  30991. {
  30992. name: "Normal",
  30993. height: math.unit(179, "cm")
  30994. },
  30995. {
  30996. name: "Maximum",
  30997. height: math.unit(575, "meters"),
  30998. default: true
  30999. },
  31000. ]
  31001. ))
  31002. characterMakers.push(() => makeCharacter(
  31003. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31004. {
  31005. front: {
  31006. height: math.unit(6, "feet"),
  31007. weight: math.unit(150, "lb"),
  31008. name: "Front",
  31009. image: {
  31010. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31011. extra: 2625 / 2518,
  31012. bottom: 60 / 2685
  31013. }
  31014. },
  31015. },
  31016. [
  31017. {
  31018. name: "Normal",
  31019. height: math.unit(6 + 2 / 12, "feet")
  31020. },
  31021. {
  31022. name: "Macro",
  31023. height: math.unit(1180, "feet"),
  31024. default: true
  31025. },
  31026. ]
  31027. ))
  31028. characterMakers.push(() => makeCharacter(
  31029. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31030. {
  31031. front: {
  31032. height: math.unit(5 + 6 / 12, "feet"),
  31033. weight: math.unit(108, "lb"),
  31034. name: "Front",
  31035. image: {
  31036. source: "./media/characters/lilith-zott/front.svg",
  31037. extra: 2510 / 2238,
  31038. bottom: 100 / 2610
  31039. }
  31040. },
  31041. frontDressed: {
  31042. height: math.unit(5 + 6 / 12, "feet"),
  31043. weight: math.unit(108, "lb"),
  31044. name: "Front (Dressed)",
  31045. image: {
  31046. source: "./media/characters/lilith-zott/front-dressed.svg",
  31047. extra: 2510 / 2238,
  31048. bottom: 100 / 2610
  31049. }
  31050. },
  31051. },
  31052. [
  31053. {
  31054. name: "Normal",
  31055. height: math.unit(5 + 6 / 12, "feet")
  31056. },
  31057. {
  31058. name: "Macro",
  31059. height: math.unit(1030, "feet"),
  31060. default: true
  31061. },
  31062. ]
  31063. ))
  31064. characterMakers.push(() => makeCharacter(
  31065. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31066. {
  31067. front: {
  31068. height: math.unit(6, "feet"),
  31069. weight: math.unit(150, "lb"),
  31070. name: "Front",
  31071. image: {
  31072. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31073. extra: 2567 / 2435,
  31074. bottom: 39 / 2606
  31075. }
  31076. },
  31077. frontSuper: {
  31078. height: math.unit(6, "feet"),
  31079. name: "Front (Super)",
  31080. image: {
  31081. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31082. extra: 2567 / 2435,
  31083. bottom: 39 / 2606
  31084. }
  31085. },
  31086. },
  31087. [
  31088. {
  31089. name: "Normal",
  31090. height: math.unit(5 + 10 / 12, "feet")
  31091. },
  31092. {
  31093. name: "Macro",
  31094. height: math.unit(1100, "feet"),
  31095. default: true
  31096. },
  31097. ]
  31098. ))
  31099. characterMakers.push(() => makeCharacter(
  31100. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31101. {
  31102. front: {
  31103. height: math.unit(100, "miles"),
  31104. name: "Front",
  31105. image: {
  31106. source: "./media/characters/sona/front.svg",
  31107. extra: 2433 / 2201,
  31108. bottom: 53 / 2486
  31109. }
  31110. },
  31111. foot: {
  31112. height: math.unit(16.1, "miles"),
  31113. name: "Foot",
  31114. image: {
  31115. source: "./media/characters/sona/foot.svg"
  31116. }
  31117. },
  31118. },
  31119. [
  31120. {
  31121. name: "Macro",
  31122. height: math.unit(100, "miles"),
  31123. default: true
  31124. },
  31125. ]
  31126. ))
  31127. characterMakers.push(() => makeCharacter(
  31128. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31129. {
  31130. front: {
  31131. height: math.unit(6, "feet"),
  31132. weight: math.unit(150, "lb"),
  31133. name: "Front",
  31134. image: {
  31135. source: "./media/characters/bailey/front.svg",
  31136. extra: 1778 / 1724,
  31137. bottom: 30 / 1808
  31138. }
  31139. },
  31140. },
  31141. [
  31142. {
  31143. name: "Micro",
  31144. height: math.unit(4, "inches")
  31145. },
  31146. {
  31147. name: "Normal",
  31148. height: math.unit(5 + 5 / 12, "feet"),
  31149. default: true
  31150. },
  31151. {
  31152. name: "Macro",
  31153. height: math.unit(250, "feet")
  31154. },
  31155. {
  31156. name: "Megamacro",
  31157. height: math.unit(100, "miles")
  31158. },
  31159. ]
  31160. ))
  31161. characterMakers.push(() => makeCharacter(
  31162. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31163. {
  31164. front: {
  31165. height: math.unit(5 + 2 / 12, "feet"),
  31166. weight: math.unit(120, "lb"),
  31167. name: "Front",
  31168. image: {
  31169. source: "./media/characters/snaps/front.svg",
  31170. extra: 2370 / 2177,
  31171. bottom: 48 / 2418
  31172. }
  31173. },
  31174. back: {
  31175. height: math.unit(5 + 2 / 12, "feet"),
  31176. weight: math.unit(120, "lb"),
  31177. name: "Back",
  31178. image: {
  31179. source: "./media/characters/snaps/back.svg",
  31180. extra: 2408 / 2258,
  31181. bottom: 15 / 2423
  31182. }
  31183. },
  31184. },
  31185. [
  31186. {
  31187. name: "Micro",
  31188. height: math.unit(9, "inches")
  31189. },
  31190. {
  31191. name: "Normal",
  31192. height: math.unit(5 + 2 / 12, "feet"),
  31193. default: true
  31194. },
  31195. {
  31196. name: "Mini Macro",
  31197. height: math.unit(10, "feet")
  31198. },
  31199. ]
  31200. ))
  31201. characterMakers.push(() => makeCharacter(
  31202. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31203. {
  31204. front: {
  31205. height: math.unit(1.8, "meters"),
  31206. weight: math.unit(85, "kg"),
  31207. name: "Front",
  31208. image: {
  31209. source: "./media/characters/azteck/front.svg",
  31210. extra: 2815 / 2625,
  31211. bottom: 89 / 2904
  31212. }
  31213. },
  31214. back: {
  31215. height: math.unit(1.8, "meters"),
  31216. weight: math.unit(85, "kg"),
  31217. name: "Back",
  31218. image: {
  31219. source: "./media/characters/azteck/back.svg",
  31220. extra: 2856 / 2648,
  31221. bottom: 85 / 2941
  31222. }
  31223. },
  31224. frontDressed: {
  31225. height: math.unit(1.8, "meters"),
  31226. weight: math.unit(85, "kg"),
  31227. name: "Front (Dressed)",
  31228. image: {
  31229. source: "./media/characters/azteck/front-dressed.svg",
  31230. extra: 2147 / 2003,
  31231. bottom: 68 / 2215
  31232. }
  31233. },
  31234. head: {
  31235. height: math.unit(0.47, "meters"),
  31236. weight: math.unit(85, "kg"),
  31237. name: "Head",
  31238. image: {
  31239. source: "./media/characters/azteck/head.svg"
  31240. }
  31241. },
  31242. },
  31243. [
  31244. {
  31245. name: "Bite sized",
  31246. height: math.unit(16, "cm")
  31247. },
  31248. {
  31249. name: "Normal",
  31250. height: math.unit(1.8, "meters"),
  31251. default: true
  31252. },
  31253. ]
  31254. ))
  31255. characterMakers.push(() => makeCharacter(
  31256. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31257. {
  31258. front: {
  31259. height: math.unit(6, "feet"),
  31260. weight: math.unit(150, "lb"),
  31261. name: "Front",
  31262. image: {
  31263. source: "./media/characters/pidge/front.svg",
  31264. extra: 1936/1820,
  31265. bottom: 0/1936
  31266. }
  31267. },
  31268. back: {
  31269. height: math.unit(6, "feet"),
  31270. weight: math.unit(150, "lb"),
  31271. name: "Back",
  31272. image: {
  31273. source: "./media/characters/pidge/back.svg",
  31274. extra: 1938/1843,
  31275. bottom: 0/1938
  31276. }
  31277. },
  31278. casual: {
  31279. height: math.unit(6, "feet"),
  31280. weight: math.unit(150, "lb"),
  31281. name: "Casual",
  31282. image: {
  31283. source: "./media/characters/pidge/casual.svg",
  31284. extra: 1936/1820,
  31285. bottom: 0/1936
  31286. }
  31287. },
  31288. tech: {
  31289. height: math.unit(6, "feet"),
  31290. weight: math.unit(150, "lb"),
  31291. name: "Tech",
  31292. image: {
  31293. source: "./media/characters/pidge/tech.svg",
  31294. extra: 1802/1682,
  31295. bottom: 0/1802
  31296. }
  31297. },
  31298. head: {
  31299. height: math.unit(1.61, "feet"),
  31300. name: "Head",
  31301. image: {
  31302. source: "./media/characters/pidge/head.svg"
  31303. }
  31304. },
  31305. collar: {
  31306. height: math.unit(0.82, "feet"),
  31307. name: "Collar",
  31308. image: {
  31309. source: "./media/characters/pidge/collar.svg"
  31310. }
  31311. },
  31312. },
  31313. [
  31314. {
  31315. name: "Macro",
  31316. height: math.unit(2, "mile"),
  31317. default: true
  31318. },
  31319. {
  31320. name: "PUPPY",
  31321. height: math.unit(20, "miles")
  31322. },
  31323. ]
  31324. ))
  31325. characterMakers.push(() => makeCharacter(
  31326. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31327. {
  31328. front: {
  31329. height: math.unit(6, "feet"),
  31330. weight: math.unit(150, "lb"),
  31331. name: "Front",
  31332. image: {
  31333. source: "./media/characters/en/front.svg",
  31334. extra: 1697 / 1563,
  31335. bottom: 103 / 1800
  31336. }
  31337. },
  31338. back: {
  31339. height: math.unit(6, "feet"),
  31340. weight: math.unit(150, "lb"),
  31341. name: "Back",
  31342. image: {
  31343. source: "./media/characters/en/back.svg",
  31344. extra: 1700 / 1570,
  31345. bottom: 51 / 1751
  31346. }
  31347. },
  31348. frontDressed: {
  31349. height: math.unit(6, "feet"),
  31350. weight: math.unit(150, "lb"),
  31351. name: "Front (Dressed)",
  31352. image: {
  31353. source: "./media/characters/en/front-dressed.svg",
  31354. extra: 1697 / 1563,
  31355. bottom: 103 / 1800
  31356. }
  31357. },
  31358. backDressed: {
  31359. height: math.unit(6, "feet"),
  31360. weight: math.unit(150, "lb"),
  31361. name: "Back (Dressed)",
  31362. image: {
  31363. source: "./media/characters/en/back-dressed.svg",
  31364. extra: 1700 / 1570,
  31365. bottom: 51 / 1751
  31366. }
  31367. },
  31368. },
  31369. [
  31370. {
  31371. name: "Macro",
  31372. height: math.unit(210, "feet"),
  31373. default: true
  31374. },
  31375. ]
  31376. ))
  31377. characterMakers.push(() => makeCharacter(
  31378. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31379. {
  31380. front: {
  31381. height: math.unit(6, "feet"),
  31382. weight: math.unit(150, "lb"),
  31383. name: "Front",
  31384. image: {
  31385. source: "./media/characters/haze-orris/front.svg",
  31386. extra: 3975 / 3525,
  31387. bottom: 137 / 4112
  31388. }
  31389. },
  31390. },
  31391. [
  31392. {
  31393. name: "Micro",
  31394. height: math.unit(150, "mm"),
  31395. default: true
  31396. },
  31397. ]
  31398. ))
  31399. characterMakers.push(() => makeCharacter(
  31400. { name: "Casselene Yaro", species: ["fox"], 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/casselene-yaro/front.svg",
  31408. extra: 4721 / 4541,
  31409. bottom: 82 / 4803
  31410. }
  31411. },
  31412. back: {
  31413. height: math.unit(6, "feet"),
  31414. weight: math.unit(150, "lb"),
  31415. name: "Back",
  31416. image: {
  31417. source: "./media/characters/casselene-yaro/back.svg",
  31418. extra: 4569 / 4377,
  31419. bottom: 69 / 4638
  31420. }
  31421. },
  31422. dressed: {
  31423. height: math.unit(6, "feet"),
  31424. weight: math.unit(150, "lb"),
  31425. name: "Dressed",
  31426. image: {
  31427. source: "./media/characters/casselene-yaro/dressed.svg",
  31428. extra: 4721 / 4541,
  31429. bottom: 82 / 4803
  31430. }
  31431. },
  31432. maw: {
  31433. height: math.unit(1, "feet"),
  31434. name: "Maw",
  31435. image: {
  31436. source: "./media/characters/casselene-yaro/maw.svg"
  31437. }
  31438. },
  31439. },
  31440. [
  31441. {
  31442. name: "Macro",
  31443. height: math.unit(190, "feet"),
  31444. default: true
  31445. },
  31446. ]
  31447. ))
  31448. characterMakers.push(() => makeCharacter(
  31449. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31450. {
  31451. front: {
  31452. height: math.unit(10, "feet"),
  31453. weight: math.unit(15015, "lb"),
  31454. name: "Front",
  31455. image: {
  31456. source: "./media/characters/platine/front.svg",
  31457. extra: 1741/1650,
  31458. bottom: 84/1825
  31459. }
  31460. },
  31461. side: {
  31462. height: math.unit(10, "feet"),
  31463. weight: math.unit(15015, "lb"),
  31464. name: "Side",
  31465. image: {
  31466. source: "./media/characters/platine/side.svg",
  31467. extra: 1790/1705,
  31468. bottom: 29/1819
  31469. }
  31470. },
  31471. },
  31472. [
  31473. {
  31474. name: "Normal",
  31475. height: math.unit(10, "feet"),
  31476. default: true
  31477. },
  31478. {
  31479. name: "Macro",
  31480. height: math.unit(100, "feet")
  31481. },
  31482. {
  31483. name: "Megamacro",
  31484. height: math.unit(1000, "feet")
  31485. },
  31486. ]
  31487. ))
  31488. characterMakers.push(() => makeCharacter(
  31489. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31490. {
  31491. front: {
  31492. height: math.unit(15 + 5 / 12, "feet"),
  31493. weight: math.unit(4600, "lb"),
  31494. name: "Front",
  31495. image: {
  31496. source: "./media/characters/neapolitan-ananassa/front.svg",
  31497. extra: 2903 / 2736,
  31498. bottom: 0 / 2903
  31499. }
  31500. },
  31501. side: {
  31502. height: math.unit(15 + 5 / 12, "feet"),
  31503. weight: math.unit(4600, "lb"),
  31504. name: "Side",
  31505. image: {
  31506. source: "./media/characters/neapolitan-ananassa/side.svg",
  31507. extra: 2925 / 2719,
  31508. bottom: 0 / 2925
  31509. }
  31510. },
  31511. back: {
  31512. height: math.unit(15 + 5 / 12, "feet"),
  31513. weight: math.unit(4600, "lb"),
  31514. name: "Back",
  31515. image: {
  31516. source: "./media/characters/neapolitan-ananassa/back.svg",
  31517. extra: 2903 / 2736,
  31518. bottom: 0 / 2903
  31519. }
  31520. },
  31521. },
  31522. [
  31523. {
  31524. name: "Normal",
  31525. height: math.unit(15 + 5 / 12, "feet"),
  31526. default: true
  31527. },
  31528. {
  31529. name: "Post-Millenium",
  31530. height: math.unit(35 + 5 / 12, "feet")
  31531. },
  31532. {
  31533. name: "Post-Era",
  31534. height: math.unit(450 + 5 / 12, "feet")
  31535. },
  31536. ]
  31537. ))
  31538. characterMakers.push(() => makeCharacter(
  31539. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31540. {
  31541. front: {
  31542. height: math.unit(300, "meters"),
  31543. weight: math.unit(125000, "tonnes"),
  31544. name: "Front",
  31545. image: {
  31546. source: "./media/characters/pazuzu/front.svg",
  31547. extra: 877 / 794,
  31548. bottom: 47 / 924
  31549. }
  31550. },
  31551. },
  31552. [
  31553. {
  31554. name: "Macro",
  31555. height: math.unit(300, "meters"),
  31556. default: true
  31557. },
  31558. ]
  31559. ))
  31560. characterMakers.push(() => makeCharacter(
  31561. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31562. {
  31563. side: {
  31564. height: math.unit(10 + 7 / 12, "feet"),
  31565. weight: math.unit(2.5, "tons"),
  31566. name: "Side",
  31567. image: {
  31568. source: "./media/characters/aasha/side.svg",
  31569. extra: 1345 / 1245,
  31570. bottom: 111 / 1456
  31571. }
  31572. },
  31573. back: {
  31574. height: math.unit(10 + 7 / 12, "feet"),
  31575. weight: math.unit(2.5, "tons"),
  31576. name: "Back",
  31577. image: {
  31578. source: "./media/characters/aasha/back.svg",
  31579. extra: 1133 / 1057,
  31580. bottom: 257 / 1390
  31581. }
  31582. },
  31583. },
  31584. [
  31585. {
  31586. name: "Normal",
  31587. height: math.unit(10 + 7 / 12, "feet"),
  31588. default: true
  31589. },
  31590. ]
  31591. ))
  31592. characterMakers.push(() => makeCharacter(
  31593. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31594. {
  31595. front: {
  31596. height: math.unit(6 + 3 / 12, "feet"),
  31597. name: "Front",
  31598. image: {
  31599. source: "./media/characters/nevan/front.svg",
  31600. extra: 704 / 704,
  31601. bottom: 28 / 732
  31602. }
  31603. },
  31604. back: {
  31605. height: math.unit(6 + 3 / 12, "feet"),
  31606. name: "Back",
  31607. image: {
  31608. source: "./media/characters/nevan/back.svg",
  31609. extra: 714 / 714,
  31610. bottom: 21 / 735
  31611. }
  31612. },
  31613. frontFlaccid: {
  31614. height: math.unit(6 + 3 / 12, "feet"),
  31615. name: "Front (Flaccid)",
  31616. image: {
  31617. source: "./media/characters/nevan/front-flaccid.svg",
  31618. extra: 704 / 704,
  31619. bottom: 28 / 732
  31620. }
  31621. },
  31622. frontErect: {
  31623. height: math.unit(6 + 3 / 12, "feet"),
  31624. name: "Front (Erect)",
  31625. image: {
  31626. source: "./media/characters/nevan/front-erect.svg",
  31627. extra: 704 / 704,
  31628. bottom: 28 / 732
  31629. }
  31630. },
  31631. backFlaccid: {
  31632. height: math.unit(6 + 3 / 12, "feet"),
  31633. name: "Back (Flaccid)",
  31634. image: {
  31635. source: "./media/characters/nevan/back-flaccid.svg",
  31636. extra: 714 / 714,
  31637. bottom: 21 / 735
  31638. }
  31639. },
  31640. },
  31641. [
  31642. {
  31643. name: "Normal",
  31644. height: math.unit(6 + 3 / 12, "feet"),
  31645. default: true
  31646. },
  31647. ]
  31648. ))
  31649. characterMakers.push(() => makeCharacter(
  31650. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31651. {
  31652. front: {
  31653. height: math.unit(4, "feet"),
  31654. name: "Front",
  31655. image: {
  31656. source: "./media/characters/arhan/front.svg",
  31657. extra: 3368 / 3133,
  31658. bottom: 0 / 3368
  31659. }
  31660. },
  31661. side: {
  31662. height: math.unit(4, "feet"),
  31663. name: "Side",
  31664. image: {
  31665. source: "./media/characters/arhan/side.svg",
  31666. extra: 3347 / 3105,
  31667. bottom: 0 / 3347
  31668. }
  31669. },
  31670. tongue: {
  31671. height: math.unit(1.42, "feet"),
  31672. name: "Tongue",
  31673. image: {
  31674. source: "./media/characters/arhan/tongue.svg"
  31675. }
  31676. },
  31677. head: {
  31678. height: math.unit(0.85, "feet"),
  31679. name: "Head",
  31680. image: {
  31681. source: "./media/characters/arhan/head.svg"
  31682. }
  31683. },
  31684. },
  31685. [
  31686. {
  31687. name: "Normal",
  31688. height: math.unit(4, "feet"),
  31689. default: true
  31690. },
  31691. ]
  31692. ))
  31693. characterMakers.push(() => makeCharacter(
  31694. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31695. {
  31696. front: {
  31697. height: math.unit(5 + 7.5 / 12, "feet"),
  31698. weight: math.unit(120, "lb"),
  31699. name: "Front",
  31700. image: {
  31701. source: "./media/characters/digi-duncan/front.svg",
  31702. extra: 330 / 326,
  31703. bottom: 16 / 346
  31704. }
  31705. },
  31706. side: {
  31707. height: math.unit(5 + 7.5 / 12, "feet"),
  31708. weight: math.unit(120, "lb"),
  31709. name: "Side",
  31710. image: {
  31711. source: "./media/characters/digi-duncan/side.svg",
  31712. extra: 341 / 337,
  31713. bottom: 1 / 342
  31714. }
  31715. },
  31716. back: {
  31717. height: math.unit(5 + 7.5 / 12, "feet"),
  31718. weight: math.unit(120, "lb"),
  31719. name: "Back",
  31720. image: {
  31721. source: "./media/characters/digi-duncan/back.svg",
  31722. extra: 330 / 326,
  31723. bottom: 12 / 342
  31724. }
  31725. },
  31726. },
  31727. [
  31728. {
  31729. name: "Speck",
  31730. height: math.unit(0.25, "mm")
  31731. },
  31732. {
  31733. name: "Micro",
  31734. height: math.unit(5, "mm")
  31735. },
  31736. {
  31737. name: "Tiny",
  31738. height: math.unit(0.5, "inches"),
  31739. default: true
  31740. },
  31741. {
  31742. name: "Human",
  31743. height: math.unit(5 + 7.5 / 12, "feet")
  31744. },
  31745. {
  31746. name: "Minigiant",
  31747. height: math.unit(8 + 5.25, "feet")
  31748. },
  31749. {
  31750. name: "Giant",
  31751. height: math.unit(2000, "feet")
  31752. },
  31753. {
  31754. name: "Mega",
  31755. height: math.unit(371.1, "miles")
  31756. },
  31757. ]
  31758. ))
  31759. characterMakers.push(() => makeCharacter(
  31760. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31761. {
  31762. front: {
  31763. height: math.unit(2, "meters"),
  31764. weight: math.unit(350, "kg"),
  31765. name: "Front",
  31766. image: {
  31767. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31768. extra: 898 / 838,
  31769. bottom: 9 / 907
  31770. }
  31771. },
  31772. },
  31773. [
  31774. {
  31775. name: "Micro",
  31776. height: math.unit(8, "meters")
  31777. },
  31778. {
  31779. name: "Normal",
  31780. height: math.unit(50, "meters"),
  31781. default: true
  31782. },
  31783. {
  31784. name: "Macro",
  31785. height: math.unit(500, "meters")
  31786. },
  31787. ]
  31788. ))
  31789. characterMakers.push(() => makeCharacter(
  31790. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31791. {
  31792. front: {
  31793. height: math.unit(6 + 6 / 12, "feet"),
  31794. name: "Front",
  31795. image: {
  31796. source: "./media/characters/khardesh/front.svg",
  31797. extra: 1788/1596,
  31798. bottom: 66/1854
  31799. }
  31800. },
  31801. back: {
  31802. height: math.unit(6 + 6 / 12, "feet"),
  31803. name: "Back",
  31804. image: {
  31805. source: "./media/characters/khardesh/back.svg",
  31806. extra: 1781/1584,
  31807. bottom: 68/1849
  31808. }
  31809. },
  31810. },
  31811. [
  31812. {
  31813. name: "Normal",
  31814. height: math.unit(6 + 6 / 12, "feet"),
  31815. default: true
  31816. },
  31817. {
  31818. name: "Normal+",
  31819. height: math.unit(4, "meters")
  31820. },
  31821. {
  31822. name: "Macro",
  31823. height: math.unit(50, "meters")
  31824. },
  31825. {
  31826. name: "Macro+",
  31827. height: math.unit(100, "meters")
  31828. },
  31829. {
  31830. name: "Megamacro",
  31831. height: math.unit(20, "km")
  31832. },
  31833. ]
  31834. ))
  31835. characterMakers.push(() => makeCharacter(
  31836. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31837. {
  31838. front: {
  31839. height: math.unit(6, "feet"),
  31840. weight: math.unit(150, "lb"),
  31841. name: "Front",
  31842. image: {
  31843. source: "./media/characters/kosho/front.svg",
  31844. extra: 1847 / 1847,
  31845. bottom: 86 / 1933
  31846. }
  31847. },
  31848. },
  31849. [
  31850. {
  31851. name: "Second-stage micro",
  31852. height: math.unit(0.5, "inches")
  31853. },
  31854. {
  31855. name: "First-stage micro",
  31856. height: math.unit(6, "inches")
  31857. },
  31858. {
  31859. name: "Normal",
  31860. height: math.unit(6, "feet"),
  31861. default: true
  31862. },
  31863. {
  31864. name: "First-stage macro",
  31865. height: math.unit(72, "feet")
  31866. },
  31867. {
  31868. name: "Second-stage macro",
  31869. height: math.unit(864, "feet")
  31870. },
  31871. ]
  31872. ))
  31873. characterMakers.push(() => makeCharacter(
  31874. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31875. {
  31876. normal: {
  31877. height: math.unit(4 + 6 / 12, "feet"),
  31878. name: "Normal",
  31879. image: {
  31880. source: "./media/characters/hydra/normal.svg",
  31881. extra: 2833 / 2634,
  31882. bottom: 68 / 2901
  31883. }
  31884. },
  31885. smol: {
  31886. height: math.unit(0.705, "inches"),
  31887. name: "Smol",
  31888. image: {
  31889. source: "./media/characters/hydra/smol.svg",
  31890. extra: 2715 / 2540,
  31891. bottom: 0 / 2715
  31892. }
  31893. },
  31894. },
  31895. [
  31896. {
  31897. name: "Normal",
  31898. height: math.unit(4 + 6 / 12, "feet"),
  31899. default: true
  31900. }
  31901. ]
  31902. ))
  31903. characterMakers.push(() => makeCharacter(
  31904. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31905. {
  31906. front: {
  31907. height: math.unit(0.6, "cm"),
  31908. name: "Front",
  31909. image: {
  31910. source: "./media/characters/daz/front.svg",
  31911. extra: 1682 / 1164,
  31912. bottom: 42 / 1724
  31913. }
  31914. },
  31915. },
  31916. [
  31917. {
  31918. name: "Normal",
  31919. height: math.unit(0.6, "cm"),
  31920. default: true
  31921. },
  31922. ]
  31923. ))
  31924. characterMakers.push(() => makeCharacter(
  31925. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31926. {
  31927. front: {
  31928. height: math.unit(6, "feet"),
  31929. weight: math.unit(235, "lb"),
  31930. name: "Front",
  31931. image: {
  31932. source: "./media/characters/theo-pangolin/front.svg",
  31933. extra: 1996 / 1969,
  31934. bottom: 115 / 2111
  31935. }
  31936. },
  31937. back: {
  31938. height: math.unit(6, "feet"),
  31939. weight: math.unit(235, "lb"),
  31940. name: "Back",
  31941. image: {
  31942. source: "./media/characters/theo-pangolin/back.svg",
  31943. extra: 1979 / 1979,
  31944. bottom: 40 / 2019
  31945. }
  31946. },
  31947. feral: {
  31948. height: math.unit(2, "feet"),
  31949. weight: math.unit(30, "lb"),
  31950. name: "Feral",
  31951. image: {
  31952. source: "./media/characters/theo-pangolin/feral.svg",
  31953. extra: 803 / 791,
  31954. bottom: 181 / 984
  31955. }
  31956. },
  31957. footFive: {
  31958. height: math.unit(1.43, "feet"),
  31959. name: "Foot (Five Toes)",
  31960. image: {
  31961. source: "./media/characters/theo-pangolin/foot-five.svg"
  31962. }
  31963. },
  31964. footFour: {
  31965. height: math.unit(1.43, "feet"),
  31966. name: "Foot (Four Toes)",
  31967. image: {
  31968. source: "./media/characters/theo-pangolin/foot-four.svg"
  31969. }
  31970. },
  31971. handFour: {
  31972. height: math.unit(0.81, "feet"),
  31973. name: "Hand (Four Fingers)",
  31974. image: {
  31975. source: "./media/characters/theo-pangolin/hand-four.svg"
  31976. }
  31977. },
  31978. handThree: {
  31979. height: math.unit(0.81, "feet"),
  31980. name: "Hand (Three Fingers)",
  31981. image: {
  31982. source: "./media/characters/theo-pangolin/hand-three.svg"
  31983. }
  31984. },
  31985. headFront: {
  31986. height: math.unit(1.37, "feet"),
  31987. name: "Head (Front)",
  31988. image: {
  31989. source: "./media/characters/theo-pangolin/head-front.svg"
  31990. }
  31991. },
  31992. headSide: {
  31993. height: math.unit(1.43, "feet"),
  31994. name: "Head (Side)",
  31995. image: {
  31996. source: "./media/characters/theo-pangolin/head-side.svg"
  31997. }
  31998. },
  31999. tongue: {
  32000. height: math.unit(2.29, "feet"),
  32001. name: "Tongue",
  32002. image: {
  32003. source: "./media/characters/theo-pangolin/tongue.svg"
  32004. }
  32005. },
  32006. },
  32007. [
  32008. {
  32009. name: "Normal",
  32010. height: math.unit(6, "feet")
  32011. },
  32012. {
  32013. name: "Macro",
  32014. height: math.unit(400, "feet"),
  32015. default: true
  32016. },
  32017. ]
  32018. ))
  32019. characterMakers.push(() => makeCharacter(
  32020. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32021. {
  32022. front: {
  32023. height: math.unit(6, "inches"),
  32024. weight: math.unit(0.036, "kg"),
  32025. name: "Front",
  32026. image: {
  32027. source: "./media/characters/renée/front.svg",
  32028. extra: 900 / 886,
  32029. bottom: 8 / 908
  32030. }
  32031. },
  32032. },
  32033. [
  32034. {
  32035. name: "Nano",
  32036. height: math.unit(1, "nm")
  32037. },
  32038. {
  32039. name: "Micro",
  32040. height: math.unit(1, "mm")
  32041. },
  32042. {
  32043. name: "Normal",
  32044. height: math.unit(6, "inches")
  32045. },
  32046. {
  32047. name: "Macro",
  32048. height: math.unit(2000, "feet"),
  32049. default: true
  32050. },
  32051. {
  32052. name: "Megamacro",
  32053. height: math.unit(2, "km")
  32054. },
  32055. {
  32056. name: "Gigamacro",
  32057. height: math.unit(2000, "km")
  32058. },
  32059. {
  32060. name: "Teramacro",
  32061. height: math.unit(250000, "km")
  32062. },
  32063. ]
  32064. ))
  32065. characterMakers.push(() => makeCharacter(
  32066. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32067. {
  32068. front: {
  32069. height: math.unit(4, "meters"),
  32070. weight: math.unit(150, "kg"),
  32071. name: "Front",
  32072. image: {
  32073. source: "./media/characters/caledvwlch/front.svg",
  32074. extra: 1757/1537,
  32075. bottom: 31/1788
  32076. }
  32077. },
  32078. side: {
  32079. height: math.unit(4, "meters"),
  32080. weight: math.unit(150, "kg"),
  32081. name: "Side",
  32082. image: {
  32083. source: "./media/characters/caledvwlch/side.svg",
  32084. extra: 1605 / 1536,
  32085. bottom: 31 / 1636
  32086. }
  32087. },
  32088. back: {
  32089. height: math.unit(4, "meters"),
  32090. weight: math.unit(150, "kg"),
  32091. name: "Back",
  32092. image: {
  32093. source: "./media/characters/caledvwlch/back.svg",
  32094. extra: 1635 / 1565,
  32095. bottom: 27 / 1662
  32096. }
  32097. },
  32098. },
  32099. [
  32100. {
  32101. name: "\"Incognito\"",
  32102. height: math.unit(4, "meters")
  32103. },
  32104. {
  32105. name: "Small rampage",
  32106. height: math.unit(600, "meters")
  32107. },
  32108. {
  32109. name: "Mega",
  32110. height: math.unit(30, "km")
  32111. },
  32112. {
  32113. name: "Home-size",
  32114. height: math.unit(50, "km"),
  32115. default: true
  32116. },
  32117. {
  32118. name: "Giga",
  32119. height: math.unit(300, "km")
  32120. },
  32121. {
  32122. name: "Lounging",
  32123. height: math.unit(11000, "km")
  32124. },
  32125. {
  32126. name: "Planet snacking",
  32127. height: math.unit(2000000, "km")
  32128. },
  32129. ]
  32130. ))
  32131. characterMakers.push(() => makeCharacter(
  32132. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32133. {
  32134. front: {
  32135. height: math.unit(6, "feet"),
  32136. weight: math.unit(215, "lb"),
  32137. name: "Front",
  32138. image: {
  32139. source: "./media/characters/sapphire-svell/front.svg",
  32140. extra: 495 / 455,
  32141. bottom: 20 / 515
  32142. }
  32143. },
  32144. back: {
  32145. height: math.unit(6, "feet"),
  32146. weight: math.unit(216, "lb"),
  32147. name: "Back",
  32148. image: {
  32149. source: "./media/characters/sapphire-svell/back.svg",
  32150. extra: 497 / 477,
  32151. bottom: 7 / 504
  32152. }
  32153. },
  32154. maw: {
  32155. height: math.unit(1.57, "feet"),
  32156. name: "Maw",
  32157. image: {
  32158. source: "./media/characters/sapphire-svell/maw.svg"
  32159. }
  32160. },
  32161. foot: {
  32162. height: math.unit(1.07, "feet"),
  32163. name: "Foot",
  32164. image: {
  32165. source: "./media/characters/sapphire-svell/foot.svg"
  32166. }
  32167. },
  32168. toering: {
  32169. height: math.unit(1.7, "inch"),
  32170. name: "Toering",
  32171. image: {
  32172. source: "./media/characters/sapphire-svell/toering.svg"
  32173. }
  32174. },
  32175. },
  32176. [
  32177. {
  32178. name: "Normal",
  32179. height: math.unit(300, "feet"),
  32180. default: true
  32181. },
  32182. {
  32183. name: "Augmented",
  32184. height: math.unit(1250, "feet")
  32185. },
  32186. {
  32187. name: "Unleashed",
  32188. height: math.unit(3000, "feet")
  32189. },
  32190. ]
  32191. ))
  32192. characterMakers.push(() => makeCharacter(
  32193. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32194. {
  32195. side: {
  32196. height: math.unit(2 + 3 / 12, "feet"),
  32197. weight: math.unit(110, "lb"),
  32198. name: "Side",
  32199. image: {
  32200. source: "./media/characters/glitch-flux/side.svg",
  32201. extra: 997 / 805,
  32202. bottom: 20 / 1017
  32203. }
  32204. },
  32205. },
  32206. [
  32207. {
  32208. name: "Normal",
  32209. height: math.unit(2 + 3 / 12, "feet"),
  32210. default: true
  32211. },
  32212. ]
  32213. ))
  32214. characterMakers.push(() => makeCharacter(
  32215. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32216. {
  32217. front: {
  32218. height: math.unit(4, "meters"),
  32219. name: "Front",
  32220. image: {
  32221. source: "./media/characters/mid/front.svg",
  32222. extra: 507 / 476,
  32223. bottom: 17 / 524
  32224. }
  32225. },
  32226. back: {
  32227. height: math.unit(4, "meters"),
  32228. name: "Back",
  32229. image: {
  32230. source: "./media/characters/mid/back.svg",
  32231. extra: 519 / 487,
  32232. bottom: 7 / 526
  32233. }
  32234. },
  32235. stuck: {
  32236. height: math.unit(2.2, "meters"),
  32237. name: "Stuck",
  32238. image: {
  32239. source: "./media/characters/mid/stuck.svg",
  32240. extra: 1951 / 1869,
  32241. bottom: 88 / 2039
  32242. }
  32243. }
  32244. },
  32245. [
  32246. {
  32247. name: "Normal",
  32248. height: math.unit(4, "meters"),
  32249. default: true
  32250. },
  32251. {
  32252. name: "Big",
  32253. height: math.unit(10, "meters")
  32254. },
  32255. {
  32256. name: "Macro",
  32257. height: math.unit(800, "meters")
  32258. },
  32259. {
  32260. name: "Megamacro",
  32261. height: math.unit(100, "km")
  32262. },
  32263. {
  32264. name: "Overgrown",
  32265. height: math.unit(1, "parsec")
  32266. },
  32267. ]
  32268. ))
  32269. characterMakers.push(() => makeCharacter(
  32270. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32271. {
  32272. front: {
  32273. height: math.unit(2.5, "meters"),
  32274. weight: math.unit(225, "kg"),
  32275. name: "Front",
  32276. image: {
  32277. source: "./media/characters/iris/front.svg",
  32278. extra: 3348 / 3251,
  32279. bottom: 205 / 3553
  32280. }
  32281. },
  32282. maw: {
  32283. height: math.unit(0.56, "meter"),
  32284. name: "Maw",
  32285. image: {
  32286. source: "./media/characters/iris/maw.svg"
  32287. }
  32288. },
  32289. },
  32290. [
  32291. {
  32292. name: "Mewter cat",
  32293. height: math.unit(1.2, "meters")
  32294. },
  32295. {
  32296. name: "Normal",
  32297. height: math.unit(2.5, "meters"),
  32298. default: true
  32299. },
  32300. {
  32301. name: "Minimacro",
  32302. height: math.unit(18, "feet")
  32303. },
  32304. {
  32305. name: "Macro",
  32306. height: math.unit(140, "feet")
  32307. },
  32308. {
  32309. name: "Macro+",
  32310. height: math.unit(180, "meters")
  32311. },
  32312. {
  32313. name: "Megamacro",
  32314. height: math.unit(2746, "meters")
  32315. },
  32316. ]
  32317. ))
  32318. characterMakers.push(() => makeCharacter(
  32319. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32320. {
  32321. front: {
  32322. height: math.unit(6, "feet"),
  32323. weight: math.unit(135, "lb"),
  32324. name: "Front",
  32325. image: {
  32326. source: "./media/characters/axel/front.svg",
  32327. extra: 908 / 908,
  32328. bottom: 58 / 966
  32329. }
  32330. },
  32331. side: {
  32332. height: math.unit(6, "feet"),
  32333. weight: math.unit(135, "lb"),
  32334. name: "Side",
  32335. image: {
  32336. source: "./media/characters/axel/side.svg",
  32337. extra: 958 / 958,
  32338. bottom: 11 / 969
  32339. }
  32340. },
  32341. back: {
  32342. height: math.unit(6, "feet"),
  32343. weight: math.unit(135, "lb"),
  32344. name: "Back",
  32345. image: {
  32346. source: "./media/characters/axel/back.svg",
  32347. extra: 887 / 887,
  32348. bottom: 34 / 921
  32349. }
  32350. },
  32351. head: {
  32352. height: math.unit(1.07, "feet"),
  32353. name: "Head",
  32354. image: {
  32355. source: "./media/characters/axel/head.svg"
  32356. }
  32357. },
  32358. beak: {
  32359. height: math.unit(1.4, "feet"),
  32360. name: "Beak",
  32361. image: {
  32362. source: "./media/characters/axel/beak.svg"
  32363. }
  32364. },
  32365. beakSide: {
  32366. height: math.unit(1.4, "feet"),
  32367. name: "Beak Side",
  32368. image: {
  32369. source: "./media/characters/axel/beak-side.svg"
  32370. }
  32371. },
  32372. sheath: {
  32373. height: math.unit(0.5, "feet"),
  32374. name: "Sheath",
  32375. image: {
  32376. source: "./media/characters/axel/sheath.svg"
  32377. }
  32378. },
  32379. dick: {
  32380. height: math.unit(0.98, "feet"),
  32381. name: "Dick",
  32382. image: {
  32383. source: "./media/characters/axel/dick.svg"
  32384. }
  32385. },
  32386. },
  32387. [
  32388. {
  32389. name: "Macro",
  32390. height: math.unit(68, "meters"),
  32391. default: true
  32392. },
  32393. ]
  32394. ))
  32395. characterMakers.push(() => makeCharacter(
  32396. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32397. {
  32398. front: {
  32399. height: math.unit(3.5, "meters"),
  32400. weight: math.unit(1200, "kg"),
  32401. name: "Front",
  32402. image: {
  32403. source: "./media/characters/joanna/front.svg",
  32404. extra: 1596 / 1488,
  32405. bottom: 29 / 1625
  32406. }
  32407. },
  32408. back: {
  32409. height: math.unit(3.5, "meters"),
  32410. weight: math.unit(1200, "kg"),
  32411. name: "Back",
  32412. image: {
  32413. source: "./media/characters/joanna/back.svg",
  32414. extra: 1594 / 1495,
  32415. bottom: 26 / 1620
  32416. }
  32417. },
  32418. frontShorts: {
  32419. height: math.unit(3.5, "meters"),
  32420. weight: math.unit(1200, "kg"),
  32421. name: "Front (Shorts)",
  32422. image: {
  32423. source: "./media/characters/joanna/front-shorts.svg",
  32424. extra: 1596 / 1488,
  32425. bottom: 29 / 1625
  32426. }
  32427. },
  32428. frontBiker: {
  32429. height: math.unit(3.5, "meters"),
  32430. weight: math.unit(1200, "kg"),
  32431. name: "Front (Biker)",
  32432. image: {
  32433. source: "./media/characters/joanna/front-biker.svg",
  32434. extra: 1596 / 1488,
  32435. bottom: 29 / 1625
  32436. }
  32437. },
  32438. backBiker: {
  32439. height: math.unit(3.5, "meters"),
  32440. weight: math.unit(1200, "kg"),
  32441. name: "Back (Biker)",
  32442. image: {
  32443. source: "./media/characters/joanna/back-biker.svg",
  32444. extra: 1594 / 1495,
  32445. bottom: 88 / 1682
  32446. }
  32447. },
  32448. bikeLeft: {
  32449. height: math.unit(2.4, "meters"),
  32450. weight: math.unit(1600, "kg"),
  32451. name: "Bike (Left)",
  32452. image: {
  32453. source: "./media/characters/joanna/bike-left.svg",
  32454. extra: 720 / 720,
  32455. bottom: 8 / 728
  32456. }
  32457. },
  32458. bikeRight: {
  32459. height: math.unit(2.4, "meters"),
  32460. weight: math.unit(1600, "kg"),
  32461. name: "Bike (Right)",
  32462. image: {
  32463. source: "./media/characters/joanna/bike-right.svg",
  32464. extra: 720 / 720,
  32465. bottom: 8 / 728
  32466. }
  32467. },
  32468. },
  32469. [
  32470. {
  32471. name: "Incognito",
  32472. height: math.unit(3.5, "meters")
  32473. },
  32474. {
  32475. name: "Casual Big",
  32476. height: math.unit(200, "meters")
  32477. },
  32478. {
  32479. name: "Macro",
  32480. height: math.unit(600, "meters")
  32481. },
  32482. {
  32483. name: "Original",
  32484. height: math.unit(20, "km"),
  32485. default: true
  32486. },
  32487. {
  32488. name: "Giga",
  32489. height: math.unit(400, "km")
  32490. },
  32491. {
  32492. name: "Lounging",
  32493. height: math.unit(1500, "km")
  32494. },
  32495. {
  32496. name: "Planetary",
  32497. height: math.unit(200000, "km")
  32498. },
  32499. ]
  32500. ))
  32501. characterMakers.push(() => makeCharacter(
  32502. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32503. {
  32504. front: {
  32505. height: math.unit(6, "feet"),
  32506. weight: math.unit(150, "lb"),
  32507. name: "Front",
  32508. image: {
  32509. source: "./media/characters/hugo-sigil/front.svg",
  32510. extra: 522 / 500,
  32511. bottom: 2 / 524
  32512. }
  32513. },
  32514. back: {
  32515. height: math.unit(6, "feet"),
  32516. weight: math.unit(150, "lb"),
  32517. name: "Back",
  32518. image: {
  32519. source: "./media/characters/hugo-sigil/back.svg",
  32520. extra: 519 / 495,
  32521. bottom: 5 / 524
  32522. }
  32523. },
  32524. maw: {
  32525. height: math.unit(1.4, "feet"),
  32526. weight: math.unit(150, "lb"),
  32527. name: "Maw",
  32528. image: {
  32529. source: "./media/characters/hugo-sigil/maw.svg"
  32530. }
  32531. },
  32532. feet: {
  32533. height: math.unit(1.56, "feet"),
  32534. weight: math.unit(150, "lb"),
  32535. name: "Feet",
  32536. image: {
  32537. source: "./media/characters/hugo-sigil/feet.svg",
  32538. extra: 177 / 177,
  32539. bottom: 12 / 189
  32540. }
  32541. },
  32542. },
  32543. [
  32544. {
  32545. name: "Normal",
  32546. height: math.unit(6, "feet")
  32547. },
  32548. {
  32549. name: "Macro",
  32550. height: math.unit(200, "feet"),
  32551. default: true
  32552. },
  32553. ]
  32554. ))
  32555. characterMakers.push(() => makeCharacter(
  32556. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32557. {
  32558. front: {
  32559. height: math.unit(6, "feet"),
  32560. weight: math.unit(150, "lb"),
  32561. name: "Front",
  32562. image: {
  32563. source: "./media/characters/peri/front.svg",
  32564. extra: 2354 / 2233,
  32565. bottom: 49 / 2403
  32566. }
  32567. },
  32568. },
  32569. [
  32570. {
  32571. name: "Really Small",
  32572. height: math.unit(1, "nm")
  32573. },
  32574. {
  32575. name: "Micro",
  32576. height: math.unit(4, "inches")
  32577. },
  32578. {
  32579. name: "Normal",
  32580. height: math.unit(7, "inches"),
  32581. default: true
  32582. },
  32583. {
  32584. name: "Macro",
  32585. height: math.unit(400, "feet")
  32586. },
  32587. {
  32588. name: "Megamacro",
  32589. height: math.unit(100, "miles")
  32590. },
  32591. ]
  32592. ))
  32593. characterMakers.push(() => makeCharacter(
  32594. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32595. {
  32596. frontSlim: {
  32597. height: math.unit(7, "feet"),
  32598. name: "Front (Slim)",
  32599. image: {
  32600. source: "./media/characters/issilora/front-slim.svg",
  32601. extra: 529 / 449,
  32602. bottom: 53 / 582
  32603. }
  32604. },
  32605. sideSlim: {
  32606. height: math.unit(7, "feet"),
  32607. name: "Side (Slim)",
  32608. image: {
  32609. source: "./media/characters/issilora/side-slim.svg",
  32610. extra: 570 / 480,
  32611. bottom: 30 / 600
  32612. }
  32613. },
  32614. backSlim: {
  32615. height: math.unit(7, "feet"),
  32616. name: "Back (Slim)",
  32617. image: {
  32618. source: "./media/characters/issilora/back-slim.svg",
  32619. extra: 537 / 455,
  32620. bottom: 46 / 583
  32621. }
  32622. },
  32623. frontBuff: {
  32624. height: math.unit(7, "feet"),
  32625. name: "Front (Buff)",
  32626. image: {
  32627. source: "./media/characters/issilora/front-buff.svg",
  32628. extra: 2310 / 2035,
  32629. bottom: 335 / 2645
  32630. }
  32631. },
  32632. head: {
  32633. height: math.unit(1.94, "feet"),
  32634. name: "Head",
  32635. image: {
  32636. source: "./media/characters/issilora/head.svg"
  32637. }
  32638. },
  32639. },
  32640. [
  32641. {
  32642. name: "Minimum",
  32643. height: math.unit(7, "feet")
  32644. },
  32645. {
  32646. name: "Comfortable",
  32647. height: math.unit(17, "feet")
  32648. },
  32649. {
  32650. name: "Fun Size",
  32651. height: math.unit(47, "feet")
  32652. },
  32653. {
  32654. name: "Natural Macro",
  32655. height: math.unit(137, "feet"),
  32656. default: true
  32657. },
  32658. {
  32659. name: "Maximum Kaiju",
  32660. height: math.unit(397, "feet")
  32661. },
  32662. ]
  32663. ))
  32664. characterMakers.push(() => makeCharacter(
  32665. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32666. {
  32667. front: {
  32668. height: math.unit(50 + 9/12, "feet"),
  32669. weight: math.unit(32.8, "tons"),
  32670. name: "Front",
  32671. image: {
  32672. source: "./media/characters/irb'iiritaahn/front.svg",
  32673. extra: 1878/1826,
  32674. bottom: 326/2204
  32675. }
  32676. },
  32677. back: {
  32678. height: math.unit(50 + 9/12, "feet"),
  32679. weight: math.unit(32.8, "tons"),
  32680. name: "Back",
  32681. image: {
  32682. source: "./media/characters/irb'iiritaahn/back.svg",
  32683. extra: 2052/2018,
  32684. bottom: 152/2204
  32685. }
  32686. },
  32687. head: {
  32688. height: math.unit(12.86, "feet"),
  32689. name: "Head",
  32690. image: {
  32691. source: "./media/characters/irb'iiritaahn/head.svg"
  32692. }
  32693. },
  32694. maw: {
  32695. height: math.unit(9.66, "feet"),
  32696. name: "Maw",
  32697. image: {
  32698. source: "./media/characters/irb'iiritaahn/maw.svg"
  32699. }
  32700. },
  32701. frontDick: {
  32702. height: math.unit(8.78461, "feet"),
  32703. name: "Front Dick",
  32704. image: {
  32705. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32706. }
  32707. },
  32708. rearDick: {
  32709. height: math.unit(8.78461, "feet"),
  32710. name: "Rear Dick",
  32711. image: {
  32712. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32713. }
  32714. },
  32715. rearDickUnfolded: {
  32716. height: math.unit(8.78, "feet"),
  32717. name: "Rear Dick (Unfolded)",
  32718. image: {
  32719. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32720. }
  32721. },
  32722. wings: {
  32723. height: math.unit(43, "feet"),
  32724. name: "Wings",
  32725. image: {
  32726. source: "./media/characters/irb'iiritaahn/wings.svg"
  32727. }
  32728. },
  32729. },
  32730. [
  32731. {
  32732. name: "Macro",
  32733. height: math.unit(50 + 9/12, "feet"),
  32734. default: true
  32735. },
  32736. ]
  32737. ))
  32738. characterMakers.push(() => makeCharacter(
  32739. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32740. {
  32741. front: {
  32742. height: math.unit(205, "cm"),
  32743. weight: math.unit(102, "kg"),
  32744. name: "Front",
  32745. image: {
  32746. source: "./media/characters/irbisgreif/front.svg",
  32747. extra: 785/706,
  32748. bottom: 13/798
  32749. }
  32750. },
  32751. back: {
  32752. height: math.unit(205, "cm"),
  32753. weight: math.unit(102, "kg"),
  32754. name: "Back",
  32755. image: {
  32756. source: "./media/characters/irbisgreif/back.svg",
  32757. extra: 713/701,
  32758. bottom: 26/739
  32759. }
  32760. },
  32761. frontDressed: {
  32762. height: math.unit(216, "cm"),
  32763. weight: math.unit(102, "kg"),
  32764. name: "Front-dressed",
  32765. image: {
  32766. source: "./media/characters/irbisgreif/front-dressed.svg",
  32767. extra: 902/776,
  32768. bottom: 14/916
  32769. }
  32770. },
  32771. sideDressed: {
  32772. height: math.unit(195, "cm"),
  32773. weight: math.unit(102, "kg"),
  32774. name: "Side-dressed",
  32775. image: {
  32776. source: "./media/characters/irbisgreif/side-dressed.svg",
  32777. extra: 788/688,
  32778. bottom: 21/809
  32779. }
  32780. },
  32781. backDressed: {
  32782. height: math.unit(216, "cm"),
  32783. weight: math.unit(102, "kg"),
  32784. name: "Back-dressed",
  32785. image: {
  32786. source: "./media/characters/irbisgreif/back-dressed.svg",
  32787. extra: 901/783,
  32788. bottom: 10/911
  32789. }
  32790. },
  32791. dick: {
  32792. height: math.unit(0.49, "feet"),
  32793. name: "Dick",
  32794. image: {
  32795. source: "./media/characters/irbisgreif/dick.svg"
  32796. }
  32797. },
  32798. wingTop: {
  32799. height: math.unit(1.93 , "feet"),
  32800. name: "Wing-top",
  32801. image: {
  32802. source: "./media/characters/irbisgreif/wing-top.svg"
  32803. }
  32804. },
  32805. wingBottom: {
  32806. height: math.unit(1.93 , "feet"),
  32807. name: "Wing-bottom",
  32808. image: {
  32809. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32810. }
  32811. },
  32812. },
  32813. [
  32814. {
  32815. name: "Normal",
  32816. height: math.unit(216, "cm"),
  32817. default: true
  32818. },
  32819. ]
  32820. ))
  32821. characterMakers.push(() => makeCharacter(
  32822. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32823. {
  32824. front: {
  32825. height: math.unit(6, "feet"),
  32826. weight: math.unit(150, "lb"),
  32827. name: "Front",
  32828. image: {
  32829. source: "./media/characters/pride/front.svg",
  32830. extra: 1299/1230,
  32831. bottom: 18/1317
  32832. }
  32833. },
  32834. },
  32835. [
  32836. {
  32837. name: "Normal",
  32838. height: math.unit(7, "feet")
  32839. },
  32840. {
  32841. name: "Mini-macro",
  32842. height: math.unit(11, "feet")
  32843. },
  32844. {
  32845. name: "Macro",
  32846. height: math.unit(15, "meters"),
  32847. default: true
  32848. },
  32849. {
  32850. name: "Macro+",
  32851. height: math.unit(40, "meters")
  32852. },
  32853. ]
  32854. ))
  32855. characterMakers.push(() => makeCharacter(
  32856. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32857. {
  32858. front: {
  32859. height: math.unit(4 + 2 / 12, "feet"),
  32860. weight: math.unit(95, "lb"),
  32861. name: "Front",
  32862. image: {
  32863. source: "./media/characters/vaelophis-nyx/front.svg",
  32864. extra: 2532/2330,
  32865. bottom: 0/2532
  32866. }
  32867. },
  32868. back: {
  32869. height: math.unit(4 + 2 / 12, "feet"),
  32870. weight: math.unit(95, "lb"),
  32871. name: "Back",
  32872. image: {
  32873. source: "./media/characters/vaelophis-nyx/back.svg",
  32874. extra: 2484/2361,
  32875. bottom: 0/2484
  32876. }
  32877. },
  32878. feralSide: {
  32879. height: math.unit(2 + 1/12, "feet"),
  32880. weight: math.unit(20, "lb"),
  32881. name: "Feral (Side)",
  32882. image: {
  32883. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32884. extra: 1721/1581,
  32885. bottom: 70/1791
  32886. }
  32887. },
  32888. feralLazing: {
  32889. height: math.unit(1.08, "feet"),
  32890. weight: math.unit(20, "lb"),
  32891. name: "Feral (Lazing)",
  32892. image: {
  32893. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32894. extra: 822/822,
  32895. bottom: 248/1070
  32896. }
  32897. },
  32898. ear: {
  32899. height: math.unit(0.416, "feet"),
  32900. name: "Ear",
  32901. image: {
  32902. source: "./media/characters/vaelophis-nyx/ear.svg"
  32903. }
  32904. },
  32905. eye: {
  32906. height: math.unit(0.0748, "feet"),
  32907. name: "Eye",
  32908. image: {
  32909. source: "./media/characters/vaelophis-nyx/eye.svg"
  32910. }
  32911. },
  32912. mouth: {
  32913. height: math.unit(0.378, "feet"),
  32914. name: "Mouth",
  32915. image: {
  32916. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32917. }
  32918. },
  32919. spade: {
  32920. height: math.unit(0.55, "feet"),
  32921. name: "Spade",
  32922. image: {
  32923. source: "./media/characters/vaelophis-nyx/spade.svg"
  32924. }
  32925. },
  32926. },
  32927. [
  32928. {
  32929. name: "Normal",
  32930. height: math.unit(4 + 2/12, "feet"),
  32931. default: true
  32932. },
  32933. ]
  32934. ))
  32935. characterMakers.push(() => makeCharacter(
  32936. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32937. {
  32938. front: {
  32939. height: math.unit(7, "feet"),
  32940. weight: math.unit(231, "lb"),
  32941. name: "Front",
  32942. image: {
  32943. source: "./media/characters/flux/front.svg",
  32944. extra: 919/871,
  32945. bottom: 0/919
  32946. }
  32947. },
  32948. back: {
  32949. height: math.unit(7, "feet"),
  32950. weight: math.unit(231, "lb"),
  32951. name: "Back",
  32952. image: {
  32953. source: "./media/characters/flux/back.svg",
  32954. extra: 1040/992,
  32955. bottom: 0/1040
  32956. }
  32957. },
  32958. frontDressed: {
  32959. height: math.unit(7, "feet"),
  32960. weight: math.unit(231, "lb"),
  32961. name: "Front (Dressed)",
  32962. image: {
  32963. source: "./media/characters/flux/front-dressed.svg",
  32964. extra: 919/871,
  32965. bottom: 0/919
  32966. }
  32967. },
  32968. feralSide: {
  32969. height: math.unit(5, "feet"),
  32970. weight: math.unit(150, "lb"),
  32971. name: "Feral (Side)",
  32972. image: {
  32973. source: "./media/characters/flux/feral-side.svg",
  32974. extra: 598/528,
  32975. bottom: 28/626
  32976. }
  32977. },
  32978. head: {
  32979. height: math.unit(1.585, "feet"),
  32980. name: "Head",
  32981. image: {
  32982. source: "./media/characters/flux/head.svg"
  32983. }
  32984. },
  32985. headSide: {
  32986. height: math.unit(1.74, "feet"),
  32987. name: "Head (Side)",
  32988. image: {
  32989. source: "./media/characters/flux/head-side.svg"
  32990. }
  32991. },
  32992. headSideFire: {
  32993. height: math.unit(1.76, "feet"),
  32994. name: "Head (Side, Fire)",
  32995. image: {
  32996. source: "./media/characters/flux/head-side-fire.svg"
  32997. }
  32998. },
  32999. },
  33000. [
  33001. {
  33002. name: "Normal",
  33003. height: math.unit(7, "feet"),
  33004. default: true
  33005. },
  33006. ]
  33007. ))
  33008. characterMakers.push(() => makeCharacter(
  33009. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33010. {
  33011. front: {
  33012. height: math.unit(9, "feet"),
  33013. weight: math.unit(1012, "lb"),
  33014. name: "Front",
  33015. image: {
  33016. source: "./media/characters/ulfra-lupae/front.svg",
  33017. extra: 1083/1011,
  33018. bottom: 67/1150
  33019. }
  33020. },
  33021. },
  33022. [
  33023. {
  33024. name: "Micro",
  33025. height: math.unit(6, "inches")
  33026. },
  33027. {
  33028. name: "Socializing",
  33029. height: math.unit(6 + 5/12, "feet")
  33030. },
  33031. {
  33032. name: "Normal",
  33033. height: math.unit(9, "feet"),
  33034. default: true
  33035. },
  33036. {
  33037. name: "Macro",
  33038. height: math.unit(150, "feet")
  33039. },
  33040. ]
  33041. ))
  33042. characterMakers.push(() => makeCharacter(
  33043. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33044. {
  33045. front: {
  33046. height: math.unit(5 + 2/12, "feet"),
  33047. weight: math.unit(120, "lb"),
  33048. name: "Front",
  33049. image: {
  33050. source: "./media/characters/timber/front.svg",
  33051. extra: 2814/2705,
  33052. bottom: 181/2995
  33053. }
  33054. },
  33055. },
  33056. [
  33057. {
  33058. name: "Normal",
  33059. height: math.unit(5 + 2/12, "feet"),
  33060. default: true
  33061. },
  33062. ]
  33063. ))
  33064. characterMakers.push(() => makeCharacter(
  33065. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33066. {
  33067. front: {
  33068. height: math.unit(9, "feet"),
  33069. name: "Front",
  33070. image: {
  33071. source: "./media/characters/nicki/front.svg",
  33072. extra: 1240/990,
  33073. bottom: 45/1285
  33074. },
  33075. form: "anthro",
  33076. default: true
  33077. },
  33078. side: {
  33079. height: math.unit(9, "feet"),
  33080. name: "Side",
  33081. image: {
  33082. source: "./media/characters/nicki/side.svg",
  33083. extra: 1047/973,
  33084. bottom: 61/1108
  33085. },
  33086. form: "anthro"
  33087. },
  33088. back: {
  33089. height: math.unit(9, "feet"),
  33090. name: "Back",
  33091. image: {
  33092. source: "./media/characters/nicki/back.svg",
  33093. extra: 1006/965,
  33094. bottom: 39/1045
  33095. },
  33096. form: "anthro"
  33097. },
  33098. taur: {
  33099. height: math.unit(15, "feet"),
  33100. name: "Taur",
  33101. image: {
  33102. source: "./media/characters/nicki/taur.svg",
  33103. extra: 1592/1347,
  33104. bottom: 0/1592
  33105. },
  33106. form: "taur",
  33107. default: true
  33108. },
  33109. },
  33110. [
  33111. {
  33112. name: "Normal",
  33113. height: math.unit(9, "feet"),
  33114. form: "anthro",
  33115. default: true
  33116. },
  33117. {
  33118. name: "Normal",
  33119. height: math.unit(15, "feet"),
  33120. form: "taur",
  33121. default: true
  33122. }
  33123. ],
  33124. {
  33125. "anthro": {
  33126. name: "Anthro",
  33127. default: true
  33128. },
  33129. "taur": {
  33130. name: "Taur"
  33131. }
  33132. }
  33133. ))
  33134. characterMakers.push(() => makeCharacter(
  33135. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33136. {
  33137. front: {
  33138. height: math.unit(7 + 10/12, "feet"),
  33139. weight: math.unit(3.5, "tons"),
  33140. name: "Front",
  33141. image: {
  33142. source: "./media/characters/lee/front.svg",
  33143. extra: 1773/1615,
  33144. bottom: 86/1859
  33145. }
  33146. },
  33147. hand: {
  33148. height: math.unit(1.78, "feet"),
  33149. name: "Hand",
  33150. image: {
  33151. source: "./media/characters/lee/hand.svg"
  33152. }
  33153. },
  33154. maw: {
  33155. height: math.unit(1.18, "feet"),
  33156. name: "Maw",
  33157. image: {
  33158. source: "./media/characters/lee/maw.svg"
  33159. }
  33160. },
  33161. },
  33162. [
  33163. {
  33164. name: "Normal",
  33165. height: math.unit(7 + 10/12, "feet"),
  33166. default: true
  33167. },
  33168. ]
  33169. ))
  33170. characterMakers.push(() => makeCharacter(
  33171. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33172. {
  33173. front: {
  33174. height: math.unit(9, "feet"),
  33175. name: "Front",
  33176. image: {
  33177. source: "./media/characters/guti/front.svg",
  33178. extra: 4551/4355,
  33179. bottom: 123/4674
  33180. }
  33181. },
  33182. tongue: {
  33183. height: math.unit(1, "feet"),
  33184. name: "Tongue",
  33185. image: {
  33186. source: "./media/characters/guti/tongue.svg"
  33187. }
  33188. },
  33189. paw: {
  33190. height: math.unit(1.18, "feet"),
  33191. name: "Paw",
  33192. image: {
  33193. source: "./media/characters/guti/paw.svg"
  33194. }
  33195. },
  33196. },
  33197. [
  33198. {
  33199. name: "Normal",
  33200. height: math.unit(9, "feet"),
  33201. default: true
  33202. },
  33203. ]
  33204. ))
  33205. characterMakers.push(() => makeCharacter(
  33206. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33207. {
  33208. side: {
  33209. height: math.unit(5, "meters"),
  33210. name: "Side",
  33211. image: {
  33212. source: "./media/characters/vesper/side.svg",
  33213. extra: 1605/1518,
  33214. bottom: 0/1605
  33215. }
  33216. },
  33217. },
  33218. [
  33219. {
  33220. name: "Small",
  33221. height: math.unit(5, "meters")
  33222. },
  33223. {
  33224. name: "Sage",
  33225. height: math.unit(100, "meters"),
  33226. default: true
  33227. },
  33228. {
  33229. name: "Fun Size",
  33230. height: math.unit(600, "meters")
  33231. },
  33232. {
  33233. name: "Goddess",
  33234. height: math.unit(20000, "km")
  33235. },
  33236. {
  33237. name: "Maximum",
  33238. height: math.unit(5, "galaxies")
  33239. },
  33240. ]
  33241. ))
  33242. characterMakers.push(() => makeCharacter(
  33243. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33244. {
  33245. front: {
  33246. height: math.unit(6 + 3/12, "feet"),
  33247. weight: math.unit(190, "lb"),
  33248. name: "Front",
  33249. image: {
  33250. source: "./media/characters/gawain/front.svg",
  33251. extra: 2222/2139,
  33252. bottom: 90/2312
  33253. }
  33254. },
  33255. back: {
  33256. height: math.unit(6 + 3/12, "feet"),
  33257. weight: math.unit(190, "lb"),
  33258. name: "Back",
  33259. image: {
  33260. source: "./media/characters/gawain/back.svg",
  33261. extra: 2199/2111,
  33262. bottom: 73/2272
  33263. }
  33264. },
  33265. },
  33266. [
  33267. {
  33268. name: "Normal",
  33269. height: math.unit(6 + 3/12, "feet"),
  33270. default: true
  33271. },
  33272. ]
  33273. ))
  33274. characterMakers.push(() => makeCharacter(
  33275. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33276. {
  33277. side: {
  33278. height: math.unit(3.5, "meters"),
  33279. weight: math.unit(16000, "lb"),
  33280. name: "Side",
  33281. image: {
  33282. source: "./media/characters/dascalti/side.svg",
  33283. extra: 392/273,
  33284. bottom: 47/439
  33285. }
  33286. },
  33287. breath: {
  33288. height: math.unit(7.4, "feet"),
  33289. name: "Breath",
  33290. image: {
  33291. source: "./media/characters/dascalti/breath.svg"
  33292. }
  33293. },
  33294. fed: {
  33295. height: math.unit(3.6, "meters"),
  33296. weight: math.unit(16000, "lb"),
  33297. name: "Fed",
  33298. image: {
  33299. source: "./media/characters/dascalti/fed.svg",
  33300. extra: 1419/820,
  33301. bottom: 95/1514
  33302. }
  33303. },
  33304. },
  33305. [
  33306. {
  33307. name: "Normal",
  33308. height: math.unit(3.5, "meters"),
  33309. default: true
  33310. },
  33311. ]
  33312. ))
  33313. characterMakers.push(() => makeCharacter(
  33314. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33315. {
  33316. front: {
  33317. height: math.unit(3 + 5/12, "feet"),
  33318. name: "Front",
  33319. image: {
  33320. source: "./media/characters/mauve/front.svg",
  33321. extra: 1126/1033,
  33322. bottom: 65/1191
  33323. }
  33324. },
  33325. side: {
  33326. height: math.unit(3 + 5/12, "feet"),
  33327. name: "Side",
  33328. image: {
  33329. source: "./media/characters/mauve/side.svg",
  33330. extra: 1089/1001,
  33331. bottom: 29/1118
  33332. }
  33333. },
  33334. back: {
  33335. height: math.unit(3 + 5/12, "feet"),
  33336. name: "Back",
  33337. image: {
  33338. source: "./media/characters/mauve/back.svg",
  33339. extra: 1173/1053,
  33340. bottom: 109/1282
  33341. }
  33342. },
  33343. },
  33344. [
  33345. {
  33346. name: "Normal",
  33347. height: math.unit(3 + 5/12, "feet"),
  33348. default: true
  33349. },
  33350. ]
  33351. ))
  33352. characterMakers.push(() => makeCharacter(
  33353. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33354. {
  33355. front: {
  33356. height: math.unit(6 + 3/12, "feet"),
  33357. weight: math.unit(430, "lb"),
  33358. name: "Front",
  33359. image: {
  33360. source: "./media/characters/carlos/front.svg",
  33361. extra: 1964/1913,
  33362. bottom: 70/2034
  33363. }
  33364. },
  33365. },
  33366. [
  33367. {
  33368. name: "Normal",
  33369. height: math.unit(6 + 3/12, "feet"),
  33370. default: true
  33371. },
  33372. ]
  33373. ))
  33374. characterMakers.push(() => makeCharacter(
  33375. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33376. {
  33377. back: {
  33378. height: math.unit(5 + 10/12, "feet"),
  33379. weight: math.unit(200, "lb"),
  33380. name: "Back",
  33381. image: {
  33382. source: "./media/characters/jax/back.svg",
  33383. extra: 764/739,
  33384. bottom: 25/789
  33385. }
  33386. },
  33387. },
  33388. [
  33389. {
  33390. name: "Normal",
  33391. height: math.unit(5 + 10/12, "feet"),
  33392. default: true
  33393. },
  33394. ]
  33395. ))
  33396. characterMakers.push(() => makeCharacter(
  33397. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33398. {
  33399. front: {
  33400. height: math.unit(8, "feet"),
  33401. weight: math.unit(250, "lb"),
  33402. name: "Front",
  33403. image: {
  33404. source: "./media/characters/eikthynir/front.svg",
  33405. extra: 1332/1166,
  33406. bottom: 82/1414
  33407. }
  33408. },
  33409. back: {
  33410. height: math.unit(8, "feet"),
  33411. weight: math.unit(250, "lb"),
  33412. name: "Back",
  33413. image: {
  33414. source: "./media/characters/eikthynir/back.svg",
  33415. extra: 1342/1190,
  33416. bottom: 19/1361
  33417. }
  33418. },
  33419. dick: {
  33420. height: math.unit(2.35, "feet"),
  33421. name: "Dick",
  33422. image: {
  33423. source: "./media/characters/eikthynir/dick.svg"
  33424. }
  33425. },
  33426. },
  33427. [
  33428. {
  33429. name: "Normal",
  33430. height: math.unit(8, "feet"),
  33431. default: true
  33432. },
  33433. ]
  33434. ))
  33435. characterMakers.push(() => makeCharacter(
  33436. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33437. {
  33438. front: {
  33439. height: math.unit(99, "meters"),
  33440. weight: math.unit(13000, "tons"),
  33441. name: "Front",
  33442. image: {
  33443. source: "./media/characters/zlmos/front.svg",
  33444. extra: 2202/1992,
  33445. bottom: 315/2517
  33446. }
  33447. },
  33448. },
  33449. [
  33450. {
  33451. name: "Macro",
  33452. height: math.unit(99, "meters"),
  33453. default: true
  33454. },
  33455. ]
  33456. ))
  33457. characterMakers.push(() => makeCharacter(
  33458. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33459. {
  33460. front: {
  33461. height: math.unit(6 + 5/12, "feet"),
  33462. name: "Front",
  33463. image: {
  33464. source: "./media/characters/purri/front.svg",
  33465. extra: 1698/1610,
  33466. bottom: 32/1730
  33467. }
  33468. },
  33469. frontAlt: {
  33470. height: math.unit(6 + 5/12, "feet"),
  33471. name: "Front (Alt)",
  33472. image: {
  33473. source: "./media/characters/purri/front-alt.svg",
  33474. extra: 450/420,
  33475. bottom: 26/476
  33476. }
  33477. },
  33478. boots: {
  33479. height: math.unit(5.5, "feet"),
  33480. name: "Boots",
  33481. image: {
  33482. source: "./media/characters/purri/boots.svg",
  33483. extra: 905/853,
  33484. bottom: 18/923
  33485. }
  33486. },
  33487. lying: {
  33488. height: math.unit(2, "feet"),
  33489. name: "Lying",
  33490. image: {
  33491. source: "./media/characters/purri/lying.svg",
  33492. extra: 940/843,
  33493. bottom: 146/1086
  33494. }
  33495. },
  33496. devious: {
  33497. height: math.unit(1.77, "feet"),
  33498. name: "Devious",
  33499. image: {
  33500. source: "./media/characters/purri/devious.svg",
  33501. extra: 1440/1155,
  33502. bottom: 147/1587
  33503. }
  33504. },
  33505. bean: {
  33506. height: math.unit(1.94, "feet"),
  33507. name: "Bean",
  33508. image: {
  33509. source: "./media/characters/purri/bean.svg"
  33510. }
  33511. },
  33512. },
  33513. [
  33514. {
  33515. name: "Micro",
  33516. height: math.unit(1, "mm")
  33517. },
  33518. {
  33519. name: "Normal",
  33520. height: math.unit(6 + 5/12, "feet"),
  33521. default: true
  33522. },
  33523. {
  33524. name: "Macro :3c",
  33525. height: math.unit(2, "miles")
  33526. },
  33527. ]
  33528. ))
  33529. characterMakers.push(() => makeCharacter(
  33530. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33531. {
  33532. front: {
  33533. height: math.unit(6 + 2/12, "feet"),
  33534. weight: math.unit(250, "lb"),
  33535. name: "Front",
  33536. image: {
  33537. source: "./media/characters/moonlight/front.svg",
  33538. extra: 1044/908,
  33539. bottom: 56/1100
  33540. }
  33541. },
  33542. feral: {
  33543. height: math.unit(3 + 1/12, "feet"),
  33544. weight: math.unit(50, "kg"),
  33545. name: "Feral",
  33546. image: {
  33547. source: "./media/characters/moonlight/feral.svg",
  33548. extra: 3705/2791,
  33549. bottom: 145/3850
  33550. }
  33551. },
  33552. paw: {
  33553. height: math.unit(1, "feet"),
  33554. name: "Paw",
  33555. image: {
  33556. source: "./media/characters/moonlight/paw.svg"
  33557. }
  33558. },
  33559. paws: {
  33560. height: math.unit(0.98, "feet"),
  33561. name: "Paws",
  33562. image: {
  33563. source: "./media/characters/moonlight/paws.svg",
  33564. extra: 939/939,
  33565. bottom: 50/989
  33566. }
  33567. },
  33568. mouth: {
  33569. height: math.unit(0.48, "feet"),
  33570. name: "Mouth",
  33571. image: {
  33572. source: "./media/characters/moonlight/mouth.svg"
  33573. }
  33574. },
  33575. dick: {
  33576. height: math.unit(1.46, "feet"),
  33577. name: "Dick",
  33578. image: {
  33579. source: "./media/characters/moonlight/dick.svg"
  33580. }
  33581. },
  33582. },
  33583. [
  33584. {
  33585. name: "Normal",
  33586. height: math.unit(6 + 2/12, "feet"),
  33587. default: true
  33588. },
  33589. {
  33590. name: "Macro",
  33591. height: math.unit(300, "feet")
  33592. },
  33593. {
  33594. name: "Macro+",
  33595. height: math.unit(1, "mile")
  33596. },
  33597. {
  33598. name: "Mt. Moon",
  33599. height: math.unit(5, "miles")
  33600. },
  33601. {
  33602. name: "Megamacro",
  33603. height: math.unit(15, "miles")
  33604. },
  33605. ]
  33606. ))
  33607. characterMakers.push(() => makeCharacter(
  33608. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33609. {
  33610. back: {
  33611. height: math.unit(6, "feet"),
  33612. weight: math.unit(150, "lb"),
  33613. name: "Back",
  33614. image: {
  33615. source: "./media/characters/sylen/back.svg",
  33616. extra: 1335/1273,
  33617. bottom: 107/1442
  33618. }
  33619. },
  33620. },
  33621. [
  33622. {
  33623. name: "Normal",
  33624. height: math.unit(5 + 5/12, "feet")
  33625. },
  33626. {
  33627. name: "Megamacro",
  33628. height: math.unit(3, "miles"),
  33629. default: true
  33630. },
  33631. ]
  33632. ))
  33633. characterMakers.push(() => makeCharacter(
  33634. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33635. {
  33636. front: {
  33637. height: math.unit(6, "feet"),
  33638. weight: math.unit(190, "lb"),
  33639. name: "Front",
  33640. image: {
  33641. source: "./media/characters/huttser/front.svg",
  33642. extra: 1152/1058,
  33643. bottom: 23/1175
  33644. }
  33645. },
  33646. side: {
  33647. height: math.unit(6, "feet"),
  33648. weight: math.unit(190, "lb"),
  33649. name: "Side",
  33650. image: {
  33651. source: "./media/characters/huttser/side.svg",
  33652. extra: 1174/1065,
  33653. bottom: 18/1192
  33654. }
  33655. },
  33656. back: {
  33657. height: math.unit(6, "feet"),
  33658. weight: math.unit(190, "lb"),
  33659. name: "Back",
  33660. image: {
  33661. source: "./media/characters/huttser/back.svg",
  33662. extra: 1158/1056,
  33663. bottom: 12/1170
  33664. }
  33665. },
  33666. },
  33667. [
  33668. ]
  33669. ))
  33670. characterMakers.push(() => makeCharacter(
  33671. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33672. {
  33673. side: {
  33674. height: math.unit(12 + 9/12, "feet"),
  33675. weight: math.unit(15000, "lb"),
  33676. name: "Side",
  33677. image: {
  33678. source: "./media/characters/faan/side.svg",
  33679. extra: 2747/2697,
  33680. bottom: 0/2747
  33681. }
  33682. },
  33683. front: {
  33684. height: math.unit(12 + 9/12, "feet"),
  33685. weight: math.unit(15000, "lb"),
  33686. name: "Front",
  33687. image: {
  33688. source: "./media/characters/faan/front.svg",
  33689. extra: 607/571,
  33690. bottom: 24/631
  33691. }
  33692. },
  33693. head: {
  33694. height: math.unit(2.85, "feet"),
  33695. name: "Head",
  33696. image: {
  33697. source: "./media/characters/faan/head.svg"
  33698. }
  33699. },
  33700. headAlt: {
  33701. height: math.unit(3.13, "feet"),
  33702. name: "Head-alt",
  33703. image: {
  33704. source: "./media/characters/faan/head-alt.svg"
  33705. }
  33706. },
  33707. },
  33708. [
  33709. {
  33710. name: "Normal",
  33711. height: math.unit(12 + 9/12, "feet"),
  33712. default: true
  33713. },
  33714. ]
  33715. ))
  33716. characterMakers.push(() => makeCharacter(
  33717. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33718. {
  33719. front: {
  33720. height: math.unit(6, "feet"),
  33721. weight: math.unit(300, "lb"),
  33722. name: "Front",
  33723. image: {
  33724. source: "./media/characters/tanio/front.svg",
  33725. extra: 711/673,
  33726. bottom: 25/736
  33727. }
  33728. },
  33729. },
  33730. [
  33731. {
  33732. name: "Normal",
  33733. height: math.unit(6, "feet"),
  33734. default: true
  33735. },
  33736. ]
  33737. ))
  33738. characterMakers.push(() => makeCharacter(
  33739. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33740. {
  33741. front: {
  33742. height: math.unit(3, "inches"),
  33743. name: "Front",
  33744. image: {
  33745. source: "./media/characters/noboru/front.svg",
  33746. extra: 1039/932,
  33747. bottom: 18/1057
  33748. }
  33749. },
  33750. },
  33751. [
  33752. {
  33753. name: "Micro",
  33754. height: math.unit(3, "inches"),
  33755. default: true
  33756. },
  33757. ]
  33758. ))
  33759. characterMakers.push(() => makeCharacter(
  33760. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33761. {
  33762. front: {
  33763. height: math.unit(1.85, "meters"),
  33764. weight: math.unit(80, "kg"),
  33765. name: "Front",
  33766. image: {
  33767. source: "./media/characters/daniel-barrett/front.svg",
  33768. extra: 355/337,
  33769. bottom: 9/364
  33770. }
  33771. },
  33772. },
  33773. [
  33774. {
  33775. name: "Pico",
  33776. height: math.unit(0.0433, "mm")
  33777. },
  33778. {
  33779. name: "Nano",
  33780. height: math.unit(1.5, "mm")
  33781. },
  33782. {
  33783. name: "Micro",
  33784. height: math.unit(5.3, "cm"),
  33785. default: true
  33786. },
  33787. {
  33788. name: "Normal",
  33789. height: math.unit(1.85, "meters")
  33790. },
  33791. {
  33792. name: "Macro",
  33793. height: math.unit(64.7, "meters")
  33794. },
  33795. {
  33796. name: "Megamacro",
  33797. height: math.unit(2.26, "km")
  33798. },
  33799. {
  33800. name: "Gigamacro",
  33801. height: math.unit(79, "km")
  33802. },
  33803. {
  33804. name: "Teramacro",
  33805. height: math.unit(2765, "km")
  33806. },
  33807. {
  33808. name: "Petamacro",
  33809. height: math.unit(96678, "km")
  33810. },
  33811. ]
  33812. ))
  33813. characterMakers.push(() => makeCharacter(
  33814. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33815. {
  33816. front: {
  33817. height: math.unit(30, "meters"),
  33818. weight: math.unit(400, "tons"),
  33819. name: "Front",
  33820. image: {
  33821. source: "./media/characters/zeel/front.svg",
  33822. extra: 2599/2599,
  33823. bottom: 226/2825
  33824. }
  33825. },
  33826. },
  33827. [
  33828. {
  33829. name: "Macro",
  33830. height: math.unit(30, "meters"),
  33831. default: true
  33832. },
  33833. ]
  33834. ))
  33835. characterMakers.push(() => makeCharacter(
  33836. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33837. {
  33838. front: {
  33839. height: math.unit(6 + 7/12, "feet"),
  33840. weight: math.unit(210, "lb"),
  33841. name: "Front",
  33842. image: {
  33843. source: "./media/characters/tarn/front.svg",
  33844. extra: 3517/3220,
  33845. bottom: 91/3608
  33846. }
  33847. },
  33848. back: {
  33849. height: math.unit(6 + 7/12, "feet"),
  33850. weight: math.unit(210, "lb"),
  33851. name: "Back",
  33852. image: {
  33853. source: "./media/characters/tarn/back.svg",
  33854. extra: 3566/3241,
  33855. bottom: 34/3600
  33856. }
  33857. },
  33858. dick: {
  33859. height: math.unit(1.65, "feet"),
  33860. name: "Dick",
  33861. image: {
  33862. source: "./media/characters/tarn/dick.svg"
  33863. }
  33864. },
  33865. paw: {
  33866. height: math.unit(1.80, "feet"),
  33867. name: "Paw",
  33868. image: {
  33869. source: "./media/characters/tarn/paw.svg"
  33870. }
  33871. },
  33872. tongue: {
  33873. height: math.unit(0.97, "feet"),
  33874. name: "Tongue",
  33875. image: {
  33876. source: "./media/characters/tarn/tongue.svg"
  33877. }
  33878. },
  33879. },
  33880. [
  33881. {
  33882. name: "Micro",
  33883. height: math.unit(4, "inches")
  33884. },
  33885. {
  33886. name: "Normal",
  33887. height: math.unit(6 + 7/12, "feet"),
  33888. default: true
  33889. },
  33890. {
  33891. name: "Macro",
  33892. height: math.unit(300, "feet")
  33893. },
  33894. ]
  33895. ))
  33896. characterMakers.push(() => makeCharacter(
  33897. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33898. {
  33899. front: {
  33900. height: math.unit(5 + 7/12, "feet"),
  33901. weight: math.unit(80, "kg"),
  33902. name: "Front",
  33903. image: {
  33904. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33905. extra: 3023/2865,
  33906. bottom: 33/3056
  33907. }
  33908. },
  33909. back: {
  33910. height: math.unit(5 + 7/12, "feet"),
  33911. weight: math.unit(80, "kg"),
  33912. name: "Back",
  33913. image: {
  33914. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33915. extra: 3020/2886,
  33916. bottom: 30/3050
  33917. }
  33918. },
  33919. dick: {
  33920. height: math.unit(0.98, "feet"),
  33921. name: "Dick",
  33922. image: {
  33923. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33924. }
  33925. },
  33926. anatomy: {
  33927. height: math.unit(2.86, "feet"),
  33928. name: "Anatomy",
  33929. image: {
  33930. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33931. }
  33932. },
  33933. },
  33934. [
  33935. {
  33936. name: "Really Small",
  33937. height: math.unit(2, "inches")
  33938. },
  33939. {
  33940. name: "Micro",
  33941. height: math.unit(5.583, "inches")
  33942. },
  33943. {
  33944. name: "Normal",
  33945. height: math.unit(5 + 7/12, "feet"),
  33946. default: true
  33947. },
  33948. {
  33949. name: "Macro",
  33950. height: math.unit(67, "feet")
  33951. },
  33952. {
  33953. name: "Megamacro",
  33954. height: math.unit(134, "feet")
  33955. },
  33956. ]
  33957. ))
  33958. characterMakers.push(() => makeCharacter(
  33959. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33960. {
  33961. front: {
  33962. height: math.unit(9, "feet"),
  33963. weight: math.unit(120, "lb"),
  33964. name: "Front",
  33965. image: {
  33966. source: "./media/characters/sally/front.svg",
  33967. extra: 1506/1349,
  33968. bottom: 66/1572
  33969. }
  33970. },
  33971. },
  33972. [
  33973. {
  33974. name: "Normal",
  33975. height: math.unit(9, "feet"),
  33976. default: true
  33977. },
  33978. ]
  33979. ))
  33980. characterMakers.push(() => makeCharacter(
  33981. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33982. {
  33983. front: {
  33984. height: math.unit(8, "feet"),
  33985. weight: math.unit(900, "lb"),
  33986. name: "Front",
  33987. image: {
  33988. source: "./media/characters/owen/front.svg",
  33989. extra: 1761/1657,
  33990. bottom: 74/1835
  33991. }
  33992. },
  33993. side: {
  33994. height: math.unit(8, "feet"),
  33995. weight: math.unit(900, "lb"),
  33996. name: "Side",
  33997. image: {
  33998. source: "./media/characters/owen/side.svg",
  33999. extra: 1797/1734,
  34000. bottom: 30/1827
  34001. }
  34002. },
  34003. back: {
  34004. height: math.unit(8, "feet"),
  34005. weight: math.unit(900, "lb"),
  34006. name: "Back",
  34007. image: {
  34008. source: "./media/characters/owen/back.svg",
  34009. extra: 1796/1706,
  34010. bottom: 59/1855
  34011. }
  34012. },
  34013. maw: {
  34014. height: math.unit(1.76, "feet"),
  34015. name: "Maw",
  34016. image: {
  34017. source: "./media/characters/owen/maw.svg"
  34018. }
  34019. },
  34020. },
  34021. [
  34022. {
  34023. name: "Normal",
  34024. height: math.unit(8, "feet"),
  34025. default: true
  34026. },
  34027. ]
  34028. ))
  34029. characterMakers.push(() => makeCharacter(
  34030. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34031. {
  34032. front: {
  34033. height: math.unit(4, "feet"),
  34034. weight: math.unit(400, "lb"),
  34035. name: "Front",
  34036. image: {
  34037. source: "./media/characters/ryth/front.svg",
  34038. extra: 1920/1748,
  34039. bottom: 42/1962
  34040. }
  34041. },
  34042. back: {
  34043. height: math.unit(4, "feet"),
  34044. weight: math.unit(400, "lb"),
  34045. name: "Back",
  34046. image: {
  34047. source: "./media/characters/ryth/back.svg",
  34048. extra: 1897/1690,
  34049. bottom: 89/1986
  34050. }
  34051. },
  34052. mouth: {
  34053. height: math.unit(1.39, "feet"),
  34054. name: "Mouth",
  34055. image: {
  34056. source: "./media/characters/ryth/mouth.svg"
  34057. }
  34058. },
  34059. tailmaw: {
  34060. height: math.unit(1.23, "feet"),
  34061. name: "Tailmaw",
  34062. image: {
  34063. source: "./media/characters/ryth/tailmaw.svg"
  34064. }
  34065. },
  34066. goia: {
  34067. height: math.unit(4, "meters"),
  34068. weight: math.unit(10800, "lb"),
  34069. name: "Goia",
  34070. image: {
  34071. source: "./media/characters/ryth/goia.svg",
  34072. extra: 745/640,
  34073. bottom: 107/852
  34074. }
  34075. },
  34076. goiaFront: {
  34077. height: math.unit(4, "meters"),
  34078. weight: math.unit(10800, "lb"),
  34079. name: "Goia (Front)",
  34080. image: {
  34081. source: "./media/characters/ryth/goia-front.svg",
  34082. extra: 750/586,
  34083. bottom: 114/864
  34084. }
  34085. },
  34086. goiaMaw: {
  34087. height: math.unit(5.55, "feet"),
  34088. name: "Goia Maw",
  34089. image: {
  34090. source: "./media/characters/ryth/goia-maw.svg"
  34091. }
  34092. },
  34093. goiaForepaw: {
  34094. height: math.unit(3.5, "feet"),
  34095. name: "Goia Forepaw",
  34096. image: {
  34097. source: "./media/characters/ryth/goia-forepaw.svg"
  34098. }
  34099. },
  34100. goiaHindpaw: {
  34101. height: math.unit(5.55, "feet"),
  34102. name: "Goia Hindpaw",
  34103. image: {
  34104. source: "./media/characters/ryth/goia-hindpaw.svg"
  34105. }
  34106. },
  34107. },
  34108. [
  34109. {
  34110. name: "Normal",
  34111. height: math.unit(4, "feet"),
  34112. default: true
  34113. },
  34114. ]
  34115. ))
  34116. characterMakers.push(() => makeCharacter(
  34117. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34118. {
  34119. front: {
  34120. height: math.unit(7, "feet"),
  34121. weight: math.unit(180, "lb"),
  34122. name: "Front",
  34123. image: {
  34124. source: "./media/characters/necrolance/front.svg",
  34125. extra: 1062/947,
  34126. bottom: 41/1103
  34127. }
  34128. },
  34129. back: {
  34130. height: math.unit(7, "feet"),
  34131. weight: math.unit(180, "lb"),
  34132. name: "Back",
  34133. image: {
  34134. source: "./media/characters/necrolance/back.svg",
  34135. extra: 1045/984,
  34136. bottom: 14/1059
  34137. }
  34138. },
  34139. wing: {
  34140. height: math.unit(2.67, "feet"),
  34141. name: "Wing",
  34142. image: {
  34143. source: "./media/characters/necrolance/wing.svg"
  34144. }
  34145. },
  34146. },
  34147. [
  34148. {
  34149. name: "Normal",
  34150. height: math.unit(7, "feet"),
  34151. default: true
  34152. },
  34153. ]
  34154. ))
  34155. characterMakers.push(() => makeCharacter(
  34156. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34157. {
  34158. front: {
  34159. height: math.unit(76, "meters"),
  34160. weight: math.unit(30000, "tons"),
  34161. name: "Front",
  34162. image: {
  34163. source: "./media/characters/tyler/front.svg",
  34164. extra: 1640/1640,
  34165. bottom: 114/1754
  34166. }
  34167. },
  34168. },
  34169. [
  34170. {
  34171. name: "Macro",
  34172. height: math.unit(76, "meters"),
  34173. default: true
  34174. },
  34175. ]
  34176. ))
  34177. characterMakers.push(() => makeCharacter(
  34178. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34179. {
  34180. front: {
  34181. height: math.unit(4 + 11/12, "feet"),
  34182. weight: math.unit(132, "lb"),
  34183. name: "Front",
  34184. image: {
  34185. source: "./media/characters/icey/front.svg",
  34186. extra: 2750/2550,
  34187. bottom: 33/2783
  34188. }
  34189. },
  34190. back: {
  34191. height: math.unit(4 + 11/12, "feet"),
  34192. weight: math.unit(132, "lb"),
  34193. name: "Back",
  34194. image: {
  34195. source: "./media/characters/icey/back.svg",
  34196. extra: 2624/2481,
  34197. bottom: 35/2659
  34198. }
  34199. },
  34200. },
  34201. [
  34202. {
  34203. name: "Normal",
  34204. height: math.unit(4 + 11/12, "feet"),
  34205. default: true
  34206. },
  34207. ]
  34208. ))
  34209. characterMakers.push(() => makeCharacter(
  34210. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34211. {
  34212. front: {
  34213. height: math.unit(100, "feet"),
  34214. weight: math.unit(0, "lb"),
  34215. name: "Front",
  34216. image: {
  34217. source: "./media/characters/smile/front.svg",
  34218. extra: 2983/2912,
  34219. bottom: 162/3145
  34220. }
  34221. },
  34222. back: {
  34223. height: math.unit(100, "feet"),
  34224. weight: math.unit(0, "lb"),
  34225. name: "Back",
  34226. image: {
  34227. source: "./media/characters/smile/back.svg",
  34228. extra: 3143/3031,
  34229. bottom: 91/3234
  34230. }
  34231. },
  34232. head: {
  34233. height: math.unit(26.3, "feet"),
  34234. weight: math.unit(0, "lb"),
  34235. name: "Head",
  34236. image: {
  34237. source: "./media/characters/smile/head.svg"
  34238. }
  34239. },
  34240. collar: {
  34241. height: math.unit(5.3, "feet"),
  34242. weight: math.unit(0, "lb"),
  34243. name: "Collar",
  34244. image: {
  34245. source: "./media/characters/smile/collar.svg"
  34246. }
  34247. },
  34248. },
  34249. [
  34250. {
  34251. name: "Macro",
  34252. height: math.unit(100, "feet"),
  34253. default: true
  34254. },
  34255. ]
  34256. ))
  34257. characterMakers.push(() => makeCharacter(
  34258. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34259. {
  34260. dragon: {
  34261. height: math.unit(26, "feet"),
  34262. weight: math.unit(36, "tons"),
  34263. name: "Dragon",
  34264. image: {
  34265. source: "./media/characters/arimphae/dragon.svg",
  34266. extra: 1574/983,
  34267. bottom: 357/1931
  34268. }
  34269. },
  34270. drake: {
  34271. height: math.unit(9, "feet"),
  34272. weight: math.unit(1.5, "tons"),
  34273. name: "Drake",
  34274. image: {
  34275. source: "./media/characters/arimphae/drake.svg",
  34276. extra: 1120/925,
  34277. bottom: 435/1555
  34278. }
  34279. },
  34280. },
  34281. [
  34282. {
  34283. name: "Small",
  34284. height: math.unit(26*5/9, "feet")
  34285. },
  34286. {
  34287. name: "Normal",
  34288. height: math.unit(26, "feet"),
  34289. default: true
  34290. },
  34291. ]
  34292. ))
  34293. characterMakers.push(() => makeCharacter(
  34294. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34295. {
  34296. front: {
  34297. height: math.unit(8 + 9/12, "feet"),
  34298. name: "Front",
  34299. image: {
  34300. source: "./media/characters/xander/front.svg",
  34301. extra: 1237/974,
  34302. bottom: 94/1331
  34303. }
  34304. },
  34305. },
  34306. [
  34307. {
  34308. name: "Normal",
  34309. height: math.unit(8 + 9/12, "feet"),
  34310. default: true
  34311. },
  34312. {
  34313. name: "Gaze Grabber",
  34314. height: math.unit(13 + 8/12, "feet")
  34315. },
  34316. {
  34317. name: "Jaw Dropper",
  34318. height: math.unit(27, "feet")
  34319. },
  34320. {
  34321. name: "Show Stopper",
  34322. height: math.unit(136, "feet")
  34323. },
  34324. {
  34325. name: "Superstar",
  34326. height: math.unit(1.9e6, "miles")
  34327. },
  34328. ]
  34329. ))
  34330. characterMakers.push(() => makeCharacter(
  34331. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34332. {
  34333. side: {
  34334. height: math.unit(2100, "feet"),
  34335. name: "Side",
  34336. image: {
  34337. source: "./media/characters/osiris/side.svg",
  34338. extra: 1105/939,
  34339. bottom: 167/1272
  34340. }
  34341. },
  34342. },
  34343. [
  34344. {
  34345. name: "Macro",
  34346. height: math.unit(2100, "feet"),
  34347. default: true
  34348. },
  34349. ]
  34350. ))
  34351. characterMakers.push(() => makeCharacter(
  34352. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34353. {
  34354. front: {
  34355. height: math.unit(6 + 8/12, "feet"),
  34356. weight: math.unit(225, "lb"),
  34357. name: "Front",
  34358. image: {
  34359. source: "./media/characters/rhys-londe/front.svg",
  34360. extra: 2258/2141,
  34361. bottom: 188/2446
  34362. }
  34363. },
  34364. back: {
  34365. height: math.unit(6 + 8/12, "feet"),
  34366. weight: math.unit(225, "lb"),
  34367. name: "Back",
  34368. image: {
  34369. source: "./media/characters/rhys-londe/back.svg",
  34370. extra: 2237/2137,
  34371. bottom: 63/2300
  34372. }
  34373. },
  34374. frontNsfw: {
  34375. height: math.unit(6 + 8/12, "feet"),
  34376. weight: math.unit(225, "lb"),
  34377. name: "Front (NSFW)",
  34378. image: {
  34379. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34380. extra: 2258/2141,
  34381. bottom: 188/2446
  34382. }
  34383. },
  34384. backNsfw: {
  34385. height: math.unit(6 + 8/12, "feet"),
  34386. weight: math.unit(225, "lb"),
  34387. name: "Back (NSFW)",
  34388. image: {
  34389. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34390. extra: 2237/2137,
  34391. bottom: 63/2300
  34392. }
  34393. },
  34394. dick: {
  34395. height: math.unit(30, "inches"),
  34396. name: "Dick",
  34397. image: {
  34398. source: "./media/characters/rhys-londe/dick.svg"
  34399. }
  34400. },
  34401. maw: {
  34402. height: math.unit(1.6, "feet"),
  34403. name: "Maw",
  34404. image: {
  34405. source: "./media/characters/rhys-londe/maw.svg"
  34406. }
  34407. },
  34408. },
  34409. [
  34410. {
  34411. name: "Normal",
  34412. height: math.unit(6 + 8/12, "feet"),
  34413. default: true
  34414. },
  34415. ]
  34416. ))
  34417. characterMakers.push(() => makeCharacter(
  34418. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34419. {
  34420. front: {
  34421. height: math.unit(3 + 10/12, "feet"),
  34422. weight: math.unit(90, "lb"),
  34423. name: "Front",
  34424. image: {
  34425. source: "./media/characters/taivas-ensim/front.svg",
  34426. extra: 1327/1216,
  34427. bottom: 96/1423
  34428. }
  34429. },
  34430. back: {
  34431. height: math.unit(3 + 10/12, "feet"),
  34432. weight: math.unit(90, "lb"),
  34433. name: "Back",
  34434. image: {
  34435. source: "./media/characters/taivas-ensim/back.svg",
  34436. extra: 1355/1247,
  34437. bottom: 11/1366
  34438. }
  34439. },
  34440. frontNsfw: {
  34441. height: math.unit(3 + 10/12, "feet"),
  34442. weight: math.unit(90, "lb"),
  34443. name: "Front (NSFW)",
  34444. image: {
  34445. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34446. extra: 1327/1216,
  34447. bottom: 96/1423
  34448. }
  34449. },
  34450. backNsfw: {
  34451. height: math.unit(3 + 10/12, "feet"),
  34452. weight: math.unit(90, "lb"),
  34453. name: "Back (NSFW)",
  34454. image: {
  34455. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34456. extra: 1355/1247,
  34457. bottom: 11/1366
  34458. }
  34459. },
  34460. },
  34461. [
  34462. {
  34463. name: "Normal",
  34464. height: math.unit(3 + 10/12, "feet"),
  34465. default: true
  34466. },
  34467. ]
  34468. ))
  34469. characterMakers.push(() => makeCharacter(
  34470. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34471. {
  34472. front: {
  34473. height: math.unit(9 + 6/12, "feet"),
  34474. weight: math.unit(940, "lb"),
  34475. name: "Front",
  34476. image: {
  34477. source: "./media/characters/byliss/front.svg",
  34478. extra: 1327/1290,
  34479. bottom: 82/1409
  34480. }
  34481. },
  34482. back: {
  34483. height: math.unit(9 + 6/12, "feet"),
  34484. weight: math.unit(940, "lb"),
  34485. name: "Back",
  34486. image: {
  34487. source: "./media/characters/byliss/back.svg",
  34488. extra: 1376/1349,
  34489. bottom: 9/1385
  34490. }
  34491. },
  34492. frontNsfw: {
  34493. height: math.unit(9 + 6/12, "feet"),
  34494. weight: math.unit(940, "lb"),
  34495. name: "Front (NSFW)",
  34496. image: {
  34497. source: "./media/characters/byliss/front-nsfw.svg",
  34498. extra: 1327/1290,
  34499. bottom: 82/1409
  34500. }
  34501. },
  34502. backNsfw: {
  34503. height: math.unit(9 + 6/12, "feet"),
  34504. weight: math.unit(940, "lb"),
  34505. name: "Back (NSFW)",
  34506. image: {
  34507. source: "./media/characters/byliss/back-nsfw.svg",
  34508. extra: 1376/1349,
  34509. bottom: 9/1385
  34510. }
  34511. },
  34512. },
  34513. [
  34514. {
  34515. name: "Normal",
  34516. height: math.unit(9 + 6/12, "feet"),
  34517. default: true
  34518. },
  34519. ]
  34520. ))
  34521. characterMakers.push(() => makeCharacter(
  34522. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34523. {
  34524. front: {
  34525. height: math.unit(5 + 2/12, "feet"),
  34526. weight: math.unit(200, "lb"),
  34527. name: "Front",
  34528. image: {
  34529. source: "./media/characters/noraly/front.svg",
  34530. extra: 4985/4773,
  34531. bottom: 150/5135
  34532. }
  34533. },
  34534. full: {
  34535. height: math.unit(5 + 2/12, "feet"),
  34536. weight: math.unit(164, "lb"),
  34537. name: "Full",
  34538. image: {
  34539. source: "./media/characters/noraly/full.svg",
  34540. extra: 1114/1059,
  34541. bottom: 35/1149
  34542. }
  34543. },
  34544. fuller: {
  34545. height: math.unit(5 + 2/12, "feet"),
  34546. weight: math.unit(230, "lb"),
  34547. name: "Fuller",
  34548. image: {
  34549. source: "./media/characters/noraly/fuller.svg",
  34550. extra: 1114/1059,
  34551. bottom: 35/1149
  34552. }
  34553. },
  34554. fullest: {
  34555. height: math.unit(5 + 2/12, "feet"),
  34556. weight: math.unit(300, "lb"),
  34557. name: "Fullest",
  34558. image: {
  34559. source: "./media/characters/noraly/fullest.svg",
  34560. extra: 1114/1059,
  34561. bottom: 35/1149
  34562. }
  34563. },
  34564. },
  34565. [
  34566. {
  34567. name: "Normal",
  34568. height: math.unit(5 + 2/12, "feet"),
  34569. default: true
  34570. },
  34571. ]
  34572. ))
  34573. characterMakers.push(() => makeCharacter(
  34574. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34575. {
  34576. front: {
  34577. height: math.unit(5 + 2/12, "feet"),
  34578. weight: math.unit(210, "lb"),
  34579. name: "Front",
  34580. image: {
  34581. source: "./media/characters/pera/front.svg",
  34582. extra: 1560/1531,
  34583. bottom: 165/1725
  34584. }
  34585. },
  34586. back: {
  34587. height: math.unit(5 + 2/12, "feet"),
  34588. weight: math.unit(210, "lb"),
  34589. name: "Back",
  34590. image: {
  34591. source: "./media/characters/pera/back.svg",
  34592. extra: 1523/1493,
  34593. bottom: 152/1675
  34594. }
  34595. },
  34596. dick: {
  34597. height: math.unit(2.4, "feet"),
  34598. name: "Dick",
  34599. image: {
  34600. source: "./media/characters/pera/dick.svg"
  34601. }
  34602. },
  34603. },
  34604. [
  34605. {
  34606. name: "Normal",
  34607. height: math.unit(5 + 2/12, "feet"),
  34608. default: true
  34609. },
  34610. ]
  34611. ))
  34612. characterMakers.push(() => makeCharacter(
  34613. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34614. {
  34615. front: {
  34616. height: math.unit(12, "feet"),
  34617. weight: math.unit(3200, "lb"),
  34618. name: "Front",
  34619. image: {
  34620. source: "./media/characters/julian/front.svg",
  34621. extra: 2962/2701,
  34622. bottom: 184/3146
  34623. }
  34624. },
  34625. maw: {
  34626. height: math.unit(5.35, "feet"),
  34627. name: "Maw",
  34628. image: {
  34629. source: "./media/characters/julian/maw.svg"
  34630. }
  34631. },
  34632. paw: {
  34633. height: math.unit(3.07, "feet"),
  34634. name: "Paw",
  34635. image: {
  34636. source: "./media/characters/julian/paw.svg"
  34637. }
  34638. },
  34639. },
  34640. [
  34641. {
  34642. name: "Default",
  34643. height: math.unit(12, "feet"),
  34644. default: true
  34645. },
  34646. {
  34647. name: "Big",
  34648. height: math.unit(50, "feet")
  34649. },
  34650. {
  34651. name: "Really Big",
  34652. height: math.unit(1, "mile")
  34653. },
  34654. {
  34655. name: "Extremely Big",
  34656. height: math.unit(100, "miles")
  34657. },
  34658. {
  34659. name: "Planet Hugger",
  34660. height: math.unit(200, "megameters")
  34661. },
  34662. {
  34663. name: "Unreasonably Big",
  34664. height: math.unit(1e300, "meters")
  34665. },
  34666. ]
  34667. ))
  34668. characterMakers.push(() => makeCharacter(
  34669. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34670. {
  34671. solgooleo: {
  34672. height: math.unit(4, "meters"),
  34673. weight: math.unit(6000*1.5, "kg"),
  34674. volume: math.unit(6000, "liters"),
  34675. name: "Solgooleo",
  34676. image: {
  34677. source: "./media/characters/pi/solgooleo.svg",
  34678. extra: 388/331,
  34679. bottom: 29/417
  34680. }
  34681. },
  34682. },
  34683. [
  34684. {
  34685. name: "Normal",
  34686. height: math.unit(4, "meters"),
  34687. default: true
  34688. },
  34689. ]
  34690. ))
  34691. characterMakers.push(() => makeCharacter(
  34692. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34693. {
  34694. front: {
  34695. height: math.unit(8, "feet"),
  34696. weight: math.unit(4, "tons"),
  34697. name: "Front",
  34698. image: {
  34699. source: "./media/characters/shaun/front.svg",
  34700. extra: 503/495,
  34701. bottom: 20/523
  34702. }
  34703. },
  34704. back: {
  34705. height: math.unit(8, "feet"),
  34706. weight: math.unit(4, "tons"),
  34707. name: "Back",
  34708. image: {
  34709. source: "./media/characters/shaun/back.svg",
  34710. extra: 487/480,
  34711. bottom: 20/507
  34712. }
  34713. },
  34714. },
  34715. [
  34716. {
  34717. name: "Lorg",
  34718. height: math.unit(8, "feet"),
  34719. default: true
  34720. },
  34721. ]
  34722. ))
  34723. characterMakers.push(() => makeCharacter(
  34724. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34725. {
  34726. frontAnthro: {
  34727. height: math.unit(7, "feet"),
  34728. name: "Front",
  34729. image: {
  34730. source: "./media/characters/sini/front-anthro.svg",
  34731. extra: 726/678,
  34732. bottom: 35/761
  34733. },
  34734. form: "anthro",
  34735. default: true
  34736. },
  34737. backAnthro: {
  34738. height: math.unit(7, "feet"),
  34739. name: "Back",
  34740. image: {
  34741. source: "./media/characters/sini/back-anthro.svg",
  34742. extra: 743/701,
  34743. bottom: 12/755
  34744. },
  34745. form: "anthro",
  34746. },
  34747. frontAnthroNsfw: {
  34748. height: math.unit(7, "feet"),
  34749. name: "Front (NSFW)",
  34750. image: {
  34751. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34752. extra: 726/678,
  34753. bottom: 35/761
  34754. },
  34755. form: "anthro"
  34756. },
  34757. backAnthroNsfw: {
  34758. height: math.unit(7, "feet"),
  34759. name: "Back (NSFW)",
  34760. image: {
  34761. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34762. extra: 743/701,
  34763. bottom: 12/755
  34764. },
  34765. form: "anthro",
  34766. },
  34767. mawAnthro: {
  34768. height: math.unit(2.14, "feet"),
  34769. name: "Maw",
  34770. image: {
  34771. source: "./media/characters/sini/maw-anthro.svg"
  34772. },
  34773. form: "anthro"
  34774. },
  34775. dick: {
  34776. height: math.unit(1.45, "feet"),
  34777. name: "Dick",
  34778. image: {
  34779. source: "./media/characters/sini/dick-anthro.svg"
  34780. },
  34781. form: "anthro"
  34782. },
  34783. feral: {
  34784. height: math.unit(16, "feet"),
  34785. name: "Feral",
  34786. image: {
  34787. source: "./media/characters/sini/feral.svg",
  34788. extra: 814/605,
  34789. bottom: 11/825
  34790. },
  34791. form: "feral",
  34792. default: true
  34793. },
  34794. feralNsfw: {
  34795. height: math.unit(16, "feet"),
  34796. name: "Feral (NSFW)",
  34797. image: {
  34798. source: "./media/characters/sini/feral-nsfw.svg",
  34799. extra: 814/605,
  34800. bottom: 11/825
  34801. },
  34802. form: "feral"
  34803. },
  34804. mawFeral: {
  34805. height: math.unit(5.66, "feet"),
  34806. name: "Maw",
  34807. image: {
  34808. source: "./media/characters/sini/maw-feral.svg"
  34809. },
  34810. form: "feral",
  34811. },
  34812. pawFeral: {
  34813. height: math.unit(5.17, "feet"),
  34814. name: "Paw",
  34815. image: {
  34816. source: "./media/characters/sini/paw-feral.svg"
  34817. },
  34818. form: "feral",
  34819. },
  34820. rumpFeral: {
  34821. height: math.unit(13.11, "feet"),
  34822. name: "Rump",
  34823. image: {
  34824. source: "./media/characters/sini/rump-feral.svg"
  34825. },
  34826. form: "feral",
  34827. },
  34828. dickFeral: {
  34829. height: math.unit(1, "feet"),
  34830. name: "Dick",
  34831. image: {
  34832. source: "./media/characters/sini/dick-feral.svg"
  34833. },
  34834. form: "feral",
  34835. },
  34836. eyeFeral: {
  34837. height: math.unit(1.23, "feet"),
  34838. name: "Eye",
  34839. image: {
  34840. source: "./media/characters/sini/eye-feral.svg"
  34841. },
  34842. form: "feral",
  34843. },
  34844. },
  34845. [
  34846. {
  34847. name: "Normal",
  34848. height: math.unit(7, "feet"),
  34849. default: true,
  34850. form: "anthro"
  34851. },
  34852. {
  34853. name: "Normal",
  34854. height: math.unit(16, "feet"),
  34855. default: true,
  34856. form: "feral"
  34857. },
  34858. ],
  34859. {
  34860. "anthro": {
  34861. name: "Anthro",
  34862. default: true
  34863. },
  34864. "feral": {
  34865. name: "Feral",
  34866. }
  34867. }
  34868. ))
  34869. characterMakers.push(() => makeCharacter(
  34870. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34871. {
  34872. side: {
  34873. height: math.unit(47.2, "meters"),
  34874. weight: math.unit(10000, "tons"),
  34875. name: "Side",
  34876. image: {
  34877. source: "./media/characters/raylldo/side.svg",
  34878. extra: 2363/642,
  34879. bottom: 221/2584
  34880. }
  34881. },
  34882. top: {
  34883. height: math.unit(240, "meters"),
  34884. weight: math.unit(10000, "tons"),
  34885. name: "Top",
  34886. image: {
  34887. source: "./media/characters/raylldo/top.svg"
  34888. }
  34889. },
  34890. bottom: {
  34891. height: math.unit(240, "meters"),
  34892. weight: math.unit(10000, "tons"),
  34893. name: "Bottom",
  34894. image: {
  34895. source: "./media/characters/raylldo/bottom.svg"
  34896. }
  34897. },
  34898. head: {
  34899. height: math.unit(38.6, "meters"),
  34900. name: "Head",
  34901. image: {
  34902. source: "./media/characters/raylldo/head.svg",
  34903. extra: 1335/1112,
  34904. bottom: 0/1335
  34905. }
  34906. },
  34907. maw: {
  34908. height: math.unit(16.37, "meters"),
  34909. name: "Maw",
  34910. image: {
  34911. source: "./media/characters/raylldo/maw.svg",
  34912. extra: 883/660,
  34913. bottom: 0/883
  34914. },
  34915. extraAttributes: {
  34916. preyCapacity: {
  34917. name: "Capacity",
  34918. power: 3,
  34919. type: "volume",
  34920. base: math.unit(1000, "people")
  34921. },
  34922. tongueSize: {
  34923. name: "Tongue Size",
  34924. power: 2,
  34925. type: "area",
  34926. base: math.unit(21, "m^2")
  34927. }
  34928. }
  34929. },
  34930. forepaw: {
  34931. height: math.unit(18, "meters"),
  34932. name: "Forepaw",
  34933. image: {
  34934. source: "./media/characters/raylldo/forepaw.svg"
  34935. }
  34936. },
  34937. hindpaw: {
  34938. height: math.unit(23, "meters"),
  34939. name: "Hindpaw",
  34940. image: {
  34941. source: "./media/characters/raylldo/hindpaw.svg"
  34942. }
  34943. },
  34944. genitals: {
  34945. height: math.unit(42, "meters"),
  34946. name: "Genitals",
  34947. image: {
  34948. source: "./media/characters/raylldo/genitals.svg"
  34949. }
  34950. },
  34951. },
  34952. [
  34953. {
  34954. name: "Normal",
  34955. height: math.unit(47.2, "meters"),
  34956. default: true
  34957. },
  34958. ]
  34959. ))
  34960. characterMakers.push(() => makeCharacter(
  34961. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34962. {
  34963. anthroFront: {
  34964. height: math.unit(9, "feet"),
  34965. weight: math.unit(600, "lb"),
  34966. name: "Anthro (Front)",
  34967. image: {
  34968. source: "./media/characters/glint/anthro-front.svg",
  34969. extra: 1097/1018,
  34970. bottom: 28/1125
  34971. }
  34972. },
  34973. anthroBack: {
  34974. height: math.unit(9, "feet"),
  34975. weight: math.unit(600, "lb"),
  34976. name: "Anthro (Back)",
  34977. image: {
  34978. source: "./media/characters/glint/anthro-back.svg",
  34979. extra: 1154/997,
  34980. bottom: 36/1190
  34981. }
  34982. },
  34983. feral: {
  34984. height: math.unit(11, "feet"),
  34985. weight: math.unit(50000, "lb"),
  34986. name: "Feral",
  34987. image: {
  34988. source: "./media/characters/glint/feral.svg",
  34989. extra: 3035/1585,
  34990. bottom: 1169/4204
  34991. }
  34992. },
  34993. dickAnthro: {
  34994. height: math.unit(0.7, "meters"),
  34995. name: "Dick (Anthro)",
  34996. image: {
  34997. source: "./media/characters/glint/dick-anthro.svg"
  34998. }
  34999. },
  35000. dickFeral: {
  35001. height: math.unit(2.65, "meters"),
  35002. name: "Dick (Feral)",
  35003. image: {
  35004. source: "./media/characters/glint/dick-feral.svg"
  35005. }
  35006. },
  35007. slitHidden: {
  35008. height: math.unit(5.85, "meters"),
  35009. name: "Slit (Hidden)",
  35010. image: {
  35011. source: "./media/characters/glint/slit-hidden.svg"
  35012. }
  35013. },
  35014. slitErect: {
  35015. height: math.unit(5.85, "meters"),
  35016. name: "Slit (Erect)",
  35017. image: {
  35018. source: "./media/characters/glint/slit-erect.svg"
  35019. }
  35020. },
  35021. mawAnthro: {
  35022. height: math.unit(0.63, "meters"),
  35023. name: "Maw (Anthro)",
  35024. image: {
  35025. source: "./media/characters/glint/maw.svg"
  35026. }
  35027. },
  35028. mawFeral: {
  35029. height: math.unit(2.89, "meters"),
  35030. name: "Maw (Feral)",
  35031. image: {
  35032. source: "./media/characters/glint/maw.svg"
  35033. }
  35034. },
  35035. },
  35036. [
  35037. {
  35038. name: "Normal",
  35039. height: math.unit(9, "feet"),
  35040. default: true
  35041. },
  35042. ]
  35043. ))
  35044. characterMakers.push(() => makeCharacter(
  35045. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35046. {
  35047. side: {
  35048. height: math.unit(15, "feet"),
  35049. weight: math.unit(5000, "kg"),
  35050. name: "Side",
  35051. image: {
  35052. source: "./media/characters/kairne/side.svg",
  35053. extra: 979/811,
  35054. bottom: 13/992
  35055. }
  35056. },
  35057. front: {
  35058. height: math.unit(15, "feet"),
  35059. weight: math.unit(5000, "kg"),
  35060. name: "Front",
  35061. image: {
  35062. source: "./media/characters/kairne/front.svg",
  35063. extra: 908/814,
  35064. bottom: 26/934
  35065. }
  35066. },
  35067. sideNsfw: {
  35068. height: math.unit(15, "feet"),
  35069. weight: math.unit(5000, "kg"),
  35070. name: "Side (NSFW)",
  35071. image: {
  35072. source: "./media/characters/kairne/side-nsfw.svg",
  35073. extra: 979/811,
  35074. bottom: 13/992
  35075. }
  35076. },
  35077. frontNsfw: {
  35078. height: math.unit(15, "feet"),
  35079. weight: math.unit(5000, "kg"),
  35080. name: "Front (NSFW)",
  35081. image: {
  35082. source: "./media/characters/kairne/front-nsfw.svg",
  35083. extra: 908/814,
  35084. bottom: 26/934
  35085. }
  35086. },
  35087. dickCaged: {
  35088. height: math.unit(0.65, "meters"),
  35089. name: "Dick-caged",
  35090. image: {
  35091. source: "./media/characters/kairne/dick-caged.svg"
  35092. }
  35093. },
  35094. dick: {
  35095. height: math.unit(0.79, "meters"),
  35096. name: "Dick",
  35097. image: {
  35098. source: "./media/characters/kairne/dick.svg"
  35099. }
  35100. },
  35101. genitals: {
  35102. height: math.unit(1.29, "meters"),
  35103. name: "Genitals",
  35104. image: {
  35105. source: "./media/characters/kairne/genitals.svg"
  35106. }
  35107. },
  35108. maw: {
  35109. height: math.unit(1.73, "meters"),
  35110. name: "Maw",
  35111. image: {
  35112. source: "./media/characters/kairne/maw.svg"
  35113. }
  35114. },
  35115. },
  35116. [
  35117. {
  35118. name: "Normal",
  35119. height: math.unit(15, "feet"),
  35120. default: true
  35121. },
  35122. ]
  35123. ))
  35124. characterMakers.push(() => makeCharacter(
  35125. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35126. {
  35127. front: {
  35128. height: math.unit(5 + 8/12, "feet"),
  35129. weight: math.unit(139, "lb"),
  35130. name: "Front",
  35131. image: {
  35132. source: "./media/characters/biscuit-jackal/front.svg",
  35133. extra: 2106/1961,
  35134. bottom: 58/2164
  35135. }
  35136. },
  35137. back: {
  35138. height: math.unit(5 + 8/12, "feet"),
  35139. weight: math.unit(139, "lb"),
  35140. name: "Back",
  35141. image: {
  35142. source: "./media/characters/biscuit-jackal/back.svg",
  35143. extra: 2132/1976,
  35144. bottom: 57/2189
  35145. }
  35146. },
  35147. werejackal: {
  35148. height: math.unit(6 + 3/12, "feet"),
  35149. weight: math.unit(188, "lb"),
  35150. name: "Werejackal",
  35151. image: {
  35152. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35153. extra: 2373/2178,
  35154. bottom: 53/2426
  35155. }
  35156. },
  35157. },
  35158. [
  35159. {
  35160. name: "Normal",
  35161. height: math.unit(5 + 8/12, "feet"),
  35162. default: true
  35163. },
  35164. ]
  35165. ))
  35166. characterMakers.push(() => makeCharacter(
  35167. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35168. {
  35169. front: {
  35170. height: math.unit(140, "cm"),
  35171. weight: math.unit(45, "kg"),
  35172. name: "Front",
  35173. image: {
  35174. source: "./media/characters/tayra-white/front.svg",
  35175. extra: 2229/2192,
  35176. bottom: 75/2304
  35177. }
  35178. },
  35179. },
  35180. [
  35181. {
  35182. name: "Normal",
  35183. height: math.unit(140, "cm"),
  35184. default: true
  35185. },
  35186. ]
  35187. ))
  35188. characterMakers.push(() => makeCharacter(
  35189. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35190. {
  35191. front: {
  35192. height: math.unit(4 + 5/12, "feet"),
  35193. name: "Front",
  35194. image: {
  35195. source: "./media/characters/scoop/front.svg",
  35196. extra: 1257/1136,
  35197. bottom: 69/1326
  35198. }
  35199. },
  35200. back: {
  35201. height: math.unit(4 + 5/12, "feet"),
  35202. name: "Back",
  35203. image: {
  35204. source: "./media/characters/scoop/back.svg",
  35205. extra: 1321/1152,
  35206. bottom: 32/1353
  35207. }
  35208. },
  35209. maw: {
  35210. height: math.unit(0.68, "feet"),
  35211. name: "Maw",
  35212. image: {
  35213. source: "./media/characters/scoop/maw.svg"
  35214. }
  35215. },
  35216. },
  35217. [
  35218. {
  35219. name: "Really Small",
  35220. height: math.unit(1, "mm")
  35221. },
  35222. {
  35223. name: "Micro",
  35224. height: math.unit(1, "inch")
  35225. },
  35226. {
  35227. name: "Normal",
  35228. height: math.unit(4 + 5/12, "feet"),
  35229. default: true
  35230. },
  35231. {
  35232. name: "Macro",
  35233. height: math.unit(200, "feet")
  35234. },
  35235. {
  35236. name: "Megamacro",
  35237. height: math.unit(3240, "feet")
  35238. },
  35239. {
  35240. name: "Teramacro",
  35241. height: math.unit(2500, "miles")
  35242. },
  35243. ]
  35244. ))
  35245. characterMakers.push(() => makeCharacter(
  35246. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35247. {
  35248. front: {
  35249. height: math.unit(15 + 7/12, "feet"),
  35250. weight: math.unit(1150, "tons"),
  35251. name: "Front",
  35252. image: {
  35253. source: "./media/characters/saphinara/front.svg",
  35254. extra: 1837/1643,
  35255. bottom: 84/1921
  35256. },
  35257. form: "normal",
  35258. default: true
  35259. },
  35260. side: {
  35261. height: math.unit(15 + 7/12, "feet"),
  35262. weight: math.unit(1150, "tons"),
  35263. name: "Side",
  35264. image: {
  35265. source: "./media/characters/saphinara/side.svg",
  35266. extra: 605/547,
  35267. bottom: 6/611
  35268. },
  35269. form: "normal"
  35270. },
  35271. back: {
  35272. height: math.unit(15 + 7/12, "feet"),
  35273. weight: math.unit(1150, "tons"),
  35274. name: "Back",
  35275. image: {
  35276. source: "./media/characters/saphinara/back.svg",
  35277. extra: 591/531,
  35278. bottom: 13/604
  35279. },
  35280. form: "normal"
  35281. },
  35282. frontTail: {
  35283. height: math.unit(15 + 7/12, "feet"),
  35284. weight: math.unit(1150, "tons"),
  35285. name: "Front (Full Tail)",
  35286. image: {
  35287. source: "./media/characters/saphinara/front-tail.svg",
  35288. extra: 2256/1630,
  35289. bottom: 261/2517
  35290. },
  35291. form: "normal"
  35292. },
  35293. insides: {
  35294. height: math.unit(11.92, "feet"),
  35295. name: "Insides",
  35296. image: {
  35297. source: "./media/characters/saphinara/insides.svg"
  35298. },
  35299. form: "normal"
  35300. },
  35301. head: {
  35302. height: math.unit(4.17, "feet"),
  35303. name: "Head",
  35304. image: {
  35305. source: "./media/characters/saphinara/head.svg"
  35306. },
  35307. form: "normal"
  35308. },
  35309. tongue: {
  35310. height: math.unit(4.60, "feet"),
  35311. name: "Tongue",
  35312. image: {
  35313. source: "./media/characters/saphinara/tongue.svg"
  35314. },
  35315. form: "normal"
  35316. },
  35317. headEnraged: {
  35318. height: math.unit(5.55, "feet"),
  35319. name: "Head (Enraged)",
  35320. image: {
  35321. source: "./media/characters/saphinara/head-enraged.svg"
  35322. },
  35323. form: "normal"
  35324. },
  35325. wings: {
  35326. height: math.unit(11.95, "feet"),
  35327. name: "Wings",
  35328. image: {
  35329. source: "./media/characters/saphinara/wings.svg"
  35330. },
  35331. form: "normal"
  35332. },
  35333. feathers: {
  35334. height: math.unit(8.92, "feet"),
  35335. name: "Feathers",
  35336. image: {
  35337. source: "./media/characters/saphinara/feathers.svg"
  35338. },
  35339. form: "normal"
  35340. },
  35341. shackles: {
  35342. height: math.unit(2, "feet"),
  35343. name: "Shackles",
  35344. image: {
  35345. source: "./media/characters/saphinara/shackles.svg"
  35346. },
  35347. form: "normal"
  35348. },
  35349. eyes: {
  35350. height: math.unit(1.331, "feet"),
  35351. name: "Eyes",
  35352. image: {
  35353. source: "./media/characters/saphinara/eyes.svg"
  35354. },
  35355. form: "normal"
  35356. },
  35357. eyesEnraged: {
  35358. height: math.unit(1.331, "feet"),
  35359. name: "Eyes (Enraged)",
  35360. image: {
  35361. source: "./media/characters/saphinara/eyes-enraged.svg"
  35362. },
  35363. form: "normal"
  35364. },
  35365. trueFormSide: {
  35366. height: math.unit(200, "feet"),
  35367. weight: math.unit(1e7, "tons"),
  35368. name: "Side",
  35369. image: {
  35370. source: "./media/characters/saphinara/true-form-side.svg",
  35371. extra: 1399/770,
  35372. bottom: 97/1496
  35373. },
  35374. form: "true-form",
  35375. default: true
  35376. },
  35377. trueFormMaw: {
  35378. height: math.unit(71.5, "feet"),
  35379. name: "Maw",
  35380. image: {
  35381. source: "./media/characters/saphinara/true-form-maw.svg",
  35382. extra: 2302/1453,
  35383. bottom: 0/2302
  35384. },
  35385. form: "true-form"
  35386. },
  35387. meowberusSide: {
  35388. height: math.unit(75, "feet"),
  35389. weight: math.unit(180000, "kg"),
  35390. preyCapacity: math.unit(50000, "people"),
  35391. name: "Side",
  35392. image: {
  35393. source: "./media/characters/saphinara/meowberus-side.svg",
  35394. extra: 1400/711,
  35395. bottom: 126/1526
  35396. },
  35397. form: "meowberus",
  35398. extraAttributes: {
  35399. "pawArea": {
  35400. name: "Paw Size",
  35401. power: 2,
  35402. type: "area",
  35403. base: math.unit(35, "m^2")
  35404. }
  35405. }
  35406. },
  35407. },
  35408. [
  35409. {
  35410. name: "Normal",
  35411. height: math.unit(15 + 7/12, "feet"),
  35412. default: true,
  35413. form: "normal"
  35414. },
  35415. {
  35416. name: "Angry",
  35417. height: math.unit(30 + 6/12, "feet"),
  35418. form: "normal"
  35419. },
  35420. {
  35421. name: "Enraged",
  35422. height: math.unit(102 + 1/12, "feet"),
  35423. form: "normal"
  35424. },
  35425. {
  35426. name: "True",
  35427. height: math.unit(200, "feet"),
  35428. default: true,
  35429. form: "true-form"
  35430. },
  35431. {
  35432. name: "Normal",
  35433. height: math.unit(75, "feet"),
  35434. default: true,
  35435. form: "meowberus"
  35436. },
  35437. ],
  35438. {
  35439. "normal": {
  35440. name: "Normal",
  35441. default: true
  35442. },
  35443. "true-form": {
  35444. name: "True Form"
  35445. },
  35446. "meowberus": {
  35447. name: "Meowberus",
  35448. },
  35449. }
  35450. ))
  35451. characterMakers.push(() => makeCharacter(
  35452. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35453. {
  35454. front: {
  35455. height: math.unit(6 + 8/12, "feet"),
  35456. weight: math.unit(300, "lb"),
  35457. name: "Front",
  35458. image: {
  35459. source: "./media/characters/jrain/front.svg",
  35460. extra: 3039/2865,
  35461. bottom: 399/3438
  35462. }
  35463. },
  35464. back: {
  35465. height: math.unit(6 + 8/12, "feet"),
  35466. weight: math.unit(300, "lb"),
  35467. name: "Back",
  35468. image: {
  35469. source: "./media/characters/jrain/back.svg",
  35470. extra: 3089/2938,
  35471. bottom: 172/3261
  35472. }
  35473. },
  35474. head: {
  35475. height: math.unit(2.14, "feet"),
  35476. name: "Head",
  35477. image: {
  35478. source: "./media/characters/jrain/head.svg"
  35479. }
  35480. },
  35481. maw: {
  35482. height: math.unit(1.77, "feet"),
  35483. name: "Maw",
  35484. image: {
  35485. source: "./media/characters/jrain/maw.svg"
  35486. }
  35487. },
  35488. leftHand: {
  35489. height: math.unit(1.1, "feet"),
  35490. name: "Left Hand",
  35491. image: {
  35492. source: "./media/characters/jrain/left-hand.svg"
  35493. }
  35494. },
  35495. rightHand: {
  35496. height: math.unit(1.1, "feet"),
  35497. name: "Right Hand",
  35498. image: {
  35499. source: "./media/characters/jrain/right-hand.svg"
  35500. }
  35501. },
  35502. eye: {
  35503. height: math.unit(0.35, "feet"),
  35504. name: "Eye",
  35505. image: {
  35506. source: "./media/characters/jrain/eye.svg"
  35507. }
  35508. },
  35509. },
  35510. [
  35511. {
  35512. name: "Normal",
  35513. height: math.unit(6 + 8/12, "feet"),
  35514. default: true
  35515. },
  35516. {
  35517. name: "Casually Large",
  35518. height: math.unit(25, "feet")
  35519. },
  35520. {
  35521. name: "Giant",
  35522. height: math.unit(100, "feet")
  35523. },
  35524. {
  35525. name: "Kaiju",
  35526. height: math.unit(300, "feet")
  35527. },
  35528. ]
  35529. ))
  35530. characterMakers.push(() => makeCharacter(
  35531. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35532. {
  35533. dragon: {
  35534. height: math.unit(5, "meters"),
  35535. name: "Dragon",
  35536. image: {
  35537. source: "./media/characters/sabrina/dragon.svg",
  35538. extra: 3670 / 2365,
  35539. bottom: 333 / 4003
  35540. }
  35541. },
  35542. gryphon: {
  35543. height: math.unit(3, "meters"),
  35544. name: "Gryphon",
  35545. image: {
  35546. source: "./media/characters/sabrina/gryphon.svg",
  35547. extra: 1576 / 945,
  35548. bottom: 71 / 1647
  35549. }
  35550. },
  35551. snake: {
  35552. height: math.unit(12, "meters"),
  35553. name: "Snake",
  35554. image: {
  35555. source: "./media/characters/sabrina/snake.svg",
  35556. extra: 1758 / 1320,
  35557. bottom: 186 / 1944
  35558. }
  35559. },
  35560. collar: {
  35561. height: math.unit(1.86, "meters"),
  35562. name: "Collar",
  35563. image: {
  35564. source: "./media/characters/sabrina/collar.svg"
  35565. }
  35566. },
  35567. eye: {
  35568. height: math.unit(0.53, "meters"),
  35569. name: "Eye",
  35570. image: {
  35571. source: "./media/characters/sabrina/eye.svg"
  35572. }
  35573. },
  35574. foot: {
  35575. height: math.unit(1.86, "meters"),
  35576. name: "Foot",
  35577. image: {
  35578. source: "./media/characters/sabrina/foot.svg"
  35579. }
  35580. },
  35581. hand: {
  35582. height: math.unit(1.32, "meters"),
  35583. name: "Hand",
  35584. image: {
  35585. source: "./media/characters/sabrina/hand.svg"
  35586. }
  35587. },
  35588. head: {
  35589. height: math.unit(2.44, "meters"),
  35590. name: "Head",
  35591. image: {
  35592. source: "./media/characters/sabrina/head.svg"
  35593. }
  35594. },
  35595. headAngry: {
  35596. height: math.unit(2.44, "meters"),
  35597. name: "Head (Angry))",
  35598. image: {
  35599. source: "./media/characters/sabrina/head-angry.svg"
  35600. }
  35601. },
  35602. maw: {
  35603. height: math.unit(1.65, "meters"),
  35604. name: "Maw",
  35605. image: {
  35606. source: "./media/characters/sabrina/maw.svg"
  35607. }
  35608. },
  35609. spikes: {
  35610. height: math.unit(1.69, "meters"),
  35611. name: "Spikes",
  35612. image: {
  35613. source: "./media/characters/sabrina/spikes.svg"
  35614. }
  35615. },
  35616. stomach: {
  35617. height: math.unit(1.15, "meters"),
  35618. name: "Stomach",
  35619. image: {
  35620. source: "./media/characters/sabrina/stomach.svg"
  35621. }
  35622. },
  35623. tongue: {
  35624. height: math.unit(1.27, "meters"),
  35625. name: "Tongue",
  35626. image: {
  35627. source: "./media/characters/sabrina/tongue.svg"
  35628. }
  35629. },
  35630. wingDorsal: {
  35631. height: math.unit(4.85, "meters"),
  35632. name: "Wing (Dorsal)",
  35633. image: {
  35634. source: "./media/characters/sabrina/wing-dorsal.svg"
  35635. }
  35636. },
  35637. wingVentral: {
  35638. height: math.unit(4.85, "meters"),
  35639. name: "Wing (Ventral)",
  35640. image: {
  35641. source: "./media/characters/sabrina/wing-ventral.svg"
  35642. }
  35643. },
  35644. },
  35645. [
  35646. {
  35647. name: "Normal",
  35648. height: math.unit(5, "meters"),
  35649. default: true
  35650. },
  35651. ]
  35652. ))
  35653. characterMakers.push(() => makeCharacter(
  35654. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35655. {
  35656. frontMaid: {
  35657. height: math.unit(5 + 5/12, "feet"),
  35658. weight: math.unit(130, "lb"),
  35659. name: "Front (Maid)",
  35660. image: {
  35661. source: "./media/characters/midnight-tales/front-maid.svg",
  35662. extra: 489/454,
  35663. bottom: 61/550
  35664. }
  35665. },
  35666. frontFormal: {
  35667. height: math.unit(5 + 5/12, "feet"),
  35668. weight: math.unit(130, "lb"),
  35669. name: "Front (Formal)",
  35670. image: {
  35671. source: "./media/characters/midnight-tales/front-formal.svg",
  35672. extra: 489/454,
  35673. bottom: 61/550
  35674. }
  35675. },
  35676. back: {
  35677. height: math.unit(5 + 5/12, "feet"),
  35678. weight: math.unit(130, "lb"),
  35679. name: "Back",
  35680. image: {
  35681. source: "./media/characters/midnight-tales/back.svg",
  35682. extra: 498/456,
  35683. bottom: 33/531
  35684. }
  35685. },
  35686. frontBeast: {
  35687. height: math.unit(40, "feet"),
  35688. weight: math.unit(64000, "lb"),
  35689. name: "Front (Beast)",
  35690. image: {
  35691. source: "./media/characters/midnight-tales/front-beast.svg",
  35692. extra: 927/860,
  35693. bottom: 53/980
  35694. }
  35695. },
  35696. backBeast: {
  35697. height: math.unit(40, "feet"),
  35698. weight: math.unit(64000, "lb"),
  35699. name: "Back (Beast)",
  35700. image: {
  35701. source: "./media/characters/midnight-tales/back-beast.svg",
  35702. extra: 929/855,
  35703. bottom: 16/945
  35704. }
  35705. },
  35706. footBeast: {
  35707. height: math.unit(6.7, "feet"),
  35708. name: "Foot (Beast)",
  35709. image: {
  35710. source: "./media/characters/midnight-tales/foot-beast.svg"
  35711. }
  35712. },
  35713. headBeast: {
  35714. height: math.unit(8, "feet"),
  35715. name: "Head (Beast)",
  35716. image: {
  35717. source: "./media/characters/midnight-tales/head-beast.svg"
  35718. }
  35719. },
  35720. },
  35721. [
  35722. {
  35723. name: "Normal",
  35724. height: math.unit(5 + 5 / 12, "feet"),
  35725. default: true
  35726. },
  35727. {
  35728. name: "Macro",
  35729. height: math.unit(25, "feet")
  35730. },
  35731. ]
  35732. ))
  35733. characterMakers.push(() => makeCharacter(
  35734. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35735. {
  35736. front: {
  35737. height: math.unit(5 + 10/12, "feet"),
  35738. name: "Front",
  35739. image: {
  35740. source: "./media/characters/argon/front.svg",
  35741. extra: 2009/1935,
  35742. bottom: 118/2127
  35743. }
  35744. },
  35745. back: {
  35746. height: math.unit(5 + 10/12, "feet"),
  35747. name: "Back",
  35748. image: {
  35749. source: "./media/characters/argon/back.svg",
  35750. extra: 2047/1992,
  35751. bottom: 20/2067
  35752. }
  35753. },
  35754. frontDressed: {
  35755. height: math.unit(5 + 10/12, "feet"),
  35756. name: "Front (Dressed)",
  35757. image: {
  35758. source: "./media/characters/argon/front-dressed.svg",
  35759. extra: 2009/1935,
  35760. bottom: 118/2127
  35761. }
  35762. },
  35763. },
  35764. [
  35765. {
  35766. name: "Normal",
  35767. height: math.unit(5 + 10/12, "feet"),
  35768. default: true
  35769. },
  35770. ]
  35771. ))
  35772. characterMakers.push(() => makeCharacter(
  35773. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35774. {
  35775. front: {
  35776. height: math.unit(8 + 6/12, "feet"),
  35777. weight: math.unit(1150, "lb"),
  35778. name: "Front",
  35779. image: {
  35780. source: "./media/characters/kichi/front.svg",
  35781. extra: 1267/1164,
  35782. bottom: 61/1328
  35783. }
  35784. },
  35785. back: {
  35786. height: math.unit(8 + 6/12, "feet"),
  35787. weight: math.unit(1150, "lb"),
  35788. name: "Back",
  35789. image: {
  35790. source: "./media/characters/kichi/back.svg",
  35791. extra: 1273/1166,
  35792. bottom: 33/1306
  35793. }
  35794. },
  35795. },
  35796. [
  35797. {
  35798. name: "Normal",
  35799. height: math.unit(8 + 6/12, "feet"),
  35800. default: true
  35801. },
  35802. ]
  35803. ))
  35804. characterMakers.push(() => makeCharacter(
  35805. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35806. {
  35807. front: {
  35808. height: math.unit(6, "feet"),
  35809. weight: math.unit(210, "lb"),
  35810. name: "Front",
  35811. image: {
  35812. source: "./media/characters/manetel-greyscale/front.svg",
  35813. extra: 350/312,
  35814. bottom: 8/358
  35815. }
  35816. },
  35817. },
  35818. [
  35819. {
  35820. name: "Micro",
  35821. height: math.unit(2, "inches")
  35822. },
  35823. {
  35824. name: "Normal",
  35825. height: math.unit(6, "feet"),
  35826. default: true
  35827. },
  35828. {
  35829. name: "Minimacro",
  35830. height: math.unit(17, "feet")
  35831. },
  35832. {
  35833. name: "Macro",
  35834. height: math.unit(117, "feet")
  35835. },
  35836. ]
  35837. ))
  35838. characterMakers.push(() => makeCharacter(
  35839. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35840. {
  35841. side: {
  35842. height: math.unit(5 + 1/12, "feet"),
  35843. weight: math.unit(418, "lb"),
  35844. name: "Side",
  35845. image: {
  35846. source: "./media/characters/softpurr/side.svg",
  35847. extra: 1993/1945,
  35848. bottom: 134/2127
  35849. }
  35850. },
  35851. front: {
  35852. height: math.unit(5 + 1/12, "feet"),
  35853. weight: math.unit(418, "lb"),
  35854. name: "Front",
  35855. image: {
  35856. source: "./media/characters/softpurr/front.svg",
  35857. extra: 1950/1856,
  35858. bottom: 174/2124
  35859. }
  35860. },
  35861. paw: {
  35862. height: math.unit(1, "feet"),
  35863. name: "Paw",
  35864. image: {
  35865. source: "./media/characters/softpurr/paw.svg"
  35866. }
  35867. },
  35868. },
  35869. [
  35870. {
  35871. name: "Normal",
  35872. height: math.unit(5 + 1/12, "feet"),
  35873. default: true
  35874. },
  35875. ]
  35876. ))
  35877. characterMakers.push(() => makeCharacter(
  35878. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35879. {
  35880. front: {
  35881. height: math.unit(260, "meters"),
  35882. name: "Front",
  35883. image: {
  35884. source: "./media/characters/anahita/front.svg",
  35885. extra: 665/635,
  35886. bottom: 89/754
  35887. }
  35888. },
  35889. },
  35890. [
  35891. {
  35892. name: "Macro",
  35893. height: math.unit(260, "meters"),
  35894. default: true
  35895. },
  35896. ]
  35897. ))
  35898. characterMakers.push(() => makeCharacter(
  35899. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35900. {
  35901. front: {
  35902. height: math.unit(4 + 10/12, "feet"),
  35903. weight: math.unit(160, "lb"),
  35904. name: "Front",
  35905. image: {
  35906. source: "./media/characters/chip-mouse/front.svg",
  35907. extra: 3528/3408,
  35908. bottom: 0/3528
  35909. }
  35910. },
  35911. frontNsfw: {
  35912. height: math.unit(4 + 10/12, "feet"),
  35913. weight: math.unit(160, "lb"),
  35914. name: "Front (NSFW)",
  35915. image: {
  35916. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35917. extra: 3528/3408,
  35918. bottom: 0/3528
  35919. }
  35920. },
  35921. },
  35922. [
  35923. {
  35924. name: "Normal",
  35925. height: math.unit(4 + 10/12, "feet"),
  35926. default: true
  35927. },
  35928. ]
  35929. ))
  35930. characterMakers.push(() => makeCharacter(
  35931. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35932. {
  35933. side: {
  35934. height: math.unit(10, "feet"),
  35935. weight: math.unit(14000, "lb"),
  35936. name: "Side",
  35937. image: {
  35938. source: "./media/characters/kremm/side.svg",
  35939. extra: 1390/1053,
  35940. bottom: 90/1480
  35941. }
  35942. },
  35943. gut: {
  35944. height: math.unit(5.8, "feet"),
  35945. name: "Gut",
  35946. image: {
  35947. source: "./media/characters/kremm/gut.svg"
  35948. }
  35949. },
  35950. ass: {
  35951. height: math.unit(6.1, "feet"),
  35952. name: "Ass",
  35953. image: {
  35954. source: "./media/characters/kremm/ass.svg"
  35955. }
  35956. },
  35957. jaws: {
  35958. height: math.unit(2.2, "feet"),
  35959. name: "Jaws",
  35960. image: {
  35961. source: "./media/characters/kremm/jaws.svg"
  35962. }
  35963. },
  35964. dick: {
  35965. height: math.unit(4.26, "feet"),
  35966. name: "Dick",
  35967. image: {
  35968. source: "./media/characters/kremm/dick.svg"
  35969. }
  35970. },
  35971. },
  35972. [
  35973. {
  35974. name: "Normal",
  35975. height: math.unit(10, "feet"),
  35976. default: true
  35977. },
  35978. ]
  35979. ))
  35980. characterMakers.push(() => makeCharacter(
  35981. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35982. {
  35983. front: {
  35984. height: math.unit(30, "stories"),
  35985. name: "Front",
  35986. image: {
  35987. source: "./media/characters/kai/front.svg",
  35988. extra: 1892/1718,
  35989. bottom: 162/2054
  35990. }
  35991. },
  35992. },
  35993. [
  35994. {
  35995. name: "Macro",
  35996. height: math.unit(30, "stories"),
  35997. default: true
  35998. },
  35999. ]
  36000. ))
  36001. characterMakers.push(() => makeCharacter(
  36002. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36003. {
  36004. front: {
  36005. height: math.unit(6 + 4/12, "feet"),
  36006. weight: math.unit(145, "lb"),
  36007. name: "Front",
  36008. image: {
  36009. source: "./media/characters/sykes/front.svg",
  36010. extra: 1321 / 1187,
  36011. bottom: 66 / 1387
  36012. }
  36013. },
  36014. back: {
  36015. height: math.unit(6 + 4/12, "feet"),
  36016. weight: math.unit(145, "lb"),
  36017. name: "Back",
  36018. image: {
  36019. source: "./media/characters/sykes/back.svg",
  36020. extra: 1326/1181,
  36021. bottom: 31/1357
  36022. }
  36023. },
  36024. traditionalOutfit: {
  36025. height: math.unit(6 + 4/12, "feet"),
  36026. weight: math.unit(145, "lb"),
  36027. name: "Traditional Outfit",
  36028. image: {
  36029. source: "./media/characters/sykes/traditional-outfit.svg",
  36030. extra: 1321 / 1187,
  36031. bottom: 66 / 1387
  36032. }
  36033. },
  36034. adventureOutfit: {
  36035. height: math.unit(6 + 4/12, "feet"),
  36036. weight: math.unit(145, "lb"),
  36037. name: "Adventure Outfit",
  36038. image: {
  36039. source: "./media/characters/sykes/adventure-outfit.svg",
  36040. extra: 1321 / 1187,
  36041. bottom: 66 / 1387
  36042. }
  36043. },
  36044. handLeft: {
  36045. height: math.unit(0.9, "feet"),
  36046. name: "Hand (Left)",
  36047. image: {
  36048. source: "./media/characters/sykes/hand-left.svg"
  36049. }
  36050. },
  36051. handRight: {
  36052. height: math.unit(0.839, "feet"),
  36053. name: "Hand (Right)",
  36054. image: {
  36055. source: "./media/characters/sykes/hand-right.svg"
  36056. }
  36057. },
  36058. leftFoot: {
  36059. height: math.unit(1.2, "feet"),
  36060. name: "Foot (Left)",
  36061. image: {
  36062. source: "./media/characters/sykes/foot-left.svg"
  36063. }
  36064. },
  36065. rightFoot: {
  36066. height: math.unit(1.2, "feet"),
  36067. name: "Foot (Right)",
  36068. image: {
  36069. source: "./media/characters/sykes/foot-right.svg"
  36070. }
  36071. },
  36072. maw: {
  36073. height: math.unit(1.93, "feet"),
  36074. name: "Maw",
  36075. image: {
  36076. source: "./media/characters/sykes/maw.svg"
  36077. }
  36078. },
  36079. teeth: {
  36080. height: math.unit(0.51, "feet"),
  36081. name: "Teeth",
  36082. image: {
  36083. source: "./media/characters/sykes/teeth.svg"
  36084. }
  36085. },
  36086. tongue: {
  36087. height: math.unit(2.13, "feet"),
  36088. name: "Tongue",
  36089. image: {
  36090. source: "./media/characters/sykes/tongue.svg"
  36091. }
  36092. },
  36093. uvula: {
  36094. height: math.unit(0.16, "feet"),
  36095. name: "Uvula",
  36096. image: {
  36097. source: "./media/characters/sykes/uvula.svg"
  36098. }
  36099. },
  36100. collar: {
  36101. height: math.unit(0.287, "feet"),
  36102. name: "Collar",
  36103. image: {
  36104. source: "./media/characters/sykes/collar.svg"
  36105. }
  36106. },
  36107. tail: {
  36108. height: math.unit(3.8, "feet"),
  36109. name: "Tail",
  36110. image: {
  36111. source: "./media/characters/sykes/tail.svg"
  36112. }
  36113. },
  36114. },
  36115. [
  36116. {
  36117. name: "Shrunken",
  36118. height: math.unit(5, "inches")
  36119. },
  36120. {
  36121. name: "Normal",
  36122. height: math.unit(6 + 4 / 12, "feet"),
  36123. default: true
  36124. },
  36125. {
  36126. name: "Big",
  36127. height: math.unit(15, "feet")
  36128. },
  36129. ]
  36130. ))
  36131. characterMakers.push(() => makeCharacter(
  36132. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36133. {
  36134. front: {
  36135. height: math.unit(5 + 8/12, "feet"),
  36136. weight: math.unit(190, "lb"),
  36137. name: "Front",
  36138. image: {
  36139. source: "./media/characters/oven-otter/front.svg",
  36140. extra: 1809/1740,
  36141. bottom: 181/1990
  36142. }
  36143. },
  36144. back: {
  36145. height: math.unit(5 + 8/12, "feet"),
  36146. weight: math.unit(190, "lb"),
  36147. name: "Back",
  36148. image: {
  36149. source: "./media/characters/oven-otter/back.svg",
  36150. extra: 1709/1635,
  36151. bottom: 118/1827
  36152. }
  36153. },
  36154. hand: {
  36155. height: math.unit(1.07, "feet"),
  36156. name: "Hand",
  36157. image: {
  36158. source: "./media/characters/oven-otter/hand.svg"
  36159. }
  36160. },
  36161. beans: {
  36162. height: math.unit(1.74, "feet"),
  36163. name: "Beans",
  36164. image: {
  36165. source: "./media/characters/oven-otter/beans.svg"
  36166. }
  36167. },
  36168. },
  36169. [
  36170. {
  36171. name: "Micro",
  36172. height: math.unit(0.5, "inches")
  36173. },
  36174. {
  36175. name: "Normal",
  36176. height: math.unit(5 + 8/12, "feet"),
  36177. default: true
  36178. },
  36179. {
  36180. name: "Macro",
  36181. height: math.unit(250, "feet")
  36182. },
  36183. {
  36184. name: "Really High",
  36185. height: math.unit(420, "feet")
  36186. },
  36187. ]
  36188. ))
  36189. characterMakers.push(() => makeCharacter(
  36190. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36191. {
  36192. front: {
  36193. height: math.unit(5, "meters"),
  36194. weight: math.unit(292000000000000, "kg"),
  36195. name: "Front",
  36196. image: {
  36197. source: "./media/characters/devourer/front.svg",
  36198. extra: 1800/1733,
  36199. bottom: 211/2011
  36200. }
  36201. },
  36202. maw: {
  36203. height: math.unit(1.1, "meter"),
  36204. name: "Maw",
  36205. image: {
  36206. source: "./media/characters/devourer/maw.svg"
  36207. }
  36208. },
  36209. },
  36210. [
  36211. {
  36212. name: "Small",
  36213. height: math.unit(3, "meters")
  36214. },
  36215. {
  36216. name: "Large",
  36217. height: math.unit(5, "meters"),
  36218. default: true
  36219. },
  36220. ]
  36221. ))
  36222. characterMakers.push(() => makeCharacter(
  36223. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36224. {
  36225. front: {
  36226. height: math.unit(6, "feet"),
  36227. weight: math.unit(400, "lb"),
  36228. name: "Front",
  36229. image: {
  36230. source: "./media/characters/ellarby/front.svg",
  36231. extra: 1909/1763,
  36232. bottom: 80/1989
  36233. }
  36234. },
  36235. back: {
  36236. height: math.unit(6, "feet"),
  36237. weight: math.unit(400, "lb"),
  36238. name: "Back",
  36239. image: {
  36240. source: "./media/characters/ellarby/back.svg",
  36241. extra: 1914/1784,
  36242. bottom: 172/2086
  36243. }
  36244. },
  36245. },
  36246. [
  36247. {
  36248. name: "Mischief",
  36249. height: math.unit(18, "inches")
  36250. },
  36251. {
  36252. name: "Trouble",
  36253. height: math.unit(12, "feet")
  36254. },
  36255. {
  36256. name: "Havoc",
  36257. height: math.unit(200, "feet"),
  36258. default: true
  36259. },
  36260. {
  36261. name: "Pandemonium",
  36262. height: math.unit(1, "mile")
  36263. },
  36264. {
  36265. name: "Catastrophe",
  36266. height: math.unit(100, "miles")
  36267. },
  36268. ]
  36269. ))
  36270. characterMakers.push(() => makeCharacter(
  36271. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36272. {
  36273. front: {
  36274. height: math.unit(4.7, "meters"),
  36275. weight: math.unit(6500, "kg"),
  36276. name: "Front",
  36277. image: {
  36278. source: "./media/characters/vex/front.svg",
  36279. extra: 1288/1140,
  36280. bottom: 100/1388
  36281. }
  36282. },
  36283. },
  36284. [
  36285. {
  36286. name: "Normal",
  36287. height: math.unit(4.7, "meters"),
  36288. default: true
  36289. },
  36290. ]
  36291. ))
  36292. characterMakers.push(() => makeCharacter(
  36293. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36294. {
  36295. normal: {
  36296. height: math.unit(6, "feet"),
  36297. weight: math.unit(350, "lb"),
  36298. name: "Normal",
  36299. image: {
  36300. source: "./media/characters/teshy/normal.svg",
  36301. extra: 1795/1735,
  36302. bottom: 16/1811
  36303. }
  36304. },
  36305. monsterFront: {
  36306. height: math.unit(12, "feet"),
  36307. weight: math.unit(4700, "lb"),
  36308. name: "Monster (Front)",
  36309. image: {
  36310. source: "./media/characters/teshy/monster-front.svg",
  36311. extra: 2042/2034,
  36312. bottom: 128/2170
  36313. }
  36314. },
  36315. monsterSide: {
  36316. height: math.unit(12, "feet"),
  36317. weight: math.unit(4700, "lb"),
  36318. name: "Monster (Side)",
  36319. image: {
  36320. source: "./media/characters/teshy/monster-side.svg",
  36321. extra: 2067/2056,
  36322. bottom: 70/2137
  36323. }
  36324. },
  36325. monsterBack: {
  36326. height: math.unit(12, "feet"),
  36327. weight: math.unit(4700, "lb"),
  36328. name: "Monster (Back)",
  36329. image: {
  36330. source: "./media/characters/teshy/monster-back.svg",
  36331. extra: 1921/1914,
  36332. bottom: 171/2092
  36333. }
  36334. },
  36335. },
  36336. [
  36337. {
  36338. name: "Normal",
  36339. height: math.unit(6, "feet"),
  36340. default: true
  36341. },
  36342. ]
  36343. ))
  36344. characterMakers.push(() => makeCharacter(
  36345. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36346. {
  36347. front: {
  36348. height: math.unit(6, "feet"),
  36349. name: "Front",
  36350. image: {
  36351. source: "./media/characters/ramey/front.svg",
  36352. extra: 790/787,
  36353. bottom: 27/817
  36354. }
  36355. },
  36356. },
  36357. [
  36358. {
  36359. name: "Normal",
  36360. height: math.unit(6, "feet"),
  36361. default: true
  36362. },
  36363. ]
  36364. ))
  36365. characterMakers.push(() => makeCharacter(
  36366. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36367. {
  36368. front: {
  36369. height: math.unit(5 + 5/12, "feet"),
  36370. weight: math.unit(120, "lb"),
  36371. name: "Front",
  36372. image: {
  36373. source: "./media/characters/phirae/front.svg",
  36374. extra: 2491/2436,
  36375. bottom: 38/2529
  36376. }
  36377. },
  36378. },
  36379. [
  36380. {
  36381. name: "Normal",
  36382. height: math.unit(5 + 5/12, "feet"),
  36383. default: true
  36384. },
  36385. ]
  36386. ))
  36387. characterMakers.push(() => makeCharacter(
  36388. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36389. {
  36390. front: {
  36391. height: math.unit(5 + 3/12, "feet"),
  36392. name: "Front",
  36393. image: {
  36394. source: "./media/characters/stagglas/front.svg",
  36395. extra: 962/882,
  36396. bottom: 53/1015
  36397. }
  36398. },
  36399. feral: {
  36400. height: math.unit(335, "cm"),
  36401. name: "Feral",
  36402. image: {
  36403. source: "./media/characters/stagglas/feral.svg",
  36404. extra: 1732/1090,
  36405. bottom: 48/1780
  36406. }
  36407. },
  36408. },
  36409. [
  36410. {
  36411. name: "Normal",
  36412. height: math.unit(5 + 3/12, "feet"),
  36413. default: true
  36414. },
  36415. ]
  36416. ))
  36417. characterMakers.push(() => makeCharacter(
  36418. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36419. {
  36420. front: {
  36421. height: math.unit(5 + 4/12, "feet"),
  36422. weight: math.unit(145, "lb"),
  36423. name: "Front",
  36424. image: {
  36425. source: "./media/characters/starra/front.svg",
  36426. extra: 1790/1691,
  36427. bottom: 91/1881
  36428. }
  36429. },
  36430. },
  36431. [
  36432. {
  36433. name: "Normal",
  36434. height: math.unit(5 + 4/12, "feet"),
  36435. default: true
  36436. },
  36437. ]
  36438. ))
  36439. characterMakers.push(() => makeCharacter(
  36440. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36441. {
  36442. front: {
  36443. height: math.unit(2.2, "meters"),
  36444. name: "Front",
  36445. image: {
  36446. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36447. extra: 1248/972,
  36448. bottom: 38/1286
  36449. }
  36450. },
  36451. },
  36452. [
  36453. {
  36454. name: "Normal",
  36455. height: math.unit(2.2, "meters"),
  36456. default: true
  36457. },
  36458. ]
  36459. ))
  36460. characterMakers.push(() => makeCharacter(
  36461. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36462. {
  36463. side: {
  36464. height: math.unit(8 + 2/12, "feet"),
  36465. weight: math.unit(1240, "lb"),
  36466. name: "Side",
  36467. image: {
  36468. source: "./media/characters/mika-valentine/side.svg",
  36469. extra: 2670/2501,
  36470. bottom: 250/2920
  36471. }
  36472. },
  36473. },
  36474. [
  36475. {
  36476. name: "Normal",
  36477. height: math.unit(8 + 2/12, "feet"),
  36478. default: true
  36479. },
  36480. ]
  36481. ))
  36482. characterMakers.push(() => makeCharacter(
  36483. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36484. {
  36485. front: {
  36486. height: math.unit(7 + 2/12, "feet"),
  36487. name: "Front",
  36488. image: {
  36489. source: "./media/characters/xoltol/front.svg",
  36490. extra: 2212/2124,
  36491. bottom: 84/2296
  36492. }
  36493. },
  36494. side: {
  36495. height: math.unit(7 + 2/12, "feet"),
  36496. name: "Side",
  36497. image: {
  36498. source: "./media/characters/xoltol/side.svg",
  36499. extra: 2273/2197,
  36500. bottom: 26/2299
  36501. }
  36502. },
  36503. hand: {
  36504. height: math.unit(2.5, "feet"),
  36505. name: "Hand",
  36506. image: {
  36507. source: "./media/characters/xoltol/hand.svg"
  36508. }
  36509. },
  36510. },
  36511. [
  36512. {
  36513. name: "Small-ish",
  36514. height: math.unit(5 + 11/12, "feet")
  36515. },
  36516. {
  36517. name: "Normal",
  36518. height: math.unit(7 + 2/12, "feet")
  36519. },
  36520. {
  36521. name: "\"Macro\"",
  36522. height: math.unit(14 + 9/12, "feet"),
  36523. default: true
  36524. },
  36525. {
  36526. name: "Alternate Height",
  36527. height: math.unit(20, "feet")
  36528. },
  36529. {
  36530. name: "Actually Macro",
  36531. height: math.unit(100, "feet")
  36532. },
  36533. ]
  36534. ))
  36535. characterMakers.push(() => makeCharacter(
  36536. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36537. {
  36538. front: {
  36539. height: math.unit(5 + 2/12, "feet"),
  36540. name: "Front",
  36541. image: {
  36542. source: "./media/characters/kotetsu-redwood/front.svg",
  36543. extra: 1053/942,
  36544. bottom: 60/1113
  36545. }
  36546. },
  36547. },
  36548. [
  36549. {
  36550. name: "Normal",
  36551. height: math.unit(5 + 2/12, "feet"),
  36552. default: true
  36553. },
  36554. ]
  36555. ))
  36556. characterMakers.push(() => makeCharacter(
  36557. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36558. {
  36559. front: {
  36560. height: math.unit(2.4, "meters"),
  36561. weight: math.unit(125, "kg"),
  36562. name: "Front",
  36563. image: {
  36564. source: "./media/characters/lilith/front.svg",
  36565. extra: 1590/1513,
  36566. bottom: 203/1793
  36567. }
  36568. },
  36569. },
  36570. [
  36571. {
  36572. name: "Humanoid",
  36573. height: math.unit(2.4, "meters")
  36574. },
  36575. {
  36576. name: "Normal",
  36577. height: math.unit(6, "meters"),
  36578. default: true
  36579. },
  36580. {
  36581. name: "Largest",
  36582. height: math.unit(55, "meters")
  36583. },
  36584. ]
  36585. ))
  36586. characterMakers.push(() => makeCharacter(
  36587. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36588. {
  36589. front: {
  36590. height: math.unit(8 + 4/12, "feet"),
  36591. weight: math.unit(535, "lb"),
  36592. name: "Front",
  36593. image: {
  36594. source: "./media/characters/beh'kah-bolger/front.svg",
  36595. extra: 1660/1603,
  36596. bottom: 37/1697
  36597. }
  36598. },
  36599. },
  36600. [
  36601. {
  36602. name: "Normal",
  36603. height: math.unit(8 + 4/12, "feet"),
  36604. default: true
  36605. },
  36606. {
  36607. name: "Kaiju",
  36608. height: math.unit(250, "feet")
  36609. },
  36610. {
  36611. name: "Still Growing",
  36612. height: math.unit(10, "miles")
  36613. },
  36614. {
  36615. name: "Continental",
  36616. height: math.unit(5000, "miles")
  36617. },
  36618. {
  36619. name: "Final Form",
  36620. height: math.unit(2500000, "miles")
  36621. },
  36622. ]
  36623. ))
  36624. characterMakers.push(() => makeCharacter(
  36625. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36626. {
  36627. front: {
  36628. height: math.unit(7 + 2/12, "feet"),
  36629. weight: math.unit(230, "kg"),
  36630. name: "Front",
  36631. image: {
  36632. source: "./media/characters/tatyana-milewska/front.svg",
  36633. extra: 1199/1150,
  36634. bottom: 86/1285
  36635. }
  36636. },
  36637. },
  36638. [
  36639. {
  36640. name: "Normal",
  36641. height: math.unit(7 + 2/12, "feet"),
  36642. default: true
  36643. },
  36644. {
  36645. name: "Big",
  36646. height: math.unit(12, "feet")
  36647. },
  36648. {
  36649. name: "Minimacro",
  36650. height: math.unit(20, "feet")
  36651. },
  36652. {
  36653. name: "Macro",
  36654. height: math.unit(120, "feet")
  36655. },
  36656. ]
  36657. ))
  36658. characterMakers.push(() => makeCharacter(
  36659. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36660. {
  36661. front: {
  36662. height: math.unit(7 + 8/12, "feet"),
  36663. weight: math.unit(152, "kg"),
  36664. name: "Front",
  36665. image: {
  36666. source: "./media/characters/helen-arri/front.svg",
  36667. extra: 440/423,
  36668. bottom: 14/454
  36669. }
  36670. },
  36671. back: {
  36672. height: math.unit(7 + 8/12, "feet"),
  36673. weight: math.unit(152, "kg"),
  36674. name: "Back",
  36675. image: {
  36676. source: "./media/characters/helen-arri/back.svg",
  36677. extra: 443/426,
  36678. bottom: 8/451
  36679. }
  36680. },
  36681. },
  36682. [
  36683. {
  36684. name: "Normal",
  36685. height: math.unit(7 + 8/12, "feet"),
  36686. default: true
  36687. },
  36688. {
  36689. name: "Big",
  36690. height: math.unit(14, "feet")
  36691. },
  36692. {
  36693. name: "Minimacro",
  36694. height: math.unit(24, "feet")
  36695. },
  36696. {
  36697. name: "Macro",
  36698. height: math.unit(140, "feet")
  36699. },
  36700. ]
  36701. ))
  36702. characterMakers.push(() => makeCharacter(
  36703. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36704. {
  36705. front: {
  36706. height: math.unit(6, "meters"),
  36707. name: "Front",
  36708. image: {
  36709. source: "./media/characters/ehanu-rehu/front.svg",
  36710. extra: 1800/1800,
  36711. bottom: 59/1859
  36712. }
  36713. },
  36714. },
  36715. [
  36716. {
  36717. name: "Normal",
  36718. height: math.unit(6, "meters"),
  36719. default: true
  36720. },
  36721. ]
  36722. ))
  36723. characterMakers.push(() => makeCharacter(
  36724. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36725. {
  36726. front: {
  36727. height: math.unit(7 + 3/12, "feet"),
  36728. name: "Front",
  36729. image: {
  36730. source: "./media/characters/renholder/front.svg",
  36731. extra: 3096/2960,
  36732. bottom: 250/3346
  36733. }
  36734. },
  36735. },
  36736. [
  36737. {
  36738. name: "Normal Bat",
  36739. height: math.unit(7 + 3/12, "feet"),
  36740. default: true
  36741. },
  36742. {
  36743. name: "Slightly Tall Bat",
  36744. height: math.unit(100, "feet")
  36745. },
  36746. {
  36747. name: "Big Bat",
  36748. height: math.unit(1000, "feet")
  36749. },
  36750. {
  36751. name: "City-Sized Bat",
  36752. height: math.unit(200000, "feet")
  36753. },
  36754. {
  36755. name: "Bigger Bat",
  36756. height: math.unit(10000, "miles")
  36757. },
  36758. {
  36759. name: "Solar Sized Bat",
  36760. height: math.unit(100, "AU")
  36761. },
  36762. {
  36763. name: "Galactic Bat",
  36764. height: math.unit(200000, "lightyears")
  36765. },
  36766. {
  36767. name: "Universally Known Bat",
  36768. height: math.unit(1, "universe")
  36769. },
  36770. ]
  36771. ))
  36772. characterMakers.push(() => makeCharacter(
  36773. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36774. {
  36775. front: {
  36776. height: math.unit(6 + 11/12, "feet"),
  36777. weight: math.unit(250, "lb"),
  36778. name: "Front",
  36779. image: {
  36780. source: "./media/characters/cookiecat/front.svg",
  36781. extra: 893/827,
  36782. bottom: 14/907
  36783. }
  36784. },
  36785. },
  36786. [
  36787. {
  36788. name: "Micro",
  36789. height: math.unit(3, "inches")
  36790. },
  36791. {
  36792. name: "Normal",
  36793. height: math.unit(6 + 11/12, "feet"),
  36794. default: true
  36795. },
  36796. {
  36797. name: "Macro",
  36798. height: math.unit(100, "feet")
  36799. },
  36800. {
  36801. name: "Macro+",
  36802. height: math.unit(404, "feet")
  36803. },
  36804. {
  36805. name: "Megamacro",
  36806. height: math.unit(165, "miles")
  36807. },
  36808. {
  36809. name: "Planetary",
  36810. height: math.unit(4600, "miles")
  36811. },
  36812. ]
  36813. ))
  36814. characterMakers.push(() => makeCharacter(
  36815. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36816. {
  36817. front: {
  36818. height: math.unit(10 + 3/12, "feet"),
  36819. weight: math.unit(1500, "lb"),
  36820. name: "Front",
  36821. image: {
  36822. source: "./media/characters/tux-kusanagi/front.svg",
  36823. extra: 944/840,
  36824. bottom: 39/983
  36825. }
  36826. },
  36827. back: {
  36828. height: math.unit(10 + 3/12, "feet"),
  36829. weight: math.unit(1500, "lb"),
  36830. name: "Back",
  36831. image: {
  36832. source: "./media/characters/tux-kusanagi/back.svg",
  36833. extra: 941/842,
  36834. bottom: 28/969
  36835. }
  36836. },
  36837. rump: {
  36838. height: math.unit(5.25, "feet"),
  36839. name: "Rump",
  36840. image: {
  36841. source: "./media/characters/tux-kusanagi/rump.svg"
  36842. }
  36843. },
  36844. beak: {
  36845. height: math.unit(1.54, "feet"),
  36846. name: "Beak",
  36847. image: {
  36848. source: "./media/characters/tux-kusanagi/beak.svg"
  36849. }
  36850. },
  36851. },
  36852. [
  36853. {
  36854. name: "Normal",
  36855. height: math.unit(10 + 3/12, "feet"),
  36856. default: true
  36857. },
  36858. ]
  36859. ))
  36860. characterMakers.push(() => makeCharacter(
  36861. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36862. {
  36863. front: {
  36864. height: math.unit(58, "feet"),
  36865. weight: math.unit(200, "tons"),
  36866. name: "Front",
  36867. image: {
  36868. source: "./media/characters/uzarmazari/front.svg",
  36869. extra: 1575/1455,
  36870. bottom: 152/1727
  36871. }
  36872. },
  36873. back: {
  36874. height: math.unit(58, "feet"),
  36875. weight: math.unit(200, "tons"),
  36876. name: "Back",
  36877. image: {
  36878. source: "./media/characters/uzarmazari/back.svg",
  36879. extra: 1585/1510,
  36880. bottom: 157/1742
  36881. }
  36882. },
  36883. head: {
  36884. height: math.unit(26, "feet"),
  36885. name: "Head",
  36886. image: {
  36887. source: "./media/characters/uzarmazari/head.svg"
  36888. }
  36889. },
  36890. },
  36891. [
  36892. {
  36893. name: "Normal",
  36894. height: math.unit(58, "feet"),
  36895. default: true
  36896. },
  36897. ]
  36898. ))
  36899. characterMakers.push(() => makeCharacter(
  36900. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36901. {
  36902. side: {
  36903. height: math.unit(15, "feet"),
  36904. name: "Side",
  36905. image: {
  36906. source: "./media/characters/akitu/side.svg",
  36907. extra: 1421/1321,
  36908. bottom: 157/1578
  36909. }
  36910. },
  36911. front: {
  36912. height: math.unit(15, "feet"),
  36913. name: "Front",
  36914. image: {
  36915. source: "./media/characters/akitu/front.svg",
  36916. extra: 1435/1326,
  36917. bottom: 232/1667
  36918. }
  36919. },
  36920. },
  36921. [
  36922. {
  36923. name: "Normal",
  36924. height: math.unit(15, "feet"),
  36925. default: true
  36926. },
  36927. ]
  36928. ))
  36929. characterMakers.push(() => makeCharacter(
  36930. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36931. {
  36932. front: {
  36933. height: math.unit(10 + 8/12, "feet"),
  36934. name: "Front",
  36935. image: {
  36936. source: "./media/characters/azalie-croixland/front.svg",
  36937. extra: 1972/1856,
  36938. bottom: 31/2003
  36939. }
  36940. },
  36941. },
  36942. [
  36943. {
  36944. name: "Original Height",
  36945. height: math.unit(5 + 4/12, "feet")
  36946. },
  36947. {
  36948. name: "Normal Height",
  36949. height: math.unit(10 + 8/12, "feet"),
  36950. default: true
  36951. },
  36952. ]
  36953. ))
  36954. characterMakers.push(() => makeCharacter(
  36955. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36956. {
  36957. side: {
  36958. height: math.unit(7 + 1/12, "feet"),
  36959. weight: math.unit(245, "lb"),
  36960. name: "Side",
  36961. image: {
  36962. source: "./media/characters/kavus-kazian/side.svg",
  36963. extra: 349/342,
  36964. bottom: 15/364
  36965. }
  36966. },
  36967. },
  36968. [
  36969. {
  36970. name: "Normal",
  36971. height: math.unit(7 + 1/12, "feet"),
  36972. default: true
  36973. },
  36974. ]
  36975. ))
  36976. characterMakers.push(() => makeCharacter(
  36977. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36978. {
  36979. normalFront: {
  36980. height: math.unit(5 + 11/12, "feet"),
  36981. name: "Front",
  36982. image: {
  36983. source: "./media/characters/moonlight-rose/normal-front.svg",
  36984. extra: 1980/1825,
  36985. bottom: 18/1998
  36986. },
  36987. form: "normal",
  36988. default: true
  36989. },
  36990. normalBack: {
  36991. height: math.unit(5 + 11/12, "feet"),
  36992. name: "Back",
  36993. image: {
  36994. source: "./media/characters/moonlight-rose/normal-back.svg",
  36995. extra: 2010/1839,
  36996. bottom: 10/2020
  36997. },
  36998. form: "normal"
  36999. },
  37000. demonFront: {
  37001. height: math.unit(1.5, "earths"),
  37002. name: "Front",
  37003. image: {
  37004. source: "./media/characters/moonlight-rose/demon.svg",
  37005. extra: 1400/1294,
  37006. bottom: 45/1445
  37007. },
  37008. form: "demon",
  37009. default: true
  37010. },
  37011. terraFront: {
  37012. height: math.unit(1.5, "earths"),
  37013. name: "Front",
  37014. image: {
  37015. source: "./media/characters/moonlight-rose/terra.svg"
  37016. },
  37017. form: "terra",
  37018. default: true
  37019. },
  37020. jupiterFront: {
  37021. height: math.unit(69911*2, "km"),
  37022. name: "Front",
  37023. image: {
  37024. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37025. extra: 1367/1286,
  37026. bottom: 55/1422
  37027. },
  37028. form: "jupiter",
  37029. default: true
  37030. },
  37031. neptuneFront: {
  37032. height: math.unit(24622*2, "feet"),
  37033. name: "Front",
  37034. image: {
  37035. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37036. extra: 1851/1712,
  37037. bottom: 0/1851
  37038. },
  37039. form: "neptune",
  37040. default: true
  37041. },
  37042. },
  37043. [
  37044. {
  37045. name: "\"Natural\" Height",
  37046. height: math.unit(5 + 11/12, "feet"),
  37047. form: "normal"
  37048. },
  37049. {
  37050. name: "Smallest comfortable size",
  37051. height: math.unit(40, "meters"),
  37052. form: "normal"
  37053. },
  37054. {
  37055. name: "Common size",
  37056. height: math.unit(50, "km"),
  37057. form: "normal",
  37058. default: true
  37059. },
  37060. {
  37061. name: "Normal",
  37062. height: math.unit(1.5, "earths"),
  37063. form: "demon",
  37064. default: true
  37065. },
  37066. {
  37067. name: "Universal",
  37068. height: math.unit(15, "universes"),
  37069. form: "demon"
  37070. },
  37071. {
  37072. name: "Earth",
  37073. height: math.unit(1.5, "earths"),
  37074. form: "terra",
  37075. default: true
  37076. },
  37077. {
  37078. name: "Super Earth",
  37079. height: math.unit(67.5, "earths"),
  37080. form: "terra"
  37081. },
  37082. {
  37083. name: "Doesn't fit in a solar system...",
  37084. height: math.unit(1, "galaxy"),
  37085. form: "terra"
  37086. },
  37087. {
  37088. name: "Saturn",
  37089. height: math.unit(58232*2, "km"),
  37090. form: "jupiter"
  37091. },
  37092. {
  37093. name: "Jupiter",
  37094. height: math.unit(69911*2, "km"),
  37095. form: "jupiter",
  37096. default: true
  37097. },
  37098. {
  37099. name: "HD 100546 b",
  37100. height: math.unit(482938, "km"),
  37101. form: "jupiter"
  37102. },
  37103. {
  37104. name: "Enceladus",
  37105. height: math.unit(513*2, "km"),
  37106. form: "neptune"
  37107. },
  37108. {
  37109. name: "Europe",
  37110. height: math.unit(1560*2, "km"),
  37111. form: "neptune"
  37112. },
  37113. {
  37114. name: "Neptune",
  37115. height: math.unit(24622*2, "km"),
  37116. form: "neptune",
  37117. default: true
  37118. },
  37119. {
  37120. name: "CoRoT-9b",
  37121. height: math.unit(75067*2, "km"),
  37122. form: "neptune"
  37123. },
  37124. ],
  37125. {
  37126. "normal": {
  37127. name: "Normal",
  37128. default: true
  37129. },
  37130. "demon": {
  37131. name: "Demon"
  37132. },
  37133. "terra": {
  37134. name: "Terra"
  37135. },
  37136. "jupiter": {
  37137. name: "Jupiter"
  37138. },
  37139. "neptune": {
  37140. name: "Neptune"
  37141. }
  37142. }
  37143. ))
  37144. characterMakers.push(() => makeCharacter(
  37145. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37146. {
  37147. front: {
  37148. height: math.unit(16, "feet"),
  37149. weight: math.unit(610, "kg"),
  37150. name: "Front",
  37151. image: {
  37152. source: "./media/characters/huckle/front.svg",
  37153. extra: 1731/1625,
  37154. bottom: 33/1764
  37155. }
  37156. },
  37157. back: {
  37158. height: math.unit(16, "feet"),
  37159. weight: math.unit(610, "kg"),
  37160. name: "Back",
  37161. image: {
  37162. source: "./media/characters/huckle/back.svg",
  37163. extra: 1738/1651,
  37164. bottom: 37/1775
  37165. }
  37166. },
  37167. laughing: {
  37168. height: math.unit(3.75, "feet"),
  37169. name: "Laughing",
  37170. image: {
  37171. source: "./media/characters/huckle/laughing.svg"
  37172. }
  37173. },
  37174. angry: {
  37175. height: math.unit(4.15, "feet"),
  37176. name: "Angry",
  37177. image: {
  37178. source: "./media/characters/huckle/angry.svg"
  37179. }
  37180. },
  37181. },
  37182. [
  37183. {
  37184. name: "Normal",
  37185. height: math.unit(16, "feet"),
  37186. default: true
  37187. },
  37188. {
  37189. name: "Mini Macro",
  37190. height: math.unit(463, "feet")
  37191. },
  37192. {
  37193. name: "Macro",
  37194. height: math.unit(1680, "meters")
  37195. },
  37196. {
  37197. name: "Mega Macro",
  37198. height: math.unit(175, "km")
  37199. },
  37200. {
  37201. name: "Terra Macro",
  37202. height: math.unit(32, "gigameters")
  37203. },
  37204. {
  37205. name: "Multiverse+",
  37206. height: math.unit(2.56e23, "yottameters")
  37207. },
  37208. ]
  37209. ))
  37210. characterMakers.push(() => makeCharacter(
  37211. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37212. {
  37213. front: {
  37214. height: math.unit(6 + 9/12, "feet"),
  37215. weight: math.unit(280, "lb"),
  37216. name: "Front",
  37217. image: {
  37218. source: "./media/characters/candy/front.svg",
  37219. extra: 234/217,
  37220. bottom: 11/245
  37221. }
  37222. },
  37223. },
  37224. [
  37225. {
  37226. name: "Really Small",
  37227. height: math.unit(0.1, "nm")
  37228. },
  37229. {
  37230. name: "Micro",
  37231. height: math.unit(2, "inches")
  37232. },
  37233. {
  37234. name: "Normal",
  37235. height: math.unit(6 + 9/12, "feet"),
  37236. default: true
  37237. },
  37238. {
  37239. name: "Small Macro",
  37240. height: math.unit(69, "feet")
  37241. },
  37242. {
  37243. name: "Macro",
  37244. height: math.unit(160, "feet")
  37245. },
  37246. {
  37247. name: "Megamacro",
  37248. height: math.unit(22000, "miles")
  37249. },
  37250. {
  37251. name: "Gigamacro",
  37252. height: math.unit(50000, "miles")
  37253. },
  37254. ]
  37255. ))
  37256. characterMakers.push(() => makeCharacter(
  37257. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37258. {
  37259. front: {
  37260. height: math.unit(4, "feet"),
  37261. weight: math.unit(90, "lb"),
  37262. name: "Front",
  37263. image: {
  37264. source: "./media/characters/joey-mcdonald/front.svg",
  37265. extra: 1059/852,
  37266. bottom: 33/1092
  37267. }
  37268. },
  37269. back: {
  37270. height: math.unit(4, "feet"),
  37271. weight: math.unit(90, "lb"),
  37272. name: "Back",
  37273. image: {
  37274. source: "./media/characters/joey-mcdonald/back.svg",
  37275. extra: 1077/879,
  37276. bottom: 5/1082
  37277. }
  37278. },
  37279. frontKobold: {
  37280. height: math.unit(4, "feet"),
  37281. weight: math.unit(100, "lb"),
  37282. name: "Front-kobold",
  37283. image: {
  37284. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37285. extra: 1480/1367,
  37286. bottom: 0/1480
  37287. }
  37288. },
  37289. backKobold: {
  37290. height: math.unit(4, "feet"),
  37291. weight: math.unit(100, "lb"),
  37292. name: "Back-kobold",
  37293. image: {
  37294. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37295. extra: 1449/1361,
  37296. bottom: 0/1449
  37297. }
  37298. },
  37299. },
  37300. [
  37301. {
  37302. name: "Normal",
  37303. height: math.unit(4, "feet"),
  37304. default: true
  37305. },
  37306. ]
  37307. ))
  37308. characterMakers.push(() => makeCharacter(
  37309. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37310. {
  37311. front: {
  37312. height: math.unit(12 + 6/12, "feet"),
  37313. name: "Front",
  37314. image: {
  37315. source: "./media/characters/kass-lockheed/front.svg",
  37316. extra: 354/343,
  37317. bottom: 9/363
  37318. }
  37319. },
  37320. back: {
  37321. height: math.unit(12 + 6/12, "feet"),
  37322. name: "Back",
  37323. image: {
  37324. source: "./media/characters/kass-lockheed/back.svg",
  37325. extra: 364/352,
  37326. bottom: 3/367
  37327. }
  37328. },
  37329. dick: {
  37330. height: math.unit(3.12, "feet"),
  37331. name: "Dick",
  37332. image: {
  37333. source: "./media/characters/kass-lockheed/dick.svg"
  37334. }
  37335. },
  37336. head: {
  37337. height: math.unit(2.6, "feet"),
  37338. name: "Head",
  37339. image: {
  37340. source: "./media/characters/kass-lockheed/head.svg"
  37341. }
  37342. },
  37343. bleh: {
  37344. height: math.unit(2.85, "feet"),
  37345. name: "Bleh",
  37346. image: {
  37347. source: "./media/characters/kass-lockheed/bleh.svg"
  37348. }
  37349. },
  37350. smug: {
  37351. height: math.unit(2.85, "feet"),
  37352. name: "Smug",
  37353. image: {
  37354. source: "./media/characters/kass-lockheed/smug.svg"
  37355. }
  37356. },
  37357. },
  37358. [
  37359. {
  37360. name: "Normal",
  37361. height: math.unit(12 + 6/12, "feet"),
  37362. default: true
  37363. },
  37364. ]
  37365. ))
  37366. characterMakers.push(() => makeCharacter(
  37367. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37368. {
  37369. front: {
  37370. height: math.unit(6 + 2/12, "feet"),
  37371. name: "Front",
  37372. image: {
  37373. source: "./media/characters/taylor/front.svg",
  37374. extra: 639/495,
  37375. bottom: 12/651
  37376. }
  37377. },
  37378. },
  37379. [
  37380. {
  37381. name: "Normal",
  37382. height: math.unit(6 + 2/12, "feet"),
  37383. default: true
  37384. },
  37385. {
  37386. name: "Big",
  37387. height: math.unit(15, "feet")
  37388. },
  37389. {
  37390. name: "Lorg",
  37391. height: math.unit(80, "feet")
  37392. },
  37393. {
  37394. name: "Too Lorg",
  37395. height: math.unit(120, "feet")
  37396. },
  37397. ]
  37398. ))
  37399. characterMakers.push(() => makeCharacter(
  37400. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37401. {
  37402. front: {
  37403. height: math.unit(15, "feet"),
  37404. name: "Front",
  37405. image: {
  37406. source: "./media/characters/kaizer/front.svg",
  37407. extra: 1612/1436,
  37408. bottom: 43/1655
  37409. }
  37410. },
  37411. },
  37412. [
  37413. {
  37414. name: "Normal",
  37415. height: math.unit(15, "feet"),
  37416. default: true
  37417. },
  37418. ]
  37419. ))
  37420. characterMakers.push(() => makeCharacter(
  37421. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37422. {
  37423. front: {
  37424. height: math.unit(2, "feet"),
  37425. weight: math.unit(30, "lb"),
  37426. name: "Front",
  37427. image: {
  37428. source: "./media/characters/sandy/front.svg",
  37429. extra: 1439/1307,
  37430. bottom: 194/1633
  37431. }
  37432. },
  37433. },
  37434. [
  37435. {
  37436. name: "Normal",
  37437. height: math.unit(2, "feet"),
  37438. default: true
  37439. },
  37440. ]
  37441. ))
  37442. characterMakers.push(() => makeCharacter(
  37443. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37444. {
  37445. front: {
  37446. height: math.unit(3, "feet"),
  37447. name: "Front",
  37448. image: {
  37449. source: "./media/characters/mellvi/front.svg",
  37450. extra: 1831/1630,
  37451. bottom: 58/1889
  37452. }
  37453. },
  37454. },
  37455. [
  37456. {
  37457. name: "Normal",
  37458. height: math.unit(3, "feet"),
  37459. default: true
  37460. },
  37461. ]
  37462. ))
  37463. characterMakers.push(() => makeCharacter(
  37464. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37465. {
  37466. front: {
  37467. height: math.unit(5 + 11/12, "feet"),
  37468. weight: math.unit(200, "lb"),
  37469. name: "Front",
  37470. image: {
  37471. source: "./media/characters/shirou/front.svg",
  37472. extra: 2491/2383,
  37473. bottom: 189/2680
  37474. }
  37475. },
  37476. back: {
  37477. height: math.unit(5 + 11/12, "feet"),
  37478. weight: math.unit(200, "lb"),
  37479. name: "Back",
  37480. image: {
  37481. source: "./media/characters/shirou/back.svg",
  37482. extra: 2554/2450,
  37483. bottom: 76/2630
  37484. }
  37485. },
  37486. },
  37487. [
  37488. {
  37489. name: "Normal",
  37490. height: math.unit(5 + 11/12, "feet"),
  37491. default: true
  37492. },
  37493. ]
  37494. ))
  37495. characterMakers.push(() => makeCharacter(
  37496. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37497. {
  37498. front: {
  37499. height: math.unit(6 + 3/12, "feet"),
  37500. weight: math.unit(177, "lb"),
  37501. name: "Front",
  37502. image: {
  37503. source: "./media/characters/noryu/front.svg",
  37504. extra: 973/885,
  37505. bottom: 10/983
  37506. }
  37507. },
  37508. },
  37509. [
  37510. {
  37511. name: "Normal",
  37512. height: math.unit(6 + 3/12, "feet"),
  37513. default: true
  37514. },
  37515. ]
  37516. ))
  37517. characterMakers.push(() => makeCharacter(
  37518. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37519. {
  37520. front: {
  37521. height: math.unit(5 + 6/12, "feet"),
  37522. weight: math.unit(170, "lb"),
  37523. name: "Front",
  37524. image: {
  37525. source: "./media/characters/mevolas-rubenido/front.svg",
  37526. extra: 2109/1901,
  37527. bottom: 96/2205
  37528. }
  37529. },
  37530. },
  37531. [
  37532. {
  37533. name: "Normal",
  37534. height: math.unit(5 + 6/12, "feet"),
  37535. default: true
  37536. },
  37537. ]
  37538. ))
  37539. characterMakers.push(() => makeCharacter(
  37540. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37541. {
  37542. front: {
  37543. height: math.unit(100, "feet"),
  37544. name: "Front",
  37545. image: {
  37546. source: "./media/characters/dee/front.svg",
  37547. extra: 2153/2036,
  37548. bottom: 59/2212
  37549. }
  37550. },
  37551. back: {
  37552. height: math.unit(100, "feet"),
  37553. name: "Back",
  37554. image: {
  37555. source: "./media/characters/dee/back.svg",
  37556. extra: 2183/2058,
  37557. bottom: 75/2258
  37558. }
  37559. },
  37560. foot: {
  37561. height: math.unit(19.43, "feet"),
  37562. name: "Foot",
  37563. image: {
  37564. source: "./media/characters/dee/foot.svg"
  37565. }
  37566. },
  37567. hoof: {
  37568. height: math.unit(20.6, "feet"),
  37569. name: "Hoof",
  37570. image: {
  37571. source: "./media/characters/dee/hoof.svg"
  37572. }
  37573. },
  37574. },
  37575. [
  37576. {
  37577. name: "Macro",
  37578. height: math.unit(100, "feet"),
  37579. default: true
  37580. },
  37581. ]
  37582. ))
  37583. characterMakers.push(() => makeCharacter(
  37584. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37585. {
  37586. front: {
  37587. height: math.unit(5 + 6/12, "feet"),
  37588. name: "Front",
  37589. image: {
  37590. source: "./media/characters/teh/front.svg",
  37591. extra: 1002/847,
  37592. bottom: 62/1064
  37593. }
  37594. },
  37595. },
  37596. [
  37597. {
  37598. name: "Normal",
  37599. height: math.unit(5 + 6/12, "feet"),
  37600. default: true
  37601. },
  37602. ]
  37603. ))
  37604. characterMakers.push(() => makeCharacter(
  37605. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37606. {
  37607. side: {
  37608. height: math.unit(6 + 1/12, "feet"),
  37609. weight: math.unit(204, "lb"),
  37610. name: "Side",
  37611. image: {
  37612. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37613. extra: 974/775,
  37614. bottom: 169/1143
  37615. }
  37616. },
  37617. sitting: {
  37618. height: math.unit(6 + 2/12, "feet"),
  37619. weight: math.unit(204, "lb"),
  37620. name: "Sitting",
  37621. image: {
  37622. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37623. extra: 1175/964,
  37624. bottom: 378/1553
  37625. }
  37626. },
  37627. },
  37628. [
  37629. {
  37630. name: "Normal",
  37631. height: math.unit(6 + 1/12, "feet"),
  37632. default: true
  37633. },
  37634. ]
  37635. ))
  37636. characterMakers.push(() => makeCharacter(
  37637. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37638. {
  37639. front: {
  37640. height: math.unit(6, "inches"),
  37641. name: "Front",
  37642. image: {
  37643. source: "./media/characters/tululi/front.svg",
  37644. extra: 1997/1876,
  37645. bottom: 20/2017
  37646. }
  37647. },
  37648. },
  37649. [
  37650. {
  37651. name: "Normal",
  37652. height: math.unit(6, "inches"),
  37653. default: true
  37654. },
  37655. ]
  37656. ))
  37657. characterMakers.push(() => makeCharacter(
  37658. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37659. {
  37660. front: {
  37661. height: math.unit(4 + 1/12, "feet"),
  37662. name: "Front",
  37663. image: {
  37664. source: "./media/characters/star/front.svg",
  37665. extra: 1493/1189,
  37666. bottom: 48/1541
  37667. }
  37668. },
  37669. },
  37670. [
  37671. {
  37672. name: "Normal",
  37673. height: math.unit(4 + 1/12, "feet"),
  37674. default: true
  37675. },
  37676. ]
  37677. ))
  37678. characterMakers.push(() => makeCharacter(
  37679. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37680. {
  37681. front: {
  37682. height: math.unit(6 + 3/12, "feet"),
  37683. name: "Front",
  37684. image: {
  37685. source: "./media/characters/comet/front.svg",
  37686. extra: 1681/1462,
  37687. bottom: 26/1707
  37688. }
  37689. },
  37690. },
  37691. [
  37692. {
  37693. name: "Normal",
  37694. height: math.unit(6 + 3/12, "feet"),
  37695. default: true
  37696. },
  37697. ]
  37698. ))
  37699. characterMakers.push(() => makeCharacter(
  37700. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37701. {
  37702. front: {
  37703. height: math.unit(950, "feet"),
  37704. name: "Front",
  37705. image: {
  37706. source: "./media/characters/vortex/front.svg",
  37707. extra: 1497/1434,
  37708. bottom: 56/1553
  37709. }
  37710. },
  37711. maw: {
  37712. height: math.unit(285, "feet"),
  37713. name: "Maw",
  37714. image: {
  37715. source: "./media/characters/vortex/maw.svg"
  37716. }
  37717. },
  37718. },
  37719. [
  37720. {
  37721. name: "Macro",
  37722. height: math.unit(950, "feet"),
  37723. default: true
  37724. },
  37725. ]
  37726. ))
  37727. characterMakers.push(() => makeCharacter(
  37728. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37729. {
  37730. front: {
  37731. height: math.unit(600, "feet"),
  37732. weight: math.unit(0.02, "grams"),
  37733. name: "Front",
  37734. image: {
  37735. source: "./media/characters/doodle/front.svg",
  37736. extra: 1578/1413,
  37737. bottom: 37/1615
  37738. }
  37739. },
  37740. },
  37741. [
  37742. {
  37743. name: "Macro",
  37744. height: math.unit(600, "feet"),
  37745. default: true
  37746. },
  37747. ]
  37748. ))
  37749. characterMakers.push(() => makeCharacter(
  37750. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37751. {
  37752. front: {
  37753. height: math.unit(6 + 6/12, "feet"),
  37754. name: "Front",
  37755. image: {
  37756. source: "./media/characters/jai/front.svg",
  37757. extra: 1645/1534,
  37758. bottom: 115/1760
  37759. }
  37760. },
  37761. },
  37762. [
  37763. {
  37764. name: "Normal",
  37765. height: math.unit(6 + 6/12, "feet"),
  37766. default: true
  37767. },
  37768. ]
  37769. ))
  37770. characterMakers.push(() => makeCharacter(
  37771. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37772. {
  37773. front: {
  37774. height: math.unit(6 + 8/12, "feet"),
  37775. name: "Front",
  37776. image: {
  37777. source: "./media/characters/pixel/front.svg",
  37778. extra: 1900/1735,
  37779. bottom: 63/1963
  37780. }
  37781. },
  37782. },
  37783. [
  37784. {
  37785. name: "Normal",
  37786. height: math.unit(6 + 8/12, "feet"),
  37787. default: true
  37788. },
  37789. ]
  37790. ))
  37791. characterMakers.push(() => makeCharacter(
  37792. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37793. {
  37794. back: {
  37795. height: math.unit(4 + 1/12, "feet"),
  37796. weight: math.unit(75, "lb"),
  37797. name: "Back",
  37798. image: {
  37799. source: "./media/characters/rhett/back.svg",
  37800. extra: 930/878,
  37801. bottom: 25/955
  37802. }
  37803. },
  37804. front: {
  37805. height: math.unit(4 + 1/12, "feet"),
  37806. weight: math.unit(75, "lb"),
  37807. name: "Front",
  37808. image: {
  37809. source: "./media/characters/rhett/front.svg",
  37810. extra: 1682/1586,
  37811. bottom: 92/1774
  37812. }
  37813. },
  37814. },
  37815. [
  37816. {
  37817. name: "Micro",
  37818. height: math.unit(8, "inches")
  37819. },
  37820. {
  37821. name: "Tiny",
  37822. height: math.unit(2, "feet")
  37823. },
  37824. {
  37825. name: "Normal",
  37826. height: math.unit(4 + 1/12, "feet"),
  37827. default: true
  37828. },
  37829. ]
  37830. ))
  37831. characterMakers.push(() => makeCharacter(
  37832. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37833. {
  37834. front: {
  37835. height: math.unit(3 + 3/12, "feet"),
  37836. name: "Front",
  37837. image: {
  37838. source: "./media/characters/penny/front.svg",
  37839. extra: 1406/1311,
  37840. bottom: 26/1432
  37841. }
  37842. },
  37843. },
  37844. [
  37845. {
  37846. name: "Normal",
  37847. height: math.unit(3 + 3/12, "feet"),
  37848. default: true
  37849. },
  37850. ]
  37851. ))
  37852. characterMakers.push(() => makeCharacter(
  37853. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37854. {
  37855. front: {
  37856. height: math.unit(4 + 11/12, "feet"),
  37857. name: "Front",
  37858. image: {
  37859. source: "./media/characters/monty/front.svg",
  37860. extra: 1479/1209,
  37861. bottom: 0/1479
  37862. }
  37863. },
  37864. },
  37865. [
  37866. {
  37867. name: "Normal",
  37868. height: math.unit(4 + 11/12, "feet"),
  37869. default: true
  37870. },
  37871. ]
  37872. ))
  37873. characterMakers.push(() => makeCharacter(
  37874. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37875. {
  37876. front: {
  37877. height: math.unit(8 + 4/12, "feet"),
  37878. name: "Front",
  37879. image: {
  37880. source: "./media/characters/sterling/front.svg",
  37881. extra: 1420/1236,
  37882. bottom: 27/1447
  37883. }
  37884. },
  37885. },
  37886. [
  37887. {
  37888. name: "Normal",
  37889. height: math.unit(8 + 4/12, "feet"),
  37890. default: true
  37891. },
  37892. ]
  37893. ))
  37894. characterMakers.push(() => makeCharacter(
  37895. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37896. {
  37897. front: {
  37898. height: math.unit(15, "feet"),
  37899. name: "Front",
  37900. image: {
  37901. source: "./media/characters/marble/front.svg",
  37902. extra: 973/937,
  37903. bottom: 32/1005
  37904. }
  37905. },
  37906. },
  37907. [
  37908. {
  37909. name: "Normal",
  37910. height: math.unit(15, "feet"),
  37911. default: true
  37912. },
  37913. ]
  37914. ))
  37915. characterMakers.push(() => makeCharacter(
  37916. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37917. {
  37918. front: {
  37919. height: math.unit(3, "inches"),
  37920. name: "Front",
  37921. image: {
  37922. source: "./media/characters/powder/front.svg",
  37923. extra: 1504/1334,
  37924. bottom: 518/2022
  37925. }
  37926. },
  37927. },
  37928. [
  37929. {
  37930. name: "Normal",
  37931. height: math.unit(3, "inches"),
  37932. default: true
  37933. },
  37934. ]
  37935. ))
  37936. characterMakers.push(() => makeCharacter(
  37937. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37938. {
  37939. front: {
  37940. height: math.unit(4 + 5/12, "feet"),
  37941. name: "Front",
  37942. image: {
  37943. source: "./media/characters/joey-raccoon/front.svg",
  37944. extra: 1273/1197,
  37945. bottom: 0/1273
  37946. }
  37947. },
  37948. },
  37949. [
  37950. {
  37951. name: "Normal",
  37952. height: math.unit(4 + 5/12, "feet"),
  37953. default: true
  37954. },
  37955. ]
  37956. ))
  37957. characterMakers.push(() => makeCharacter(
  37958. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37959. {
  37960. front: {
  37961. height: math.unit(8 + 4/12, "feet"),
  37962. name: "Front",
  37963. image: {
  37964. source: "./media/characters/vick/front.svg",
  37965. extra: 2187/2118,
  37966. bottom: 47/2234
  37967. }
  37968. },
  37969. },
  37970. [
  37971. {
  37972. name: "Normal",
  37973. height: math.unit(8 + 4/12, "feet"),
  37974. default: true
  37975. },
  37976. ]
  37977. ))
  37978. characterMakers.push(() => makeCharacter(
  37979. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37980. {
  37981. front: {
  37982. height: math.unit(5 + 5/12, "feet"),
  37983. name: "Front",
  37984. image: {
  37985. source: "./media/characters/mitsy/front.svg",
  37986. extra: 1842/1695,
  37987. bottom: 0/1842
  37988. }
  37989. },
  37990. },
  37991. [
  37992. {
  37993. name: "Normal",
  37994. height: math.unit(5 + 5/12, "feet"),
  37995. default: true
  37996. },
  37997. ]
  37998. ))
  37999. characterMakers.push(() => makeCharacter(
  38000. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38001. {
  38002. front: {
  38003. height: math.unit(6 + 3/12, "feet"),
  38004. name: "Front",
  38005. image: {
  38006. source: "./media/characters/silvy/front.svg",
  38007. extra: 1995/1836,
  38008. bottom: 225/2220
  38009. }
  38010. },
  38011. },
  38012. [
  38013. {
  38014. name: "Normal",
  38015. height: math.unit(6 + 3/12, "feet"),
  38016. default: true
  38017. },
  38018. ]
  38019. ))
  38020. characterMakers.push(() => makeCharacter(
  38021. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38022. {
  38023. front: {
  38024. height: math.unit(3 + 8/12, "feet"),
  38025. name: "Front",
  38026. image: {
  38027. source: "./media/characters/rodney/front.svg",
  38028. extra: 1956/1747,
  38029. bottom: 31/1987
  38030. }
  38031. },
  38032. frontDressed: {
  38033. height: math.unit(2.9, "feet"),
  38034. name: "Front (Dressed)",
  38035. image: {
  38036. source: "./media/characters/rodney/front-dressed.svg",
  38037. extra: 1382/1241,
  38038. bottom: 385/1767
  38039. }
  38040. },
  38041. },
  38042. [
  38043. {
  38044. name: "Normal",
  38045. height: math.unit(3 + 8/12, "feet"),
  38046. default: true
  38047. },
  38048. ]
  38049. ))
  38050. characterMakers.push(() => makeCharacter(
  38051. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38052. {
  38053. front: {
  38054. height: math.unit(5 + 9/12, "feet"),
  38055. weight: math.unit(194, "lbs"),
  38056. name: "Front",
  38057. image: {
  38058. source: "./media/characters/zakail-sudekai/front.svg",
  38059. extra: 2696/2533,
  38060. bottom: 248/2944
  38061. }
  38062. },
  38063. maw: {
  38064. height: math.unit(1.35, "feet"),
  38065. name: "Maw",
  38066. image: {
  38067. source: "./media/characters/zakail-sudekai/maw.svg"
  38068. }
  38069. },
  38070. },
  38071. [
  38072. {
  38073. name: "Normal",
  38074. height: math.unit(5 + 9/12, "feet"),
  38075. default: true
  38076. },
  38077. ]
  38078. ))
  38079. characterMakers.push(() => makeCharacter(
  38080. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38081. {
  38082. front: {
  38083. height: math.unit(8 + 4/12, "feet"),
  38084. weight: math.unit(1200, "lb"),
  38085. name: "Front",
  38086. image: {
  38087. source: "./media/characters/eleanor/front.svg",
  38088. extra: 1226/1192,
  38089. bottom: 52/1278
  38090. }
  38091. },
  38092. back: {
  38093. height: math.unit(8 + 4/12, "feet"),
  38094. weight: math.unit(1200, "lb"),
  38095. name: "Back",
  38096. image: {
  38097. source: "./media/characters/eleanor/back.svg",
  38098. extra: 1242/1184,
  38099. bottom: 60/1302
  38100. }
  38101. },
  38102. head: {
  38103. height: math.unit(2.62, "feet"),
  38104. name: "Head",
  38105. image: {
  38106. source: "./media/characters/eleanor/head.svg"
  38107. }
  38108. },
  38109. },
  38110. [
  38111. {
  38112. name: "Normal",
  38113. height: math.unit(8 + 4/12, "feet"),
  38114. default: true
  38115. },
  38116. ]
  38117. ))
  38118. characterMakers.push(() => makeCharacter(
  38119. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38120. {
  38121. front: {
  38122. height: math.unit(8 + 4/12, "feet"),
  38123. weight: math.unit(750, "lb"),
  38124. name: "Front",
  38125. image: {
  38126. source: "./media/characters/tanya/front.svg",
  38127. extra: 1749/1615,
  38128. bottom: 33/1782
  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: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38142. {
  38143. front: {
  38144. height: math.unit(5, "feet"),
  38145. weight: math.unit(225, "lb"),
  38146. name: "Front",
  38147. image: {
  38148. source: "./media/characters/cindy/front.svg",
  38149. extra: 1320/1250,
  38150. bottom: 42/1362
  38151. }
  38152. },
  38153. frontDressed: {
  38154. height: math.unit(5, "feet"),
  38155. weight: math.unit(225, "lb"),
  38156. name: "Front (Dressed)",
  38157. image: {
  38158. source: "./media/characters/cindy/front-dressed.svg",
  38159. extra: 1320/1250,
  38160. bottom: 42/1362
  38161. }
  38162. },
  38163. back: {
  38164. height: math.unit(5, "feet"),
  38165. weight: math.unit(225, "lb"),
  38166. name: "Back",
  38167. image: {
  38168. source: "./media/characters/cindy/back.svg",
  38169. extra: 1384/1346,
  38170. bottom: 14/1398
  38171. }
  38172. },
  38173. },
  38174. [
  38175. {
  38176. name: "Normal",
  38177. height: math.unit(5, "feet"),
  38178. default: true
  38179. },
  38180. ]
  38181. ))
  38182. characterMakers.push(() => makeCharacter(
  38183. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38184. {
  38185. front: {
  38186. height: math.unit(6 + 9/12, "feet"),
  38187. weight: math.unit(440, "lb"),
  38188. name: "Front",
  38189. image: {
  38190. source: "./media/characters/wilbur-owen/front.svg",
  38191. extra: 1575/1448,
  38192. bottom: 72/1647
  38193. }
  38194. },
  38195. back: {
  38196. height: math.unit(6 + 9/12, "feet"),
  38197. weight: math.unit(440, "lb"),
  38198. name: "Back",
  38199. image: {
  38200. source: "./media/characters/wilbur-owen/back.svg",
  38201. extra: 1578/1445,
  38202. bottom: 36/1614
  38203. }
  38204. },
  38205. },
  38206. [
  38207. {
  38208. name: "Normal",
  38209. height: math.unit(6 + 9/12, "feet"),
  38210. default: true
  38211. },
  38212. ]
  38213. ))
  38214. characterMakers.push(() => makeCharacter(
  38215. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38216. {
  38217. front: {
  38218. height: math.unit(6 + 5/12, "feet"),
  38219. weight: math.unit(650, "lb"),
  38220. name: "Front",
  38221. image: {
  38222. source: "./media/characters/keegan/front.svg",
  38223. extra: 2387/2198,
  38224. bottom: 33/2420
  38225. }
  38226. },
  38227. side: {
  38228. height: math.unit(6 + 5/12, "feet"),
  38229. weight: math.unit(650, "lb"),
  38230. name: "Side",
  38231. image: {
  38232. source: "./media/characters/keegan/side.svg",
  38233. extra: 2390/2202,
  38234. bottom: 47/2437
  38235. }
  38236. },
  38237. back: {
  38238. height: math.unit(6 + 5/12, "feet"),
  38239. weight: math.unit(650, "lb"),
  38240. name: "Back",
  38241. image: {
  38242. source: "./media/characters/keegan/back.svg",
  38243. extra: 2418/2268,
  38244. bottom: 15/2433
  38245. }
  38246. },
  38247. frontSfw: {
  38248. height: math.unit(6 + 5/12, "feet"),
  38249. weight: math.unit(650, "lb"),
  38250. name: "Front (SFW)",
  38251. image: {
  38252. source: "./media/characters/keegan/front-sfw.svg",
  38253. extra: 2387/2198,
  38254. bottom: 33/2420
  38255. }
  38256. },
  38257. beans: {
  38258. height: math.unit(1.85, "feet"),
  38259. name: "Beans",
  38260. image: {
  38261. source: "./media/characters/keegan/beans.svg"
  38262. }
  38263. },
  38264. },
  38265. [
  38266. {
  38267. name: "Normal",
  38268. height: math.unit(6 + 5/12, "feet"),
  38269. default: true
  38270. },
  38271. ]
  38272. ))
  38273. characterMakers.push(() => makeCharacter(
  38274. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38275. {
  38276. front: {
  38277. height: math.unit(9, "feet"),
  38278. name: "Front",
  38279. image: {
  38280. source: "./media/characters/colton/front.svg",
  38281. extra: 1589/1326,
  38282. bottom: 139/1728
  38283. }
  38284. },
  38285. },
  38286. [
  38287. {
  38288. name: "Normal",
  38289. height: math.unit(9, "feet"),
  38290. default: true
  38291. },
  38292. ]
  38293. ))
  38294. characterMakers.push(() => makeCharacter(
  38295. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38296. {
  38297. front: {
  38298. height: math.unit(2 + 9/12, "feet"),
  38299. name: "Front",
  38300. image: {
  38301. source: "./media/characters/bora/front.svg",
  38302. extra: 1265/1250,
  38303. bottom: 24/1289
  38304. }
  38305. },
  38306. },
  38307. [
  38308. {
  38309. name: "Normal",
  38310. height: math.unit(2 + 9/12, "feet"),
  38311. default: true
  38312. },
  38313. ]
  38314. ))
  38315. characterMakers.push(() => makeCharacter(
  38316. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38317. {
  38318. front: {
  38319. height: math.unit(8, "feet"),
  38320. name: "Front",
  38321. image: {
  38322. source: "./media/characters/myu-myu/front.svg",
  38323. extra: 1949/1857,
  38324. bottom: 90/2039
  38325. }
  38326. },
  38327. },
  38328. [
  38329. {
  38330. name: "Normal",
  38331. height: math.unit(8, "feet"),
  38332. default: true
  38333. },
  38334. {
  38335. name: "Big",
  38336. height: math.unit(15, "feet")
  38337. },
  38338. {
  38339. name: "BIG",
  38340. height: math.unit(25, "feet")
  38341. },
  38342. ]
  38343. ))
  38344. characterMakers.push(() => makeCharacter(
  38345. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38346. {
  38347. side: {
  38348. height: math.unit(7 + 5/12, "feet"),
  38349. weight: math.unit(2800, "lb"),
  38350. name: "Side",
  38351. image: {
  38352. source: "./media/characters/haloren/side.svg",
  38353. extra: 1793/409,
  38354. bottom: 59/1852
  38355. }
  38356. },
  38357. frontPaw: {
  38358. height: math.unit(2.36, "feet"),
  38359. name: "Front paw",
  38360. image: {
  38361. source: "./media/characters/haloren/front-paw.svg"
  38362. }
  38363. },
  38364. hindPaw: {
  38365. height: math.unit(3.18, "feet"),
  38366. name: "Hind paw",
  38367. image: {
  38368. source: "./media/characters/haloren/hind-paw.svg"
  38369. }
  38370. },
  38371. maw: {
  38372. height: math.unit(5.05, "feet"),
  38373. name: "Maw",
  38374. image: {
  38375. source: "./media/characters/haloren/maw.svg"
  38376. }
  38377. },
  38378. dick: {
  38379. height: math.unit(2.90, "feet"),
  38380. name: "Dick",
  38381. image: {
  38382. source: "./media/characters/haloren/dick.svg"
  38383. }
  38384. },
  38385. },
  38386. [
  38387. {
  38388. name: "Normal",
  38389. height: math.unit(7 + 5/12, "feet"),
  38390. default: true
  38391. },
  38392. {
  38393. name: "Enhanced",
  38394. height: math.unit(14 + 3/12, "feet")
  38395. },
  38396. ]
  38397. ))
  38398. characterMakers.push(() => makeCharacter(
  38399. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38400. {
  38401. front: {
  38402. height: math.unit(171, "cm"),
  38403. name: "Front",
  38404. image: {
  38405. source: "./media/characters/kimmy/front.svg",
  38406. extra: 1491/1435,
  38407. bottom: 53/1544
  38408. }
  38409. },
  38410. },
  38411. [
  38412. {
  38413. name: "Small",
  38414. height: math.unit(9, "cm")
  38415. },
  38416. {
  38417. name: "Normal",
  38418. height: math.unit(171, "cm"),
  38419. default: true
  38420. },
  38421. ]
  38422. ))
  38423. characterMakers.push(() => makeCharacter(
  38424. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38425. {
  38426. front: {
  38427. height: math.unit(8, "feet"),
  38428. weight: math.unit(300, "lb"),
  38429. name: "Front",
  38430. image: {
  38431. source: "./media/characters/galeboomer/front.svg",
  38432. extra: 4651/4415,
  38433. bottom: 162/4813
  38434. }
  38435. },
  38436. back: {
  38437. height: math.unit(8, "feet"),
  38438. weight: math.unit(300, "lb"),
  38439. name: "Back",
  38440. image: {
  38441. source: "./media/characters/galeboomer/back.svg",
  38442. extra: 4544/4314,
  38443. bottom: 16/4560
  38444. }
  38445. },
  38446. frontAlt: {
  38447. height: math.unit(8, "feet"),
  38448. weight: math.unit(300, "lb"),
  38449. name: "Front (Alt)",
  38450. image: {
  38451. source: "./media/characters/galeboomer/front-alt.svg",
  38452. extra: 4458/4228,
  38453. bottom: 68/4526
  38454. }
  38455. },
  38456. maw: {
  38457. height: math.unit(1.2, "feet"),
  38458. name: "Maw",
  38459. image: {
  38460. source: "./media/characters/galeboomer/maw.svg"
  38461. }
  38462. },
  38463. },
  38464. [
  38465. {
  38466. name: "Normal",
  38467. height: math.unit(8, "feet"),
  38468. default: true
  38469. },
  38470. ]
  38471. ))
  38472. characterMakers.push(() => makeCharacter(
  38473. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38474. {
  38475. front: {
  38476. height: math.unit(5 + 9/12, "feet"),
  38477. weight: math.unit(120, "lb"),
  38478. name: "Front",
  38479. image: {
  38480. source: "./media/characters/chyr/front.svg",
  38481. extra: 1323/1254,
  38482. bottom: 63/1386
  38483. }
  38484. },
  38485. back: {
  38486. height: math.unit(5 + 9/12, "feet"),
  38487. weight: math.unit(120, "lb"),
  38488. name: "Back",
  38489. image: {
  38490. source: "./media/characters/chyr/back.svg",
  38491. extra: 1323/1252,
  38492. bottom: 48/1371
  38493. }
  38494. },
  38495. },
  38496. [
  38497. {
  38498. name: "Normal",
  38499. height: math.unit(5 + 9/12, "feet"),
  38500. default: true
  38501. },
  38502. ]
  38503. ))
  38504. characterMakers.push(() => makeCharacter(
  38505. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38506. {
  38507. front: {
  38508. height: math.unit(7, "feet"),
  38509. weight: math.unit(310, "lb"),
  38510. name: "Front",
  38511. image: {
  38512. source: "./media/characters/solarus/front.svg",
  38513. extra: 2415/2021,
  38514. bottom: 103/2518
  38515. }
  38516. },
  38517. back: {
  38518. height: math.unit(7, "feet"),
  38519. weight: math.unit(310, "lb"),
  38520. name: "Back",
  38521. image: {
  38522. source: "./media/characters/solarus/back.svg",
  38523. extra: 2463/2089,
  38524. bottom: 79/2542
  38525. }
  38526. },
  38527. },
  38528. [
  38529. {
  38530. name: "Normal",
  38531. height: math.unit(7, "feet"),
  38532. default: true
  38533. },
  38534. ]
  38535. ))
  38536. characterMakers.push(() => makeCharacter(
  38537. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38538. {
  38539. front: {
  38540. height: math.unit(16, "feet"),
  38541. name: "Front",
  38542. image: {
  38543. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38544. extra: 1844/1780,
  38545. bottom: 58/1902
  38546. }
  38547. },
  38548. winterCoat: {
  38549. height: math.unit(16, "feet"),
  38550. name: "Winter Coat",
  38551. image: {
  38552. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38553. extra: 1807/1775,
  38554. bottom: 69/1876
  38555. }
  38556. },
  38557. },
  38558. [
  38559. {
  38560. name: "Normal",
  38561. height: math.unit(16, "feet"),
  38562. default: true
  38563. },
  38564. {
  38565. name: "Chicago Size",
  38566. height: math.unit(560, "feet")
  38567. },
  38568. ]
  38569. ))
  38570. characterMakers.push(() => makeCharacter(
  38571. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38572. {
  38573. front: {
  38574. height: math.unit(11 + 6/12, "feet"),
  38575. weight: math.unit(1366, "lb"),
  38576. name: "Front",
  38577. image: {
  38578. source: "./media/characters/lexor/front.svg",
  38579. extra: 1560/1481,
  38580. bottom: 211/1771
  38581. }
  38582. },
  38583. back: {
  38584. height: math.unit(11 + 6/12, "feet"),
  38585. weight: math.unit(1366, "lb"),
  38586. name: "Back",
  38587. image: {
  38588. source: "./media/characters/lexor/back.svg",
  38589. extra: 1614/1533,
  38590. bottom: 76/1690
  38591. }
  38592. },
  38593. maw: {
  38594. height: math.unit(3, "feet"),
  38595. name: "Maw",
  38596. image: {
  38597. source: "./media/characters/lexor/maw.svg"
  38598. }
  38599. },
  38600. dick: {
  38601. height: math.unit(2.59, "feet"),
  38602. name: "Dick",
  38603. image: {
  38604. source: "./media/characters/lexor/dick.svg"
  38605. }
  38606. },
  38607. },
  38608. [
  38609. {
  38610. name: "Normal",
  38611. height: math.unit(11 + 6/12, "feet"),
  38612. default: true
  38613. },
  38614. ]
  38615. ))
  38616. characterMakers.push(() => makeCharacter(
  38617. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38618. {
  38619. front: {
  38620. height: math.unit(5 + 8/12, "feet"),
  38621. name: "Front",
  38622. image: {
  38623. source: "./media/characters/magnum/front.svg",
  38624. extra: 942/855,
  38625. bottom: 26/968
  38626. }
  38627. },
  38628. },
  38629. [
  38630. {
  38631. name: "Normal",
  38632. height: math.unit(5 + 8/12, "feet"),
  38633. default: true
  38634. },
  38635. ]
  38636. ))
  38637. characterMakers.push(() => makeCharacter(
  38638. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38639. {
  38640. front: {
  38641. height: math.unit(18 + 4/12, "feet"),
  38642. weight: math.unit(1500, "kg"),
  38643. name: "Front",
  38644. image: {
  38645. source: "./media/characters/solas-sharpsman/front.svg",
  38646. extra: 1698/1589,
  38647. bottom: 0/1698
  38648. }
  38649. },
  38650. },
  38651. [
  38652. {
  38653. name: "Normal",
  38654. height: math.unit(18 + 4/12, "feet"),
  38655. default: true
  38656. },
  38657. ]
  38658. ))
  38659. characterMakers.push(() => makeCharacter(
  38660. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38661. {
  38662. front: {
  38663. height: math.unit(5 + 5/12, "feet"),
  38664. weight: math.unit(180, "lb"),
  38665. name: "Front",
  38666. image: {
  38667. source: "./media/characters/october/front.svg",
  38668. extra: 1800/1650,
  38669. bottom: 0/1800
  38670. }
  38671. },
  38672. frontNsfw: {
  38673. height: math.unit(5 + 5/12, "feet"),
  38674. weight: math.unit(180, "lb"),
  38675. name: "Front (NSFW)",
  38676. image: {
  38677. source: "./media/characters/october/front-nsfw.svg",
  38678. extra: 1392/1307,
  38679. bottom: 42/1434
  38680. }
  38681. },
  38682. },
  38683. [
  38684. {
  38685. name: "Normal",
  38686. height: math.unit(5 + 5/12, "feet"),
  38687. default: true
  38688. },
  38689. ]
  38690. ))
  38691. characterMakers.push(() => makeCharacter(
  38692. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38693. {
  38694. front: {
  38695. height: math.unit(8 + 6/12, "feet"),
  38696. name: "Front",
  38697. image: {
  38698. source: "./media/characters/essynkardi/front.svg",
  38699. extra: 1914/1846,
  38700. bottom: 22/1936
  38701. }
  38702. },
  38703. },
  38704. [
  38705. {
  38706. name: "Normal",
  38707. height: math.unit(8 + 6/12, "feet"),
  38708. default: true
  38709. },
  38710. ]
  38711. ))
  38712. characterMakers.push(() => makeCharacter(
  38713. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38714. {
  38715. front: {
  38716. height: math.unit(6 + 6/12, "feet"),
  38717. weight: math.unit(7, "lb"),
  38718. name: "Front",
  38719. image: {
  38720. source: "./media/characters/icky/front.svg",
  38721. extra: 813/782,
  38722. bottom: 66/879
  38723. }
  38724. },
  38725. back: {
  38726. height: math.unit(6 + 6/12, "feet"),
  38727. weight: math.unit(7, "lb"),
  38728. name: "Back",
  38729. image: {
  38730. source: "./media/characters/icky/back.svg",
  38731. extra: 754/735,
  38732. bottom: 56/810
  38733. }
  38734. },
  38735. },
  38736. [
  38737. {
  38738. name: "Normal",
  38739. height: math.unit(6 + 6/12, "feet"),
  38740. default: true
  38741. },
  38742. ]
  38743. ))
  38744. characterMakers.push(() => makeCharacter(
  38745. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38746. {
  38747. front: {
  38748. height: math.unit(15, "feet"),
  38749. name: "Front",
  38750. image: {
  38751. source: "./media/characters/rojas/front.svg",
  38752. extra: 1462/1408,
  38753. bottom: 95/1557
  38754. }
  38755. },
  38756. back: {
  38757. height: math.unit(15, "feet"),
  38758. name: "Back",
  38759. image: {
  38760. source: "./media/characters/rojas/back.svg",
  38761. extra: 1023/954,
  38762. bottom: 28/1051
  38763. }
  38764. },
  38765. },
  38766. [
  38767. {
  38768. name: "Normal",
  38769. height: math.unit(15, "feet"),
  38770. default: true
  38771. },
  38772. ]
  38773. ))
  38774. characterMakers.push(() => makeCharacter(
  38775. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38776. {
  38777. frontHuman: {
  38778. height: math.unit(5 + 7/12, "feet"),
  38779. name: "Front (Human)",
  38780. image: {
  38781. source: "./media/characters/alek-dryagan/front-human.svg",
  38782. extra: 1687/1667,
  38783. bottom: 69/1756
  38784. }
  38785. },
  38786. backHuman: {
  38787. height: math.unit(5 + 7/12, "feet"),
  38788. name: "Back (Human)",
  38789. image: {
  38790. source: "./media/characters/alek-dryagan/back-human.svg",
  38791. extra: 1670/1649,
  38792. bottom: 65/1735
  38793. }
  38794. },
  38795. frontDemi: {
  38796. height: math.unit(65, "feet"),
  38797. name: "Front (Demi)",
  38798. image: {
  38799. source: "./media/characters/alek-dryagan/front-demi.svg",
  38800. extra: 1669/1642,
  38801. bottom: 49/1718
  38802. }
  38803. },
  38804. backDemi: {
  38805. height: math.unit(65, "feet"),
  38806. name: "Back (Demi)",
  38807. image: {
  38808. source: "./media/characters/alek-dryagan/back-demi.svg",
  38809. extra: 1658/1637,
  38810. bottom: 40/1698
  38811. }
  38812. },
  38813. mawHuman: {
  38814. height: math.unit(0.3, "feet"),
  38815. name: "Maw (Human)",
  38816. image: {
  38817. source: "./media/characters/alek-dryagan/maw-human.svg"
  38818. }
  38819. },
  38820. mawDemi: {
  38821. height: math.unit(3.8, "feet"),
  38822. name: "Maw (Demi)",
  38823. image: {
  38824. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38825. }
  38826. },
  38827. },
  38828. [
  38829. {
  38830. name: "Normal",
  38831. height: math.unit(5 + 7/12, "feet"),
  38832. default: true
  38833. },
  38834. ]
  38835. ))
  38836. characterMakers.push(() => makeCharacter(
  38837. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38838. {
  38839. frontHuman: {
  38840. height: math.unit(5 + 2/12, "feet"),
  38841. name: "Front (Human)",
  38842. image: {
  38843. source: "./media/characters/gen/front-human.svg",
  38844. extra: 1627/1538,
  38845. bottom: 71/1698
  38846. }
  38847. },
  38848. backHuman: {
  38849. height: math.unit(5 + 2/12, "feet"),
  38850. name: "Back (Human)",
  38851. image: {
  38852. source: "./media/characters/gen/back-human.svg",
  38853. extra: 1638/1548,
  38854. bottom: 69/1707
  38855. }
  38856. },
  38857. frontDemi: {
  38858. height: math.unit(5 + 2/12, "feet"),
  38859. name: "Front (Demi)",
  38860. image: {
  38861. source: "./media/characters/gen/front-demi.svg",
  38862. extra: 1627/1538,
  38863. bottom: 71/1698
  38864. }
  38865. },
  38866. backDemi: {
  38867. height: math.unit(5 + 2/12, "feet"),
  38868. name: "Back (Demi)",
  38869. image: {
  38870. source: "./media/characters/gen/back-demi.svg",
  38871. extra: 1638/1548,
  38872. bottom: 69/1707
  38873. }
  38874. },
  38875. },
  38876. [
  38877. {
  38878. name: "Normal",
  38879. height: math.unit(5 + 2/12, "feet"),
  38880. default: true
  38881. },
  38882. ]
  38883. ))
  38884. characterMakers.push(() => makeCharacter(
  38885. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38886. {
  38887. frontImp: {
  38888. height: math.unit(1 + 11/12, "feet"),
  38889. name: "Front (Imp)",
  38890. image: {
  38891. source: "./media/characters/max-kobold/front-imp.svg",
  38892. extra: 1238/1134,
  38893. bottom: 81/1319
  38894. }
  38895. },
  38896. backImp: {
  38897. height: math.unit(1 + 11/12, "feet"),
  38898. name: "Back (Imp)",
  38899. image: {
  38900. source: "./media/characters/max-kobold/back-imp.svg",
  38901. extra: 1334/1175,
  38902. bottom: 34/1368
  38903. }
  38904. },
  38905. frontDemi: {
  38906. height: math.unit(5 + 9/12, "feet"),
  38907. name: "Front (Demi)",
  38908. image: {
  38909. source: "./media/characters/max-kobold/front-demi.svg",
  38910. extra: 1715/1685,
  38911. bottom: 54/1769
  38912. }
  38913. },
  38914. backDemi: {
  38915. height: math.unit(5 + 9/12, "feet"),
  38916. name: "Back (Demi)",
  38917. image: {
  38918. source: "./media/characters/max-kobold/back-demi.svg",
  38919. extra: 1752/1729,
  38920. bottom: 41/1793
  38921. }
  38922. },
  38923. handImp: {
  38924. height: math.unit(0.45, "feet"),
  38925. name: "Hand (Imp)",
  38926. image: {
  38927. source: "./media/characters/max-kobold/hand.svg"
  38928. }
  38929. },
  38930. pawImp: {
  38931. height: math.unit(0.46, "feet"),
  38932. name: "Paw (Imp)",
  38933. image: {
  38934. source: "./media/characters/max-kobold/paw.svg"
  38935. }
  38936. },
  38937. handDemi: {
  38938. height: math.unit(0.80, "feet"),
  38939. name: "Hand (Demi)",
  38940. image: {
  38941. source: "./media/characters/max-kobold/hand.svg"
  38942. }
  38943. },
  38944. pawDemi: {
  38945. height: math.unit(1.1, "feet"),
  38946. name: "Paw (Demi)",
  38947. image: {
  38948. source: "./media/characters/max-kobold/paw.svg"
  38949. }
  38950. },
  38951. headImp: {
  38952. height: math.unit(1.33, "feet"),
  38953. name: "Head (Imp)",
  38954. image: {
  38955. source: "./media/characters/max-kobold/head-imp.svg"
  38956. }
  38957. },
  38958. mawImp: {
  38959. height: math.unit(0.75, "feet"),
  38960. name: "Maw (Imp)",
  38961. image: {
  38962. source: "./media/characters/max-kobold/maw-imp.svg"
  38963. }
  38964. },
  38965. mawDemi: {
  38966. height: math.unit(0.42, "feet"),
  38967. name: "Maw (Demi)",
  38968. image: {
  38969. source: "./media/characters/max-kobold/maw-demi.svg"
  38970. }
  38971. },
  38972. },
  38973. [
  38974. {
  38975. name: "Normal",
  38976. height: math.unit(1 + 11/12, "feet"),
  38977. default: true
  38978. },
  38979. ]
  38980. ))
  38981. characterMakers.push(() => makeCharacter(
  38982. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38983. {
  38984. front: {
  38985. height: math.unit(7 + 5/12, "feet"),
  38986. name: "Front",
  38987. image: {
  38988. source: "./media/characters/carbon/front.svg",
  38989. extra: 1754/1689,
  38990. bottom: 65/1819
  38991. }
  38992. },
  38993. back: {
  38994. height: math.unit(7 + 5/12, "feet"),
  38995. name: "Back",
  38996. image: {
  38997. source: "./media/characters/carbon/back.svg",
  38998. extra: 1762/1695,
  38999. bottom: 24/1786
  39000. }
  39001. },
  39002. frontGigantamax: {
  39003. height: math.unit(150, "feet"),
  39004. name: "Front (Gigantamax)",
  39005. image: {
  39006. source: "./media/characters/carbon/front-gigantamax.svg",
  39007. extra: 1826/1669,
  39008. bottom: 59/1885
  39009. }
  39010. },
  39011. backGigantamax: {
  39012. height: math.unit(150, "feet"),
  39013. name: "Back (Gigantamax)",
  39014. image: {
  39015. source: "./media/characters/carbon/back-gigantamax.svg",
  39016. extra: 1796/1653,
  39017. bottom: 53/1849
  39018. }
  39019. },
  39020. maw: {
  39021. height: math.unit(0.48, "feet"),
  39022. name: "Maw",
  39023. image: {
  39024. source: "./media/characters/carbon/maw.svg"
  39025. }
  39026. },
  39027. mawGigantamax: {
  39028. height: math.unit(7.5, "feet"),
  39029. name: "Maw (Gigantamax)",
  39030. image: {
  39031. source: "./media/characters/carbon/maw-gigantamax.svg"
  39032. }
  39033. },
  39034. },
  39035. [
  39036. {
  39037. name: "Normal",
  39038. height: math.unit(7 + 5/12, "feet"),
  39039. default: true
  39040. },
  39041. ]
  39042. ))
  39043. characterMakers.push(() => makeCharacter(
  39044. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39045. {
  39046. front: {
  39047. height: math.unit(6, "feet"),
  39048. name: "Front",
  39049. image: {
  39050. source: "./media/characters/maverick/front.svg",
  39051. extra: 1672/1661,
  39052. bottom: 85/1757
  39053. }
  39054. },
  39055. back: {
  39056. height: math.unit(6, "feet"),
  39057. name: "Back",
  39058. image: {
  39059. source: "./media/characters/maverick/back.svg",
  39060. extra: 1642/1631,
  39061. bottom: 38/1680
  39062. }
  39063. },
  39064. },
  39065. [
  39066. {
  39067. name: "Normal",
  39068. height: math.unit(6, "feet"),
  39069. default: true
  39070. },
  39071. ]
  39072. ))
  39073. characterMakers.push(() => makeCharacter(
  39074. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39075. {
  39076. front: {
  39077. height: math.unit(15, "feet"),
  39078. weight: math.unit(615, "lb"),
  39079. name: "Front",
  39080. image: {
  39081. source: "./media/characters/grockle/front.svg",
  39082. extra: 1535/1427,
  39083. bottom: 56/1591
  39084. }
  39085. },
  39086. },
  39087. [
  39088. {
  39089. name: "Normal",
  39090. height: math.unit(15, "feet"),
  39091. default: true
  39092. },
  39093. {
  39094. name: "Large",
  39095. height: math.unit(150, "feet")
  39096. },
  39097. {
  39098. name: "Macro",
  39099. height: math.unit(1876, "feet")
  39100. },
  39101. {
  39102. name: "Mega Macro",
  39103. height: math.unit(121940, "feet")
  39104. },
  39105. {
  39106. name: "Giga Macro",
  39107. height: math.unit(750, "km")
  39108. },
  39109. {
  39110. name: "Tera Macro",
  39111. height: math.unit(750000, "km")
  39112. },
  39113. {
  39114. name: "Galactic",
  39115. height: math.unit(1.4e5, "km")
  39116. },
  39117. {
  39118. name: "Godlike",
  39119. height: math.unit(9.8e280, "galaxies")
  39120. },
  39121. ]
  39122. ))
  39123. characterMakers.push(() => makeCharacter(
  39124. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39125. {
  39126. front: {
  39127. height: math.unit(11, "meters"),
  39128. weight: math.unit(20, "tonnes"),
  39129. name: "Front",
  39130. image: {
  39131. source: "./media/characters/alistair/front.svg",
  39132. extra: 1265/1009,
  39133. bottom: 93/1358
  39134. }
  39135. },
  39136. },
  39137. [
  39138. {
  39139. name: "Normal",
  39140. height: math.unit(11, "meters"),
  39141. default: true
  39142. },
  39143. ]
  39144. ))
  39145. characterMakers.push(() => makeCharacter(
  39146. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39147. {
  39148. front: {
  39149. height: math.unit(5 + 8/12, "feet"),
  39150. name: "Front",
  39151. image: {
  39152. source: "./media/characters/haruka/front.svg",
  39153. extra: 2012/1952,
  39154. bottom: 0/2012
  39155. }
  39156. },
  39157. },
  39158. [
  39159. {
  39160. name: "Normal",
  39161. height: math.unit(5 + 8/12, "feet"),
  39162. default: true
  39163. },
  39164. ]
  39165. ))
  39166. characterMakers.push(() => makeCharacter(
  39167. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39168. {
  39169. back: {
  39170. height: math.unit(9, "feet"),
  39171. name: "Back",
  39172. image: {
  39173. source: "./media/characters/vivian-sylveon/back.svg",
  39174. extra: 1853/1714,
  39175. bottom: 0/1853
  39176. }
  39177. },
  39178. },
  39179. [
  39180. {
  39181. name: "Normal",
  39182. height: math.unit(9, "feet"),
  39183. default: true
  39184. },
  39185. {
  39186. name: "Macro",
  39187. height: math.unit(500, "feet")
  39188. },
  39189. {
  39190. name: "Megamacro",
  39191. height: math.unit(600, "miles")
  39192. },
  39193. {
  39194. name: "Gigamacro",
  39195. height: math.unit(30000, "miles")
  39196. },
  39197. ]
  39198. ))
  39199. characterMakers.push(() => makeCharacter(
  39200. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39201. {
  39202. anthro: {
  39203. height: math.unit(5 + 10/12, "feet"),
  39204. weight: math.unit(100, "lb"),
  39205. name: "Anthro",
  39206. image: {
  39207. source: "./media/characters/daiki/anthro.svg",
  39208. extra: 1115/1027,
  39209. bottom: 69/1184
  39210. }
  39211. },
  39212. feral: {
  39213. height: math.unit(200, "feet"),
  39214. name: "Feral",
  39215. image: {
  39216. source: "./media/characters/daiki/feral.svg",
  39217. extra: 1256/313,
  39218. bottom: 39/1295
  39219. }
  39220. },
  39221. feralHead: {
  39222. height: math.unit(171, "feet"),
  39223. name: "Feral Head",
  39224. image: {
  39225. source: "./media/characters/daiki/feral-head.svg"
  39226. }
  39227. },
  39228. manaDragon: {
  39229. height: math.unit(170, "meters"),
  39230. name: "Mana-dragon",
  39231. image: {
  39232. source: "./media/characters/daiki/mana-dragon.svg",
  39233. extra: 763/420,
  39234. bottom: 97/860
  39235. }
  39236. },
  39237. },
  39238. [
  39239. {
  39240. name: "Normal",
  39241. height: math.unit(5 + 10/12, "feet"),
  39242. default: true
  39243. },
  39244. ]
  39245. ))
  39246. characterMakers.push(() => makeCharacter(
  39247. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39248. {
  39249. fullyEquippedFront: {
  39250. height: math.unit(3 + 1/12, "feet"),
  39251. weight: math.unit(24, "lb"),
  39252. name: "Fully Equipped (Front)",
  39253. image: {
  39254. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39255. extra: 687/605,
  39256. bottom: 18/705
  39257. }
  39258. },
  39259. fullyEquippedBack: {
  39260. height: math.unit(3 + 1/12, "feet"),
  39261. weight: math.unit(24, "lb"),
  39262. name: "Fully Equipped (Back)",
  39263. image: {
  39264. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39265. extra: 689/590,
  39266. bottom: 18/707
  39267. }
  39268. },
  39269. dailyWear: {
  39270. height: math.unit(3 + 1/12, "feet"),
  39271. weight: math.unit(24, "lb"),
  39272. name: "Daily Wear",
  39273. image: {
  39274. source: "./media/characters/tea-spot/daily-wear.svg",
  39275. extra: 701/620,
  39276. bottom: 21/722
  39277. }
  39278. },
  39279. maidWork: {
  39280. height: math.unit(3 + 1/12, "feet"),
  39281. weight: math.unit(24, "lb"),
  39282. name: "Maid Work",
  39283. image: {
  39284. source: "./media/characters/tea-spot/maid-work.svg",
  39285. extra: 693/609,
  39286. bottom: 15/708
  39287. }
  39288. },
  39289. },
  39290. [
  39291. {
  39292. name: "Normal",
  39293. height: math.unit(3 + 1/12, "feet"),
  39294. default: true
  39295. },
  39296. ]
  39297. ))
  39298. characterMakers.push(() => makeCharacter(
  39299. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39300. {
  39301. front: {
  39302. height: math.unit(175, "cm"),
  39303. weight: math.unit(75, "kg"),
  39304. name: "Front",
  39305. image: {
  39306. source: "./media/characters/chee/front.svg",
  39307. extra: 1796/1740,
  39308. bottom: 40/1836
  39309. }
  39310. },
  39311. },
  39312. [
  39313. {
  39314. name: "Micro-Micro",
  39315. height: math.unit(1, "nm")
  39316. },
  39317. {
  39318. name: "Micro-erst",
  39319. height: math.unit(1, "micrometer")
  39320. },
  39321. {
  39322. name: "Micro-er",
  39323. height: math.unit(1, "cm")
  39324. },
  39325. {
  39326. name: "Normal",
  39327. height: math.unit(175, "cm"),
  39328. default: true
  39329. },
  39330. {
  39331. name: "Macro",
  39332. height: math.unit(100, "m")
  39333. },
  39334. {
  39335. name: "Macro-er",
  39336. height: math.unit(1, "km")
  39337. },
  39338. {
  39339. name: "Macro-erst",
  39340. height: math.unit(10, "km")
  39341. },
  39342. {
  39343. name: "Macro-Macro",
  39344. height: math.unit(100, "km")
  39345. },
  39346. ]
  39347. ))
  39348. characterMakers.push(() => makeCharacter(
  39349. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39350. {
  39351. front: {
  39352. height: math.unit(11 + 9/12, "feet"),
  39353. weight: math.unit(935, "lb"),
  39354. name: "Front",
  39355. image: {
  39356. source: "./media/characters/kingsley/front.svg",
  39357. extra: 1803/1674,
  39358. bottom: 127/1930
  39359. }
  39360. },
  39361. frontNude: {
  39362. height: math.unit(11 + 9/12, "feet"),
  39363. weight: math.unit(935, "lb"),
  39364. name: "Front (Nude)",
  39365. image: {
  39366. source: "./media/characters/kingsley/front-nude.svg",
  39367. extra: 1803/1674,
  39368. bottom: 127/1930
  39369. }
  39370. },
  39371. },
  39372. [
  39373. {
  39374. name: "Normal",
  39375. height: math.unit(11 + 9/12, "feet"),
  39376. default: true
  39377. },
  39378. ]
  39379. ))
  39380. characterMakers.push(() => makeCharacter(
  39381. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39382. {
  39383. side: {
  39384. height: math.unit(9, "feet"),
  39385. name: "Side",
  39386. image: {
  39387. source: "./media/characters/rymel/side.svg",
  39388. extra: 792/469,
  39389. bottom: 121/913
  39390. }
  39391. },
  39392. maw: {
  39393. height: math.unit(2.4, "meters"),
  39394. name: "Maw",
  39395. image: {
  39396. source: "./media/characters/rymel/maw.svg"
  39397. }
  39398. },
  39399. },
  39400. [
  39401. {
  39402. name: "House Drake",
  39403. height: math.unit(2, "feet")
  39404. },
  39405. {
  39406. name: "Reduced",
  39407. height: math.unit(4.5, "feet")
  39408. },
  39409. {
  39410. name: "Normal",
  39411. height: math.unit(9, "feet"),
  39412. default: true
  39413. },
  39414. ]
  39415. ))
  39416. characterMakers.push(() => makeCharacter(
  39417. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39418. {
  39419. front: {
  39420. height: math.unit(1.74, "meters"),
  39421. weight: math.unit(55, "kg"),
  39422. name: "Front",
  39423. image: {
  39424. source: "./media/characters/rubus/front.svg",
  39425. extra: 1894/1742,
  39426. bottom: 44/1938
  39427. }
  39428. },
  39429. },
  39430. [
  39431. {
  39432. name: "Normal",
  39433. height: math.unit(1.74, "meters"),
  39434. default: true
  39435. },
  39436. ]
  39437. ))
  39438. characterMakers.push(() => makeCharacter(
  39439. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39440. {
  39441. front: {
  39442. height: math.unit(5 + 2/12, "feet"),
  39443. weight: math.unit(112, "lb"),
  39444. name: "Front",
  39445. image: {
  39446. source: "./media/characters/cassie-kingston/front.svg",
  39447. extra: 1438/1390,
  39448. bottom: 47/1485
  39449. }
  39450. },
  39451. },
  39452. [
  39453. {
  39454. name: "Normal",
  39455. height: math.unit(5 + 2/12, "feet"),
  39456. default: true
  39457. },
  39458. {
  39459. name: "Macro",
  39460. height: math.unit(128, "feet")
  39461. },
  39462. {
  39463. name: "Megamacro",
  39464. height: math.unit(2.56, "miles")
  39465. },
  39466. ]
  39467. ))
  39468. characterMakers.push(() => makeCharacter(
  39469. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39470. {
  39471. front: {
  39472. height: math.unit(7, "feet"),
  39473. name: "Front",
  39474. image: {
  39475. source: "./media/characters/fox/front.svg",
  39476. extra: 1798/1703,
  39477. bottom: 55/1853
  39478. }
  39479. },
  39480. back: {
  39481. height: math.unit(7, "feet"),
  39482. name: "Back",
  39483. image: {
  39484. source: "./media/characters/fox/back.svg",
  39485. extra: 1748/1649,
  39486. bottom: 32/1780
  39487. }
  39488. },
  39489. head: {
  39490. height: math.unit(1.95, "feet"),
  39491. name: "Head",
  39492. image: {
  39493. source: "./media/characters/fox/head.svg"
  39494. }
  39495. },
  39496. dick: {
  39497. height: math.unit(1.33, "feet"),
  39498. name: "Dick",
  39499. image: {
  39500. source: "./media/characters/fox/dick.svg"
  39501. }
  39502. },
  39503. foot: {
  39504. height: math.unit(1, "feet"),
  39505. name: "Foot",
  39506. image: {
  39507. source: "./media/characters/fox/foot.svg"
  39508. }
  39509. },
  39510. paw: {
  39511. height: math.unit(0.92, "feet"),
  39512. name: "Paw",
  39513. image: {
  39514. source: "./media/characters/fox/paw.svg"
  39515. }
  39516. },
  39517. },
  39518. [
  39519. {
  39520. name: "Small",
  39521. height: math.unit(3, "inches")
  39522. },
  39523. {
  39524. name: "\"Realistic\"",
  39525. height: math.unit(7, "feet")
  39526. },
  39527. {
  39528. name: "Normal",
  39529. height: math.unit(150, "feet"),
  39530. default: true
  39531. },
  39532. {
  39533. name: "BIG",
  39534. height: math.unit(1200, "feet")
  39535. },
  39536. {
  39537. name: "👀",
  39538. height: math.unit(5, "miles")
  39539. },
  39540. {
  39541. name: "👀👀👀",
  39542. height: math.unit(64, "miles")
  39543. },
  39544. ]
  39545. ))
  39546. characterMakers.push(() => makeCharacter(
  39547. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39548. {
  39549. front: {
  39550. height: math.unit(625, "feet"),
  39551. name: "Front",
  39552. image: {
  39553. source: "./media/characters/asonja-rossa/front.svg",
  39554. extra: 1833/1686,
  39555. bottom: 24/1857
  39556. }
  39557. },
  39558. back: {
  39559. height: math.unit(625, "feet"),
  39560. name: "Back",
  39561. image: {
  39562. source: "./media/characters/asonja-rossa/back.svg",
  39563. extra: 1852/1753,
  39564. bottom: 26/1878
  39565. }
  39566. },
  39567. },
  39568. [
  39569. {
  39570. name: "Macro",
  39571. height: math.unit(625, "feet"),
  39572. default: true
  39573. },
  39574. ]
  39575. ))
  39576. characterMakers.push(() => makeCharacter(
  39577. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39578. {
  39579. side: {
  39580. height: math.unit(8, "feet"),
  39581. name: "Side",
  39582. image: {
  39583. source: "./media/characters/rezukii/side.svg",
  39584. extra: 979/542,
  39585. bottom: 87/1066
  39586. }
  39587. },
  39588. sitting: {
  39589. height: math.unit(14.6, "feet"),
  39590. name: "Sitting",
  39591. image: {
  39592. source: "./media/characters/rezukii/sitting.svg",
  39593. extra: 1023/813,
  39594. bottom: 45/1068
  39595. }
  39596. },
  39597. },
  39598. [
  39599. {
  39600. name: "Tiny",
  39601. height: math.unit(2, "feet")
  39602. },
  39603. {
  39604. name: "Smol",
  39605. height: math.unit(4, "feet")
  39606. },
  39607. {
  39608. name: "Normal",
  39609. height: math.unit(8, "feet"),
  39610. default: true
  39611. },
  39612. {
  39613. name: "Big",
  39614. height: math.unit(12, "feet")
  39615. },
  39616. {
  39617. name: "Macro",
  39618. height: math.unit(30, "feet")
  39619. },
  39620. ]
  39621. ))
  39622. characterMakers.push(() => makeCharacter(
  39623. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39624. {
  39625. front: {
  39626. height: math.unit(14, "feet"),
  39627. weight: math.unit(9.5, "tonnes"),
  39628. name: "Front",
  39629. image: {
  39630. source: "./media/characters/dawnheart/front.svg",
  39631. extra: 2792/2675,
  39632. bottom: 64/2856
  39633. }
  39634. },
  39635. },
  39636. [
  39637. {
  39638. name: "Normal",
  39639. height: math.unit(14, "feet"),
  39640. default: true
  39641. },
  39642. ]
  39643. ))
  39644. characterMakers.push(() => makeCharacter(
  39645. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39646. {
  39647. front: {
  39648. height: math.unit(1.7, "m"),
  39649. name: "Front",
  39650. image: {
  39651. source: "./media/characters/gladi/front.svg",
  39652. extra: 1460/1362,
  39653. bottom: 19/1479
  39654. }
  39655. },
  39656. back: {
  39657. height: math.unit(1.7, "m"),
  39658. name: "Back",
  39659. image: {
  39660. source: "./media/characters/gladi/back.svg",
  39661. extra: 1459/1357,
  39662. bottom: 12/1471
  39663. }
  39664. },
  39665. feral: {
  39666. height: math.unit(2.05, "m"),
  39667. name: "Feral",
  39668. image: {
  39669. source: "./media/characters/gladi/feral.svg",
  39670. extra: 821/557,
  39671. bottom: 91/912
  39672. }
  39673. },
  39674. },
  39675. [
  39676. {
  39677. name: "Shortest",
  39678. height: math.unit(70, "cm")
  39679. },
  39680. {
  39681. name: "Normal",
  39682. height: math.unit(1.7, "m")
  39683. },
  39684. {
  39685. name: "Macro",
  39686. height: math.unit(10, "m"),
  39687. default: true
  39688. },
  39689. {
  39690. name: "Tallest",
  39691. height: math.unit(200, "m")
  39692. },
  39693. ]
  39694. ))
  39695. characterMakers.push(() => makeCharacter(
  39696. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39697. {
  39698. front: {
  39699. height: math.unit(5 + 7/12, "feet"),
  39700. weight: math.unit(2, "tons"),
  39701. name: "Front",
  39702. image: {
  39703. source: "./media/characters/erdno/front.svg",
  39704. extra: 1234/1129,
  39705. bottom: 35/1269
  39706. }
  39707. },
  39708. angled: {
  39709. height: math.unit(5 + 7/12, "feet"),
  39710. weight: math.unit(2, "tons"),
  39711. name: "Angled",
  39712. image: {
  39713. source: "./media/characters/erdno/angled.svg",
  39714. extra: 1185/1139,
  39715. bottom: 36/1221
  39716. }
  39717. },
  39718. side: {
  39719. height: math.unit(5 + 7/12, "feet"),
  39720. weight: math.unit(2, "tons"),
  39721. name: "Side",
  39722. image: {
  39723. source: "./media/characters/erdno/side.svg",
  39724. extra: 1191/1144,
  39725. bottom: 40/1231
  39726. }
  39727. },
  39728. back: {
  39729. height: math.unit(5 + 7/12, "feet"),
  39730. weight: math.unit(2, "tons"),
  39731. name: "Back",
  39732. image: {
  39733. source: "./media/characters/erdno/back.svg",
  39734. extra: 1202/1146,
  39735. bottom: 17/1219
  39736. }
  39737. },
  39738. frontNsfw: {
  39739. height: math.unit(5 + 7/12, "feet"),
  39740. weight: math.unit(2, "tons"),
  39741. name: "Front (NSFW)",
  39742. image: {
  39743. source: "./media/characters/erdno/front-nsfw.svg",
  39744. extra: 1234/1129,
  39745. bottom: 35/1269
  39746. }
  39747. },
  39748. angledNsfw: {
  39749. height: math.unit(5 + 7/12, "feet"),
  39750. weight: math.unit(2, "tons"),
  39751. name: "Angled (NSFW)",
  39752. image: {
  39753. source: "./media/characters/erdno/angled-nsfw.svg",
  39754. extra: 1185/1139,
  39755. bottom: 36/1221
  39756. }
  39757. },
  39758. sideNsfw: {
  39759. height: math.unit(5 + 7/12, "feet"),
  39760. weight: math.unit(2, "tons"),
  39761. name: "Side (NSFW)",
  39762. image: {
  39763. source: "./media/characters/erdno/side-nsfw.svg",
  39764. extra: 1191/1144,
  39765. bottom: 40/1231
  39766. }
  39767. },
  39768. backNsfw: {
  39769. height: math.unit(5 + 7/12, "feet"),
  39770. weight: math.unit(2, "tons"),
  39771. name: "Back (NSFW)",
  39772. image: {
  39773. source: "./media/characters/erdno/back-nsfw.svg",
  39774. extra: 1202/1146,
  39775. bottom: 17/1219
  39776. }
  39777. },
  39778. frontHyper: {
  39779. height: math.unit(5 + 7/12, "feet"),
  39780. weight: math.unit(2, "tons"),
  39781. name: "Front (Hyper)",
  39782. image: {
  39783. source: "./media/characters/erdno/front-hyper.svg",
  39784. extra: 1298/1136,
  39785. bottom: 35/1333
  39786. }
  39787. },
  39788. },
  39789. [
  39790. {
  39791. name: "Normal",
  39792. height: math.unit(5 + 7/12, "feet"),
  39793. default: true
  39794. },
  39795. {
  39796. name: "Big",
  39797. height: math.unit(5.7, "meters")
  39798. },
  39799. {
  39800. name: "Macro",
  39801. height: math.unit(5.7, "kilometers")
  39802. },
  39803. {
  39804. name: "Megamacro",
  39805. height: math.unit(5.7, "earths")
  39806. },
  39807. ]
  39808. ))
  39809. characterMakers.push(() => makeCharacter(
  39810. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39811. {
  39812. front: {
  39813. height: math.unit(5 + 10/12, "feet"),
  39814. weight: math.unit(150, "lb"),
  39815. name: "Front",
  39816. image: {
  39817. source: "./media/characters/jamie/front.svg",
  39818. extra: 1908/1768,
  39819. bottom: 19/1927
  39820. }
  39821. },
  39822. },
  39823. [
  39824. {
  39825. name: "Minimum",
  39826. height: math.unit(2, "cm")
  39827. },
  39828. {
  39829. name: "Micro",
  39830. height: math.unit(3, "inches")
  39831. },
  39832. {
  39833. name: "Normal",
  39834. height: math.unit(5 + 10/12, "feet"),
  39835. default: true
  39836. },
  39837. {
  39838. name: "Macro",
  39839. height: math.unit(150, "feet")
  39840. },
  39841. {
  39842. name: "Megamacro",
  39843. height: math.unit(10000, "m")
  39844. },
  39845. ]
  39846. ))
  39847. characterMakers.push(() => makeCharacter(
  39848. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39849. {
  39850. front: {
  39851. height: math.unit(2, "meters"),
  39852. weight: math.unit(100, "kg"),
  39853. name: "Front",
  39854. image: {
  39855. source: "./media/characters/shiron/front.svg",
  39856. extra: 2103/1985,
  39857. bottom: 98/2201
  39858. }
  39859. },
  39860. back: {
  39861. height: math.unit(2, "meters"),
  39862. weight: math.unit(100, "kg"),
  39863. name: "Back",
  39864. image: {
  39865. source: "./media/characters/shiron/back.svg",
  39866. extra: 2110/2015,
  39867. bottom: 89/2199
  39868. }
  39869. },
  39870. hand: {
  39871. height: math.unit(0.96, "feet"),
  39872. name: "Hand",
  39873. image: {
  39874. source: "./media/characters/shiron/hand.svg"
  39875. }
  39876. },
  39877. foot: {
  39878. height: math.unit(1.464, "feet"),
  39879. name: "Foot",
  39880. image: {
  39881. source: "./media/characters/shiron/foot.svg"
  39882. }
  39883. },
  39884. },
  39885. [
  39886. {
  39887. name: "Normal",
  39888. height: math.unit(2, "meters")
  39889. },
  39890. {
  39891. name: "Macro",
  39892. height: math.unit(500, "meters"),
  39893. default: true
  39894. },
  39895. {
  39896. name: "Megamacro",
  39897. height: math.unit(20, "km")
  39898. },
  39899. ]
  39900. ))
  39901. characterMakers.push(() => makeCharacter(
  39902. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39903. {
  39904. front: {
  39905. height: math.unit(6, "feet"),
  39906. name: "Front",
  39907. image: {
  39908. source: "./media/characters/sam/front.svg",
  39909. extra: 849/826,
  39910. bottom: 19/868
  39911. }
  39912. },
  39913. },
  39914. [
  39915. {
  39916. name: "Normal",
  39917. height: math.unit(6, "feet"),
  39918. default: true
  39919. },
  39920. ]
  39921. ))
  39922. characterMakers.push(() => makeCharacter(
  39923. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39924. {
  39925. front: {
  39926. height: math.unit(8 + 4/12, "feet"),
  39927. weight: math.unit(122, "kg"),
  39928. name: "Front",
  39929. image: {
  39930. source: "./media/characters/namori-kurogawa/front.svg",
  39931. extra: 1894/1576,
  39932. bottom: 34/1928
  39933. }
  39934. },
  39935. },
  39936. [
  39937. {
  39938. name: "Normal",
  39939. height: math.unit(8 + 4/12, "feet"),
  39940. default: true
  39941. },
  39942. ]
  39943. ))
  39944. characterMakers.push(() => makeCharacter(
  39945. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39946. {
  39947. front: {
  39948. height: math.unit(9, "feet"),
  39949. weight: math.unit(621, "lb"),
  39950. name: "Front",
  39951. image: {
  39952. source: "./media/characters/unmru/front.svg",
  39953. extra: 1853/1747,
  39954. bottom: 73/1926
  39955. }
  39956. },
  39957. side: {
  39958. height: math.unit(9, "feet"),
  39959. weight: math.unit(621, "lb"),
  39960. name: "Side",
  39961. image: {
  39962. source: "./media/characters/unmru/side.svg",
  39963. extra: 1781/1671,
  39964. bottom: 127/1908
  39965. }
  39966. },
  39967. back: {
  39968. height: math.unit(9, "feet"),
  39969. weight: math.unit(621, "lb"),
  39970. name: "Back",
  39971. image: {
  39972. source: "./media/characters/unmru/back.svg",
  39973. extra: 1894/1765,
  39974. bottom: 75/1969
  39975. }
  39976. },
  39977. dick: {
  39978. height: math.unit(3, "feet"),
  39979. weight: math.unit(35, "lb"),
  39980. name: "Dick",
  39981. image: {
  39982. source: "./media/characters/unmru/dick.svg"
  39983. }
  39984. },
  39985. },
  39986. [
  39987. {
  39988. name: "Normal",
  39989. height: math.unit(9, "feet")
  39990. },
  39991. {
  39992. name: "Natural",
  39993. height: math.unit(27, "feet"),
  39994. default: true
  39995. },
  39996. {
  39997. name: "Giant",
  39998. height: math.unit(90, "feet")
  39999. },
  40000. {
  40001. name: "Kaiju",
  40002. height: math.unit(270, "feet")
  40003. },
  40004. {
  40005. name: "Macro",
  40006. height: math.unit(900, "feet")
  40007. },
  40008. {
  40009. name: "Macro+",
  40010. height: math.unit(2700, "feet")
  40011. },
  40012. {
  40013. name: "Megamacro",
  40014. height: math.unit(9000, "feet")
  40015. },
  40016. {
  40017. name: "City-Crushing",
  40018. height: math.unit(27000, "feet")
  40019. },
  40020. {
  40021. name: "Mountain-Mashing",
  40022. height: math.unit(90000, "feet")
  40023. },
  40024. {
  40025. name: "Earth-Eclipsing",
  40026. height: math.unit(2.7e8, "feet")
  40027. },
  40028. {
  40029. name: "Sol-Swallowing",
  40030. height: math.unit(9e10, "feet")
  40031. },
  40032. {
  40033. name: "Majoris-Munching",
  40034. height: math.unit(2.7e13, "feet")
  40035. },
  40036. ]
  40037. ))
  40038. characterMakers.push(() => makeCharacter(
  40039. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40040. {
  40041. front: {
  40042. height: math.unit(1, "inch"),
  40043. name: "Front",
  40044. image: {
  40045. source: "./media/characters/squeaks-mouse/front.svg",
  40046. extra: 352/308,
  40047. bottom: 25/377
  40048. }
  40049. },
  40050. },
  40051. [
  40052. {
  40053. name: "Micro",
  40054. height: math.unit(1, "inch"),
  40055. default: true
  40056. },
  40057. ]
  40058. ))
  40059. characterMakers.push(() => makeCharacter(
  40060. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40061. {
  40062. side: {
  40063. height: math.unit(35, "feet"),
  40064. name: "Side",
  40065. image: {
  40066. source: "./media/characters/sayko/side.svg",
  40067. extra: 1697/1021,
  40068. bottom: 82/1779
  40069. }
  40070. },
  40071. head: {
  40072. height: math.unit(16, "feet"),
  40073. name: "Head",
  40074. image: {
  40075. source: "./media/characters/sayko/head.svg"
  40076. }
  40077. },
  40078. forepaw: {
  40079. height: math.unit(7.85, "feet"),
  40080. name: "Forepaw",
  40081. image: {
  40082. source: "./media/characters/sayko/forepaw.svg"
  40083. }
  40084. },
  40085. hindpaw: {
  40086. height: math.unit(8.8, "feet"),
  40087. name: "Hindpaw",
  40088. image: {
  40089. source: "./media/characters/sayko/hindpaw.svg"
  40090. }
  40091. },
  40092. },
  40093. [
  40094. {
  40095. name: "Normal",
  40096. height: math.unit(35, "feet"),
  40097. default: true
  40098. },
  40099. {
  40100. name: "Colossus",
  40101. height: math.unit(100, "meters")
  40102. },
  40103. {
  40104. name: "\"Small\" Deity",
  40105. height: math.unit(1, "km")
  40106. },
  40107. {
  40108. name: "\"Large\" Deity",
  40109. height: math.unit(15, "km")
  40110. },
  40111. ]
  40112. ))
  40113. characterMakers.push(() => makeCharacter(
  40114. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40115. {
  40116. front: {
  40117. height: math.unit(6, "feet"),
  40118. weight: math.unit(250, "lb"),
  40119. name: "Front",
  40120. image: {
  40121. source: "./media/characters/mukiro/front.svg",
  40122. extra: 1368/1310,
  40123. bottom: 34/1402
  40124. }
  40125. },
  40126. },
  40127. [
  40128. {
  40129. name: "Normal",
  40130. height: math.unit(6, "feet"),
  40131. default: true
  40132. },
  40133. ]
  40134. ))
  40135. characterMakers.push(() => makeCharacter(
  40136. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40137. {
  40138. front: {
  40139. height: math.unit(12 + 4/12, "feet"),
  40140. name: "Front",
  40141. image: {
  40142. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40143. extra: 1346/1311,
  40144. bottom: 65/1411
  40145. }
  40146. },
  40147. },
  40148. [
  40149. {
  40150. name: "Base",
  40151. height: math.unit(12 + 4/12, "feet"),
  40152. default: true
  40153. },
  40154. {
  40155. name: "Macro",
  40156. height: math.unit(150, "feet")
  40157. },
  40158. {
  40159. name: "Mega",
  40160. height: math.unit(2, "miles")
  40161. },
  40162. {
  40163. name: "Demi God",
  40164. height: math.unit(4, "AU")
  40165. },
  40166. {
  40167. name: "God Size",
  40168. height: math.unit(1, "universe")
  40169. },
  40170. ]
  40171. ))
  40172. characterMakers.push(() => makeCharacter(
  40173. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40174. {
  40175. front: {
  40176. height: math.unit(3 + 3/12, "feet"),
  40177. weight: math.unit(88, "lb"),
  40178. name: "Front",
  40179. image: {
  40180. source: "./media/characters/trey/front.svg",
  40181. extra: 1815/1509,
  40182. bottom: 60/1875
  40183. }
  40184. },
  40185. },
  40186. [
  40187. {
  40188. name: "Normal",
  40189. height: math.unit(3 + 3/12, "feet"),
  40190. default: true
  40191. },
  40192. ]
  40193. ))
  40194. characterMakers.push(() => makeCharacter(
  40195. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40196. {
  40197. front: {
  40198. height: math.unit(4, "meters"),
  40199. name: "Front",
  40200. image: {
  40201. source: "./media/characters/adelonda/front.svg",
  40202. extra: 1077/982,
  40203. bottom: 39/1116
  40204. }
  40205. },
  40206. back: {
  40207. height: math.unit(4, "meters"),
  40208. name: "Back",
  40209. image: {
  40210. source: "./media/characters/adelonda/back.svg",
  40211. extra: 1105/1003,
  40212. bottom: 25/1130
  40213. }
  40214. },
  40215. feral: {
  40216. height: math.unit(40/1.5, "meters"),
  40217. name: "Feral",
  40218. image: {
  40219. source: "./media/characters/adelonda/feral.svg",
  40220. extra: 597/271,
  40221. bottom: 387/984
  40222. }
  40223. },
  40224. },
  40225. [
  40226. {
  40227. name: "Normal",
  40228. height: math.unit(4, "meters"),
  40229. default: true
  40230. },
  40231. ]
  40232. ))
  40233. characterMakers.push(() => makeCharacter(
  40234. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40235. {
  40236. front: {
  40237. height: math.unit(8 + 4/12, "feet"),
  40238. weight: math.unit(670, "lb"),
  40239. name: "Front",
  40240. image: {
  40241. source: "./media/characters/acadiel/front.svg",
  40242. extra: 1901/1595,
  40243. bottom: 142/2043
  40244. }
  40245. },
  40246. },
  40247. [
  40248. {
  40249. name: "Normal",
  40250. height: math.unit(8 + 4/12, "feet"),
  40251. default: true
  40252. },
  40253. {
  40254. name: "Macro",
  40255. height: math.unit(200, "feet")
  40256. },
  40257. ]
  40258. ))
  40259. characterMakers.push(() => makeCharacter(
  40260. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40261. {
  40262. front: {
  40263. height: math.unit(6 + 2/12, "feet"),
  40264. weight: math.unit(185, "lb"),
  40265. name: "Front",
  40266. image: {
  40267. source: "./media/characters/kayne-ein/front.svg",
  40268. extra: 1780/1560,
  40269. bottom: 81/1861
  40270. }
  40271. },
  40272. },
  40273. [
  40274. {
  40275. name: "Normal",
  40276. height: math.unit(6 + 2/12, "feet"),
  40277. default: true
  40278. },
  40279. {
  40280. name: "Transformation Stage",
  40281. height: math.unit(15, "feet")
  40282. },
  40283. {
  40284. name: "Macro",
  40285. height: math.unit(150, "feet")
  40286. },
  40287. {
  40288. name: "Earth's Shadow",
  40289. height: math.unit(6200, "miles")
  40290. },
  40291. {
  40292. name: "Universal Demon",
  40293. height: math.unit(28e9, "parsecs")
  40294. },
  40295. {
  40296. name: "Multiverse God",
  40297. height: math.unit(3, "multiverses")
  40298. },
  40299. ]
  40300. ))
  40301. characterMakers.push(() => makeCharacter(
  40302. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40303. {
  40304. front: {
  40305. height: math.unit(5 + 5/12, "feet"),
  40306. name: "Front",
  40307. image: {
  40308. source: "./media/characters/fawn/front.svg",
  40309. extra: 1873/1731,
  40310. bottom: 95/1968
  40311. }
  40312. },
  40313. back: {
  40314. height: math.unit(5 + 5/12, "feet"),
  40315. name: "Back",
  40316. image: {
  40317. source: "./media/characters/fawn/back.svg",
  40318. extra: 1813/1700,
  40319. bottom: 14/1827
  40320. }
  40321. },
  40322. hoof: {
  40323. height: math.unit(1.45, "feet"),
  40324. name: "Hoof",
  40325. image: {
  40326. source: "./media/characters/fawn/hoof.svg"
  40327. }
  40328. },
  40329. },
  40330. [
  40331. {
  40332. name: "Normal",
  40333. height: math.unit(5 + 5/12, "feet"),
  40334. default: true
  40335. },
  40336. ]
  40337. ))
  40338. characterMakers.push(() => makeCharacter(
  40339. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40340. {
  40341. front: {
  40342. height: math.unit(2 + 5/12, "feet"),
  40343. name: "Front",
  40344. image: {
  40345. source: "./media/characters/orion/front.svg",
  40346. extra: 1366/1304,
  40347. bottom: 43/1409
  40348. }
  40349. },
  40350. paw: {
  40351. height: math.unit(0.52, "feet"),
  40352. name: "Paw",
  40353. image: {
  40354. source: "./media/characters/orion/paw.svg"
  40355. }
  40356. },
  40357. },
  40358. [
  40359. {
  40360. name: "Normal",
  40361. height: math.unit(2 + 5/12, "feet"),
  40362. default: true
  40363. },
  40364. ]
  40365. ))
  40366. characterMakers.push(() => makeCharacter(
  40367. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40368. {
  40369. front: {
  40370. height: math.unit(5 + 10/12, "feet"),
  40371. name: "Front",
  40372. image: {
  40373. source: "./media/characters/vera/front.svg",
  40374. extra: 1680/1575,
  40375. bottom: 49/1729
  40376. }
  40377. },
  40378. back: {
  40379. height: math.unit(5 + 10/12, "feet"),
  40380. name: "Back",
  40381. image: {
  40382. source: "./media/characters/vera/back.svg",
  40383. extra: 1700/1588,
  40384. bottom: 18/1718
  40385. }
  40386. },
  40387. arcanine: {
  40388. height: math.unit(6 + 8/12, "feet"),
  40389. name: "Arcanine",
  40390. image: {
  40391. source: "./media/characters/vera/arcanine.svg",
  40392. extra: 1590/1511,
  40393. bottom: 71/1661
  40394. }
  40395. },
  40396. maw: {
  40397. height: math.unit(0.82, "feet"),
  40398. name: "Maw",
  40399. image: {
  40400. source: "./media/characters/vera/maw.svg"
  40401. }
  40402. },
  40403. mawArcanine: {
  40404. height: math.unit(0.97, "feet"),
  40405. name: "Maw (Arcanine)",
  40406. image: {
  40407. source: "./media/characters/vera/maw-arcanine.svg"
  40408. }
  40409. },
  40410. paw: {
  40411. height: math.unit(0.75, "feet"),
  40412. name: "Paw",
  40413. image: {
  40414. source: "./media/characters/vera/paw.svg"
  40415. }
  40416. },
  40417. pawprint: {
  40418. height: math.unit(0.52, "feet"),
  40419. name: "Pawprint",
  40420. image: {
  40421. source: "./media/characters/vera/pawprint.svg"
  40422. }
  40423. },
  40424. },
  40425. [
  40426. {
  40427. name: "Normal",
  40428. height: math.unit(5 + 10/12, "feet"),
  40429. default: true
  40430. },
  40431. {
  40432. name: "Macro",
  40433. height: math.unit(75, "feet")
  40434. },
  40435. ]
  40436. ))
  40437. characterMakers.push(() => makeCharacter(
  40438. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40439. {
  40440. front: {
  40441. height: math.unit(4, "feet"),
  40442. weight: math.unit(40, "lb"),
  40443. name: "Front",
  40444. image: {
  40445. source: "./media/characters/orvan-rabbit/front.svg",
  40446. extra: 1896/1642,
  40447. bottom: 29/1925
  40448. }
  40449. },
  40450. },
  40451. [
  40452. {
  40453. name: "Normal",
  40454. height: math.unit(4, "feet"),
  40455. default: true
  40456. },
  40457. ]
  40458. ))
  40459. characterMakers.push(() => makeCharacter(
  40460. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40461. {
  40462. front: {
  40463. height: math.unit(6, "feet"),
  40464. weight: math.unit(168, "lb"),
  40465. name: "Front",
  40466. image: {
  40467. source: "./media/characters/lisa/front.svg",
  40468. extra: 2065/1867,
  40469. bottom: 46/2111
  40470. }
  40471. },
  40472. back: {
  40473. height: math.unit(6, "feet"),
  40474. weight: math.unit(168, "lb"),
  40475. name: "Back",
  40476. image: {
  40477. source: "./media/characters/lisa/back.svg",
  40478. extra: 1982/1838,
  40479. bottom: 29/2011
  40480. }
  40481. },
  40482. maw: {
  40483. height: math.unit(0.81, "feet"),
  40484. name: "Maw",
  40485. image: {
  40486. source: "./media/characters/lisa/maw.svg"
  40487. }
  40488. },
  40489. paw: {
  40490. height: math.unit(0.9, "feet"),
  40491. name: "Paw",
  40492. image: {
  40493. source: "./media/characters/lisa/paw.svg"
  40494. }
  40495. },
  40496. caribousune: {
  40497. height: math.unit(7 + 2/12, "feet"),
  40498. weight: math.unit(268, "lb"),
  40499. name: "Caribousune",
  40500. image: {
  40501. source: "./media/characters/lisa/caribousune.svg",
  40502. extra: 1843/1633,
  40503. bottom: 29/1872
  40504. }
  40505. },
  40506. frontCaribousune: {
  40507. height: math.unit(7 + 2/12, "feet"),
  40508. weight: math.unit(268, "lb"),
  40509. name: "Front (Caribousune)",
  40510. image: {
  40511. source: "./media/characters/lisa/front-caribousune.svg",
  40512. extra: 1818/1638,
  40513. bottom: 52/1870
  40514. }
  40515. },
  40516. sideCaribousune: {
  40517. height: math.unit(7 + 2/12, "feet"),
  40518. weight: math.unit(268, "lb"),
  40519. name: "Side (Caribousune)",
  40520. image: {
  40521. source: "./media/characters/lisa/side-caribousune.svg",
  40522. extra: 1851/1635,
  40523. bottom: 16/1867
  40524. }
  40525. },
  40526. backCaribousune: {
  40527. height: math.unit(7 + 2/12, "feet"),
  40528. weight: math.unit(268, "lb"),
  40529. name: "Back (Caribousune)",
  40530. image: {
  40531. source: "./media/characters/lisa/back-caribousune.svg",
  40532. extra: 1801/1604,
  40533. bottom: 44/1845
  40534. }
  40535. },
  40536. caribou: {
  40537. height: math.unit(7 + 2/12, "feet"),
  40538. weight: math.unit(268, "lb"),
  40539. name: "Caribou",
  40540. image: {
  40541. source: "./media/characters/lisa/caribou.svg",
  40542. extra: 1843/1633,
  40543. bottom: 29/1872
  40544. }
  40545. },
  40546. frontCaribou: {
  40547. height: math.unit(7 + 2/12, "feet"),
  40548. weight: math.unit(268, "lb"),
  40549. name: "Front (Caribou)",
  40550. image: {
  40551. source: "./media/characters/lisa/front-caribou.svg",
  40552. extra: 1818/1638,
  40553. bottom: 52/1870
  40554. }
  40555. },
  40556. sideCaribou: {
  40557. height: math.unit(7 + 2/12, "feet"),
  40558. weight: math.unit(268, "lb"),
  40559. name: "Side (Caribou)",
  40560. image: {
  40561. source: "./media/characters/lisa/side-caribou.svg",
  40562. extra: 1851/1635,
  40563. bottom: 16/1867
  40564. }
  40565. },
  40566. backCaribou: {
  40567. height: math.unit(7 + 2/12, "feet"),
  40568. weight: math.unit(268, "lb"),
  40569. name: "Back (Caribou)",
  40570. image: {
  40571. source: "./media/characters/lisa/back-caribou.svg",
  40572. extra: 1801/1604,
  40573. bottom: 44/1845
  40574. }
  40575. },
  40576. mawCaribou: {
  40577. height: math.unit(1.45, "feet"),
  40578. name: "Maw (Caribou)",
  40579. image: {
  40580. source: "./media/characters/lisa/maw-caribou.svg"
  40581. }
  40582. },
  40583. mawCaribousune: {
  40584. height: math.unit(1.45, "feet"),
  40585. name: "Maw (Caribousune)",
  40586. image: {
  40587. source: "./media/characters/lisa/maw-caribousune.svg"
  40588. }
  40589. },
  40590. pawCaribousune: {
  40591. height: math.unit(1.61, "feet"),
  40592. name: "Paw (Caribou)",
  40593. image: {
  40594. source: "./media/characters/lisa/paw-caribousune.svg"
  40595. }
  40596. },
  40597. },
  40598. [
  40599. {
  40600. name: "Normal",
  40601. height: math.unit(6, "feet")
  40602. },
  40603. {
  40604. name: "God Size",
  40605. height: math.unit(72, "feet"),
  40606. default: true
  40607. },
  40608. {
  40609. name: "Towering",
  40610. height: math.unit(288, "feet")
  40611. },
  40612. {
  40613. name: "City Size",
  40614. height: math.unit(48384, "feet")
  40615. },
  40616. {
  40617. name: "Continental",
  40618. height: math.unit(4200, "miles")
  40619. },
  40620. {
  40621. name: "Planet Eater",
  40622. height: math.unit(42, "earths")
  40623. },
  40624. {
  40625. name: "Star Swallower",
  40626. height: math.unit(42, "solarradii")
  40627. },
  40628. {
  40629. name: "System Swallower",
  40630. height: math.unit(84000, "AU")
  40631. },
  40632. {
  40633. name: "Galaxy Gobbler",
  40634. height: math.unit(42, "galaxies")
  40635. },
  40636. {
  40637. name: "Universe Devourer",
  40638. height: math.unit(42, "universes")
  40639. },
  40640. {
  40641. name: "Multiverse Muncher",
  40642. height: math.unit(42, "multiverses")
  40643. },
  40644. ]
  40645. ))
  40646. characterMakers.push(() => makeCharacter(
  40647. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40648. {
  40649. front: {
  40650. height: math.unit(36, "feet"),
  40651. name: "Front",
  40652. image: {
  40653. source: "./media/characters/shadow-rat/front.svg",
  40654. extra: 1845/1758,
  40655. bottom: 83/1928
  40656. }
  40657. },
  40658. },
  40659. [
  40660. {
  40661. name: "Macro",
  40662. height: math.unit(36, "feet"),
  40663. default: true
  40664. },
  40665. ]
  40666. ))
  40667. characterMakers.push(() => makeCharacter(
  40668. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40669. {
  40670. side: {
  40671. height: math.unit(8, "feet"),
  40672. weight: math.unit(2630, "lb"),
  40673. name: "Side",
  40674. image: {
  40675. source: "./media/characters/torallia/side.svg",
  40676. extra: 2164/2021,
  40677. bottom: 371/2535
  40678. }
  40679. },
  40680. },
  40681. [
  40682. {
  40683. name: "Mortal Interaction",
  40684. height: math.unit(8, "feet")
  40685. },
  40686. {
  40687. name: "Natural",
  40688. height: math.unit(24, "feet"),
  40689. default: true
  40690. },
  40691. {
  40692. name: "Giant",
  40693. height: math.unit(80, "feet")
  40694. },
  40695. {
  40696. name: "Kaiju",
  40697. height: math.unit(240, "feet")
  40698. },
  40699. {
  40700. name: "Macro",
  40701. height: math.unit(800, "feet")
  40702. },
  40703. {
  40704. name: "Macro+",
  40705. height: math.unit(2400, "feet")
  40706. },
  40707. {
  40708. name: "Macro++",
  40709. height: math.unit(8000, "feet")
  40710. },
  40711. {
  40712. name: "City-Crushing",
  40713. height: math.unit(24000, "feet")
  40714. },
  40715. {
  40716. name: "Mountain-Mashing",
  40717. height: math.unit(80000, "feet")
  40718. },
  40719. {
  40720. name: "District Demolisher",
  40721. height: math.unit(240000, "feet")
  40722. },
  40723. {
  40724. name: "Tri-County Terror",
  40725. height: math.unit(800000, "feet")
  40726. },
  40727. {
  40728. name: "State Smasher",
  40729. height: math.unit(2.4e6, "feet")
  40730. },
  40731. {
  40732. name: "Nation Nemesis",
  40733. height: math.unit(8e6, "feet")
  40734. },
  40735. {
  40736. name: "Continent Cracker",
  40737. height: math.unit(2.4e7, "feet")
  40738. },
  40739. {
  40740. name: "Planet-Pillaging",
  40741. height: math.unit(8e7, "feet")
  40742. },
  40743. {
  40744. name: "Earth-Eclipsing",
  40745. height: math.unit(2.4e8, "feet")
  40746. },
  40747. {
  40748. name: "Jovian-Jostling",
  40749. height: math.unit(8e8, "feet")
  40750. },
  40751. {
  40752. name: "Gas Giant Gulper",
  40753. height: math.unit(2.4e9, "feet")
  40754. },
  40755. {
  40756. name: "Astral Annihilator",
  40757. height: math.unit(8e9, "feet")
  40758. },
  40759. {
  40760. name: "Celestial Conqueror",
  40761. height: math.unit(2.4e10, "feet")
  40762. },
  40763. {
  40764. name: "Sol-Swallowing",
  40765. height: math.unit(8e10, "feet")
  40766. },
  40767. {
  40768. name: "Hunter of the Heavens",
  40769. height: math.unit(2.4e13, "feet")
  40770. },
  40771. ]
  40772. ))
  40773. characterMakers.push(() => makeCharacter(
  40774. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40775. {
  40776. front: {
  40777. height: math.unit(6 + 8/12, "feet"),
  40778. weight: math.unit(250, "kilograms"),
  40779. volume: math.unit(28, "liters"),
  40780. name: "Front",
  40781. image: {
  40782. source: "./media/characters/rebecca-pawlson/front.svg",
  40783. extra: 1737/1596,
  40784. bottom: 107/1844
  40785. }
  40786. },
  40787. back: {
  40788. height: math.unit(6 + 8/12, "feet"),
  40789. weight: math.unit(250, "kilograms"),
  40790. volume: math.unit(28, "liters"),
  40791. name: "Back",
  40792. image: {
  40793. source: "./media/characters/rebecca-pawlson/back.svg",
  40794. extra: 1702/1523,
  40795. bottom: 86/1788
  40796. }
  40797. },
  40798. },
  40799. [
  40800. {
  40801. name: "Normal",
  40802. height: math.unit(6 + 8/12, "feet")
  40803. },
  40804. {
  40805. name: "Mini Macro",
  40806. height: math.unit(10, "feet"),
  40807. default: true
  40808. },
  40809. {
  40810. name: "Macro",
  40811. height: math.unit(100, "feet")
  40812. },
  40813. {
  40814. name: "Mega Macro",
  40815. height: math.unit(2500, "feet")
  40816. },
  40817. {
  40818. name: "Giga Macro",
  40819. height: math.unit(50, "miles")
  40820. },
  40821. ]
  40822. ))
  40823. characterMakers.push(() => makeCharacter(
  40824. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40825. {
  40826. front: {
  40827. height: math.unit(7 + 6/12, "feet"),
  40828. weight: math.unit(600, "lb"),
  40829. name: "Front",
  40830. image: {
  40831. source: "./media/characters/moxie-nova/front.svg",
  40832. extra: 1734/1652,
  40833. bottom: 41/1775
  40834. }
  40835. },
  40836. },
  40837. [
  40838. {
  40839. name: "Normal",
  40840. height: math.unit(7 + 6/12, "feet"),
  40841. default: true
  40842. },
  40843. ]
  40844. ))
  40845. characterMakers.push(() => makeCharacter(
  40846. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40847. {
  40848. goat: {
  40849. height: math.unit(4, "feet"),
  40850. weight: math.unit(180, "lb"),
  40851. name: "Goat",
  40852. image: {
  40853. source: "./media/characters/tiffany/goat.svg",
  40854. extra: 1845/1595,
  40855. bottom: 106/1951
  40856. }
  40857. },
  40858. front: {
  40859. height: math.unit(5, "feet"),
  40860. weight: math.unit(150, "lb"),
  40861. name: "Foxcoon",
  40862. image: {
  40863. source: "./media/characters/tiffany/foxcoon.svg",
  40864. extra: 1941/1845,
  40865. bottom: 58/1999
  40866. }
  40867. },
  40868. },
  40869. [
  40870. {
  40871. name: "Normal",
  40872. height: math.unit(5, "feet"),
  40873. default: true
  40874. },
  40875. ]
  40876. ))
  40877. characterMakers.push(() => makeCharacter(
  40878. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40879. {
  40880. front: {
  40881. height: math.unit(8, "feet"),
  40882. weight: math.unit(300, "lb"),
  40883. name: "Front",
  40884. image: {
  40885. source: "./media/characters/raxinath/front.svg",
  40886. extra: 1407/1309,
  40887. bottom: 39/1446
  40888. }
  40889. },
  40890. back: {
  40891. height: math.unit(8, "feet"),
  40892. weight: math.unit(300, "lb"),
  40893. name: "Back",
  40894. image: {
  40895. source: "./media/characters/raxinath/back.svg",
  40896. extra: 1405/1315,
  40897. bottom: 9/1414
  40898. }
  40899. },
  40900. },
  40901. [
  40902. {
  40903. name: "Speck",
  40904. height: math.unit(0.5, "nm")
  40905. },
  40906. {
  40907. name: "Micro",
  40908. height: math.unit(3, "inches")
  40909. },
  40910. {
  40911. name: "Kobold",
  40912. height: math.unit(3, "feet")
  40913. },
  40914. {
  40915. name: "Normal",
  40916. height: math.unit(8, "feet"),
  40917. default: true
  40918. },
  40919. {
  40920. name: "Giant",
  40921. height: math.unit(50, "feet")
  40922. },
  40923. {
  40924. name: "Macro",
  40925. height: math.unit(1000, "feet")
  40926. },
  40927. {
  40928. name: "Megamacro",
  40929. height: math.unit(1, "mile")
  40930. },
  40931. ]
  40932. ))
  40933. characterMakers.push(() => makeCharacter(
  40934. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40935. {
  40936. front: {
  40937. height: math.unit(10, "feet"),
  40938. weight: math.unit(1442, "lb"),
  40939. name: "Front",
  40940. image: {
  40941. source: "./media/characters/mal-dragon/front.svg",
  40942. extra: 1515/1444,
  40943. bottom: 113/1628
  40944. }
  40945. },
  40946. back: {
  40947. height: math.unit(10, "feet"),
  40948. weight: math.unit(1442, "lb"),
  40949. name: "Back",
  40950. image: {
  40951. source: "./media/characters/mal-dragon/back.svg",
  40952. extra: 1527/1434,
  40953. bottom: 25/1552
  40954. }
  40955. },
  40956. },
  40957. [
  40958. {
  40959. name: "Mortal Interaction",
  40960. height: math.unit(10, "feet"),
  40961. default: true
  40962. },
  40963. {
  40964. name: "Large",
  40965. height: math.unit(30, "feet")
  40966. },
  40967. {
  40968. name: "Kaiju",
  40969. height: math.unit(300, "feet")
  40970. },
  40971. {
  40972. name: "Megamacro",
  40973. height: math.unit(10000, "feet")
  40974. },
  40975. {
  40976. name: "Continent Cracker",
  40977. height: math.unit(30000000, "feet")
  40978. },
  40979. {
  40980. name: "Sol-Swallowing",
  40981. height: math.unit(1e11, "feet")
  40982. },
  40983. {
  40984. name: "Light Universal",
  40985. height: math.unit(5, "universes")
  40986. },
  40987. {
  40988. name: "Universe Atoms",
  40989. height: math.unit(1.829e9, "universes")
  40990. },
  40991. {
  40992. name: "Light Multiversal",
  40993. height: math.unit(5, "multiverses")
  40994. },
  40995. {
  40996. name: "Multiverse Atoms",
  40997. height: math.unit(1.829e9, "multiverses")
  40998. },
  40999. {
  41000. name: "Fabric of Time",
  41001. height: math.unit(1e262, "multiverses")
  41002. },
  41003. ]
  41004. ))
  41005. characterMakers.push(() => makeCharacter(
  41006. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41007. {
  41008. front: {
  41009. height: math.unit(9, "feet"),
  41010. weight: math.unit(1050, "lb"),
  41011. name: "Front",
  41012. image: {
  41013. source: "./media/characters/tabitha/front.svg",
  41014. extra: 2083/1994,
  41015. bottom: 68/2151
  41016. }
  41017. },
  41018. },
  41019. [
  41020. {
  41021. name: "Baseline",
  41022. height: math.unit(9, "feet"),
  41023. default: true
  41024. },
  41025. {
  41026. name: "Giant",
  41027. height: math.unit(90, "feet")
  41028. },
  41029. {
  41030. name: "Macro",
  41031. height: math.unit(900, "feet")
  41032. },
  41033. {
  41034. name: "Megamacro",
  41035. height: math.unit(9000, "feet")
  41036. },
  41037. {
  41038. name: "City-Crushing",
  41039. height: math.unit(27000, "feet")
  41040. },
  41041. {
  41042. name: "Mountain-Mashing",
  41043. height: math.unit(90000, "feet")
  41044. },
  41045. {
  41046. name: "Nation Nemesis",
  41047. height: math.unit(9e6, "feet")
  41048. },
  41049. {
  41050. name: "Continent Cracker",
  41051. height: math.unit(27e6, "feet")
  41052. },
  41053. {
  41054. name: "Earth-Eclipsing",
  41055. height: math.unit(2.7e8, "feet")
  41056. },
  41057. {
  41058. name: "Gas Giant Gulper",
  41059. height: math.unit(2.7e9, "feet")
  41060. },
  41061. {
  41062. name: "Sol-Swallowing",
  41063. height: math.unit(9e10, "feet")
  41064. },
  41065. {
  41066. name: "Galaxy Gulper",
  41067. height: math.unit(9, "galaxies")
  41068. },
  41069. {
  41070. name: "Cosmos Churner",
  41071. height: math.unit(9, "universes")
  41072. },
  41073. ]
  41074. ))
  41075. characterMakers.push(() => makeCharacter(
  41076. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41077. {
  41078. front: {
  41079. height: math.unit(160, "cm"),
  41080. weight: math.unit(55, "kg"),
  41081. name: "Front",
  41082. image: {
  41083. source: "./media/characters/tow/front.svg",
  41084. extra: 1751/1722,
  41085. bottom: 74/1825
  41086. }
  41087. },
  41088. },
  41089. [
  41090. {
  41091. name: "Norm",
  41092. height: math.unit(160, "cm")
  41093. },
  41094. {
  41095. name: "Casual",
  41096. height: math.unit(3200, "m"),
  41097. default: true
  41098. },
  41099. {
  41100. name: "Show-Off",
  41101. height: math.unit(160, "km")
  41102. },
  41103. ]
  41104. ))
  41105. characterMakers.push(() => makeCharacter(
  41106. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41107. {
  41108. front: {
  41109. height: math.unit(7 + 11/12, "feet"),
  41110. weight: math.unit(342.8, "lb"),
  41111. name: "Front",
  41112. image: {
  41113. source: "./media/characters/vivian-orca-dragon/front.svg",
  41114. extra: 1890/1865,
  41115. bottom: 28/1918
  41116. }
  41117. },
  41118. },
  41119. [
  41120. {
  41121. name: "Micro",
  41122. height: math.unit(5, "inches")
  41123. },
  41124. {
  41125. name: "Normal",
  41126. height: math.unit(7 + 11/12, "feet"),
  41127. default: true
  41128. },
  41129. {
  41130. name: "Macro",
  41131. height: math.unit(395 + 7/12, "feet")
  41132. },
  41133. ]
  41134. ))
  41135. characterMakers.push(() => makeCharacter(
  41136. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41137. {
  41138. side: {
  41139. height: math.unit(10, "feet"),
  41140. weight: math.unit(1442, "lb"),
  41141. name: "Side",
  41142. image: {
  41143. source: "./media/characters/lotherakon/side.svg",
  41144. extra: 1604/1497,
  41145. bottom: 89/1693
  41146. }
  41147. },
  41148. },
  41149. [
  41150. {
  41151. name: "Mortal Interaction",
  41152. height: math.unit(10, "feet")
  41153. },
  41154. {
  41155. name: "Large",
  41156. height: math.unit(30, "feet"),
  41157. default: true
  41158. },
  41159. {
  41160. name: "Giant",
  41161. height: math.unit(100, "feet")
  41162. },
  41163. {
  41164. name: "Kaiju",
  41165. height: math.unit(300, "feet")
  41166. },
  41167. {
  41168. name: "Macro",
  41169. height: math.unit(1000, "feet")
  41170. },
  41171. {
  41172. name: "Macro+",
  41173. height: math.unit(3000, "feet")
  41174. },
  41175. {
  41176. name: "Megamacro",
  41177. height: math.unit(10000, "feet")
  41178. },
  41179. {
  41180. name: "City-Crushing",
  41181. height: math.unit(30000, "feet")
  41182. },
  41183. {
  41184. name: "Continent Cracker",
  41185. height: math.unit(30e6, "feet")
  41186. },
  41187. {
  41188. name: "Earth Eclipsing",
  41189. height: math.unit(3e8, "feet")
  41190. },
  41191. {
  41192. name: "Gas Giant Gulper",
  41193. height: math.unit(3e9, "feet")
  41194. },
  41195. {
  41196. name: "Sol-Swallowing",
  41197. height: math.unit(1e11, "feet")
  41198. },
  41199. {
  41200. name: "System Swallower",
  41201. height: math.unit(3e14, "feet")
  41202. },
  41203. {
  41204. name: "Galaxy Gulper",
  41205. height: math.unit(10, "galaxies")
  41206. },
  41207. {
  41208. name: "Light Universal",
  41209. height: math.unit(5, "universes")
  41210. },
  41211. {
  41212. name: "Universe Palm",
  41213. height: math.unit(20, "universes")
  41214. },
  41215. {
  41216. name: "Light Multiversal",
  41217. height: math.unit(5, "multiverses")
  41218. },
  41219. {
  41220. name: "Multiverse Palm",
  41221. height: math.unit(20, "multiverses")
  41222. },
  41223. {
  41224. name: "Inferno Incarnate",
  41225. height: math.unit(1e7, "multiverses")
  41226. },
  41227. ]
  41228. ))
  41229. characterMakers.push(() => makeCharacter(
  41230. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41231. {
  41232. front: {
  41233. height: math.unit(8, "feet"),
  41234. weight: math.unit(1200, "lb"),
  41235. name: "Front",
  41236. image: {
  41237. source: "./media/characters/malithee/front.svg",
  41238. extra: 1675/1640,
  41239. bottom: 162/1837
  41240. }
  41241. },
  41242. },
  41243. [
  41244. {
  41245. name: "Mortal Interaction",
  41246. height: math.unit(8, "feet"),
  41247. default: true
  41248. },
  41249. {
  41250. name: "Large",
  41251. height: math.unit(24, "feet")
  41252. },
  41253. {
  41254. name: "Kaiju",
  41255. height: math.unit(240, "feet")
  41256. },
  41257. {
  41258. name: "Megamacro",
  41259. height: math.unit(8000, "feet")
  41260. },
  41261. {
  41262. name: "Continent Cracker",
  41263. height: math.unit(24e6, "feet")
  41264. },
  41265. {
  41266. name: "Earth-Eclipsing",
  41267. height: math.unit(2.4e8, "feet")
  41268. },
  41269. {
  41270. name: "Sol-Swallowing",
  41271. height: math.unit(8e10, "feet")
  41272. },
  41273. {
  41274. name: "Galaxy Gulper",
  41275. height: math.unit(8, "galaxies")
  41276. },
  41277. {
  41278. name: "Light Universal",
  41279. height: math.unit(4, "universes")
  41280. },
  41281. {
  41282. name: "Universe Atoms",
  41283. height: math.unit(1.829e9, "universes")
  41284. },
  41285. {
  41286. name: "Light Multiversal",
  41287. height: math.unit(4, "multiverses")
  41288. },
  41289. {
  41290. name: "Multiverse Atoms",
  41291. height: math.unit(1.829e9, "multiverses")
  41292. },
  41293. {
  41294. name: "Nigh-Omnipresence",
  41295. height: math.unit(8e261, "multiverses")
  41296. },
  41297. ]
  41298. ))
  41299. characterMakers.push(() => makeCharacter(
  41300. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41301. {
  41302. front: {
  41303. height: math.unit(10, "feet"),
  41304. weight: math.unit(1500, "lb"),
  41305. name: "Front",
  41306. image: {
  41307. source: "./media/characters/miles-thestia/front.svg",
  41308. extra: 1812/1727,
  41309. bottom: 86/1898
  41310. }
  41311. },
  41312. back: {
  41313. height: math.unit(10, "feet"),
  41314. weight: math.unit(1500, "lb"),
  41315. name: "Back",
  41316. image: {
  41317. source: "./media/characters/miles-thestia/back.svg",
  41318. extra: 1799/1690,
  41319. bottom: 47/1846
  41320. }
  41321. },
  41322. frontNsfw: {
  41323. height: math.unit(10, "feet"),
  41324. weight: math.unit(1500, "lb"),
  41325. name: "Front (NSFW)",
  41326. image: {
  41327. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41328. extra: 1812/1727,
  41329. bottom: 86/1898
  41330. }
  41331. },
  41332. },
  41333. [
  41334. {
  41335. name: "Mini-Macro",
  41336. height: math.unit(10, "feet"),
  41337. default: true
  41338. },
  41339. ]
  41340. ))
  41341. characterMakers.push(() => makeCharacter(
  41342. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41343. {
  41344. front: {
  41345. height: math.unit(25, "feet"),
  41346. name: "Front",
  41347. image: {
  41348. source: "./media/characters/titan-s-wulf/front.svg",
  41349. extra: 1560/1484,
  41350. bottom: 76/1636
  41351. }
  41352. },
  41353. },
  41354. [
  41355. {
  41356. name: "Smallest",
  41357. height: math.unit(25, "feet"),
  41358. default: true
  41359. },
  41360. {
  41361. name: "Normal",
  41362. height: math.unit(200, "feet")
  41363. },
  41364. {
  41365. name: "Macro",
  41366. height: math.unit(200000, "feet")
  41367. },
  41368. {
  41369. name: "Multiversal Original",
  41370. height: math.unit(10000, "multiverses")
  41371. },
  41372. ]
  41373. ))
  41374. characterMakers.push(() => makeCharacter(
  41375. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41376. {
  41377. front: {
  41378. height: math.unit(8, "feet"),
  41379. weight: math.unit(553, "lb"),
  41380. name: "Front",
  41381. image: {
  41382. source: "./media/characters/tawendeh/front.svg",
  41383. extra: 2365/2268,
  41384. bottom: 83/2448
  41385. }
  41386. },
  41387. frontClothed: {
  41388. height: math.unit(8, "feet"),
  41389. weight: math.unit(553, "lb"),
  41390. name: "Front (Clothed)",
  41391. image: {
  41392. source: "./media/characters/tawendeh/front-clothed.svg",
  41393. extra: 2365/2268,
  41394. bottom: 83/2448
  41395. }
  41396. },
  41397. back: {
  41398. height: math.unit(8, "feet"),
  41399. weight: math.unit(553, "lb"),
  41400. name: "Back",
  41401. image: {
  41402. source: "./media/characters/tawendeh/back.svg",
  41403. extra: 2397/2294,
  41404. bottom: 42/2439
  41405. }
  41406. },
  41407. },
  41408. [
  41409. {
  41410. name: "Mortal Interaction",
  41411. height: math.unit(8, "feet"),
  41412. default: true
  41413. },
  41414. {
  41415. name: "Giant",
  41416. height: math.unit(80, "feet")
  41417. },
  41418. {
  41419. name: "Macro",
  41420. height: math.unit(800, "feet")
  41421. },
  41422. {
  41423. name: "Megamacro",
  41424. height: math.unit(8000, "feet")
  41425. },
  41426. {
  41427. name: "City-Crushing",
  41428. height: math.unit(24000, "feet")
  41429. },
  41430. {
  41431. name: "Mountain-Mashing",
  41432. height: math.unit(80000, "feet")
  41433. },
  41434. {
  41435. name: "Nation Nemesis",
  41436. height: math.unit(8e6, "feet")
  41437. },
  41438. {
  41439. name: "Continent Cracker",
  41440. height: math.unit(24e6, "feet")
  41441. },
  41442. {
  41443. name: "Earth-Eclipsing",
  41444. height: math.unit(2.4e8, "feet")
  41445. },
  41446. {
  41447. name: "Gas Giant Gulper",
  41448. height: math.unit(2.4e9, "feet")
  41449. },
  41450. {
  41451. name: "Sol-Swallowing",
  41452. height: math.unit(8e10, "feet")
  41453. },
  41454. {
  41455. name: "Galaxy Gulper",
  41456. height: math.unit(8, "galaxies")
  41457. },
  41458. {
  41459. name: "Cosmos Churner",
  41460. height: math.unit(8, "universes")
  41461. },
  41462. {
  41463. name: "Omnipotent Otter",
  41464. height: math.unit(80, "universes")
  41465. },
  41466. ]
  41467. ))
  41468. characterMakers.push(() => makeCharacter(
  41469. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41470. {
  41471. front: {
  41472. height: math.unit(2.6, "meters"),
  41473. weight: math.unit(900, "kg"),
  41474. name: "Front",
  41475. image: {
  41476. source: "./media/characters/neesha/front.svg",
  41477. extra: 1803/1653,
  41478. bottom: 128/1931
  41479. }
  41480. },
  41481. },
  41482. [
  41483. {
  41484. name: "Normal",
  41485. height: math.unit(2.6, "meters"),
  41486. default: true
  41487. },
  41488. {
  41489. name: "Macro",
  41490. height: math.unit(50, "meters")
  41491. },
  41492. ]
  41493. ))
  41494. characterMakers.push(() => makeCharacter(
  41495. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41496. {
  41497. front: {
  41498. height: math.unit(5, "feet"),
  41499. weight: math.unit(185, "lb"),
  41500. name: "Front",
  41501. image: {
  41502. source: "./media/characters/kyera/front.svg",
  41503. extra: 1875/1790,
  41504. bottom: 96/1971
  41505. }
  41506. },
  41507. },
  41508. [
  41509. {
  41510. name: "Normal",
  41511. height: math.unit(5, "feet"),
  41512. default: true
  41513. },
  41514. ]
  41515. ))
  41516. characterMakers.push(() => makeCharacter(
  41517. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41518. {
  41519. front: {
  41520. height: math.unit(7 + 6/12, "feet"),
  41521. weight: math.unit(540, "lb"),
  41522. name: "Front",
  41523. image: {
  41524. source: "./media/characters/yuko/front.svg",
  41525. extra: 1282/1222,
  41526. bottom: 101/1383
  41527. }
  41528. },
  41529. frontClothed: {
  41530. height: math.unit(7 + 6/12, "feet"),
  41531. weight: math.unit(540, "lb"),
  41532. name: "Front (Clothed)",
  41533. image: {
  41534. source: "./media/characters/yuko/front-clothed.svg",
  41535. extra: 1282/1222,
  41536. bottom: 101/1383
  41537. }
  41538. },
  41539. },
  41540. [
  41541. {
  41542. name: "Normal",
  41543. height: math.unit(7 + 6/12, "feet"),
  41544. default: true
  41545. },
  41546. {
  41547. name: "Macro",
  41548. height: math.unit(26 + 9/12, "feet")
  41549. },
  41550. {
  41551. name: "Megamacro",
  41552. height: math.unit(300, "feet")
  41553. },
  41554. {
  41555. name: "Gigamacro",
  41556. height: math.unit(5000, "feet")
  41557. },
  41558. {
  41559. name: "Planetary",
  41560. height: math.unit(10000, "miles")
  41561. },
  41562. ]
  41563. ))
  41564. characterMakers.push(() => makeCharacter(
  41565. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41566. {
  41567. front: {
  41568. height: math.unit(8 + 2/12, "feet"),
  41569. weight: math.unit(600, "lb"),
  41570. name: "Front",
  41571. image: {
  41572. source: "./media/characters/deam-nitrel/front.svg",
  41573. extra: 1308/1234,
  41574. bottom: 125/1433
  41575. }
  41576. },
  41577. },
  41578. [
  41579. {
  41580. name: "Normal",
  41581. height: math.unit(8 + 2/12, "feet"),
  41582. default: true
  41583. },
  41584. ]
  41585. ))
  41586. characterMakers.push(() => makeCharacter(
  41587. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41588. {
  41589. front: {
  41590. height: math.unit(6.1, "feet"),
  41591. weight: math.unit(180, "lb"),
  41592. name: "Front",
  41593. image: {
  41594. source: "./media/characters/skyress/front.svg",
  41595. extra: 1045/915,
  41596. bottom: 28/1073
  41597. }
  41598. },
  41599. maw: {
  41600. height: math.unit(1, "feet"),
  41601. name: "Maw",
  41602. image: {
  41603. source: "./media/characters/skyress/maw.svg"
  41604. }
  41605. },
  41606. },
  41607. [
  41608. {
  41609. name: "Normal",
  41610. height: math.unit(6.1, "feet"),
  41611. default: true
  41612. },
  41613. {
  41614. name: "Macro",
  41615. height: math.unit(200, "feet")
  41616. },
  41617. ]
  41618. ))
  41619. characterMakers.push(() => makeCharacter(
  41620. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41621. {
  41622. front: {
  41623. height: math.unit(4 + 2/12, "feet"),
  41624. weight: math.unit(40, "kg"),
  41625. name: "Front",
  41626. image: {
  41627. source: "./media/characters/amethyst-jones/front.svg",
  41628. extra: 1220/1150,
  41629. bottom: 101/1321
  41630. }
  41631. },
  41632. },
  41633. [
  41634. {
  41635. name: "Normal",
  41636. height: math.unit(4 + 2/12, "feet"),
  41637. default: true
  41638. },
  41639. ]
  41640. ))
  41641. characterMakers.push(() => makeCharacter(
  41642. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41643. {
  41644. front: {
  41645. height: math.unit(1.7, "m"),
  41646. weight: math.unit(135, "lb"),
  41647. name: "Front",
  41648. image: {
  41649. source: "./media/characters/jade/front.svg",
  41650. extra: 1818/1767,
  41651. bottom: 32/1850
  41652. }
  41653. },
  41654. back: {
  41655. height: math.unit(1.7, "m"),
  41656. weight: math.unit(135, "lb"),
  41657. name: "Back",
  41658. image: {
  41659. source: "./media/characters/jade/back.svg",
  41660. extra: 1869/1809,
  41661. bottom: 35/1904
  41662. }
  41663. },
  41664. hand: {
  41665. height: math.unit(0.24, "m"),
  41666. name: "Hand",
  41667. image: {
  41668. source: "./media/characters/jade/hand.svg"
  41669. }
  41670. },
  41671. foot: {
  41672. height: math.unit(0.263, "m"),
  41673. name: "Foot",
  41674. image: {
  41675. source: "./media/characters/jade/foot.svg"
  41676. }
  41677. },
  41678. dick: {
  41679. height: math.unit(0.47, "m"),
  41680. name: "Dick",
  41681. image: {
  41682. source: "./media/characters/jade/dick.svg"
  41683. }
  41684. },
  41685. },
  41686. [
  41687. {
  41688. name: "Micro",
  41689. height: math.unit(22, "cm")
  41690. },
  41691. {
  41692. name: "Normal",
  41693. height: math.unit(1.7, "m"),
  41694. default: true
  41695. },
  41696. {
  41697. name: "Macro",
  41698. height: math.unit(152, "m")
  41699. },
  41700. ]
  41701. ))
  41702. characterMakers.push(() => makeCharacter(
  41703. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41704. {
  41705. front: {
  41706. height: math.unit(100, "miles"),
  41707. weight: math.unit(20000, "tons"),
  41708. name: "Front",
  41709. image: {
  41710. source: "./media/characters/cookie/front.svg",
  41711. extra: 1125/1070,
  41712. bottom: 30/1155
  41713. }
  41714. },
  41715. },
  41716. [
  41717. {
  41718. name: "Big",
  41719. height: math.unit(50, "feet")
  41720. },
  41721. {
  41722. name: "Macro",
  41723. height: math.unit(100, "miles"),
  41724. default: true
  41725. },
  41726. {
  41727. name: "Megamacro",
  41728. height: math.unit(90000, "miles")
  41729. },
  41730. ]
  41731. ))
  41732. characterMakers.push(() => makeCharacter(
  41733. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41734. {
  41735. front: {
  41736. height: math.unit(6, "feet"),
  41737. weight: math.unit(145, "lb"),
  41738. name: "Front",
  41739. image: {
  41740. source: "./media/characters/farzian/front.svg",
  41741. extra: 1902/1693,
  41742. bottom: 108/2010
  41743. }
  41744. },
  41745. },
  41746. [
  41747. {
  41748. name: "Macro",
  41749. height: math.unit(500, "feet"),
  41750. default: true
  41751. },
  41752. ]
  41753. ))
  41754. characterMakers.push(() => makeCharacter(
  41755. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41756. {
  41757. front: {
  41758. height: math.unit(3 + 6/12, "feet"),
  41759. weight: math.unit(50, "lb"),
  41760. name: "Front",
  41761. image: {
  41762. source: "./media/characters/kimberly-tilson/front.svg",
  41763. extra: 1400/1322,
  41764. bottom: 36/1436
  41765. }
  41766. },
  41767. back: {
  41768. height: math.unit(3 + 6/12, "feet"),
  41769. weight: math.unit(50, "lb"),
  41770. name: "Back",
  41771. image: {
  41772. source: "./media/characters/kimberly-tilson/back.svg",
  41773. extra: 1370/1307,
  41774. bottom: 20/1390
  41775. }
  41776. },
  41777. },
  41778. [
  41779. {
  41780. name: "Normal",
  41781. height: math.unit(3 + 6/12, "feet"),
  41782. default: true
  41783. },
  41784. ]
  41785. ))
  41786. characterMakers.push(() => makeCharacter(
  41787. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41788. {
  41789. front: {
  41790. height: math.unit(1148, "feet"),
  41791. weight: math.unit(34057, "lb"),
  41792. name: "Front",
  41793. image: {
  41794. source: "./media/characters/harthos/front.svg",
  41795. extra: 1391/1339,
  41796. bottom: 13/1404
  41797. }
  41798. },
  41799. },
  41800. [
  41801. {
  41802. name: "Macro",
  41803. height: math.unit(1148, "feet"),
  41804. default: true
  41805. },
  41806. ]
  41807. ))
  41808. characterMakers.push(() => makeCharacter(
  41809. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41810. {
  41811. front: {
  41812. height: math.unit(15, "feet"),
  41813. name: "Front",
  41814. image: {
  41815. source: "./media/characters/hypatia/front.svg",
  41816. extra: 1653/1591,
  41817. bottom: 79/1732
  41818. }
  41819. },
  41820. },
  41821. [
  41822. {
  41823. name: "Normal",
  41824. height: math.unit(15, "feet")
  41825. },
  41826. {
  41827. name: "Small",
  41828. height: math.unit(300, "feet")
  41829. },
  41830. {
  41831. name: "Macro",
  41832. height: math.unit(2500, "feet"),
  41833. default: true
  41834. },
  41835. {
  41836. name: "Mega Macro",
  41837. height: math.unit(1500, "miles")
  41838. },
  41839. {
  41840. name: "Giga Macro",
  41841. height: math.unit(1.5e6, "miles")
  41842. },
  41843. ]
  41844. ))
  41845. characterMakers.push(() => makeCharacter(
  41846. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41847. {
  41848. front: {
  41849. height: math.unit(6, "feet"),
  41850. weight: math.unit(200, "lb"),
  41851. name: "Front",
  41852. image: {
  41853. source: "./media/characters/wulver/front.svg",
  41854. extra: 1724/1632,
  41855. bottom: 130/1854
  41856. }
  41857. },
  41858. frontNsfw: {
  41859. height: math.unit(6, "feet"),
  41860. weight: math.unit(200, "lb"),
  41861. name: "Front (NSFW)",
  41862. image: {
  41863. source: "./media/characters/wulver/front-nsfw.svg",
  41864. extra: 1724/1632,
  41865. bottom: 130/1854
  41866. }
  41867. },
  41868. },
  41869. [
  41870. {
  41871. name: "Human-Sized",
  41872. height: math.unit(6, "feet")
  41873. },
  41874. {
  41875. name: "Normal",
  41876. height: math.unit(4, "meters"),
  41877. default: true
  41878. },
  41879. {
  41880. name: "Large",
  41881. height: math.unit(6, "m")
  41882. },
  41883. ]
  41884. ))
  41885. characterMakers.push(() => makeCharacter(
  41886. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41887. {
  41888. front: {
  41889. height: math.unit(7, "feet"),
  41890. name: "Front",
  41891. image: {
  41892. source: "./media/characters/maru/front.svg",
  41893. extra: 1595/1570,
  41894. bottom: 0/1595
  41895. }
  41896. },
  41897. },
  41898. [
  41899. {
  41900. name: "Normal",
  41901. height: math.unit(7, "feet"),
  41902. default: true
  41903. },
  41904. {
  41905. name: "Macro",
  41906. height: math.unit(700, "feet")
  41907. },
  41908. {
  41909. name: "Mega Macro",
  41910. height: math.unit(25, "miles")
  41911. },
  41912. ]
  41913. ))
  41914. characterMakers.push(() => makeCharacter(
  41915. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41916. {
  41917. front: {
  41918. height: math.unit(6, "feet"),
  41919. weight: math.unit(170, "lb"),
  41920. name: "Front",
  41921. image: {
  41922. source: "./media/characters/xenon/front.svg",
  41923. extra: 1376/1305,
  41924. bottom: 56/1432
  41925. }
  41926. },
  41927. back: {
  41928. height: math.unit(6, "feet"),
  41929. weight: math.unit(170, "lb"),
  41930. name: "Back",
  41931. image: {
  41932. source: "./media/characters/xenon/back.svg",
  41933. extra: 1328/1259,
  41934. bottom: 95/1423
  41935. }
  41936. },
  41937. maw: {
  41938. height: math.unit(0.52, "feet"),
  41939. name: "Maw",
  41940. image: {
  41941. source: "./media/characters/xenon/maw.svg"
  41942. }
  41943. },
  41944. handLeft: {
  41945. height: math.unit(0.82 * 169 / 153, "feet"),
  41946. name: "Hand (Left)",
  41947. image: {
  41948. source: "./media/characters/xenon/hand-left.svg"
  41949. }
  41950. },
  41951. handRight: {
  41952. height: math.unit(0.82, "feet"),
  41953. name: "Hand (Right)",
  41954. image: {
  41955. source: "./media/characters/xenon/hand-right.svg"
  41956. }
  41957. },
  41958. footLeft: {
  41959. height: math.unit(1.13, "feet"),
  41960. name: "Foot (Left)",
  41961. image: {
  41962. source: "./media/characters/xenon/foot-left.svg"
  41963. }
  41964. },
  41965. footRight: {
  41966. height: math.unit(1.13 * 194 / 196, "feet"),
  41967. name: "Foot (Right)",
  41968. image: {
  41969. source: "./media/characters/xenon/foot-right.svg"
  41970. }
  41971. },
  41972. },
  41973. [
  41974. {
  41975. name: "Micro",
  41976. height: math.unit(0.8, "inches")
  41977. },
  41978. {
  41979. name: "Normal",
  41980. height: math.unit(6, "feet")
  41981. },
  41982. {
  41983. name: "Macro",
  41984. height: math.unit(50, "feet"),
  41985. default: true
  41986. },
  41987. {
  41988. name: "Macro+",
  41989. height: math.unit(250, "feet")
  41990. },
  41991. {
  41992. name: "Megamacro",
  41993. height: math.unit(1500, "feet")
  41994. },
  41995. ]
  41996. ))
  41997. characterMakers.push(() => makeCharacter(
  41998. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41999. {
  42000. front: {
  42001. height: math.unit(7 + 5/12, "feet"),
  42002. name: "Front",
  42003. image: {
  42004. source: "./media/characters/zane/front.svg",
  42005. extra: 1260/1203,
  42006. bottom: 94/1354
  42007. }
  42008. },
  42009. back: {
  42010. height: math.unit(5.05, "feet"),
  42011. name: "Back",
  42012. image: {
  42013. source: "./media/characters/zane/back.svg",
  42014. extra: 893/829,
  42015. bottom: 30/923
  42016. }
  42017. },
  42018. werewolf: {
  42019. height: math.unit(11, "feet"),
  42020. name: "Werewolf",
  42021. image: {
  42022. source: "./media/characters/zane/werewolf.svg",
  42023. extra: 1383/1323,
  42024. bottom: 89/1472
  42025. }
  42026. },
  42027. foot: {
  42028. height: math.unit(1.46, "feet"),
  42029. name: "Foot",
  42030. image: {
  42031. source: "./media/characters/zane/foot.svg"
  42032. }
  42033. },
  42034. footFront: {
  42035. height: math.unit(0.784, "feet"),
  42036. name: "Foot (Front)",
  42037. image: {
  42038. source: "./media/characters/zane/foot-front.svg"
  42039. }
  42040. },
  42041. dick: {
  42042. height: math.unit(1.95, "feet"),
  42043. name: "Dick",
  42044. image: {
  42045. source: "./media/characters/zane/dick.svg"
  42046. }
  42047. },
  42048. dickWerewolf: {
  42049. height: math.unit(3.77, "feet"),
  42050. name: "Dick (Werewolf)",
  42051. image: {
  42052. source: "./media/characters/zane/dick.svg"
  42053. }
  42054. },
  42055. },
  42056. [
  42057. {
  42058. name: "Normal",
  42059. height: math.unit(7 + 5/12, "feet"),
  42060. default: true
  42061. },
  42062. ]
  42063. ))
  42064. characterMakers.push(() => makeCharacter(
  42065. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42066. {
  42067. front: {
  42068. height: math.unit(6 + 2/12, "feet"),
  42069. weight: math.unit(284, "lb"),
  42070. name: "Front",
  42071. image: {
  42072. source: "./media/characters/benni-desparque/front.svg",
  42073. extra: 1353/1126,
  42074. bottom: 69/1422
  42075. }
  42076. },
  42077. },
  42078. [
  42079. {
  42080. name: "Civilian",
  42081. height: math.unit(6 + 2/12, "feet")
  42082. },
  42083. {
  42084. name: "Normal",
  42085. height: math.unit(98, "feet"),
  42086. default: true
  42087. },
  42088. {
  42089. name: "Kaiju Fighter",
  42090. height: math.unit(268, "feet")
  42091. },
  42092. ]
  42093. ))
  42094. characterMakers.push(() => makeCharacter(
  42095. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42096. {
  42097. front: {
  42098. height: math.unit(5, "feet"),
  42099. weight: math.unit(105, "lb"),
  42100. name: "Front",
  42101. image: {
  42102. source: "./media/characters/maxine/front.svg",
  42103. extra: 1386/1250,
  42104. bottom: 71/1457
  42105. }
  42106. },
  42107. },
  42108. [
  42109. {
  42110. name: "Normal",
  42111. height: math.unit(5, "feet"),
  42112. default: true
  42113. },
  42114. ]
  42115. ))
  42116. characterMakers.push(() => makeCharacter(
  42117. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42118. {
  42119. front: {
  42120. height: math.unit(11 + 7/12, "feet"),
  42121. weight: math.unit(9576, "lb"),
  42122. name: "Front",
  42123. image: {
  42124. source: "./media/characters/scaly/front.svg",
  42125. extra: 888/867,
  42126. bottom: 36/924
  42127. }
  42128. },
  42129. },
  42130. [
  42131. {
  42132. name: "Normal",
  42133. height: math.unit(11 + 7/12, "feet"),
  42134. default: true
  42135. },
  42136. ]
  42137. ))
  42138. characterMakers.push(() => makeCharacter(
  42139. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42140. {
  42141. front: {
  42142. height: math.unit(6 + 3/12, "feet"),
  42143. name: "Front",
  42144. image: {
  42145. source: "./media/characters/saelria/front.svg",
  42146. extra: 1243/1138,
  42147. bottom: 46/1289
  42148. }
  42149. },
  42150. },
  42151. [
  42152. {
  42153. name: "Micro",
  42154. height: math.unit(6, "inches"),
  42155. },
  42156. {
  42157. name: "Normal",
  42158. height: math.unit(6 + 3/12, "feet"),
  42159. default: true
  42160. },
  42161. {
  42162. name: "Macro",
  42163. height: math.unit(25, "feet")
  42164. },
  42165. ]
  42166. ))
  42167. characterMakers.push(() => makeCharacter(
  42168. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42169. {
  42170. front: {
  42171. height: math.unit(80, "meters"),
  42172. weight: math.unit(7000, "tonnes"),
  42173. name: "Front",
  42174. image: {
  42175. source: "./media/characters/tef/front.svg",
  42176. extra: 2036/1991,
  42177. bottom: 54/2090
  42178. }
  42179. },
  42180. back: {
  42181. height: math.unit(80, "meters"),
  42182. weight: math.unit(7000, "tonnes"),
  42183. name: "Back",
  42184. image: {
  42185. source: "./media/characters/tef/back.svg",
  42186. extra: 2036/1991,
  42187. bottom: 54/2090
  42188. }
  42189. },
  42190. },
  42191. [
  42192. {
  42193. name: "Macro",
  42194. height: math.unit(80, "meters"),
  42195. default: true
  42196. },
  42197. ]
  42198. ))
  42199. characterMakers.push(() => makeCharacter(
  42200. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42201. {
  42202. front: {
  42203. height: math.unit(13, "feet"),
  42204. weight: math.unit(6, "tons"),
  42205. name: "Front",
  42206. image: {
  42207. source: "./media/characters/rover/front.svg",
  42208. extra: 1233/1156,
  42209. bottom: 50/1283
  42210. }
  42211. },
  42212. back: {
  42213. height: math.unit(13, "feet"),
  42214. weight: math.unit(6, "tons"),
  42215. name: "Back",
  42216. image: {
  42217. source: "./media/characters/rover/back.svg",
  42218. extra: 1327/1258,
  42219. bottom: 39/1366
  42220. }
  42221. },
  42222. },
  42223. [
  42224. {
  42225. name: "Normal",
  42226. height: math.unit(13, "feet"),
  42227. default: true
  42228. },
  42229. {
  42230. name: "Macro",
  42231. height: math.unit(1300, "feet")
  42232. },
  42233. {
  42234. name: "Megamacro",
  42235. height: math.unit(1300, "miles")
  42236. },
  42237. {
  42238. name: "Gigamacro",
  42239. height: math.unit(1300000, "miles")
  42240. },
  42241. ]
  42242. ))
  42243. characterMakers.push(() => makeCharacter(
  42244. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42245. {
  42246. front: {
  42247. height: math.unit(6, "feet"),
  42248. weight: math.unit(150, "lb"),
  42249. name: "Front",
  42250. image: {
  42251. source: "./media/characters/ariz/front.svg",
  42252. extra: 1401/1346,
  42253. bottom: 5/1406
  42254. }
  42255. },
  42256. },
  42257. [
  42258. {
  42259. name: "Normal",
  42260. height: math.unit(10, "feet"),
  42261. default: true
  42262. },
  42263. ]
  42264. ))
  42265. characterMakers.push(() => makeCharacter(
  42266. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42267. {
  42268. front: {
  42269. height: math.unit(6, "feet"),
  42270. weight: math.unit(140, "lb"),
  42271. name: "Front",
  42272. image: {
  42273. source: "./media/characters/sigrun/front.svg",
  42274. extra: 1418/1359,
  42275. bottom: 27/1445
  42276. }
  42277. },
  42278. },
  42279. [
  42280. {
  42281. name: "Macro",
  42282. height: math.unit(35, "feet"),
  42283. default: true
  42284. },
  42285. ]
  42286. ))
  42287. characterMakers.push(() => makeCharacter(
  42288. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42289. {
  42290. front: {
  42291. height: math.unit(6, "feet"),
  42292. weight: math.unit(150, "lb"),
  42293. name: "Front",
  42294. image: {
  42295. source: "./media/characters/numin/front.svg",
  42296. extra: 1433/1388,
  42297. bottom: 12/1445
  42298. }
  42299. },
  42300. },
  42301. [
  42302. {
  42303. name: "Macro",
  42304. height: math.unit(21.5, "km"),
  42305. default: true
  42306. },
  42307. ]
  42308. ))
  42309. characterMakers.push(() => makeCharacter(
  42310. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42311. {
  42312. front: {
  42313. height: math.unit(6, "feet"),
  42314. weight: math.unit(463, "lb"),
  42315. name: "Front",
  42316. image: {
  42317. source: "./media/characters/melwa/front.svg",
  42318. extra: 1307/1248,
  42319. bottom: 93/1400
  42320. }
  42321. },
  42322. },
  42323. [
  42324. {
  42325. name: "Macro",
  42326. height: math.unit(50, "meters"),
  42327. default: true
  42328. },
  42329. ]
  42330. ))
  42331. characterMakers.push(() => makeCharacter(
  42332. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42333. {
  42334. front: {
  42335. height: math.unit(325, "feet"),
  42336. name: "Front",
  42337. image: {
  42338. source: "./media/characters/zorkaiju/front.svg",
  42339. extra: 1955/1814,
  42340. bottom: 40/1995
  42341. }
  42342. },
  42343. frontExtended: {
  42344. height: math.unit(325, "feet"),
  42345. name: "Front (Extended)",
  42346. image: {
  42347. source: "./media/characters/zorkaiju/front-extended.svg",
  42348. extra: 1955/1814,
  42349. bottom: 40/1995
  42350. }
  42351. },
  42352. side: {
  42353. height: math.unit(325, "feet"),
  42354. name: "Side",
  42355. image: {
  42356. source: "./media/characters/zorkaiju/side.svg",
  42357. extra: 1495/1396,
  42358. bottom: 17/1512
  42359. }
  42360. },
  42361. sideExtended: {
  42362. height: math.unit(325, "feet"),
  42363. name: "Side (Extended)",
  42364. image: {
  42365. source: "./media/characters/zorkaiju/side-extended.svg",
  42366. extra: 1495/1396,
  42367. bottom: 17/1512
  42368. }
  42369. },
  42370. back: {
  42371. height: math.unit(325, "feet"),
  42372. name: "Back",
  42373. image: {
  42374. source: "./media/characters/zorkaiju/back.svg",
  42375. extra: 1959/1821,
  42376. bottom: 31/1990
  42377. }
  42378. },
  42379. backExtended: {
  42380. height: math.unit(325, "feet"),
  42381. name: "Back (Extended)",
  42382. image: {
  42383. source: "./media/characters/zorkaiju/back-extended.svg",
  42384. extra: 1959/1821,
  42385. bottom: 31/1990
  42386. }
  42387. },
  42388. hand: {
  42389. height: math.unit(58.4, "feet"),
  42390. name: "Hand",
  42391. image: {
  42392. source: "./media/characters/zorkaiju/hand.svg"
  42393. }
  42394. },
  42395. handExtended: {
  42396. height: math.unit(61.4, "feet"),
  42397. name: "Hand (Extended)",
  42398. image: {
  42399. source: "./media/characters/zorkaiju/hand-extended.svg"
  42400. }
  42401. },
  42402. foot: {
  42403. height: math.unit(95, "feet"),
  42404. name: "Foot",
  42405. image: {
  42406. source: "./media/characters/zorkaiju/foot.svg"
  42407. }
  42408. },
  42409. leftArm: {
  42410. height: math.unit(59, "feet"),
  42411. name: "Left Arm",
  42412. image: {
  42413. source: "./media/characters/zorkaiju/left-arm.svg"
  42414. }
  42415. },
  42416. rightArm: {
  42417. height: math.unit(59, "feet"),
  42418. name: "Right Arm",
  42419. image: {
  42420. source: "./media/characters/zorkaiju/right-arm.svg"
  42421. }
  42422. },
  42423. leftArmExtended: {
  42424. height: math.unit(59 * 1.033546, "feet"),
  42425. name: "Left Arm (Extended)",
  42426. image: {
  42427. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42428. }
  42429. },
  42430. rightArmExtended: {
  42431. height: math.unit(59 * 1.0496, "feet"),
  42432. name: "Right Arm (Extended)",
  42433. image: {
  42434. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42435. }
  42436. },
  42437. tail: {
  42438. height: math.unit(104, "feet"),
  42439. name: "Tail",
  42440. image: {
  42441. source: "./media/characters/zorkaiju/tail.svg"
  42442. }
  42443. },
  42444. tailExtended: {
  42445. height: math.unit(104, "feet"),
  42446. name: "Tail (Extended)",
  42447. image: {
  42448. source: "./media/characters/zorkaiju/tail-extended.svg"
  42449. }
  42450. },
  42451. tailBottom: {
  42452. height: math.unit(104, "feet"),
  42453. name: "Tail Bottom",
  42454. image: {
  42455. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42456. }
  42457. },
  42458. crystal: {
  42459. height: math.unit(27.54, "feet"),
  42460. name: "Crystal",
  42461. image: {
  42462. source: "./media/characters/zorkaiju/crystal.svg"
  42463. }
  42464. },
  42465. },
  42466. [
  42467. {
  42468. name: "Kaiju",
  42469. height: math.unit(325, "feet"),
  42470. default: true
  42471. },
  42472. ]
  42473. ))
  42474. characterMakers.push(() => makeCharacter(
  42475. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42476. {
  42477. front: {
  42478. height: math.unit(6 + 1/12, "feet"),
  42479. weight: math.unit(115, "lb"),
  42480. name: "Front",
  42481. image: {
  42482. source: "./media/characters/bailey-belfry/front.svg",
  42483. extra: 1240/1121,
  42484. bottom: 101/1341
  42485. }
  42486. },
  42487. },
  42488. [
  42489. {
  42490. name: "Normal",
  42491. height: math.unit(6 + 1/12, "feet"),
  42492. default: true
  42493. },
  42494. ]
  42495. ))
  42496. characterMakers.push(() => makeCharacter(
  42497. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42498. {
  42499. side: {
  42500. height: math.unit(4, "meters"),
  42501. weight: math.unit(250, "kg"),
  42502. name: "Side",
  42503. image: {
  42504. source: "./media/characters/blacky/side.svg",
  42505. extra: 1027/919,
  42506. bottom: 43/1070
  42507. }
  42508. },
  42509. maw: {
  42510. height: math.unit(1, "meters"),
  42511. name: "Maw",
  42512. image: {
  42513. source: "./media/characters/blacky/maw.svg"
  42514. }
  42515. },
  42516. paw: {
  42517. height: math.unit(1, "meters"),
  42518. name: "Paw",
  42519. image: {
  42520. source: "./media/characters/blacky/paw.svg"
  42521. }
  42522. },
  42523. },
  42524. [
  42525. {
  42526. name: "Normal",
  42527. height: math.unit(4, "meters"),
  42528. default: true
  42529. },
  42530. ]
  42531. ))
  42532. characterMakers.push(() => makeCharacter(
  42533. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42534. {
  42535. front: {
  42536. height: math.unit(170, "cm"),
  42537. weight: math.unit(66, "kg"),
  42538. name: "Front",
  42539. image: {
  42540. source: "./media/characters/thux-ei/front.svg",
  42541. extra: 1109/1011,
  42542. bottom: 8/1117
  42543. }
  42544. },
  42545. },
  42546. [
  42547. {
  42548. name: "Normal",
  42549. height: math.unit(170, "cm"),
  42550. default: true
  42551. },
  42552. ]
  42553. ))
  42554. characterMakers.push(() => makeCharacter(
  42555. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42556. {
  42557. front: {
  42558. height: math.unit(5, "feet"),
  42559. weight: math.unit(120, "lb"),
  42560. name: "Front",
  42561. image: {
  42562. source: "./media/characters/roxanne-voltaire/front.svg",
  42563. extra: 1901/1779,
  42564. bottom: 53/1954
  42565. }
  42566. },
  42567. },
  42568. [
  42569. {
  42570. name: "Normal",
  42571. height: math.unit(5, "feet"),
  42572. default: true
  42573. },
  42574. {
  42575. name: "Giant",
  42576. height: math.unit(50, "feet")
  42577. },
  42578. {
  42579. name: "Titan",
  42580. height: math.unit(500, "feet")
  42581. },
  42582. {
  42583. name: "Macro",
  42584. height: math.unit(5000, "feet")
  42585. },
  42586. {
  42587. name: "Megamacro",
  42588. height: math.unit(50000, "feet")
  42589. },
  42590. {
  42591. name: "Gigamacro",
  42592. height: math.unit(500000, "feet")
  42593. },
  42594. {
  42595. name: "Teramacro",
  42596. height: math.unit(5e6, "feet")
  42597. },
  42598. ]
  42599. ))
  42600. characterMakers.push(() => makeCharacter(
  42601. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42602. {
  42603. front: {
  42604. height: math.unit(6 + 2/12, "feet"),
  42605. name: "Front",
  42606. image: {
  42607. source: "./media/characters/squeaks/front.svg",
  42608. extra: 1823/1768,
  42609. bottom: 138/1961
  42610. }
  42611. },
  42612. },
  42613. [
  42614. {
  42615. name: "Micro",
  42616. height: math.unit(0.5, "inches")
  42617. },
  42618. {
  42619. name: "Normal",
  42620. height: math.unit(6 + 2/12, "feet"),
  42621. default: true
  42622. },
  42623. {
  42624. name: "Macro",
  42625. height: math.unit(600, "feet")
  42626. },
  42627. ]
  42628. ))
  42629. characterMakers.push(() => makeCharacter(
  42630. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42631. {
  42632. front: {
  42633. height: math.unit(1.72, "meters"),
  42634. name: "Front",
  42635. image: {
  42636. source: "./media/characters/archinger/front.svg",
  42637. extra: 1861/1675,
  42638. bottom: 125/1986
  42639. }
  42640. },
  42641. back: {
  42642. height: math.unit(1.72, "meters"),
  42643. name: "Back",
  42644. image: {
  42645. source: "./media/characters/archinger/back.svg",
  42646. extra: 1844/1701,
  42647. bottom: 104/1948
  42648. }
  42649. },
  42650. cock: {
  42651. height: math.unit(0.59, "feet"),
  42652. name: "Cock",
  42653. image: {
  42654. source: "./media/characters/archinger/cock.svg"
  42655. }
  42656. },
  42657. },
  42658. [
  42659. {
  42660. name: "Normal",
  42661. height: math.unit(1.72, "meters"),
  42662. default: true
  42663. },
  42664. {
  42665. name: "Macro",
  42666. height: math.unit(84, "meters")
  42667. },
  42668. {
  42669. name: "Macro+",
  42670. height: math.unit(112, "meters")
  42671. },
  42672. {
  42673. name: "Macro++",
  42674. height: math.unit(960, "meters")
  42675. },
  42676. {
  42677. name: "Macro+++",
  42678. height: math.unit(4, "km")
  42679. },
  42680. {
  42681. name: "Macro++++",
  42682. height: math.unit(48, "km")
  42683. },
  42684. {
  42685. name: "Macro+++++",
  42686. height: math.unit(4500, "km")
  42687. },
  42688. ]
  42689. ))
  42690. characterMakers.push(() => makeCharacter(
  42691. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42692. {
  42693. front: {
  42694. height: math.unit(5 + 5/12, "feet"),
  42695. name: "Front",
  42696. image: {
  42697. source: "./media/characters/alsnapz/front.svg",
  42698. extra: 1157/1065,
  42699. bottom: 42/1199
  42700. }
  42701. },
  42702. },
  42703. [
  42704. {
  42705. name: "Normal",
  42706. height: math.unit(5 + 5/12, "feet"),
  42707. default: true
  42708. },
  42709. ]
  42710. ))
  42711. characterMakers.push(() => makeCharacter(
  42712. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42713. {
  42714. side: {
  42715. height: math.unit(3.2, "earths"),
  42716. name: "Side",
  42717. image: {
  42718. source: "./media/characters/mag/side.svg",
  42719. extra: 1331/1008,
  42720. bottom: 52/1383
  42721. }
  42722. },
  42723. wing: {
  42724. height: math.unit(1.94, "earths"),
  42725. name: "Wing",
  42726. image: {
  42727. source: "./media/characters/mag/wing.svg"
  42728. }
  42729. },
  42730. dick: {
  42731. height: math.unit(1.8, "earths"),
  42732. name: "Dick",
  42733. image: {
  42734. source: "./media/characters/mag/dick.svg"
  42735. }
  42736. },
  42737. ass: {
  42738. height: math.unit(1.33, "earths"),
  42739. name: "Ass",
  42740. image: {
  42741. source: "./media/characters/mag/ass.svg"
  42742. }
  42743. },
  42744. head: {
  42745. height: math.unit(1.1, "earths"),
  42746. name: "Head",
  42747. image: {
  42748. source: "./media/characters/mag/head.svg"
  42749. }
  42750. },
  42751. maw: {
  42752. height: math.unit(1.62, "earths"),
  42753. name: "Maw",
  42754. image: {
  42755. source: "./media/characters/mag/maw.svg"
  42756. }
  42757. },
  42758. },
  42759. [
  42760. {
  42761. name: "Small",
  42762. height: math.unit(162, "feet")
  42763. },
  42764. {
  42765. name: "Normal",
  42766. height: math.unit(3.2, "earths"),
  42767. default: true
  42768. },
  42769. ]
  42770. ))
  42771. characterMakers.push(() => makeCharacter(
  42772. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42773. {
  42774. front: {
  42775. height: math.unit(512, "feet"),
  42776. weight: math.unit(63509, "tonnes"),
  42777. name: "Front",
  42778. image: {
  42779. source: "./media/characters/vorrel-harroc/front.svg",
  42780. extra: 1075/1063,
  42781. bottom: 62/1137
  42782. }
  42783. },
  42784. },
  42785. [
  42786. {
  42787. name: "Normal",
  42788. height: math.unit(10, "feet")
  42789. },
  42790. {
  42791. name: "Macro",
  42792. height: math.unit(512, "feet"),
  42793. default: true
  42794. },
  42795. {
  42796. name: "Megamacro",
  42797. height: math.unit(256, "miles")
  42798. },
  42799. {
  42800. name: "Gigamacro",
  42801. height: math.unit(4096, "miles")
  42802. },
  42803. ]
  42804. ))
  42805. characterMakers.push(() => makeCharacter(
  42806. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42807. {
  42808. side: {
  42809. height: math.unit(50, "feet"),
  42810. name: "Side",
  42811. image: {
  42812. source: "./media/characters/froimar/side.svg",
  42813. extra: 855/638,
  42814. bottom: 99/954
  42815. }
  42816. },
  42817. },
  42818. [
  42819. {
  42820. name: "Macro",
  42821. height: math.unit(50, "feet"),
  42822. default: true
  42823. },
  42824. ]
  42825. ))
  42826. characterMakers.push(() => makeCharacter(
  42827. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42828. {
  42829. front: {
  42830. height: math.unit(210, "miles"),
  42831. name: "Front",
  42832. image: {
  42833. source: "./media/characters/timothy/front.svg",
  42834. extra: 1007/943,
  42835. bottom: 62/1069
  42836. }
  42837. },
  42838. frontSkirt: {
  42839. height: math.unit(210, "miles"),
  42840. name: "Front (Skirt)",
  42841. image: {
  42842. source: "./media/characters/timothy/front-skirt.svg",
  42843. extra: 1007/943,
  42844. bottom: 62/1069
  42845. }
  42846. },
  42847. frontCoat: {
  42848. height: math.unit(210, "miles"),
  42849. name: "Front (Coat)",
  42850. image: {
  42851. source: "./media/characters/timothy/front-coat.svg",
  42852. extra: 1007/943,
  42853. bottom: 62/1069
  42854. }
  42855. },
  42856. },
  42857. [
  42858. {
  42859. name: "Macro",
  42860. height: math.unit(210, "miles"),
  42861. default: true
  42862. },
  42863. {
  42864. name: "Megamacro",
  42865. height: math.unit(210000, "miles")
  42866. },
  42867. ]
  42868. ))
  42869. characterMakers.push(() => makeCharacter(
  42870. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42871. {
  42872. front: {
  42873. height: math.unit(188, "feet"),
  42874. name: "Front",
  42875. image: {
  42876. source: "./media/characters/pyotr/front.svg",
  42877. extra: 1912/1826,
  42878. bottom: 18/1930
  42879. }
  42880. },
  42881. },
  42882. [
  42883. {
  42884. name: "Macro",
  42885. height: math.unit(188, "feet"),
  42886. default: true
  42887. },
  42888. {
  42889. name: "Megamacro",
  42890. height: math.unit(8, "miles")
  42891. },
  42892. ]
  42893. ))
  42894. characterMakers.push(() => makeCharacter(
  42895. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42896. {
  42897. side: {
  42898. height: math.unit(10, "feet"),
  42899. weight: math.unit(4500, "lb"),
  42900. name: "Side",
  42901. image: {
  42902. source: "./media/characters/ackart/side.svg",
  42903. extra: 1776/1668,
  42904. bottom: 116/1892
  42905. }
  42906. },
  42907. },
  42908. [
  42909. {
  42910. name: "Normal",
  42911. height: math.unit(10, "feet"),
  42912. default: true
  42913. },
  42914. ]
  42915. ))
  42916. characterMakers.push(() => makeCharacter(
  42917. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42918. {
  42919. side: {
  42920. height: math.unit(21, "feet"),
  42921. name: "Side",
  42922. image: {
  42923. source: "./media/characters/nolow/side.svg",
  42924. extra: 1484/1434,
  42925. bottom: 85/1569
  42926. }
  42927. },
  42928. sideErect: {
  42929. height: math.unit(21, "feet"),
  42930. name: "Side-erect",
  42931. image: {
  42932. source: "./media/characters/nolow/side-erect.svg",
  42933. extra: 1484/1434,
  42934. bottom: 85/1569
  42935. }
  42936. },
  42937. },
  42938. [
  42939. {
  42940. name: "Regular",
  42941. height: math.unit(12, "feet")
  42942. },
  42943. {
  42944. name: "Big Chee",
  42945. height: math.unit(21, "feet"),
  42946. default: true
  42947. },
  42948. ]
  42949. ))
  42950. characterMakers.push(() => makeCharacter(
  42951. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42952. {
  42953. front: {
  42954. height: math.unit(7, "feet"),
  42955. weight: math.unit(250, "lb"),
  42956. name: "Front",
  42957. image: {
  42958. source: "./media/characters/nines/front.svg",
  42959. extra: 1741/1607,
  42960. bottom: 41/1782
  42961. }
  42962. },
  42963. side: {
  42964. height: math.unit(7, "feet"),
  42965. weight: math.unit(250, "lb"),
  42966. name: "Side",
  42967. image: {
  42968. source: "./media/characters/nines/side.svg",
  42969. extra: 1854/1735,
  42970. bottom: 93/1947
  42971. }
  42972. },
  42973. back: {
  42974. height: math.unit(7, "feet"),
  42975. weight: math.unit(250, "lb"),
  42976. name: "Back",
  42977. image: {
  42978. source: "./media/characters/nines/back.svg",
  42979. extra: 1748/1615,
  42980. bottom: 20/1768
  42981. }
  42982. },
  42983. },
  42984. [
  42985. {
  42986. name: "Megamacro",
  42987. height: math.unit(99, "km"),
  42988. default: true
  42989. },
  42990. ]
  42991. ))
  42992. characterMakers.push(() => makeCharacter(
  42993. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42994. {
  42995. front: {
  42996. height: math.unit(5 + 10/12, "feet"),
  42997. weight: math.unit(210, "lb"),
  42998. name: "Front",
  42999. image: {
  43000. source: "./media/characters/zenith/front.svg",
  43001. extra: 1531/1452,
  43002. bottom: 198/1729
  43003. }
  43004. },
  43005. back: {
  43006. height: math.unit(5 + 10/12, "feet"),
  43007. weight: math.unit(210, "lb"),
  43008. name: "Back",
  43009. image: {
  43010. source: "./media/characters/zenith/back.svg",
  43011. extra: 1571/1487,
  43012. bottom: 75/1646
  43013. }
  43014. },
  43015. },
  43016. [
  43017. {
  43018. name: "Normal",
  43019. height: math.unit(5 + 10/12, "feet"),
  43020. default: true
  43021. }
  43022. ]
  43023. ))
  43024. characterMakers.push(() => makeCharacter(
  43025. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43026. {
  43027. front: {
  43028. height: math.unit(4, "feet"),
  43029. weight: math.unit(60, "lb"),
  43030. name: "Front",
  43031. image: {
  43032. source: "./media/characters/jasper/front.svg",
  43033. extra: 1450/1379,
  43034. bottom: 19/1469
  43035. }
  43036. },
  43037. },
  43038. [
  43039. {
  43040. name: "Normal",
  43041. height: math.unit(4, "feet"),
  43042. default: true
  43043. },
  43044. ]
  43045. ))
  43046. characterMakers.push(() => makeCharacter(
  43047. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43048. {
  43049. front: {
  43050. height: math.unit(6 + 5/12, "feet"),
  43051. weight: math.unit(290, "lb"),
  43052. name: "Front",
  43053. image: {
  43054. source: "./media/characters/tiberius-thyben/front.svg",
  43055. extra: 757/739,
  43056. bottom: 39/796
  43057. }
  43058. },
  43059. },
  43060. [
  43061. {
  43062. name: "Micro",
  43063. height: math.unit(1.5, "inches")
  43064. },
  43065. {
  43066. name: "Normal",
  43067. height: math.unit(6 + 5/12, "feet"),
  43068. default: true
  43069. },
  43070. {
  43071. name: "Macro",
  43072. height: math.unit(300, "feet")
  43073. },
  43074. ]
  43075. ))
  43076. characterMakers.push(() => makeCharacter(
  43077. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43078. {
  43079. front: {
  43080. height: math.unit(5 + 6/12, "feet"),
  43081. weight: math.unit(60, "kg"),
  43082. name: "Front",
  43083. image: {
  43084. source: "./media/characters/sabre/front.svg",
  43085. extra: 738/671,
  43086. bottom: 27/765
  43087. }
  43088. },
  43089. },
  43090. [
  43091. {
  43092. name: "Teeny",
  43093. height: math.unit(2, "inches")
  43094. },
  43095. {
  43096. name: "Smol",
  43097. height: math.unit(8, "inches")
  43098. },
  43099. {
  43100. name: "Normal",
  43101. height: math.unit(5 + 6/12, "feet"),
  43102. default: true
  43103. },
  43104. {
  43105. name: "Mini-Macro",
  43106. height: math.unit(15, "feet")
  43107. },
  43108. {
  43109. name: "Macro",
  43110. height: math.unit(50, "feet")
  43111. },
  43112. ]
  43113. ))
  43114. characterMakers.push(() => makeCharacter(
  43115. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43116. {
  43117. front: {
  43118. height: math.unit(6 + 4/12, "feet"),
  43119. weight: math.unit(170, "lb"),
  43120. name: "Front",
  43121. image: {
  43122. source: "./media/characters/charlie/front.svg",
  43123. extra: 1348/1228,
  43124. bottom: 15/1363
  43125. }
  43126. },
  43127. },
  43128. [
  43129. {
  43130. name: "Macro",
  43131. height: math.unit(1700, "meters"),
  43132. default: true
  43133. },
  43134. {
  43135. name: "MegaMacro",
  43136. height: math.unit(20400, "meters")
  43137. },
  43138. ]
  43139. ))
  43140. characterMakers.push(() => makeCharacter(
  43141. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43142. {
  43143. front: {
  43144. height: math.unit(6 + 3/12, "feet"),
  43145. weight: math.unit(185, "lb"),
  43146. name: "Front",
  43147. image: {
  43148. source: "./media/characters/susan-grant/front.svg",
  43149. extra: 1351/1327,
  43150. bottom: 26/1377
  43151. }
  43152. },
  43153. },
  43154. [
  43155. {
  43156. name: "Normal",
  43157. height: math.unit(6 + 3/12, "feet"),
  43158. default: true
  43159. },
  43160. {
  43161. name: "Macro",
  43162. height: math.unit(225, "feet")
  43163. },
  43164. {
  43165. name: "Macro+",
  43166. height: math.unit(900, "feet")
  43167. },
  43168. {
  43169. name: "MegaMacro",
  43170. height: math.unit(14400, "feet")
  43171. },
  43172. ]
  43173. ))
  43174. characterMakers.push(() => makeCharacter(
  43175. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43176. {
  43177. front: {
  43178. height: math.unit(5 + 4/12, "feet"),
  43179. weight: math.unit(110, "lb"),
  43180. name: "Front",
  43181. image: {
  43182. source: "./media/characters/axel-isanov/front.svg",
  43183. extra: 1096/1065,
  43184. bottom: 13/1109
  43185. }
  43186. },
  43187. },
  43188. [
  43189. {
  43190. name: "Normal",
  43191. height: math.unit(5 + 4/12, "feet"),
  43192. default: true
  43193. },
  43194. ]
  43195. ))
  43196. characterMakers.push(() => makeCharacter(
  43197. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43198. {
  43199. front: {
  43200. height: math.unit(9, "feet"),
  43201. weight: math.unit(467, "lb"),
  43202. name: "Front",
  43203. image: {
  43204. source: "./media/characters/necahual/front.svg",
  43205. extra: 920/873,
  43206. bottom: 26/946
  43207. }
  43208. },
  43209. back: {
  43210. height: math.unit(9, "feet"),
  43211. weight: math.unit(467, "lb"),
  43212. name: "Back",
  43213. image: {
  43214. source: "./media/characters/necahual/back.svg",
  43215. extra: 930/884,
  43216. bottom: 16/946
  43217. }
  43218. },
  43219. frontUnderwear: {
  43220. height: math.unit(9, "feet"),
  43221. weight: math.unit(467, "lb"),
  43222. name: "Front (Underwear)",
  43223. image: {
  43224. source: "./media/characters/necahual/front-underwear.svg",
  43225. extra: 920/873,
  43226. bottom: 26/946
  43227. }
  43228. },
  43229. frontDressed: {
  43230. height: math.unit(9, "feet"),
  43231. weight: math.unit(467, "lb"),
  43232. name: "Front (Dressed)",
  43233. image: {
  43234. source: "./media/characters/necahual/front-dressed.svg",
  43235. extra: 920/873,
  43236. bottom: 26/946
  43237. }
  43238. },
  43239. },
  43240. [
  43241. {
  43242. name: "Comprsesed",
  43243. height: math.unit(9, "feet")
  43244. },
  43245. {
  43246. name: "Natural",
  43247. height: math.unit(15, "feet"),
  43248. default: true
  43249. },
  43250. {
  43251. name: "Boosted",
  43252. height: math.unit(50, "feet")
  43253. },
  43254. {
  43255. name: "Boosted+",
  43256. height: math.unit(150, "feet")
  43257. },
  43258. {
  43259. name: "Max",
  43260. height: math.unit(500, "feet")
  43261. },
  43262. ]
  43263. ))
  43264. characterMakers.push(() => makeCharacter(
  43265. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43266. {
  43267. front: {
  43268. height: math.unit(22 + 1/12, "feet"),
  43269. weight: math.unit(3200, "lb"),
  43270. name: "Front",
  43271. image: {
  43272. source: "./media/characters/theo-acacia/front.svg",
  43273. extra: 1796/1741,
  43274. bottom: 83/1879
  43275. }
  43276. },
  43277. frontUnderwear: {
  43278. height: math.unit(22 + 1/12, "feet"),
  43279. weight: math.unit(3200, "lb"),
  43280. name: "Front (Underwear)",
  43281. image: {
  43282. source: "./media/characters/theo-acacia/front-underwear.svg",
  43283. extra: 1796/1741,
  43284. bottom: 83/1879
  43285. }
  43286. },
  43287. frontNude: {
  43288. height: math.unit(22 + 1/12, "feet"),
  43289. weight: math.unit(3200, "lb"),
  43290. name: "Front (Nude)",
  43291. image: {
  43292. source: "./media/characters/theo-acacia/front-nude.svg",
  43293. extra: 1796/1741,
  43294. bottom: 83/1879
  43295. }
  43296. },
  43297. },
  43298. [
  43299. {
  43300. name: "Normal",
  43301. height: math.unit(22 + 1/12, "feet"),
  43302. default: true
  43303. },
  43304. ]
  43305. ))
  43306. characterMakers.push(() => makeCharacter(
  43307. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43308. {
  43309. front: {
  43310. height: math.unit(20, "feet"),
  43311. name: "Front",
  43312. image: {
  43313. source: "./media/characters/astra/front.svg",
  43314. extra: 1850/1714,
  43315. bottom: 106/1956
  43316. }
  43317. },
  43318. frontUndressed: {
  43319. height: math.unit(20, "feet"),
  43320. name: "Front (Undressed)",
  43321. image: {
  43322. source: "./media/characters/astra/front-undressed.svg",
  43323. extra: 1926/1749,
  43324. bottom: 0/1926
  43325. }
  43326. },
  43327. hand: {
  43328. height: math.unit(1.53, "feet"),
  43329. name: "Hand",
  43330. image: {
  43331. source: "./media/characters/astra/hand.svg"
  43332. }
  43333. },
  43334. paw: {
  43335. height: math.unit(1.53, "feet"),
  43336. name: "Paw",
  43337. image: {
  43338. source: "./media/characters/astra/paw.svg"
  43339. }
  43340. },
  43341. },
  43342. [
  43343. {
  43344. name: "Smallest",
  43345. height: math.unit(20, "feet")
  43346. },
  43347. {
  43348. name: "Normal",
  43349. height: math.unit(1e9, "miles"),
  43350. default: true
  43351. },
  43352. {
  43353. name: "Larger",
  43354. height: math.unit(5, "multiverses")
  43355. },
  43356. {
  43357. name: "Largest",
  43358. height: math.unit(1e9, "multiverses")
  43359. },
  43360. ]
  43361. ))
  43362. characterMakers.push(() => makeCharacter(
  43363. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43364. {
  43365. front: {
  43366. height: math.unit(8, "feet"),
  43367. name: "Front",
  43368. image: {
  43369. source: "./media/characters/breanna/front.svg",
  43370. extra: 1912/1632,
  43371. bottom: 33/1945
  43372. }
  43373. },
  43374. },
  43375. [
  43376. {
  43377. name: "Smallest",
  43378. height: math.unit(8, "feet")
  43379. },
  43380. {
  43381. name: "Normal",
  43382. height: math.unit(1, "mile"),
  43383. default: true
  43384. },
  43385. {
  43386. name: "Maximum",
  43387. height: math.unit(1500000000000, "lightyears")
  43388. },
  43389. ]
  43390. ))
  43391. characterMakers.push(() => makeCharacter(
  43392. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43393. {
  43394. front: {
  43395. height: math.unit(5 + 11/12, "feet"),
  43396. weight: math.unit(155, "lb"),
  43397. name: "Front",
  43398. image: {
  43399. source: "./media/characters/cai/front.svg",
  43400. extra: 1823/1702,
  43401. bottom: 32/1855
  43402. }
  43403. },
  43404. back: {
  43405. height: math.unit(5 + 11/12, "feet"),
  43406. weight: math.unit(155, "lb"),
  43407. name: "Back",
  43408. image: {
  43409. source: "./media/characters/cai/back.svg",
  43410. extra: 1809/1708,
  43411. bottom: 31/1840
  43412. }
  43413. },
  43414. },
  43415. [
  43416. {
  43417. name: "Normal",
  43418. height: math.unit(5 + 11/12, "feet"),
  43419. default: true
  43420. },
  43421. {
  43422. name: "Big",
  43423. height: math.unit(15, "feet")
  43424. },
  43425. {
  43426. name: "Macro",
  43427. height: math.unit(200, "feet")
  43428. },
  43429. ]
  43430. ))
  43431. characterMakers.push(() => makeCharacter(
  43432. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43433. {
  43434. front: {
  43435. height: math.unit(5 + 6/12, "feet"),
  43436. weight: math.unit(160, "lb"),
  43437. name: "Front",
  43438. image: {
  43439. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43440. extra: 1227/1174,
  43441. bottom: 37/1264
  43442. }
  43443. },
  43444. },
  43445. [
  43446. {
  43447. name: "Macro",
  43448. height: math.unit(444, "meters"),
  43449. default: true
  43450. },
  43451. ]
  43452. ))
  43453. characterMakers.push(() => makeCharacter(
  43454. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43455. {
  43456. front: {
  43457. height: math.unit(18 + 7/12, "feet"),
  43458. name: "Front",
  43459. image: {
  43460. source: "./media/characters/rex/front.svg",
  43461. extra: 1941/1807,
  43462. bottom: 66/2007
  43463. }
  43464. },
  43465. back: {
  43466. height: math.unit(18 + 7/12, "feet"),
  43467. name: "Back",
  43468. image: {
  43469. source: "./media/characters/rex/back.svg",
  43470. extra: 1937/1822,
  43471. bottom: 42/1979
  43472. }
  43473. },
  43474. boot: {
  43475. height: math.unit(3.45, "feet"),
  43476. name: "Boot",
  43477. image: {
  43478. source: "./media/characters/rex/boot.svg"
  43479. }
  43480. },
  43481. paw: {
  43482. height: math.unit(4.17, "feet"),
  43483. name: "Paw",
  43484. image: {
  43485. source: "./media/characters/rex/paw.svg"
  43486. }
  43487. },
  43488. head: {
  43489. height: math.unit(6.728, "feet"),
  43490. name: "Head",
  43491. image: {
  43492. source: "./media/characters/rex/head.svg"
  43493. }
  43494. },
  43495. },
  43496. [
  43497. {
  43498. name: "Nano",
  43499. height: math.unit(18 + 7/12, "feet")
  43500. },
  43501. {
  43502. name: "Micro",
  43503. height: math.unit(1.5, "megameters")
  43504. },
  43505. {
  43506. name: "Normal",
  43507. height: math.unit(440, "megameters"),
  43508. default: true
  43509. },
  43510. {
  43511. name: "Macro",
  43512. height: math.unit(2.5, "gigameters")
  43513. },
  43514. {
  43515. name: "Gigamacro",
  43516. height: math.unit(2, "galaxies")
  43517. },
  43518. ]
  43519. ))
  43520. characterMakers.push(() => makeCharacter(
  43521. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43522. {
  43523. side: {
  43524. height: math.unit(32, "feet"),
  43525. weight: math.unit(250000, "lb"),
  43526. name: "Side",
  43527. image: {
  43528. source: "./media/characters/silverwing/side.svg",
  43529. extra: 1100/1019,
  43530. bottom: 204/1304
  43531. }
  43532. },
  43533. },
  43534. [
  43535. {
  43536. name: "Normal",
  43537. height: math.unit(32, "feet"),
  43538. default: true
  43539. },
  43540. ]
  43541. ))
  43542. characterMakers.push(() => makeCharacter(
  43543. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43544. {
  43545. front: {
  43546. height: math.unit(6 + 6/12, "feet"),
  43547. weight: math.unit(350, "lb"),
  43548. name: "Front",
  43549. image: {
  43550. source: "./media/characters/tristan-hawthorne/front.svg",
  43551. extra: 1159/1124,
  43552. bottom: 37/1196
  43553. },
  43554. form: "labrador",
  43555. default: true
  43556. },
  43557. skunkFront: {
  43558. height: math.unit(4 + 6/12, "feet"),
  43559. weight: math.unit(120, "lb"),
  43560. name: "Front",
  43561. image: {
  43562. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43563. extra: 1609/1551,
  43564. bottom: 169/1778
  43565. },
  43566. form: "skunk",
  43567. default: true
  43568. },
  43569. },
  43570. [
  43571. {
  43572. name: "Normal",
  43573. height: math.unit(6 + 6/12, "feet"),
  43574. form: "labrador",
  43575. default: true
  43576. },
  43577. {
  43578. name: "Normal",
  43579. height: math.unit(4 + 6/12, "feet"),
  43580. form: "skunk",
  43581. default: true
  43582. },
  43583. ],
  43584. {
  43585. "labrador": {
  43586. name: "Labrador",
  43587. default: true
  43588. },
  43589. "skunk": {
  43590. name: "Skunk"
  43591. }
  43592. }
  43593. ))
  43594. characterMakers.push(() => makeCharacter(
  43595. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43596. {
  43597. front: {
  43598. height: math.unit(5 + 11/12, "feet"),
  43599. weight: math.unit(190, "lb"),
  43600. name: "Front",
  43601. image: {
  43602. source: "./media/characters/mizu/front.svg",
  43603. extra: 1988/1788,
  43604. bottom: 14/2002
  43605. }
  43606. },
  43607. },
  43608. [
  43609. {
  43610. name: "Normal",
  43611. height: math.unit(5 + 11/12, "feet"),
  43612. default: true
  43613. },
  43614. ]
  43615. ))
  43616. characterMakers.push(() => makeCharacter(
  43617. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43618. {
  43619. front: {
  43620. height: math.unit(1.7, "feet"),
  43621. weight: math.unit(50, "lb"),
  43622. name: "Front",
  43623. image: {
  43624. source: "./media/characters/dechroma/front.svg",
  43625. extra: 1095/859,
  43626. bottom: 64/1159
  43627. }
  43628. },
  43629. },
  43630. [
  43631. {
  43632. name: "Normal",
  43633. height: math.unit(1.7, "feet"),
  43634. default: true
  43635. },
  43636. ]
  43637. ))
  43638. characterMakers.push(() => makeCharacter(
  43639. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43640. {
  43641. side: {
  43642. height: math.unit(30, "feet"),
  43643. name: "Side",
  43644. image: {
  43645. source: "./media/characters/veluren-thanazel/side.svg",
  43646. extra: 1611/633,
  43647. bottom: 118/1729
  43648. }
  43649. },
  43650. front: {
  43651. height: math.unit(30, "feet"),
  43652. name: "Front",
  43653. image: {
  43654. source: "./media/characters/veluren-thanazel/front.svg",
  43655. extra: 1486/636,
  43656. bottom: 238/1724
  43657. }
  43658. },
  43659. head: {
  43660. height: math.unit(21.4, "feet"),
  43661. name: "Head",
  43662. image: {
  43663. source: "./media/characters/veluren-thanazel/head.svg"
  43664. }
  43665. },
  43666. genitals: {
  43667. height: math.unit(19.4, "feet"),
  43668. name: "Genitals",
  43669. image: {
  43670. source: "./media/characters/veluren-thanazel/genitals.svg"
  43671. }
  43672. },
  43673. },
  43674. [
  43675. {
  43676. name: "Social",
  43677. height: math.unit(6, "feet")
  43678. },
  43679. {
  43680. name: "Play",
  43681. height: math.unit(12, "feet")
  43682. },
  43683. {
  43684. name: "True",
  43685. height: math.unit(30, "feet"),
  43686. default: true
  43687. },
  43688. ]
  43689. ))
  43690. characterMakers.push(() => makeCharacter(
  43691. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43692. {
  43693. front: {
  43694. height: math.unit(7 + 6/12, "feet"),
  43695. weight: math.unit(500, "kg"),
  43696. name: "Front",
  43697. image: {
  43698. source: "./media/characters/arcturas/front.svg",
  43699. extra: 1700/1500,
  43700. bottom: 145/1845
  43701. }
  43702. },
  43703. },
  43704. [
  43705. {
  43706. name: "Normal",
  43707. height: math.unit(7 + 6/12, "feet"),
  43708. default: true
  43709. },
  43710. ]
  43711. ))
  43712. characterMakers.push(() => makeCharacter(
  43713. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43714. {
  43715. side: {
  43716. height: math.unit(6, "feet"),
  43717. weight: math.unit(2, "tons"),
  43718. name: "Side",
  43719. image: {
  43720. source: "./media/characters/vitaen/side.svg",
  43721. extra: 1157/617,
  43722. bottom: 122/1279
  43723. }
  43724. },
  43725. },
  43726. [
  43727. {
  43728. name: "Normal",
  43729. height: math.unit(6, "feet"),
  43730. default: true
  43731. },
  43732. ]
  43733. ))
  43734. characterMakers.push(() => makeCharacter(
  43735. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43736. {
  43737. front: {
  43738. height: math.unit(19, "feet"),
  43739. name: "Front",
  43740. image: {
  43741. source: "./media/characters/fia-dreamweaver/front.svg",
  43742. extra: 1630/1504,
  43743. bottom: 25/1655
  43744. }
  43745. },
  43746. },
  43747. [
  43748. {
  43749. name: "Normal",
  43750. height: math.unit(19, "feet"),
  43751. default: true
  43752. },
  43753. ]
  43754. ))
  43755. characterMakers.push(() => makeCharacter(
  43756. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43757. {
  43758. front: {
  43759. height: math.unit(5 + 4/12, "feet"),
  43760. name: "Front",
  43761. image: {
  43762. source: "./media/characters/artan/front.svg",
  43763. extra: 1618/1535,
  43764. bottom: 46/1664
  43765. }
  43766. },
  43767. back: {
  43768. height: math.unit(5 + 4/12, "feet"),
  43769. name: "Back",
  43770. image: {
  43771. source: "./media/characters/artan/back.svg",
  43772. extra: 1618/1543,
  43773. bottom: 31/1649
  43774. }
  43775. },
  43776. },
  43777. [
  43778. {
  43779. name: "Normal",
  43780. height: math.unit(5 + 4/12, "feet"),
  43781. default: true
  43782. },
  43783. ]
  43784. ))
  43785. characterMakers.push(() => makeCharacter(
  43786. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43787. {
  43788. side: {
  43789. height: math.unit(182, "cm"),
  43790. weight: math.unit(1000, "lb"),
  43791. name: "Side",
  43792. image: {
  43793. source: "./media/characters/silver-dragon/side.svg",
  43794. extra: 710/287,
  43795. bottom: 88/798
  43796. }
  43797. },
  43798. },
  43799. [
  43800. {
  43801. name: "Normal",
  43802. height: math.unit(182, "cm"),
  43803. default: true
  43804. },
  43805. ]
  43806. ))
  43807. characterMakers.push(() => makeCharacter(
  43808. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43809. {
  43810. side: {
  43811. height: math.unit(6 + 6/12, "feet"),
  43812. weight: math.unit(1.5, "tons"),
  43813. name: "Side",
  43814. image: {
  43815. source: "./media/characters/zephyr/side.svg",
  43816. extra: 1433/586,
  43817. bottom: 109/1542
  43818. }
  43819. },
  43820. },
  43821. [
  43822. {
  43823. name: "Normal",
  43824. height: math.unit(6 + 6/12, "feet"),
  43825. default: true
  43826. },
  43827. ]
  43828. ))
  43829. characterMakers.push(() => makeCharacter(
  43830. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43831. {
  43832. side: {
  43833. height: math.unit(1, "feet"),
  43834. name: "Side",
  43835. image: {
  43836. source: "./media/characters/vixye/side.svg",
  43837. extra: 632/541,
  43838. bottom: 0/632
  43839. }
  43840. },
  43841. },
  43842. [
  43843. {
  43844. name: "Normal",
  43845. height: math.unit(1, "feet"),
  43846. default: true
  43847. },
  43848. {
  43849. name: "True",
  43850. height: math.unit(1e15, "multiverses")
  43851. },
  43852. ]
  43853. ))
  43854. characterMakers.push(() => makeCharacter(
  43855. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43856. {
  43857. front: {
  43858. height: math.unit(8 + 2/12, "feet"),
  43859. weight: math.unit(650, "lb"),
  43860. name: "Front",
  43861. image: {
  43862. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43863. extra: 1174/1137,
  43864. bottom: 82/1256
  43865. }
  43866. },
  43867. back: {
  43868. height: math.unit(8 + 2/12, "feet"),
  43869. weight: math.unit(650, "lb"),
  43870. name: "Back",
  43871. image: {
  43872. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43873. extra: 1204/1157,
  43874. bottom: 46/1250
  43875. }
  43876. },
  43877. },
  43878. [
  43879. {
  43880. name: "Wildform",
  43881. height: math.unit(8 + 2/12, "feet"),
  43882. default: true
  43883. },
  43884. ]
  43885. ))
  43886. characterMakers.push(() => makeCharacter(
  43887. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43888. {
  43889. front: {
  43890. height: math.unit(18, "feet"),
  43891. name: "Front",
  43892. image: {
  43893. source: "./media/characters/cyphin/front.svg",
  43894. extra: 970/886,
  43895. bottom: 42/1012
  43896. }
  43897. },
  43898. back: {
  43899. height: math.unit(18, "feet"),
  43900. name: "Back",
  43901. image: {
  43902. source: "./media/characters/cyphin/back.svg",
  43903. extra: 1009/894,
  43904. bottom: 24/1033
  43905. }
  43906. },
  43907. head: {
  43908. height: math.unit(5.05, "feet"),
  43909. name: "Head",
  43910. image: {
  43911. source: "./media/characters/cyphin/head.svg"
  43912. }
  43913. },
  43914. tailbud: {
  43915. height: math.unit(5, "feet"),
  43916. name: "Tailbud",
  43917. image: {
  43918. source: "./media/characters/cyphin/tailbud.svg"
  43919. }
  43920. },
  43921. },
  43922. [
  43923. ]
  43924. ))
  43925. characterMakers.push(() => makeCharacter(
  43926. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43927. {
  43928. side: {
  43929. height: math.unit(10, "feet"),
  43930. weight: math.unit(6, "tons"),
  43931. name: "Side",
  43932. image: {
  43933. source: "./media/characters/raijin/side.svg",
  43934. extra: 1529/613,
  43935. bottom: 337/1866
  43936. }
  43937. },
  43938. },
  43939. [
  43940. {
  43941. name: "Normal",
  43942. height: math.unit(10, "feet"),
  43943. default: true
  43944. },
  43945. ]
  43946. ))
  43947. characterMakers.push(() => makeCharacter(
  43948. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43949. {
  43950. side: {
  43951. height: math.unit(9, "feet"),
  43952. name: "Side",
  43953. image: {
  43954. source: "./media/characters/nilghais/side.svg",
  43955. extra: 1047/744,
  43956. bottom: 91/1138
  43957. }
  43958. },
  43959. head: {
  43960. height: math.unit(3.14, "feet"),
  43961. name: "Head",
  43962. image: {
  43963. source: "./media/characters/nilghais/head.svg"
  43964. }
  43965. },
  43966. mouth: {
  43967. height: math.unit(4.6, "feet"),
  43968. name: "Mouth",
  43969. image: {
  43970. source: "./media/characters/nilghais/mouth.svg"
  43971. }
  43972. },
  43973. wings: {
  43974. height: math.unit(24, "feet"),
  43975. name: "Wings",
  43976. image: {
  43977. source: "./media/characters/nilghais/wings.svg"
  43978. }
  43979. },
  43980. ass: {
  43981. height: math.unit(6.12, "feet"),
  43982. name: "Ass",
  43983. image: {
  43984. source: "./media/characters/nilghais/ass.svg"
  43985. }
  43986. },
  43987. },
  43988. [
  43989. {
  43990. name: "Normal",
  43991. height: math.unit(9, "feet"),
  43992. default: true
  43993. },
  43994. ]
  43995. ))
  43996. characterMakers.push(() => makeCharacter(
  43997. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43998. {
  43999. regular: {
  44000. height: math.unit(16 + 2/12, "feet"),
  44001. weight: math.unit(2300, "lb"),
  44002. name: "Regular",
  44003. image: {
  44004. source: "./media/characters/zolgar/regular.svg",
  44005. extra: 1246/1004,
  44006. bottom: 124/1370
  44007. }
  44008. },
  44009. boxers: {
  44010. height: math.unit(16 + 2/12, "feet"),
  44011. weight: math.unit(2300, "lb"),
  44012. name: "Boxers",
  44013. image: {
  44014. source: "./media/characters/zolgar/boxers.svg",
  44015. extra: 1246/1004,
  44016. bottom: 124/1370
  44017. }
  44018. },
  44019. armored: {
  44020. height: math.unit(16 + 2/12, "feet"),
  44021. weight: math.unit(2300, "lb"),
  44022. name: "Armored",
  44023. image: {
  44024. source: "./media/characters/zolgar/armored.svg",
  44025. extra: 1246/1004,
  44026. bottom: 124/1370
  44027. }
  44028. },
  44029. goth: {
  44030. height: math.unit(16 + 2/12, "feet"),
  44031. weight: math.unit(2300, "lb"),
  44032. name: "Goth",
  44033. image: {
  44034. source: "./media/characters/zolgar/goth.svg",
  44035. extra: 1246/1004,
  44036. bottom: 124/1370
  44037. }
  44038. },
  44039. },
  44040. [
  44041. {
  44042. name: "Shrunken Down",
  44043. height: math.unit(9 + 2/12, "feet")
  44044. },
  44045. {
  44046. name: "Normal",
  44047. height: math.unit(16 + 2/12, "feet"),
  44048. default: true
  44049. },
  44050. ]
  44051. ))
  44052. characterMakers.push(() => makeCharacter(
  44053. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44054. {
  44055. front: {
  44056. height: math.unit(6, "feet"),
  44057. weight: math.unit(168, "lb"),
  44058. name: "Front",
  44059. image: {
  44060. source: "./media/characters/luca/front.svg",
  44061. extra: 841/667,
  44062. bottom: 102/943
  44063. }
  44064. },
  44065. },
  44066. [
  44067. {
  44068. name: "Normal",
  44069. height: math.unit(6, "feet"),
  44070. default: true
  44071. },
  44072. ]
  44073. ))
  44074. characterMakers.push(() => makeCharacter(
  44075. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44076. {
  44077. side: {
  44078. height: math.unit(7 + 3/12, "feet"),
  44079. weight: math.unit(312, "lb"),
  44080. name: "Side",
  44081. image: {
  44082. source: "./media/characters/zezo/side.svg",
  44083. extra: 1192/1067,
  44084. bottom: 63/1255
  44085. }
  44086. },
  44087. },
  44088. [
  44089. {
  44090. name: "Normal",
  44091. height: math.unit(7 + 3/12, "feet"),
  44092. default: true
  44093. },
  44094. ]
  44095. ))
  44096. characterMakers.push(() => makeCharacter(
  44097. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44098. {
  44099. front: {
  44100. height: math.unit(5 + 5/12, "feet"),
  44101. weight: math.unit(170, "lb"),
  44102. name: "Front",
  44103. image: {
  44104. source: "./media/characters/mayso/front.svg",
  44105. extra: 1215/1108,
  44106. bottom: 16/1231
  44107. }
  44108. },
  44109. },
  44110. [
  44111. {
  44112. name: "Normal",
  44113. height: math.unit(5 + 5/12, "feet"),
  44114. default: true
  44115. },
  44116. ]
  44117. ))
  44118. characterMakers.push(() => makeCharacter(
  44119. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44120. {
  44121. front: {
  44122. height: math.unit(4 + 3/12, "feet"),
  44123. weight: math.unit(80, "lb"),
  44124. name: "Front",
  44125. image: {
  44126. source: "./media/characters/hess/front.svg",
  44127. extra: 1200/1123,
  44128. bottom: 16/1216
  44129. }
  44130. },
  44131. },
  44132. [
  44133. {
  44134. name: "Normal",
  44135. height: math.unit(4 + 3/12, "feet"),
  44136. default: true
  44137. },
  44138. ]
  44139. ))
  44140. characterMakers.push(() => makeCharacter(
  44141. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44142. {
  44143. front: {
  44144. height: math.unit(1.9, "meters"),
  44145. name: "Front",
  44146. image: {
  44147. source: "./media/characters/ashgar/front.svg",
  44148. extra: 1177/1146,
  44149. bottom: 99/1276
  44150. }
  44151. },
  44152. back: {
  44153. height: math.unit(1.9, "meters"),
  44154. name: "Back",
  44155. image: {
  44156. source: "./media/characters/ashgar/back.svg",
  44157. extra: 1201/1183,
  44158. bottom: 53/1254
  44159. }
  44160. },
  44161. feral: {
  44162. height: math.unit(1.4, "meters"),
  44163. name: "Feral",
  44164. image: {
  44165. source: "./media/characters/ashgar/feral.svg",
  44166. extra: 370/345,
  44167. bottom: 45/415
  44168. }
  44169. },
  44170. },
  44171. [
  44172. {
  44173. name: "Normal",
  44174. height: math.unit(1.9, "meters"),
  44175. default: true
  44176. },
  44177. ]
  44178. ))
  44179. characterMakers.push(() => makeCharacter(
  44180. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44181. {
  44182. regular: {
  44183. height: math.unit(6, "feet"),
  44184. weight: math.unit(220, "lb"),
  44185. name: "Regular",
  44186. image: {
  44187. source: "./media/characters/phillip/regular.svg",
  44188. extra: 1373/1277,
  44189. bottom: 75/1448
  44190. }
  44191. },
  44192. dressed: {
  44193. height: math.unit(6, "feet"),
  44194. weight: math.unit(220, "lb"),
  44195. name: "Dressed",
  44196. image: {
  44197. source: "./media/characters/phillip/dressed.svg",
  44198. extra: 1373/1277,
  44199. bottom: 75/1448
  44200. }
  44201. },
  44202. paw: {
  44203. height: math.unit(1.44, "feet"),
  44204. name: "Paw",
  44205. image: {
  44206. source: "./media/characters/phillip/paw.svg"
  44207. }
  44208. },
  44209. },
  44210. [
  44211. {
  44212. name: "Normal",
  44213. height: math.unit(6, "feet"),
  44214. default: true
  44215. },
  44216. ]
  44217. ))
  44218. characterMakers.push(() => makeCharacter(
  44219. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44220. {
  44221. side: {
  44222. height: math.unit(42, "feet"),
  44223. name: "Side",
  44224. image: {
  44225. source: "./media/characters/uvula/side.svg",
  44226. extra: 683/586,
  44227. bottom: 60/743
  44228. }
  44229. },
  44230. front: {
  44231. height: math.unit(42, "feet"),
  44232. name: "Front",
  44233. image: {
  44234. source: "./media/characters/uvula/front.svg",
  44235. extra: 705/613,
  44236. bottom: 54/759
  44237. }
  44238. },
  44239. maw: {
  44240. height: math.unit(23.5, "feet"),
  44241. name: "Maw",
  44242. image: {
  44243. source: "./media/characters/uvula/maw.svg"
  44244. }
  44245. },
  44246. },
  44247. [
  44248. {
  44249. name: "Original Size",
  44250. height: math.unit(14, "inches")
  44251. },
  44252. {
  44253. name: "Human Size",
  44254. height: math.unit(6, "feet")
  44255. },
  44256. {
  44257. name: "Big",
  44258. height: math.unit(42, "feet"),
  44259. default: true
  44260. },
  44261. {
  44262. name: "Bigger",
  44263. height: math.unit(100, "feet")
  44264. },
  44265. ]
  44266. ))
  44267. characterMakers.push(() => makeCharacter(
  44268. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44269. {
  44270. front: {
  44271. height: math.unit(5 + 11/12, "feet"),
  44272. name: "Front",
  44273. image: {
  44274. source: "./media/characters/lannah/front.svg",
  44275. extra: 1208/1113,
  44276. bottom: 97/1305
  44277. }
  44278. },
  44279. },
  44280. [
  44281. {
  44282. name: "Normal",
  44283. height: math.unit(5 + 11/12, "feet"),
  44284. default: true
  44285. },
  44286. ]
  44287. ))
  44288. characterMakers.push(() => makeCharacter(
  44289. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44290. {
  44291. front: {
  44292. height: math.unit(6 + 3/12, "feet"),
  44293. weight: math.unit(3.5, "tons"),
  44294. name: "Front",
  44295. image: {
  44296. source: "./media/characters/emberflame/front.svg",
  44297. extra: 1198/672,
  44298. bottom: 82/1280
  44299. }
  44300. },
  44301. side: {
  44302. height: math.unit(6 + 3/12, "feet"),
  44303. weight: math.unit(3.5, "tons"),
  44304. name: "Side",
  44305. image: {
  44306. source: "./media/characters/emberflame/side.svg",
  44307. extra: 938/527,
  44308. bottom: 56/994
  44309. }
  44310. },
  44311. },
  44312. [
  44313. {
  44314. name: "Normal",
  44315. height: math.unit(6 + 3/12, "feet"),
  44316. default: true
  44317. },
  44318. ]
  44319. ))
  44320. characterMakers.push(() => makeCharacter(
  44321. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44322. {
  44323. side: {
  44324. height: math.unit(17.5, "feet"),
  44325. weight: math.unit(35, "tons"),
  44326. name: "Side",
  44327. image: {
  44328. source: "./media/characters/sophie-ambrose/side.svg",
  44329. extra: 1573/1242,
  44330. bottom: 71/1644
  44331. }
  44332. },
  44333. maw: {
  44334. height: math.unit(7.4, "feet"),
  44335. name: "Maw",
  44336. image: {
  44337. source: "./media/characters/sophie-ambrose/maw.svg"
  44338. }
  44339. },
  44340. },
  44341. [
  44342. {
  44343. name: "Normal",
  44344. height: math.unit(17.5, "feet"),
  44345. default: true
  44346. },
  44347. ]
  44348. ))
  44349. characterMakers.push(() => makeCharacter(
  44350. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44351. {
  44352. front: {
  44353. height: math.unit(280, "feet"),
  44354. weight: math.unit(550, "tons"),
  44355. name: "Front",
  44356. image: {
  44357. source: "./media/characters/king-mugi/front.svg",
  44358. extra: 1102/947,
  44359. bottom: 104/1206
  44360. }
  44361. },
  44362. },
  44363. [
  44364. {
  44365. name: "King Mugi",
  44366. height: math.unit(280, "feet"),
  44367. default: true
  44368. },
  44369. ]
  44370. ))
  44371. characterMakers.push(() => makeCharacter(
  44372. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44373. {
  44374. front: {
  44375. height: math.unit(64, "meters"),
  44376. name: "Front",
  44377. image: {
  44378. source: "./media/characters/nova-fox/front.svg",
  44379. extra: 1310/1246,
  44380. bottom: 65/1375
  44381. }
  44382. },
  44383. },
  44384. [
  44385. {
  44386. name: "Macro",
  44387. height: math.unit(64, "meters"),
  44388. default: true
  44389. },
  44390. ]
  44391. ))
  44392. characterMakers.push(() => makeCharacter(
  44393. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44394. {
  44395. front: {
  44396. height: math.unit(6 + 3/12, "feet"),
  44397. weight: math.unit(170, "lb"),
  44398. name: "Front",
  44399. image: {
  44400. source: "./media/characters/sam-bat/front.svg",
  44401. extra: 1601/1411,
  44402. bottom: 125/1726
  44403. }
  44404. },
  44405. back: {
  44406. height: math.unit(6 + 3/12, "feet"),
  44407. weight: math.unit(170, "lb"),
  44408. name: "Back",
  44409. image: {
  44410. source: "./media/characters/sam-bat/back.svg",
  44411. extra: 1577/1405,
  44412. bottom: 58/1635
  44413. }
  44414. },
  44415. },
  44416. [
  44417. {
  44418. name: "Normal",
  44419. height: math.unit(6 + 3/12, "feet"),
  44420. default: true
  44421. },
  44422. ]
  44423. ))
  44424. characterMakers.push(() => makeCharacter(
  44425. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44426. {
  44427. front: {
  44428. height: math.unit(59, "feet"),
  44429. weight: math.unit(40000, "lb"),
  44430. name: "Front",
  44431. image: {
  44432. source: "./media/characters/inari/front.svg",
  44433. extra: 1884/1350,
  44434. bottom: 95/1979
  44435. }
  44436. },
  44437. },
  44438. [
  44439. {
  44440. name: "Gigantamax",
  44441. height: math.unit(59, "feet"),
  44442. default: true
  44443. },
  44444. ]
  44445. ))
  44446. characterMakers.push(() => makeCharacter(
  44447. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44448. {
  44449. front: {
  44450. height: math.unit(5 + 8/12, "feet"),
  44451. name: "Front",
  44452. image: {
  44453. source: "./media/characters/elizabeth/front.svg",
  44454. extra: 1395/1298,
  44455. bottom: 54/1449
  44456. }
  44457. },
  44458. mouth: {
  44459. height: math.unit(1.97, "feet"),
  44460. name: "Mouth",
  44461. image: {
  44462. source: "./media/characters/elizabeth/mouth.svg"
  44463. }
  44464. },
  44465. foot: {
  44466. height: math.unit(1.17, "feet"),
  44467. name: "Foot",
  44468. image: {
  44469. source: "./media/characters/elizabeth/foot.svg"
  44470. }
  44471. },
  44472. },
  44473. [
  44474. {
  44475. name: "Normal",
  44476. height: math.unit(5 + 8/12, "feet"),
  44477. default: true
  44478. },
  44479. {
  44480. name: "Minimacro",
  44481. height: math.unit(18, "feet")
  44482. },
  44483. {
  44484. name: "Macro",
  44485. height: math.unit(180, "feet")
  44486. },
  44487. ]
  44488. ))
  44489. characterMakers.push(() => makeCharacter(
  44490. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44491. {
  44492. front: {
  44493. height: math.unit(5 + 2/12, "feet"),
  44494. name: "Front",
  44495. image: {
  44496. source: "./media/characters/october-gossamer/front.svg",
  44497. extra: 505/454,
  44498. bottom: 7/512
  44499. }
  44500. },
  44501. back: {
  44502. height: math.unit(5 + 2/12, "feet"),
  44503. name: "Back",
  44504. image: {
  44505. source: "./media/characters/october-gossamer/back.svg",
  44506. extra: 501/454,
  44507. bottom: 11/512
  44508. }
  44509. },
  44510. },
  44511. [
  44512. {
  44513. name: "Normal",
  44514. height: math.unit(5 + 2/12, "feet"),
  44515. default: true
  44516. },
  44517. ]
  44518. ))
  44519. characterMakers.push(() => makeCharacter(
  44520. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44521. {
  44522. front: {
  44523. height: math.unit(5, "feet"),
  44524. name: "Front",
  44525. image: {
  44526. source: "./media/characters/epiglottis/front.svg",
  44527. extra: 923/849,
  44528. bottom: 17/940
  44529. }
  44530. },
  44531. },
  44532. [
  44533. {
  44534. name: "Original Size",
  44535. height: math.unit(10, "inches")
  44536. },
  44537. {
  44538. name: "Human Size",
  44539. height: math.unit(5, "feet"),
  44540. default: true
  44541. },
  44542. {
  44543. name: "Big",
  44544. height: math.unit(25, "feet")
  44545. },
  44546. {
  44547. name: "Bigger",
  44548. height: math.unit(50, "feet")
  44549. },
  44550. {
  44551. name: "oh lawd",
  44552. height: math.unit(75, "feet")
  44553. },
  44554. ]
  44555. ))
  44556. characterMakers.push(() => makeCharacter(
  44557. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44558. {
  44559. front: {
  44560. height: math.unit(2 + 4/12, "feet"),
  44561. weight: math.unit(60, "lb"),
  44562. name: "Front",
  44563. image: {
  44564. source: "./media/characters/lerm/front.svg",
  44565. extra: 796/790,
  44566. bottom: 79/875
  44567. }
  44568. },
  44569. },
  44570. [
  44571. {
  44572. name: "Normal",
  44573. height: math.unit(2 + 4/12, "feet"),
  44574. default: true
  44575. },
  44576. ]
  44577. ))
  44578. characterMakers.push(() => makeCharacter(
  44579. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44580. {
  44581. front: {
  44582. height: math.unit(5.5, "feet"),
  44583. weight: math.unit(130, "lb"),
  44584. name: "Front",
  44585. image: {
  44586. source: "./media/characters/xena-nebadon/front.svg",
  44587. extra: 1828/1730,
  44588. bottom: 79/1907
  44589. }
  44590. },
  44591. },
  44592. [
  44593. {
  44594. name: "Tiny Puppy",
  44595. height: math.unit(3, "inches")
  44596. },
  44597. {
  44598. name: "Normal",
  44599. height: math.unit(5.5, "feet"),
  44600. default: true
  44601. },
  44602. {
  44603. name: "Lotta Lady",
  44604. height: math.unit(12, "feet")
  44605. },
  44606. {
  44607. name: "Pretty Big",
  44608. height: math.unit(100, "feet")
  44609. },
  44610. {
  44611. name: "Big",
  44612. height: math.unit(500, "feet")
  44613. },
  44614. {
  44615. name: "Skyscraper Toys",
  44616. height: math.unit(2500, "feet")
  44617. },
  44618. {
  44619. name: "Plane Catcher",
  44620. height: math.unit(8, "miles")
  44621. },
  44622. {
  44623. name: "Planet Toys",
  44624. height: math.unit(15, "earths")
  44625. },
  44626. {
  44627. name: "Stardust",
  44628. height: math.unit(0.25, "galaxies")
  44629. },
  44630. {
  44631. name: "Snacks",
  44632. height: math.unit(70, "universes")
  44633. },
  44634. ]
  44635. ))
  44636. characterMakers.push(() => makeCharacter(
  44637. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44638. {
  44639. front: {
  44640. height: math.unit(1.6, "meters"),
  44641. weight: math.unit(60, "kg"),
  44642. name: "Front",
  44643. image: {
  44644. source: "./media/characters/bounty/front.svg",
  44645. extra: 1426/1308,
  44646. bottom: 15/1441
  44647. }
  44648. },
  44649. back: {
  44650. height: math.unit(1.6, "meters"),
  44651. weight: math.unit(60, "kg"),
  44652. name: "Back",
  44653. image: {
  44654. source: "./media/characters/bounty/back.svg",
  44655. extra: 1417/1307,
  44656. bottom: 8/1425
  44657. }
  44658. },
  44659. },
  44660. [
  44661. {
  44662. name: "Normal",
  44663. height: math.unit(1.6, "meters"),
  44664. default: true
  44665. },
  44666. {
  44667. name: "Macro",
  44668. height: math.unit(300, "meters")
  44669. },
  44670. ]
  44671. ))
  44672. characterMakers.push(() => makeCharacter(
  44673. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44674. {
  44675. front: {
  44676. height: math.unit(2 + 8/12, "feet"),
  44677. weight: math.unit(15, "lb"),
  44678. name: "Front",
  44679. image: {
  44680. source: "./media/characters/mochi/front.svg",
  44681. extra: 1022/852,
  44682. bottom: 435/1457
  44683. }
  44684. },
  44685. back: {
  44686. height: math.unit(2 + 8/12, "feet"),
  44687. weight: math.unit(15, "lb"),
  44688. name: "Back",
  44689. image: {
  44690. source: "./media/characters/mochi/back.svg",
  44691. extra: 1335/1119,
  44692. bottom: 39/1374
  44693. }
  44694. },
  44695. bird: {
  44696. height: math.unit(2 + 8/12, "feet"),
  44697. weight: math.unit(15, "lb"),
  44698. name: "Bird",
  44699. image: {
  44700. source: "./media/characters/mochi/bird.svg",
  44701. extra: 1251/1113,
  44702. bottom: 178/1429
  44703. }
  44704. },
  44705. kaiju: {
  44706. height: math.unit(154, "feet"),
  44707. weight: math.unit(1e7, "lb"),
  44708. name: "Kaiju",
  44709. image: {
  44710. source: "./media/characters/mochi/kaiju.svg",
  44711. extra: 460/324,
  44712. bottom: 40/500
  44713. }
  44714. },
  44715. head: {
  44716. height: math.unit(1.21, "feet"),
  44717. name: "Head",
  44718. image: {
  44719. source: "./media/characters/mochi/head.svg"
  44720. }
  44721. },
  44722. alternateTail: {
  44723. height: math.unit(2 + 8/12, "feet"),
  44724. weight: math.unit(45, "lb"),
  44725. name: "Alternate Tail",
  44726. image: {
  44727. source: "./media/characters/mochi/alternate-tail.svg",
  44728. extra: 139/76,
  44729. bottom: 45/184
  44730. }
  44731. },
  44732. },
  44733. [
  44734. {
  44735. name: "Micro",
  44736. height: math.unit(2, "inches")
  44737. },
  44738. {
  44739. name: "Normal",
  44740. height: math.unit(2 + 8/12, "feet"),
  44741. default: true
  44742. },
  44743. {
  44744. name: "Macro",
  44745. height: math.unit(106, "feet")
  44746. },
  44747. ]
  44748. ))
  44749. characterMakers.push(() => makeCharacter(
  44750. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44751. {
  44752. front: {
  44753. height: math.unit(5.67, "feet"),
  44754. weight: math.unit(135, "lb"),
  44755. name: "Front",
  44756. image: {
  44757. source: "./media/characters/sarel/front.svg",
  44758. extra: 865/788,
  44759. bottom: 97/962
  44760. }
  44761. },
  44762. back: {
  44763. height: math.unit(5.67, "feet"),
  44764. weight: math.unit(135, "lb"),
  44765. name: "Back",
  44766. image: {
  44767. source: "./media/characters/sarel/back.svg",
  44768. extra: 857/777,
  44769. bottom: 32/889
  44770. }
  44771. },
  44772. chozoan: {
  44773. height: math.unit(5.67, "feet"),
  44774. weight: math.unit(135, "lb"),
  44775. name: "Chozoan",
  44776. image: {
  44777. source: "./media/characters/sarel/chozoan.svg",
  44778. extra: 865/788,
  44779. bottom: 97/962
  44780. }
  44781. },
  44782. current: {
  44783. height: math.unit(5.67, "feet"),
  44784. weight: math.unit(135, "lb"),
  44785. name: "Current",
  44786. image: {
  44787. source: "./media/characters/sarel/current.svg",
  44788. extra: 865/788,
  44789. bottom: 97/962
  44790. }
  44791. },
  44792. head: {
  44793. height: math.unit(1.77, "feet"),
  44794. name: "Head",
  44795. image: {
  44796. source: "./media/characters/sarel/head.svg"
  44797. }
  44798. },
  44799. claws: {
  44800. height: math.unit(1.8, "feet"),
  44801. name: "Claws",
  44802. image: {
  44803. source: "./media/characters/sarel/claws.svg"
  44804. }
  44805. },
  44806. clawsAlt: {
  44807. height: math.unit(1.8, "feet"),
  44808. name: "Claws-alt",
  44809. image: {
  44810. source: "./media/characters/sarel/claws-alt.svg"
  44811. }
  44812. },
  44813. },
  44814. [
  44815. {
  44816. name: "Normal",
  44817. height: math.unit(5.67, "feet"),
  44818. default: true
  44819. },
  44820. ]
  44821. ))
  44822. characterMakers.push(() => makeCharacter(
  44823. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44824. {
  44825. front: {
  44826. height: math.unit(5500, "feet"),
  44827. name: "Front",
  44828. image: {
  44829. source: "./media/characters/alyonia/front.svg",
  44830. extra: 1200/1135,
  44831. bottom: 29/1229
  44832. }
  44833. },
  44834. back: {
  44835. height: math.unit(5500, "feet"),
  44836. name: "Back",
  44837. image: {
  44838. source: "./media/characters/alyonia/back.svg",
  44839. extra: 1205/1138,
  44840. bottom: 10/1215
  44841. }
  44842. },
  44843. },
  44844. [
  44845. {
  44846. name: "Small",
  44847. height: math.unit(10, "feet")
  44848. },
  44849. {
  44850. name: "Macro",
  44851. height: math.unit(500, "feet")
  44852. },
  44853. {
  44854. name: "Mega Macro",
  44855. height: math.unit(5500, "feet"),
  44856. default: true
  44857. },
  44858. {
  44859. name: "Mega Macro+",
  44860. height: math.unit(500000, "feet")
  44861. },
  44862. {
  44863. name: "Giga Macro",
  44864. height: math.unit(3000, "miles")
  44865. },
  44866. {
  44867. name: "Tera Macro",
  44868. height: math.unit(2.8e6, "miles")
  44869. },
  44870. {
  44871. name: "Galactic",
  44872. height: math.unit(120000, "lightyears")
  44873. },
  44874. ]
  44875. ))
  44876. characterMakers.push(() => makeCharacter(
  44877. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44878. {
  44879. werewolf: {
  44880. height: math.unit(8, "feet"),
  44881. weight: math.unit(425, "lb"),
  44882. name: "Werewolf",
  44883. image: {
  44884. source: "./media/characters/autumn/werewolf.svg",
  44885. extra: 2154/2031,
  44886. bottom: 160/2314
  44887. }
  44888. },
  44889. human: {
  44890. height: math.unit(5 + 8/12, "feet"),
  44891. weight: math.unit(150, "lb"),
  44892. name: "Human",
  44893. image: {
  44894. source: "./media/characters/autumn/human.svg",
  44895. extra: 1200/1149,
  44896. bottom: 30/1230
  44897. }
  44898. },
  44899. },
  44900. [
  44901. {
  44902. name: "Normal",
  44903. height: math.unit(8, "feet"),
  44904. default: true
  44905. },
  44906. ]
  44907. ))
  44908. characterMakers.push(() => makeCharacter(
  44909. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44910. {
  44911. front: {
  44912. height: math.unit(8 + 5/12, "feet"),
  44913. weight: math.unit(825, "lb"),
  44914. name: "Front",
  44915. image: {
  44916. source: "./media/characters/cobalt-charizard/front.svg",
  44917. extra: 1268/1155,
  44918. bottom: 122/1390
  44919. }
  44920. },
  44921. side: {
  44922. height: math.unit(8 + 5/12, "feet"),
  44923. weight: math.unit(825, "lb"),
  44924. name: "Side",
  44925. image: {
  44926. source: "./media/characters/cobalt-charizard/side.svg",
  44927. extra: 1348/1257,
  44928. bottom: 58/1406
  44929. }
  44930. },
  44931. gMax: {
  44932. height: math.unit(134 + 11/12, "feet"),
  44933. name: "G-Max",
  44934. image: {
  44935. source: "./media/characters/cobalt-charizard/g-max.svg",
  44936. extra: 1835/1541,
  44937. bottom: 151/1986
  44938. }
  44939. },
  44940. },
  44941. [
  44942. {
  44943. name: "Normal",
  44944. height: math.unit(8 + 5/12, "feet"),
  44945. default: true
  44946. },
  44947. ]
  44948. ))
  44949. characterMakers.push(() => makeCharacter(
  44950. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44951. {
  44952. front: {
  44953. height: math.unit(6 + 3/12, "feet"),
  44954. weight: math.unit(210, "lb"),
  44955. name: "Front",
  44956. image: {
  44957. source: "./media/characters/stella/front.svg",
  44958. extra: 3549/3335,
  44959. bottom: 51/3600
  44960. }
  44961. },
  44962. },
  44963. [
  44964. {
  44965. name: "Normal",
  44966. height: math.unit(6 + 3/12, "feet"),
  44967. default: true
  44968. },
  44969. ]
  44970. ))
  44971. characterMakers.push(() => makeCharacter(
  44972. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44973. {
  44974. front: {
  44975. height: math.unit(5, "feet"),
  44976. weight: math.unit(90, "lb"),
  44977. name: "Front",
  44978. image: {
  44979. source: "./media/characters/riley-bishop/front.svg",
  44980. extra: 1450/1428,
  44981. bottom: 152/1602
  44982. }
  44983. },
  44984. },
  44985. [
  44986. {
  44987. name: "Normal",
  44988. height: math.unit(5, "feet"),
  44989. default: true
  44990. },
  44991. ]
  44992. ))
  44993. characterMakers.push(() => makeCharacter(
  44994. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44995. {
  44996. side: {
  44997. height: math.unit(8 + 2/12, "feet"),
  44998. weight: math.unit(500, "kg"),
  44999. name: "Side",
  45000. image: {
  45001. source: "./media/characters/theo-arcanine/side.svg",
  45002. extra: 1342/1074,
  45003. bottom: 111/1453
  45004. }
  45005. },
  45006. },
  45007. [
  45008. {
  45009. name: "Normal",
  45010. height: math.unit(8 + 2/12, "feet"),
  45011. default: true
  45012. },
  45013. ]
  45014. ))
  45015. characterMakers.push(() => makeCharacter(
  45016. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45017. {
  45018. front: {
  45019. height: math.unit(4, "feet"),
  45020. name: "Front",
  45021. image: {
  45022. source: "./media/characters/kali/front.svg",
  45023. extra: 1921/1357,
  45024. bottom: 70/1991
  45025. }
  45026. },
  45027. },
  45028. [
  45029. {
  45030. name: "Normal",
  45031. height: math.unit(4, "feet"),
  45032. default: true
  45033. },
  45034. {
  45035. name: "Macro",
  45036. height: math.unit(32, "meters")
  45037. },
  45038. {
  45039. name: "Macro+",
  45040. height: math.unit(150, "meters")
  45041. },
  45042. {
  45043. name: "Megamacro",
  45044. height: math.unit(7500, "meters")
  45045. },
  45046. {
  45047. name: "Megamacro+",
  45048. height: math.unit(80, "kilometers")
  45049. },
  45050. ]
  45051. ))
  45052. characterMakers.push(() => makeCharacter(
  45053. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45054. {
  45055. side: {
  45056. height: math.unit(5 + 11/12, "feet"),
  45057. weight: math.unit(236, "lb"),
  45058. name: "Side",
  45059. image: {
  45060. source: "./media/characters/gapp/side.svg",
  45061. extra: 775/340,
  45062. bottom: 58/833
  45063. }
  45064. },
  45065. mouth: {
  45066. height: math.unit(2.98, "feet"),
  45067. name: "Mouth",
  45068. image: {
  45069. source: "./media/characters/gapp/mouth.svg"
  45070. }
  45071. },
  45072. },
  45073. [
  45074. {
  45075. name: "Normal",
  45076. height: math.unit(5 + 1/12, "feet"),
  45077. default: true
  45078. },
  45079. ]
  45080. ))
  45081. characterMakers.push(() => makeCharacter(
  45082. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45083. {
  45084. front: {
  45085. height: math.unit(6, "feet"),
  45086. name: "Front",
  45087. image: {
  45088. source: "./media/characters/persephone/front.svg",
  45089. extra: 1895/1717,
  45090. bottom: 96/1991
  45091. }
  45092. },
  45093. back: {
  45094. height: math.unit(6, "feet"),
  45095. name: "Back",
  45096. image: {
  45097. source: "./media/characters/persephone/back.svg",
  45098. extra: 1868/1679,
  45099. bottom: 26/1894
  45100. }
  45101. },
  45102. casual: {
  45103. height: math.unit(6, "feet"),
  45104. name: "Casual",
  45105. image: {
  45106. source: "./media/characters/persephone/casual.svg",
  45107. extra: 1713/1541,
  45108. bottom: 76/1789
  45109. }
  45110. },
  45111. },
  45112. [
  45113. {
  45114. name: "Human Size",
  45115. height: math.unit(6, "feet")
  45116. },
  45117. {
  45118. name: "Big Steppy",
  45119. height: math.unit(600, "meters"),
  45120. default: true
  45121. },
  45122. {
  45123. name: "Galaxy Brain",
  45124. height: math.unit(1, "zettameter")
  45125. },
  45126. ]
  45127. ))
  45128. characterMakers.push(() => makeCharacter(
  45129. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45130. {
  45131. front: {
  45132. height: math.unit(1.85, "meters"),
  45133. name: "Front",
  45134. image: {
  45135. source: "./media/characters/riley-foxthing/front.svg",
  45136. extra: 1495/1354,
  45137. bottom: 122/1617
  45138. }
  45139. },
  45140. frontAlt: {
  45141. height: math.unit(1.85, "meters"),
  45142. name: "Front (Alt)",
  45143. image: {
  45144. source: "./media/characters/riley-foxthing/front-alt.svg",
  45145. extra: 1572/1389,
  45146. bottom: 116/1688
  45147. }
  45148. },
  45149. },
  45150. [
  45151. {
  45152. name: "Normal Sized",
  45153. height: math.unit(1.85, "meters"),
  45154. default: true
  45155. },
  45156. {
  45157. name: "Quite Sizable",
  45158. height: math.unit(5, "meters")
  45159. },
  45160. {
  45161. name: "Rather Large",
  45162. height: math.unit(20, "meters")
  45163. },
  45164. {
  45165. name: "Macro",
  45166. height: math.unit(450, "meters")
  45167. },
  45168. {
  45169. name: "Giga",
  45170. height: math.unit(5, "km")
  45171. },
  45172. ]
  45173. ))
  45174. characterMakers.push(() => makeCharacter(
  45175. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45176. {
  45177. front: {
  45178. height: math.unit(6, "feet"),
  45179. weight: math.unit(200, "lb"),
  45180. name: "Front",
  45181. image: {
  45182. source: "./media/characters/blizzard/front.svg",
  45183. extra: 1136/990,
  45184. bottom: 136/1272
  45185. }
  45186. },
  45187. back: {
  45188. height: math.unit(6, "feet"),
  45189. weight: math.unit(200, "lb"),
  45190. name: "Back",
  45191. image: {
  45192. source: "./media/characters/blizzard/back.svg",
  45193. extra: 1175/1034,
  45194. bottom: 97/1272
  45195. }
  45196. },
  45197. sitting: {
  45198. height: math.unit(3.725, "feet"),
  45199. weight: math.unit(200, "lb"),
  45200. name: "Sitting",
  45201. image: {
  45202. source: "./media/characters/blizzard/sitting.svg",
  45203. extra: 581/485,
  45204. bottom: 90/671
  45205. }
  45206. },
  45207. frontWizard: {
  45208. height: math.unit(7.9, "feet"),
  45209. weight: math.unit(200, "lb"),
  45210. name: "Front (Wizard)",
  45211. image: {
  45212. source: "./media/characters/blizzard/front-wizard.svg"
  45213. }
  45214. },
  45215. backWizard: {
  45216. height: math.unit(7.9, "feet"),
  45217. weight: math.unit(200, "lb"),
  45218. name: "Back (Wizard)",
  45219. image: {
  45220. source: "./media/characters/blizzard/back-wizard.svg"
  45221. }
  45222. },
  45223. frontNsfw: {
  45224. height: math.unit(6, "feet"),
  45225. weight: math.unit(200, "lb"),
  45226. name: "Front (NSFW)",
  45227. image: {
  45228. source: "./media/characters/blizzard/front-nsfw.svg",
  45229. extra: 1136/990,
  45230. bottom: 136/1272
  45231. }
  45232. },
  45233. backNsfw: {
  45234. height: math.unit(6, "feet"),
  45235. weight: math.unit(200, "lb"),
  45236. name: "Back (NSFW)",
  45237. image: {
  45238. source: "./media/characters/blizzard/back-nsfw.svg",
  45239. extra: 1175/1034,
  45240. bottom: 97/1272
  45241. }
  45242. },
  45243. sittingNsfw: {
  45244. height: math.unit(3.725, "feet"),
  45245. weight: math.unit(200, "lb"),
  45246. name: "Sitting (NSFW)",
  45247. image: {
  45248. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45249. extra: 581/485,
  45250. bottom: 90/671
  45251. }
  45252. },
  45253. wizardFrontNsfw: {
  45254. height: math.unit(7.9, "feet"),
  45255. weight: math.unit(200, "lb"),
  45256. name: "Wizard (Front, NSFW)",
  45257. image: {
  45258. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45259. }
  45260. },
  45261. },
  45262. [
  45263. {
  45264. name: "Normal",
  45265. height: math.unit(6, "feet"),
  45266. default: true
  45267. },
  45268. ]
  45269. ))
  45270. characterMakers.push(() => makeCharacter(
  45271. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45272. {
  45273. front: {
  45274. height: math.unit(5 + 2/12, "feet"),
  45275. name: "Front",
  45276. image: {
  45277. source: "./media/characters/lumi/front.svg",
  45278. extra: 1328/1268,
  45279. bottom: 103/1431
  45280. }
  45281. },
  45282. back: {
  45283. height: math.unit(5 + 2/12, "feet"),
  45284. name: "Back",
  45285. image: {
  45286. source: "./media/characters/lumi/back.svg",
  45287. extra: 1381/1327,
  45288. bottom: 43/1424
  45289. }
  45290. },
  45291. },
  45292. [
  45293. {
  45294. name: "Normal",
  45295. height: math.unit(5 + 2/12, "feet"),
  45296. default: true
  45297. },
  45298. ]
  45299. ))
  45300. characterMakers.push(() => makeCharacter(
  45301. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45302. {
  45303. front: {
  45304. height: math.unit(5 + 9/12, "feet"),
  45305. name: "Front",
  45306. image: {
  45307. source: "./media/characters/aliya-cotton/front.svg",
  45308. extra: 577/564,
  45309. bottom: 29/606
  45310. }
  45311. },
  45312. },
  45313. [
  45314. {
  45315. name: "Normal",
  45316. height: math.unit(5 + 9/12, "feet"),
  45317. default: true
  45318. },
  45319. ]
  45320. ))
  45321. characterMakers.push(() => makeCharacter(
  45322. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45323. {
  45324. front: {
  45325. height: math.unit(2.7, "meters"),
  45326. weight: math.unit(25000, "lb"),
  45327. name: "Front",
  45328. image: {
  45329. source: "./media/characters/noah-luxray/front.svg",
  45330. extra: 1644/825,
  45331. bottom: 339/1983
  45332. }
  45333. },
  45334. side: {
  45335. height: math.unit(2.97, "meters"),
  45336. weight: math.unit(25000, "lb"),
  45337. name: "Side",
  45338. image: {
  45339. source: "./media/characters/noah-luxray/side.svg",
  45340. extra: 1319/650,
  45341. bottom: 163/1482
  45342. }
  45343. },
  45344. dick: {
  45345. height: math.unit(7.4, "feet"),
  45346. weight: math.unit(2500, "lb"),
  45347. name: "Dick",
  45348. image: {
  45349. source: "./media/characters/noah-luxray/dick.svg"
  45350. }
  45351. },
  45352. dickAlt: {
  45353. height: math.unit(10.83, "feet"),
  45354. weight: math.unit(2500, "lb"),
  45355. name: "Dick-alt",
  45356. image: {
  45357. source: "./media/characters/noah-luxray/dick-alt.svg"
  45358. }
  45359. },
  45360. },
  45361. [
  45362. {
  45363. name: "BIG",
  45364. height: math.unit(2.7, "meters"),
  45365. default: true
  45366. },
  45367. ]
  45368. ))
  45369. characterMakers.push(() => makeCharacter(
  45370. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45371. {
  45372. standing: {
  45373. height: math.unit(183, "cm"),
  45374. weight: math.unit(68, "kg"),
  45375. name: "Standing",
  45376. image: {
  45377. source: "./media/characters/arion/standing.svg",
  45378. extra: 1869/1807,
  45379. bottom: 93/1962
  45380. }
  45381. },
  45382. reclining: {
  45383. height: math.unit(70.5, "cm"),
  45384. weight: math.unit(68, "lb"),
  45385. name: "Reclining",
  45386. image: {
  45387. source: "./media/characters/arion/reclining.svg",
  45388. extra: 937/870,
  45389. bottom: 63/1000
  45390. }
  45391. },
  45392. },
  45393. [
  45394. {
  45395. name: "Colossus Size, Low",
  45396. height: math.unit(33, "meters"),
  45397. default: true
  45398. },
  45399. {
  45400. name: "Colossus Size, Mid",
  45401. height: math.unit(52, "meters")
  45402. },
  45403. {
  45404. name: "Colossus Size, High",
  45405. height: math.unit(60, "meters")
  45406. },
  45407. {
  45408. name: "Titan Size, Low",
  45409. height: math.unit(91, "meters"),
  45410. },
  45411. {
  45412. name: "Titan Size, Mid",
  45413. height: math.unit(122, "meters")
  45414. },
  45415. {
  45416. name: "Titan Size, High",
  45417. height: math.unit(162, "meters")
  45418. },
  45419. ]
  45420. ))
  45421. characterMakers.push(() => makeCharacter(
  45422. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45423. {
  45424. front: {
  45425. height: math.unit(53, "meters"),
  45426. name: "Front",
  45427. image: {
  45428. source: "./media/characters/stellar-marbey/front.svg",
  45429. extra: 1913/1805,
  45430. bottom: 92/2005
  45431. }
  45432. },
  45433. back: {
  45434. height: math.unit(53, "meters"),
  45435. name: "Back",
  45436. image: {
  45437. source: "./media/characters/stellar-marbey/back.svg",
  45438. extra: 1960/1851,
  45439. bottom: 28/1988
  45440. }
  45441. },
  45442. mouth: {
  45443. height: math.unit(3.5, "meters"),
  45444. name: "Mouth",
  45445. image: {
  45446. source: "./media/characters/stellar-marbey/mouth.svg"
  45447. }
  45448. },
  45449. },
  45450. [
  45451. {
  45452. name: "Macro",
  45453. height: math.unit(53, "meters"),
  45454. default: true
  45455. },
  45456. ]
  45457. ))
  45458. characterMakers.push(() => makeCharacter(
  45459. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45460. {
  45461. front: {
  45462. height: math.unit(8 + 1/12, "feet"),
  45463. weight: math.unit(233, "lb"),
  45464. name: "Front",
  45465. image: {
  45466. source: "./media/characters/matsu/front.svg",
  45467. extra: 832/772,
  45468. bottom: 40/872
  45469. }
  45470. },
  45471. back: {
  45472. height: math.unit(8 + 1/12, "feet"),
  45473. weight: math.unit(233, "lb"),
  45474. name: "Back",
  45475. image: {
  45476. source: "./media/characters/matsu/back.svg",
  45477. extra: 839/780,
  45478. bottom: 47/886
  45479. }
  45480. },
  45481. },
  45482. [
  45483. {
  45484. name: "Normal",
  45485. height: math.unit(8 + 1/12, "feet"),
  45486. default: true
  45487. },
  45488. ]
  45489. ))
  45490. characterMakers.push(() => makeCharacter(
  45491. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45492. {
  45493. front: {
  45494. height: math.unit(4, "feet"),
  45495. weight: math.unit(148, "lb"),
  45496. name: "Front",
  45497. image: {
  45498. source: "./media/characters/thiz/front.svg",
  45499. extra: 1913/1748,
  45500. bottom: 62/1975
  45501. }
  45502. },
  45503. },
  45504. [
  45505. {
  45506. name: "Normal",
  45507. height: math.unit(4, "feet"),
  45508. default: true
  45509. },
  45510. ]
  45511. ))
  45512. characterMakers.push(() => makeCharacter(
  45513. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45514. {
  45515. front: {
  45516. height: math.unit(7 + 6/12, "feet"),
  45517. weight: math.unit(267, "lb"),
  45518. name: "Front",
  45519. image: {
  45520. source: "./media/characters/marcel/front.svg",
  45521. extra: 1221/1096,
  45522. bottom: 76/1297
  45523. }
  45524. },
  45525. },
  45526. [
  45527. {
  45528. name: "Normal",
  45529. height: math.unit(7 + 6/12, "feet"),
  45530. default: true
  45531. },
  45532. ]
  45533. ))
  45534. characterMakers.push(() => makeCharacter(
  45535. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45536. {
  45537. side: {
  45538. height: math.unit(42, "meters"),
  45539. name: "Side",
  45540. image: {
  45541. source: "./media/characters/flake/side.svg",
  45542. extra: 1525/1306,
  45543. bottom: 209/1734
  45544. }
  45545. },
  45546. },
  45547. [
  45548. {
  45549. name: "Normal",
  45550. height: math.unit(42, "meters"),
  45551. default: true
  45552. },
  45553. ]
  45554. ))
  45555. characterMakers.push(() => makeCharacter(
  45556. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45557. {
  45558. dressed: {
  45559. height: math.unit(6 + 4/12, "feet"),
  45560. weight: math.unit(520, "lb"),
  45561. name: "Dressed",
  45562. image: {
  45563. source: "./media/characters/someonne/dressed.svg",
  45564. extra: 1020/1010,
  45565. bottom: 178/1198
  45566. }
  45567. },
  45568. undressed: {
  45569. height: math.unit(6 + 4/12, "feet"),
  45570. weight: math.unit(520, "lb"),
  45571. name: "Undressed",
  45572. image: {
  45573. source: "./media/characters/someonne/undressed.svg",
  45574. extra: 1019/1014,
  45575. bottom: 169/1188
  45576. }
  45577. },
  45578. },
  45579. [
  45580. {
  45581. name: "Normal",
  45582. height: math.unit(6 + 4/12, "feet"),
  45583. default: true
  45584. },
  45585. ]
  45586. ))
  45587. characterMakers.push(() => makeCharacter(
  45588. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45589. {
  45590. front: {
  45591. height: math.unit(3, "feet"),
  45592. weight: math.unit(30, "lb"),
  45593. name: "Front",
  45594. image: {
  45595. source: "./media/characters/till/front.svg",
  45596. extra: 892/823,
  45597. bottom: 55/947
  45598. }
  45599. },
  45600. },
  45601. [
  45602. {
  45603. name: "Normal",
  45604. height: math.unit(3, "feet"),
  45605. default: true
  45606. },
  45607. ]
  45608. ))
  45609. characterMakers.push(() => makeCharacter(
  45610. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45611. {
  45612. front: {
  45613. height: math.unit(9 + 8/12, "feet"),
  45614. weight: math.unit(800, "lb"),
  45615. name: "Front",
  45616. image: {
  45617. source: "./media/characters/sydney-heki/front.svg",
  45618. extra: 1360/1300,
  45619. bottom: 22/1382
  45620. }
  45621. },
  45622. back: {
  45623. height: math.unit(9 + 8/12, "feet"),
  45624. weight: math.unit(800, "lb"),
  45625. name: "Back",
  45626. image: {
  45627. source: "./media/characters/sydney-heki/back.svg",
  45628. extra: 1356/1293,
  45629. bottom: 12/1368
  45630. }
  45631. },
  45632. frontDressed: {
  45633. height: math.unit(9 + 8/12, "feet"),
  45634. weight: math.unit(800, "lb"),
  45635. name: "Front-dressed",
  45636. image: {
  45637. source: "./media/characters/sydney-heki/front-dressed.svg",
  45638. extra: 1360/1300,
  45639. bottom: 22/1382
  45640. }
  45641. },
  45642. },
  45643. [
  45644. {
  45645. name: "Normal",
  45646. height: math.unit(9 + 8/12, "feet"),
  45647. default: true
  45648. },
  45649. {
  45650. name: "Macro",
  45651. height: math.unit(500, "feet")
  45652. },
  45653. {
  45654. name: "Megamacro",
  45655. height: math.unit(3.6, "miles")
  45656. },
  45657. ]
  45658. ))
  45659. characterMakers.push(() => makeCharacter(
  45660. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45661. {
  45662. front: {
  45663. height: math.unit(200, "cm"),
  45664. weight: math.unit(250, "lb"),
  45665. name: "Front",
  45666. image: {
  45667. source: "./media/characters/fowler-karlsson/front.svg",
  45668. extra: 897/845,
  45669. bottom: 123/1020
  45670. }
  45671. },
  45672. back: {
  45673. height: math.unit(200, "cm"),
  45674. weight: math.unit(250, "lb"),
  45675. name: "Back",
  45676. image: {
  45677. source: "./media/characters/fowler-karlsson/back.svg",
  45678. extra: 999/944,
  45679. bottom: 26/1025
  45680. }
  45681. },
  45682. dick: {
  45683. height: math.unit(1.92, "feet"),
  45684. weight: math.unit(150, "lb"),
  45685. name: "Dick",
  45686. image: {
  45687. source: "./media/characters/fowler-karlsson/dick.svg"
  45688. }
  45689. },
  45690. },
  45691. [
  45692. {
  45693. name: "Normal",
  45694. height: math.unit(200, "cm"),
  45695. default: true
  45696. },
  45697. {
  45698. name: "Smaller Macro",
  45699. height: math.unit(90, "m")
  45700. },
  45701. {
  45702. name: "Macro",
  45703. height: math.unit(150, "m")
  45704. },
  45705. {
  45706. name: "Bigger Macro",
  45707. height: math.unit(300, "m")
  45708. },
  45709. ]
  45710. ))
  45711. characterMakers.push(() => makeCharacter(
  45712. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45713. {
  45714. side: {
  45715. height: math.unit(8 + 2/12, "feet"),
  45716. weight: math.unit(1, "tonne"),
  45717. name: "Side",
  45718. image: {
  45719. source: "./media/characters/rylide/side.svg",
  45720. extra: 1318/1034,
  45721. bottom: 106/1424
  45722. }
  45723. },
  45724. sitting: {
  45725. height: math.unit(303, "cm"),
  45726. weight: math.unit(1, "tonne"),
  45727. name: "Sitting",
  45728. image: {
  45729. source: "./media/characters/rylide/sitting.svg",
  45730. extra: 1303/1103,
  45731. bottom: 36/1339
  45732. }
  45733. },
  45734. },
  45735. [
  45736. {
  45737. name: "Normal",
  45738. height: math.unit(8 + 2/12, "feet"),
  45739. default: true
  45740. },
  45741. ]
  45742. ))
  45743. characterMakers.push(() => makeCharacter(
  45744. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45745. {
  45746. front: {
  45747. height: math.unit(5 + 10/12, "feet"),
  45748. weight: math.unit(160, "lb"),
  45749. name: "Front",
  45750. image: {
  45751. source: "./media/characters/pudask/front.svg",
  45752. extra: 1616/1590,
  45753. bottom: 161/1777
  45754. }
  45755. },
  45756. },
  45757. [
  45758. {
  45759. name: "Ferret Height",
  45760. height: math.unit(2 + 5/12, "feet")
  45761. },
  45762. {
  45763. name: "Canon Height",
  45764. height: math.unit(5 + 10/12, "feet"),
  45765. default: true
  45766. },
  45767. ]
  45768. ))
  45769. characterMakers.push(() => makeCharacter(
  45770. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45771. {
  45772. front: {
  45773. height: math.unit(3 + 6/12, "feet"),
  45774. weight: math.unit(60, "lb"),
  45775. name: "Front",
  45776. image: {
  45777. source: "./media/characters/ramita/front.svg",
  45778. extra: 1402/1232,
  45779. bottom: 62/1464
  45780. }
  45781. },
  45782. dressed: {
  45783. height: math.unit(3 + 6/12, "feet"),
  45784. weight: math.unit(60, "lb"),
  45785. name: "Dressed",
  45786. image: {
  45787. source: "./media/characters/ramita/dressed.svg",
  45788. extra: 1534/1249,
  45789. bottom: 50/1584
  45790. }
  45791. },
  45792. },
  45793. [
  45794. {
  45795. name: "Normal",
  45796. height: math.unit(3 + 6/12, "feet"),
  45797. default: true
  45798. },
  45799. ]
  45800. ))
  45801. characterMakers.push(() => makeCharacter(
  45802. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45803. {
  45804. front: {
  45805. height: math.unit(8, "feet"),
  45806. name: "Front",
  45807. image: {
  45808. source: "./media/characters/ark/front.svg",
  45809. extra: 772/693,
  45810. bottom: 45/817
  45811. }
  45812. },
  45813. },
  45814. [
  45815. {
  45816. name: "Normal",
  45817. height: math.unit(8, "feet"),
  45818. default: true
  45819. },
  45820. ]
  45821. ))
  45822. characterMakers.push(() => makeCharacter(
  45823. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45824. {
  45825. front: {
  45826. height: math.unit(6, "feet"),
  45827. weight: math.unit(250, "lb"),
  45828. volume: math.unit(5/8, "gallons"),
  45829. name: "Front",
  45830. image: {
  45831. source: "./media/characters/ludwig-horn/front.svg",
  45832. extra: 1782/1635,
  45833. bottom: 96/1878
  45834. }
  45835. },
  45836. back: {
  45837. height: math.unit(6, "feet"),
  45838. weight: math.unit(250, "lb"),
  45839. volume: math.unit(5/8, "gallons"),
  45840. name: "Back",
  45841. image: {
  45842. source: "./media/characters/ludwig-horn/back.svg",
  45843. extra: 1874/1729,
  45844. bottom: 27/1901
  45845. }
  45846. },
  45847. dick: {
  45848. height: math.unit(1.05, "feet"),
  45849. weight: math.unit(15, "lb"),
  45850. volume: math.unit(5/8, "gallons"),
  45851. name: "Dick",
  45852. image: {
  45853. source: "./media/characters/ludwig-horn/dick.svg"
  45854. }
  45855. },
  45856. },
  45857. [
  45858. {
  45859. name: "Small",
  45860. height: math.unit(6, "feet")
  45861. },
  45862. {
  45863. name: "Typical",
  45864. height: math.unit(12, "feet"),
  45865. default: true
  45866. },
  45867. {
  45868. name: "Building",
  45869. height: math.unit(80, "feet")
  45870. },
  45871. {
  45872. name: "Town",
  45873. height: math.unit(800, "feet")
  45874. },
  45875. {
  45876. name: "Kingdom",
  45877. height: math.unit(80000, "feet")
  45878. },
  45879. {
  45880. name: "Planet",
  45881. height: math.unit(8000000, "feet")
  45882. },
  45883. {
  45884. name: "Universe",
  45885. height: math.unit(8000000000, "feet")
  45886. },
  45887. {
  45888. name: "Transcended",
  45889. height: math.unit(8e27, "feet")
  45890. },
  45891. ]
  45892. ))
  45893. characterMakers.push(() => makeCharacter(
  45894. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45895. {
  45896. front: {
  45897. height: math.unit(5, "feet"),
  45898. weight: math.unit(50, "kg"),
  45899. name: "Front",
  45900. image: {
  45901. source: "./media/characters/biot-avery/front.svg",
  45902. extra: 1295/1232,
  45903. bottom: 86/1381
  45904. }
  45905. },
  45906. },
  45907. [
  45908. {
  45909. name: "Normal",
  45910. height: math.unit(5, "feet"),
  45911. default: true
  45912. },
  45913. ]
  45914. ))
  45915. characterMakers.push(() => makeCharacter(
  45916. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45917. {
  45918. front: {
  45919. height: math.unit(6, "feet"),
  45920. name: "Front",
  45921. image: {
  45922. source: "./media/characters/kitsune-kiro/front.svg",
  45923. extra: 1270/1158,
  45924. bottom: 42/1312
  45925. }
  45926. },
  45927. frontAlt: {
  45928. height: math.unit(6, "feet"),
  45929. name: "Front-alt",
  45930. image: {
  45931. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45932. extra: 1130/1081,
  45933. bottom: 36/1166
  45934. }
  45935. },
  45936. },
  45937. [
  45938. {
  45939. name: "Smol",
  45940. height: math.unit(3, "feet")
  45941. },
  45942. {
  45943. name: "Normal",
  45944. height: math.unit(6, "feet"),
  45945. default: true
  45946. },
  45947. ]
  45948. ))
  45949. characterMakers.push(() => makeCharacter(
  45950. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45951. {
  45952. front: {
  45953. height: math.unit(6, "feet"),
  45954. weight: math.unit(125, "lb"),
  45955. name: "Front",
  45956. image: {
  45957. source: "./media/characters/jack-thatcher/front.svg",
  45958. extra: 1474/1370,
  45959. bottom: 26/1500
  45960. }
  45961. },
  45962. back: {
  45963. height: math.unit(6, "feet"),
  45964. weight: math.unit(125, "lb"),
  45965. name: "Back",
  45966. image: {
  45967. source: "./media/characters/jack-thatcher/back.svg",
  45968. extra: 1489/1384,
  45969. bottom: 18/1507
  45970. }
  45971. },
  45972. },
  45973. [
  45974. {
  45975. name: "Normal",
  45976. height: math.unit(6, "feet"),
  45977. default: true
  45978. },
  45979. {
  45980. name: "Macro",
  45981. height: math.unit(75, "feet")
  45982. },
  45983. {
  45984. name: "Macro-er",
  45985. height: math.unit(250, "feet")
  45986. },
  45987. ]
  45988. ))
  45989. characterMakers.push(() => makeCharacter(
  45990. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45991. {
  45992. front: {
  45993. height: math.unit(7, "feet"),
  45994. weight: math.unit(110, "kg"),
  45995. name: "Front",
  45996. image: {
  45997. source: "./media/characters/max-hyper/front.svg",
  45998. extra: 1969/1881,
  45999. bottom: 49/2018
  46000. }
  46001. },
  46002. },
  46003. [
  46004. {
  46005. name: "Normal",
  46006. height: math.unit(7, "feet"),
  46007. default: true
  46008. },
  46009. ]
  46010. ))
  46011. characterMakers.push(() => makeCharacter(
  46012. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46013. {
  46014. front: {
  46015. height: math.unit(5 + 5/12, "feet"),
  46016. weight: math.unit(160, "lb"),
  46017. name: "Front",
  46018. image: {
  46019. source: "./media/characters/spook/front.svg",
  46020. extra: 794/791,
  46021. bottom: 54/848
  46022. }
  46023. },
  46024. back: {
  46025. height: math.unit(5 + 5/12, "feet"),
  46026. weight: math.unit(160, "lb"),
  46027. name: "Back",
  46028. image: {
  46029. source: "./media/characters/spook/back.svg",
  46030. extra: 812/798,
  46031. bottom: 32/844
  46032. }
  46033. },
  46034. },
  46035. [
  46036. {
  46037. name: "Normal",
  46038. height: math.unit(5 + 5/12, "feet"),
  46039. default: true
  46040. },
  46041. ]
  46042. ))
  46043. characterMakers.push(() => makeCharacter(
  46044. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46045. {
  46046. front: {
  46047. height: math.unit(18, "feet"),
  46048. name: "Front",
  46049. image: {
  46050. source: "./media/characters/xeaduulix/front.svg",
  46051. extra: 1380/1166,
  46052. bottom: 110/1490
  46053. }
  46054. },
  46055. back: {
  46056. height: math.unit(18, "feet"),
  46057. name: "Back",
  46058. image: {
  46059. source: "./media/characters/xeaduulix/back.svg",
  46060. extra: 1592/1170,
  46061. bottom: 128/1720
  46062. }
  46063. },
  46064. frontNsfw: {
  46065. height: math.unit(18, "feet"),
  46066. name: "Front (NSFW)",
  46067. image: {
  46068. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46069. extra: 1380/1166,
  46070. bottom: 110/1490
  46071. }
  46072. },
  46073. backNsfw: {
  46074. height: math.unit(18, "feet"),
  46075. name: "Back (NSFW)",
  46076. image: {
  46077. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46078. extra: 1592/1170,
  46079. bottom: 128/1720
  46080. }
  46081. },
  46082. },
  46083. [
  46084. {
  46085. name: "Normal",
  46086. height: math.unit(18, "feet"),
  46087. default: true
  46088. },
  46089. ]
  46090. ))
  46091. characterMakers.push(() => makeCharacter(
  46092. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46093. {
  46094. spreadWings: {
  46095. height: math.unit(20, "feet"),
  46096. name: "Spread Wings",
  46097. image: {
  46098. source: "./media/characters/fledge/spread-wings.svg",
  46099. extra: 693/635,
  46100. bottom: 26/719
  46101. }
  46102. },
  46103. front: {
  46104. height: math.unit(20, "feet"),
  46105. name: "Front",
  46106. image: {
  46107. source: "./media/characters/fledge/front.svg",
  46108. extra: 684/637,
  46109. bottom: 18/702
  46110. }
  46111. },
  46112. frontAlt: {
  46113. height: math.unit(20, "feet"),
  46114. name: "Front (Alt)",
  46115. image: {
  46116. source: "./media/characters/fledge/front-alt.svg",
  46117. extra: 708/664,
  46118. bottom: 13/721
  46119. }
  46120. },
  46121. back: {
  46122. height: math.unit(20, "feet"),
  46123. name: "Back",
  46124. image: {
  46125. source: "./media/characters/fledge/back.svg",
  46126. extra: 718/634,
  46127. bottom: 22/740
  46128. }
  46129. },
  46130. head: {
  46131. height: math.unit(5.55, "feet"),
  46132. name: "Head",
  46133. image: {
  46134. source: "./media/characters/fledge/head.svg"
  46135. }
  46136. },
  46137. headAlt: {
  46138. height: math.unit(5.1, "feet"),
  46139. name: "Head (Alt)",
  46140. image: {
  46141. source: "./media/characters/fledge/head-alt.svg"
  46142. }
  46143. },
  46144. },
  46145. [
  46146. {
  46147. name: "Small",
  46148. height: math.unit(6 + 2/12, "feet")
  46149. },
  46150. {
  46151. name: "Big",
  46152. height: math.unit(20, "feet"),
  46153. default: true
  46154. },
  46155. {
  46156. name: "Giant",
  46157. height: math.unit(100, "feet")
  46158. },
  46159. {
  46160. name: "Macro",
  46161. height: math.unit(200, "feet")
  46162. },
  46163. ]
  46164. ))
  46165. characterMakers.push(() => makeCharacter(
  46166. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46167. {
  46168. front: {
  46169. height: math.unit(1, "meter"),
  46170. name: "Front",
  46171. image: {
  46172. source: "./media/characters/atlas-morenai/front.svg",
  46173. extra: 1275/1043,
  46174. bottom: 19/1294
  46175. }
  46176. },
  46177. back: {
  46178. height: math.unit(1, "meter"),
  46179. name: "Back",
  46180. image: {
  46181. source: "./media/characters/atlas-morenai/back.svg",
  46182. extra: 1141/1001,
  46183. bottom: 25/1166
  46184. }
  46185. },
  46186. },
  46187. [
  46188. {
  46189. name: "Normal",
  46190. height: math.unit(1, "meter"),
  46191. default: true
  46192. },
  46193. {
  46194. name: "Magic-Infused",
  46195. height: math.unit(5, "meters")
  46196. },
  46197. ]
  46198. ))
  46199. characterMakers.push(() => makeCharacter(
  46200. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46201. {
  46202. front: {
  46203. height: math.unit(5, "meters"),
  46204. name: "Front",
  46205. image: {
  46206. source: "./media/characters/cintia/front.svg",
  46207. extra: 1312/1228,
  46208. bottom: 38/1350
  46209. }
  46210. },
  46211. back: {
  46212. height: math.unit(5, "meters"),
  46213. name: "Back",
  46214. image: {
  46215. source: "./media/characters/cintia/back.svg",
  46216. extra: 1260/1166,
  46217. bottom: 98/1358
  46218. }
  46219. },
  46220. frontDick: {
  46221. height: math.unit(5, "meters"),
  46222. name: "Front (Dick)",
  46223. image: {
  46224. source: "./media/characters/cintia/front-dick.svg",
  46225. extra: 1312/1228,
  46226. bottom: 38/1350
  46227. }
  46228. },
  46229. backDick: {
  46230. height: math.unit(5, "meters"),
  46231. name: "Back (Dick)",
  46232. image: {
  46233. source: "./media/characters/cintia/back-dick.svg",
  46234. extra: 1260/1166,
  46235. bottom: 98/1358
  46236. }
  46237. },
  46238. bust: {
  46239. height: math.unit(1.97, "meters"),
  46240. name: "Bust",
  46241. image: {
  46242. source: "./media/characters/cintia/bust.svg",
  46243. extra: 617/565,
  46244. bottom: 0/617
  46245. }
  46246. },
  46247. },
  46248. [
  46249. {
  46250. name: "Normal",
  46251. height: math.unit(5, "meters"),
  46252. default: true
  46253. },
  46254. ]
  46255. ))
  46256. characterMakers.push(() => makeCharacter(
  46257. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46258. {
  46259. side: {
  46260. height: math.unit(100, "feet"),
  46261. name: "Side",
  46262. image: {
  46263. source: "./media/characters/denora/side.svg",
  46264. extra: 875/803,
  46265. bottom: 9/884
  46266. }
  46267. },
  46268. },
  46269. [
  46270. {
  46271. name: "Standard",
  46272. height: math.unit(100, "feet"),
  46273. default: true
  46274. },
  46275. {
  46276. name: "Grand",
  46277. height: math.unit(1000, "feet")
  46278. },
  46279. {
  46280. name: "Conquering",
  46281. height: math.unit(10000, "feet")
  46282. },
  46283. ]
  46284. ))
  46285. characterMakers.push(() => makeCharacter(
  46286. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46287. {
  46288. dressed: {
  46289. height: math.unit(8 + 5/12, "feet"),
  46290. weight: math.unit(700, "lb"),
  46291. name: "Dressed",
  46292. image: {
  46293. source: "./media/characters/kiva/dressed.svg",
  46294. extra: 1102/1055,
  46295. bottom: 60/1162
  46296. }
  46297. },
  46298. nude: {
  46299. height: math.unit(8 + 5/12, "feet"),
  46300. weight: math.unit(700, "lb"),
  46301. name: "Nude",
  46302. image: {
  46303. source: "./media/characters/kiva/nude.svg",
  46304. extra: 1102/1055,
  46305. bottom: 60/1162
  46306. }
  46307. },
  46308. },
  46309. [
  46310. {
  46311. name: "Base Height",
  46312. height: math.unit(8 + 5/12, "feet"),
  46313. default: true
  46314. },
  46315. {
  46316. name: "Macro",
  46317. height: math.unit(100, "feet")
  46318. },
  46319. {
  46320. name: "Max",
  46321. height: math.unit(3280, "feet")
  46322. },
  46323. ]
  46324. ))
  46325. characterMakers.push(() => makeCharacter(
  46326. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46327. {
  46328. front: {
  46329. height: math.unit(6 + 8/12, "feet"),
  46330. weight: math.unit(250, "lb"),
  46331. name: "Front",
  46332. image: {
  46333. source: "./media/characters/ztragon/front.svg",
  46334. extra: 1825/1684,
  46335. bottom: 98/1923
  46336. }
  46337. },
  46338. },
  46339. [
  46340. {
  46341. name: "Normal",
  46342. height: math.unit(6 + 8/12, "feet"),
  46343. default: true
  46344. },
  46345. {
  46346. name: "Macro",
  46347. height: math.unit(80, "feet")
  46348. },
  46349. ]
  46350. ))
  46351. characterMakers.push(() => makeCharacter(
  46352. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46353. {
  46354. front: {
  46355. height: math.unit(10.4, "feet"),
  46356. weight: math.unit(2, "tons"),
  46357. name: "Front",
  46358. image: {
  46359. source: "./media/characters/yesenia/front.svg",
  46360. extra: 1479/1474,
  46361. bottom: 233/1712
  46362. }
  46363. },
  46364. },
  46365. [
  46366. {
  46367. name: "Normal",
  46368. height: math.unit(10.4, "feet"),
  46369. default: true
  46370. },
  46371. ]
  46372. ))
  46373. characterMakers.push(() => makeCharacter(
  46374. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46375. {
  46376. normal: {
  46377. height: math.unit(6 + 1/12, "feet"),
  46378. weight: math.unit(180, "lb"),
  46379. name: "Normal",
  46380. image: {
  46381. source: "./media/characters/leanne-lycheborne/normal.svg",
  46382. extra: 1748/1660,
  46383. bottom: 98/1846
  46384. }
  46385. },
  46386. were: {
  46387. height: math.unit(12, "feet"),
  46388. weight: math.unit(1600, "lb"),
  46389. name: "Were",
  46390. image: {
  46391. source: "./media/characters/leanne-lycheborne/were.svg",
  46392. extra: 1485/1432,
  46393. bottom: 66/1551
  46394. }
  46395. },
  46396. },
  46397. [
  46398. {
  46399. name: "Normal",
  46400. height: math.unit(6 + 1/12, "feet"),
  46401. default: true
  46402. },
  46403. ]
  46404. ))
  46405. characterMakers.push(() => makeCharacter(
  46406. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46407. {
  46408. side: {
  46409. height: math.unit(13, "feet"),
  46410. name: "Side",
  46411. image: {
  46412. source: "./media/characters/kira-tyler/side.svg",
  46413. extra: 693/393,
  46414. bottom: 58/751
  46415. }
  46416. },
  46417. },
  46418. [
  46419. {
  46420. name: "Normal",
  46421. height: math.unit(13, "feet"),
  46422. default: true
  46423. },
  46424. ]
  46425. ))
  46426. characterMakers.push(() => makeCharacter(
  46427. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46428. {
  46429. front: {
  46430. height: math.unit(10.3, "feet"),
  46431. weight: math.unit(150, "lb"),
  46432. name: "Front",
  46433. image: {
  46434. source: "./media/characters/blaze/front.svg",
  46435. extra: 1378/1286,
  46436. bottom: 172/1550
  46437. }
  46438. },
  46439. },
  46440. [
  46441. {
  46442. name: "Normal",
  46443. height: math.unit(10.3, "feet"),
  46444. default: true
  46445. },
  46446. ]
  46447. ))
  46448. characterMakers.push(() => makeCharacter(
  46449. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46450. {
  46451. side: {
  46452. height: math.unit(2, "meters"),
  46453. weight: math.unit(400, "kg"),
  46454. name: "Side",
  46455. image: {
  46456. source: "./media/characters/anu/side.svg",
  46457. extra: 506/394,
  46458. bottom: 18/524
  46459. }
  46460. },
  46461. },
  46462. [
  46463. {
  46464. name: "Humanoid",
  46465. height: math.unit(2, "meters")
  46466. },
  46467. {
  46468. name: "Normal",
  46469. height: math.unit(5, "meters"),
  46470. default: true
  46471. },
  46472. ]
  46473. ))
  46474. characterMakers.push(() => makeCharacter(
  46475. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46476. {
  46477. front: {
  46478. height: math.unit(5 + 5/12, "feet"),
  46479. weight: math.unit(170, "lb"),
  46480. name: "Front",
  46481. image: {
  46482. source: "./media/characters/synx-the-lynx/front.svg",
  46483. extra: 1893/1745,
  46484. bottom: 17/1910
  46485. }
  46486. },
  46487. side: {
  46488. height: math.unit(5 + 5/12, "feet"),
  46489. weight: math.unit(170, "lb"),
  46490. name: "Side",
  46491. image: {
  46492. source: "./media/characters/synx-the-lynx/side.svg",
  46493. extra: 1884/1740,
  46494. bottom: 39/1923
  46495. }
  46496. },
  46497. back: {
  46498. height: math.unit(5 + 5/12, "feet"),
  46499. weight: math.unit(170, "lb"),
  46500. name: "Back",
  46501. image: {
  46502. source: "./media/characters/synx-the-lynx/back.svg",
  46503. extra: 1903/1755,
  46504. bottom: 14/1917
  46505. }
  46506. },
  46507. },
  46508. [
  46509. {
  46510. name: "Normal",
  46511. height: math.unit(5 + 5/12, "feet"),
  46512. default: true
  46513. },
  46514. ]
  46515. ))
  46516. characterMakers.push(() => makeCharacter(
  46517. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46518. {
  46519. back: {
  46520. height: math.unit(15, "feet"),
  46521. name: "Back",
  46522. image: {
  46523. source: "./media/characters/nadezda-fex/back.svg",
  46524. extra: 1695/1481,
  46525. bottom: 25/1720
  46526. }
  46527. },
  46528. },
  46529. [
  46530. {
  46531. name: "Normal",
  46532. height: math.unit(15, "feet"),
  46533. default: true
  46534. },
  46535. {
  46536. name: "Macro",
  46537. height: math.unit(2.5, "miles")
  46538. },
  46539. {
  46540. name: "Goddess",
  46541. height: math.unit(2, "multiverses")
  46542. },
  46543. ]
  46544. ))
  46545. characterMakers.push(() => makeCharacter(
  46546. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46547. {
  46548. front: {
  46549. height: math.unit(216, "cm"),
  46550. name: "Front",
  46551. image: {
  46552. source: "./media/characters/lev/front.svg",
  46553. extra: 1728/1670,
  46554. bottom: 82/1810
  46555. }
  46556. },
  46557. back: {
  46558. height: math.unit(216, "cm"),
  46559. name: "Back",
  46560. image: {
  46561. source: "./media/characters/lev/back.svg",
  46562. extra: 1738/1675,
  46563. bottom: 24/1762
  46564. }
  46565. },
  46566. dressed: {
  46567. height: math.unit(216, "cm"),
  46568. name: "Dressed",
  46569. image: {
  46570. source: "./media/characters/lev/dressed.svg",
  46571. extra: 1397/1351,
  46572. bottom: 73/1470
  46573. }
  46574. },
  46575. head: {
  46576. height: math.unit(0.51, "meter"),
  46577. name: "Head",
  46578. image: {
  46579. source: "./media/characters/lev/head.svg"
  46580. }
  46581. },
  46582. },
  46583. [
  46584. {
  46585. name: "Normal",
  46586. height: math.unit(216, "cm"),
  46587. default: true
  46588. },
  46589. {
  46590. name: "Relatively Macro",
  46591. height: math.unit(80, "meters")
  46592. },
  46593. {
  46594. name: "Megamacro",
  46595. height: math.unit(21600, "meters")
  46596. },
  46597. {
  46598. name: "Megamacro+",
  46599. height: math.unit(64800, "meters")
  46600. },
  46601. ]
  46602. ))
  46603. characterMakers.push(() => makeCharacter(
  46604. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46605. {
  46606. front: {
  46607. height: math.unit(2, "meters"),
  46608. weight: math.unit(80, "kg"),
  46609. name: "Front",
  46610. image: {
  46611. source: "./media/characters/moka/front.svg",
  46612. extra: 1337/1255,
  46613. bottom: 58/1395
  46614. }
  46615. },
  46616. },
  46617. [
  46618. {
  46619. name: "Micro",
  46620. height: math.unit(15, "cm")
  46621. },
  46622. {
  46623. name: "Normal",
  46624. height: math.unit(2, "meters"),
  46625. default: true
  46626. },
  46627. {
  46628. name: "Macro",
  46629. height: math.unit(20, "meters"),
  46630. },
  46631. ]
  46632. ))
  46633. characterMakers.push(() => makeCharacter(
  46634. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46635. {
  46636. front: {
  46637. height: math.unit(9, "feet"),
  46638. weight: math.unit(240, "lb"),
  46639. name: "Front",
  46640. image: {
  46641. source: "./media/characters/kuzco/front.svg",
  46642. extra: 1593/1487,
  46643. bottom: 32/1625
  46644. }
  46645. },
  46646. side: {
  46647. height: math.unit(9, "feet"),
  46648. weight: math.unit(240, "lb"),
  46649. name: "Side",
  46650. image: {
  46651. source: "./media/characters/kuzco/side.svg",
  46652. extra: 1575/1485,
  46653. bottom: 30/1605
  46654. }
  46655. },
  46656. back: {
  46657. height: math.unit(9, "feet"),
  46658. weight: math.unit(240, "lb"),
  46659. name: "Back",
  46660. image: {
  46661. source: "./media/characters/kuzco/back.svg",
  46662. extra: 1603/1514,
  46663. bottom: 14/1617
  46664. }
  46665. },
  46666. },
  46667. [
  46668. {
  46669. name: "Normal",
  46670. height: math.unit(9, "feet"),
  46671. default: true
  46672. },
  46673. ]
  46674. ))
  46675. characterMakers.push(() => makeCharacter(
  46676. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46677. {
  46678. side: {
  46679. height: math.unit(2, "meters"),
  46680. weight: math.unit(300, "kg"),
  46681. name: "Side",
  46682. image: {
  46683. source: "./media/characters/ceruleus/side.svg",
  46684. extra: 1068/974,
  46685. bottom: 126/1194
  46686. }
  46687. },
  46688. },
  46689. [
  46690. {
  46691. name: "Normal",
  46692. height: math.unit(16, "meters"),
  46693. default: true
  46694. },
  46695. ]
  46696. ))
  46697. characterMakers.push(() => makeCharacter(
  46698. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46699. {
  46700. front: {
  46701. height: math.unit(9, "feet"),
  46702. weight: math.unit(500, "kg"),
  46703. name: "Front",
  46704. image: {
  46705. source: "./media/characters/acouya/front.svg",
  46706. extra: 1660/1473,
  46707. bottom: 28/1688
  46708. }
  46709. },
  46710. },
  46711. [
  46712. {
  46713. name: "Normal",
  46714. height: math.unit(9, "feet"),
  46715. default: true
  46716. },
  46717. ]
  46718. ))
  46719. characterMakers.push(() => makeCharacter(
  46720. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46721. {
  46722. front: {
  46723. height: math.unit(5 + 6/12, "feet"),
  46724. weight: math.unit(195, "lb"),
  46725. name: "Front",
  46726. image: {
  46727. source: "./media/characters/vant/front.svg",
  46728. extra: 1396/1320,
  46729. bottom: 20/1416
  46730. }
  46731. },
  46732. back: {
  46733. height: math.unit(5 + 6/12, "feet"),
  46734. weight: math.unit(195, "lb"),
  46735. name: "Back",
  46736. image: {
  46737. source: "./media/characters/vant/back.svg",
  46738. extra: 1396/1320,
  46739. bottom: 20/1416
  46740. }
  46741. },
  46742. maw: {
  46743. height: math.unit(0.75, "feet"),
  46744. name: "Maw",
  46745. image: {
  46746. source: "./media/characters/vant/maw.svg"
  46747. }
  46748. },
  46749. paw: {
  46750. height: math.unit(1.07, "feet"),
  46751. name: "Paw",
  46752. image: {
  46753. source: "./media/characters/vant/paw.svg"
  46754. }
  46755. },
  46756. },
  46757. [
  46758. {
  46759. name: "Micro",
  46760. height: math.unit(0.25, "inches")
  46761. },
  46762. {
  46763. name: "Normal",
  46764. height: math.unit(5 + 6/12, "feet"),
  46765. default: true
  46766. },
  46767. {
  46768. name: "Macro",
  46769. height: math.unit(75, "feet")
  46770. },
  46771. ]
  46772. ))
  46773. characterMakers.push(() => makeCharacter(
  46774. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46775. {
  46776. front: {
  46777. height: math.unit(30, "meters"),
  46778. weight: math.unit(363, "tons"),
  46779. name: "Front",
  46780. image: {
  46781. source: "./media/characters/ahra/front.svg",
  46782. extra: 1914/1814,
  46783. bottom: 46/1960
  46784. }
  46785. },
  46786. },
  46787. [
  46788. {
  46789. name: "Macro",
  46790. height: math.unit(30, "meters"),
  46791. default: true
  46792. },
  46793. ]
  46794. ))
  46795. characterMakers.push(() => makeCharacter(
  46796. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46797. {
  46798. undressed: {
  46799. height: math.unit(2, "m"),
  46800. weight: math.unit(250, "kg"),
  46801. name: "Undressed",
  46802. image: {
  46803. source: "./media/characters/coriander/undressed.svg",
  46804. extra: 1757/1606,
  46805. bottom: 107/1864
  46806. }
  46807. },
  46808. dressed: {
  46809. height: math.unit(2, "m"),
  46810. weight: math.unit(250, "kg"),
  46811. name: "Dressed",
  46812. image: {
  46813. source: "./media/characters/coriander/dressed.svg",
  46814. extra: 1757/1606,
  46815. bottom: 107/1864
  46816. }
  46817. },
  46818. },
  46819. [
  46820. {
  46821. name: "Normal",
  46822. height: math.unit(4, "meters"),
  46823. default: true
  46824. },
  46825. {
  46826. name: "XL",
  46827. height: math.unit(6, "meters")
  46828. },
  46829. {
  46830. name: "XXL",
  46831. height: math.unit(8, "meters")
  46832. },
  46833. ]
  46834. ))
  46835. characterMakers.push(() => makeCharacter(
  46836. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46837. {
  46838. front: {
  46839. height: math.unit(6, "feet"),
  46840. name: "Front",
  46841. image: {
  46842. source: "./media/characters/syrinx/front.svg",
  46843. extra: 1557/1259,
  46844. bottom: 171/1728
  46845. }
  46846. },
  46847. },
  46848. [
  46849. {
  46850. name: "Normal",
  46851. height: math.unit(6 + 3/12, "feet"),
  46852. default: true
  46853. },
  46854. ]
  46855. ))
  46856. characterMakers.push(() => makeCharacter(
  46857. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46858. {
  46859. front: {
  46860. height: math.unit(11 + 6/12, "feet"),
  46861. weight: math.unit(1.5, "tons"),
  46862. name: "Front",
  46863. image: {
  46864. source: "./media/characters/bor/front.svg",
  46865. extra: 1189/1109,
  46866. bottom: 170/1359
  46867. }
  46868. },
  46869. },
  46870. [
  46871. {
  46872. name: "Normal",
  46873. height: math.unit(11 + 6/12, "feet"),
  46874. default: true
  46875. },
  46876. {
  46877. name: "Macro",
  46878. height: math.unit(32 + 9/12, "feet")
  46879. },
  46880. ]
  46881. ))
  46882. characterMakers.push(() => makeCharacter(
  46883. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46884. {
  46885. anthro: {
  46886. height: math.unit(9, "feet"),
  46887. weight: math.unit(2076, "lb"),
  46888. name: "Anthro",
  46889. image: {
  46890. source: "./media/characters/abacus/anthro.svg",
  46891. extra: 1540/1494,
  46892. bottom: 233/1773
  46893. }
  46894. },
  46895. pigeon: {
  46896. height: math.unit(1, "feet"),
  46897. name: "Pigeon",
  46898. image: {
  46899. source: "./media/characters/abacus/pigeon.svg",
  46900. extra: 528/525,
  46901. bottom: 46/574
  46902. }
  46903. },
  46904. },
  46905. [
  46906. {
  46907. name: "Normal",
  46908. height: math.unit(9, "feet"),
  46909. default: true
  46910. },
  46911. ]
  46912. ))
  46913. characterMakers.push(() => makeCharacter(
  46914. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46915. {
  46916. side: {
  46917. height: math.unit(6, "feet"),
  46918. name: "Side",
  46919. image: {
  46920. source: "./media/characters/delkhan/side.svg",
  46921. extra: 1884/1786,
  46922. bottom: 308/2192
  46923. }
  46924. },
  46925. head: {
  46926. height: math.unit(3.38, "feet"),
  46927. name: "Head",
  46928. image: {
  46929. source: "./media/characters/delkhan/head.svg"
  46930. }
  46931. },
  46932. },
  46933. [
  46934. {
  46935. name: "Normal",
  46936. height: math.unit(72, "feet"),
  46937. default: true
  46938. },
  46939. {
  46940. name: "Giant",
  46941. height: math.unit(172, "feet")
  46942. },
  46943. ]
  46944. ))
  46945. characterMakers.push(() => makeCharacter(
  46946. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46947. {
  46948. standing: {
  46949. height: math.unit(6, "feet"),
  46950. name: "Standing",
  46951. image: {
  46952. source: "./media/characters/euchidat/standing.svg",
  46953. extra: 1612/1553,
  46954. bottom: 116/1728
  46955. }
  46956. },
  46957. leaning: {
  46958. height: math.unit(6, "feet"),
  46959. name: "Leaning",
  46960. image: {
  46961. source: "./media/characters/euchidat/leaning.svg",
  46962. extra: 1719/1674,
  46963. bottom: 27/1746
  46964. }
  46965. },
  46966. },
  46967. [
  46968. {
  46969. name: "Normal",
  46970. height: math.unit(175, "feet"),
  46971. default: true
  46972. },
  46973. {
  46974. name: "Megamacro",
  46975. height: math.unit(190, "miles")
  46976. },
  46977. {
  46978. name: "Gigamacro",
  46979. height: math.unit(190000, "miles")
  46980. },
  46981. ]
  46982. ))
  46983. characterMakers.push(() => makeCharacter(
  46984. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46985. {
  46986. front: {
  46987. height: math.unit(6, "feet"),
  46988. weight: math.unit(150, "lb"),
  46989. name: "Front",
  46990. image: {
  46991. source: "./media/characters/rebecca-stack/front.svg",
  46992. extra: 1256/1201,
  46993. bottom: 18/1274
  46994. }
  46995. },
  46996. },
  46997. [
  46998. {
  46999. name: "Normal",
  47000. height: math.unit(5 + 8/12, "feet"),
  47001. default: true
  47002. },
  47003. {
  47004. name: "Demolitionist",
  47005. height: math.unit(200, "feet")
  47006. },
  47007. {
  47008. name: "Out of Control",
  47009. height: math.unit(2, "miles")
  47010. },
  47011. {
  47012. name: "Giga",
  47013. height: math.unit(7200, "miles")
  47014. },
  47015. ]
  47016. ))
  47017. characterMakers.push(() => makeCharacter(
  47018. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47019. {
  47020. front: {
  47021. height: math.unit(6, "feet"),
  47022. weight: math.unit(150, "lb"),
  47023. name: "Front",
  47024. image: {
  47025. source: "./media/characters/jenny-cartwright/front.svg",
  47026. extra: 1384/1376,
  47027. bottom: 58/1442
  47028. }
  47029. },
  47030. },
  47031. [
  47032. {
  47033. name: "Normal",
  47034. height: math.unit(6 + 7/12, "feet"),
  47035. default: true
  47036. },
  47037. {
  47038. name: "Librarian",
  47039. height: math.unit(55, "feet")
  47040. },
  47041. {
  47042. name: "Sightseer",
  47043. height: math.unit(50, "miles")
  47044. },
  47045. {
  47046. name: "Giga",
  47047. height: math.unit(30000, "miles")
  47048. },
  47049. ]
  47050. ))
  47051. characterMakers.push(() => makeCharacter(
  47052. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47053. {
  47054. nude: {
  47055. height: math.unit(8, "feet"),
  47056. weight: math.unit(225, "lb"),
  47057. name: "Nude",
  47058. image: {
  47059. source: "./media/characters/marvy/nude.svg",
  47060. extra: 1900/1683,
  47061. bottom: 89/1989
  47062. }
  47063. },
  47064. dressed: {
  47065. height: math.unit(8, "feet"),
  47066. weight: math.unit(225, "lb"),
  47067. name: "Dressed",
  47068. image: {
  47069. source: "./media/characters/marvy/dressed.svg",
  47070. extra: 1900/1683,
  47071. bottom: 89/1989
  47072. }
  47073. },
  47074. head: {
  47075. height: math.unit(2.85, "feet"),
  47076. name: "Head",
  47077. image: {
  47078. source: "./media/characters/marvy/head.svg"
  47079. }
  47080. },
  47081. },
  47082. [
  47083. {
  47084. name: "Normal",
  47085. height: math.unit(8, "feet"),
  47086. default: true
  47087. },
  47088. ]
  47089. ))
  47090. characterMakers.push(() => makeCharacter(
  47091. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47092. {
  47093. front: {
  47094. height: math.unit(8, "feet"),
  47095. weight: math.unit(250, "lb"),
  47096. name: "Front",
  47097. image: {
  47098. source: "./media/characters/leah/front.svg",
  47099. extra: 1257/1149,
  47100. bottom: 109/1366
  47101. }
  47102. },
  47103. },
  47104. [
  47105. {
  47106. name: "Normal",
  47107. height: math.unit(8, "feet"),
  47108. default: true
  47109. },
  47110. {
  47111. name: "Minimacro",
  47112. height: math.unit(40, "feet")
  47113. },
  47114. {
  47115. name: "Macro",
  47116. height: math.unit(124, "feet")
  47117. },
  47118. {
  47119. name: "Megamacro",
  47120. height: math.unit(850, "feet")
  47121. },
  47122. ]
  47123. ))
  47124. characterMakers.push(() => makeCharacter(
  47125. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47126. {
  47127. side: {
  47128. height: math.unit(13 + 6/12, "feet"),
  47129. weight: math.unit(3200, "lb"),
  47130. name: "Side",
  47131. image: {
  47132. source: "./media/characters/alvir/side.svg",
  47133. extra: 896/589,
  47134. bottom: 26/922
  47135. }
  47136. },
  47137. },
  47138. [
  47139. {
  47140. name: "Normal",
  47141. height: math.unit(13 + 6/12, "feet"),
  47142. default: true
  47143. },
  47144. ]
  47145. ))
  47146. characterMakers.push(() => makeCharacter(
  47147. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47148. {
  47149. front: {
  47150. height: math.unit(5 + 4/12, "feet"),
  47151. weight: math.unit(236, "lb"),
  47152. name: "Front",
  47153. image: {
  47154. source: "./media/characters/zaina-khalil/front.svg",
  47155. extra: 1533/1485,
  47156. bottom: 94/1627
  47157. }
  47158. },
  47159. side: {
  47160. height: math.unit(5 + 4/12, "feet"),
  47161. weight: math.unit(236, "lb"),
  47162. name: "Side",
  47163. image: {
  47164. source: "./media/characters/zaina-khalil/side.svg",
  47165. extra: 1537/1498,
  47166. bottom: 66/1603
  47167. }
  47168. },
  47169. back: {
  47170. height: math.unit(5 + 4/12, "feet"),
  47171. weight: math.unit(236, "lb"),
  47172. name: "Back",
  47173. image: {
  47174. source: "./media/characters/zaina-khalil/back.svg",
  47175. extra: 1546/1494,
  47176. bottom: 89/1635
  47177. }
  47178. },
  47179. },
  47180. [
  47181. {
  47182. name: "Normal",
  47183. height: math.unit(5 + 4/12, "feet"),
  47184. default: true
  47185. },
  47186. ]
  47187. ))
  47188. characterMakers.push(() => makeCharacter(
  47189. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47190. {
  47191. side: {
  47192. height: math.unit(12, "feet"),
  47193. weight: math.unit(4000, "lb"),
  47194. name: "Side",
  47195. image: {
  47196. source: "./media/characters/terry/side.svg",
  47197. extra: 1518/1439,
  47198. bottom: 149/1667
  47199. }
  47200. },
  47201. },
  47202. [
  47203. {
  47204. name: "Normal",
  47205. height: math.unit(12, "feet"),
  47206. default: true
  47207. },
  47208. ]
  47209. ))
  47210. characterMakers.push(() => makeCharacter(
  47211. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47212. {
  47213. front: {
  47214. height: math.unit(12, "feet"),
  47215. weight: math.unit(1500, "lb"),
  47216. name: "Front",
  47217. image: {
  47218. source: "./media/characters/kahea/front.svg",
  47219. extra: 1722/1617,
  47220. bottom: 179/1901
  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: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47234. {
  47235. demonFront: {
  47236. height: math.unit(36, "feet"),
  47237. name: "Front",
  47238. image: {
  47239. source: "./media/characters/alex-xuria/demon-front.svg",
  47240. extra: 1705/1673,
  47241. bottom: 198/1903
  47242. },
  47243. form: "demon",
  47244. default: true
  47245. },
  47246. demonBack: {
  47247. height: math.unit(36, "feet"),
  47248. name: "Back",
  47249. image: {
  47250. source: "./media/characters/alex-xuria/demon-back.svg",
  47251. extra: 1725/1693,
  47252. bottom: 70/1795
  47253. },
  47254. form: "demon"
  47255. },
  47256. demonHead: {
  47257. height: math.unit(2.14, "meters"),
  47258. name: "Head",
  47259. image: {
  47260. source: "./media/characters/alex-xuria/demon-head.svg"
  47261. },
  47262. form: "demon"
  47263. },
  47264. demonHand: {
  47265. height: math.unit(1.61, "meters"),
  47266. name: "Hand",
  47267. image: {
  47268. source: "./media/characters/alex-xuria/demon-hand.svg"
  47269. },
  47270. form: "demon"
  47271. },
  47272. demonPaw: {
  47273. height: math.unit(1.35, "meters"),
  47274. name: "Paw",
  47275. image: {
  47276. source: "./media/characters/alex-xuria/demon-paw.svg"
  47277. },
  47278. form: "demon"
  47279. },
  47280. demonFoot: {
  47281. height: math.unit(2.2, "meters"),
  47282. name: "Foot",
  47283. image: {
  47284. source: "./media/characters/alex-xuria/demon-foot.svg"
  47285. },
  47286. form: "demon"
  47287. },
  47288. demonCock: {
  47289. height: math.unit(1.74, "meters"),
  47290. name: "Cock",
  47291. image: {
  47292. source: "./media/characters/alex-xuria/demon-cock.svg"
  47293. },
  47294. form: "demon"
  47295. },
  47296. demonTailClosed: {
  47297. height: math.unit(1.47, "meters"),
  47298. name: "Tail (Closed)",
  47299. image: {
  47300. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47301. },
  47302. form: "demon"
  47303. },
  47304. demonTailOpen: {
  47305. height: math.unit(2.85, "meters"),
  47306. name: "Tail (Open)",
  47307. image: {
  47308. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47309. },
  47310. form: "demon"
  47311. },
  47312. incubusFront: {
  47313. height: math.unit(12, "feet"),
  47314. name: "Front",
  47315. image: {
  47316. source: "./media/characters/alex-xuria/incubus-front.svg",
  47317. extra: 1754/1677,
  47318. bottom: 125/1879
  47319. },
  47320. form: "incubus",
  47321. default: true
  47322. },
  47323. incubusBack: {
  47324. height: math.unit(12, "feet"),
  47325. name: "Back",
  47326. image: {
  47327. source: "./media/characters/alex-xuria/incubus-back.svg",
  47328. extra: 1702/1647,
  47329. bottom: 30/1732
  47330. },
  47331. form: "incubus"
  47332. },
  47333. incubusHead: {
  47334. height: math.unit(3.45, "feet"),
  47335. name: "Head",
  47336. image: {
  47337. source: "./media/characters/alex-xuria/incubus-head.svg"
  47338. },
  47339. form: "incubus"
  47340. },
  47341. rabbitFront: {
  47342. height: math.unit(6, "feet"),
  47343. name: "Front",
  47344. image: {
  47345. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47346. extra: 1369/1349,
  47347. bottom: 45/1414
  47348. },
  47349. form: "rabbit",
  47350. default: true
  47351. },
  47352. rabbitSide: {
  47353. height: math.unit(6, "feet"),
  47354. name: "Side",
  47355. image: {
  47356. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47357. extra: 1370/1356,
  47358. bottom: 37/1407
  47359. },
  47360. form: "rabbit"
  47361. },
  47362. rabbitBack: {
  47363. height: math.unit(6, "feet"),
  47364. name: "Back",
  47365. image: {
  47366. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47367. extra: 1375/1358,
  47368. bottom: 43/1418
  47369. },
  47370. form: "rabbit"
  47371. },
  47372. },
  47373. [
  47374. {
  47375. name: "Normal",
  47376. height: math.unit(6, "feet"),
  47377. default: true,
  47378. form: "rabbit"
  47379. },
  47380. {
  47381. name: "Incubus",
  47382. height: math.unit(12, "feet"),
  47383. default: true,
  47384. form: "incubus"
  47385. },
  47386. {
  47387. name: "Demon",
  47388. height: math.unit(36, "feet"),
  47389. default: true,
  47390. form: "demon"
  47391. }
  47392. ],
  47393. {
  47394. "demon": {
  47395. name: "Demon",
  47396. default: true
  47397. },
  47398. "incubus": {
  47399. name: "Incubus",
  47400. },
  47401. "rabbit": {
  47402. name: "Rabbit"
  47403. }
  47404. }
  47405. ))
  47406. characterMakers.push(() => makeCharacter(
  47407. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47408. {
  47409. front: {
  47410. height: math.unit(7 + 5/12, "feet"),
  47411. weight: math.unit(510, "lb"),
  47412. name: "Front",
  47413. image: {
  47414. source: "./media/characters/syrup/front.svg",
  47415. extra: 932/916,
  47416. bottom: 26/958
  47417. }
  47418. },
  47419. },
  47420. [
  47421. {
  47422. name: "Normal",
  47423. height: math.unit(7 + 5/12, "feet"),
  47424. default: true
  47425. },
  47426. {
  47427. name: "Big",
  47428. height: math.unit(50, "feet")
  47429. },
  47430. {
  47431. name: "Macro",
  47432. height: math.unit(300, "feet")
  47433. },
  47434. {
  47435. name: "Megamacro",
  47436. height: math.unit(1, "mile")
  47437. },
  47438. ]
  47439. ))
  47440. characterMakers.push(() => makeCharacter(
  47441. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47442. {
  47443. front: {
  47444. height: math.unit(6 + 9/12, "feet"),
  47445. name: "Front",
  47446. image: {
  47447. source: "./media/characters/zeimne/front.svg",
  47448. extra: 1969/1806,
  47449. bottom: 53/2022
  47450. }
  47451. },
  47452. },
  47453. [
  47454. {
  47455. name: "Normal",
  47456. height: math.unit(6 + 9/12, "feet"),
  47457. default: true
  47458. },
  47459. {
  47460. name: "Giant",
  47461. height: math.unit(550, "feet")
  47462. },
  47463. {
  47464. name: "Mega",
  47465. height: math.unit(3, "miles")
  47466. },
  47467. {
  47468. name: "Giga",
  47469. height: math.unit(250, "miles")
  47470. },
  47471. {
  47472. name: "Tera",
  47473. height: math.unit(1, "AU")
  47474. },
  47475. ]
  47476. ))
  47477. characterMakers.push(() => makeCharacter(
  47478. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47479. {
  47480. front: {
  47481. height: math.unit(5 + 2/12, "feet"),
  47482. name: "Front",
  47483. image: {
  47484. source: "./media/characters/grar/front.svg",
  47485. extra: 1331/1119,
  47486. bottom: 60/1391
  47487. }
  47488. },
  47489. back: {
  47490. height: math.unit(5 + 2/12, "feet"),
  47491. name: "Back",
  47492. image: {
  47493. source: "./media/characters/grar/back.svg",
  47494. extra: 1385/1169,
  47495. bottom: 23/1408
  47496. }
  47497. },
  47498. },
  47499. [
  47500. {
  47501. name: "Normal",
  47502. height: math.unit(5 + 2/12, "feet"),
  47503. default: true
  47504. },
  47505. ]
  47506. ))
  47507. characterMakers.push(() => makeCharacter(
  47508. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47509. {
  47510. front: {
  47511. height: math.unit(13 + 7/12, "feet"),
  47512. weight: math.unit(2200, "lb"),
  47513. name: "Front",
  47514. image: {
  47515. source: "./media/characters/endraya/front.svg",
  47516. extra: 1289/1215,
  47517. bottom: 50/1339
  47518. }
  47519. },
  47520. nude: {
  47521. height: math.unit(13 + 7/12, "feet"),
  47522. weight: math.unit(2200, "lb"),
  47523. name: "Nude",
  47524. image: {
  47525. source: "./media/characters/endraya/nude.svg",
  47526. extra: 1247/1171,
  47527. bottom: 40/1287
  47528. }
  47529. },
  47530. head: {
  47531. height: math.unit(2.6, "feet"),
  47532. name: "Head",
  47533. image: {
  47534. source: "./media/characters/endraya/head.svg"
  47535. }
  47536. },
  47537. slit: {
  47538. height: math.unit(3.4, "feet"),
  47539. name: "Slit",
  47540. image: {
  47541. source: "./media/characters/endraya/slit.svg"
  47542. }
  47543. },
  47544. },
  47545. [
  47546. {
  47547. name: "Normal",
  47548. height: math.unit(13 + 7/12, "feet"),
  47549. default: true
  47550. },
  47551. {
  47552. name: "Macro",
  47553. height: math.unit(200, "feet")
  47554. },
  47555. ]
  47556. ))
  47557. characterMakers.push(() => makeCharacter(
  47558. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47559. {
  47560. front: {
  47561. height: math.unit(1.81, "meters"),
  47562. weight: math.unit(69, "kg"),
  47563. name: "Front",
  47564. image: {
  47565. source: "./media/characters/rodryana/front.svg",
  47566. extra: 2002/1921,
  47567. bottom: 53/2055
  47568. }
  47569. },
  47570. back: {
  47571. height: math.unit(1.81, "meters"),
  47572. weight: math.unit(69, "kg"),
  47573. name: "Back",
  47574. image: {
  47575. source: "./media/characters/rodryana/back.svg",
  47576. extra: 1993/1926,
  47577. bottom: 48/2041
  47578. }
  47579. },
  47580. maw: {
  47581. height: math.unit(0.19769417475, "meters"),
  47582. name: "Maw",
  47583. image: {
  47584. source: "./media/characters/rodryana/maw.svg"
  47585. }
  47586. },
  47587. slit: {
  47588. height: math.unit(0.31631067961, "meters"),
  47589. name: "Slit",
  47590. image: {
  47591. source: "./media/characters/rodryana/slit.svg"
  47592. }
  47593. },
  47594. },
  47595. [
  47596. {
  47597. name: "Normal",
  47598. height: math.unit(1.81, "meters")
  47599. },
  47600. {
  47601. name: "Mini Macro",
  47602. height: math.unit(181, "meters")
  47603. },
  47604. {
  47605. name: "Macro",
  47606. height: math.unit(452, "meters"),
  47607. default: true
  47608. },
  47609. {
  47610. name: "Mega Macro",
  47611. height: math.unit(1.375, "km")
  47612. },
  47613. {
  47614. name: "Giga Macro",
  47615. height: math.unit(13.575, "km")
  47616. },
  47617. ]
  47618. ))
  47619. characterMakers.push(() => makeCharacter(
  47620. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47621. {
  47622. front: {
  47623. height: math.unit(6, "feet"),
  47624. weight: math.unit(1000, "lb"),
  47625. name: "Front",
  47626. image: {
  47627. source: "./media/characters/asaya/front.svg",
  47628. extra: 1460/1200,
  47629. bottom: 71/1531
  47630. }
  47631. },
  47632. },
  47633. [
  47634. {
  47635. name: "Normal",
  47636. height: math.unit(8, "km"),
  47637. default: true
  47638. },
  47639. ]
  47640. ))
  47641. characterMakers.push(() => makeCharacter(
  47642. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47643. {
  47644. front: {
  47645. height: math.unit(3.5, "meters"),
  47646. name: "Front",
  47647. image: {
  47648. source: "./media/characters/sarzu-and-israz/front.svg",
  47649. extra: 1570/1558,
  47650. bottom: 150/1720
  47651. },
  47652. },
  47653. back: {
  47654. height: math.unit(3.5, "meters"),
  47655. name: "Back",
  47656. image: {
  47657. source: "./media/characters/sarzu-and-israz/back.svg",
  47658. extra: 1523/1509,
  47659. bottom: 132/1655
  47660. },
  47661. },
  47662. frontFemale: {
  47663. height: math.unit(3.5, "meters"),
  47664. name: "Front (Female)",
  47665. image: {
  47666. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47667. extra: 1570/1558,
  47668. bottom: 150/1720
  47669. },
  47670. },
  47671. frontHerm: {
  47672. height: math.unit(3.5, "meters"),
  47673. name: "Front (Herm)",
  47674. image: {
  47675. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47676. extra: 1570/1558,
  47677. bottom: 150/1720
  47678. },
  47679. },
  47680. },
  47681. [
  47682. {
  47683. name: "Normal",
  47684. height: math.unit(3.5, "meters"),
  47685. default: true,
  47686. },
  47687. {
  47688. name: "Macro",
  47689. height: math.unit(65.5, "meters"),
  47690. },
  47691. ],
  47692. ))
  47693. characterMakers.push(() => makeCharacter(
  47694. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47695. {
  47696. front: {
  47697. height: math.unit(6, "feet"),
  47698. weight: math.unit(250, "lb"),
  47699. name: "Front",
  47700. image: {
  47701. source: "./media/characters/zenimma/front.svg",
  47702. extra: 1346/1320,
  47703. bottom: 58/1404
  47704. }
  47705. },
  47706. back: {
  47707. height: math.unit(6, "feet"),
  47708. weight: math.unit(250, "lb"),
  47709. name: "Back",
  47710. image: {
  47711. source: "./media/characters/zenimma/back.svg",
  47712. extra: 1324/1308,
  47713. bottom: 44/1368
  47714. }
  47715. },
  47716. dick: {
  47717. height: math.unit(1.44, "feet"),
  47718. name: "Dick",
  47719. image: {
  47720. source: "./media/characters/zenimma/dick.svg"
  47721. }
  47722. },
  47723. },
  47724. [
  47725. {
  47726. name: "Canon Height",
  47727. height: math.unit(66, "miles"),
  47728. default: true
  47729. },
  47730. ]
  47731. ))
  47732. characterMakers.push(() => makeCharacter(
  47733. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47734. {
  47735. nude: {
  47736. height: math.unit(6, "feet"),
  47737. weight: math.unit(150, "lb"),
  47738. name: "Nude",
  47739. image: {
  47740. source: "./media/characters/shavon/nude.svg",
  47741. extra: 1242/1096,
  47742. bottom: 98/1340
  47743. }
  47744. },
  47745. dressed: {
  47746. height: math.unit(6, "feet"),
  47747. weight: math.unit(150, "lb"),
  47748. name: "Dressed",
  47749. image: {
  47750. source: "./media/characters/shavon/dressed.svg",
  47751. extra: 1242/1096,
  47752. bottom: 98/1340
  47753. }
  47754. },
  47755. },
  47756. [
  47757. {
  47758. name: "Macro",
  47759. height: math.unit(255, "feet"),
  47760. default: true
  47761. },
  47762. ]
  47763. ))
  47764. characterMakers.push(() => makeCharacter(
  47765. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47766. {
  47767. front: {
  47768. height: math.unit(6, "feet"),
  47769. name: "Front",
  47770. image: {
  47771. source: "./media/characters/steph/front.svg",
  47772. extra: 1430/1330,
  47773. bottom: 54/1484
  47774. }
  47775. },
  47776. },
  47777. [
  47778. {
  47779. name: "Normal",
  47780. height: math.unit(6, "feet"),
  47781. default: true
  47782. },
  47783. ]
  47784. ))
  47785. characterMakers.push(() => makeCharacter(
  47786. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47787. {
  47788. front: {
  47789. height: math.unit(9, "feet"),
  47790. weight: math.unit(400, "lb"),
  47791. name: "Front",
  47792. image: {
  47793. source: "./media/characters/kil'aman/front.svg",
  47794. extra: 1210/1159,
  47795. bottom: 109/1319
  47796. }
  47797. },
  47798. head: {
  47799. height: math.unit(2.14, "feet"),
  47800. name: "Head",
  47801. image: {
  47802. source: "./media/characters/kil'aman/head.svg"
  47803. }
  47804. },
  47805. maw: {
  47806. height: math.unit(1.21, "feet"),
  47807. name: "Maw",
  47808. image: {
  47809. source: "./media/characters/kil'aman/maw.svg"
  47810. }
  47811. },
  47812. foot: {
  47813. height: math.unit(1.7, "feet"),
  47814. name: "Foot",
  47815. image: {
  47816. source: "./media/characters/kil'aman/foot.svg"
  47817. }
  47818. },
  47819. dick: {
  47820. height: math.unit(2.1, "feet"),
  47821. name: "Dick",
  47822. image: {
  47823. source: "./media/characters/kil'aman/dick.svg"
  47824. }
  47825. },
  47826. },
  47827. [
  47828. {
  47829. name: "Normal",
  47830. height: math.unit(9, "feet")
  47831. },
  47832. {
  47833. name: "Canon Height",
  47834. height: math.unit(10, "miles"),
  47835. default: true
  47836. },
  47837. {
  47838. name: "Maximum",
  47839. height: math.unit(6e9, "miles")
  47840. },
  47841. ]
  47842. ))
  47843. characterMakers.push(() => makeCharacter(
  47844. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47845. {
  47846. front: {
  47847. height: math.unit(90, "feet"),
  47848. weight: math.unit(675000, "lb"),
  47849. name: "Front",
  47850. image: {
  47851. source: "./media/characters/qadan/front.svg",
  47852. extra: 1012/1004,
  47853. bottom: 78/1090
  47854. }
  47855. },
  47856. back: {
  47857. height: math.unit(90, "feet"),
  47858. weight: math.unit(675000, "lb"),
  47859. name: "Back",
  47860. image: {
  47861. source: "./media/characters/qadan/back.svg",
  47862. extra: 1042/1031,
  47863. bottom: 55/1097
  47864. }
  47865. },
  47866. armored: {
  47867. height: math.unit(90, "feet"),
  47868. weight: math.unit(675000, "lb"),
  47869. name: "Armored",
  47870. image: {
  47871. source: "./media/characters/qadan/armored.svg",
  47872. extra: 1047/1037,
  47873. bottom: 48/1095
  47874. }
  47875. },
  47876. },
  47877. [
  47878. {
  47879. name: "Normal",
  47880. height: math.unit(90, "feet"),
  47881. default: true
  47882. },
  47883. ]
  47884. ))
  47885. characterMakers.push(() => makeCharacter(
  47886. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47887. {
  47888. front: {
  47889. height: math.unit(6, "feet"),
  47890. weight: math.unit(225, "lb"),
  47891. name: "Front",
  47892. image: {
  47893. source: "./media/characters/brooke/front.svg",
  47894. extra: 1050/1010,
  47895. bottom: 66/1116
  47896. }
  47897. },
  47898. back: {
  47899. height: math.unit(6, "feet"),
  47900. weight: math.unit(225, "lb"),
  47901. name: "Back",
  47902. image: {
  47903. source: "./media/characters/brooke/back.svg",
  47904. extra: 1053/1013,
  47905. bottom: 41/1094
  47906. }
  47907. },
  47908. dressed: {
  47909. height: math.unit(6, "feet"),
  47910. weight: math.unit(225, "lb"),
  47911. name: "Dressed",
  47912. image: {
  47913. source: "./media/characters/brooke/dressed.svg",
  47914. extra: 1050/1010,
  47915. bottom: 66/1116
  47916. }
  47917. },
  47918. },
  47919. [
  47920. {
  47921. name: "Canon Height",
  47922. height: math.unit(500, "miles"),
  47923. default: true
  47924. },
  47925. ]
  47926. ))
  47927. characterMakers.push(() => makeCharacter(
  47928. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47929. {
  47930. front: {
  47931. height: math.unit(6 + 2/12, "feet"),
  47932. weight: math.unit(210, "lb"),
  47933. name: "Front",
  47934. image: {
  47935. source: "./media/characters/wubs/front.svg",
  47936. extra: 1345/1325,
  47937. bottom: 70/1415
  47938. }
  47939. },
  47940. back: {
  47941. height: math.unit(6 + 2/12, "feet"),
  47942. weight: math.unit(210, "lb"),
  47943. name: "Back",
  47944. image: {
  47945. source: "./media/characters/wubs/back.svg",
  47946. extra: 1296/1275,
  47947. bottom: 58/1354
  47948. }
  47949. },
  47950. },
  47951. [
  47952. {
  47953. name: "Normal",
  47954. height: math.unit(6 + 2/12, "feet"),
  47955. default: true
  47956. },
  47957. {
  47958. name: "Macro",
  47959. height: math.unit(1000, "feet")
  47960. },
  47961. {
  47962. name: "Megamacro",
  47963. height: math.unit(1, "mile")
  47964. },
  47965. ]
  47966. ))
  47967. characterMakers.push(() => makeCharacter(
  47968. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47969. {
  47970. front: {
  47971. height: math.unit(4, "feet"),
  47972. weight: math.unit(120, "lb"),
  47973. name: "Front",
  47974. image: {
  47975. source: "./media/characters/blue/front.svg",
  47976. extra: 1636/1525,
  47977. bottom: 43/1679
  47978. }
  47979. },
  47980. back: {
  47981. height: math.unit(4, "feet"),
  47982. weight: math.unit(120, "lb"),
  47983. name: "Back",
  47984. image: {
  47985. source: "./media/characters/blue/back.svg",
  47986. extra: 1660/1560,
  47987. bottom: 57/1717
  47988. }
  47989. },
  47990. paws: {
  47991. height: math.unit(0.826, "feet"),
  47992. name: "Paws",
  47993. image: {
  47994. source: "./media/characters/blue/paws.svg"
  47995. }
  47996. },
  47997. },
  47998. [
  47999. {
  48000. name: "Micro",
  48001. height: math.unit(3, "inches")
  48002. },
  48003. {
  48004. name: "Normal",
  48005. height: math.unit(4, "feet"),
  48006. default: true
  48007. },
  48008. {
  48009. name: "Femenine Form",
  48010. height: math.unit(14, "feet")
  48011. },
  48012. {
  48013. name: "Werebat Form",
  48014. height: math.unit(18, "feet")
  48015. },
  48016. ]
  48017. ))
  48018. characterMakers.push(() => makeCharacter(
  48019. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48020. {
  48021. female: {
  48022. height: math.unit(7 + 4/12, "feet"),
  48023. weight: math.unit(243, "lb"),
  48024. name: "Female",
  48025. image: {
  48026. source: "./media/characters/kaya/female.svg",
  48027. extra: 975/898,
  48028. bottom: 34/1009
  48029. }
  48030. },
  48031. herm: {
  48032. height: math.unit(7 + 4/12, "feet"),
  48033. weight: math.unit(243, "lb"),
  48034. name: "Herm",
  48035. image: {
  48036. source: "./media/characters/kaya/herm.svg",
  48037. extra: 975/898,
  48038. bottom: 34/1009
  48039. }
  48040. },
  48041. },
  48042. [
  48043. {
  48044. name: "Normal",
  48045. height: math.unit(7 + 4/12, "feet"),
  48046. default: true
  48047. },
  48048. ]
  48049. ))
  48050. characterMakers.push(() => makeCharacter(
  48051. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48052. {
  48053. female: {
  48054. height: math.unit(9 + 4/12, "feet"),
  48055. weight: math.unit(398, "lb"),
  48056. name: "Female",
  48057. image: {
  48058. source: "./media/characters/kassandra/female.svg",
  48059. extra: 908/839,
  48060. bottom: 61/969
  48061. }
  48062. },
  48063. intersex: {
  48064. height: math.unit(9 + 4/12, "feet"),
  48065. weight: math.unit(398, "lb"),
  48066. name: "Intersex",
  48067. image: {
  48068. source: "./media/characters/kassandra/intersex.svg",
  48069. extra: 908/839,
  48070. bottom: 61/969
  48071. }
  48072. },
  48073. },
  48074. [
  48075. {
  48076. name: "Normal",
  48077. height: math.unit(9 + 4/12, "feet"),
  48078. default: true
  48079. },
  48080. ]
  48081. ))
  48082. characterMakers.push(() => makeCharacter(
  48083. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48084. {
  48085. front: {
  48086. height: math.unit(3, "meters"),
  48087. name: "Front",
  48088. image: {
  48089. source: "./media/characters/amy/front.svg",
  48090. extra: 1380/1343,
  48091. bottom: 70/1450
  48092. }
  48093. },
  48094. back: {
  48095. height: math.unit(3, "meters"),
  48096. name: "Back",
  48097. image: {
  48098. source: "./media/characters/amy/back.svg",
  48099. extra: 1380/1347,
  48100. bottom: 66/1446
  48101. }
  48102. },
  48103. },
  48104. [
  48105. {
  48106. name: "Normal",
  48107. height: math.unit(3, "meters"),
  48108. default: true
  48109. },
  48110. ]
  48111. ))
  48112. characterMakers.push(() => makeCharacter(
  48113. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48114. {
  48115. side: {
  48116. height: math.unit(47, "cm"),
  48117. weight: math.unit(10.8, "kg"),
  48118. name: "Side",
  48119. image: {
  48120. source: "./media/characters/alphaschakal/side.svg",
  48121. extra: 1058/568,
  48122. bottom: 62/1120
  48123. }
  48124. },
  48125. back: {
  48126. height: math.unit(78, "cm"),
  48127. weight: math.unit(10.8, "kg"),
  48128. name: "Back",
  48129. image: {
  48130. source: "./media/characters/alphaschakal/back.svg",
  48131. extra: 1102/942,
  48132. bottom: 185/1287
  48133. }
  48134. },
  48135. head: {
  48136. height: math.unit(28, "cm"),
  48137. name: "Head",
  48138. image: {
  48139. source: "./media/characters/alphaschakal/head.svg",
  48140. extra: 696/508,
  48141. bottom: 0/696
  48142. }
  48143. },
  48144. paw: {
  48145. height: math.unit(16, "cm"),
  48146. name: "Paw",
  48147. image: {
  48148. source: "./media/characters/alphaschakal/paw.svg"
  48149. }
  48150. },
  48151. },
  48152. [
  48153. {
  48154. name: "Normal",
  48155. height: math.unit(47, "cm"),
  48156. default: true
  48157. },
  48158. {
  48159. name: "Macro",
  48160. height: math.unit(340, "cm")
  48161. },
  48162. ]
  48163. ))
  48164. characterMakers.push(() => makeCharacter(
  48165. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48166. {
  48167. front: {
  48168. height: math.unit(36, "earths"),
  48169. name: "Front",
  48170. image: {
  48171. source: "./media/characters/ecobyss/front.svg",
  48172. extra: 1282/1215,
  48173. bottom: 11/1293
  48174. }
  48175. },
  48176. back: {
  48177. height: math.unit(36, "earths"),
  48178. name: "Back",
  48179. image: {
  48180. source: "./media/characters/ecobyss/back.svg",
  48181. extra: 1291/1222,
  48182. bottom: 8/1299
  48183. }
  48184. },
  48185. },
  48186. [
  48187. {
  48188. name: "Normal",
  48189. height: math.unit(36, "earths"),
  48190. default: true
  48191. },
  48192. ]
  48193. ))
  48194. characterMakers.push(() => makeCharacter(
  48195. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48196. {
  48197. front: {
  48198. height: math.unit(12, "feet"),
  48199. name: "Front",
  48200. image: {
  48201. source: "./media/characters/vasuk/front.svg",
  48202. extra: 1326/1207,
  48203. bottom: 64/1390
  48204. }
  48205. },
  48206. },
  48207. [
  48208. {
  48209. name: "Normal",
  48210. height: math.unit(12, "feet"),
  48211. default: true
  48212. },
  48213. ]
  48214. ))
  48215. characterMakers.push(() => makeCharacter(
  48216. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48217. {
  48218. side: {
  48219. height: math.unit(100, "feet"),
  48220. name: "Side",
  48221. image: {
  48222. source: "./media/characters/linneaus/side.svg",
  48223. extra: 987/807,
  48224. bottom: 47/1034
  48225. }
  48226. },
  48227. },
  48228. [
  48229. {
  48230. name: "Macro",
  48231. height: math.unit(100, "feet"),
  48232. default: true
  48233. },
  48234. ]
  48235. ))
  48236. characterMakers.push(() => makeCharacter(
  48237. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48238. {
  48239. front: {
  48240. height: math.unit(8, "feet"),
  48241. weight: math.unit(1200, "lb"),
  48242. name: "Front",
  48243. image: {
  48244. source: "./media/characters/nyterious-daligdig/front.svg",
  48245. extra: 1284/1094,
  48246. bottom: 84/1368
  48247. }
  48248. },
  48249. back: {
  48250. height: math.unit(8, "feet"),
  48251. weight: math.unit(1200, "lb"),
  48252. name: "Back",
  48253. image: {
  48254. source: "./media/characters/nyterious-daligdig/back.svg",
  48255. extra: 1301/1121,
  48256. bottom: 129/1430
  48257. }
  48258. },
  48259. mouth: {
  48260. height: math.unit(1.464, "feet"),
  48261. name: "Mouth",
  48262. image: {
  48263. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48264. }
  48265. },
  48266. },
  48267. [
  48268. {
  48269. name: "Small",
  48270. height: math.unit(8, "feet"),
  48271. default: true
  48272. },
  48273. {
  48274. name: "Normal",
  48275. height: math.unit(15, "feet")
  48276. },
  48277. {
  48278. name: "Macro",
  48279. height: math.unit(90, "feet")
  48280. },
  48281. ]
  48282. ))
  48283. characterMakers.push(() => makeCharacter(
  48284. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48285. {
  48286. front: {
  48287. height: math.unit(7 + 4/12, "feet"),
  48288. weight: math.unit(252, "lb"),
  48289. name: "Front",
  48290. image: {
  48291. source: "./media/characters/bandel/front.svg",
  48292. extra: 1946/1775,
  48293. bottom: 26/1972
  48294. }
  48295. },
  48296. back: {
  48297. height: math.unit(7 + 4/12, "feet"),
  48298. weight: math.unit(252, "lb"),
  48299. name: "Back",
  48300. image: {
  48301. source: "./media/characters/bandel/back.svg",
  48302. extra: 1940/1770,
  48303. bottom: 25/1965
  48304. }
  48305. },
  48306. maw: {
  48307. height: math.unit(2.15, "feet"),
  48308. name: "Maw",
  48309. image: {
  48310. source: "./media/characters/bandel/maw.svg"
  48311. }
  48312. },
  48313. stomach: {
  48314. height: math.unit(1.95, "feet"),
  48315. name: "Stomach",
  48316. image: {
  48317. source: "./media/characters/bandel/stomach.svg"
  48318. }
  48319. },
  48320. },
  48321. [
  48322. {
  48323. name: "Normal",
  48324. height: math.unit(7 + 4/12, "feet"),
  48325. default: true
  48326. },
  48327. ]
  48328. ))
  48329. characterMakers.push(() => makeCharacter(
  48330. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48331. {
  48332. front: {
  48333. height: math.unit(10 + 5/12, "feet"),
  48334. weight: math.unit(773.5, "kg"),
  48335. name: "Front",
  48336. image: {
  48337. source: "./media/characters/zed/front.svg",
  48338. extra: 987/941,
  48339. bottom: 52/1039
  48340. }
  48341. },
  48342. },
  48343. [
  48344. {
  48345. name: "Short",
  48346. height: math.unit(5 + 4/12, "feet")
  48347. },
  48348. {
  48349. name: "Average",
  48350. height: math.unit(10 + 5/12, "feet"),
  48351. default: true
  48352. },
  48353. {
  48354. name: "Mini-Macro",
  48355. height: math.unit(24 + 9/12, "feet")
  48356. },
  48357. {
  48358. name: "Macro",
  48359. height: math.unit(249, "feet")
  48360. },
  48361. {
  48362. name: "Mega-Macro",
  48363. height: math.unit(12490, "feet")
  48364. },
  48365. {
  48366. name: "Giga-Macro",
  48367. height: math.unit(24.9, "miles")
  48368. },
  48369. {
  48370. name: "Tera-Macro",
  48371. height: math.unit(24900, "miles")
  48372. },
  48373. {
  48374. name: "Cosmic Scale",
  48375. height: math.unit(38.9, "lightyears")
  48376. },
  48377. {
  48378. name: "Universal Scale",
  48379. height: math.unit(138e12, "lightyears")
  48380. },
  48381. ]
  48382. ))
  48383. characterMakers.push(() => makeCharacter(
  48384. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48385. {
  48386. front: {
  48387. height: math.unit(1561, "inches"),
  48388. name: "Front",
  48389. image: {
  48390. source: "./media/characters/ivan/front.svg",
  48391. extra: 1126/1071,
  48392. bottom: 26/1152
  48393. }
  48394. },
  48395. back: {
  48396. height: math.unit(1561, "inches"),
  48397. name: "Back",
  48398. image: {
  48399. source: "./media/characters/ivan/back.svg",
  48400. extra: 1134/1079,
  48401. bottom: 30/1164
  48402. }
  48403. },
  48404. },
  48405. [
  48406. {
  48407. name: "Normal",
  48408. height: math.unit(1561, "inches"),
  48409. default: true
  48410. },
  48411. ]
  48412. ))
  48413. characterMakers.push(() => makeCharacter(
  48414. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48415. {
  48416. front: {
  48417. height: math.unit(5 + 7/12, "feet"),
  48418. weight: math.unit(150, "lb"),
  48419. name: "Front",
  48420. image: {
  48421. source: "./media/characters/robin-arctic-hare/front.svg",
  48422. extra: 1148/974,
  48423. bottom: 20/1168
  48424. }
  48425. },
  48426. },
  48427. [
  48428. {
  48429. name: "Normal",
  48430. height: math.unit(5 + 7/12, "feet"),
  48431. default: true
  48432. },
  48433. ]
  48434. ))
  48435. characterMakers.push(() => makeCharacter(
  48436. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48437. {
  48438. side: {
  48439. height: math.unit(5, "feet"),
  48440. name: "Side",
  48441. image: {
  48442. source: "./media/characters/birch/side.svg",
  48443. extra: 985/796,
  48444. bottom: 111/1096
  48445. }
  48446. },
  48447. },
  48448. [
  48449. {
  48450. name: "Normal",
  48451. height: math.unit(5, "feet"),
  48452. default: true
  48453. },
  48454. ]
  48455. ))
  48456. characterMakers.push(() => makeCharacter(
  48457. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48458. {
  48459. front: {
  48460. height: math.unit(4, "feet"),
  48461. name: "Front",
  48462. image: {
  48463. source: "./media/characters/rasp/front.svg",
  48464. extra: 561/478,
  48465. bottom: 74/635
  48466. }
  48467. },
  48468. },
  48469. [
  48470. {
  48471. name: "Normal",
  48472. height: math.unit(4, "feet"),
  48473. default: true
  48474. },
  48475. ]
  48476. ))
  48477. characterMakers.push(() => makeCharacter(
  48478. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48479. {
  48480. front: {
  48481. height: math.unit(4 + 6/12, "feet"),
  48482. name: "Front",
  48483. image: {
  48484. source: "./media/characters/agatha/front.svg",
  48485. extra: 947/933,
  48486. bottom: 42/989
  48487. }
  48488. },
  48489. back: {
  48490. height: math.unit(4 + 6/12, "feet"),
  48491. name: "Back",
  48492. image: {
  48493. source: "./media/characters/agatha/back.svg",
  48494. extra: 935/922,
  48495. bottom: 48/983
  48496. }
  48497. },
  48498. },
  48499. [
  48500. {
  48501. name: "Normal",
  48502. height: math.unit(4 + 6 /12, "feet"),
  48503. default: true
  48504. },
  48505. {
  48506. name: "Max Size",
  48507. height: math.unit(500, "feet")
  48508. },
  48509. ]
  48510. ))
  48511. characterMakers.push(() => makeCharacter(
  48512. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48513. {
  48514. side: {
  48515. height: math.unit(30, "feet"),
  48516. name: "Side",
  48517. image: {
  48518. source: "./media/characters/roggy/side.svg",
  48519. extra: 909/643,
  48520. bottom: 63/972
  48521. }
  48522. },
  48523. lounging: {
  48524. height: math.unit(20, "feet"),
  48525. name: "Lounging",
  48526. image: {
  48527. source: "./media/characters/roggy/lounging.svg",
  48528. extra: 643/479,
  48529. bottom: 145/788
  48530. }
  48531. },
  48532. handpaw: {
  48533. height: math.unit(13.1, "feet"),
  48534. name: "Handpaw",
  48535. image: {
  48536. source: "./media/characters/roggy/handpaw.svg"
  48537. }
  48538. },
  48539. footpaw: {
  48540. height: math.unit(15.8, "feet"),
  48541. name: "Footpaw",
  48542. image: {
  48543. source: "./media/characters/roggy/footpaw.svg"
  48544. }
  48545. },
  48546. },
  48547. [
  48548. {
  48549. name: "Menacing",
  48550. height: math.unit(30, "feet"),
  48551. default: true
  48552. },
  48553. ]
  48554. ))
  48555. characterMakers.push(() => makeCharacter(
  48556. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48557. {
  48558. front: {
  48559. height: math.unit(5 + 7/12, "feet"),
  48560. weight: math.unit(135, "lb"),
  48561. name: "Front",
  48562. image: {
  48563. source: "./media/characters/naomi/front.svg",
  48564. extra: 1209/1154,
  48565. bottom: 129/1338
  48566. }
  48567. },
  48568. back: {
  48569. height: math.unit(5 + 7/12, "feet"),
  48570. weight: math.unit(135, "lb"),
  48571. name: "Back",
  48572. image: {
  48573. source: "./media/characters/naomi/back.svg",
  48574. extra: 1252/1190,
  48575. bottom: 23/1275
  48576. }
  48577. },
  48578. },
  48579. [
  48580. {
  48581. name: "Normal",
  48582. height: math.unit(5 + 7 /12, "feet"),
  48583. default: true
  48584. },
  48585. ]
  48586. ))
  48587. characterMakers.push(() => makeCharacter(
  48588. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48589. {
  48590. side: {
  48591. height: math.unit(35, "meters"),
  48592. name: "Side",
  48593. image: {
  48594. source: "./media/characters/kimpi/side.svg",
  48595. extra: 419/382,
  48596. bottom: 63/482
  48597. }
  48598. },
  48599. hand: {
  48600. height: math.unit(8.96, "meters"),
  48601. name: "Hand",
  48602. image: {
  48603. source: "./media/characters/kimpi/hand.svg"
  48604. }
  48605. },
  48606. },
  48607. [
  48608. {
  48609. name: "Normal",
  48610. height: math.unit(35, "meters"),
  48611. default: true
  48612. },
  48613. ]
  48614. ))
  48615. characterMakers.push(() => makeCharacter(
  48616. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48617. {
  48618. front: {
  48619. height: math.unit(4 + 4/12, "feet"),
  48620. name: "Front",
  48621. image: {
  48622. source: "./media/characters/pepper-purrloin/front.svg",
  48623. extra: 1141/1024,
  48624. bottom: 21/1162
  48625. }
  48626. },
  48627. },
  48628. [
  48629. {
  48630. name: "Normal",
  48631. height: math.unit(4 + 4/12, "feet"),
  48632. default: true
  48633. },
  48634. ]
  48635. ))
  48636. characterMakers.push(() => makeCharacter(
  48637. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48638. {
  48639. front: {
  48640. height: math.unit(6 + 2/12, "feet"),
  48641. name: "Front",
  48642. image: {
  48643. source: "./media/characters/raphael/front.svg",
  48644. extra: 1101/962,
  48645. bottom: 59/1160
  48646. }
  48647. },
  48648. },
  48649. [
  48650. {
  48651. name: "Normal",
  48652. height: math.unit(6 + 2/12, "feet"),
  48653. default: true
  48654. },
  48655. ]
  48656. ))
  48657. characterMakers.push(() => makeCharacter(
  48658. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48659. {
  48660. front: {
  48661. height: math.unit(6, "feet"),
  48662. weight: math.unit(150, "lb"),
  48663. name: "Front",
  48664. image: {
  48665. source: "./media/characters/victor-williams/front.svg",
  48666. extra: 1894/1825,
  48667. bottom: 67/1961
  48668. }
  48669. },
  48670. },
  48671. [
  48672. {
  48673. name: "Normal",
  48674. height: math.unit(6, "feet"),
  48675. default: true
  48676. },
  48677. ]
  48678. ))
  48679. characterMakers.push(() => makeCharacter(
  48680. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48681. {
  48682. front: {
  48683. height: math.unit(5 + 8/12, "feet"),
  48684. weight: math.unit(150, "lb"),
  48685. name: "Front",
  48686. image: {
  48687. source: "./media/characters/rachel/front.svg",
  48688. extra: 1902/1787,
  48689. bottom: 46/1948
  48690. }
  48691. },
  48692. },
  48693. [
  48694. {
  48695. name: "Base Height",
  48696. height: math.unit(5 + 8/12, "feet"),
  48697. default: true
  48698. },
  48699. {
  48700. name: "Macro",
  48701. height: math.unit(200, "feet")
  48702. },
  48703. {
  48704. name: "Mega Macro",
  48705. height: math.unit(1, "mile")
  48706. },
  48707. {
  48708. name: "Giga Macro",
  48709. height: math.unit(1500, "miles")
  48710. },
  48711. {
  48712. name: "Tera Macro",
  48713. height: math.unit(8000, "miles")
  48714. },
  48715. {
  48716. name: "Tera Macro+",
  48717. height: math.unit(2e5, "miles")
  48718. },
  48719. ]
  48720. ))
  48721. characterMakers.push(() => makeCharacter(
  48722. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48723. {
  48724. front: {
  48725. height: math.unit(6.5, "feet"),
  48726. name: "Front",
  48727. image: {
  48728. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48729. extra: 860/819,
  48730. bottom: 307/1167
  48731. }
  48732. },
  48733. back: {
  48734. height: math.unit(6.5, "feet"),
  48735. name: "Back",
  48736. image: {
  48737. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48738. extra: 880/837,
  48739. bottom: 395/1275
  48740. }
  48741. },
  48742. sleeping: {
  48743. height: math.unit(2.79, "feet"),
  48744. name: "Sleeping",
  48745. image: {
  48746. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48747. extra: 465/383,
  48748. bottom: 263/728
  48749. }
  48750. },
  48751. maw: {
  48752. height: math.unit(2.52, "feet"),
  48753. name: "Maw",
  48754. image: {
  48755. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48756. }
  48757. },
  48758. },
  48759. [
  48760. {
  48761. name: "Normal",
  48762. height: math.unit(6.5, "feet"),
  48763. default: true
  48764. },
  48765. ]
  48766. ))
  48767. characterMakers.push(() => makeCharacter(
  48768. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48769. {
  48770. front: {
  48771. height: math.unit(5, "feet"),
  48772. name: "Front",
  48773. image: {
  48774. source: "./media/characters/nova-nerium/front.svg",
  48775. extra: 1548/1392,
  48776. bottom: 374/1922
  48777. }
  48778. },
  48779. back: {
  48780. height: math.unit(5, "feet"),
  48781. name: "Back",
  48782. image: {
  48783. source: "./media/characters/nova-nerium/back.svg",
  48784. extra: 1658/1468,
  48785. bottom: 257/1915
  48786. }
  48787. },
  48788. },
  48789. [
  48790. {
  48791. name: "Normal",
  48792. height: math.unit(5, "feet"),
  48793. default: true
  48794. },
  48795. ]
  48796. ))
  48797. characterMakers.push(() => makeCharacter(
  48798. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48799. {
  48800. front: {
  48801. height: math.unit(5 + 4/12, "feet"),
  48802. name: "Front",
  48803. image: {
  48804. source: "./media/characters/ashe-pyriph/front.svg",
  48805. extra: 1935/1747,
  48806. bottom: 60/1995
  48807. }
  48808. },
  48809. },
  48810. [
  48811. {
  48812. name: "Normal",
  48813. height: math.unit(5 + 4/12, "feet"),
  48814. default: true
  48815. },
  48816. ]
  48817. ))
  48818. characterMakers.push(() => makeCharacter(
  48819. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48820. {
  48821. front: {
  48822. height: math.unit(8.7, "feet"),
  48823. name: "Front",
  48824. image: {
  48825. source: "./media/characters/flicker-wisp/front.svg",
  48826. extra: 1835/1613,
  48827. bottom: 449/2284
  48828. }
  48829. },
  48830. side: {
  48831. height: math.unit(8.7, "feet"),
  48832. name: "Side",
  48833. image: {
  48834. source: "./media/characters/flicker-wisp/side.svg",
  48835. extra: 1841/1642,
  48836. bottom: 336/2177
  48837. },
  48838. default: true
  48839. },
  48840. maw: {
  48841. height: math.unit(3.35, "feet"),
  48842. name: "Maw",
  48843. image: {
  48844. source: "./media/characters/flicker-wisp/maw.svg",
  48845. extra: 2338/1506,
  48846. bottom: 0/2338
  48847. }
  48848. },
  48849. ovipositor: {
  48850. height: math.unit(4.95, "feet"),
  48851. name: "Ovipositor",
  48852. image: {
  48853. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48854. }
  48855. },
  48856. egg: {
  48857. height: math.unit(0.385, "feet"),
  48858. weight: math.unit(2, "lb"),
  48859. name: "Egg",
  48860. image: {
  48861. source: "./media/characters/flicker-wisp/egg.svg"
  48862. }
  48863. },
  48864. },
  48865. [
  48866. {
  48867. name: "Normal",
  48868. height: math.unit(8.7, "feet"),
  48869. default: true
  48870. },
  48871. ]
  48872. ))
  48873. characterMakers.push(() => makeCharacter(
  48874. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48875. {
  48876. side: {
  48877. height: math.unit(11, "feet"),
  48878. name: "Side",
  48879. image: {
  48880. source: "./media/characters/faefnul/side.svg",
  48881. extra: 1100/1007,
  48882. bottom: 0/1100
  48883. }
  48884. },
  48885. },
  48886. [
  48887. {
  48888. name: "Normal",
  48889. height: math.unit(11, "feet"),
  48890. default: true
  48891. },
  48892. ]
  48893. ))
  48894. characterMakers.push(() => makeCharacter(
  48895. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48896. {
  48897. front: {
  48898. height: math.unit(6 + 2/12, "feet"),
  48899. name: "Front",
  48900. image: {
  48901. source: "./media/characters/shady/front.svg",
  48902. extra: 502/461,
  48903. bottom: 9/511
  48904. }
  48905. },
  48906. kneeling: {
  48907. height: math.unit(4.6, "feet"),
  48908. name: "Kneeling",
  48909. image: {
  48910. source: "./media/characters/shady/kneeling.svg",
  48911. extra: 1328/1219,
  48912. bottom: 117/1445
  48913. }
  48914. },
  48915. maw: {
  48916. height: math.unit(2, "feet"),
  48917. name: "Maw",
  48918. image: {
  48919. source: "./media/characters/shady/maw.svg"
  48920. }
  48921. },
  48922. },
  48923. [
  48924. {
  48925. name: "Nano",
  48926. height: math.unit(1, "mm")
  48927. },
  48928. {
  48929. name: "Micro",
  48930. height: math.unit(12, "mm")
  48931. },
  48932. {
  48933. name: "Tiny",
  48934. height: math.unit(3, "inches")
  48935. },
  48936. {
  48937. name: "Normal",
  48938. height: math.unit(6 + 2/12, "feet"),
  48939. default: true
  48940. },
  48941. {
  48942. name: "Big",
  48943. height: math.unit(15, "feet")
  48944. },
  48945. {
  48946. name: "Macro",
  48947. height: math.unit(150, "feet")
  48948. },
  48949. {
  48950. name: "Titanic",
  48951. height: math.unit(500, "feet")
  48952. },
  48953. ]
  48954. ))
  48955. characterMakers.push(() => makeCharacter(
  48956. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48957. {
  48958. front: {
  48959. height: math.unit(12, "feet"),
  48960. name: "Front",
  48961. image: {
  48962. source: "./media/characters/fenrir/front.svg",
  48963. extra: 968/875,
  48964. bottom: 22/990
  48965. }
  48966. },
  48967. },
  48968. [
  48969. {
  48970. name: "Big",
  48971. height: math.unit(12, "feet"),
  48972. default: true
  48973. },
  48974. ]
  48975. ))
  48976. characterMakers.push(() => makeCharacter(
  48977. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48978. {
  48979. front: {
  48980. height: math.unit(5 + 4/12, "feet"),
  48981. name: "Front",
  48982. image: {
  48983. source: "./media/characters/makar/front.svg",
  48984. extra: 1181/1112,
  48985. bottom: 78/1259
  48986. }
  48987. },
  48988. },
  48989. [
  48990. {
  48991. name: "Normal",
  48992. height: math.unit(5 + 4/12, "feet"),
  48993. default: true
  48994. },
  48995. ]
  48996. ))
  48997. characterMakers.push(() => makeCharacter(
  48998. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48999. {
  49000. front: {
  49001. height: math.unit(5 + 7/12, "feet"),
  49002. name: "Front",
  49003. image: {
  49004. source: "./media/characters/callow/front.svg",
  49005. extra: 1482/1304,
  49006. bottom: 23/1505
  49007. }
  49008. },
  49009. back: {
  49010. height: math.unit(5 + 7/12, "feet"),
  49011. name: "Back",
  49012. image: {
  49013. source: "./media/characters/callow/back.svg",
  49014. extra: 1484/1296,
  49015. bottom: 25/1509
  49016. }
  49017. },
  49018. },
  49019. [
  49020. {
  49021. name: "Micro",
  49022. height: math.unit(3, "inches"),
  49023. default: true
  49024. },
  49025. {
  49026. name: "Normal",
  49027. height: math.unit(5 + 7/12, "feet")
  49028. },
  49029. ]
  49030. ))
  49031. characterMakers.push(() => makeCharacter(
  49032. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49033. {
  49034. front: {
  49035. height: math.unit(6 + 2/12, "feet"),
  49036. name: "Front",
  49037. image: {
  49038. source: "./media/characters/natel/front.svg",
  49039. extra: 1833/1692,
  49040. bottom: 166/1999
  49041. }
  49042. },
  49043. },
  49044. [
  49045. {
  49046. name: "Normal",
  49047. height: math.unit(6 + 2/12, "feet"),
  49048. default: true
  49049. },
  49050. ]
  49051. ))
  49052. characterMakers.push(() => makeCharacter(
  49053. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49054. {
  49055. front: {
  49056. height: math.unit(1.75, "meters"),
  49057. name: "Front",
  49058. image: {
  49059. source: "./media/characters/misu/front.svg",
  49060. extra: 1690/1558,
  49061. bottom: 234/1924
  49062. }
  49063. },
  49064. back: {
  49065. height: math.unit(1.75, "meters"),
  49066. name: "Back",
  49067. image: {
  49068. source: "./media/characters/misu/back.svg",
  49069. extra: 1762/1618,
  49070. bottom: 146/1908
  49071. }
  49072. },
  49073. frontNude: {
  49074. height: math.unit(1.75, "meters"),
  49075. name: "Front (Nude)",
  49076. image: {
  49077. source: "./media/characters/misu/front-nude.svg",
  49078. extra: 1690/1558,
  49079. bottom: 234/1924
  49080. }
  49081. },
  49082. backNude: {
  49083. height: math.unit(1.75, "meters"),
  49084. name: "Back (Nude)",
  49085. image: {
  49086. source: "./media/characters/misu/back-nude.svg",
  49087. extra: 1762/1618,
  49088. bottom: 146/1908
  49089. }
  49090. },
  49091. frontErect: {
  49092. height: math.unit(1.75, "meters"),
  49093. name: "Front (Erect)",
  49094. image: {
  49095. source: "./media/characters/misu/front-erect.svg",
  49096. extra: 1690/1558,
  49097. bottom: 234/1924
  49098. }
  49099. },
  49100. maw: {
  49101. height: math.unit(0.47, "meters"),
  49102. name: "Maw",
  49103. image: {
  49104. source: "./media/characters/misu/maw.svg"
  49105. }
  49106. },
  49107. head: {
  49108. height: math.unit(0.35, "meters"),
  49109. name: "Head",
  49110. image: {
  49111. source: "./media/characters/misu/head.svg"
  49112. }
  49113. },
  49114. rear: {
  49115. height: math.unit(0.47, "meters"),
  49116. name: "Rear",
  49117. image: {
  49118. source: "./media/characters/misu/rear.svg"
  49119. }
  49120. },
  49121. },
  49122. [
  49123. {
  49124. name: "Normal",
  49125. height: math.unit(1.75, "meters")
  49126. },
  49127. {
  49128. name: "Not good for the people",
  49129. height: math.unit(42, "meters")
  49130. },
  49131. {
  49132. name: "Not good for the neighborhood",
  49133. height: math.unit(135, "meters")
  49134. },
  49135. {
  49136. name: "Bit bigger problem",
  49137. height: math.unit(380, "meters"),
  49138. default: true
  49139. },
  49140. {
  49141. name: "Not good for the city",
  49142. height: math.unit(1.5, "km")
  49143. },
  49144. {
  49145. name: "Not good for the county",
  49146. height: math.unit(5.5, "km")
  49147. },
  49148. {
  49149. name: "Not good for the state",
  49150. height: math.unit(25, "km")
  49151. },
  49152. {
  49153. name: "Not good for the country",
  49154. height: math.unit(125, "km")
  49155. },
  49156. {
  49157. name: "Not good for the continent",
  49158. height: math.unit(2100, "km")
  49159. },
  49160. {
  49161. name: "Not good for the planet",
  49162. height: math.unit(35000, "km")
  49163. },
  49164. {
  49165. name: "Just no",
  49166. height: math.unit(8.5e18, "km")
  49167. },
  49168. ]
  49169. ))
  49170. characterMakers.push(() => makeCharacter(
  49171. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49172. {
  49173. front: {
  49174. height: math.unit(6.5, "feet"),
  49175. name: "Front",
  49176. image: {
  49177. source: "./media/characters/poppy/front.svg",
  49178. extra: 1878/1812,
  49179. bottom: 43/1921
  49180. }
  49181. },
  49182. feet: {
  49183. height: math.unit(1.06, "feet"),
  49184. name: "Feet",
  49185. image: {
  49186. source: "./media/characters/poppy/feet.svg",
  49187. extra: 1083/1083,
  49188. bottom: 87/1170
  49189. }
  49190. },
  49191. },
  49192. [
  49193. {
  49194. name: "Human",
  49195. height: math.unit(6.5, "feet")
  49196. },
  49197. {
  49198. name: "Default",
  49199. height: math.unit(300, "feet"),
  49200. default: true
  49201. },
  49202. {
  49203. name: "Huge",
  49204. height: math.unit(850, "feet")
  49205. },
  49206. {
  49207. name: "Mega",
  49208. height: math.unit(8000, "feet")
  49209. },
  49210. {
  49211. name: "Giga",
  49212. height: math.unit(300, "miles")
  49213. },
  49214. ]
  49215. ))
  49216. characterMakers.push(() => makeCharacter(
  49217. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49218. {
  49219. bipedal: {
  49220. height: math.unit(7, "feet"),
  49221. name: "Bipedal",
  49222. image: {
  49223. source: "./media/characters/zener/bipedal.svg",
  49224. extra: 874/805,
  49225. bottom: 109/983
  49226. }
  49227. },
  49228. quadrupedal: {
  49229. height: math.unit(4.64, "feet"),
  49230. name: "Quadrupedal",
  49231. image: {
  49232. source: "./media/characters/zener/quadrupedal.svg",
  49233. extra: 638/507,
  49234. bottom: 190/828
  49235. }
  49236. },
  49237. cock: {
  49238. height: math.unit(18, "inches"),
  49239. name: "Cock",
  49240. image: {
  49241. source: "./media/characters/zener/cock.svg"
  49242. }
  49243. },
  49244. },
  49245. [
  49246. {
  49247. name: "Normal",
  49248. height: math.unit(7, "feet"),
  49249. default: true
  49250. },
  49251. ]
  49252. ))
  49253. characterMakers.push(() => makeCharacter(
  49254. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49255. {
  49256. nude: {
  49257. height: math.unit(5 + 6/12, "feet"),
  49258. name: "Nude",
  49259. image: {
  49260. source: "./media/characters/charlie-dog/nude.svg",
  49261. extra: 768/734,
  49262. bottom: 26/794
  49263. }
  49264. },
  49265. dressed: {
  49266. height: math.unit(5 + 6/12, "feet"),
  49267. name: "Dressed",
  49268. image: {
  49269. source: "./media/characters/charlie-dog/dressed.svg",
  49270. extra: 768/734,
  49271. bottom: 26/794
  49272. }
  49273. },
  49274. },
  49275. [
  49276. {
  49277. name: "Normal",
  49278. height: math.unit(5 + 6/12, "feet"),
  49279. default: true
  49280. },
  49281. ]
  49282. ))
  49283. characterMakers.push(() => makeCharacter(
  49284. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49285. {
  49286. front: {
  49287. height: math.unit(6 + 4/12, "feet"),
  49288. name: "Front",
  49289. image: {
  49290. source: "./media/characters/ir'istrasz/front.svg",
  49291. extra: 1014/977,
  49292. bottom: 65/1079
  49293. }
  49294. },
  49295. back: {
  49296. height: math.unit(6 + 4/12, "feet"),
  49297. name: "Back",
  49298. image: {
  49299. source: "./media/characters/ir'istrasz/back.svg",
  49300. extra: 1024/992,
  49301. bottom: 34/1058
  49302. }
  49303. },
  49304. },
  49305. [
  49306. {
  49307. name: "Normal",
  49308. height: math.unit(6 + 4/12, "feet"),
  49309. default: true
  49310. },
  49311. ]
  49312. ))
  49313. characterMakers.push(() => makeCharacter(
  49314. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49315. {
  49316. front: {
  49317. height: math.unit(5 + 8/12, "feet"),
  49318. name: "Front",
  49319. image: {
  49320. source: "./media/characters/dee-ditto/front.svg",
  49321. extra: 1874/1785,
  49322. bottom: 68/1942
  49323. }
  49324. },
  49325. back: {
  49326. height: math.unit(5 + 8/12, "feet"),
  49327. name: "Back",
  49328. image: {
  49329. source: "./media/characters/dee-ditto/back.svg",
  49330. extra: 1870/1783,
  49331. bottom: 77/1947
  49332. }
  49333. },
  49334. },
  49335. [
  49336. {
  49337. name: "Normal",
  49338. height: math.unit(5 + 8/12, "feet"),
  49339. default: true
  49340. },
  49341. ]
  49342. ))
  49343. characterMakers.push(() => makeCharacter(
  49344. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49345. {
  49346. front: {
  49347. height: math.unit(7 + 6/12, "feet"),
  49348. name: "Front",
  49349. image: {
  49350. source: "./media/characters/fey/front.svg",
  49351. extra: 995/979,
  49352. bottom: 30/1025
  49353. }
  49354. },
  49355. back: {
  49356. height: math.unit(7 + 6/12, "feet"),
  49357. name: "Back",
  49358. image: {
  49359. source: "./media/characters/fey/back.svg",
  49360. extra: 1079/1008,
  49361. bottom: 5/1084
  49362. }
  49363. },
  49364. dressed: {
  49365. height: math.unit(7 + 6/12, "feet"),
  49366. name: "Dressed",
  49367. image: {
  49368. source: "./media/characters/fey/dressed.svg",
  49369. extra: 995/979,
  49370. bottom: 30/1025
  49371. }
  49372. },
  49373. },
  49374. [
  49375. {
  49376. name: "Normal",
  49377. height: math.unit(7 + 6/12, "feet"),
  49378. default: true
  49379. },
  49380. ]
  49381. ))
  49382. characterMakers.push(() => makeCharacter(
  49383. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49384. {
  49385. standing: {
  49386. height: math.unit(17, "feet"),
  49387. name: "Standing",
  49388. image: {
  49389. source: "./media/characters/aster/standing.svg",
  49390. extra: 1798/1598,
  49391. bottom: 117/1915
  49392. }
  49393. },
  49394. },
  49395. [
  49396. {
  49397. name: "Normal",
  49398. height: math.unit(17, "feet"),
  49399. default: true
  49400. },
  49401. {
  49402. name: "Homewrecker",
  49403. height: math.unit(95, "feet")
  49404. },
  49405. {
  49406. name: "Planet Devourer",
  49407. height: math.unit(1008000, "miles")
  49408. },
  49409. ]
  49410. ))
  49411. characterMakers.push(() => makeCharacter(
  49412. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49413. {
  49414. front: {
  49415. height: math.unit(6 + 5/12, "feet"),
  49416. weight: math.unit(265, "lb"),
  49417. name: "Front",
  49418. image: {
  49419. source: "./media/characters/devon-childs/front.svg",
  49420. extra: 1795/1721,
  49421. bottom: 41/1836
  49422. }
  49423. },
  49424. side: {
  49425. height: math.unit(6 + 5/12, "feet"),
  49426. weight: math.unit(265, "lb"),
  49427. name: "Side",
  49428. image: {
  49429. source: "./media/characters/devon-childs/side.svg",
  49430. extra: 1812/1738,
  49431. bottom: 30/1842
  49432. }
  49433. },
  49434. back: {
  49435. height: math.unit(6 + 5/12, "feet"),
  49436. weight: math.unit(265, "lb"),
  49437. name: "Back",
  49438. image: {
  49439. source: "./media/characters/devon-childs/back.svg",
  49440. extra: 1808/1735,
  49441. bottom: 23/1831
  49442. }
  49443. },
  49444. hand: {
  49445. height: math.unit(1.464, "feet"),
  49446. name: "Hand",
  49447. image: {
  49448. source: "./media/characters/devon-childs/hand.svg"
  49449. }
  49450. },
  49451. foot: {
  49452. height: math.unit(1.6, "feet"),
  49453. name: "Foot",
  49454. image: {
  49455. source: "./media/characters/devon-childs/foot.svg"
  49456. }
  49457. },
  49458. },
  49459. [
  49460. {
  49461. name: "Micro",
  49462. height: math.unit(7, "cm")
  49463. },
  49464. {
  49465. name: "Normal",
  49466. height: math.unit(6 + 5/12, "feet"),
  49467. default: true
  49468. },
  49469. {
  49470. name: "Macro",
  49471. height: math.unit(154, "feet")
  49472. },
  49473. ]
  49474. ))
  49475. characterMakers.push(() => makeCharacter(
  49476. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49477. {
  49478. front: {
  49479. height: math.unit(6, "feet"),
  49480. weight: math.unit(180, "lb"),
  49481. name: "Front",
  49482. image: {
  49483. source: "./media/characters/lydemox-vir/front.svg",
  49484. extra: 1632/1435,
  49485. bottom: 58/1690
  49486. }
  49487. },
  49488. frontSFW: {
  49489. height: math.unit(6, "feet"),
  49490. weight: math.unit(180, "lb"),
  49491. name: "Front (SFW)",
  49492. image: {
  49493. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49494. extra: 1632/1435,
  49495. bottom: 58/1690
  49496. }
  49497. },
  49498. back: {
  49499. height: math.unit(6, "feet"),
  49500. weight: math.unit(180, "lb"),
  49501. name: "Back",
  49502. image: {
  49503. source: "./media/characters/lydemox-vir/back.svg",
  49504. extra: 1593/1408,
  49505. bottom: 31/1624
  49506. }
  49507. },
  49508. paw: {
  49509. height: math.unit(1.85, "feet"),
  49510. name: "Paw",
  49511. image: {
  49512. source: "./media/characters/lydemox-vir/paw.svg"
  49513. }
  49514. },
  49515. dick: {
  49516. height: math.unit(1.8, "feet"),
  49517. name: "Dick",
  49518. image: {
  49519. source: "./media/characters/lydemox-vir/dick.svg"
  49520. }
  49521. },
  49522. },
  49523. [
  49524. {
  49525. name: "Macro",
  49526. height: math.unit(100, "feet"),
  49527. default: true
  49528. },
  49529. {
  49530. name: "Teramacro",
  49531. height: math.unit(1, "earth")
  49532. },
  49533. {
  49534. name: "Planetary",
  49535. height: math.unit(20, "earths")
  49536. },
  49537. ]
  49538. ))
  49539. characterMakers.push(() => makeCharacter(
  49540. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49541. {
  49542. front: {
  49543. height: math.unit(15 + 8/12, "feet"),
  49544. weight: math.unit(1237, "kg"),
  49545. name: "Front",
  49546. image: {
  49547. source: "./media/characters/mia/front.svg",
  49548. extra: 1573/1446,
  49549. bottom: 58/1631
  49550. }
  49551. },
  49552. },
  49553. [
  49554. {
  49555. name: "Small",
  49556. height: math.unit(9 + 5/12, "feet")
  49557. },
  49558. {
  49559. name: "Normal",
  49560. height: math.unit(15 + 8/12, "feet"),
  49561. default: true
  49562. },
  49563. ]
  49564. ))
  49565. characterMakers.push(() => makeCharacter(
  49566. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49567. {
  49568. front: {
  49569. height: math.unit(10 + 6/12, "feet"),
  49570. weight: math.unit(1.3, "tons"),
  49571. name: "Front",
  49572. image: {
  49573. source: "./media/characters/mr-graves/front.svg",
  49574. extra: 1779/1695,
  49575. bottom: 198/1977
  49576. }
  49577. },
  49578. },
  49579. [
  49580. {
  49581. name: "Normal",
  49582. height: math.unit(10 + 6 /12, "feet"),
  49583. default: true
  49584. },
  49585. ]
  49586. ))
  49587. characterMakers.push(() => makeCharacter(
  49588. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49589. {
  49590. dressedFront: {
  49591. height: math.unit(5 + 8/12, "feet"),
  49592. weight: math.unit(125, "lb"),
  49593. name: "Dressed (Front)",
  49594. image: {
  49595. source: "./media/characters/jess/dressed-front.svg",
  49596. extra: 1176/1152,
  49597. bottom: 42/1218
  49598. }
  49599. },
  49600. dressedSide: {
  49601. height: math.unit(5 + 8/12, "feet"),
  49602. weight: math.unit(125, "lb"),
  49603. name: "Dressed (Side)",
  49604. image: {
  49605. source: "./media/characters/jess/dressed-side.svg",
  49606. extra: 1204/1190,
  49607. bottom: 6/1210
  49608. }
  49609. },
  49610. nudeFront: {
  49611. height: math.unit(5 + 8/12, "feet"),
  49612. weight: math.unit(125, "lb"),
  49613. name: "Nude (Front)",
  49614. image: {
  49615. source: "./media/characters/jess/nude-front.svg",
  49616. extra: 1176/1152,
  49617. bottom: 42/1218
  49618. }
  49619. },
  49620. nudeSide: {
  49621. height: math.unit(5 + 8/12, "feet"),
  49622. weight: math.unit(125, "lb"),
  49623. name: "Nude (Side)",
  49624. image: {
  49625. source: "./media/characters/jess/nude-side.svg",
  49626. extra: 1204/1190,
  49627. bottom: 6/1210
  49628. }
  49629. },
  49630. organsFront: {
  49631. height: math.unit(2.83799342105, "feet"),
  49632. name: "Organs (Front)",
  49633. image: {
  49634. source: "./media/characters/jess/organs-front.svg"
  49635. }
  49636. },
  49637. organsSide: {
  49638. height: math.unit(2.64225290474, "feet"),
  49639. name: "Organs (Side)",
  49640. image: {
  49641. source: "./media/characters/jess/organs-side.svg"
  49642. }
  49643. },
  49644. digestiveTractFront: {
  49645. height: math.unit(2.8106580871, "feet"),
  49646. name: "Digestive Tract (Front)",
  49647. image: {
  49648. source: "./media/characters/jess/digestive-tract-front.svg"
  49649. }
  49650. },
  49651. digestiveTractSide: {
  49652. height: math.unit(2.54365045014, "feet"),
  49653. name: "Digestive Tract (Side)",
  49654. image: {
  49655. source: "./media/characters/jess/digestive-tract-side.svg"
  49656. }
  49657. },
  49658. respiratorySystemFront: {
  49659. height: math.unit(1.11196233456, "feet"),
  49660. name: "Respiratory System (Front)",
  49661. image: {
  49662. source: "./media/characters/jess/respiratory-system-front.svg"
  49663. }
  49664. },
  49665. respiratorySystemSide: {
  49666. height: math.unit(0.89327966297, "feet"),
  49667. name: "Respiratory System (Side)",
  49668. image: {
  49669. source: "./media/characters/jess/respiratory-system-side.svg"
  49670. }
  49671. },
  49672. urinaryTractFront: {
  49673. height: math.unit(1.16126356186, "feet"),
  49674. name: "Urinary Tract (Front)",
  49675. image: {
  49676. source: "./media/characters/jess/urinary-tract-front.svg"
  49677. }
  49678. },
  49679. urinaryTractSide: {
  49680. height: math.unit(1.20910039627, "feet"),
  49681. name: "Urinary Tract (Side)",
  49682. image: {
  49683. source: "./media/characters/jess/urinary-tract-side.svg"
  49684. }
  49685. },
  49686. reproductiveOrgansFront: {
  49687. height: math.unit(0.48422591566, "feet"),
  49688. name: "Reproductive Organs (Front)",
  49689. image: {
  49690. source: "./media/characters/jess/reproductive-organs-front.svg"
  49691. }
  49692. },
  49693. reproductiveOrgansSide: {
  49694. height: math.unit(0.61553314481, "feet"),
  49695. name: "Reproductive Organs (Side)",
  49696. image: {
  49697. source: "./media/characters/jess/reproductive-organs-side.svg"
  49698. }
  49699. },
  49700. breastsFront: {
  49701. height: math.unit(0.47690395121, "feet"),
  49702. name: "Breasts (Front)",
  49703. image: {
  49704. source: "./media/characters/jess/breasts-front.svg"
  49705. }
  49706. },
  49707. breastsSide: {
  49708. height: math.unit(0.30556998307, "feet"),
  49709. name: "Breasts (Side)",
  49710. image: {
  49711. source: "./media/characters/jess/breasts-side.svg"
  49712. }
  49713. },
  49714. heartFront: {
  49715. height: math.unit(0.53011022622, "feet"),
  49716. name: "Heart (Front)",
  49717. image: {
  49718. source: "./media/characters/jess/heart-front.svg"
  49719. }
  49720. },
  49721. heartSide: {
  49722. height: math.unit(0.51790695213, "feet"),
  49723. name: "Heart (Side)",
  49724. image: {
  49725. source: "./media/characters/jess/heart-side.svg"
  49726. }
  49727. },
  49728. earsAndNoseFront: {
  49729. height: math.unit(0.29385483995, "feet"),
  49730. name: "Ears and Nose (Front)",
  49731. image: {
  49732. source: "./media/characters/jess/ears-and-nose-front.svg"
  49733. }
  49734. },
  49735. earsAndNoseSide: {
  49736. height: math.unit(0.18109658741, "feet"),
  49737. name: "Ears and Nose (Side)",
  49738. image: {
  49739. source: "./media/characters/jess/ears-and-nose-side.svg"
  49740. }
  49741. },
  49742. },
  49743. [
  49744. {
  49745. name: "Normal",
  49746. height: math.unit(5 + 8/12, "feet"),
  49747. default: true
  49748. },
  49749. ]
  49750. ))
  49751. characterMakers.push(() => makeCharacter(
  49752. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49753. {
  49754. front: {
  49755. height: math.unit(6, "feet"),
  49756. weight: math.unit(6.64467e-7, "grams"),
  49757. name: "Front",
  49758. image: {
  49759. source: "./media/characters/wimpering/front.svg",
  49760. extra: 597/587,
  49761. bottom: 34/631
  49762. }
  49763. },
  49764. },
  49765. [
  49766. {
  49767. name: "Micro",
  49768. height: math.unit(0.4, "mm"),
  49769. default: true
  49770. },
  49771. ]
  49772. ))
  49773. characterMakers.push(() => makeCharacter(
  49774. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49775. {
  49776. front: {
  49777. height: math.unit(5 + 2/12, "feet"),
  49778. weight: math.unit(110, "lb"),
  49779. name: "Front",
  49780. image: {
  49781. source: "./media/characters/keltre/front.svg",
  49782. extra: 1099/1057,
  49783. bottom: 22/1121
  49784. }
  49785. },
  49786. back: {
  49787. height: math.unit(5 + 2/12, "feet"),
  49788. weight: math.unit(110, "lb"),
  49789. name: "Back",
  49790. image: {
  49791. source: "./media/characters/keltre/back.svg",
  49792. extra: 1095/1053,
  49793. bottom: 17/1112
  49794. }
  49795. },
  49796. dressed: {
  49797. height: math.unit(5 + 2/12, "feet"),
  49798. weight: math.unit(110, "lb"),
  49799. name: "Dressed",
  49800. image: {
  49801. source: "./media/characters/keltre/dressed.svg",
  49802. extra: 1099/1057,
  49803. bottom: 22/1121
  49804. }
  49805. },
  49806. winter: {
  49807. height: math.unit(5 + 2/12, "feet"),
  49808. weight: math.unit(110, "lb"),
  49809. name: "Winter",
  49810. image: {
  49811. source: "./media/characters/keltre/winter.svg",
  49812. extra: 1099/1057,
  49813. bottom: 22/1121
  49814. }
  49815. },
  49816. head: {
  49817. height: math.unit(1.61 * 0.86, "feet"),
  49818. name: "Head",
  49819. image: {
  49820. source: "./media/characters/keltre/head.svg",
  49821. extra: 534/421,
  49822. bottom: 0/534
  49823. }
  49824. },
  49825. hand: {
  49826. height: math.unit(1.3 * 0.86, "feet"),
  49827. name: "Hand",
  49828. image: {
  49829. source: "./media/characters/keltre/hand.svg"
  49830. }
  49831. },
  49832. foot: {
  49833. height: math.unit(1.8 * 0.86, "feet"),
  49834. name: "Foot",
  49835. image: {
  49836. source: "./media/characters/keltre/foot.svg"
  49837. }
  49838. },
  49839. },
  49840. [
  49841. {
  49842. name: "Fine",
  49843. height: math.unit(1, "inch")
  49844. },
  49845. {
  49846. name: "Dimnutive",
  49847. height: math.unit(4, "inches")
  49848. },
  49849. {
  49850. name: "Tiny",
  49851. height: math.unit(1, "foot")
  49852. },
  49853. {
  49854. name: "Small",
  49855. height: math.unit(3, "feet")
  49856. },
  49857. {
  49858. name: "Normal",
  49859. height: math.unit(5 + 2/12, "feet"),
  49860. default: true
  49861. },
  49862. ]
  49863. ))
  49864. characterMakers.push(() => makeCharacter(
  49865. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49866. {
  49867. front: {
  49868. height: math.unit(6 + 2/12, "feet"),
  49869. name: "Front",
  49870. image: {
  49871. source: "./media/characters/nox/front.svg",
  49872. extra: 1917/1830,
  49873. bottom: 74/1991
  49874. }
  49875. },
  49876. back: {
  49877. height: math.unit(6 + 2/12, "feet"),
  49878. name: "Back",
  49879. image: {
  49880. source: "./media/characters/nox/back.svg",
  49881. extra: 1896/1815,
  49882. bottom: 21/1917
  49883. }
  49884. },
  49885. head: {
  49886. height: math.unit(1.1, "feet"),
  49887. name: "Head",
  49888. image: {
  49889. source: "./media/characters/nox/head.svg",
  49890. extra: 874/704,
  49891. bottom: 0/874
  49892. }
  49893. },
  49894. tattoo: {
  49895. height: math.unit(0.729, "feet"),
  49896. name: "Tattoo",
  49897. image: {
  49898. source: "./media/characters/nox/tattoo.svg"
  49899. }
  49900. },
  49901. },
  49902. [
  49903. {
  49904. name: "Normal",
  49905. height: math.unit(6 + 2/12, "feet")
  49906. },
  49907. {
  49908. name: "Gigamacro",
  49909. height: math.unit(2, "earths"),
  49910. default: true
  49911. },
  49912. {
  49913. name: "Cosmic",
  49914. height: math.unit(867, "yottameters")
  49915. },
  49916. ]
  49917. ))
  49918. characterMakers.push(() => makeCharacter(
  49919. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49920. {
  49921. front: {
  49922. height: math.unit(6, "feet"),
  49923. weight: math.unit(150, "lb"),
  49924. name: "Front",
  49925. image: {
  49926. source: "./media/characters/caspian/front.svg",
  49927. extra: 1443/1359,
  49928. bottom: 0/1443
  49929. }
  49930. },
  49931. back: {
  49932. height: math.unit(6, "feet"),
  49933. weight: math.unit(150, "lb"),
  49934. name: "Back",
  49935. image: {
  49936. source: "./media/characters/caspian/back.svg",
  49937. extra: 1379/1309,
  49938. bottom: 0/1379
  49939. }
  49940. },
  49941. head: {
  49942. height: math.unit(0.9, "feet"),
  49943. name: "Head",
  49944. image: {
  49945. source: "./media/characters/caspian/head.svg",
  49946. extra: 692/492,
  49947. bottom: 0/692
  49948. }
  49949. },
  49950. headAlt: {
  49951. height: math.unit(0.95, "feet"),
  49952. name: "Head (Alt)",
  49953. image: {
  49954. source: "./media/characters/caspian/head-alt.svg",
  49955. extra: 668/508,
  49956. bottom: 0/668
  49957. }
  49958. },
  49959. hand: {
  49960. height: math.unit(0.8, "feet"),
  49961. name: "Hand",
  49962. image: {
  49963. source: "./media/characters/caspian/hand.svg"
  49964. }
  49965. },
  49966. paw: {
  49967. height: math.unit(0.95, "feet"),
  49968. name: "Paw",
  49969. image: {
  49970. source: "./media/characters/caspian/paw.svg"
  49971. }
  49972. },
  49973. },
  49974. [
  49975. {
  49976. name: "Normal",
  49977. height: math.unit(162, "feet"),
  49978. default: true
  49979. },
  49980. ]
  49981. ))
  49982. characterMakers.push(() => makeCharacter(
  49983. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49984. {
  49985. front: {
  49986. height: math.unit(6, "feet"),
  49987. name: "Front",
  49988. image: {
  49989. source: "./media/characters/myra-aisling/front.svg",
  49990. extra: 1268/1166,
  49991. bottom: 73/1341
  49992. }
  49993. },
  49994. back: {
  49995. height: math.unit(6, "feet"),
  49996. name: "Back",
  49997. image: {
  49998. source: "./media/characters/myra-aisling/back.svg",
  49999. extra: 1249/1149,
  50000. bottom: 79/1328
  50001. }
  50002. },
  50003. dressed: {
  50004. height: math.unit(6, "feet"),
  50005. name: "Dressed",
  50006. image: {
  50007. source: "./media/characters/myra-aisling/dressed.svg",
  50008. extra: 1290/1189,
  50009. bottom: 47/1337
  50010. }
  50011. },
  50012. hand: {
  50013. height: math.unit(1.1, "feet"),
  50014. name: "Hand",
  50015. image: {
  50016. source: "./media/characters/myra-aisling/hand.svg"
  50017. }
  50018. },
  50019. paw: {
  50020. height: math.unit(1.23, "feet"),
  50021. name: "Paw",
  50022. image: {
  50023. source: "./media/characters/myra-aisling/paw.svg"
  50024. }
  50025. },
  50026. },
  50027. [
  50028. {
  50029. name: "Normal",
  50030. height: math.unit(160, "feet"),
  50031. default: true
  50032. },
  50033. ]
  50034. ))
  50035. characterMakers.push(() => makeCharacter(
  50036. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50037. {
  50038. front: {
  50039. height: math.unit(6, "feet"),
  50040. name: "Front",
  50041. image: {
  50042. source: "./media/characters/tenley-sidero/front.svg",
  50043. extra: 1365/1276,
  50044. bottom: 47/1412
  50045. }
  50046. },
  50047. back: {
  50048. height: math.unit(6, "feet"),
  50049. name: "Back",
  50050. image: {
  50051. source: "./media/characters/tenley-sidero/back.svg",
  50052. extra: 1383/1283,
  50053. bottom: 35/1418
  50054. }
  50055. },
  50056. dressed: {
  50057. height: math.unit(6, "feet"),
  50058. name: "Dressed",
  50059. image: {
  50060. source: "./media/characters/tenley-sidero/dressed.svg",
  50061. extra: 1364/1275,
  50062. bottom: 42/1406
  50063. }
  50064. },
  50065. head: {
  50066. height: math.unit(1.47, "feet"),
  50067. name: "Head",
  50068. image: {
  50069. source: "./media/characters/tenley-sidero/head.svg",
  50070. extra: 610/490,
  50071. bottom: 0/610
  50072. }
  50073. },
  50074. },
  50075. [
  50076. {
  50077. name: "Normal",
  50078. height: math.unit(154, "feet"),
  50079. default: true
  50080. },
  50081. ]
  50082. ))
  50083. characterMakers.push(() => makeCharacter(
  50084. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50085. {
  50086. front: {
  50087. height: math.unit(5, "inches"),
  50088. name: "Front",
  50089. image: {
  50090. source: "./media/characters/mallory/front.svg",
  50091. extra: 1919/1678,
  50092. bottom: 29/1948
  50093. }
  50094. },
  50095. hand: {
  50096. height: math.unit(0.73, "inches"),
  50097. name: "Hand",
  50098. image: {
  50099. source: "./media/characters/mallory/hand.svg"
  50100. }
  50101. },
  50102. paw: {
  50103. height: math.unit(0.68, "inches"),
  50104. name: "Paw",
  50105. image: {
  50106. source: "./media/characters/mallory/paw.svg"
  50107. }
  50108. },
  50109. },
  50110. [
  50111. {
  50112. name: "Small",
  50113. height: math.unit(5, "inches"),
  50114. default: true
  50115. },
  50116. ]
  50117. ))
  50118. characterMakers.push(() => makeCharacter(
  50119. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50120. {
  50121. naked: {
  50122. height: math.unit(6, "feet"),
  50123. name: "Naked",
  50124. image: {
  50125. source: "./media/characters/mab/naked.svg",
  50126. extra: 1855/1757,
  50127. bottom: 208/2063
  50128. }
  50129. },
  50130. outside: {
  50131. height: math.unit(6, "feet"),
  50132. name: "Outside",
  50133. image: {
  50134. source: "./media/characters/mab/outside.svg",
  50135. extra: 1855/1757,
  50136. bottom: 208/2063
  50137. }
  50138. },
  50139. party: {
  50140. height: math.unit(6, "feet"),
  50141. name: "Party",
  50142. image: {
  50143. source: "./media/characters/mab/party.svg",
  50144. extra: 1855/1757,
  50145. bottom: 208/2063
  50146. }
  50147. },
  50148. },
  50149. [
  50150. {
  50151. name: "Normal",
  50152. height: math.unit(165, "feet"),
  50153. default: true
  50154. },
  50155. ]
  50156. ))
  50157. characterMakers.push(() => makeCharacter(
  50158. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50159. {
  50160. feral: {
  50161. height: math.unit(12, "feet"),
  50162. weight: math.unit(20000, "lb"),
  50163. name: "Side",
  50164. image: {
  50165. source: "./media/characters/winter/feral.svg",
  50166. extra: 1286/943,
  50167. bottom: 112/1398
  50168. },
  50169. form: "feral",
  50170. default: true
  50171. },
  50172. feralNsfw: {
  50173. height: math.unit(12, "feet"),
  50174. weight: math.unit(20000, "lb"),
  50175. name: "Side (NSFW)",
  50176. image: {
  50177. source: "./media/characters/winter/feral-nsfw.svg",
  50178. extra: 1286/943,
  50179. bottom: 112/1398
  50180. },
  50181. form: "feral"
  50182. },
  50183. dick: {
  50184. height: math.unit(3.79, "feet"),
  50185. name: "Dick",
  50186. image: {
  50187. source: "./media/characters/winter/dick.svg"
  50188. },
  50189. form: "feral"
  50190. },
  50191. anthro: {
  50192. height: math.unit(12, "feet"),
  50193. weight: math.unit(10, "tons"),
  50194. name: "Anthro",
  50195. image: {
  50196. source: "./media/characters/winter/anthro.svg",
  50197. extra: 1701/1553,
  50198. bottom: 64/1765
  50199. },
  50200. form: "anthro",
  50201. default: true
  50202. },
  50203. },
  50204. [
  50205. {
  50206. name: "Big",
  50207. height: math.unit(12, "feet"),
  50208. default: true,
  50209. form: "feral"
  50210. },
  50211. {
  50212. name: "Big",
  50213. height: math.unit(12, "feet"),
  50214. default: true,
  50215. form: "anthro"
  50216. },
  50217. ],
  50218. {
  50219. "feral": {
  50220. name: "Feral",
  50221. default: true
  50222. },
  50223. "anthro": {
  50224. name: "Anthro"
  50225. }
  50226. }
  50227. ))
  50228. characterMakers.push(() => makeCharacter(
  50229. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50230. {
  50231. front: {
  50232. height: math.unit(4.1, "inches"),
  50233. name: "Front",
  50234. image: {
  50235. source: "./media/characters/alto/front.svg",
  50236. extra: 736/627,
  50237. bottom: 90/826
  50238. }
  50239. },
  50240. },
  50241. [
  50242. {
  50243. name: "Normal",
  50244. height: math.unit(4.1, "inches"),
  50245. default: true
  50246. },
  50247. ]
  50248. ))
  50249. characterMakers.push(() => makeCharacter(
  50250. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50251. {
  50252. sitting: {
  50253. height: math.unit(3, "feet"),
  50254. name: "Sitting",
  50255. image: {
  50256. source: "./media/characters/ratstrid-v/sitting.svg",
  50257. extra: 355/310,
  50258. bottom: 136/491
  50259. }
  50260. },
  50261. },
  50262. [
  50263. {
  50264. name: "Normal",
  50265. height: math.unit(3, "feet"),
  50266. default: true
  50267. },
  50268. ]
  50269. ))
  50270. characterMakers.push(() => makeCharacter(
  50271. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50272. {
  50273. back: {
  50274. height: math.unit(6, "feet"),
  50275. weight: math.unit(450, "lb"),
  50276. name: "Back",
  50277. image: {
  50278. source: "./media/characters/siz/back.svg",
  50279. extra: 1449/1274,
  50280. bottom: 13/1462
  50281. }
  50282. },
  50283. },
  50284. [
  50285. {
  50286. name: "Smallest",
  50287. height: math.unit(18 + 3/12, "feet")
  50288. },
  50289. {
  50290. name: "Modest",
  50291. height: math.unit(56 + 8/12, "feet"),
  50292. default: true
  50293. },
  50294. {
  50295. name: "Largest",
  50296. height: math.unit(3590, "feet")
  50297. },
  50298. ]
  50299. ))
  50300. characterMakers.push(() => makeCharacter(
  50301. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50302. {
  50303. front: {
  50304. height: math.unit(5 + 9/12, "feet"),
  50305. weight: math.unit(150, "lb"),
  50306. name: "Front",
  50307. image: {
  50308. source: "./media/characters/ven/front.svg",
  50309. extra: 1372/1320,
  50310. bottom: 73/1445
  50311. }
  50312. },
  50313. side: {
  50314. height: math.unit(5 + 9/12, "feet"),
  50315. weight: math.unit(1150, "lb"),
  50316. name: "Side",
  50317. image: {
  50318. source: "./media/characters/ven/side.svg",
  50319. extra: 1119/1070,
  50320. bottom: 42/1161
  50321. },
  50322. default: true
  50323. },
  50324. },
  50325. [
  50326. {
  50327. name: "Normal",
  50328. height: math.unit(5 + 9/12, "feet"),
  50329. default: true
  50330. },
  50331. ]
  50332. ))
  50333. characterMakers.push(() => makeCharacter(
  50334. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50335. {
  50336. front: {
  50337. height: math.unit(12, "feet"),
  50338. weight: math.unit(1000, "kg"),
  50339. name: "Front",
  50340. image: {
  50341. source: "./media/characters/maple/front.svg",
  50342. extra: 1193/1081,
  50343. bottom: 22/1215
  50344. }
  50345. },
  50346. },
  50347. [
  50348. {
  50349. name: "Compressed",
  50350. height: math.unit(7, "feet")
  50351. },
  50352. {
  50353. name: "Normal",
  50354. height: math.unit(12, "feet"),
  50355. default: true
  50356. },
  50357. ]
  50358. ))
  50359. characterMakers.push(() => makeCharacter(
  50360. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50361. {
  50362. front: {
  50363. height: math.unit(9, "feet"),
  50364. weight: math.unit(1500, "lb"),
  50365. name: "Front",
  50366. image: {
  50367. source: "./media/characters/nora/front.svg",
  50368. extra: 1348/1286,
  50369. bottom: 218/1566
  50370. }
  50371. },
  50372. erect: {
  50373. height: math.unit(9, "feet"),
  50374. weight: math.unit(11500, "lb"),
  50375. name: "Erect",
  50376. image: {
  50377. source: "./media/characters/nora/erect.svg",
  50378. extra: 1488/1433,
  50379. bottom: 133/1621
  50380. }
  50381. },
  50382. },
  50383. [
  50384. {
  50385. name: "Normal",
  50386. height: math.unit(9, "feet"),
  50387. default: true
  50388. },
  50389. ]
  50390. ))
  50391. characterMakers.push(() => makeCharacter(
  50392. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50393. {
  50394. front: {
  50395. height: math.unit(25, "feet"),
  50396. weight: math.unit(27500, "lb"),
  50397. name: "Front",
  50398. image: {
  50399. source: "./media/characters/north-caudin/front.svg",
  50400. extra: 1184/1082,
  50401. bottom: 23/1207
  50402. }
  50403. },
  50404. },
  50405. [
  50406. {
  50407. name: "Compressed",
  50408. height: math.unit(10, "feet")
  50409. },
  50410. {
  50411. name: "Normal",
  50412. height: math.unit(25, "feet"),
  50413. default: true
  50414. },
  50415. ]
  50416. ))
  50417. characterMakers.push(() => makeCharacter(
  50418. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50419. {
  50420. front: {
  50421. height: math.unit(9, "feet"),
  50422. weight: math.unit(1250, "lb"),
  50423. name: "Front",
  50424. image: {
  50425. source: "./media/characters/merrian/front.svg",
  50426. extra: 2393/2304,
  50427. bottom: 40/2433
  50428. }
  50429. },
  50430. },
  50431. [
  50432. {
  50433. name: "Normal",
  50434. height: math.unit(9, "feet"),
  50435. default: true
  50436. },
  50437. ]
  50438. ))
  50439. characterMakers.push(() => makeCharacter(
  50440. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50441. {
  50442. front: {
  50443. height: math.unit(9, "feet"),
  50444. weight: math.unit(1000, "lb"),
  50445. name: "Front",
  50446. image: {
  50447. source: "./media/characters/hazel/front.svg",
  50448. extra: 2351/2298,
  50449. bottom: 38/2389
  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: "Emma", species: ["caudin"], tags: ["anthro"] },
  50463. {
  50464. front: {
  50465. height: math.unit(13, "feet"),
  50466. weight: math.unit(3200, "lb"),
  50467. name: "Front",
  50468. image: {
  50469. source: "./media/characters/emma/front.svg",
  50470. extra: 2263/2029,
  50471. bottom: 68/2331
  50472. }
  50473. },
  50474. },
  50475. [
  50476. {
  50477. name: "Normal",
  50478. height: math.unit(13, "feet"),
  50479. default: true
  50480. },
  50481. ]
  50482. ))
  50483. characterMakers.push(() => makeCharacter(
  50484. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50485. {
  50486. front: {
  50487. height: math.unit(11 + 9/12, "feet"),
  50488. weight: math.unit(2500, "lb"),
  50489. name: "Front",
  50490. image: {
  50491. source: "./media/characters/ilumina/front.svg",
  50492. extra: 2248/2209,
  50493. bottom: 164/2412
  50494. }
  50495. },
  50496. },
  50497. [
  50498. {
  50499. name: "Normal",
  50500. height: math.unit(11 + 9/12, "feet"),
  50501. default: true
  50502. },
  50503. ]
  50504. ))
  50505. characterMakers.push(() => makeCharacter(
  50506. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50507. {
  50508. front: {
  50509. height: math.unit(8 + 10/12, "feet"),
  50510. weight: math.unit(1350, "lb"),
  50511. name: "Front",
  50512. image: {
  50513. source: "./media/characters/moonshine/front.svg",
  50514. extra: 2395/2288,
  50515. bottom: 40/2435
  50516. }
  50517. },
  50518. },
  50519. [
  50520. {
  50521. name: "Normal",
  50522. height: math.unit(8 + 10/12, "feet"),
  50523. default: true
  50524. },
  50525. ]
  50526. ))
  50527. characterMakers.push(() => makeCharacter(
  50528. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50529. {
  50530. front: {
  50531. height: math.unit(14, "feet"),
  50532. weight: math.unit(3400, "lb"),
  50533. name: "Front",
  50534. image: {
  50535. source: "./media/characters/aletia/front.svg",
  50536. extra: 1185/1052,
  50537. bottom: 21/1206
  50538. }
  50539. },
  50540. },
  50541. [
  50542. {
  50543. name: "Compressed",
  50544. height: math.unit(8, "feet")
  50545. },
  50546. {
  50547. name: "Normal",
  50548. height: math.unit(14, "feet"),
  50549. default: true
  50550. },
  50551. ]
  50552. ))
  50553. characterMakers.push(() => makeCharacter(
  50554. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50555. {
  50556. front: {
  50557. height: math.unit(17, "feet"),
  50558. weight: math.unit(6500, "lb"),
  50559. name: "Front",
  50560. image: {
  50561. source: "./media/characters/deidra/front.svg",
  50562. extra: 1201/1081,
  50563. bottom: 16/1217
  50564. }
  50565. },
  50566. },
  50567. [
  50568. {
  50569. name: "Compressed",
  50570. height: math.unit(9 + 6/12, "feet")
  50571. },
  50572. {
  50573. name: "Normal",
  50574. height: math.unit(17, "feet"),
  50575. default: true
  50576. },
  50577. ]
  50578. ))
  50579. characterMakers.push(() => makeCharacter(
  50580. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50581. {
  50582. front: {
  50583. height: math.unit(7 + 4/12, "feet"),
  50584. weight: math.unit(280, "lb"),
  50585. name: "Front",
  50586. image: {
  50587. source: "./media/characters/freki-yrmori/front.svg",
  50588. extra: 1286/1182,
  50589. bottom: 29/1315
  50590. }
  50591. },
  50592. maw: {
  50593. height: math.unit(0.9, "feet"),
  50594. name: "Maw",
  50595. image: {
  50596. source: "./media/characters/freki-yrmori/maw.svg"
  50597. }
  50598. },
  50599. },
  50600. [
  50601. {
  50602. name: "Normal",
  50603. height: math.unit(7 + 4/12, "feet"),
  50604. default: true
  50605. },
  50606. {
  50607. name: "Macro",
  50608. height: math.unit(38.5, "meters")
  50609. },
  50610. ]
  50611. ))
  50612. characterMakers.push(() => makeCharacter(
  50613. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50614. {
  50615. side: {
  50616. height: math.unit(47.2, "meters"),
  50617. weight: math.unit(10000, "tons"),
  50618. name: "Side",
  50619. image: {
  50620. source: "./media/characters/aetherios/side.svg",
  50621. extra: 2363/642,
  50622. bottom: 221/2584
  50623. }
  50624. },
  50625. top: {
  50626. height: math.unit(240, "meters"),
  50627. weight: math.unit(10000, "tons"),
  50628. name: "Top",
  50629. image: {
  50630. source: "./media/characters/aetherios/top.svg"
  50631. }
  50632. },
  50633. bottom: {
  50634. height: math.unit(240, "meters"),
  50635. weight: math.unit(10000, "tons"),
  50636. name: "Bottom",
  50637. image: {
  50638. source: "./media/characters/aetherios/bottom.svg"
  50639. }
  50640. },
  50641. head: {
  50642. height: math.unit(38.6, "meters"),
  50643. name: "Head",
  50644. image: {
  50645. source: "./media/characters/aetherios/head.svg",
  50646. extra: 1335/1112,
  50647. bottom: 0/1335
  50648. }
  50649. },
  50650. front: {
  50651. height: math.unit(29, "meters"),
  50652. name: "Front",
  50653. image: {
  50654. source: "./media/characters/aetherios/front.svg",
  50655. extra: 1266/953,
  50656. bottom: 158/1424
  50657. }
  50658. },
  50659. maw: {
  50660. height: math.unit(16.37, "meters"),
  50661. name: "Maw",
  50662. image: {
  50663. source: "./media/characters/aetherios/maw.svg",
  50664. extra: 748/637,
  50665. bottom: 0/748
  50666. },
  50667. extraAttributes: {
  50668. preyCapacity: {
  50669. name: "Capacity",
  50670. power: 3,
  50671. type: "volume",
  50672. base: math.unit(1000, "people")
  50673. },
  50674. tongueSize: {
  50675. name: "Tongue Size",
  50676. power: 2,
  50677. type: "area",
  50678. base: math.unit(21, "m^2")
  50679. }
  50680. }
  50681. },
  50682. forepaw: {
  50683. height: math.unit(18, "meters"),
  50684. name: "Forepaw",
  50685. image: {
  50686. source: "./media/characters/aetherios/forepaw.svg"
  50687. }
  50688. },
  50689. hindpaw: {
  50690. height: math.unit(23, "meters"),
  50691. name: "Hindpaw",
  50692. image: {
  50693. source: "./media/characters/aetherios/hindpaw.svg"
  50694. }
  50695. },
  50696. genitals: {
  50697. height: math.unit(42, "meters"),
  50698. name: "Genitals",
  50699. image: {
  50700. source: "./media/characters/aetherios/genitals.svg"
  50701. }
  50702. },
  50703. },
  50704. [
  50705. {
  50706. name: "Normal",
  50707. height: math.unit(47.2, "meters"),
  50708. default: true
  50709. },
  50710. {
  50711. name: "Macro",
  50712. height: math.unit(160, "meters")
  50713. },
  50714. {
  50715. name: "Mega",
  50716. height: math.unit(1.87, "km")
  50717. },
  50718. {
  50719. name: "Giga",
  50720. height: math.unit(40000, "km")
  50721. },
  50722. {
  50723. name: "Stellar",
  50724. height: math.unit(158000000, "km")
  50725. },
  50726. {
  50727. name: "Cosmic",
  50728. height: math.unit(9.46e12, "km")
  50729. },
  50730. ]
  50731. ))
  50732. characterMakers.push(() => makeCharacter(
  50733. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50734. {
  50735. front: {
  50736. height: math.unit(5 + 4/12, "feet"),
  50737. weight: math.unit(80, "lb"),
  50738. name: "Front",
  50739. image: {
  50740. source: "./media/characters/mizu-gieeg/front.svg",
  50741. extra: 850/709,
  50742. bottom: 52/902
  50743. }
  50744. },
  50745. back: {
  50746. height: math.unit(5 + 4/12, "feet"),
  50747. weight: math.unit(80, "lb"),
  50748. name: "Back",
  50749. image: {
  50750. source: "./media/characters/mizu-gieeg/back.svg",
  50751. extra: 882/745,
  50752. bottom: 25/907
  50753. }
  50754. },
  50755. },
  50756. [
  50757. {
  50758. name: "Normal",
  50759. height: math.unit(5 + 4/12, "feet"),
  50760. default: true
  50761. },
  50762. ]
  50763. ))
  50764. characterMakers.push(() => makeCharacter(
  50765. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50766. {
  50767. front: {
  50768. height: math.unit(6, "feet"),
  50769. name: "Front",
  50770. image: {
  50771. source: "./media/characters/roselle-st-papier/front.svg",
  50772. extra: 1430/1280,
  50773. bottom: 37/1467
  50774. }
  50775. },
  50776. back: {
  50777. height: math.unit(6, "feet"),
  50778. name: "Back",
  50779. image: {
  50780. source: "./media/characters/roselle-st-papier/back.svg",
  50781. extra: 1491/1296,
  50782. bottom: 23/1514
  50783. }
  50784. },
  50785. ear: {
  50786. height: math.unit(1.26, "feet"),
  50787. name: "Ear",
  50788. image: {
  50789. source: "./media/characters/roselle-st-papier/ear.svg"
  50790. }
  50791. },
  50792. },
  50793. [
  50794. {
  50795. name: "Normal",
  50796. height: math.unit(150, "feet"),
  50797. default: true
  50798. },
  50799. ]
  50800. ))
  50801. characterMakers.push(() => makeCharacter(
  50802. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50803. {
  50804. front: {
  50805. height: math.unit(1, "inches"),
  50806. name: "Front",
  50807. image: {
  50808. source: "./media/characters/valargent/front.svg",
  50809. extra: 1825/1694,
  50810. bottom: 62/1887
  50811. }
  50812. },
  50813. back: {
  50814. height: math.unit(1, "inches"),
  50815. name: "Back",
  50816. image: {
  50817. source: "./media/characters/valargent/back.svg",
  50818. extra: 1775/1682,
  50819. bottom: 88/1863
  50820. }
  50821. },
  50822. },
  50823. [
  50824. {
  50825. name: "Micro",
  50826. height: math.unit(1, "inch"),
  50827. default: true
  50828. },
  50829. ]
  50830. ))
  50831. characterMakers.push(() => makeCharacter(
  50832. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50833. {
  50834. front: {
  50835. height: math.unit(3.4, "meters"),
  50836. name: "Front",
  50837. image: {
  50838. source: "./media/characters/zarina/front.svg",
  50839. extra: 1733/1425,
  50840. bottom: 93/1826
  50841. }
  50842. },
  50843. squatting: {
  50844. height: math.unit(2.14, "meters"),
  50845. name: "Squatting",
  50846. image: {
  50847. source: "./media/characters/zarina/squatting.svg",
  50848. extra: 1073/788,
  50849. bottom: 63/1136
  50850. }
  50851. },
  50852. back: {
  50853. height: math.unit(2.14, "meters"),
  50854. name: "Back",
  50855. image: {
  50856. source: "./media/characters/zarina/back.svg",
  50857. extra: 1128/885,
  50858. bottom: 0/1128
  50859. }
  50860. },
  50861. },
  50862. [
  50863. {
  50864. name: "Normal",
  50865. height: math.unit(3.4, "meters"),
  50866. default: true
  50867. },
  50868. {
  50869. name: "Big",
  50870. height: math.unit(5, "meters")
  50871. },
  50872. {
  50873. name: "Macro",
  50874. height: math.unit(110, "meters")
  50875. },
  50876. ]
  50877. ))
  50878. characterMakers.push(() => makeCharacter(
  50879. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50880. {
  50881. front: {
  50882. height: math.unit(7, "feet"),
  50883. name: "Front",
  50884. image: {
  50885. source: "./media/characters/ventus-astro-fox/front.svg",
  50886. extra: 1792/1623,
  50887. bottom: 28/1820
  50888. }
  50889. },
  50890. back: {
  50891. height: math.unit(7, "feet"),
  50892. name: "Back",
  50893. image: {
  50894. source: "./media/characters/ventus-astro-fox/back.svg",
  50895. extra: 1789/1620,
  50896. bottom: 31/1820
  50897. }
  50898. },
  50899. outfit: {
  50900. height: math.unit(7, "feet"),
  50901. name: "Outfit",
  50902. image: {
  50903. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50904. extra: 1054/925,
  50905. bottom: 15/1069
  50906. }
  50907. },
  50908. head: {
  50909. height: math.unit(1.12, "feet"),
  50910. name: "Head",
  50911. image: {
  50912. source: "./media/characters/ventus-astro-fox/head.svg",
  50913. extra: 866/504,
  50914. bottom: 0/866
  50915. }
  50916. },
  50917. hand: {
  50918. height: math.unit(1, "feet"),
  50919. name: "Hand",
  50920. image: {
  50921. source: "./media/characters/ventus-astro-fox/hand.svg"
  50922. }
  50923. },
  50924. paw: {
  50925. height: math.unit(1.5, "feet"),
  50926. name: "Paw",
  50927. image: {
  50928. source: "./media/characters/ventus-astro-fox/paw.svg"
  50929. }
  50930. },
  50931. },
  50932. [
  50933. {
  50934. name: "Normal",
  50935. height: math.unit(7, "feet"),
  50936. default: true
  50937. },
  50938. {
  50939. name: "Macro",
  50940. height: math.unit(200, "feet")
  50941. },
  50942. {
  50943. name: "Cosmic",
  50944. height: math.unit(3, "universes")
  50945. },
  50946. ]
  50947. ))
  50948. characterMakers.push(() => makeCharacter(
  50949. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50950. {
  50951. front: {
  50952. height: math.unit(3, "meters"),
  50953. weight: math.unit(7000, "lb"),
  50954. name: "Front",
  50955. image: {
  50956. source: "./media/characters/core-t/front.svg",
  50957. extra: 5729/4941,
  50958. bottom: 1129/6858
  50959. }
  50960. },
  50961. },
  50962. [
  50963. {
  50964. name: "Big",
  50965. height: math.unit(3, "meters"),
  50966. default: true
  50967. },
  50968. ]
  50969. ))
  50970. characterMakers.push(() => makeCharacter(
  50971. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50972. {
  50973. normal: {
  50974. height: math.unit(6 + 6/12, "feet"),
  50975. weight: math.unit(275, "lb"),
  50976. name: "Front",
  50977. image: {
  50978. source: "./media/characters/cadbunny/normal.svg",
  50979. extra: 1129/947,
  50980. bottom: 93/1222
  50981. },
  50982. default: true,
  50983. form: "normal"
  50984. },
  50985. gigantamax: {
  50986. height: math.unit(26, "feet"),
  50987. weight: math.unit(16000, "lb"),
  50988. name: "Front",
  50989. image: {
  50990. source: "./media/characters/cadbunny/gigantamax.svg",
  50991. extra: 1133/944,
  50992. bottom: 90/1223
  50993. },
  50994. default: true,
  50995. form: "gigantamax"
  50996. },
  50997. },
  50998. [
  50999. {
  51000. name: "Normal",
  51001. height: math.unit(6 + 6/12, "feet"),
  51002. default: true,
  51003. form: "normal"
  51004. },
  51005. {
  51006. name: "Small",
  51007. height: math.unit(26, "feet"),
  51008. default: true,
  51009. form: "gigantamax"
  51010. },
  51011. {
  51012. name: "Large",
  51013. height: math.unit(78, "feet"),
  51014. form: "gigantamax"
  51015. },
  51016. ],
  51017. {
  51018. "normal": {
  51019. name: "Normal",
  51020. default: true
  51021. },
  51022. "gigantamax": {
  51023. name: "Gigantamax"
  51024. }
  51025. }
  51026. ))
  51027. characterMakers.push(() => makeCharacter(
  51028. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51029. {
  51030. anthroFront: {
  51031. height: math.unit(8, "feet"),
  51032. weight: math.unit(300, "lb"),
  51033. name: "Front",
  51034. image: {
  51035. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51036. extra: 1272/1176,
  51037. bottom: 53/1325
  51038. },
  51039. form: "anthro",
  51040. default: true
  51041. },
  51042. feralSide: {
  51043. height: math.unit(4, "feet"),
  51044. weight: math.unit(250, "lb"),
  51045. name: "Side",
  51046. image: {
  51047. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51048. extra: 731/621,
  51049. bottom: 0/731
  51050. },
  51051. form: "feral",
  51052. default: true
  51053. },
  51054. },
  51055. [
  51056. {
  51057. name: "Regular",
  51058. height: math.unit(8, "feet"),
  51059. form: "anthro"
  51060. },
  51061. {
  51062. name: "Macro",
  51063. height: math.unit(250, "feet"),
  51064. form: "anthro",
  51065. default: true
  51066. },
  51067. {
  51068. name: "Regular",
  51069. height: math.unit(4, "feet"),
  51070. form: "feral"
  51071. },
  51072. {
  51073. name: "Macro",
  51074. height: math.unit(125, "feet"),
  51075. form: "feral",
  51076. default: true
  51077. },
  51078. ],
  51079. {
  51080. "anthro": {
  51081. name: "Anthro",
  51082. default: true
  51083. },
  51084. "feral": {
  51085. name: "Feral",
  51086. },
  51087. }
  51088. ))
  51089. characterMakers.push(() => makeCharacter(
  51090. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51091. {
  51092. front: {
  51093. height: math.unit(11 + 10/12, "feet"),
  51094. weight: math.unit(1587, "kg"),
  51095. name: "Front",
  51096. image: {
  51097. source: "./media/characters/maple-javira-dragon/front.svg",
  51098. extra: 1136/744,
  51099. bottom: 73/1209
  51100. }
  51101. },
  51102. side: {
  51103. height: math.unit(11 + 10/12, "feet"),
  51104. weight: math.unit(1587, "kg"),
  51105. name: "Side",
  51106. image: {
  51107. source: "./media/characters/maple-javira-dragon/side.svg",
  51108. extra: 712/505,
  51109. bottom: 17/729
  51110. }
  51111. },
  51112. head: {
  51113. height: math.unit(8.05, "feet"),
  51114. name: "Head",
  51115. image: {
  51116. source: "./media/characters/maple-javira-dragon/head.svg",
  51117. extra: 1420/1344,
  51118. bottom: 0/1420
  51119. }
  51120. },
  51121. },
  51122. [
  51123. {
  51124. name: "Normal",
  51125. height: math.unit(11 + 10/12, "feet"),
  51126. default: true
  51127. },
  51128. ]
  51129. ))
  51130. characterMakers.push(() => makeCharacter(
  51131. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51132. {
  51133. front: {
  51134. height: math.unit(117, "cm"),
  51135. weight: math.unit(50, "kg"),
  51136. name: "Front",
  51137. image: {
  51138. source: "./media/characters/sonia-wyverntail/front.svg",
  51139. extra: 708/592,
  51140. bottom: 25/733
  51141. }
  51142. },
  51143. },
  51144. [
  51145. {
  51146. name: "Normal",
  51147. height: math.unit(117, "cm"),
  51148. default: true
  51149. },
  51150. ]
  51151. ))
  51152. characterMakers.push(() => makeCharacter(
  51153. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51154. {
  51155. front: {
  51156. height: math.unit(6 + 5/12, "feet"),
  51157. name: "Front",
  51158. image: {
  51159. source: "./media/characters/micah/front.svg",
  51160. extra: 1758/1546,
  51161. bottom: 214/1972
  51162. }
  51163. },
  51164. },
  51165. [
  51166. {
  51167. name: "Normal",
  51168. height: math.unit(6 + 5/12, "feet"),
  51169. default: true
  51170. },
  51171. ]
  51172. ))
  51173. characterMakers.push(() => makeCharacter(
  51174. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  51175. {
  51176. front: {
  51177. height: math.unit(5 + 10/12, "feet"),
  51178. weight: math.unit(220, "lb"),
  51179. name: "Front",
  51180. image: {
  51181. source: "./media/characters/zarya/front.svg",
  51182. extra: 593/572,
  51183. bottom: 50/643
  51184. }
  51185. },
  51186. back: {
  51187. height: math.unit(5 + 10/12, "feet"),
  51188. weight: math.unit(220, "lb"),
  51189. name: "Back",
  51190. image: {
  51191. source: "./media/characters/zarya/back.svg",
  51192. extra: 603/582,
  51193. bottom: 38/641
  51194. }
  51195. },
  51196. },
  51197. [
  51198. {
  51199. name: "Normal",
  51200. height: math.unit(5 + 10/12, "feet"),
  51201. default: true
  51202. },
  51203. ]
  51204. ))
  51205. characterMakers.push(() => makeCharacter(
  51206. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51207. {
  51208. front: {
  51209. height: math.unit(7.5, "feet"),
  51210. name: "Front",
  51211. image: {
  51212. source: "./media/characters/sven-hatisson/front.svg",
  51213. extra: 917/857,
  51214. bottom: 42/959
  51215. }
  51216. },
  51217. back: {
  51218. height: math.unit(7.5, "feet"),
  51219. name: "Back",
  51220. image: {
  51221. source: "./media/characters/sven-hatisson/back.svg",
  51222. extra: 903/856,
  51223. bottom: 15/918
  51224. }
  51225. },
  51226. },
  51227. [
  51228. {
  51229. name: "Base Height",
  51230. height: math.unit(7.5, "feet")
  51231. },
  51232. {
  51233. name: "Usual Height",
  51234. height: math.unit(13.5, "feet"),
  51235. default: true
  51236. },
  51237. {
  51238. name: "Smaller Macro",
  51239. height: math.unit(85, "feet")
  51240. },
  51241. {
  51242. name: "Moderate Macro",
  51243. height: math.unit(320, "feet")
  51244. },
  51245. {
  51246. name: "Large Macro",
  51247. height: math.unit(1000, "feet")
  51248. },
  51249. {
  51250. name: "Largest Size",
  51251. height: math.unit(2, "miles")
  51252. },
  51253. ]
  51254. ))
  51255. characterMakers.push(() => makeCharacter(
  51256. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51257. {
  51258. side: {
  51259. height: math.unit(1.8, "meters"),
  51260. weight: math.unit(275, "kg"),
  51261. name: "Side",
  51262. image: {
  51263. source: "./media/characters/terra/side.svg",
  51264. extra: 1273/1147,
  51265. bottom: 0/1273
  51266. }
  51267. },
  51268. },
  51269. [
  51270. {
  51271. name: "Normal",
  51272. height: math.unit(16.2, "meters"),
  51273. default: true
  51274. },
  51275. ]
  51276. ))
  51277. characterMakers.push(() => makeCharacter(
  51278. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51279. {
  51280. borzoiFront: {
  51281. height: math.unit(6 + 9/12, "feet"),
  51282. name: "Front",
  51283. image: {
  51284. source: "./media/characters/rae/borzoi-front.svg",
  51285. extra: 1161/1098,
  51286. bottom: 31/1192
  51287. },
  51288. form: "borzoi",
  51289. default: true
  51290. },
  51291. werewolfFront: {
  51292. height: math.unit(8 + 7/12, "feet"),
  51293. name: "Front",
  51294. image: {
  51295. source: "./media/characters/rae/werewolf-front.svg",
  51296. extra: 1411/1334,
  51297. bottom: 127/1538
  51298. },
  51299. form: "werewolf",
  51300. default: true
  51301. },
  51302. },
  51303. [
  51304. {
  51305. name: "Normal",
  51306. height: math.unit(6 + 9/12, "feet"),
  51307. default: true,
  51308. form: "borzoi"
  51309. },
  51310. {
  51311. name: "Normal",
  51312. height: math.unit(8 + 7/12, "feet"),
  51313. default: true,
  51314. form: "werewolf"
  51315. },
  51316. ],
  51317. {
  51318. "borzoi": {
  51319. name: "Borzoi",
  51320. default: true
  51321. },
  51322. "werewolf": {
  51323. name: "Werewolf",
  51324. },
  51325. }
  51326. ))
  51327. characterMakers.push(() => makeCharacter(
  51328. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51329. {
  51330. front: {
  51331. height: math.unit(8 + 7/12, "feet"),
  51332. weight: math.unit(482, "lb"),
  51333. name: "Front",
  51334. image: {
  51335. source: "./media/characters/kit/front.svg",
  51336. extra: 1247/1103,
  51337. bottom: 41/1288
  51338. }
  51339. },
  51340. back: {
  51341. height: math.unit(8 + 7/12, "feet"),
  51342. weight: math.unit(482, "lb"),
  51343. name: "Back",
  51344. image: {
  51345. source: "./media/characters/kit/back.svg",
  51346. extra: 1252/1123,
  51347. bottom: 21/1273
  51348. }
  51349. },
  51350. paw: {
  51351. height: math.unit(1.46, "feet"),
  51352. name: "Paw",
  51353. image: {
  51354. source: "./media/characters/kit/paw.svg"
  51355. }
  51356. },
  51357. },
  51358. [
  51359. {
  51360. name: "Normal",
  51361. height: math.unit(2.61, "meters"),
  51362. default: true
  51363. },
  51364. {
  51365. name: "\"Tall\"",
  51366. height: math.unit(8.21, "meters")
  51367. },
  51368. {
  51369. name: "Tall",
  51370. height: math.unit(19.6, "meters")
  51371. },
  51372. {
  51373. name: "Very Tall",
  51374. height: math.unit(57.91, "meters")
  51375. },
  51376. {
  51377. name: "Semi-Macro",
  51378. height: math.unit(138.64, "meters")
  51379. },
  51380. {
  51381. name: "Macro",
  51382. height: math.unit(831.99, "meters")
  51383. },
  51384. {
  51385. name: "EX-Macro",
  51386. height: math.unit(96451121, "meters")
  51387. },
  51388. {
  51389. name: "S1-Omnipotent",
  51390. height: math.unit(4.42074e+9, "meters")
  51391. },
  51392. {
  51393. name: "S2-Omnipotent",
  51394. height: math.unit(9.42074e+17, "meters")
  51395. },
  51396. {
  51397. name: "Omnipotent",
  51398. height: math.unit(4.23112e+24, "meters")
  51399. },
  51400. {
  51401. name: "Hypergod",
  51402. height: math.unit(5.05176e+27, "meters")
  51403. },
  51404. {
  51405. name: "Hypergod-EX",
  51406. height: math.unit(9.45532e+49, "meters")
  51407. },
  51408. {
  51409. name: "Hypergod-SP",
  51410. height: math.unit(9.45532e+195, "meters")
  51411. },
  51412. ]
  51413. ))
  51414. characterMakers.push(() => makeCharacter(
  51415. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51416. {
  51417. side: {
  51418. height: math.unit(0.6, "meters"),
  51419. weight: math.unit(24, "kg"),
  51420. name: "Side",
  51421. image: {
  51422. source: "./media/characters/celeste/side.svg",
  51423. extra: 810/517,
  51424. bottom: 53/863
  51425. }
  51426. },
  51427. },
  51428. [
  51429. {
  51430. name: "Velociraptor",
  51431. height: math.unit(0.6, "meters"),
  51432. default: true
  51433. },
  51434. {
  51435. name: "Utahraptor",
  51436. height: math.unit(1.8, "meters")
  51437. },
  51438. {
  51439. name: "Gallimimus",
  51440. height: math.unit(4.0, "meters")
  51441. },
  51442. {
  51443. name: "Large",
  51444. height: math.unit(20, "meters")
  51445. },
  51446. {
  51447. name: "Planetary",
  51448. height: math.unit(50, "megameters")
  51449. },
  51450. {
  51451. name: "Stellar",
  51452. height: math.unit(1.5, "gigameters")
  51453. },
  51454. {
  51455. name: "Galactic",
  51456. height: math.unit(100, "exameters")
  51457. },
  51458. ]
  51459. ))
  51460. characterMakers.push(() => makeCharacter(
  51461. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51462. {
  51463. front: {
  51464. height: math.unit(6, "feet"),
  51465. weight: math.unit(210, "lb"),
  51466. name: "Front",
  51467. image: {
  51468. source: "./media/characters/glacia/front.svg",
  51469. extra: 958/901,
  51470. bottom: 45/1003
  51471. }
  51472. },
  51473. },
  51474. [
  51475. {
  51476. name: "Macro",
  51477. height: math.unit(1000, "meters"),
  51478. default: true
  51479. },
  51480. ]
  51481. ))
  51482. characterMakers.push(() => makeCharacter(
  51483. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51484. {
  51485. front: {
  51486. height: math.unit(4, "meters"),
  51487. name: "Front",
  51488. image: {
  51489. source: "./media/characters/giri/front.svg",
  51490. extra: 966/894,
  51491. bottom: 21/987
  51492. }
  51493. },
  51494. },
  51495. [
  51496. {
  51497. name: "Normal",
  51498. height: math.unit(4, "meters"),
  51499. default: true
  51500. },
  51501. ]
  51502. ))
  51503. characterMakers.push(() => makeCharacter(
  51504. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51505. {
  51506. back: {
  51507. height: math.unit(4, "feet"),
  51508. weight: math.unit(37, "lb"),
  51509. name: "Back",
  51510. image: {
  51511. source: "./media/characters/tin/back.svg",
  51512. extra: 845/780,
  51513. bottom: 28/873
  51514. }
  51515. },
  51516. },
  51517. [
  51518. {
  51519. name: "Normal",
  51520. height: math.unit(4, "feet"),
  51521. default: true
  51522. },
  51523. ]
  51524. ))
  51525. characterMakers.push(() => makeCharacter(
  51526. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51527. {
  51528. front: {
  51529. height: math.unit(25, "feet"),
  51530. name: "Front",
  51531. image: {
  51532. source: "./media/characters/cadenza-vivace/front.svg",
  51533. extra: 1842/1578,
  51534. bottom: 30/1872
  51535. }
  51536. },
  51537. },
  51538. [
  51539. {
  51540. name: "Macro",
  51541. height: math.unit(25, "feet"),
  51542. default: true
  51543. },
  51544. ]
  51545. ))
  51546. characterMakers.push(() => makeCharacter(
  51547. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51548. {
  51549. front: {
  51550. height: math.unit(10, "feet"),
  51551. weight: math.unit(625, "kg"),
  51552. name: "Front",
  51553. image: {
  51554. source: "./media/characters/zain/front.svg",
  51555. extra: 1682/1498,
  51556. bottom: 223/1905
  51557. }
  51558. },
  51559. back: {
  51560. height: math.unit(10, "feet"),
  51561. weight: math.unit(625, "kg"),
  51562. name: "Back",
  51563. image: {
  51564. source: "./media/characters/zain/back.svg",
  51565. extra: 1814/1657,
  51566. bottom: 152/1966
  51567. }
  51568. },
  51569. head: {
  51570. height: math.unit(10, "feet"),
  51571. weight: math.unit(625, "kg"),
  51572. name: "Head",
  51573. image: {
  51574. source: "./media/characters/zain/head.svg",
  51575. extra: 1059/762,
  51576. bottom: 0/1059
  51577. }
  51578. },
  51579. },
  51580. [
  51581. {
  51582. name: "Normal",
  51583. height: math.unit(10, "feet"),
  51584. default: true
  51585. },
  51586. ]
  51587. ))
  51588. characterMakers.push(() => makeCharacter(
  51589. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51590. {
  51591. front: {
  51592. height: math.unit(6 + 5/12, "feet"),
  51593. weight: math.unit(750, "lb"),
  51594. name: "Front",
  51595. image: {
  51596. source: "./media/characters/ruchex/front.svg",
  51597. extra: 877/820,
  51598. bottom: 17/894
  51599. },
  51600. extraAttributes: {
  51601. "width": {
  51602. name: "Width",
  51603. power: 1,
  51604. type: "length",
  51605. base: math.unit(4.757, "feet")
  51606. },
  51607. }
  51608. },
  51609. },
  51610. [
  51611. {
  51612. name: "Normal",
  51613. height: math.unit(6 + 5/12, "feet"),
  51614. default: true
  51615. },
  51616. ]
  51617. ))
  51618. characterMakers.push(() => makeCharacter(
  51619. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51620. {
  51621. dressedFront: {
  51622. height: math.unit(191, "cm"),
  51623. weight: math.unit(80, "kg"),
  51624. name: "Front",
  51625. image: {
  51626. source: "./media/characters/buster/dressed-front.svg",
  51627. extra: 1022/973,
  51628. bottom: 69/1091
  51629. }
  51630. },
  51631. dressedBack: {
  51632. height: math.unit(191, "cm"),
  51633. weight: math.unit(80, "kg"),
  51634. name: "Back",
  51635. image: {
  51636. source: "./media/characters/buster/dressed-back.svg",
  51637. extra: 1018/970,
  51638. bottom: 55/1073
  51639. }
  51640. },
  51641. nudeFront: {
  51642. height: math.unit(191, "cm"),
  51643. weight: math.unit(80, "kg"),
  51644. name: "Front (Nude)",
  51645. image: {
  51646. source: "./media/characters/buster/nude-front.svg",
  51647. extra: 1022/973,
  51648. bottom: 69/1091
  51649. }
  51650. },
  51651. nudeBack: {
  51652. height: math.unit(191, "cm"),
  51653. weight: math.unit(80, "kg"),
  51654. name: "Back (Nude)",
  51655. image: {
  51656. source: "./media/characters/buster/nude-back.svg",
  51657. extra: 1018/970,
  51658. bottom: 55/1073
  51659. }
  51660. },
  51661. dick: {
  51662. height: math.unit(2.59, "feet"),
  51663. name: "Dick",
  51664. image: {
  51665. source: "./media/characters/buster/dick.svg"
  51666. }
  51667. },
  51668. ass: {
  51669. height: math.unit(1.2, "feet"),
  51670. name: "Ass",
  51671. image: {
  51672. source: "./media/characters/buster/ass.svg"
  51673. }
  51674. },
  51675. },
  51676. [
  51677. {
  51678. name: "Normal",
  51679. height: math.unit(191, "cm"),
  51680. default: true
  51681. },
  51682. ]
  51683. ))
  51684. characterMakers.push(() => makeCharacter(
  51685. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51686. {
  51687. side: {
  51688. height: math.unit(8.1, "feet"),
  51689. weight: math.unit(3500, "lb"),
  51690. name: "Side",
  51691. image: {
  51692. source: "./media/characters/sonya/side.svg",
  51693. extra: 1730/1317,
  51694. bottom: 86/1816
  51695. }
  51696. },
  51697. },
  51698. [
  51699. {
  51700. name: "Normal",
  51701. height: math.unit(8.1, "feet"),
  51702. default: true
  51703. },
  51704. ]
  51705. ))
  51706. characterMakers.push(() => makeCharacter(
  51707. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51708. {
  51709. front: {
  51710. height: math.unit(6, "feet"),
  51711. weight: math.unit(150, "lb"),
  51712. name: "Front",
  51713. image: {
  51714. source: "./media/characters/cadence-andrysiak/front.svg",
  51715. extra: 1164/1121,
  51716. bottom: 60/1224
  51717. }
  51718. },
  51719. back: {
  51720. height: math.unit(6, "feet"),
  51721. weight: math.unit(150, "lb"),
  51722. name: "Back",
  51723. image: {
  51724. source: "./media/characters/cadence-andrysiak/back.svg",
  51725. extra: 1200/1165,
  51726. bottom: 9/1209
  51727. }
  51728. },
  51729. dressed: {
  51730. height: math.unit(6, "feet"),
  51731. weight: math.unit(150, "lb"),
  51732. name: "Dressed",
  51733. image: {
  51734. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51735. extra: 1164/1121,
  51736. bottom: 60/1224
  51737. }
  51738. },
  51739. },
  51740. [
  51741. {
  51742. name: "Micro",
  51743. height: math.unit(1, "mm")
  51744. },
  51745. {
  51746. name: "Normal",
  51747. height: math.unit(6, "feet"),
  51748. default: true
  51749. },
  51750. ]
  51751. ))
  51752. characterMakers.push(() => makeCharacter(
  51753. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51754. {
  51755. front: {
  51756. height: math.unit(60, "inches"),
  51757. weight: math.unit(16, "lb"),
  51758. preyCapacity: math.unit(80, "liters"),
  51759. name: "Front",
  51760. image: {
  51761. source: "./media/characters/penny-lynx/front.svg",
  51762. extra: 1959/1769,
  51763. bottom: 49/2008
  51764. }
  51765. },
  51766. },
  51767. [
  51768. {
  51769. name: "Nokia",
  51770. height: math.unit(2, "inches")
  51771. },
  51772. {
  51773. name: "Desktop",
  51774. height: math.unit(24, "inches")
  51775. },
  51776. {
  51777. name: "TV",
  51778. height: math.unit(60, "inches")
  51779. },
  51780. {
  51781. name: "Jumbotron",
  51782. height: math.unit(12, "feet")
  51783. },
  51784. {
  51785. name: "Billboard",
  51786. height: math.unit(48, "feet"),
  51787. default: true
  51788. },
  51789. {
  51790. name: "IMAX",
  51791. height: math.unit(96, "feet")
  51792. },
  51793. {
  51794. name: "SINGULARITY",
  51795. height: math.unit(864938, "miles")
  51796. },
  51797. ]
  51798. ))
  51799. characterMakers.push(() => makeCharacter(
  51800. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51801. {
  51802. front: {
  51803. height: math.unit(5 + 4/12, "feet"),
  51804. weight: math.unit(230, "lb"),
  51805. name: "Front",
  51806. image: {
  51807. source: "./media/characters/sukebe/front.svg",
  51808. extra: 2130/2038,
  51809. bottom: 90/2220
  51810. }
  51811. },
  51812. back: {
  51813. height: math.unit(3.48, "feet"),
  51814. weight: math.unit(230, "lb"),
  51815. name: "Back",
  51816. image: {
  51817. source: "./media/characters/sukebe/back.svg",
  51818. extra: 1670/1604,
  51819. bottom: 0/1670
  51820. }
  51821. },
  51822. },
  51823. [
  51824. {
  51825. name: "Normal",
  51826. height: math.unit(5 + 4/12, "feet"),
  51827. default: true
  51828. },
  51829. ]
  51830. ))
  51831. characterMakers.push(() => makeCharacter(
  51832. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51833. {
  51834. front: {
  51835. height: math.unit(6, "feet"),
  51836. name: "Front",
  51837. image: {
  51838. source: "./media/characters/nylla/front.svg",
  51839. extra: 1868/1699,
  51840. bottom: 97/1965
  51841. }
  51842. },
  51843. back: {
  51844. height: math.unit(6, "feet"),
  51845. name: "Back",
  51846. image: {
  51847. source: "./media/characters/nylla/back.svg",
  51848. extra: 1889/1712,
  51849. bottom: 93/1982
  51850. }
  51851. },
  51852. frontNsfw: {
  51853. height: math.unit(6, "feet"),
  51854. name: "Front (NSFW)",
  51855. image: {
  51856. source: "./media/characters/nylla/front-nsfw.svg",
  51857. extra: 1868/1699,
  51858. bottom: 97/1965
  51859. },
  51860. extraAttributes: {
  51861. "dickLength": {
  51862. name: "Dick Length",
  51863. power: 1,
  51864. type: "length",
  51865. base: math.unit(1.4, "feet")
  51866. },
  51867. "cumVolume": {
  51868. name: "Cum Volume",
  51869. power: 3,
  51870. type: "volume",
  51871. base: math.unit(100, "mL")
  51872. },
  51873. }
  51874. },
  51875. backNsfw: {
  51876. height: math.unit(6, "feet"),
  51877. name: "Back (NSFW)",
  51878. image: {
  51879. source: "./media/characters/nylla/back-nsfw.svg",
  51880. extra: 1889/1712,
  51881. bottom: 93/1982
  51882. }
  51883. },
  51884. maw: {
  51885. height: math.unit(2.10, "feet"),
  51886. name: "Maw",
  51887. image: {
  51888. source: "./media/characters/nylla/maw.svg"
  51889. }
  51890. },
  51891. paws: {
  51892. height: math.unit(2.06, "feet"),
  51893. name: "Paws",
  51894. image: {
  51895. source: "./media/characters/nylla/paws.svg"
  51896. }
  51897. },
  51898. muzzle: {
  51899. height: math.unit(0.61, "feet"),
  51900. name: "Muzzle",
  51901. image: {
  51902. source: "./media/characters/nylla/muzzle.svg"
  51903. }
  51904. },
  51905. sheath: {
  51906. height: math.unit(1.305, "feet"),
  51907. name: "Sheath",
  51908. image: {
  51909. source: "./media/characters/nylla/sheath.svg"
  51910. }
  51911. },
  51912. },
  51913. [
  51914. {
  51915. name: "Micro",
  51916. height: math.unit(7.5, "inches")
  51917. },
  51918. {
  51919. name: "Normal",
  51920. height: math.unit(7, "feet"),
  51921. default: true
  51922. },
  51923. {
  51924. name: "Macro",
  51925. height: math.unit(60, "feet")
  51926. },
  51927. {
  51928. name: "Mega",
  51929. height: math.unit(200, "feet")
  51930. },
  51931. ]
  51932. ))
  51933. characterMakers.push(() => makeCharacter(
  51934. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51935. {
  51936. front: {
  51937. height: math.unit(10, "feet"),
  51938. weight: math.unit(2300, "lb"),
  51939. name: "Front",
  51940. image: {
  51941. source: "./media/characters/hunt3r/front.svg",
  51942. extra: 1909/1742,
  51943. bottom: 46/1955
  51944. }
  51945. },
  51946. },
  51947. [
  51948. {
  51949. name: "Normal",
  51950. height: math.unit(10, "feet"),
  51951. default: true
  51952. },
  51953. ]
  51954. ))
  51955. characterMakers.push(() => makeCharacter(
  51956. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51957. {
  51958. dressed: {
  51959. height: math.unit(11, "feet"),
  51960. weight: math.unit(18500, "lb"),
  51961. preyCapacity: math.unit(9, "people"),
  51962. name: "Dressed",
  51963. image: {
  51964. source: "./media/characters/cylphis/dressed.svg",
  51965. extra: 1028/1003,
  51966. bottom: 75/1103
  51967. },
  51968. },
  51969. undressed: {
  51970. height: math.unit(11, "feet"),
  51971. weight: math.unit(18500, "lb"),
  51972. preyCapacity: math.unit(9, "people"),
  51973. name: "Undressed",
  51974. image: {
  51975. source: "./media/characters/cylphis/undressed.svg",
  51976. extra: 1028/1003,
  51977. bottom: 75/1103
  51978. }
  51979. },
  51980. full: {
  51981. height: math.unit(11, "feet"),
  51982. weight: math.unit(18500 + 150*9, "lb"),
  51983. preyCapacity: math.unit(9, "people"),
  51984. name: "Full",
  51985. image: {
  51986. source: "./media/characters/cylphis/full.svg",
  51987. extra: 1028/1003,
  51988. bottom: 75/1103
  51989. }
  51990. },
  51991. },
  51992. [
  51993. {
  51994. name: "Small",
  51995. height: math.unit(8, "feet")
  51996. },
  51997. {
  51998. name: "Normal",
  51999. height: math.unit(11, "feet"),
  52000. default: true
  52001. },
  52002. ]
  52003. ))
  52004. characterMakers.push(() => makeCharacter(
  52005. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52006. {
  52007. front: {
  52008. height: math.unit(2 + 7/12, "feet"),
  52009. name: "Front",
  52010. image: {
  52011. source: "./media/characters/orishan/front.svg",
  52012. extra: 1058/1023,
  52013. bottom: 23/1081
  52014. }
  52015. },
  52016. back: {
  52017. height: math.unit(2 + 7/12, "feet"),
  52018. name: "Back",
  52019. image: {
  52020. source: "./media/characters/orishan/back.svg",
  52021. extra: 1058/1023,
  52022. bottom: 23/1081
  52023. }
  52024. },
  52025. },
  52026. [
  52027. {
  52028. name: "Micro",
  52029. height: math.unit(2, "cm")
  52030. },
  52031. {
  52032. name: "Normal",
  52033. height: math.unit(2 + 7/12, "feet"),
  52034. default: true
  52035. },
  52036. ]
  52037. ))
  52038. characterMakers.push(() => makeCharacter(
  52039. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52040. {
  52041. front: {
  52042. height: math.unit(3, "meters"),
  52043. weight: math.unit(508, "kg"),
  52044. name: "Front",
  52045. image: {
  52046. source: "./media/characters/seranis/front.svg",
  52047. extra: 1478/1454,
  52048. bottom: 41/1519
  52049. }
  52050. },
  52051. },
  52052. [
  52053. {
  52054. name: "Normal",
  52055. height: math.unit(3, "meters"),
  52056. default: true
  52057. },
  52058. {
  52059. name: "Macro",
  52060. height: math.unit(108, "meters")
  52061. },
  52062. {
  52063. name: "Megamacro",
  52064. height: math.unit(1250, "meters")
  52065. },
  52066. ]
  52067. ))
  52068. characterMakers.push(() => makeCharacter(
  52069. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52070. {
  52071. undressed: {
  52072. height: math.unit(5 + 3/12, "feet"),
  52073. name: "Undressed",
  52074. image: {
  52075. source: "./media/characters/ankou/undressed.svg",
  52076. extra: 1301/1213,
  52077. bottom: 87/1388
  52078. }
  52079. },
  52080. dressed: {
  52081. height: math.unit(5 + 3/12, "feet"),
  52082. name: "Dressed",
  52083. image: {
  52084. source: "./media/characters/ankou/dressed.svg",
  52085. extra: 1301/1213,
  52086. bottom: 87/1388
  52087. }
  52088. },
  52089. head: {
  52090. height: math.unit(1.61, "feet"),
  52091. name: "Head",
  52092. image: {
  52093. source: "./media/characters/ankou/head.svg"
  52094. }
  52095. },
  52096. },
  52097. [
  52098. {
  52099. name: "Normal",
  52100. height: math.unit(5 + 3/12, "feet"),
  52101. default: true
  52102. },
  52103. ]
  52104. ))
  52105. characterMakers.push(() => makeCharacter(
  52106. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52107. {
  52108. side: {
  52109. height: math.unit(6 + 3/12, "feet"),
  52110. weight: math.unit(200, "kg"),
  52111. name: "Side",
  52112. image: {
  52113. source: "./media/characters/juniper-skunktaur/side.svg",
  52114. extra: 1574/1229,
  52115. bottom: 38/1612
  52116. }
  52117. },
  52118. front: {
  52119. height: math.unit(6 + 3/12, "feet"),
  52120. weight: math.unit(200, "kg"),
  52121. name: "Front",
  52122. image: {
  52123. source: "./media/characters/juniper-skunktaur/front.svg",
  52124. extra: 1337/1278,
  52125. bottom: 22/1359
  52126. }
  52127. },
  52128. back: {
  52129. height: math.unit(6 + 3/12, "feet"),
  52130. weight: math.unit(200, "kg"),
  52131. name: "Back",
  52132. image: {
  52133. source: "./media/characters/juniper-skunktaur/back.svg",
  52134. extra: 1618/1273,
  52135. bottom: 13/1631
  52136. }
  52137. },
  52138. top: {
  52139. height: math.unit(2.62, "feet"),
  52140. weight: math.unit(200, "kg"),
  52141. name: "Top",
  52142. image: {
  52143. source: "./media/characters/juniper-skunktaur/top.svg"
  52144. }
  52145. },
  52146. },
  52147. [
  52148. {
  52149. name: "Normal",
  52150. height: math.unit(6 + 3/12, "feet"),
  52151. default: true
  52152. },
  52153. ]
  52154. ))
  52155. characterMakers.push(() => makeCharacter(
  52156. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52157. {
  52158. front: {
  52159. height: math.unit(20.5, "feet"),
  52160. name: "Front",
  52161. image: {
  52162. source: "./media/characters/rei/front.svg",
  52163. extra: 1349/1195,
  52164. bottom: 31/1380
  52165. }
  52166. },
  52167. back: {
  52168. height: math.unit(20.5, "feet"),
  52169. name: "Back",
  52170. image: {
  52171. source: "./media/characters/rei/back.svg",
  52172. extra: 1358/1204,
  52173. bottom: 22/1380
  52174. }
  52175. },
  52176. pawsDigi: {
  52177. height: math.unit(3.45, "feet"),
  52178. name: "Paws (Digi)",
  52179. image: {
  52180. source: "./media/characters/rei/paws-digi.svg"
  52181. }
  52182. },
  52183. pawsPlanti: {
  52184. height: math.unit(3.45, "feet"),
  52185. name: "Paws (Planti)",
  52186. image: {
  52187. source: "./media/characters/rei/paws-planti.svg"
  52188. }
  52189. },
  52190. },
  52191. [
  52192. {
  52193. name: "Normal",
  52194. height: math.unit(20.5, "feet"),
  52195. default: true
  52196. },
  52197. ]
  52198. ))
  52199. characterMakers.push(() => makeCharacter(
  52200. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52201. {
  52202. front: {
  52203. height: math.unit(5 + 11/12, "feet"),
  52204. name: "Front",
  52205. image: {
  52206. source: "./media/characters/carina/front.svg",
  52207. extra: 1720/1449,
  52208. bottom: 14/1734
  52209. }
  52210. },
  52211. back: {
  52212. height: math.unit(5 + 11/12, "feet"),
  52213. name: "Back",
  52214. image: {
  52215. source: "./media/characters/carina/back.svg",
  52216. extra: 1493/1445,
  52217. bottom: 17/1510
  52218. }
  52219. },
  52220. paw: {
  52221. height: math.unit(0.92, "feet"),
  52222. name: "Paw",
  52223. image: {
  52224. source: "./media/characters/carina/paw.svg"
  52225. }
  52226. },
  52227. },
  52228. [
  52229. {
  52230. name: "Normal",
  52231. height: math.unit(5 + 11/12, "feet"),
  52232. default: true
  52233. },
  52234. ]
  52235. ))
  52236. characterMakers.push(() => makeCharacter(
  52237. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52238. {
  52239. front: {
  52240. height: math.unit(4.88, "meters"),
  52241. name: "Front",
  52242. image: {
  52243. source: "./media/characters/maya/front.svg",
  52244. extra: 1222/1145,
  52245. bottom: 57/1279
  52246. }
  52247. },
  52248. },
  52249. [
  52250. {
  52251. name: "Normal",
  52252. height: math.unit(4.88, "meters"),
  52253. default: true
  52254. },
  52255. {
  52256. name: "Macro",
  52257. height: math.unit(38.1, "meters")
  52258. },
  52259. {
  52260. name: "Macro+",
  52261. height: math.unit(152.4, "meters")
  52262. },
  52263. {
  52264. name: "Macro++",
  52265. height: math.unit(16.09, "km")
  52266. },
  52267. {
  52268. name: "Mega-macro",
  52269. height: math.unit(700, "megameters")
  52270. },
  52271. ]
  52272. ))
  52273. characterMakers.push(() => makeCharacter(
  52274. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52275. {
  52276. front: {
  52277. height: math.unit(6 + 2/12, "feet"),
  52278. weight: math.unit(500, "lb"),
  52279. preyCapacity: math.unit(4, "people"),
  52280. name: "Front",
  52281. image: {
  52282. source: "./media/characters/yepir/front.svg"
  52283. }
  52284. },
  52285. side: {
  52286. height: math.unit(6 + 2/12, "feet"),
  52287. weight: math.unit(500, "lb"),
  52288. preyCapacity: math.unit(4, "people"),
  52289. name: "Side",
  52290. image: {
  52291. source: "./media/characters/yepir/side.svg"
  52292. }
  52293. },
  52294. paw: {
  52295. height: math.unit(1.05, "feet"),
  52296. name: "Paw",
  52297. image: {
  52298. source: "./media/characters/yepir/paw.svg"
  52299. }
  52300. },
  52301. },
  52302. [
  52303. {
  52304. name: "Normal",
  52305. height: math.unit(6 + 2/12, "feet"),
  52306. default: true
  52307. },
  52308. ]
  52309. ))
  52310. characterMakers.push(() => makeCharacter(
  52311. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52312. {
  52313. front: {
  52314. height: math.unit(5 + 4/12, "feet"),
  52315. name: "Front",
  52316. image: {
  52317. source: "./media/characters/russec/front.svg",
  52318. extra: 1926/1626,
  52319. bottom: 72/1998
  52320. }
  52321. },
  52322. back: {
  52323. height: math.unit(5 + 4/12, "feet"),
  52324. name: "Back",
  52325. image: {
  52326. source: "./media/characters/russec/back.svg",
  52327. extra: 1910/1591,
  52328. bottom: 48/1958
  52329. }
  52330. },
  52331. },
  52332. [
  52333. {
  52334. name: "Small",
  52335. height: math.unit(5 + 4/12, "feet")
  52336. },
  52337. {
  52338. name: "Normal",
  52339. height: math.unit(72, "feet"),
  52340. default: true
  52341. },
  52342. ]
  52343. ))
  52344. characterMakers.push(() => makeCharacter(
  52345. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52346. {
  52347. side: {
  52348. height: math.unit(12, "feet"),
  52349. name: "Side",
  52350. image: {
  52351. source: "./media/characters/cianus/side.svg",
  52352. extra: 808/526,
  52353. bottom: 61/869
  52354. }
  52355. },
  52356. },
  52357. [
  52358. {
  52359. name: "Normal",
  52360. height: math.unit(12, "feet"),
  52361. default: true
  52362. },
  52363. ]
  52364. ))
  52365. characterMakers.push(() => makeCharacter(
  52366. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52367. {
  52368. front: {
  52369. height: math.unit(9 + 6/12, "feet"),
  52370. weight: math.unit(300, "lb"),
  52371. name: "Front",
  52372. image: {
  52373. source: "./media/characters/ahab/front.svg",
  52374. extra: 1897/1868,
  52375. bottom: 121/2018
  52376. }
  52377. },
  52378. frontNsfw: {
  52379. height: math.unit(9 + 6/12, "feet"),
  52380. weight: math.unit(300, "lb"),
  52381. name: "Front-nsfw",
  52382. image: {
  52383. source: "./media/characters/ahab/front-nsfw.svg",
  52384. extra: 1897/1868,
  52385. bottom: 121/2018
  52386. }
  52387. },
  52388. },
  52389. [
  52390. {
  52391. name: "Normal",
  52392. height: math.unit(9 + 6/12, "feet")
  52393. },
  52394. {
  52395. name: "Macro",
  52396. height: math.unit(657, "feet"),
  52397. default: true
  52398. },
  52399. ]
  52400. ))
  52401. characterMakers.push(() => makeCharacter(
  52402. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52403. {
  52404. front: {
  52405. height: math.unit(2.69, "meters"),
  52406. weight: math.unit(132, "kg"),
  52407. name: "Front",
  52408. image: {
  52409. source: "./media/characters/aarkus/front.svg",
  52410. extra: 1400/1231,
  52411. bottom: 34/1434
  52412. }
  52413. },
  52414. back: {
  52415. height: math.unit(2.69, "meters"),
  52416. weight: math.unit(132, "kg"),
  52417. name: "Back",
  52418. image: {
  52419. source: "./media/characters/aarkus/back.svg",
  52420. extra: 1381/1218,
  52421. bottom: 30/1411
  52422. }
  52423. },
  52424. frontNsfw: {
  52425. height: math.unit(2.69, "meters"),
  52426. weight: math.unit(132, "kg"),
  52427. name: "Front (NSFW)",
  52428. image: {
  52429. source: "./media/characters/aarkus/front-nsfw.svg",
  52430. extra: 1400/1231,
  52431. bottom: 34/1434
  52432. }
  52433. },
  52434. foot: {
  52435. height: math.unit(1.45, "feet"),
  52436. name: "Foot",
  52437. image: {
  52438. source: "./media/characters/aarkus/foot.svg"
  52439. }
  52440. },
  52441. head: {
  52442. height: math.unit(2.85, "feet"),
  52443. name: "Head",
  52444. image: {
  52445. source: "./media/characters/aarkus/head.svg"
  52446. }
  52447. },
  52448. headAlt: {
  52449. height: math.unit(3.07, "feet"),
  52450. name: "Head (Alt)",
  52451. image: {
  52452. source: "./media/characters/aarkus/head-alt.svg"
  52453. }
  52454. },
  52455. mouth: {
  52456. height: math.unit(1.25, "feet"),
  52457. name: "Mouth",
  52458. image: {
  52459. source: "./media/characters/aarkus/mouth.svg"
  52460. }
  52461. },
  52462. dick: {
  52463. height: math.unit(1.77, "feet"),
  52464. name: "Dick",
  52465. image: {
  52466. source: "./media/characters/aarkus/dick.svg"
  52467. }
  52468. },
  52469. },
  52470. [
  52471. {
  52472. name: "Normal",
  52473. height: math.unit(2.69, "meters"),
  52474. default: true
  52475. },
  52476. {
  52477. name: "Macro",
  52478. height: math.unit(269, "meters")
  52479. },
  52480. {
  52481. name: "Macro+",
  52482. height: math.unit(672.5, "meters")
  52483. },
  52484. {
  52485. name: "Megamacro",
  52486. height: math.unit(2.017, "km")
  52487. },
  52488. ]
  52489. ))
  52490. characterMakers.push(() => makeCharacter(
  52491. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52492. {
  52493. front: {
  52494. height: math.unit(23.47, "cm"),
  52495. weight: math.unit(600, "grams"),
  52496. name: "Front",
  52497. image: {
  52498. source: "./media/characters/diode/front.svg",
  52499. extra: 1778/1396,
  52500. bottom: 95/1873
  52501. }
  52502. },
  52503. side: {
  52504. height: math.unit(23.47, "cm"),
  52505. weight: math.unit(600, "grams"),
  52506. name: "Side",
  52507. image: {
  52508. source: "./media/characters/diode/side.svg",
  52509. extra: 1831/1404,
  52510. bottom: 86/1917
  52511. }
  52512. },
  52513. wings: {
  52514. height: math.unit(0.683, "feet"),
  52515. name: "Wings",
  52516. image: {
  52517. source: "./media/characters/diode/wings.svg"
  52518. }
  52519. },
  52520. },
  52521. [
  52522. {
  52523. name: "Normal",
  52524. height: math.unit(23.47, "cm"),
  52525. default: true
  52526. },
  52527. ]
  52528. ))
  52529. characterMakers.push(() => makeCharacter(
  52530. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52531. {
  52532. front: {
  52533. height: math.unit(6 + 3/12, "feet"),
  52534. weight: math.unit(250, "lb"),
  52535. name: "Front",
  52536. image: {
  52537. source: "./media/characters/reika/front.svg",
  52538. extra: 1120/1078,
  52539. bottom: 86/1206
  52540. }
  52541. },
  52542. },
  52543. [
  52544. {
  52545. name: "Normal",
  52546. height: math.unit(6 + 3/12, "feet"),
  52547. default: true
  52548. },
  52549. ]
  52550. ))
  52551. characterMakers.push(() => makeCharacter(
  52552. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52553. {
  52554. front: {
  52555. height: math.unit(16 + 8/12, "feet"),
  52556. weight: math.unit(9000, "lb"),
  52557. name: "Front",
  52558. image: {
  52559. source: "./media/characters/lokuto-takama/front.svg",
  52560. extra: 1774/1632,
  52561. bottom: 147/1921
  52562. },
  52563. extraAttributes: {
  52564. "bustWidth": {
  52565. name: "Bust Width",
  52566. power: 1,
  52567. type: "length",
  52568. base: math.unit(2.4, "meters")
  52569. },
  52570. "breastWeight": {
  52571. name: "Breast Weight",
  52572. power: 3,
  52573. type: "mass",
  52574. base: math.unit(1000, "kg")
  52575. },
  52576. }
  52577. },
  52578. },
  52579. [
  52580. {
  52581. name: "Normal",
  52582. height: math.unit(16 + 8/12, "feet"),
  52583. default: true
  52584. },
  52585. ]
  52586. ))
  52587. characterMakers.push(() => makeCharacter(
  52588. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52589. {
  52590. front: {
  52591. height: math.unit(10, "cm"),
  52592. weight: math.unit(850, "grams"),
  52593. name: "Front",
  52594. image: {
  52595. source: "./media/characters/owak-bone/front.svg",
  52596. extra: 1965/1801,
  52597. bottom: 31/1996
  52598. }
  52599. },
  52600. },
  52601. [
  52602. {
  52603. name: "Normal",
  52604. height: math.unit(10, "cm"),
  52605. default: true
  52606. },
  52607. ]
  52608. ))
  52609. characterMakers.push(() => makeCharacter(
  52610. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52611. {
  52612. front: {
  52613. height: math.unit(2 + 6/12, "feet"),
  52614. weight: math.unit(9, "lb"),
  52615. name: "Front",
  52616. image: {
  52617. source: "./media/characters/muffin/front.svg",
  52618. extra: 1220/1195,
  52619. bottom: 84/1304
  52620. }
  52621. },
  52622. },
  52623. [
  52624. {
  52625. name: "Normal",
  52626. height: math.unit(2 + 6/12, "feet"),
  52627. default: true
  52628. },
  52629. ]
  52630. ))
  52631. characterMakers.push(() => makeCharacter(
  52632. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52633. {
  52634. front: {
  52635. height: math.unit(7, "feet"),
  52636. name: "Front",
  52637. image: {
  52638. source: "./media/characters/chimera/front.svg",
  52639. extra: 1752/1614,
  52640. bottom: 68/1820
  52641. }
  52642. },
  52643. },
  52644. [
  52645. {
  52646. name: "Normal",
  52647. height: math.unit(7, "feet")
  52648. },
  52649. {
  52650. name: "Gigamacro",
  52651. height: math.unit(2.9, "gigameters"),
  52652. default: true
  52653. },
  52654. {
  52655. name: "Universal",
  52656. height: math.unit(1.56e26, "yottameters")
  52657. },
  52658. ]
  52659. ))
  52660. characterMakers.push(() => makeCharacter(
  52661. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52662. {
  52663. front: {
  52664. height: math.unit(3, "feet"),
  52665. weight: math.unit(20, "lb"),
  52666. name: "Front",
  52667. image: {
  52668. source: "./media/characters/kit-fennec-fox/front.svg",
  52669. extra: 1027/932,
  52670. bottom: 16/1043
  52671. }
  52672. },
  52673. back: {
  52674. height: math.unit(3, "feet"),
  52675. weight: math.unit(20, "lb"),
  52676. name: "Back",
  52677. image: {
  52678. source: "./media/characters/kit-fennec-fox/back.svg",
  52679. extra: 1027/932,
  52680. bottom: 16/1043
  52681. }
  52682. },
  52683. },
  52684. [
  52685. {
  52686. name: "Normal",
  52687. height: math.unit(3, "feet"),
  52688. default: true
  52689. },
  52690. ]
  52691. ))
  52692. characterMakers.push(() => makeCharacter(
  52693. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52694. {
  52695. front: {
  52696. height: math.unit(167, "cm"),
  52697. name: "Front",
  52698. image: {
  52699. source: "./media/characters/blue-otter/front.svg",
  52700. extra: 1951/1920,
  52701. bottom: 31/1982
  52702. }
  52703. },
  52704. },
  52705. [
  52706. {
  52707. name: "Otter-Sized",
  52708. height: math.unit(100, "cm")
  52709. },
  52710. {
  52711. name: "Normal",
  52712. height: math.unit(167, "cm"),
  52713. default: true
  52714. },
  52715. ]
  52716. ))
  52717. characterMakers.push(() => makeCharacter(
  52718. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52719. {
  52720. front: {
  52721. height: math.unit(4 + 4/12, "feet"),
  52722. name: "Front",
  52723. image: {
  52724. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52725. extra: 1072/1067,
  52726. bottom: 117/1189
  52727. }
  52728. },
  52729. back: {
  52730. height: math.unit(4 + 4/12, "feet"),
  52731. name: "Back",
  52732. image: {
  52733. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52734. extra: 1135/1129,
  52735. bottom: 57/1192
  52736. }
  52737. },
  52738. head: {
  52739. height: math.unit(1.77, "feet"),
  52740. name: "Head",
  52741. image: {
  52742. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52743. }
  52744. },
  52745. },
  52746. [
  52747. {
  52748. name: "Normal",
  52749. height: math.unit(4 + 4/12, "feet"),
  52750. default: true
  52751. },
  52752. ]
  52753. ))
  52754. characterMakers.push(() => makeCharacter(
  52755. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52756. {
  52757. front: {
  52758. height: math.unit(2, "inches"),
  52759. name: "Front",
  52760. image: {
  52761. source: "./media/characters/carley-hartford/front.svg",
  52762. extra: 1035/988,
  52763. bottom: 23/1058
  52764. }
  52765. },
  52766. back: {
  52767. height: math.unit(2, "inches"),
  52768. name: "Back",
  52769. image: {
  52770. source: "./media/characters/carley-hartford/back.svg",
  52771. extra: 1035/988,
  52772. bottom: 23/1058
  52773. }
  52774. },
  52775. dressed: {
  52776. height: math.unit(2, "inches"),
  52777. name: "Dressed",
  52778. image: {
  52779. source: "./media/characters/carley-hartford/dressed.svg",
  52780. extra: 651/620,
  52781. bottom: 0/651
  52782. }
  52783. },
  52784. },
  52785. [
  52786. {
  52787. name: "Micro",
  52788. height: math.unit(2, "inches"),
  52789. default: true
  52790. },
  52791. {
  52792. name: "Macro",
  52793. height: math.unit(6 + 3/12, "feet")
  52794. },
  52795. ]
  52796. ))
  52797. characterMakers.push(() => makeCharacter(
  52798. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52799. {
  52800. front: {
  52801. height: math.unit(2 + 3/12, "feet"),
  52802. weight: math.unit(15 + 7/16, "lb"),
  52803. name: "Front",
  52804. image: {
  52805. source: "./media/characters/duke/front.svg",
  52806. extra: 910/815,
  52807. bottom: 30/940
  52808. }
  52809. },
  52810. },
  52811. [
  52812. {
  52813. name: "Normal",
  52814. height: math.unit(2 + 3/12, "feet"),
  52815. default: true
  52816. },
  52817. ]
  52818. ))
  52819. characterMakers.push(() => makeCharacter(
  52820. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52821. {
  52822. front: {
  52823. height: math.unit(5 + 4/12, "feet"),
  52824. weight: math.unit(156, "lb"),
  52825. name: "Front",
  52826. image: {
  52827. source: "./media/characters/dein/front.svg",
  52828. extra: 855/815,
  52829. bottom: 48/903
  52830. }
  52831. },
  52832. side: {
  52833. height: math.unit(5 + 4/12, "feet"),
  52834. weight: math.unit(156, "lb"),
  52835. name: "side",
  52836. image: {
  52837. source: "./media/characters/dein/side.svg",
  52838. extra: 846/803,
  52839. bottom: 25/871
  52840. }
  52841. },
  52842. maw: {
  52843. height: math.unit(1.45, "feet"),
  52844. name: "Maw",
  52845. image: {
  52846. source: "./media/characters/dein/maw.svg"
  52847. }
  52848. },
  52849. },
  52850. [
  52851. {
  52852. name: "Ferret Sized",
  52853. height: math.unit(2 + 5/12, "feet")
  52854. },
  52855. {
  52856. name: "Normal",
  52857. height: math.unit(5 + 4/12, "feet"),
  52858. default: true
  52859. },
  52860. ]
  52861. ))
  52862. characterMakers.push(() => makeCharacter(
  52863. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52864. {
  52865. front: {
  52866. height: math.unit(84 + 8/12, "feet"),
  52867. weight: math.unit(942180, "lb"),
  52868. name: "Front",
  52869. image: {
  52870. source: "./media/characters/daurine-arima/front.svg",
  52871. extra: 1989/1782,
  52872. bottom: 37/2026
  52873. }
  52874. },
  52875. side: {
  52876. height: math.unit(84 + 8/12, "feet"),
  52877. weight: math.unit(942180, "lb"),
  52878. name: "Side",
  52879. image: {
  52880. source: "./media/characters/daurine-arima/side.svg",
  52881. extra: 1997/1790,
  52882. bottom: 21/2018
  52883. }
  52884. },
  52885. back: {
  52886. height: math.unit(84 + 8/12, "feet"),
  52887. weight: math.unit(942180, "lb"),
  52888. name: "Back",
  52889. image: {
  52890. source: "./media/characters/daurine-arima/back.svg",
  52891. extra: 1992/1800,
  52892. bottom: 12/2004
  52893. }
  52894. },
  52895. head: {
  52896. height: math.unit(15.5, "feet"),
  52897. name: "Head",
  52898. image: {
  52899. source: "./media/characters/daurine-arima/head.svg"
  52900. }
  52901. },
  52902. headAlt: {
  52903. height: math.unit(19.19, "feet"),
  52904. name: "Head (Alt)",
  52905. image: {
  52906. source: "./media/characters/daurine-arima/head-alt.svg"
  52907. }
  52908. },
  52909. },
  52910. [
  52911. {
  52912. name: "Minimum height",
  52913. height: math.unit(8 + 10/12, "feet")
  52914. },
  52915. {
  52916. name: "Comfort height",
  52917. height: math.unit(19 + 6 /12, "feet")
  52918. },
  52919. {
  52920. name: "\"Normal\" height",
  52921. height: math.unit(28 + 10/12, "feet")
  52922. },
  52923. {
  52924. name: "Base height",
  52925. height: math.unit(84 + 8/12, "feet"),
  52926. default: true
  52927. },
  52928. {
  52929. name: "Mini-macro",
  52930. height: math.unit(2360, "feet")
  52931. },
  52932. {
  52933. name: "Macro",
  52934. height: math.unit(10, "miles")
  52935. },
  52936. {
  52937. name: "Goddess",
  52938. height: math.unit(9.99e40, "yottameters")
  52939. },
  52940. ]
  52941. ))
  52942. characterMakers.push(() => makeCharacter(
  52943. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52944. {
  52945. front: {
  52946. height: math.unit(2.3, "meters"),
  52947. name: "Front",
  52948. image: {
  52949. source: "./media/characters/cilenomon/front.svg",
  52950. extra: 1963/1778,
  52951. bottom: 54/2017
  52952. }
  52953. },
  52954. },
  52955. [
  52956. {
  52957. name: "Normal",
  52958. height: math.unit(2.3, "meters"),
  52959. default: true
  52960. },
  52961. {
  52962. name: "Big",
  52963. height: math.unit(5, "meters")
  52964. },
  52965. {
  52966. name: "Macro",
  52967. height: math.unit(30, "meters")
  52968. },
  52969. {
  52970. name: "True",
  52971. height: math.unit(1, "universe")
  52972. },
  52973. ]
  52974. ))
  52975. characterMakers.push(() => makeCharacter(
  52976. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52977. {
  52978. front: {
  52979. height: math.unit(5, "feet"),
  52980. name: "Front",
  52981. image: {
  52982. source: "./media/characters/sen-mink/front.svg",
  52983. extra: 1727/1675,
  52984. bottom: 35/1762
  52985. }
  52986. },
  52987. },
  52988. [
  52989. {
  52990. name: "Normal",
  52991. height: math.unit(5, "feet"),
  52992. default: true
  52993. },
  52994. ]
  52995. ))
  52996. characterMakers.push(() => makeCharacter(
  52997. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52998. {
  52999. front: {
  53000. height: math.unit(5.42999, "feet"),
  53001. weight: math.unit(100, "lb"),
  53002. name: "Front",
  53003. image: {
  53004. source: "./media/characters/ophois/front.svg",
  53005. extra: 1429/1286,
  53006. bottom: 60/1489
  53007. }
  53008. },
  53009. },
  53010. [
  53011. {
  53012. name: "Normal",
  53013. height: math.unit(5.42999, "feet"),
  53014. default: true
  53015. },
  53016. ]
  53017. ))
  53018. characterMakers.push(() => makeCharacter(
  53019. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53020. {
  53021. front: {
  53022. height: math.unit(2, "meters"),
  53023. name: "Front",
  53024. image: {
  53025. source: "./media/characters/riley/front.svg",
  53026. extra: 1779/1754,
  53027. bottom: 139/1918
  53028. }
  53029. },
  53030. },
  53031. [
  53032. {
  53033. name: "Normal",
  53034. height: math.unit(2, "meters"),
  53035. default: true
  53036. },
  53037. ]
  53038. ))
  53039. characterMakers.push(() => makeCharacter(
  53040. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53041. {
  53042. front: {
  53043. height: math.unit(6 + 2/12, "feet"),
  53044. weight: math.unit(195, "lb"),
  53045. preyCapacity: math.unit(6, "people"),
  53046. name: "Front",
  53047. image: {
  53048. source: "./media/characters/shuken-flash/front.svg",
  53049. extra: 1905/1739,
  53050. bottom: 65/1970
  53051. }
  53052. },
  53053. back: {
  53054. height: math.unit(6 + 2/12, "feet"),
  53055. weight: math.unit(195, "lb"),
  53056. preyCapacity: math.unit(6, "people"),
  53057. name: "Back",
  53058. image: {
  53059. source: "./media/characters/shuken-flash/back.svg",
  53060. extra: 1912/1751,
  53061. bottom: 13/1925
  53062. }
  53063. },
  53064. },
  53065. [
  53066. {
  53067. name: "Normal",
  53068. height: math.unit(6 + 2/12, "feet"),
  53069. default: true
  53070. },
  53071. ]
  53072. ))
  53073. characterMakers.push(() => makeCharacter(
  53074. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53075. {
  53076. front: {
  53077. height: math.unit(5 + 9/12, "feet"),
  53078. weight: math.unit(150, "lb"),
  53079. name: "Front",
  53080. image: {
  53081. source: "./media/characters/plat/front.svg",
  53082. extra: 1816/1703,
  53083. bottom: 43/1859
  53084. }
  53085. },
  53086. side: {
  53087. height: math.unit(5 + 9/12, "feet"),
  53088. weight: math.unit(300, "lb"),
  53089. name: "Side",
  53090. image: {
  53091. source: "./media/characters/plat/side.svg",
  53092. extra: 1824/1699,
  53093. bottom: 18/1842
  53094. }
  53095. },
  53096. },
  53097. [
  53098. {
  53099. name: "Normal",
  53100. height: math.unit(5 + 9/12, "feet"),
  53101. default: true
  53102. },
  53103. ]
  53104. ))
  53105. characterMakers.push(() => makeCharacter(
  53106. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53107. {
  53108. front: {
  53109. height: math.unit(9, "feet"),
  53110. weight: math.unit(1800, "lb"),
  53111. name: "Front",
  53112. image: {
  53113. source: "./media/characters/elaine/front.svg",
  53114. extra: 1833/1354,
  53115. bottom: 25/1858
  53116. }
  53117. },
  53118. back: {
  53119. height: math.unit(8.8, "feet"),
  53120. weight: math.unit(1800, "lb"),
  53121. name: "Back",
  53122. image: {
  53123. source: "./media/characters/elaine/back.svg",
  53124. extra: 1641/1233,
  53125. bottom: 53/1694
  53126. }
  53127. },
  53128. },
  53129. [
  53130. {
  53131. name: "Normal",
  53132. height: math.unit(9, "feet"),
  53133. default: true
  53134. },
  53135. ]
  53136. ))
  53137. characterMakers.push(() => makeCharacter(
  53138. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53139. {
  53140. front: {
  53141. height: math.unit(17 + 9/12, "feet"),
  53142. weight: math.unit(8000, "lb"),
  53143. name: "Front",
  53144. image: {
  53145. source: "./media/characters/vera-raven/front.svg",
  53146. extra: 1457/1412,
  53147. bottom: 121/1578
  53148. }
  53149. },
  53150. side: {
  53151. height: math.unit(17 + 9/12, "feet"),
  53152. weight: math.unit(8000, "lb"),
  53153. name: "Side",
  53154. image: {
  53155. source: "./media/characters/vera-raven/side.svg",
  53156. extra: 1510/1464,
  53157. bottom: 54/1564
  53158. }
  53159. },
  53160. },
  53161. [
  53162. {
  53163. name: "Normal",
  53164. height: math.unit(17 + 9/12, "feet"),
  53165. default: true
  53166. },
  53167. ]
  53168. ))
  53169. characterMakers.push(() => makeCharacter(
  53170. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53171. {
  53172. dressed: {
  53173. height: math.unit(6 + 9/12, "feet"),
  53174. name: "Dressed",
  53175. image: {
  53176. source: "./media/characters/nakisha/dressed.svg",
  53177. extra: 1909/1757,
  53178. bottom: 48/1957
  53179. }
  53180. },
  53181. nude: {
  53182. height: math.unit(6 + 9/12, "feet"),
  53183. name: "Nude",
  53184. image: {
  53185. source: "./media/characters/nakisha/nude.svg",
  53186. extra: 1917/1765,
  53187. bottom: 34/1951
  53188. }
  53189. },
  53190. },
  53191. [
  53192. {
  53193. name: "Normal",
  53194. height: math.unit(6 + 9/12, "feet"),
  53195. default: true
  53196. },
  53197. ]
  53198. ))
  53199. characterMakers.push(() => makeCharacter(
  53200. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53201. {
  53202. front: {
  53203. height: math.unit(87, "meters"),
  53204. name: "Front",
  53205. image: {
  53206. source: "./media/characters/serafin/front.svg",
  53207. extra: 1919/1776,
  53208. bottom: 65/1984
  53209. }
  53210. },
  53211. },
  53212. [
  53213. {
  53214. name: "Normal",
  53215. height: math.unit(87, "meters"),
  53216. default: true
  53217. },
  53218. ]
  53219. ))
  53220. characterMakers.push(() => makeCharacter(
  53221. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53222. {
  53223. front: {
  53224. height: math.unit(6, "feet"),
  53225. weight: math.unit(200, "lb"),
  53226. name: "Front",
  53227. image: {
  53228. source: "./media/characters/poptart/front.svg",
  53229. extra: 615/583,
  53230. bottom: 23/638
  53231. }
  53232. },
  53233. back: {
  53234. height: math.unit(6, "feet"),
  53235. weight: math.unit(200, "lb"),
  53236. name: "Back",
  53237. image: {
  53238. source: "./media/characters/poptart/back.svg",
  53239. extra: 617/584,
  53240. bottom: 22/639
  53241. }
  53242. },
  53243. frontNsfw: {
  53244. height: math.unit(6, "feet"),
  53245. weight: math.unit(200, "lb"),
  53246. name: "Front (NSFW)",
  53247. image: {
  53248. source: "./media/characters/poptart/front-nsfw.svg",
  53249. extra: 615/583,
  53250. bottom: 23/638
  53251. }
  53252. },
  53253. backNsfw: {
  53254. height: math.unit(6, "feet"),
  53255. weight: math.unit(200, "lb"),
  53256. name: "Back (NSFW)",
  53257. image: {
  53258. source: "./media/characters/poptart/back-nsfw.svg",
  53259. extra: 617/584,
  53260. bottom: 22/639
  53261. }
  53262. },
  53263. hand: {
  53264. height: math.unit(1.14, "feet"),
  53265. name: "Hand",
  53266. image: {
  53267. source: "./media/characters/poptart/hand.svg"
  53268. }
  53269. },
  53270. foot: {
  53271. height: math.unit(1.5, "feet"),
  53272. name: "Foot",
  53273. image: {
  53274. source: "./media/characters/poptart/foot.svg"
  53275. }
  53276. },
  53277. },
  53278. [
  53279. {
  53280. name: "Normal",
  53281. height: math.unit(6, "feet"),
  53282. default: true
  53283. },
  53284. {
  53285. name: "Grande",
  53286. height: math.unit(350, "feet")
  53287. },
  53288. {
  53289. name: "Massif",
  53290. height: math.unit(967, "feet")
  53291. },
  53292. ]
  53293. ))
  53294. characterMakers.push(() => makeCharacter(
  53295. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53296. {
  53297. hyenaSide: {
  53298. height: math.unit(120, "cm"),
  53299. weight: math.unit(120, "lb"),
  53300. name: "Side",
  53301. image: {
  53302. source: "./media/characters/trance/hyena-side.svg",
  53303. extra: 998/904,
  53304. bottom: 76/1074
  53305. }
  53306. },
  53307. },
  53308. [
  53309. {
  53310. name: "Normal",
  53311. height: math.unit(120, "cm"),
  53312. default: true
  53313. },
  53314. {
  53315. name: "Dire",
  53316. height: math.unit(230, "cm")
  53317. },
  53318. {
  53319. name: "Macro",
  53320. height: math.unit(37, "feet")
  53321. },
  53322. ]
  53323. ))
  53324. characterMakers.push(() => makeCharacter(
  53325. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53326. {
  53327. front: {
  53328. height: math.unit(6 + 3/12, "feet"),
  53329. name: "Front",
  53330. image: {
  53331. source: "./media/characters/michael-berretta/front.svg",
  53332. extra: 515/494,
  53333. bottom: 20/535
  53334. }
  53335. },
  53336. back: {
  53337. height: math.unit(6 + 3/12, "feet"),
  53338. name: "Back",
  53339. image: {
  53340. source: "./media/characters/michael-berretta/back.svg",
  53341. extra: 520/497,
  53342. bottom: 21/541
  53343. }
  53344. },
  53345. frontNsfw: {
  53346. height: math.unit(6 + 3/12, "feet"),
  53347. name: "Front (NSFW)",
  53348. image: {
  53349. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53350. extra: 515/494,
  53351. bottom: 20/535
  53352. }
  53353. },
  53354. dick: {
  53355. height: math.unit(1, "feet"),
  53356. name: "Dick",
  53357. image: {
  53358. source: "./media/characters/michael-berretta/dick.svg"
  53359. }
  53360. },
  53361. },
  53362. [
  53363. {
  53364. name: "Normal",
  53365. height: math.unit(6 + 3/12, "feet"),
  53366. default: true
  53367. },
  53368. {
  53369. name: "Big",
  53370. height: math.unit(12, "feet")
  53371. },
  53372. {
  53373. name: "Macro",
  53374. height: math.unit(187.5, "feet")
  53375. },
  53376. ]
  53377. ))
  53378. characterMakers.push(() => makeCharacter(
  53379. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53380. {
  53381. front: {
  53382. height: math.unit(9 + 9/12, "feet"),
  53383. weight: math.unit(1244, "lb"),
  53384. name: "Front",
  53385. image: {
  53386. source: "./media/characters/stella-edgecomb/front.svg",
  53387. extra: 1835/1706,
  53388. bottom: 49/1884
  53389. }
  53390. },
  53391. pen: {
  53392. height: math.unit(0.95, "feet"),
  53393. name: "Pen",
  53394. image: {
  53395. source: "./media/characters/stella-edgecomb/pen.svg"
  53396. }
  53397. },
  53398. },
  53399. [
  53400. {
  53401. name: "Cozy Bear",
  53402. height: math.unit(0.5, "inches")
  53403. },
  53404. {
  53405. name: "Normal",
  53406. height: math.unit(9 + 9/12, "feet"),
  53407. default: true
  53408. },
  53409. {
  53410. name: "Giga Bear",
  53411. height: math.unit(1, "mile")
  53412. },
  53413. {
  53414. name: "Great Bear",
  53415. height: math.unit(53, "miles")
  53416. },
  53417. {
  53418. name: "Goddess Bear",
  53419. height: math.unit(40000, "miles")
  53420. },
  53421. {
  53422. name: "Sun Bear",
  53423. height: math.unit(900000, "miles")
  53424. },
  53425. ]
  53426. ))
  53427. characterMakers.push(() => makeCharacter(
  53428. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53429. {
  53430. anthroFront: {
  53431. height: math.unit(556, "cm"),
  53432. weight: math.unit(2650, "kg"),
  53433. preyCapacity: math.unit(3, "people"),
  53434. name: "Front",
  53435. image: {
  53436. source: "./media/characters/ash´iika/front.svg",
  53437. extra: 710/673,
  53438. bottom: 15/725
  53439. },
  53440. form: "anthro",
  53441. default: true
  53442. },
  53443. anthroSide: {
  53444. height: math.unit(556, "cm"),
  53445. weight: math.unit(2650, "kg"),
  53446. preyCapacity: math.unit(3, "people"),
  53447. name: "Side",
  53448. image: {
  53449. source: "./media/characters/ash´iika/side.svg",
  53450. extra: 696/676,
  53451. bottom: 13/709
  53452. },
  53453. form: "anthro"
  53454. },
  53455. anthroDressed: {
  53456. height: math.unit(556, "cm"),
  53457. weight: math.unit(2650, "kg"),
  53458. preyCapacity: math.unit(3, "people"),
  53459. name: "Dressed",
  53460. image: {
  53461. source: "./media/characters/ash´iika/dressed.svg",
  53462. extra: 710/673,
  53463. bottom: 15/725
  53464. },
  53465. form: "anthro"
  53466. },
  53467. anthroHead: {
  53468. height: math.unit(3.5, "feet"),
  53469. name: "Head",
  53470. image: {
  53471. source: "./media/characters/ash´iika/head.svg",
  53472. extra: 348/291,
  53473. bottom: 45/393
  53474. },
  53475. form: "anthro"
  53476. },
  53477. feralSide: {
  53478. height: math.unit(870, "cm"),
  53479. weight: math.unit(17500, "kg"),
  53480. preyCapacity: math.unit(15, "people"),
  53481. name: "Side",
  53482. image: {
  53483. source: "./media/characters/ash´iika/feral.svg",
  53484. extra: 595/199,
  53485. bottom: 7/602
  53486. },
  53487. form: "feral",
  53488. default: true,
  53489. },
  53490. },
  53491. [
  53492. {
  53493. name: "Normal",
  53494. height: math.unit(556, "cm"),
  53495. default: true,
  53496. form: "anthro"
  53497. },
  53498. {
  53499. name: "Macro",
  53500. height: math.unit(88, "meters"),
  53501. form: "anthro"
  53502. },
  53503. {
  53504. name: "Normal",
  53505. height: math.unit(870, "cm"),
  53506. default: true,
  53507. form: "feral"
  53508. },
  53509. {
  53510. name: "Large",
  53511. height: math.unit(25, "meters"),
  53512. form: "feral"
  53513. },
  53514. ],
  53515. {
  53516. "anthro": {
  53517. name: "Anthro",
  53518. default: true
  53519. },
  53520. "feral": {
  53521. name: "Feral",
  53522. },
  53523. }
  53524. ))
  53525. characterMakers.push(() => makeCharacter(
  53526. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53527. {
  53528. front: {
  53529. height: math.unit(10, "feet"),
  53530. weight: math.unit(800, "lb"),
  53531. name: "Front",
  53532. image: {
  53533. source: "./media/characters/yen/front.svg",
  53534. extra: 443/411,
  53535. bottom: 6/449
  53536. }
  53537. },
  53538. sleeping: {
  53539. height: math.unit(10, "feet"),
  53540. weight: math.unit(800, "lb"),
  53541. name: "Sleeping",
  53542. image: {
  53543. source: "./media/characters/yen/sleeping.svg",
  53544. extra: 470/422,
  53545. bottom: 0/470
  53546. }
  53547. },
  53548. head: {
  53549. height: math.unit(2.2, "feet"),
  53550. name: "Head",
  53551. image: {
  53552. source: "./media/characters/yen/head.svg"
  53553. }
  53554. },
  53555. headAlt: {
  53556. height: math.unit(2.1, "feet"),
  53557. name: "Head (Alt)",
  53558. image: {
  53559. source: "./media/characters/yen/head-alt.svg"
  53560. }
  53561. },
  53562. },
  53563. [
  53564. {
  53565. name: "Normal",
  53566. height: math.unit(10, "feet"),
  53567. default: true
  53568. },
  53569. ]
  53570. ))
  53571. characterMakers.push(() => makeCharacter(
  53572. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53573. {
  53574. front: {
  53575. height: math.unit(12, "feet"),
  53576. name: "Front",
  53577. image: {
  53578. source: "./media/characters/citra/front.svg",
  53579. extra: 1950/1710,
  53580. bottom: 47/1997
  53581. }
  53582. },
  53583. },
  53584. [
  53585. {
  53586. name: "Normal",
  53587. height: math.unit(12, "feet"),
  53588. default: true
  53589. },
  53590. ]
  53591. ))
  53592. characterMakers.push(() => makeCharacter(
  53593. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53594. {
  53595. side: {
  53596. height: math.unit(7 + 10/12, "feet"),
  53597. name: "Side",
  53598. image: {
  53599. source: "./media/characters/sholstim/side.svg",
  53600. extra: 786/682,
  53601. bottom: 40/826
  53602. }
  53603. },
  53604. },
  53605. [
  53606. {
  53607. name: "Normal",
  53608. height: math.unit(7 + 10/12, "feet"),
  53609. default: true
  53610. },
  53611. ]
  53612. ))
  53613. characterMakers.push(() => makeCharacter(
  53614. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53615. {
  53616. front: {
  53617. height: math.unit(3.10, "meters"),
  53618. name: "Front",
  53619. image: {
  53620. source: "./media/characters/aggyn/front.svg",
  53621. extra: 1188/963,
  53622. bottom: 24/1212
  53623. }
  53624. },
  53625. },
  53626. [
  53627. {
  53628. name: "Normal",
  53629. height: math.unit(3.10, "meters"),
  53630. default: true
  53631. },
  53632. ]
  53633. ))
  53634. characterMakers.push(() => makeCharacter(
  53635. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53636. {
  53637. front: {
  53638. height: math.unit(7 + 5/12, "feet"),
  53639. weight: math.unit(687, "lb"),
  53640. name: "Front",
  53641. image: {
  53642. source: "./media/characters/alsandair-hergenroether/front.svg",
  53643. extra: 1251/1186,
  53644. bottom: 75/1326
  53645. }
  53646. },
  53647. back: {
  53648. height: math.unit(7 + 5/12, "feet"),
  53649. weight: math.unit(687, "lb"),
  53650. name: "Back",
  53651. image: {
  53652. source: "./media/characters/alsandair-hergenroether/back.svg",
  53653. extra: 1290/1229,
  53654. bottom: 17/1307
  53655. }
  53656. },
  53657. },
  53658. [
  53659. {
  53660. name: "Max Compression",
  53661. height: math.unit(7 + 5/12, "feet"),
  53662. default: true
  53663. },
  53664. {
  53665. name: "\"Normal\"",
  53666. height: math.unit(2, "universes")
  53667. },
  53668. ]
  53669. ))
  53670. characterMakers.push(() => makeCharacter(
  53671. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53672. {
  53673. front: {
  53674. height: math.unit(4 + 1/12, "feet"),
  53675. weight: math.unit(92, "lb"),
  53676. name: "Front",
  53677. image: {
  53678. source: "./media/characters/ie/front.svg",
  53679. extra: 1585/1352,
  53680. bottom: 91/1676
  53681. }
  53682. },
  53683. },
  53684. [
  53685. {
  53686. name: "Normal",
  53687. height: math.unit(4 + 1/12, "feet"),
  53688. default: true
  53689. },
  53690. ]
  53691. ))
  53692. characterMakers.push(() => makeCharacter(
  53693. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53694. {
  53695. anthro: {
  53696. height: math.unit(6, "feet"),
  53697. weight: math.unit(150, "lb"),
  53698. name: "Front",
  53699. image: {
  53700. source: "./media/characters/willow/anthro.svg",
  53701. extra: 1073/986,
  53702. bottom: 34/1107
  53703. },
  53704. form: "anthro",
  53705. default: true
  53706. },
  53707. taur: {
  53708. height: math.unit(6, "feet"),
  53709. weight: math.unit(150, "lb"),
  53710. name: "Side",
  53711. image: {
  53712. source: "./media/characters/willow/taur.svg",
  53713. extra: 647/512,
  53714. bottom: 136/783
  53715. },
  53716. form: "taur",
  53717. default: true
  53718. },
  53719. },
  53720. [
  53721. {
  53722. name: "Humanoid",
  53723. height: math.unit(2.7, "meters"),
  53724. form: "anthro"
  53725. },
  53726. {
  53727. name: "Normal",
  53728. height: math.unit(9, "meters"),
  53729. form: "anthro",
  53730. default: true
  53731. },
  53732. {
  53733. name: "Humanoid",
  53734. height: math.unit(2.1, "meters"),
  53735. form: "taur"
  53736. },
  53737. {
  53738. name: "Normal",
  53739. height: math.unit(7, "meters"),
  53740. form: "taur",
  53741. default: true
  53742. },
  53743. ],
  53744. {
  53745. "anthro": {
  53746. name: "Anthro",
  53747. default: true
  53748. },
  53749. "taur": {
  53750. name: "Taur",
  53751. },
  53752. }
  53753. ))
  53754. characterMakers.push(() => makeCharacter(
  53755. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53756. {
  53757. front: {
  53758. height: math.unit(2 + 5/12, "feet"),
  53759. name: "Front",
  53760. image: {
  53761. source: "./media/characters/kyan/front.svg",
  53762. extra: 460/334,
  53763. bottom: 23/483
  53764. },
  53765. extraAttributes: {
  53766. "toeLength": {
  53767. name: "Toe Length",
  53768. power: 1,
  53769. type: "length",
  53770. base: math.unit(7, "cm")
  53771. },
  53772. "toeclawLength": {
  53773. name: "Toeclaw Length",
  53774. power: 1,
  53775. type: "length",
  53776. base: math.unit(4.7, "cm")
  53777. },
  53778. "earHeight": {
  53779. name: "Ear Height",
  53780. power: 1,
  53781. type: "length",
  53782. base: math.unit(14.1, "cm")
  53783. },
  53784. }
  53785. },
  53786. paws: {
  53787. height: math.unit(0.45, "feet"),
  53788. name: "Paws",
  53789. image: {
  53790. source: "./media/characters/kyan/paws.svg",
  53791. extra: 581/581,
  53792. bottom: 114/695
  53793. }
  53794. },
  53795. },
  53796. [
  53797. {
  53798. name: "Normal",
  53799. height: math.unit(2 + 5/12, "feet"),
  53800. default: true
  53801. },
  53802. ]
  53803. ))
  53804. characterMakers.push(() => makeCharacter(
  53805. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53806. {
  53807. front: {
  53808. height: math.unit(2 + 2/3, "feet"),
  53809. name: "Front",
  53810. image: {
  53811. source: "./media/characters/xazzon/front.svg",
  53812. extra: 1109/984,
  53813. bottom: 42/1151
  53814. }
  53815. },
  53816. back: {
  53817. height: math.unit(2 + 2/3, "feet"),
  53818. name: "Back",
  53819. image: {
  53820. source: "./media/characters/xazzon/back.svg",
  53821. extra: 1095/971,
  53822. bottom: 23/1118
  53823. }
  53824. },
  53825. },
  53826. [
  53827. {
  53828. name: "Normal",
  53829. height: math.unit(2 + 2/3, "feet"),
  53830. default: true
  53831. },
  53832. ]
  53833. ))
  53834. characterMakers.push(() => makeCharacter(
  53835. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53836. {
  53837. dressed: {
  53838. height: math.unit(5 + 7/12, "feet"),
  53839. weight: math.unit(173, "lb"),
  53840. name: "Dressed",
  53841. image: {
  53842. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53843. extra: 3262/2862,
  53844. bottom: 188/3450
  53845. }
  53846. },
  53847. undressed: {
  53848. height: math.unit(5 + 7/12, "feet"),
  53849. weight: math.unit(173, "lb"),
  53850. name: "Undressed",
  53851. image: {
  53852. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53853. extra: 3262/2862,
  53854. bottom: 188/3450
  53855. }
  53856. },
  53857. },
  53858. [
  53859. {
  53860. name: "The void",
  53861. height: math.unit(7.29193e-34, "angstroms")
  53862. },
  53863. {
  53864. name: "Uh-Oh.",
  53865. height: math.unit(5.734e-7, "angstroms")
  53866. },
  53867. {
  53868. name: "Pico",
  53869. height: math.unit(0.876, "angstroms")
  53870. },
  53871. {
  53872. name: "Nano",
  53873. height: math.unit(0.000134200, "mm")
  53874. },
  53875. {
  53876. name: "Micro",
  53877. height: math.unit(0.0673020, "mm")
  53878. },
  53879. {
  53880. name: "Tiny",
  53881. height: math.unit(2.4, "mm")
  53882. },
  53883. {
  53884. name: "Actual Normal",
  53885. height: math.unit(3, "inches"),
  53886. default: true
  53887. },
  53888. {
  53889. name: "Normal",
  53890. height: math.unit(5 + 8/12, "feet")
  53891. },
  53892. {
  53893. name: "Giant",
  53894. height: math.unit(12, "feet")
  53895. },
  53896. {
  53897. name: "City Ruler",
  53898. height: math.unit(270, "meters")
  53899. },
  53900. {
  53901. name: "Giga",
  53902. height: math.unit(1117.6, "km")
  53903. },
  53904. {
  53905. name: "All-Powerful Queen",
  53906. height: math.unit(70.8, "gigameters")
  53907. },
  53908. {
  53909. name: "'Goddess'",
  53910. height: math.unit(600, "yottameters")
  53911. },
  53912. {
  53913. name: "Biggest!",
  53914. height: math.unit(4.23e5, "yottameters")
  53915. },
  53916. ]
  53917. ))
  53918. characterMakers.push(() => makeCharacter(
  53919. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53920. {
  53921. front: {
  53922. height: math.unit(8, "feet"),
  53923. weight: math.unit(300, "lb"),
  53924. name: "Front",
  53925. image: {
  53926. source: "./media/characters/khyla-shadowsong/front.svg",
  53927. extra: 861/798,
  53928. bottom: 32/893
  53929. }
  53930. },
  53931. side: {
  53932. height: math.unit(8, "feet"),
  53933. weight: math.unit(300, "lb"),
  53934. name: "Side",
  53935. image: {
  53936. source: "./media/characters/khyla-shadowsong/side.svg",
  53937. extra: 790/750,
  53938. bottom: 87/877
  53939. }
  53940. },
  53941. back: {
  53942. height: math.unit(8, "feet"),
  53943. weight: math.unit(300, "lb"),
  53944. name: "Back",
  53945. image: {
  53946. source: "./media/characters/khyla-shadowsong/back.svg",
  53947. extra: 855/808,
  53948. bottom: 14/869
  53949. }
  53950. },
  53951. head: {
  53952. height: math.unit(2.7, "feet"),
  53953. name: "Head",
  53954. image: {
  53955. source: "./media/characters/khyla-shadowsong/head.svg"
  53956. }
  53957. },
  53958. },
  53959. [
  53960. {
  53961. name: "Micro",
  53962. height: math.unit(6, "inches")
  53963. },
  53964. {
  53965. name: "Normal",
  53966. height: math.unit(8, "feet"),
  53967. default: true
  53968. },
  53969. ]
  53970. ))
  53971. characterMakers.push(() => makeCharacter(
  53972. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53973. {
  53974. hyperFront: {
  53975. height: math.unit(9 + 4/12, "feet"),
  53976. weight: math.unit(2000, "lb"),
  53977. name: "Front",
  53978. image: {
  53979. source: "./media/characters/tiden/hyper-front.svg",
  53980. extra: 400/382,
  53981. bottom: 6/406
  53982. },
  53983. form: "hyper",
  53984. },
  53985. regularFront: {
  53986. height: math.unit(7 + 10/12, "feet"),
  53987. weight: math.unit(470, "lb"),
  53988. name: "Front",
  53989. image: {
  53990. source: "./media/characters/tiden/regular-front.svg",
  53991. extra: 468/442,
  53992. bottom: 6/474
  53993. },
  53994. form: "regular",
  53995. },
  53996. },
  53997. [
  53998. {
  53999. name: "Normal",
  54000. height: math.unit(9 + 4/12, "feet"),
  54001. default: true,
  54002. form: "hyper"
  54003. },
  54004. {
  54005. name: "Normal",
  54006. height: math.unit(7 + 10/12, "feet"),
  54007. default: true,
  54008. form: "regular"
  54009. },
  54010. ],
  54011. {
  54012. "hyper": {
  54013. name: "Hyper",
  54014. default: true
  54015. },
  54016. "regular": {
  54017. name: "Regular",
  54018. },
  54019. }
  54020. ))
  54021. characterMakers.push(() => makeCharacter(
  54022. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54023. {
  54024. side: {
  54025. height: math.unit(6, "feet"),
  54026. weight: math.unit(150, "lb"),
  54027. name: "Side",
  54028. image: {
  54029. source: "./media/characters/jason-crowe/side.svg",
  54030. extra: 1771/766,
  54031. bottom: 219/1990
  54032. }
  54033. },
  54034. },
  54035. [
  54036. {
  54037. name: "Pocket Gryphon",
  54038. height: math.unit(6, "cm")
  54039. },
  54040. {
  54041. name: "Raven",
  54042. height: math.unit(60, "cm")
  54043. },
  54044. {
  54045. name: "Normal",
  54046. height: math.unit(1, "meter"),
  54047. default: true
  54048. },
  54049. ]
  54050. ))
  54051. characterMakers.push(() => makeCharacter(
  54052. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54053. {
  54054. front: {
  54055. height: math.unit(9 + 6/12, "feet"),
  54056. weight: math.unit(1100, "lb"),
  54057. name: "Front",
  54058. image: {
  54059. source: "./media/characters/django/front.svg",
  54060. extra: 1231/1136,
  54061. bottom: 34/1265
  54062. }
  54063. },
  54064. side: {
  54065. height: math.unit(9 + 6/12, "feet"),
  54066. weight: math.unit(1100, "lb"),
  54067. name: "Side",
  54068. image: {
  54069. source: "./media/characters/django/side.svg",
  54070. extra: 1267/1174,
  54071. bottom: 9/1276
  54072. }
  54073. },
  54074. },
  54075. [
  54076. {
  54077. name: "Normal",
  54078. height: math.unit(9 + 6/12, "feet"),
  54079. default: true
  54080. },
  54081. {
  54082. name: "Macro 1",
  54083. height: math.unit(50, "feet")
  54084. },
  54085. {
  54086. name: "Macro 2",
  54087. height: math.unit(500, "feet")
  54088. },
  54089. {
  54090. name: "Mega Macro",
  54091. height: math.unit(5300, "feet")
  54092. },
  54093. ]
  54094. ))
  54095. characterMakers.push(() => makeCharacter(
  54096. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54097. {
  54098. frontSfw: {
  54099. height: math.unit(120, "cm"),
  54100. weight: math.unit(15, "kg"),
  54101. name: "Front (SFW)",
  54102. image: {
  54103. source: "./media/characters/eri/front-sfw.svg",
  54104. extra: 1014/939,
  54105. bottom: 37/1051
  54106. },
  54107. form: "moth",
  54108. },
  54109. frontNsfw: {
  54110. height: math.unit(120, "cm"),
  54111. weight: math.unit(15, "kg"),
  54112. name: "Front (NSFW)",
  54113. image: {
  54114. source: "./media/characters/eri/front-nsfw.svg",
  54115. extra: 1014/939,
  54116. bottom: 37/1051
  54117. },
  54118. form: "moth",
  54119. default: true
  54120. },
  54121. egg: {
  54122. height: math.unit(10, "cm"),
  54123. name: "Egg",
  54124. image: {
  54125. source: "./media/characters/eri/egg.svg"
  54126. },
  54127. form: "egg",
  54128. default: true
  54129. },
  54130. },
  54131. [
  54132. {
  54133. name: "Normal",
  54134. height: math.unit(120, "cm"),
  54135. default: true,
  54136. form: "moth"
  54137. },
  54138. {
  54139. name: "Normal",
  54140. height: math.unit(10, "cm"),
  54141. default: true,
  54142. form: "egg"
  54143. },
  54144. ],
  54145. {
  54146. "moth": {
  54147. name: "Moth",
  54148. default: true
  54149. },
  54150. "egg": {
  54151. name: "Egg",
  54152. },
  54153. }
  54154. ))
  54155. characterMakers.push(() => makeCharacter(
  54156. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54157. {
  54158. front: {
  54159. height: math.unit(200, "feet"),
  54160. name: "Front",
  54161. image: {
  54162. source: "./media/characters/bishop-dowser/front.svg",
  54163. extra: 933/868,
  54164. bottom: 106/1039
  54165. }
  54166. },
  54167. },
  54168. [
  54169. {
  54170. name: "Giant",
  54171. height: math.unit(200, "feet"),
  54172. default: true
  54173. },
  54174. ]
  54175. ))
  54176. characterMakers.push(() => makeCharacter(
  54177. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54178. {
  54179. front: {
  54180. height: math.unit(2, "meters"),
  54181. preyCapacity: math.unit(3, "people"),
  54182. name: "Front",
  54183. image: {
  54184. source: "./media/characters/fryra/front.svg",
  54185. extra: 1025/948,
  54186. bottom: 30/1055
  54187. },
  54188. extraAttributes: {
  54189. "breastVolume": {
  54190. name: "Breast Volume",
  54191. power: 3,
  54192. type: "volume",
  54193. base: math.unit(8, "liters")
  54194. },
  54195. }
  54196. },
  54197. back: {
  54198. height: math.unit(2, "meters"),
  54199. preyCapacity: math.unit(3, "people"),
  54200. name: "Back",
  54201. image: {
  54202. source: "./media/characters/fryra/back.svg",
  54203. extra: 993/938,
  54204. bottom: 38/1031
  54205. },
  54206. extraAttributes: {
  54207. "breastVolume": {
  54208. name: "Breast Volume",
  54209. power: 3,
  54210. type: "volume",
  54211. base: math.unit(8, "liters")
  54212. },
  54213. }
  54214. },
  54215. head: {
  54216. height: math.unit(1.33, "feet"),
  54217. name: "Head",
  54218. image: {
  54219. source: "./media/characters/fryra/head.svg"
  54220. }
  54221. },
  54222. maw: {
  54223. height: math.unit(0.56, "feet"),
  54224. name: "Maw",
  54225. image: {
  54226. source: "./media/characters/fryra/maw.svg"
  54227. }
  54228. },
  54229. },
  54230. [
  54231. {
  54232. name: "Micro",
  54233. height: math.unit(5, "cm")
  54234. },
  54235. {
  54236. name: "Normal",
  54237. height: math.unit(2, "meters"),
  54238. default: true
  54239. },
  54240. {
  54241. name: "Small Macro",
  54242. height: math.unit(8, "meters")
  54243. },
  54244. {
  54245. name: "Macro",
  54246. height: math.unit(50, "meters")
  54247. },
  54248. {
  54249. name: "Megamacro",
  54250. height: math.unit(1, "km")
  54251. },
  54252. {
  54253. name: "Planetary",
  54254. height: math.unit(300000, "km")
  54255. },
  54256. {
  54257. name: "Universal",
  54258. height: math.unit(250, "lightyears")
  54259. },
  54260. {
  54261. name: "Fabric of Reality",
  54262. height: math.unit(1000, "multiverses")
  54263. },
  54264. ]
  54265. ))
  54266. characterMakers.push(() => makeCharacter(
  54267. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54268. {
  54269. frontDressed: {
  54270. height: math.unit(6 + 2/12, "feet"),
  54271. name: "Front (Dressed)",
  54272. image: {
  54273. source: "./media/characters/fiera/front-dressed.svg",
  54274. extra: 1883/1793,
  54275. bottom: 70/1953
  54276. }
  54277. },
  54278. backDressed: {
  54279. height: math.unit(6 + 2/12, "feet"),
  54280. name: "Back (Dressed)",
  54281. image: {
  54282. source: "./media/characters/fiera/back-dressed.svg",
  54283. extra: 1847/1780,
  54284. bottom: 70/1917
  54285. }
  54286. },
  54287. frontNude: {
  54288. height: math.unit(6 + 2/12, "feet"),
  54289. name: "Front (Nude)",
  54290. image: {
  54291. source: "./media/characters/fiera/front-nude.svg",
  54292. extra: 1875/1785,
  54293. bottom: 66/1941
  54294. }
  54295. },
  54296. backNude: {
  54297. height: math.unit(6 + 2/12, "feet"),
  54298. name: "Back (Nude)",
  54299. image: {
  54300. source: "./media/characters/fiera/back-nude.svg",
  54301. extra: 1855/1788,
  54302. bottom: 44/1899
  54303. }
  54304. },
  54305. maw: {
  54306. height: math.unit(1.3, "feet"),
  54307. name: "Maw",
  54308. image: {
  54309. source: "./media/characters/fiera/maw.svg"
  54310. }
  54311. },
  54312. paw: {
  54313. height: math.unit(1, "feet"),
  54314. name: "Paw",
  54315. image: {
  54316. source: "./media/characters/fiera/paw.svg"
  54317. }
  54318. },
  54319. shoe: {
  54320. height: math.unit(1.05, "feet"),
  54321. name: "Shoe",
  54322. image: {
  54323. source: "./media/characters/fiera/shoe.svg"
  54324. }
  54325. },
  54326. },
  54327. [
  54328. {
  54329. name: "Normal",
  54330. height: math.unit(6 + 2/12, "feet"),
  54331. default: true
  54332. },
  54333. {
  54334. name: "Size Difference",
  54335. height: math.unit(13, "feet")
  54336. },
  54337. {
  54338. name: "Macro",
  54339. height: math.unit(60, "feet")
  54340. },
  54341. {
  54342. name: "Mega Macro",
  54343. height: math.unit(200, "feet")
  54344. },
  54345. ]
  54346. ))
  54347. characterMakers.push(() => makeCharacter(
  54348. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54349. {
  54350. back: {
  54351. height: math.unit(6, "feet"),
  54352. name: "Back",
  54353. image: {
  54354. source: "./media/characters/flare/back.svg",
  54355. extra: 1883/1765,
  54356. bottom: 32/1915
  54357. }
  54358. },
  54359. },
  54360. [
  54361. {
  54362. name: "Normal",
  54363. height: math.unit(6 + 2/12, "feet"),
  54364. default: true
  54365. },
  54366. {
  54367. name: "Size Difference",
  54368. height: math.unit(13, "feet")
  54369. },
  54370. {
  54371. name: "Macro",
  54372. height: math.unit(60, "feet")
  54373. },
  54374. {
  54375. name: "Macro 2",
  54376. height: math.unit(100, "feet")
  54377. },
  54378. {
  54379. name: "Mega Macro",
  54380. height: math.unit(200, "feet")
  54381. },
  54382. ]
  54383. ))
  54384. characterMakers.push(() => makeCharacter(
  54385. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54386. {
  54387. front: {
  54388. height: math.unit(2.2, "m"),
  54389. weight: math.unit(300, "kg"),
  54390. name: "Front",
  54391. image: {
  54392. source: "./media/characters/hanna/front.svg",
  54393. extra: 1696/1502,
  54394. bottom: 206/1902
  54395. }
  54396. },
  54397. },
  54398. [
  54399. {
  54400. name: "Humanoid",
  54401. height: math.unit(2.2, "meters")
  54402. },
  54403. {
  54404. name: "Normal",
  54405. height: math.unit(4.8, "meters"),
  54406. default: true
  54407. },
  54408. ]
  54409. ))
  54410. characterMakers.push(() => makeCharacter(
  54411. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54412. {
  54413. front: {
  54414. height: math.unit(2.8, "meters"),
  54415. name: "Front",
  54416. image: {
  54417. source: "./media/characters/argo/front.svg",
  54418. extra: 731/518,
  54419. bottom: 84/815
  54420. }
  54421. },
  54422. },
  54423. [
  54424. {
  54425. name: "Normal",
  54426. height: math.unit(3, "meters"),
  54427. default: true
  54428. },
  54429. ]
  54430. ))
  54431. characterMakers.push(() => makeCharacter(
  54432. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54433. {
  54434. side: {
  54435. height: math.unit(3.8, "meters"),
  54436. name: "Side",
  54437. image: {
  54438. source: "./media/characters/sybil/side.svg",
  54439. extra: 382/361,
  54440. bottom: 25/407
  54441. }
  54442. },
  54443. },
  54444. [
  54445. {
  54446. name: "Normal",
  54447. height: math.unit(3.8, "meters"),
  54448. default: true
  54449. },
  54450. ]
  54451. ))
  54452. characterMakers.push(() => makeCharacter(
  54453. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54454. {
  54455. side: {
  54456. height: math.unit(6, "meters"),
  54457. name: "Side",
  54458. image: {
  54459. source: "./media/characters/plum/side.svg",
  54460. extra: 858/755,
  54461. bottom: 45/903
  54462. },
  54463. form: "taur",
  54464. default: true
  54465. },
  54466. back: {
  54467. height: math.unit(6.3, "meters"),
  54468. name: "Back",
  54469. image: {
  54470. source: "./media/characters/plum/back.svg",
  54471. extra: 887/813,
  54472. bottom: 32/919
  54473. },
  54474. form: "taur",
  54475. },
  54476. feral: {
  54477. height: math.unit(5.5, "meter"),
  54478. name: "Front",
  54479. image: {
  54480. source: "./media/characters/plum/feral.svg",
  54481. extra: 568/403,
  54482. bottom: 51/619
  54483. },
  54484. form: "feral",
  54485. default: true
  54486. },
  54487. head: {
  54488. height: math.unit(1.46, "meter"),
  54489. name: "Head",
  54490. image: {
  54491. source: "./media/characters/plum/head.svg"
  54492. },
  54493. form: "taur"
  54494. },
  54495. tailTop: {
  54496. height: math.unit(5.6, "meter"),
  54497. name: "Tail (Top)",
  54498. image: {
  54499. source: "./media/characters/plum/tail-top.svg"
  54500. },
  54501. form: "taur",
  54502. },
  54503. tailBottom: {
  54504. height: math.unit(5.6, "meter"),
  54505. name: "Tail (Bottom)",
  54506. image: {
  54507. source: "./media/characters/plum/tail-bottom.svg"
  54508. },
  54509. form: "taur",
  54510. },
  54511. feralHead: {
  54512. height: math.unit(2.56549521, "meter"),
  54513. name: "Head",
  54514. image: {
  54515. source: "./media/characters/plum/head.svg"
  54516. },
  54517. form: "feral"
  54518. },
  54519. feralTailTop: {
  54520. height: math.unit(5.44728435, "meter"),
  54521. name: "Tail (Top)",
  54522. image: {
  54523. source: "./media/characters/plum/tail-top.svg"
  54524. },
  54525. form: "feral",
  54526. },
  54527. feralTailBottom: {
  54528. height: math.unit(5.44728435, "meter"),
  54529. name: "Tail (Bottom)",
  54530. image: {
  54531. source: "./media/characters/plum/tail-bottom.svg"
  54532. },
  54533. form: "feral",
  54534. },
  54535. },
  54536. [
  54537. {
  54538. name: "Normal",
  54539. height: math.unit(6, "meters"),
  54540. default: true,
  54541. form: "taur"
  54542. },
  54543. {
  54544. name: "Normal",
  54545. height: math.unit(5.5, "meters"),
  54546. default: true,
  54547. form: "feral"
  54548. },
  54549. ],
  54550. {
  54551. "taur": {
  54552. name: "Taur",
  54553. default: true
  54554. },
  54555. "feral": {
  54556. name: "Feral",
  54557. },
  54558. }
  54559. ))
  54560. characterMakers.push(() => makeCharacter(
  54561. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54562. {
  54563. front: {
  54564. height: math.unit(6, "feet"),
  54565. weight: math.unit(115, "lb"),
  54566. name: "Front",
  54567. image: {
  54568. source: "./media/characters/celeste-kitsune/front.svg",
  54569. extra: 393/366,
  54570. bottom: 7/400
  54571. }
  54572. },
  54573. side: {
  54574. height: math.unit(6, "feet"),
  54575. weight: math.unit(115, "lb"),
  54576. name: "Side",
  54577. image: {
  54578. source: "./media/characters/celeste-kitsune/side.svg",
  54579. extra: 818/765,
  54580. bottom: 40/858
  54581. }
  54582. },
  54583. },
  54584. [
  54585. {
  54586. name: "Megamacro",
  54587. height: math.unit(1500, "miles"),
  54588. default: true
  54589. },
  54590. ]
  54591. ))
  54592. characterMakers.push(() => makeCharacter(
  54593. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54594. {
  54595. front: {
  54596. height: math.unit(8, "meters"),
  54597. name: "Front",
  54598. image: {
  54599. source: "./media/characters/io/front.svg",
  54600. extra: 865/722,
  54601. bottom: 58/923
  54602. }
  54603. },
  54604. back: {
  54605. height: math.unit(8, "meters"),
  54606. name: "Back",
  54607. image: {
  54608. source: "./media/characters/io/back.svg",
  54609. extra: 920/776,
  54610. bottom: 42/962
  54611. }
  54612. },
  54613. head: {
  54614. height: math.unit(5.09, "meters"),
  54615. name: "Head",
  54616. image: {
  54617. source: "./media/characters/io/head.svg"
  54618. }
  54619. },
  54620. hand: {
  54621. height: math.unit(1.6, "meters"),
  54622. name: "Hand",
  54623. image: {
  54624. source: "./media/characters/io/hand.svg"
  54625. }
  54626. },
  54627. foot: {
  54628. height: math.unit(2.4, "meters"),
  54629. name: "Foot",
  54630. image: {
  54631. source: "./media/characters/io/foot.svg"
  54632. }
  54633. },
  54634. },
  54635. [
  54636. {
  54637. name: "Normal",
  54638. height: math.unit(8, "meters"),
  54639. default: true
  54640. },
  54641. ]
  54642. ))
  54643. characterMakers.push(() => makeCharacter(
  54644. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54645. {
  54646. side: {
  54647. height: math.unit(6 + 3/12, "feet"),
  54648. weight: math.unit(225, "lb"),
  54649. name: "Side",
  54650. image: {
  54651. source: "./media/characters/silas/side.svg",
  54652. extra: 703/653,
  54653. bottom: 23/726
  54654. },
  54655. extraAttributes: {
  54656. "pawLength": {
  54657. name: "Paw Length",
  54658. power: 1,
  54659. type: "length",
  54660. base: math.unit(12, "inches")
  54661. },
  54662. "pawWidth": {
  54663. name: "Paw Width",
  54664. power: 1,
  54665. type: "length",
  54666. base: math.unit(4.5, "inches")
  54667. },
  54668. "pawArea": {
  54669. name: "Paw Area",
  54670. power: 2,
  54671. type: "area",
  54672. base: math.unit(12 * 4.5, "inches^2")
  54673. },
  54674. }
  54675. },
  54676. },
  54677. [
  54678. {
  54679. name: "Normal",
  54680. height: math.unit(6 + 3/12, "feet"),
  54681. default: true
  54682. },
  54683. ]
  54684. ))
  54685. characterMakers.push(() => makeCharacter(
  54686. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54687. {
  54688. back: {
  54689. height: math.unit(1.6, "meters"),
  54690. weight: math.unit(150, "lb"),
  54691. name: "Back",
  54692. image: {
  54693. source: "./media/characters/zari/back.svg",
  54694. extra: 424/411,
  54695. bottom: 32/456
  54696. },
  54697. extraAttributes: {
  54698. "bladderCapacity": {
  54699. name: "Bladder Size",
  54700. power: 3,
  54701. type: "volume",
  54702. base: math.unit(500, "mL")
  54703. },
  54704. "bladderFlow": {
  54705. name: "Flow Rate",
  54706. power: 3,
  54707. type: "volume",
  54708. base: math.unit(25, "mL")
  54709. },
  54710. }
  54711. },
  54712. },
  54713. [
  54714. {
  54715. name: "Normal",
  54716. height: math.unit(1.6, "meters"),
  54717. default: true
  54718. },
  54719. ]
  54720. ))
  54721. characterMakers.push(() => makeCharacter(
  54722. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54723. {
  54724. front: {
  54725. height: math.unit(25, "feet"),
  54726. weight: math.unit(5, "tons"),
  54727. name: "Front",
  54728. image: {
  54729. source: "./media/characters/charlie-human/front.svg",
  54730. extra: 1870/1740,
  54731. bottom: 102/1972
  54732. },
  54733. extraAttributes: {
  54734. "dickLength": {
  54735. name: "Dick Length",
  54736. power: 1,
  54737. type: "length",
  54738. base: math.unit(9, "feet")
  54739. },
  54740. }
  54741. },
  54742. back: {
  54743. height: math.unit(25, "feet"),
  54744. weight: math.unit(5, "tons"),
  54745. name: "Back",
  54746. image: {
  54747. source: "./media/characters/charlie-human/back.svg",
  54748. extra: 1858/1733,
  54749. bottom: 105/1963
  54750. },
  54751. extraAttributes: {
  54752. "dickLength": {
  54753. name: "Dick Length",
  54754. power: 1,
  54755. type: "length",
  54756. base: math.unit(9, "feet")
  54757. },
  54758. }
  54759. },
  54760. },
  54761. [
  54762. {
  54763. name: "\"Normal\"",
  54764. height: math.unit(6 + 4/12, "feet")
  54765. },
  54766. {
  54767. name: "Big",
  54768. height: math.unit(25, "feet"),
  54769. default: true
  54770. },
  54771. ]
  54772. ))
  54773. characterMakers.push(() => makeCharacter(
  54774. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  54775. {
  54776. front: {
  54777. height: math.unit(6 + 4/12, "feet"),
  54778. weight: math.unit(320, "lb"),
  54779. name: "Front",
  54780. image: {
  54781. source: "./media/characters/ookitsu/front.svg",
  54782. extra: 1160/976,
  54783. bottom: 38/1198
  54784. }
  54785. },
  54786. frontNsfw: {
  54787. height: math.unit(6 + 4/12, "feet"),
  54788. weight: math.unit(320, "lb"),
  54789. name: "Front (NSFW)",
  54790. image: {
  54791. source: "./media/characters/ookitsu/front-nsfw.svg",
  54792. extra: 1160/976,
  54793. bottom: 38/1198
  54794. }
  54795. },
  54796. back: {
  54797. height: math.unit(6 + 4/12, "feet"),
  54798. weight: math.unit(320, "lb"),
  54799. name: "Back",
  54800. image: {
  54801. source: "./media/characters/ookitsu/back.svg",
  54802. extra: 1030/975,
  54803. bottom: 70/1100
  54804. }
  54805. },
  54806. head: {
  54807. height: math.unit(1.79, "feet"),
  54808. name: "Head",
  54809. image: {
  54810. source: "./media/characters/ookitsu/head.svg"
  54811. }
  54812. },
  54813. hand: {
  54814. height: math.unit(0.92, "feet"),
  54815. name: "Hand",
  54816. image: {
  54817. source: "./media/characters/ookitsu/hand.svg"
  54818. }
  54819. },
  54820. tails: {
  54821. height: math.unit(3.3, "feet"),
  54822. name: "Tails",
  54823. image: {
  54824. source: "./media/characters/ookitsu/tails.svg"
  54825. }
  54826. },
  54827. dick: {
  54828. height: math.unit(1.10833, "feet"),
  54829. name: "Dick",
  54830. image: {
  54831. source: "./media/characters/ookitsu/dick.svg"
  54832. }
  54833. },
  54834. },
  54835. [
  54836. {
  54837. name: "Normal",
  54838. height: math.unit(6 + 4/12, "feet"),
  54839. default: true
  54840. },
  54841. {
  54842. name: "Macro",
  54843. height: math.unit(30, "feet")
  54844. },
  54845. ]
  54846. ))
  54847. characterMakers.push(() => makeCharacter(
  54848. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  54849. {
  54850. anthroFront: {
  54851. height: math.unit(6, "feet"),
  54852. weight: math.unit(250, "lb"),
  54853. name: "Front",
  54854. image: {
  54855. source: "./media/characters/jhusky/anthro-front.svg",
  54856. extra: 474/439,
  54857. bottom: 7/481
  54858. },
  54859. form: "anthro",
  54860. default: true
  54861. },
  54862. taurSideSfw: {
  54863. height: math.unit(6 + 4/12, "feet"),
  54864. weight: math.unit(500, "lb"),
  54865. name: "Side (SFW)",
  54866. image: {
  54867. source: "./media/characters/jhusky/taur-side-sfw.svg",
  54868. extra: 1741/1629,
  54869. bottom: 196/1937
  54870. },
  54871. form: "taur",
  54872. default: true
  54873. },
  54874. taurSideNsfw: {
  54875. height: math.unit(6 + 4/12, "feet"),
  54876. weight: math.unit(500, "lb"),
  54877. name: "Taur (NSFW)",
  54878. image: {
  54879. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  54880. extra: 1741/1629,
  54881. bottom: 196/1937
  54882. },
  54883. form: "taur",
  54884. },
  54885. },
  54886. [
  54887. {
  54888. name: "Huge",
  54889. height: math.unit(500, "feet"),
  54890. form: "anthro"
  54891. },
  54892. {
  54893. name: "Macro",
  54894. height: math.unit(1000, "feet"),
  54895. default: true,
  54896. form: "anthro"
  54897. },
  54898. {
  54899. name: "Megamacro",
  54900. height: math.unit(10000, "feet"),
  54901. form: "anthro"
  54902. },
  54903. {
  54904. name: "Huge",
  54905. height: math.unit(528, "feet"),
  54906. form: "taur"
  54907. },
  54908. {
  54909. name: "Macro",
  54910. height: math.unit(1056, "feet"),
  54911. default: true,
  54912. form: "taur"
  54913. },
  54914. {
  54915. name: "Megamacro",
  54916. height: math.unit(10556, "feet"),
  54917. form: "taur"
  54918. },
  54919. ],
  54920. {
  54921. "anthro": {
  54922. name: "Anthro",
  54923. default: true
  54924. },
  54925. "taur": {
  54926. name: "Taur",
  54927. },
  54928. }
  54929. ))
  54930. characterMakers.push(() => makeCharacter(
  54931. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  54932. {
  54933. front: {
  54934. height: math.unit(8, "feet"),
  54935. weight: math.unit(500, "lb"),
  54936. name: "Front",
  54937. image: {
  54938. source: "./media/characters/armail/front.svg",
  54939. extra: 1753/1669,
  54940. bottom: 155/1908
  54941. }
  54942. },
  54943. back: {
  54944. height: math.unit(8, "feet"),
  54945. weight: math.unit(500, "lb"),
  54946. name: "Back",
  54947. image: {
  54948. source: "./media/characters/armail/back.svg",
  54949. extra: 1872/1803,
  54950. bottom: 63/1935
  54951. }
  54952. },
  54953. },
  54954. [
  54955. {
  54956. name: "Micro",
  54957. height: math.unit(0.25, "feet")
  54958. },
  54959. {
  54960. name: "Normal",
  54961. height: math.unit(8, "feet"),
  54962. default: true
  54963. },
  54964. {
  54965. name: "Mini-macro",
  54966. height: math.unit(30, "feet")
  54967. },
  54968. {
  54969. name: "Macro",
  54970. height: math.unit(400, "feet")
  54971. },
  54972. {
  54973. name: "Mega-macro",
  54974. height: math.unit(6000, "feet")
  54975. },
  54976. ]
  54977. ))
  54978. characterMakers.push(() => makeCharacter(
  54979. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  54980. {
  54981. front: {
  54982. height: math.unit(6 + 7/12, "feet"),
  54983. weight: math.unit(210, "lb"),
  54984. name: "Front",
  54985. image: {
  54986. source: "./media/characters/wilfred-t-buxton/front.svg",
  54987. extra: 1068/882,
  54988. bottom: 28/1096
  54989. }
  54990. },
  54991. },
  54992. [
  54993. {
  54994. name: "Normal",
  54995. height: math.unit(6 + 7/12, "feet"),
  54996. default: true
  54997. },
  54998. ]
  54999. ))
  55000. characterMakers.push(() => makeCharacter(
  55001. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55002. {
  55003. front: {
  55004. height: math.unit(5 + 2/12, "feet"),
  55005. weight: math.unit(120, "lb"),
  55006. name: "Front",
  55007. image: {
  55008. source: "./media/characters/leighton-marrow/front.svg",
  55009. extra: 441/409,
  55010. bottom: 37/478
  55011. }
  55012. },
  55013. },
  55014. [
  55015. {
  55016. name: "Normal",
  55017. height: math.unit(5 + 2/12, "feet"),
  55018. default: true
  55019. },
  55020. ]
  55021. ))
  55022. characterMakers.push(() => makeCharacter(
  55023. { name: "Licos", species: ["werewolf"], tags: ["anthro"] },
  55024. {
  55025. front: {
  55026. height: math.unit(4, "meters"),
  55027. weight: math.unit(1200, "kg"),
  55028. name: "Front",
  55029. image: {
  55030. source: "./media/characters/licos/front.svg",
  55031. extra: 1727/1604,
  55032. bottom: 101/1828
  55033. }
  55034. },
  55035. },
  55036. [
  55037. {
  55038. name: "Normal",
  55039. height: math.unit(4, "meters"),
  55040. default: true
  55041. },
  55042. ]
  55043. ))
  55044. characterMakers.push(() => makeCharacter(
  55045. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55046. {
  55047. front: {
  55048. height: math.unit(10 + 3/12, "feet"),
  55049. name: "Front",
  55050. image: {
  55051. source: "./media/characters/theo-monkey/front.svg",
  55052. extra: 1735/1658,
  55053. bottom: 73/1808
  55054. }
  55055. },
  55056. back: {
  55057. height: math.unit(10 + 3/12, "feet"),
  55058. name: "Back",
  55059. image: {
  55060. source: "./media/characters/theo-monkey/back.svg",
  55061. extra: 1742/1664,
  55062. bottom: 33/1775
  55063. }
  55064. },
  55065. head: {
  55066. height: math.unit(2.29, "feet"),
  55067. name: "Head",
  55068. image: {
  55069. source: "./media/characters/theo-monkey/head.svg"
  55070. }
  55071. },
  55072. handPalm: {
  55073. height: math.unit(1.73, "feet"),
  55074. name: "Hand (Palm)",
  55075. image: {
  55076. source: "./media/characters/theo-monkey/hand-palm.svg"
  55077. }
  55078. },
  55079. handBack: {
  55080. height: math.unit(1.63, "feet"),
  55081. name: "Hand (Back)",
  55082. image: {
  55083. source: "./media/characters/theo-monkey/hand-back.svg"
  55084. }
  55085. },
  55086. footSole: {
  55087. height: math.unit(2.15, "feet"),
  55088. name: "Foot (Sole)",
  55089. image: {
  55090. source: "./media/characters/theo-monkey/foot-sole.svg"
  55091. }
  55092. },
  55093. footSide: {
  55094. height: math.unit(1.6, "feet"),
  55095. name: "Foot (Side)",
  55096. image: {
  55097. source: "./media/characters/theo-monkey/foot-side.svg"
  55098. }
  55099. },
  55100. },
  55101. [
  55102. {
  55103. name: "Normal",
  55104. height: math.unit(10 + 3/12, "feet"),
  55105. default: true
  55106. },
  55107. ]
  55108. ))
  55109. characterMakers.push(() => makeCharacter(
  55110. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55111. {
  55112. front: {
  55113. height: math.unit(11, "feet"),
  55114. weight: math.unit(3000, "lb"),
  55115. preyCapacity: math.unit(10, "people"),
  55116. name: "Front",
  55117. image: {
  55118. source: "./media/characters/brook/front.svg",
  55119. extra: 909/835,
  55120. bottom: 108/1017
  55121. }
  55122. },
  55123. back: {
  55124. height: math.unit(11, "feet"),
  55125. weight: math.unit(3000, "lb"),
  55126. preyCapacity: math.unit(10, "people"),
  55127. name: "Back",
  55128. image: {
  55129. source: "./media/characters/brook/back.svg",
  55130. extra: 976/916,
  55131. bottom: 34/1010
  55132. }
  55133. },
  55134. backAlt: {
  55135. height: math.unit(11, "feet"),
  55136. weight: math.unit(3000, "lb"),
  55137. preyCapacity: math.unit(10, "people"),
  55138. name: "Back (Alt)",
  55139. image: {
  55140. source: "./media/characters/brook/back-alt.svg",
  55141. extra: 1283/1213,
  55142. bottom: 35/1318
  55143. }
  55144. },
  55145. bust: {
  55146. height: math.unit(9.0859030837, "feet"),
  55147. weight: math.unit(3000, "lb"),
  55148. preyCapacity: math.unit(10, "people"),
  55149. name: "Bust",
  55150. image: {
  55151. source: "./media/characters/brook/bust.svg",
  55152. extra: 2043/1923,
  55153. bottom: 0/2043
  55154. }
  55155. },
  55156. },
  55157. [
  55158. {
  55159. name: "Small",
  55160. height: math.unit(11, "feet"),
  55161. default: true
  55162. },
  55163. {
  55164. name: "Towering",
  55165. height: math.unit(5, "km")
  55166. },
  55167. {
  55168. name: "Enormous",
  55169. height: math.unit(25, "earths")
  55170. },
  55171. ]
  55172. ))
  55173. characterMakers.push(() => makeCharacter(
  55174. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55175. {
  55176. front: {
  55177. height: math.unit(4, "feet"),
  55178. weight: math.unit(150, "lb"),
  55179. name: "Front",
  55180. image: {
  55181. source: "./media/characters/squishi/front.svg",
  55182. extra: 1428/1271,
  55183. bottom: 30/1458
  55184. },
  55185. extraAttributes: {
  55186. "pawSize": {
  55187. name: "Paw Size",
  55188. power: 1,
  55189. type: "length",
  55190. base: math.unit(14, "ShoeSizeMensUS"),
  55191. defaultUnit: "ShoeSizeMensUS"
  55192. },
  55193. }
  55194. },
  55195. side: {
  55196. height: math.unit(4, "feet"),
  55197. weight: math.unit(150, "lb"),
  55198. name: "Side",
  55199. image: {
  55200. source: "./media/characters/squishi/side.svg",
  55201. extra: 1428/1271,
  55202. bottom: 30/1458
  55203. },
  55204. extraAttributes: {
  55205. "pawSize": {
  55206. name: "Paw Size",
  55207. power: 1,
  55208. type: "length",
  55209. base: math.unit(14, "ShoeSizeMensUS"),
  55210. defaultUnit: "ShoeSizeMensUS"
  55211. },
  55212. }
  55213. },
  55214. back: {
  55215. height: math.unit(4, "feet"),
  55216. weight: math.unit(150, "lb"),
  55217. name: "Back",
  55218. image: {
  55219. source: "./media/characters/squishi/back.svg",
  55220. extra: 1428/1271,
  55221. bottom: 30/1458
  55222. },
  55223. extraAttributes: {
  55224. "pawSize": {
  55225. name: "Paw Size",
  55226. power: 1,
  55227. type: "length",
  55228. base: math.unit(14, "ShoeSizeMensUS"),
  55229. defaultUnit: "ShoeSizeMensUS"
  55230. },
  55231. }
  55232. },
  55233. },
  55234. [
  55235. {
  55236. name: "Normal",
  55237. height: math.unit(4, "feet"),
  55238. default: true
  55239. },
  55240. ]
  55241. ))
  55242. characterMakers.push(() => makeCharacter(
  55243. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55244. {
  55245. front: {
  55246. height: math.unit(7 + 8/12, "feet"),
  55247. weight: math.unit(333, "lb"),
  55248. name: "Front",
  55249. image: {
  55250. source: "./media/characters/vincent-vasroc/front.svg",
  55251. extra: 1962/1860,
  55252. bottom: 41/2003
  55253. }
  55254. },
  55255. back: {
  55256. height: math.unit(7 + 8/12, "feet"),
  55257. weight: math.unit(333, "lb"),
  55258. name: "Back",
  55259. image: {
  55260. source: "./media/characters/vincent-vasroc/back.svg",
  55261. extra: 1952/1815,
  55262. bottom: 33/1985
  55263. }
  55264. },
  55265. paw: {
  55266. height: math.unit(1.24, "feet"),
  55267. name: "Paw",
  55268. image: {
  55269. source: "./media/characters/vincent-vasroc/paw.svg"
  55270. }
  55271. },
  55272. ear: {
  55273. height: math.unit(0.75, "feet"),
  55274. name: "Ear",
  55275. image: {
  55276. source: "./media/characters/vincent-vasroc/ear.svg"
  55277. }
  55278. },
  55279. },
  55280. [
  55281. {
  55282. name: "Nano",
  55283. height: math.unit(92, "micrometers")
  55284. },
  55285. {
  55286. name: "Normal",
  55287. height: math.unit(7 + 8/12, "feet"),
  55288. default: true
  55289. },
  55290. ]
  55291. ))
  55292. characterMakers.push(() => makeCharacter(
  55293. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55294. {
  55295. frontNsfw: {
  55296. height: math.unit(40, "feet"),
  55297. weight: math.unit(58, "tons"),
  55298. name: "Front (NSFW)",
  55299. image: {
  55300. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55301. extra: 1265/965,
  55302. bottom: 155/1420
  55303. }
  55304. },
  55305. frontSfw: {
  55306. height: math.unit(40, "feet"),
  55307. weight: math.unit(58, "tons"),
  55308. name: "Front (SFW)",
  55309. image: {
  55310. source: "./media/characters/ru-kahn/front-sfw.svg",
  55311. extra: 1265/965,
  55312. bottom: 80/1345
  55313. }
  55314. },
  55315. },
  55316. [
  55317. {
  55318. name: "Small",
  55319. height: math.unit(4, "feet")
  55320. },
  55321. {
  55322. name: "Normal",
  55323. height: math.unit(40, "feet"),
  55324. default: true
  55325. },
  55326. {
  55327. name: "Macro",
  55328. height: math.unit(400, "feet")
  55329. },
  55330. ]
  55331. ))
  55332. characterMakers.push(() => makeCharacter(
  55333. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55334. {
  55335. frontNude: {
  55336. height: math.unit(6 + 5/12, "feet"),
  55337. name: "Front (Nude)",
  55338. image: {
  55339. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55340. extra: 1369/1366,
  55341. bottom: 68/1437
  55342. }
  55343. },
  55344. frontDressed: {
  55345. height: math.unit(6 + 5/12, "feet"),
  55346. name: "Front (Dressed)",
  55347. image: {
  55348. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55349. extra: 1369/1366,
  55350. bottom: 68/1437
  55351. }
  55352. },
  55353. },
  55354. [
  55355. {
  55356. name: "Normal",
  55357. height: math.unit(6 + 5/12, "feet"),
  55358. default: true
  55359. },
  55360. {
  55361. name: "Maximum",
  55362. height: math.unit(1930, "feet")
  55363. },
  55364. ]
  55365. ))
  55366. characterMakers.push(() => makeCharacter(
  55367. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55368. {
  55369. front: {
  55370. height: math.unit(5 + 6/12, "feet"),
  55371. name: "Front",
  55372. image: {
  55373. source: "./media/characters/kaja/front.svg",
  55374. extra: 1874/1514,
  55375. bottom: 117/1991
  55376. }
  55377. },
  55378. },
  55379. [
  55380. {
  55381. name: "Normal",
  55382. height: math.unit(5 + 6/12, "feet"),
  55383. default: true
  55384. },
  55385. ]
  55386. ))
  55387. characterMakers.push(() => makeCharacter(
  55388. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55389. {
  55390. front: {
  55391. height: math.unit(5 + 9/12, "feet"),
  55392. weight: math.unit(200, "lb"),
  55393. name: "Front",
  55394. image: {
  55395. source: "./media/characters/mark-smith/front.svg",
  55396. extra: 1004/943,
  55397. bottom: 58/1062
  55398. }
  55399. },
  55400. back: {
  55401. height: math.unit(5 + 9/12, "feet"),
  55402. weight: math.unit(200, "lb"),
  55403. name: "Back",
  55404. image: {
  55405. source: "./media/characters/mark-smith/back.svg",
  55406. extra: 1023/953,
  55407. bottom: 24/1047
  55408. }
  55409. },
  55410. head: {
  55411. height: math.unit(1.82, "feet"),
  55412. name: "Head",
  55413. image: {
  55414. source: "./media/characters/mark-smith/head.svg"
  55415. }
  55416. },
  55417. hand: {
  55418. height: math.unit(1.4, "feet"),
  55419. name: "Hand",
  55420. image: {
  55421. source: "./media/characters/mark-smith/hand.svg"
  55422. }
  55423. },
  55424. paw: {
  55425. height: math.unit(1.69, "feet"),
  55426. name: "Paw",
  55427. image: {
  55428. source: "./media/characters/mark-smith/paw.svg"
  55429. }
  55430. },
  55431. },
  55432. [
  55433. {
  55434. name: "Micro",
  55435. height: math.unit(0.25, "inches")
  55436. },
  55437. {
  55438. name: "Normal",
  55439. height: math.unit(5 + 9/12, "feet"),
  55440. default: true
  55441. },
  55442. {
  55443. name: "Macro",
  55444. height: math.unit(500, "feet")
  55445. },
  55446. ]
  55447. ))
  55448. characterMakers.push(() => makeCharacter(
  55449. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55450. {
  55451. frontNude: {
  55452. height: math.unit(6, "feet"),
  55453. name: "Front (Nude)",
  55454. image: {
  55455. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55456. extra: 1384/1321,
  55457. bottom: 57/1441
  55458. }
  55459. },
  55460. frontDressed: {
  55461. height: math.unit(6, "feet"),
  55462. name: "Front (Dressed)",
  55463. image: {
  55464. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55465. extra: 1384/1321,
  55466. bottom: 57/1441
  55467. }
  55468. },
  55469. },
  55470. [
  55471. {
  55472. name: "Normal",
  55473. height: math.unit(6, "feet"),
  55474. default: true
  55475. },
  55476. {
  55477. name: "Maximum",
  55478. height: math.unit(1776, "feet")
  55479. },
  55480. ]
  55481. ))
  55482. characterMakers.push(() => makeCharacter(
  55483. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55484. {
  55485. front: {
  55486. height: math.unit(2 + 4/12, "feet"),
  55487. weight: math.unit(350, "lb"),
  55488. name: "Front",
  55489. image: {
  55490. source: "./media/characters/devos/front.svg",
  55491. extra: 958/852,
  55492. bottom: 143/1101
  55493. }
  55494. },
  55495. },
  55496. [
  55497. {
  55498. name: "Base",
  55499. height: math.unit(2 + 4/12, "feet"),
  55500. default: true
  55501. },
  55502. ]
  55503. ))
  55504. characterMakers.push(() => makeCharacter(
  55505. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55506. {
  55507. front: {
  55508. height: math.unit(9 + 2/12, "feet"),
  55509. name: "Front",
  55510. image: {
  55511. source: "./media/characters/hiveheart/front.svg",
  55512. extra: 394/364,
  55513. bottom: 65/459
  55514. }
  55515. },
  55516. back: {
  55517. height: math.unit(9 + 2/12, "feet"),
  55518. name: "Back",
  55519. image: {
  55520. source: "./media/characters/hiveheart/back.svg",
  55521. extra: 374/357,
  55522. bottom: 63/437
  55523. }
  55524. },
  55525. },
  55526. [
  55527. {
  55528. name: "Base",
  55529. height: math.unit(9 + 2/12, "feet"),
  55530. default: true
  55531. },
  55532. ]
  55533. ))
  55534. characterMakers.push(() => makeCharacter(
  55535. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55536. {
  55537. front: {
  55538. height: math.unit(2.5, "inches"),
  55539. weight: math.unit(0.6, "oz"),
  55540. name: "Front",
  55541. image: {
  55542. source: "./media/characters/bryn/front.svg",
  55543. extra: 1480/1205,
  55544. bottom: 27/1507
  55545. }
  55546. },
  55547. back: {
  55548. height: math.unit(2.5, "inches"),
  55549. weight: math.unit(0.6, "oz"),
  55550. name: "Back",
  55551. image: {
  55552. source: "./media/characters/bryn/back.svg",
  55553. extra: 1475/1201,
  55554. bottom: 39/1514
  55555. }
  55556. },
  55557. foot: {
  55558. height: math.unit(0.4, "inches"),
  55559. name: "Foot",
  55560. image: {
  55561. source: "./media/characters/bryn/foot.svg"
  55562. }
  55563. },
  55564. },
  55565. [
  55566. {
  55567. name: "Normal",
  55568. height: math.unit(2.5, "inches"),
  55569. default: true
  55570. },
  55571. ]
  55572. ))
  55573. characterMakers.push(() => makeCharacter(
  55574. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55575. {
  55576. side: {
  55577. height: math.unit(7, "feet"),
  55578. weight: math.unit(657, "kg"),
  55579. name: "Side",
  55580. image: {
  55581. source: "./media/characters/delta/side.svg",
  55582. extra: 781/212,
  55583. bottom: 7/788
  55584. },
  55585. extraAttributes: {
  55586. "wingspan": {
  55587. name: "Wingspan",
  55588. power: 1,
  55589. type: "length",
  55590. base: math.unit(48, "feet")
  55591. },
  55592. "length": {
  55593. name: "Length",
  55594. power: 1,
  55595. type: "length",
  55596. base: math.unit(21, "feet")
  55597. },
  55598. "pawSize": {
  55599. name: "Paw Size",
  55600. power: 2,
  55601. type: "area",
  55602. base: math.unit(1.5*1.4, "feet^2")
  55603. },
  55604. }
  55605. },
  55606. },
  55607. [
  55608. {
  55609. name: "Normal",
  55610. height: math.unit(6, "feet"),
  55611. default: true
  55612. },
  55613. ]
  55614. ))
  55615. characterMakers.push(() => makeCharacter(
  55616. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  55617. {
  55618. front: {
  55619. height: math.unit(6, "feet"),
  55620. name: "Front",
  55621. image: {
  55622. source: "./media/characters/pyrow/front.svg",
  55623. extra: 513/486,
  55624. bottom: 14/527
  55625. }
  55626. },
  55627. frontWing: {
  55628. height: math.unit(6, "feet"),
  55629. name: "Front (Wing)",
  55630. image: {
  55631. source: "./media/characters/pyrow/front-wing.svg",
  55632. extra: 539/383,
  55633. bottom: 20/559
  55634. }
  55635. },
  55636. back: {
  55637. height: math.unit(6, "feet"),
  55638. name: "Back",
  55639. image: {
  55640. source: "./media/characters/pyrow/back.svg",
  55641. extra: 500/473,
  55642. bottom: 9/509
  55643. }
  55644. },
  55645. },
  55646. [
  55647. {
  55648. name: "Normal",
  55649. height: math.unit(6, "feet"),
  55650. default: true
  55651. },
  55652. ]
  55653. ))
  55654. //characters
  55655. function makeCharacters() {
  55656. const results = [];
  55657. characterMakers.forEach(character => {
  55658. results.push(character());
  55659. });
  55660. return results;
  55661. }