less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

55928 lines
1.4 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3 * 3 / 4,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "corvid"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "passerine"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["bird-of-prey"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["nargacuga"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["bird-of-prey"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. "mink": {
  2047. name: "Mink",
  2048. parents: ["mustelid"]
  2049. },
  2050. "sandcat": {
  2051. name: "Sandcat",
  2052. parents: ["cat"]
  2053. },
  2054. "hrothgar": {
  2055. name: "Hrothgar",
  2056. parents: ["cat"]
  2057. },
  2058. "garchomp": {
  2059. name: "Garchomp",
  2060. parents: ["dragon", "pokemon"]
  2061. },
  2062. "nargacuga": {
  2063. name: "Nargacuga",
  2064. parents: ["monster-hunter"]
  2065. },
  2066. "sable": {
  2067. name: "Sable",
  2068. parents: ["marten"]
  2069. },
  2070. "deino": {
  2071. name: "Deino",
  2072. parents: ["pokemon", "dinosaur"]
  2073. },
  2074. "housecat": {
  2075. name: "Housecat",
  2076. parents: ["cat"]
  2077. },
  2078. "bombay-cat": {
  2079. name: "Bombay Cat",
  2080. parents: ["housecat"]
  2081. },
  2082. "maine-coon": {
  2083. name: "Maine Coon",
  2084. parents: ["housecat"]
  2085. },
  2086. "coelacanth": {
  2087. name: "Coelacanth",
  2088. parents: ["fish"]
  2089. },
  2090. "silvally": {
  2091. name: "Silvally",
  2092. parents: ["legendary-pokemon"]
  2093. },
  2094. "legendary-pokemon": {
  2095. name: "Legendary Pokemon",
  2096. parents: ["pokemon"]
  2097. },
  2098. "great-maccao": {
  2099. name: "Great Maccao",
  2100. parents: ["monster-hunter", "raptor"]
  2101. },
  2102. "shapeshifter": {
  2103. name: "shapeshifter",
  2104. parents: []
  2105. },
  2106. }
  2107. //species
  2108. function getSpeciesInfo(speciesList) {
  2109. let result = new Set();
  2110. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2111. result.add(entry)
  2112. });
  2113. return Array.from(result);
  2114. };
  2115. function getSpeciesInfoHelper(species) {
  2116. if (!speciesData[species]) {
  2117. console.warn(species + " doesn't exist");
  2118. return [];
  2119. }
  2120. if (speciesData[species].parents) {
  2121. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2122. } else {
  2123. return [species];
  2124. }
  2125. }
  2126. characterMakers.push(() => makeCharacter(
  2127. {
  2128. name: "Fen",
  2129. species: ["crux"],
  2130. description: {
  2131. title: "Bio",
  2132. text: "Very furry. Sheds on everything."
  2133. },
  2134. tags: [
  2135. "anthro",
  2136. "goo"
  2137. ]
  2138. },
  2139. {
  2140. front: {
  2141. height: math.unit(12, "feet"),
  2142. weight: math.unit(2400, "lb"),
  2143. preyCapacity: math.unit(1, "people"),
  2144. name: "Front",
  2145. image: {
  2146. source: "./media/characters/fen/front.svg",
  2147. extra: 1804/1562,
  2148. bottom: 205/2009
  2149. },
  2150. extraAttributes: {
  2151. pawSize: {
  2152. name: "Paw Size",
  2153. power: 2,
  2154. type: "area",
  2155. base: math.unit(0.35, "m^2")
  2156. }
  2157. }
  2158. },
  2159. diving: {
  2160. height: math.unit(4.9, "meters"),
  2161. weight: math.unit(2400, "lb"),
  2162. name: "Diving",
  2163. image: {
  2164. source: "./media/characters/fen/diving.svg"
  2165. }
  2166. },
  2167. sleeby: {
  2168. height: math.unit(3.45, "meters"),
  2169. weight: math.unit(2400, "lb"),
  2170. name: "Sleeby",
  2171. image: {
  2172. source: "./media/characters/fen/sleeby.svg"
  2173. }
  2174. },
  2175. goo: {
  2176. height: math.unit(12, "feet"),
  2177. weight: math.unit(3600, "lb"),
  2178. volume: math.unit(1000, "liters"),
  2179. preyCapacity: math.unit(6, "people"),
  2180. name: "Goo",
  2181. image: {
  2182. source: "./media/characters/fen/goo.svg",
  2183. extra: 1307/1071,
  2184. bottom: 134/1441
  2185. }
  2186. },
  2187. gooNsfw: {
  2188. height: math.unit(12, "feet"),
  2189. weight: math.unit(3750, "lb"),
  2190. volume: math.unit(1000, "liters"),
  2191. preyCapacity: math.unit(6, "people"),
  2192. name: "Goo (NSFW)",
  2193. image: {
  2194. source: "./media/characters/fen/goo-nsfw.svg",
  2195. extra: 1875/1734,
  2196. bottom: 122/1997
  2197. }
  2198. },
  2199. maw: {
  2200. height: math.unit(5.03, "feet"),
  2201. name: "Maw",
  2202. image: {
  2203. source: "./media/characters/fen/maw.svg"
  2204. }
  2205. },
  2206. gooCeiling: {
  2207. height: math.unit(6.6, "feet"),
  2208. weight: math.unit(3000, "lb"),
  2209. volume: math.unit(1000, "liters"),
  2210. preyCapacity: math.unit(6, "people"),
  2211. name: "Goo (Ceiling)",
  2212. image: {
  2213. source: "./media/characters/fen/goo-ceiling.svg"
  2214. }
  2215. },
  2216. paw: {
  2217. height: math.unit(3.77, "feet"),
  2218. name: "Paw",
  2219. image: {
  2220. source: "./media/characters/fen/paw.svg"
  2221. },
  2222. extraAttributes: {
  2223. "toeSize": {
  2224. name: "Toe Size",
  2225. power: 2,
  2226. type: "area",
  2227. base: math.unit(0.02875, "m^2")
  2228. },
  2229. "pawSize": {
  2230. name: "Paw Size",
  2231. power: 2,
  2232. type: "area",
  2233. base: math.unit(0.378, "m^2")
  2234. },
  2235. }
  2236. },
  2237. tail: {
  2238. height: math.unit(12.1, "feet"),
  2239. name: "Tail",
  2240. image: {
  2241. source: "./media/characters/fen/tail.svg"
  2242. }
  2243. },
  2244. tailFull: {
  2245. height: math.unit(12.1, "feet"),
  2246. name: "Full Tail",
  2247. image: {
  2248. source: "./media/characters/fen/tail-full.svg"
  2249. }
  2250. },
  2251. back: {
  2252. height: math.unit(12, "feet"),
  2253. weight: math.unit(2400, "lb"),
  2254. name: "Back",
  2255. image: {
  2256. source: "./media/characters/fen/back.svg",
  2257. },
  2258. info: {
  2259. description: {
  2260. mode: "append",
  2261. text: "\n\nHe is not currently looking at you."
  2262. }
  2263. }
  2264. },
  2265. full: {
  2266. height: math.unit(1.85, "meter"),
  2267. weight: math.unit(3200, "lb"),
  2268. name: "Full",
  2269. image: {
  2270. source: "./media/characters/fen/full.svg",
  2271. extra: 1133/859,
  2272. bottom: 145/1278
  2273. },
  2274. info: {
  2275. description: {
  2276. mode: "append",
  2277. text: "\n\nMunch."
  2278. }
  2279. }
  2280. },
  2281. gooLounging: {
  2282. height: math.unit(4.53, "feet"),
  2283. weight: math.unit(3000, "lb"),
  2284. preyCapacity: math.unit(6, "people"),
  2285. name: "Goo (Lounging)",
  2286. image: {
  2287. source: "./media/characters/fen/goo-lounging.svg",
  2288. bottom: 116 / 613
  2289. }
  2290. },
  2291. lounging: {
  2292. height: math.unit(10.52, "feet"),
  2293. weight: math.unit(2400, "lb"),
  2294. name: "Lounging",
  2295. image: {
  2296. source: "./media/characters/fen/lounging.svg"
  2297. }
  2298. },
  2299. },
  2300. [
  2301. {
  2302. name: "Small",
  2303. height: math.unit(2.2428, "meter")
  2304. },
  2305. {
  2306. name: "Normal",
  2307. height: math.unit(12, "feet"),
  2308. default: true,
  2309. },
  2310. {
  2311. name: "Big",
  2312. height: math.unit(20, "feet")
  2313. },
  2314. {
  2315. name: "Minimacro",
  2316. height: math.unit(40, "feet"),
  2317. info: {
  2318. description: {
  2319. mode: "append",
  2320. text: "\n\nTOO DAMN BIG"
  2321. }
  2322. }
  2323. },
  2324. {
  2325. name: "Macro",
  2326. height: math.unit(100, "feet"),
  2327. info: {
  2328. description: {
  2329. mode: "append",
  2330. text: "\n\nTOO DAMN BIG"
  2331. }
  2332. }
  2333. },
  2334. {
  2335. name: "Megamacro",
  2336. height: math.unit(2, "miles")
  2337. },
  2338. {
  2339. name: "Gigamacro",
  2340. height: math.unit(10, "earths")
  2341. },
  2342. ]
  2343. ))
  2344. characterMakers.push(() => makeCharacter(
  2345. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2346. {
  2347. front: {
  2348. height: math.unit(183, "cm"),
  2349. weight: math.unit(80, "kg"),
  2350. name: "Front",
  2351. image: {
  2352. source: "./media/characters/sofia-fluttertail/front.svg",
  2353. bottom: 0.01,
  2354. extra: 2154 / 2081
  2355. }
  2356. },
  2357. frontAlt: {
  2358. height: math.unit(183, "cm"),
  2359. weight: math.unit(80, "kg"),
  2360. name: "Front (alt)",
  2361. image: {
  2362. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2363. }
  2364. },
  2365. back: {
  2366. height: math.unit(183, "cm"),
  2367. weight: math.unit(80, "kg"),
  2368. name: "Back",
  2369. image: {
  2370. source: "./media/characters/sofia-fluttertail/back.svg"
  2371. }
  2372. },
  2373. kneeling: {
  2374. height: math.unit(125, "cm"),
  2375. weight: math.unit(80, "kg"),
  2376. name: "Kneeling",
  2377. image: {
  2378. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2379. extra: 1033 / 977,
  2380. bottom: 23.7 / 1057
  2381. }
  2382. },
  2383. maw: {
  2384. height: math.unit(183 / 5, "cm"),
  2385. name: "Maw",
  2386. image: {
  2387. source: "./media/characters/sofia-fluttertail/maw.svg"
  2388. }
  2389. },
  2390. mawcloseup: {
  2391. height: math.unit(183 / 5 * 0.41, "cm"),
  2392. name: "Maw (Closeup)",
  2393. image: {
  2394. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2395. }
  2396. },
  2397. paws: {
  2398. height: math.unit(1.17, "feet"),
  2399. name: "Paws",
  2400. image: {
  2401. source: "./media/characters/sofia-fluttertail/paws.svg",
  2402. extra: 851 / 851,
  2403. bottom: 17 / 868
  2404. }
  2405. },
  2406. },
  2407. [
  2408. {
  2409. name: "Normal",
  2410. height: math.unit(1.83, "meter")
  2411. },
  2412. {
  2413. name: "Size Thief",
  2414. height: math.unit(18, "feet")
  2415. },
  2416. {
  2417. name: "50 Foot Collie",
  2418. height: math.unit(50, "feet")
  2419. },
  2420. {
  2421. name: "Macro",
  2422. height: math.unit(96, "feet"),
  2423. default: true
  2424. },
  2425. {
  2426. name: "Megamerger",
  2427. height: math.unit(650, "feet")
  2428. },
  2429. ]
  2430. ))
  2431. characterMakers.push(() => makeCharacter(
  2432. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2433. {
  2434. front: {
  2435. height: math.unit(7, "feet"),
  2436. weight: math.unit(100, "kg"),
  2437. name: "Front",
  2438. image: {
  2439. source: "./media/characters/march/front.svg",
  2440. extra: 1992/1851,
  2441. bottom: 39/2031
  2442. }
  2443. },
  2444. foot: {
  2445. height: math.unit(0.9, "feet"),
  2446. name: "Foot",
  2447. image: {
  2448. source: "./media/characters/march/foot.svg"
  2449. }
  2450. },
  2451. },
  2452. [
  2453. {
  2454. name: "Normal",
  2455. height: math.unit(7.9, "feet")
  2456. },
  2457. {
  2458. name: "Macro",
  2459. height: math.unit(220, "meters")
  2460. },
  2461. {
  2462. name: "Megamacro",
  2463. height: math.unit(2.98, "km"),
  2464. default: true
  2465. },
  2466. {
  2467. name: "Gigamacro",
  2468. height: math.unit(15963, "km")
  2469. },
  2470. {
  2471. name: "Teramacro",
  2472. height: math.unit(2980000000, "km")
  2473. },
  2474. {
  2475. name: "Examacro",
  2476. height: math.unit(250, "parsecs")
  2477. },
  2478. ]
  2479. ))
  2480. characterMakers.push(() => makeCharacter(
  2481. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2482. {
  2483. front: {
  2484. height: math.unit(6, "feet"),
  2485. weight: math.unit(60, "kg"),
  2486. name: "Front",
  2487. image: {
  2488. source: "./media/characters/noir/front.svg",
  2489. extra: 1,
  2490. bottom: 0.032
  2491. }
  2492. },
  2493. },
  2494. [
  2495. {
  2496. name: "Normal",
  2497. height: math.unit(6.6, "feet")
  2498. },
  2499. {
  2500. name: "Macro",
  2501. height: math.unit(500, "feet")
  2502. },
  2503. {
  2504. name: "Megamacro",
  2505. height: math.unit(2.5, "km"),
  2506. default: true
  2507. },
  2508. {
  2509. name: "Gigamacro",
  2510. height: math.unit(22500, "km")
  2511. },
  2512. {
  2513. name: "Teramacro",
  2514. height: math.unit(2500000000, "km")
  2515. },
  2516. {
  2517. name: "Examacro",
  2518. height: math.unit(200, "parsecs")
  2519. },
  2520. ]
  2521. ))
  2522. characterMakers.push(() => makeCharacter(
  2523. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2524. {
  2525. front: {
  2526. height: math.unit(7, "feet"),
  2527. weight: math.unit(100, "kg"),
  2528. name: "Front",
  2529. image: {
  2530. source: "./media/characters/okuri/front.svg",
  2531. extra: 739/665,
  2532. bottom: 39/778
  2533. }
  2534. },
  2535. back: {
  2536. height: math.unit(7, "feet"),
  2537. weight: math.unit(100, "kg"),
  2538. name: "Back",
  2539. image: {
  2540. source: "./media/characters/okuri/back.svg",
  2541. extra: 734/653,
  2542. bottom: 13/747
  2543. }
  2544. },
  2545. sitting: {
  2546. height: math.unit(2.95, "feet"),
  2547. weight: math.unit(100, "kg"),
  2548. name: "Sitting",
  2549. image: {
  2550. source: "./media/characters/okuri/sitting.svg",
  2551. extra: 370/318,
  2552. bottom: 99/469
  2553. }
  2554. },
  2555. },
  2556. [
  2557. {
  2558. name: "Smallest",
  2559. height: math.unit(5 + 2/12, "feet")
  2560. },
  2561. {
  2562. name: "Smaller",
  2563. height: math.unit(300, "feet")
  2564. },
  2565. {
  2566. name: "Small",
  2567. height: math.unit(1000, "feet")
  2568. },
  2569. {
  2570. name: "Macro",
  2571. height: math.unit(1, "mile")
  2572. },
  2573. {
  2574. name: "Mega Macro (Small)",
  2575. height: math.unit(20, "km")
  2576. },
  2577. {
  2578. name: "Mega Macro (Large)",
  2579. height: math.unit(600, "km")
  2580. },
  2581. {
  2582. name: "Giga Macro",
  2583. height: math.unit(10000, "km")
  2584. },
  2585. {
  2586. name: "Normal",
  2587. height: math.unit(577560, "km"),
  2588. default: true
  2589. },
  2590. {
  2591. name: "Large",
  2592. height: math.unit(4, "galaxies")
  2593. },
  2594. {
  2595. name: "Largest",
  2596. height: math.unit(15, "multiverses")
  2597. },
  2598. ]
  2599. ))
  2600. characterMakers.push(() => makeCharacter(
  2601. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2602. {
  2603. front: {
  2604. height: math.unit(7, "feet"),
  2605. weight: math.unit(100, "kg"),
  2606. name: "Front",
  2607. image: {
  2608. source: "./media/characters/manny/front.svg",
  2609. extra: 1,
  2610. bottom: 0.06
  2611. }
  2612. },
  2613. back: {
  2614. height: math.unit(7, "feet"),
  2615. weight: math.unit(100, "kg"),
  2616. name: "Back",
  2617. image: {
  2618. source: "./media/characters/manny/back.svg",
  2619. extra: 1,
  2620. bottom: 0.014
  2621. }
  2622. },
  2623. },
  2624. [
  2625. {
  2626. name: "Normal",
  2627. height: math.unit(7, "feet"),
  2628. },
  2629. {
  2630. name: "Macro",
  2631. height: math.unit(78, "feet"),
  2632. default: true
  2633. },
  2634. {
  2635. name: "Macro+",
  2636. height: math.unit(300, "meters")
  2637. },
  2638. {
  2639. name: "Macro++",
  2640. height: math.unit(2400, "meters")
  2641. },
  2642. {
  2643. name: "Megamacro",
  2644. height: math.unit(5167, "meters")
  2645. },
  2646. {
  2647. name: "Gigamacro",
  2648. height: math.unit(41769, "miles")
  2649. },
  2650. ]
  2651. ))
  2652. characterMakers.push(() => makeCharacter(
  2653. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2654. {
  2655. front: {
  2656. height: math.unit(7, "feet"),
  2657. weight: math.unit(100, "kg"),
  2658. name: "Front",
  2659. image: {
  2660. source: "./media/characters/adake/front-1.svg"
  2661. }
  2662. },
  2663. frontAlt: {
  2664. height: math.unit(7, "feet"),
  2665. weight: math.unit(100, "kg"),
  2666. name: "Front (Alt)",
  2667. image: {
  2668. source: "./media/characters/adake/front-2.svg",
  2669. extra: 1,
  2670. bottom: 0.01
  2671. }
  2672. },
  2673. back: {
  2674. height: math.unit(7, "feet"),
  2675. weight: math.unit(100, "kg"),
  2676. name: "Back",
  2677. image: {
  2678. source: "./media/characters/adake/back.svg",
  2679. }
  2680. },
  2681. kneel: {
  2682. height: math.unit(5.385, "feet"),
  2683. weight: math.unit(100, "kg"),
  2684. name: "Kneeling",
  2685. image: {
  2686. source: "./media/characters/adake/kneel.svg",
  2687. bottom: 0.052
  2688. }
  2689. },
  2690. },
  2691. [
  2692. {
  2693. name: "Normal",
  2694. height: math.unit(7, "feet"),
  2695. },
  2696. {
  2697. name: "Macro",
  2698. height: math.unit(78, "feet"),
  2699. default: true
  2700. },
  2701. {
  2702. name: "Macro+",
  2703. height: math.unit(300, "meters")
  2704. },
  2705. {
  2706. name: "Macro++",
  2707. height: math.unit(2400, "meters")
  2708. },
  2709. {
  2710. name: "Megamacro",
  2711. height: math.unit(5167, "meters")
  2712. },
  2713. {
  2714. name: "Gigamacro",
  2715. height: math.unit(41769, "miles")
  2716. },
  2717. ]
  2718. ))
  2719. characterMakers.push(() => makeCharacter(
  2720. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2721. {
  2722. front: {
  2723. height: math.unit(1.65, "meters"),
  2724. weight: math.unit(50, "kg"),
  2725. name: "Front",
  2726. image: {
  2727. source: "./media/characters/elijah/front.svg",
  2728. extra: 858 / 830,
  2729. bottom: 95.5 / 953.8559
  2730. }
  2731. },
  2732. back: {
  2733. height: math.unit(1.65, "meters"),
  2734. weight: math.unit(50, "kg"),
  2735. name: "Back",
  2736. image: {
  2737. source: "./media/characters/elijah/back.svg",
  2738. extra: 895 / 850,
  2739. bottom: 5.3 / 897.956
  2740. }
  2741. },
  2742. frontNsfw: {
  2743. height: math.unit(1.65, "meters"),
  2744. weight: math.unit(50, "kg"),
  2745. name: "Front (NSFW)",
  2746. image: {
  2747. source: "./media/characters/elijah/front-nsfw.svg",
  2748. extra: 858 / 830,
  2749. bottom: 95.5 / 953.8559
  2750. }
  2751. },
  2752. backNsfw: {
  2753. height: math.unit(1.65, "meters"),
  2754. weight: math.unit(50, "kg"),
  2755. name: "Back (NSFW)",
  2756. image: {
  2757. source: "./media/characters/elijah/back-nsfw.svg",
  2758. extra: 895 / 850,
  2759. bottom: 5.3 / 897.956
  2760. }
  2761. },
  2762. dick: {
  2763. height: math.unit(1, "feet"),
  2764. name: "Dick",
  2765. image: {
  2766. source: "./media/characters/elijah/dick.svg"
  2767. }
  2768. },
  2769. beakOpen: {
  2770. height: math.unit(1.25, "feet"),
  2771. name: "Beak (Open)",
  2772. image: {
  2773. source: "./media/characters/elijah/beak-open.svg"
  2774. }
  2775. },
  2776. beakShut: {
  2777. height: math.unit(1.25, "feet"),
  2778. name: "Beak (Shut)",
  2779. image: {
  2780. source: "./media/characters/elijah/beak-shut.svg"
  2781. }
  2782. },
  2783. footFlexing: {
  2784. height: math.unit(1.61, "feet"),
  2785. name: "Foot (Flexing)",
  2786. image: {
  2787. source: "./media/characters/elijah/foot-flexing.svg"
  2788. }
  2789. },
  2790. footStepping: {
  2791. height: math.unit(1.44, "feet"),
  2792. name: "Foot (Stepping)",
  2793. image: {
  2794. source: "./media/characters/elijah/foot-stepping.svg"
  2795. }
  2796. },
  2797. plantigradeLeg: {
  2798. height: math.unit(2.34, "feet"),
  2799. name: "Plantigrade Leg",
  2800. image: {
  2801. source: "./media/characters/elijah/plantigrade-leg.svg"
  2802. }
  2803. },
  2804. plantigradeFootLeft: {
  2805. height: math.unit(0.9, "feet"),
  2806. name: "Plantigrade Foot (Left)",
  2807. image: {
  2808. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2809. }
  2810. },
  2811. plantigradeFootRight: {
  2812. height: math.unit(0.9, "feet"),
  2813. name: "Plantigrade Foot (Right)",
  2814. image: {
  2815. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2816. }
  2817. },
  2818. },
  2819. [
  2820. {
  2821. name: "Normal",
  2822. height: math.unit(1.65, "meters")
  2823. },
  2824. {
  2825. name: "Macro",
  2826. height: math.unit(55, "meters"),
  2827. default: true
  2828. },
  2829. {
  2830. name: "Macro+",
  2831. height: math.unit(105, "meters")
  2832. },
  2833. ]
  2834. ))
  2835. characterMakers.push(() => makeCharacter(
  2836. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2837. {
  2838. front: {
  2839. height: math.unit(7 + 2/12, "feet"),
  2840. weight: math.unit(320, "kg"),
  2841. preyCapacity: math.unit(0.276549935, "people"),
  2842. name: "Front",
  2843. image: {
  2844. source: "./media/characters/rai/front.svg",
  2845. extra: 1802/1696,
  2846. bottom: 68/1870
  2847. },
  2848. form: "anthro",
  2849. default: true
  2850. },
  2851. frontDressed: {
  2852. height: math.unit(7 + 2/12, "feet"),
  2853. weight: math.unit(320, "kg"),
  2854. preyCapacity: math.unit(0.276549935, "people"),
  2855. name: "Front (Dressed)",
  2856. image: {
  2857. source: "./media/characters/rai/front-dressed.svg",
  2858. extra: 1802/1696,
  2859. bottom: 68/1870
  2860. },
  2861. form: "anthro"
  2862. },
  2863. side: {
  2864. height: math.unit(7 + 2/12, "feet"),
  2865. weight: math.unit(320, "kg"),
  2866. preyCapacity: math.unit(0.276549935, "people"),
  2867. name: "Side",
  2868. image: {
  2869. source: "./media/characters/rai/side.svg",
  2870. extra: 1789/1710,
  2871. bottom: 115/1904
  2872. },
  2873. form: "anthro"
  2874. },
  2875. back: {
  2876. height: math.unit(7 + 2/12, "feet"),
  2877. weight: math.unit(320, "kg"),
  2878. preyCapacity: math.unit(0.276549935, "people"),
  2879. name: "Back",
  2880. image: {
  2881. source: "./media/characters/rai/back.svg",
  2882. extra: 1770/1707,
  2883. bottom: 28/1798
  2884. },
  2885. form: "anthro"
  2886. },
  2887. feral: {
  2888. height: math.unit(9.5, "feet"),
  2889. weight: math.unit(640, "kg"),
  2890. preyCapacity: math.unit(4, "people"),
  2891. name: "Feral",
  2892. image: {
  2893. source: "./media/characters/rai/feral.svg",
  2894. extra: 945/553,
  2895. bottom: 176/1121
  2896. },
  2897. form: "feral",
  2898. default: true
  2899. },
  2900. dragon: {
  2901. height: math.unit(23, "feet"),
  2902. weight: math.unit(50000, "lb"),
  2903. name: "Dragon",
  2904. image: {
  2905. source: "./media/characters/rai/dragon.svg",
  2906. extra: 2498 / 2030,
  2907. bottom: 85.2 / 2584
  2908. },
  2909. form: "dragon",
  2910. default: true
  2911. },
  2912. maw: {
  2913. height: math.unit(1.69, "feet"),
  2914. name: "Maw",
  2915. image: {
  2916. source: "./media/characters/rai/maw.svg"
  2917. },
  2918. form: "anthro"
  2919. },
  2920. },
  2921. [
  2922. {
  2923. name: "Normal",
  2924. height: math.unit(7 + 2/12, "feet"),
  2925. form: "anthro"
  2926. },
  2927. {
  2928. name: "Big",
  2929. height: math.unit(11, "feet"),
  2930. form: "anthro"
  2931. },
  2932. {
  2933. name: "Minimacro",
  2934. height: math.unit(77, "feet"),
  2935. form: "anthro"
  2936. },
  2937. {
  2938. name: "Macro",
  2939. height: math.unit(302, "feet"),
  2940. default: true,
  2941. form: "anthro"
  2942. },
  2943. {
  2944. name: "Normal",
  2945. height: math.unit(9.5, "feet"),
  2946. form: "feral",
  2947. default: true
  2948. },
  2949. {
  2950. name: "Normal",
  2951. height: math.unit(23, "feet"),
  2952. form: "dragon",
  2953. default: true
  2954. }
  2955. ],
  2956. {
  2957. "anthro": {
  2958. name: "Anthro",
  2959. default: true
  2960. },
  2961. "feral": {
  2962. name: "Feral",
  2963. },
  2964. "dragon": {
  2965. name: "Dragon",
  2966. },
  2967. }
  2968. ))
  2969. characterMakers.push(() => makeCharacter(
  2970. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2971. {
  2972. frontDressed: {
  2973. height: math.unit(216, "feet"),
  2974. weight: math.unit(7000000, "lb"),
  2975. preyCapacity: math.unit(1321, "people"),
  2976. name: "Front (Dressed)",
  2977. image: {
  2978. source: "./media/characters/jazzy/front-dressed.svg",
  2979. extra: 2738 / 2651,
  2980. bottom: 41.8 / 2786
  2981. }
  2982. },
  2983. backDressed: {
  2984. height: math.unit(216, "feet"),
  2985. weight: math.unit(7000000, "lb"),
  2986. preyCapacity: math.unit(1321, "people"),
  2987. name: "Back (Dressed)",
  2988. image: {
  2989. source: "./media/characters/jazzy/back-dressed.svg",
  2990. extra: 2775 / 2673,
  2991. bottom: 36.8 / 2817
  2992. }
  2993. },
  2994. front: {
  2995. height: math.unit(216, "feet"),
  2996. weight: math.unit(7000000, "lb"),
  2997. preyCapacity: math.unit(1321, "people"),
  2998. name: "Front",
  2999. image: {
  3000. source: "./media/characters/jazzy/front.svg",
  3001. extra: 2738 / 2651,
  3002. bottom: 41.8 / 2786
  3003. }
  3004. },
  3005. back: {
  3006. height: math.unit(216, "feet"),
  3007. weight: math.unit(7000000, "lb"),
  3008. preyCapacity: math.unit(1321, "people"),
  3009. name: "Back",
  3010. image: {
  3011. source: "./media/characters/jazzy/back.svg",
  3012. extra: 2775 / 2673,
  3013. bottom: 36.8 / 2817
  3014. }
  3015. },
  3016. maw: {
  3017. height: math.unit(20, "feet"),
  3018. name: "Maw",
  3019. image: {
  3020. source: "./media/characters/jazzy/maw.svg"
  3021. }
  3022. },
  3023. paws: {
  3024. height: math.unit(27.5, "feet"),
  3025. name: "Paws",
  3026. image: {
  3027. source: "./media/characters/jazzy/paws.svg"
  3028. }
  3029. },
  3030. eye: {
  3031. height: math.unit(4.4, "feet"),
  3032. name: "Eye",
  3033. image: {
  3034. source: "./media/characters/jazzy/eye.svg"
  3035. }
  3036. },
  3037. droneOffense: {
  3038. height: math.unit(9.5, "inches"),
  3039. name: "Drone (Offense)",
  3040. image: {
  3041. source: "./media/characters/jazzy/drone-offense.svg"
  3042. }
  3043. },
  3044. droneRecon: {
  3045. height: math.unit(9.5, "inches"),
  3046. name: "Drone (Recon)",
  3047. image: {
  3048. source: "./media/characters/jazzy/drone-recon.svg"
  3049. }
  3050. },
  3051. droneDefense: {
  3052. height: math.unit(9.5, "inches"),
  3053. name: "Drone (Defense)",
  3054. image: {
  3055. source: "./media/characters/jazzy/drone-defense.svg"
  3056. }
  3057. },
  3058. },
  3059. [
  3060. {
  3061. name: "Macro",
  3062. height: math.unit(216, "feet"),
  3063. default: true
  3064. },
  3065. ]
  3066. ))
  3067. characterMakers.push(() => makeCharacter(
  3068. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3069. {
  3070. front: {
  3071. height: math.unit(9 + 6/12, "feet"),
  3072. weight: math.unit(700, "lb"),
  3073. name: "Front",
  3074. image: {
  3075. source: "./media/characters/flamm/front.svg",
  3076. extra: 1751/1632,
  3077. bottom: 46/1797
  3078. }
  3079. },
  3080. buff: {
  3081. height: math.unit(9 + 6/12, "feet"),
  3082. weight: math.unit(950, "lb"),
  3083. name: "Buff",
  3084. image: {
  3085. source: "./media/characters/flamm/buff.svg",
  3086. extra: 3018/2874,
  3087. bottom: 221/3239
  3088. }
  3089. },
  3090. },
  3091. [
  3092. {
  3093. name: "Normal",
  3094. height: math.unit(9.5, "feet")
  3095. },
  3096. {
  3097. name: "Macro",
  3098. height: math.unit(200, "feet"),
  3099. default: true
  3100. },
  3101. ]
  3102. ))
  3103. characterMakers.push(() => makeCharacter(
  3104. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3105. {
  3106. front: {
  3107. height: math.unit(5 + 3/12, "feet"),
  3108. weight: math.unit(60, "kg"),
  3109. name: "Front",
  3110. image: {
  3111. source: "./media/characters/zephiro/front.svg",
  3112. extra: 1873/1761,
  3113. bottom: 147/2020
  3114. }
  3115. },
  3116. side: {
  3117. height: math.unit(5 + 3/12, "feet"),
  3118. weight: math.unit(60, "kg"),
  3119. name: "Side",
  3120. image: {
  3121. source: "./media/characters/zephiro/side.svg",
  3122. extra: 1929/1827,
  3123. bottom: 65/1994
  3124. }
  3125. },
  3126. back: {
  3127. height: math.unit(5 + 3/12, "feet"),
  3128. weight: math.unit(60, "kg"),
  3129. name: "Back",
  3130. image: {
  3131. source: "./media/characters/zephiro/back.svg",
  3132. extra: 1926/1816,
  3133. bottom: 41/1967
  3134. }
  3135. },
  3136. hand: {
  3137. height: math.unit(0.68, "feet"),
  3138. name: "Hand",
  3139. image: {
  3140. source: "./media/characters/zephiro/hand.svg"
  3141. }
  3142. },
  3143. paw: {
  3144. height: math.unit(1, "feet"),
  3145. name: "Paw",
  3146. image: {
  3147. source: "./media/characters/zephiro/paw.svg"
  3148. }
  3149. },
  3150. beans: {
  3151. height: math.unit(0.93, "feet"),
  3152. name: "Beans",
  3153. image: {
  3154. source: "./media/characters/zephiro/beans.svg"
  3155. }
  3156. },
  3157. },
  3158. [
  3159. {
  3160. name: "Micro",
  3161. height: math.unit(3, "inches")
  3162. },
  3163. {
  3164. name: "Normal",
  3165. height: math.unit(5 + 3 / 12, "feet"),
  3166. default: true
  3167. },
  3168. {
  3169. name: "Macro",
  3170. height: math.unit(118, "feet")
  3171. },
  3172. ]
  3173. ))
  3174. characterMakers.push(() => makeCharacter(
  3175. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3176. {
  3177. front: {
  3178. height: math.unit(5, "feet"),
  3179. weight: math.unit(90, "kg"),
  3180. preyCapacity: math.unit(14, "people"),
  3181. name: "Front",
  3182. image: {
  3183. source: "./media/characters/fory/front.svg",
  3184. extra: 2862 / 2674,
  3185. bottom: 180 / 3043.8
  3186. },
  3187. form: "weaselbun",
  3188. default: true,
  3189. extraAttributes: {
  3190. "pawSize": {
  3191. name: "Paw Size",
  3192. power: 2,
  3193. type: "area",
  3194. base: math.unit(0.1596, "m^2")
  3195. },
  3196. "pawLength": {
  3197. name: "Paw Length",
  3198. power: 1,
  3199. type: "length",
  3200. base: math.unit(0.7, "m")
  3201. }
  3202. }
  3203. },
  3204. back: {
  3205. height: math.unit(5, "feet"),
  3206. weight: math.unit(90, "kg"),
  3207. preyCapacity: math.unit(14, "people"),
  3208. name: "Back",
  3209. image: {
  3210. source: "./media/characters/fory/back.svg",
  3211. extra: 1790/1672,
  3212. bottom: 84/1874
  3213. },
  3214. form: "weaselbun",
  3215. extraAttributes: {
  3216. "pawSize": {
  3217. name: "Paw Size",
  3218. power: 2,
  3219. type: "area",
  3220. base: math.unit(0.1596, "m^2")
  3221. },
  3222. "pawLength": {
  3223. name: "Paw Length",
  3224. power: 1,
  3225. type: "length",
  3226. base: math.unit(0.7, "m")
  3227. }
  3228. }
  3229. },
  3230. paw: {
  3231. height: math.unit(2.14, "feet"),
  3232. name: "Paw",
  3233. image: {
  3234. source: "./media/characters/fory/paw.svg"
  3235. },
  3236. form: "weaselbun",
  3237. extraAttributes: {
  3238. "pawSize": {
  3239. name: "Paw Size",
  3240. power: 2,
  3241. type: "area",
  3242. base: math.unit(0.1596, "m^2")
  3243. },
  3244. "pawLength": {
  3245. name: "Paw Length",
  3246. power: 1,
  3247. type: "length",
  3248. base: math.unit(0.48, "m")
  3249. }
  3250. }
  3251. },
  3252. bunBack: {
  3253. height: math.unit(3, "feet"),
  3254. weight: math.unit(20, "kg"),
  3255. preyCapacity: math.unit(3, "people"),
  3256. name: "Back",
  3257. image: {
  3258. source: "./media/characters/fory/bun-back.svg",
  3259. extra: 1749/1564,
  3260. bottom: 246/1995
  3261. },
  3262. form: "bun",
  3263. default: true,
  3264. extraAttributes: {
  3265. "pawSize": {
  3266. name: "Paw Size",
  3267. power: 2,
  3268. type: "area",
  3269. base: math.unit(0.072, "m^2")
  3270. },
  3271. "pawLength": {
  3272. name: "Paw Length",
  3273. power: 1,
  3274. type: "length",
  3275. base: math.unit(0.45, "m")
  3276. }
  3277. }
  3278. },
  3279. },
  3280. [
  3281. {
  3282. name: "Normal",
  3283. height: math.unit(5, "feet"),
  3284. form: "weaselbun"
  3285. },
  3286. {
  3287. name: "Macro",
  3288. height: math.unit(50, "feet"),
  3289. default: true,
  3290. form: "weaselbun"
  3291. },
  3292. {
  3293. name: "Megamacro",
  3294. height: math.unit(10, "miles"),
  3295. form: "weaselbun"
  3296. },
  3297. {
  3298. name: "Gigamacro",
  3299. height: math.unit(5, "earths"),
  3300. form: "weaselbun"
  3301. },
  3302. {
  3303. name: "Normal",
  3304. height: math.unit(3, "feet"),
  3305. default: true,
  3306. form: "bun"
  3307. },
  3308. {
  3309. name: "Fun-Size",
  3310. height: math.unit(12, "feet"),
  3311. form: "bun"
  3312. },
  3313. {
  3314. name: "Macro",
  3315. height: math.unit(100, "feet"),
  3316. form: "bun"
  3317. },
  3318. {
  3319. name: "Planetary",
  3320. height: math.unit(3, "earths"),
  3321. form: "bun"
  3322. },
  3323. ],
  3324. {
  3325. "weaselbun": {
  3326. name: "Weaselbun",
  3327. default: true
  3328. },
  3329. "bun": {
  3330. name: "Bun",
  3331. },
  3332. }
  3333. ))
  3334. characterMakers.push(() => makeCharacter(
  3335. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3336. {
  3337. front: {
  3338. height: math.unit(7, "feet"),
  3339. weight: math.unit(90, "kg"),
  3340. name: "Front",
  3341. image: {
  3342. source: "./media/characters/kurrikage/front.svg",
  3343. extra: 1845/1733,
  3344. bottom: 119/1964
  3345. }
  3346. },
  3347. back: {
  3348. height: math.unit(7, "feet"),
  3349. weight: math.unit(90, "kg"),
  3350. name: "Back",
  3351. image: {
  3352. source: "./media/characters/kurrikage/back.svg",
  3353. extra: 1790/1677,
  3354. bottom: 61/1851
  3355. }
  3356. },
  3357. dressed: {
  3358. height: math.unit(7, "feet"),
  3359. weight: math.unit(90, "kg"),
  3360. name: "Dressed",
  3361. image: {
  3362. source: "./media/characters/kurrikage/dressed.svg",
  3363. extra: 1845/1733,
  3364. bottom: 119/1964
  3365. }
  3366. },
  3367. foot: {
  3368. height: math.unit(1.5, "feet"),
  3369. name: "Foot",
  3370. image: {
  3371. source: "./media/characters/kurrikage/foot.svg"
  3372. }
  3373. },
  3374. staff: {
  3375. height: math.unit(6.7, "feet"),
  3376. name: "Staff",
  3377. image: {
  3378. source: "./media/characters/kurrikage/staff.svg"
  3379. }
  3380. },
  3381. peek: {
  3382. height: math.unit(1.05, "feet"),
  3383. name: "Peeking",
  3384. image: {
  3385. source: "./media/characters/kurrikage/peek.svg",
  3386. bottom: 0.08
  3387. }
  3388. },
  3389. },
  3390. [
  3391. {
  3392. name: "Normal",
  3393. height: math.unit(12, "feet"),
  3394. default: true
  3395. },
  3396. {
  3397. name: "Big",
  3398. height: math.unit(20, "feet")
  3399. },
  3400. {
  3401. name: "Macro",
  3402. height: math.unit(500, "feet")
  3403. },
  3404. {
  3405. name: "Megamacro",
  3406. height: math.unit(20, "miles")
  3407. },
  3408. ]
  3409. ))
  3410. characterMakers.push(() => makeCharacter(
  3411. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3412. {
  3413. front: {
  3414. height: math.unit(6, "feet"),
  3415. weight: math.unit(75, "kg"),
  3416. name: "Front",
  3417. image: {
  3418. source: "./media/characters/shingo/front.svg",
  3419. extra: 1900/1825,
  3420. bottom: 82/1982
  3421. }
  3422. },
  3423. side: {
  3424. height: math.unit(6, "feet"),
  3425. weight: math.unit(75, "kg"),
  3426. name: "Side",
  3427. image: {
  3428. source: "./media/characters/shingo/side.svg",
  3429. extra: 1930/1865,
  3430. bottom: 16/1946
  3431. }
  3432. },
  3433. back: {
  3434. height: math.unit(6, "feet"),
  3435. weight: math.unit(75, "kg"),
  3436. name: "Back",
  3437. image: {
  3438. source: "./media/characters/shingo/back.svg",
  3439. extra: 1922/1852,
  3440. bottom: 16/1938
  3441. }
  3442. },
  3443. frontDressed: {
  3444. height: math.unit(6, "feet"),
  3445. weight: math.unit(150, "lb"),
  3446. name: "Front-dressed",
  3447. image: {
  3448. source: "./media/characters/shingo/front-dressed.svg",
  3449. extra: 1900/1825,
  3450. bottom: 82/1982
  3451. }
  3452. },
  3453. paw: {
  3454. height: math.unit(1.29, "feet"),
  3455. name: "Paw",
  3456. image: {
  3457. source: "./media/characters/shingo/paw.svg"
  3458. }
  3459. },
  3460. hand: {
  3461. height: math.unit(1.07, "feet"),
  3462. name: "Hand",
  3463. image: {
  3464. source: "./media/characters/shingo/hand.svg"
  3465. }
  3466. },
  3467. frontAlt: {
  3468. height: math.unit(6, "feet"),
  3469. weight: math.unit(75, "kg"),
  3470. name: "Front (Alt)",
  3471. image: {
  3472. source: "./media/characters/shingo/front-alt.svg",
  3473. extra: 3511 / 3338,
  3474. bottom: 0.005
  3475. }
  3476. },
  3477. frontAlt2: {
  3478. height: math.unit(6, "feet"),
  3479. weight: math.unit(75, "kg"),
  3480. name: "Front (Alt 2)",
  3481. image: {
  3482. source: "./media/characters/shingo/front-alt-2.svg",
  3483. extra: 706/681,
  3484. bottom: 11/717
  3485. }
  3486. },
  3487. pawAlt: {
  3488. height: math.unit(1, "feet"),
  3489. name: "Paw (Alt)",
  3490. image: {
  3491. source: "./media/characters/shingo/paw-alt.svg"
  3492. }
  3493. },
  3494. },
  3495. [
  3496. {
  3497. name: "Micro",
  3498. height: math.unit(4, "inches")
  3499. },
  3500. {
  3501. name: "Normal",
  3502. height: math.unit(6, "feet"),
  3503. default: true
  3504. },
  3505. {
  3506. name: "Macro",
  3507. height: math.unit(108, "feet")
  3508. },
  3509. {
  3510. name: "Macro+",
  3511. height: math.unit(1500, "feet")
  3512. },
  3513. ]
  3514. ))
  3515. characterMakers.push(() => makeCharacter(
  3516. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3517. {
  3518. side: {
  3519. height: math.unit(6, "feet"),
  3520. weight: math.unit(75, "kg"),
  3521. name: "Side",
  3522. image: {
  3523. source: "./media/characters/aigey/side.svg"
  3524. }
  3525. },
  3526. },
  3527. [
  3528. {
  3529. name: "Macro",
  3530. height: math.unit(200, "feet"),
  3531. default: true
  3532. },
  3533. {
  3534. name: "Megamacro",
  3535. height: math.unit(100, "miles")
  3536. },
  3537. ]
  3538. )
  3539. )
  3540. characterMakers.push(() => makeCharacter(
  3541. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3542. {
  3543. front: {
  3544. height: math.unit(5 + 5 / 12, "feet"),
  3545. weight: math.unit(75, "kg"),
  3546. name: "Front",
  3547. image: {
  3548. source: "./media/characters/natasha/front.svg",
  3549. extra: 859 / 824,
  3550. bottom: 23 / 879.6
  3551. }
  3552. },
  3553. frontNsfw: {
  3554. height: math.unit(5 + 5 / 12, "feet"),
  3555. weight: math.unit(75, "kg"),
  3556. name: "Front (NSFW)",
  3557. image: {
  3558. source: "./media/characters/natasha/front-nsfw.svg",
  3559. extra: 859 / 824,
  3560. bottom: 23 / 879.6
  3561. }
  3562. },
  3563. frontErect: {
  3564. height: math.unit(5 + 5 / 12, "feet"),
  3565. weight: math.unit(75, "kg"),
  3566. name: "Front (Erect)",
  3567. image: {
  3568. source: "./media/characters/natasha/front-erect.svg",
  3569. extra: 859 / 824,
  3570. bottom: 23 / 879.6
  3571. }
  3572. },
  3573. back: {
  3574. height: math.unit(5 + 5 / 12, "feet"),
  3575. weight: math.unit(75, "kg"),
  3576. name: "Back",
  3577. image: {
  3578. source: "./media/characters/natasha/back.svg",
  3579. extra: 887.9 / 852.6,
  3580. bottom: 9.7 / 896.4
  3581. }
  3582. },
  3583. backAlt: {
  3584. height: math.unit(5 + 5 / 12, "feet"),
  3585. weight: math.unit(75, "kg"),
  3586. name: "Back (Alt)",
  3587. image: {
  3588. source: "./media/characters/natasha/back-alt.svg",
  3589. extra: 1236.7 / 1192,
  3590. bottom: 22.3 / 1258.2
  3591. }
  3592. },
  3593. dick: {
  3594. height: math.unit(1.772, "feet"),
  3595. name: "Dick",
  3596. image: {
  3597. source: "./media/characters/natasha/dick.svg"
  3598. }
  3599. },
  3600. paw: {
  3601. height: math.unit(0.250, "meters"),
  3602. name: "Paw",
  3603. image: {
  3604. source: "./media/characters/natasha/paw.svg"
  3605. },
  3606. extraAttributes: {
  3607. "toeSize": {
  3608. name: "Toe Size",
  3609. power: 2,
  3610. type: "area",
  3611. base: math.unit(0.0024, "m^2")
  3612. },
  3613. "padSize": {
  3614. name: "Pad Size",
  3615. power: 2,
  3616. type: "area",
  3617. base: math.unit(0.00889, "m^2")
  3618. },
  3619. "pawSize": {
  3620. name: "Paw Size",
  3621. power: 2,
  3622. type: "area",
  3623. base: math.unit(0.023667, "m^2")
  3624. },
  3625. }
  3626. },
  3627. },
  3628. [
  3629. {
  3630. name: "Shortstack",
  3631. height: math.unit(3, "feet"),
  3632. default: true
  3633. },
  3634. {
  3635. name: "Normal",
  3636. height: math.unit(5 + 5 / 12, "feet")
  3637. },
  3638. {
  3639. name: "Large",
  3640. height: math.unit(12, "feet")
  3641. },
  3642. {
  3643. name: "Macro",
  3644. height: math.unit(100, "feet")
  3645. },
  3646. {
  3647. name: "Macro+",
  3648. height: math.unit(260, "feet")
  3649. },
  3650. {
  3651. name: "Macro++",
  3652. height: math.unit(1, "mile")
  3653. },
  3654. ]
  3655. ))
  3656. characterMakers.push(() => makeCharacter(
  3657. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3658. {
  3659. front: {
  3660. height: math.unit(6, "feet"),
  3661. weight: math.unit(75, "kg"),
  3662. name: "Front",
  3663. image: {
  3664. source: "./media/characters/malik/front.svg",
  3665. extra: 1750/1561,
  3666. bottom: 80/1830
  3667. },
  3668. extraAttributes: {
  3669. "toeSize": {
  3670. name: "Toe Size",
  3671. power: 2,
  3672. type: "area",
  3673. base: math.unit(0.0159, "m^2")
  3674. },
  3675. "pawSize": {
  3676. name: "Paw Size",
  3677. power: 2,
  3678. type: "area",
  3679. base: math.unit(0.09834, "m^2")
  3680. },
  3681. }
  3682. },
  3683. side: {
  3684. height: math.unit(6, "feet"),
  3685. weight: math.unit(75, "kg"),
  3686. name: "Side",
  3687. image: {
  3688. source: "./media/characters/malik/side.svg",
  3689. extra: 1802/1685,
  3690. bottom: 42/1844
  3691. },
  3692. extraAttributes: {
  3693. "toeSize": {
  3694. name: "Toe Size",
  3695. power: 2,
  3696. type: "area",
  3697. base: math.unit(0.0159, "m^2")
  3698. },
  3699. "pawSize": {
  3700. name: "Paw Size",
  3701. power: 2,
  3702. type: "area",
  3703. base: math.unit(0.09834, "m^2")
  3704. },
  3705. }
  3706. },
  3707. back: {
  3708. height: math.unit(6, "feet"),
  3709. weight: math.unit(75, "kg"),
  3710. name: "Back",
  3711. image: {
  3712. source: "./media/characters/malik/back.svg",
  3713. extra: 1803/1607,
  3714. bottom: 33/1836
  3715. },
  3716. extraAttributes: {
  3717. "toeSize": {
  3718. name: "Toe Size",
  3719. power: 2,
  3720. type: "area",
  3721. base: math.unit(0.0159, "m^2")
  3722. },
  3723. "pawSize": {
  3724. name: "Paw Size",
  3725. power: 2,
  3726. type: "area",
  3727. base: math.unit(0.09834, "m^2")
  3728. },
  3729. }
  3730. },
  3731. },
  3732. [
  3733. {
  3734. name: "Macro",
  3735. height: math.unit(156, "feet"),
  3736. default: true
  3737. },
  3738. {
  3739. name: "Macro+",
  3740. height: math.unit(1188, "feet")
  3741. },
  3742. ]
  3743. ))
  3744. characterMakers.push(() => makeCharacter(
  3745. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3746. {
  3747. front: {
  3748. height: math.unit(6, "feet"),
  3749. weight: math.unit(75, "kg"),
  3750. name: "Front",
  3751. image: {
  3752. source: "./media/characters/sefer/front.svg",
  3753. extra: 848 / 659,
  3754. bottom: 28.3 / 876.442
  3755. }
  3756. },
  3757. back: {
  3758. height: math.unit(6, "feet"),
  3759. weight: math.unit(75, "kg"),
  3760. name: "Back",
  3761. image: {
  3762. source: "./media/characters/sefer/back.svg",
  3763. extra: 864 / 695,
  3764. bottom: 10 / 871
  3765. }
  3766. },
  3767. frontDressed: {
  3768. height: math.unit(6, "feet"),
  3769. weight: math.unit(75, "kg"),
  3770. name: "Dressed",
  3771. image: {
  3772. source: "./media/characters/sefer/dressed.svg",
  3773. extra: 839 / 653,
  3774. bottom: 37.6 / 878
  3775. }
  3776. },
  3777. },
  3778. [
  3779. {
  3780. name: "Normal",
  3781. height: math.unit(6, "feet"),
  3782. default: true
  3783. },
  3784. {
  3785. name: "Big",
  3786. height: math.unit(8, "meters")
  3787. },
  3788. ]
  3789. ))
  3790. characterMakers.push(() => makeCharacter(
  3791. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3792. {
  3793. body: {
  3794. height: math.unit(2.2428, "meter"),
  3795. weight: math.unit(124.738, "kg"),
  3796. name: "Body",
  3797. image: {
  3798. extra: 1225 / 1050,
  3799. source: "./media/characters/north/front.svg"
  3800. }
  3801. }
  3802. },
  3803. [
  3804. {
  3805. name: "Micro",
  3806. height: math.unit(4, "inches")
  3807. },
  3808. {
  3809. name: "Macro",
  3810. height: math.unit(63, "meters")
  3811. },
  3812. {
  3813. name: "Megamacro",
  3814. height: math.unit(101, "miles"),
  3815. default: true
  3816. }
  3817. ]
  3818. ))
  3819. characterMakers.push(() => makeCharacter(
  3820. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3821. {
  3822. angled: {
  3823. height: math.unit(4, "meter"),
  3824. weight: math.unit(150, "kg"),
  3825. name: "Angled",
  3826. image: {
  3827. source: "./media/characters/talan/angled-sfw.svg",
  3828. bottom: 29 / 3734
  3829. }
  3830. },
  3831. angledNsfw: {
  3832. height: math.unit(4, "meter"),
  3833. weight: math.unit(150, "kg"),
  3834. name: "Angled (NSFW)",
  3835. image: {
  3836. source: "./media/characters/talan/angled-nsfw.svg",
  3837. bottom: 29 / 3734
  3838. }
  3839. },
  3840. frontNsfw: {
  3841. height: math.unit(4, "meter"),
  3842. weight: math.unit(150, "kg"),
  3843. name: "Front (NSFW)",
  3844. image: {
  3845. source: "./media/characters/talan/front-nsfw.svg",
  3846. bottom: 29 / 3734
  3847. }
  3848. },
  3849. sideNsfw: {
  3850. height: math.unit(4, "meter"),
  3851. weight: math.unit(150, "kg"),
  3852. name: "Side (NSFW)",
  3853. image: {
  3854. source: "./media/characters/talan/side-nsfw.svg",
  3855. bottom: 29 / 3734
  3856. }
  3857. },
  3858. back: {
  3859. height: math.unit(4, "meter"),
  3860. weight: math.unit(150, "kg"),
  3861. name: "Back",
  3862. image: {
  3863. source: "./media/characters/talan/back.svg"
  3864. }
  3865. },
  3866. dickBottom: {
  3867. height: math.unit(0.621, "meter"),
  3868. name: "Dick (Bottom)",
  3869. image: {
  3870. source: "./media/characters/talan/dick-bottom.svg"
  3871. }
  3872. },
  3873. dickTop: {
  3874. height: math.unit(0.621, "meter"),
  3875. name: "Dick (Top)",
  3876. image: {
  3877. source: "./media/characters/talan/dick-top.svg"
  3878. }
  3879. },
  3880. dickSide: {
  3881. height: math.unit(0.305, "meter"),
  3882. name: "Dick (Side)",
  3883. image: {
  3884. source: "./media/characters/talan/dick-side.svg"
  3885. }
  3886. },
  3887. dickFront: {
  3888. height: math.unit(0.305, "meter"),
  3889. name: "Dick (Front)",
  3890. image: {
  3891. source: "./media/characters/talan/dick-front.svg"
  3892. }
  3893. },
  3894. },
  3895. [
  3896. {
  3897. name: "Normal",
  3898. height: math.unit(4, "meters")
  3899. },
  3900. {
  3901. name: "Macro",
  3902. height: math.unit(100, "meters")
  3903. },
  3904. {
  3905. name: "Megamacro",
  3906. height: math.unit(2, "miles"),
  3907. default: true
  3908. },
  3909. {
  3910. name: "Gigamacro",
  3911. height: math.unit(5000, "miles")
  3912. },
  3913. {
  3914. name: "Teramacro",
  3915. height: math.unit(100, "parsecs")
  3916. }
  3917. ]
  3918. ))
  3919. characterMakers.push(() => makeCharacter(
  3920. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3921. {
  3922. front: {
  3923. height: math.unit(2, "meter"),
  3924. weight: math.unit(90, "kg"),
  3925. name: "Front",
  3926. image: {
  3927. source: "./media/characters/gael'rathus/front.svg"
  3928. }
  3929. },
  3930. frontAlt: {
  3931. height: math.unit(2, "meter"),
  3932. weight: math.unit(90, "kg"),
  3933. name: "Front (alt)",
  3934. image: {
  3935. source: "./media/characters/gael'rathus/front-alt.svg"
  3936. }
  3937. },
  3938. frontAlt2: {
  3939. height: math.unit(2, "meter"),
  3940. weight: math.unit(90, "kg"),
  3941. name: "Front (alt 2)",
  3942. image: {
  3943. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3944. }
  3945. }
  3946. },
  3947. [
  3948. {
  3949. name: "Normal",
  3950. height: math.unit(9, "feet"),
  3951. default: true
  3952. },
  3953. {
  3954. name: "Large",
  3955. height: math.unit(25, "feet")
  3956. },
  3957. {
  3958. name: "Macro",
  3959. height: math.unit(0.25, "miles")
  3960. },
  3961. {
  3962. name: "Megamacro",
  3963. height: math.unit(10, "miles")
  3964. }
  3965. ]
  3966. ))
  3967. characterMakers.push(() => makeCharacter(
  3968. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3969. {
  3970. side: {
  3971. height: math.unit(2, "meter"),
  3972. weight: math.unit(140, "kg"),
  3973. name: "Side",
  3974. image: {
  3975. source: "./media/characters/sosha/side.svg",
  3976. extra: 1170/1006,
  3977. bottom: 94/1264
  3978. }
  3979. },
  3980. maw: {
  3981. height: math.unit(2.87, "feet"),
  3982. name: "Maw",
  3983. image: {
  3984. source: "./media/characters/sosha/maw.svg",
  3985. extra: 966/865,
  3986. bottom: 0/966
  3987. }
  3988. },
  3989. cooch: {
  3990. height: math.unit(5.6, "feet"),
  3991. name: "Cooch",
  3992. image: {
  3993. source: "./media/characters/sosha/cooch.svg"
  3994. }
  3995. },
  3996. },
  3997. [
  3998. {
  3999. name: "Normal",
  4000. height: math.unit(12, "feet"),
  4001. default: true
  4002. }
  4003. ]
  4004. ))
  4005. characterMakers.push(() => makeCharacter(
  4006. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4007. {
  4008. side: {
  4009. height: math.unit(5 + 5 / 12, "feet"),
  4010. weight: math.unit(170, "kg"),
  4011. name: "Side",
  4012. image: {
  4013. source: "./media/characters/runnola/side.svg",
  4014. extra: 741 / 448,
  4015. bottom: 0.05
  4016. }
  4017. },
  4018. },
  4019. [
  4020. {
  4021. name: "Small",
  4022. height: math.unit(3, "feet")
  4023. },
  4024. {
  4025. name: "Normal",
  4026. height: math.unit(5 + 5 / 12, "feet"),
  4027. default: true
  4028. },
  4029. {
  4030. name: "Big",
  4031. height: math.unit(10, "feet")
  4032. },
  4033. ]
  4034. ))
  4035. characterMakers.push(() => makeCharacter(
  4036. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4037. {
  4038. front: {
  4039. height: math.unit(2, "meter"),
  4040. weight: math.unit(50, "kg"),
  4041. name: "Front",
  4042. image: {
  4043. source: "./media/characters/kurribird/front.svg",
  4044. bottom: 0.015
  4045. }
  4046. },
  4047. frontAlt: {
  4048. height: math.unit(1.5, "meter"),
  4049. weight: math.unit(50, "kg"),
  4050. name: "Front (Alt)",
  4051. image: {
  4052. source: "./media/characters/kurribird/front-alt.svg",
  4053. extra: 1.45
  4054. }
  4055. },
  4056. },
  4057. [
  4058. {
  4059. name: "Normal",
  4060. height: math.unit(7, "feet")
  4061. },
  4062. {
  4063. name: "Big",
  4064. height: math.unit(12, "feet"),
  4065. default: true
  4066. },
  4067. {
  4068. name: "Macro",
  4069. height: math.unit(1500, "feet")
  4070. },
  4071. {
  4072. name: "Megamacro",
  4073. height: math.unit(2, "miles")
  4074. }
  4075. ]
  4076. ))
  4077. characterMakers.push(() => makeCharacter(
  4078. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4079. {
  4080. front: {
  4081. height: math.unit(2, "meter"),
  4082. weight: math.unit(80, "kg"),
  4083. name: "Front",
  4084. image: {
  4085. source: "./media/characters/elbial/front.svg",
  4086. extra: 1643 / 1556,
  4087. bottom: 60.2 / 1696
  4088. }
  4089. },
  4090. side: {
  4091. height: math.unit(2, "meter"),
  4092. weight: math.unit(80, "kg"),
  4093. name: "Side",
  4094. image: {
  4095. source: "./media/characters/elbial/side.svg",
  4096. extra: 1601/1528,
  4097. bottom: 97/1698
  4098. }
  4099. },
  4100. back: {
  4101. height: math.unit(2, "meter"),
  4102. weight: math.unit(80, "kg"),
  4103. name: "Back",
  4104. image: {
  4105. source: "./media/characters/elbial/back.svg",
  4106. extra: 1653/1569,
  4107. bottom: 20/1673
  4108. }
  4109. },
  4110. frontDressed: {
  4111. height: math.unit(2, "meter"),
  4112. weight: math.unit(80, "kg"),
  4113. name: "Front (Dressed)",
  4114. image: {
  4115. source: "./media/characters/elbial/front-dressed.svg",
  4116. extra: 1638/1569,
  4117. bottom: 70/1708
  4118. }
  4119. },
  4120. genitals: {
  4121. height: math.unit(2 / 3.367, "meter"),
  4122. name: "Genitals",
  4123. image: {
  4124. source: "./media/characters/elbial/genitals.svg"
  4125. }
  4126. },
  4127. },
  4128. [
  4129. {
  4130. name: "Large",
  4131. height: math.unit(100, "feet")
  4132. },
  4133. {
  4134. name: "Macro",
  4135. height: math.unit(500, "feet"),
  4136. default: true
  4137. },
  4138. {
  4139. name: "Megamacro",
  4140. height: math.unit(10, "miles")
  4141. },
  4142. {
  4143. name: "Gigamacro",
  4144. height: math.unit(25000, "miles")
  4145. },
  4146. {
  4147. name: "Full-Size",
  4148. height: math.unit(8000000, "gigaparsecs")
  4149. }
  4150. ]
  4151. ))
  4152. characterMakers.push(() => makeCharacter(
  4153. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4154. {
  4155. front: {
  4156. height: math.unit(2, "meter"),
  4157. weight: math.unit(60, "kg"),
  4158. name: "Front",
  4159. image: {
  4160. source: "./media/characters/noah/front.svg"
  4161. }
  4162. },
  4163. talons: {
  4164. height: math.unit(0.315, "meter"),
  4165. name: "Talons",
  4166. image: {
  4167. source: "./media/characters/noah/talons.svg"
  4168. }
  4169. }
  4170. },
  4171. [
  4172. {
  4173. name: "Large",
  4174. height: math.unit(50, "feet")
  4175. },
  4176. {
  4177. name: "Macro",
  4178. height: math.unit(750, "feet"),
  4179. default: true
  4180. },
  4181. {
  4182. name: "Megamacro",
  4183. height: math.unit(50, "miles")
  4184. },
  4185. {
  4186. name: "Gigamacro",
  4187. height: math.unit(100000, "miles")
  4188. },
  4189. {
  4190. name: "Full-Size",
  4191. height: math.unit(3000000000, "miles")
  4192. }
  4193. ]
  4194. ))
  4195. characterMakers.push(() => makeCharacter(
  4196. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4197. {
  4198. front: {
  4199. height: math.unit(2, "meter"),
  4200. weight: math.unit(80, "kg"),
  4201. name: "Front",
  4202. image: {
  4203. source: "./media/characters/natalya/front.svg"
  4204. }
  4205. },
  4206. back: {
  4207. height: math.unit(2, "meter"),
  4208. weight: math.unit(80, "kg"),
  4209. name: "Back",
  4210. image: {
  4211. source: "./media/characters/natalya/back.svg"
  4212. }
  4213. }
  4214. },
  4215. [
  4216. {
  4217. name: "Normal",
  4218. height: math.unit(150, "feet"),
  4219. default: true
  4220. },
  4221. {
  4222. name: "Megamacro",
  4223. height: math.unit(5, "miles")
  4224. },
  4225. {
  4226. name: "Full-Size",
  4227. height: math.unit(600, "kiloparsecs")
  4228. }
  4229. ]
  4230. ))
  4231. characterMakers.push(() => makeCharacter(
  4232. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4233. {
  4234. front: {
  4235. height: math.unit(2, "meter"),
  4236. weight: math.unit(50, "kg"),
  4237. name: "Front",
  4238. image: {
  4239. source: "./media/characters/erestrebah/front.svg",
  4240. extra: 1262/1162,
  4241. bottom: 96/1358
  4242. }
  4243. },
  4244. back: {
  4245. height: math.unit(2, "meter"),
  4246. weight: math.unit(50, "kg"),
  4247. name: "Back",
  4248. image: {
  4249. source: "./media/characters/erestrebah/back.svg",
  4250. extra: 1257/1139,
  4251. bottom: 13/1270
  4252. }
  4253. },
  4254. wing: {
  4255. height: math.unit(2, "meter"),
  4256. weight: math.unit(50, "kg"),
  4257. name: "Wing",
  4258. image: {
  4259. source: "./media/characters/erestrebah/wing.svg",
  4260. extra: 1262/1162,
  4261. bottom: 96/1358
  4262. }
  4263. },
  4264. mouth: {
  4265. height: math.unit(0.39, "feet"),
  4266. name: "Mouth",
  4267. image: {
  4268. source: "./media/characters/erestrebah/mouth.svg"
  4269. }
  4270. }
  4271. },
  4272. [
  4273. {
  4274. name: "Normal",
  4275. height: math.unit(10, "feet")
  4276. },
  4277. {
  4278. name: "Large",
  4279. height: math.unit(50, "feet"),
  4280. default: true
  4281. },
  4282. {
  4283. name: "Macro",
  4284. height: math.unit(300, "feet")
  4285. },
  4286. {
  4287. name: "Macro+",
  4288. height: math.unit(750, "feet")
  4289. },
  4290. {
  4291. name: "Megamacro",
  4292. height: math.unit(3, "miles")
  4293. }
  4294. ]
  4295. ))
  4296. characterMakers.push(() => makeCharacter(
  4297. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4298. {
  4299. front: {
  4300. height: math.unit(2, "meter"),
  4301. weight: math.unit(80, "kg"),
  4302. name: "Front",
  4303. image: {
  4304. source: "./media/characters/jennifer/front.svg",
  4305. bottom: 0.11,
  4306. extra: 1.16
  4307. }
  4308. },
  4309. frontAlt: {
  4310. height: math.unit(2, "meter"),
  4311. weight: math.unit(80, "kg"),
  4312. name: "Front (Alt)",
  4313. image: {
  4314. source: "./media/characters/jennifer/front-alt.svg"
  4315. }
  4316. }
  4317. },
  4318. [
  4319. {
  4320. name: "Canon Height",
  4321. height: math.unit(120, "feet"),
  4322. default: true
  4323. },
  4324. {
  4325. name: "Macro+",
  4326. height: math.unit(300, "feet")
  4327. },
  4328. {
  4329. name: "Megamacro",
  4330. height: math.unit(20000, "feet")
  4331. }
  4332. ]
  4333. ))
  4334. characterMakers.push(() => makeCharacter(
  4335. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4336. {
  4337. front: {
  4338. height: math.unit(2, "meter"),
  4339. weight: math.unit(50, "kg"),
  4340. name: "Front",
  4341. image: {
  4342. source: "./media/characters/kalista/front.svg",
  4343. extra: 1314/1145,
  4344. bottom: 101/1415
  4345. }
  4346. },
  4347. back: {
  4348. height: math.unit(2, "meter"),
  4349. weight: math.unit(50, "kg"),
  4350. name: "Back",
  4351. image: {
  4352. source: "./media/characters/kalista/back.svg",
  4353. extra: 1366 / 1156,
  4354. bottom: 33.9 / 1362.78
  4355. }
  4356. }
  4357. },
  4358. [
  4359. {
  4360. name: "Uncomfortably Small",
  4361. height: math.unit(10, "feet")
  4362. },
  4363. {
  4364. name: "Small",
  4365. height: math.unit(30, "feet")
  4366. },
  4367. {
  4368. name: "Macro",
  4369. height: math.unit(100, "feet"),
  4370. default: true
  4371. },
  4372. {
  4373. name: "Macro+",
  4374. height: math.unit(2000, "feet")
  4375. },
  4376. {
  4377. name: "True Form",
  4378. height: math.unit(8924, "miles")
  4379. }
  4380. ]
  4381. ))
  4382. characterMakers.push(() => makeCharacter(
  4383. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4384. {
  4385. front: {
  4386. height: math.unit(2, "meter"),
  4387. weight: math.unit(120, "kg"),
  4388. name: "Front",
  4389. image: {
  4390. source: "./media/characters/ggv/front.svg"
  4391. }
  4392. },
  4393. side: {
  4394. height: math.unit(2, "meter"),
  4395. weight: math.unit(120, "kg"),
  4396. name: "Side",
  4397. image: {
  4398. source: "./media/characters/ggv/side.svg"
  4399. }
  4400. }
  4401. },
  4402. [
  4403. {
  4404. name: "Extremely Puny",
  4405. height: math.unit(9 + 5 / 12, "feet")
  4406. },
  4407. {
  4408. name: "Horribly Small",
  4409. height: math.unit(47.7, "miles"),
  4410. default: true
  4411. },
  4412. {
  4413. name: "Reasonably Sized",
  4414. height: math.unit(25000, "parsecs")
  4415. },
  4416. {
  4417. name: "Slightly Uncompressed",
  4418. height: math.unit(7.77e31, "parsecs")
  4419. },
  4420. {
  4421. name: "Omniversal",
  4422. height: math.unit(1e300, "meters")
  4423. },
  4424. ]
  4425. ))
  4426. characterMakers.push(() => makeCharacter(
  4427. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4428. {
  4429. front: {
  4430. height: math.unit(2, "meter"),
  4431. weight: math.unit(75, "lb"),
  4432. name: "Front",
  4433. image: {
  4434. source: "./media/characters/napalm/front.svg"
  4435. }
  4436. },
  4437. back: {
  4438. height: math.unit(2, "meter"),
  4439. weight: math.unit(75, "lb"),
  4440. name: "Back",
  4441. image: {
  4442. source: "./media/characters/napalm/back.svg"
  4443. }
  4444. }
  4445. },
  4446. [
  4447. {
  4448. name: "Standard",
  4449. height: math.unit(55, "feet"),
  4450. default: true
  4451. }
  4452. ]
  4453. ))
  4454. characterMakers.push(() => makeCharacter(
  4455. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4456. {
  4457. front: {
  4458. height: math.unit(7 + 5 / 6, "feet"),
  4459. weight: math.unit(325, "lb"),
  4460. name: "Front",
  4461. image: {
  4462. source: "./media/characters/asana/front.svg",
  4463. extra: 1133 / 1060,
  4464. bottom: 15.2 / 1148.6
  4465. }
  4466. },
  4467. back: {
  4468. height: math.unit(7 + 5 / 6, "feet"),
  4469. weight: math.unit(325, "lb"),
  4470. name: "Back",
  4471. image: {
  4472. source: "./media/characters/asana/back.svg",
  4473. extra: 1114 / 1043,
  4474. bottom: 5 / 1120
  4475. }
  4476. },
  4477. dressedDark: {
  4478. height: math.unit(7 + 5 / 6, "feet"),
  4479. weight: math.unit(325, "lb"),
  4480. name: "Dressed (Dark)",
  4481. image: {
  4482. source: "./media/characters/asana/dressed-dark.svg",
  4483. extra: 1133 / 1060,
  4484. bottom: 15.2 / 1148.6
  4485. }
  4486. },
  4487. dressedLight: {
  4488. height: math.unit(7 + 5 / 6, "feet"),
  4489. weight: math.unit(325, "lb"),
  4490. name: "Dressed (Light)",
  4491. image: {
  4492. source: "./media/characters/asana/dressed-light.svg",
  4493. extra: 1133 / 1060,
  4494. bottom: 15.2 / 1148.6
  4495. }
  4496. },
  4497. },
  4498. [
  4499. {
  4500. name: "Standard",
  4501. height: math.unit(7 + 5 / 6, "feet"),
  4502. default: true
  4503. },
  4504. {
  4505. name: "Large",
  4506. height: math.unit(10, "meters")
  4507. },
  4508. {
  4509. name: "Macro",
  4510. height: math.unit(2500, "meters")
  4511. },
  4512. {
  4513. name: "Megamacro",
  4514. height: math.unit(5e6, "meters")
  4515. },
  4516. {
  4517. name: "Examacro",
  4518. height: math.unit(5e12, "lightyears")
  4519. },
  4520. {
  4521. name: "Max Size",
  4522. height: math.unit(1e31, "lightyears")
  4523. }
  4524. ]
  4525. ))
  4526. characterMakers.push(() => makeCharacter(
  4527. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4528. {
  4529. front: {
  4530. height: math.unit(2, "meter"),
  4531. weight: math.unit(60, "kg"),
  4532. name: "Front",
  4533. image: {
  4534. source: "./media/characters/ebony/front.svg",
  4535. bottom: 0.03,
  4536. extra: 1045 / 810 + 0.03
  4537. }
  4538. },
  4539. side: {
  4540. height: math.unit(2, "meter"),
  4541. weight: math.unit(60, "kg"),
  4542. name: "Side",
  4543. image: {
  4544. source: "./media/characters/ebony/side.svg",
  4545. bottom: 0.03,
  4546. extra: 1045 / 810 + 0.03
  4547. }
  4548. },
  4549. back: {
  4550. height: math.unit(2, "meter"),
  4551. weight: math.unit(60, "kg"),
  4552. name: "Back",
  4553. image: {
  4554. source: "./media/characters/ebony/back.svg",
  4555. bottom: 0.01,
  4556. extra: 1045 / 810 + 0.01
  4557. }
  4558. },
  4559. },
  4560. [
  4561. // TODO check why I did this lol
  4562. {
  4563. name: "Standard",
  4564. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4565. default: true
  4566. },
  4567. {
  4568. name: "Macro",
  4569. height: math.unit(200, "feet")
  4570. },
  4571. {
  4572. name: "Gigamacro",
  4573. height: math.unit(13000, "km")
  4574. }
  4575. ]
  4576. ))
  4577. characterMakers.push(() => makeCharacter(
  4578. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4579. {
  4580. front: {
  4581. height: math.unit(6, "feet"),
  4582. weight: math.unit(175, "lb"),
  4583. name: "Front",
  4584. image: {
  4585. source: "./media/characters/mountain/front.svg",
  4586. extra: 972 / 955,
  4587. bottom: 64 / 1036.6
  4588. }
  4589. },
  4590. back: {
  4591. height: math.unit(6, "feet"),
  4592. weight: math.unit(175, "lb"),
  4593. name: "Back",
  4594. image: {
  4595. source: "./media/characters/mountain/back.svg",
  4596. extra: 970 / 950,
  4597. bottom: 28.25 / 999
  4598. }
  4599. },
  4600. },
  4601. [
  4602. {
  4603. name: "Large",
  4604. height: math.unit(20, "meters")
  4605. },
  4606. {
  4607. name: "Macro",
  4608. height: math.unit(300, "meters")
  4609. },
  4610. {
  4611. name: "Gigamacro",
  4612. height: math.unit(10000, "km"),
  4613. default: true
  4614. },
  4615. {
  4616. name: "Examacro",
  4617. height: math.unit(10e9, "lightyears")
  4618. }
  4619. ]
  4620. ))
  4621. characterMakers.push(() => makeCharacter(
  4622. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4623. {
  4624. front: {
  4625. height: math.unit(8, "feet"),
  4626. weight: math.unit(500, "lb"),
  4627. name: "Front",
  4628. image: {
  4629. source: "./media/characters/rick/front.svg"
  4630. }
  4631. }
  4632. },
  4633. [
  4634. {
  4635. name: "Normal",
  4636. height: math.unit(8, "feet"),
  4637. default: true
  4638. },
  4639. {
  4640. name: "Macro",
  4641. height: math.unit(5, "km")
  4642. }
  4643. ]
  4644. ))
  4645. characterMakers.push(() => makeCharacter(
  4646. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4647. {
  4648. front: {
  4649. height: math.unit(8, "feet"),
  4650. weight: math.unit(120, "lb"),
  4651. name: "Front",
  4652. image: {
  4653. source: "./media/characters/ona/front.svg"
  4654. }
  4655. },
  4656. frontAlt: {
  4657. height: math.unit(8, "feet"),
  4658. weight: math.unit(120, "lb"),
  4659. name: "Front (Alt)",
  4660. image: {
  4661. source: "./media/characters/ona/front-alt.svg"
  4662. }
  4663. },
  4664. back: {
  4665. height: math.unit(8, "feet"),
  4666. weight: math.unit(120, "lb"),
  4667. name: "Back",
  4668. image: {
  4669. source: "./media/characters/ona/back.svg"
  4670. }
  4671. },
  4672. foot: {
  4673. height: math.unit(1.1, "feet"),
  4674. name: "Foot",
  4675. image: {
  4676. source: "./media/characters/ona/foot.svg"
  4677. }
  4678. }
  4679. },
  4680. [
  4681. {
  4682. name: "Megamacro",
  4683. height: math.unit(70, "km"),
  4684. default: true
  4685. },
  4686. {
  4687. name: "Gigamacro",
  4688. height: math.unit(681818, "miles")
  4689. },
  4690. {
  4691. name: "Examacro",
  4692. height: math.unit(3800000, "lightyears")
  4693. },
  4694. ]
  4695. ))
  4696. characterMakers.push(() => makeCharacter(
  4697. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4698. {
  4699. front: {
  4700. height: math.unit(12, "feet"),
  4701. weight: math.unit(3000, "lb"),
  4702. name: "Front",
  4703. image: {
  4704. source: "./media/characters/mech/front.svg",
  4705. extra: 2900 / 2770,
  4706. bottom: 110 / 3010
  4707. }
  4708. },
  4709. back: {
  4710. height: math.unit(12, "feet"),
  4711. weight: math.unit(3000, "lb"),
  4712. name: "Back",
  4713. image: {
  4714. source: "./media/characters/mech/back.svg",
  4715. extra: 3011 / 2890,
  4716. bottom: 94 / 3105
  4717. }
  4718. },
  4719. maw: {
  4720. height: math.unit(3.07, "feet"),
  4721. name: "Maw",
  4722. image: {
  4723. source: "./media/characters/mech/maw.svg"
  4724. }
  4725. },
  4726. head: {
  4727. height: math.unit(3.07, "feet"),
  4728. name: "Head",
  4729. image: {
  4730. source: "./media/characters/mech/head.svg"
  4731. }
  4732. },
  4733. dick: {
  4734. height: math.unit(1.43, "feet"),
  4735. name: "Dick",
  4736. image: {
  4737. source: "./media/characters/mech/dick.svg"
  4738. }
  4739. },
  4740. },
  4741. [
  4742. {
  4743. name: "Normal",
  4744. height: math.unit(12, "feet")
  4745. },
  4746. {
  4747. name: "Macro",
  4748. height: math.unit(300, "feet"),
  4749. default: true
  4750. },
  4751. {
  4752. name: "Macro+",
  4753. height: math.unit(1500, "feet")
  4754. },
  4755. ]
  4756. ))
  4757. characterMakers.push(() => makeCharacter(
  4758. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4759. {
  4760. front: {
  4761. height: math.unit(1.3, "meter"),
  4762. weight: math.unit(30, "kg"),
  4763. name: "Front",
  4764. image: {
  4765. source: "./media/characters/gregory/front.svg",
  4766. }
  4767. }
  4768. },
  4769. [
  4770. {
  4771. name: "Normal",
  4772. height: math.unit(1.3, "meter"),
  4773. default: true
  4774. },
  4775. {
  4776. name: "Macro",
  4777. height: math.unit(20, "meter")
  4778. }
  4779. ]
  4780. ))
  4781. characterMakers.push(() => makeCharacter(
  4782. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4783. {
  4784. front: {
  4785. height: math.unit(2.8, "meter"),
  4786. weight: math.unit(200, "kg"),
  4787. name: "Front",
  4788. image: {
  4789. source: "./media/characters/elory/front.svg",
  4790. }
  4791. }
  4792. },
  4793. [
  4794. {
  4795. name: "Normal",
  4796. height: math.unit(2.8, "meter"),
  4797. default: true
  4798. },
  4799. {
  4800. name: "Macro",
  4801. height: math.unit(38, "meter")
  4802. }
  4803. ]
  4804. ))
  4805. characterMakers.push(() => makeCharacter(
  4806. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4807. {
  4808. front: {
  4809. height: math.unit(470, "feet"),
  4810. weight: math.unit(924, "tons"),
  4811. name: "Front",
  4812. image: {
  4813. source: "./media/characters/angelpatamon/front.svg",
  4814. }
  4815. }
  4816. },
  4817. [
  4818. {
  4819. name: "Normal",
  4820. height: math.unit(470, "feet"),
  4821. default: true
  4822. },
  4823. {
  4824. name: "Deity Size I",
  4825. height: math.unit(28651.2, "km")
  4826. },
  4827. {
  4828. name: "Deity Size II",
  4829. height: math.unit(171907.2, "km")
  4830. }
  4831. ]
  4832. ))
  4833. characterMakers.push(() => makeCharacter(
  4834. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4835. {
  4836. side: {
  4837. height: math.unit(7.2, "meter"),
  4838. weight: math.unit(8.2, "tons"),
  4839. name: "Side",
  4840. image: {
  4841. source: "./media/characters/cryae/side.svg",
  4842. extra: 3500 / 1500
  4843. }
  4844. }
  4845. },
  4846. [
  4847. {
  4848. name: "Normal",
  4849. height: math.unit(7.2, "meter"),
  4850. default: true
  4851. }
  4852. ]
  4853. ))
  4854. characterMakers.push(() => makeCharacter(
  4855. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4856. {
  4857. front: {
  4858. height: math.unit(6, "feet"),
  4859. weight: math.unit(175, "lb"),
  4860. name: "Front",
  4861. image: {
  4862. source: "./media/characters/xera/front.svg",
  4863. extra: 2377 / 1972,
  4864. bottom: 75.5 / 2452
  4865. }
  4866. },
  4867. side: {
  4868. height: math.unit(6, "feet"),
  4869. weight: math.unit(175, "lb"),
  4870. name: "Side",
  4871. image: {
  4872. source: "./media/characters/xera/side.svg",
  4873. extra: 2345 / 2019,
  4874. bottom: 39.7 / 2384
  4875. }
  4876. },
  4877. back: {
  4878. height: math.unit(6, "feet"),
  4879. weight: math.unit(175, "lb"),
  4880. name: "Back",
  4881. image: {
  4882. source: "./media/characters/xera/back.svg",
  4883. extra: 2095 / 1984,
  4884. bottom: 67 / 2166
  4885. }
  4886. },
  4887. },
  4888. [
  4889. {
  4890. name: "Small",
  4891. height: math.unit(10, "feet")
  4892. },
  4893. {
  4894. name: "Macro",
  4895. height: math.unit(500, "meters"),
  4896. default: true
  4897. },
  4898. {
  4899. name: "Macro+",
  4900. height: math.unit(10, "km")
  4901. },
  4902. {
  4903. name: "Gigamacro",
  4904. height: math.unit(25000, "km")
  4905. },
  4906. {
  4907. name: "Teramacro",
  4908. height: math.unit(3e6, "km")
  4909. }
  4910. ]
  4911. ))
  4912. characterMakers.push(() => makeCharacter(
  4913. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4914. {
  4915. front: {
  4916. height: math.unit(6, "feet"),
  4917. weight: math.unit(175, "lb"),
  4918. name: "Front",
  4919. image: {
  4920. source: "./media/characters/nebula/front.svg",
  4921. extra: 2566 / 2362,
  4922. bottom: 81 / 2644
  4923. }
  4924. }
  4925. },
  4926. [
  4927. {
  4928. name: "Small",
  4929. height: math.unit(4.5, "meters")
  4930. },
  4931. {
  4932. name: "Macro",
  4933. height: math.unit(1500, "meters"),
  4934. default: true
  4935. },
  4936. {
  4937. name: "Megamacro",
  4938. height: math.unit(150, "km")
  4939. },
  4940. {
  4941. name: "Gigamacro",
  4942. height: math.unit(27000, "km")
  4943. }
  4944. ]
  4945. ))
  4946. characterMakers.push(() => makeCharacter(
  4947. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4948. {
  4949. front: {
  4950. height: math.unit(6, "feet"),
  4951. weight: math.unit(225, "lb"),
  4952. name: "Front",
  4953. image: {
  4954. source: "./media/characters/abysgar/front.svg",
  4955. extra: 1739/1614,
  4956. bottom: 71/1810
  4957. }
  4958. },
  4959. frontNsfw: {
  4960. height: math.unit(6, "feet"),
  4961. weight: math.unit(225, "lb"),
  4962. name: "Front (NSFW)",
  4963. image: {
  4964. source: "./media/characters/abysgar/front-nsfw.svg",
  4965. extra: 1739/1614,
  4966. bottom: 71/1810
  4967. }
  4968. },
  4969. back: {
  4970. height: math.unit(4.6, "feet"),
  4971. weight: math.unit(225, "lb"),
  4972. name: "Back",
  4973. image: {
  4974. source: "./media/characters/abysgar/back.svg",
  4975. extra: 1384/1327,
  4976. bottom: 0/1384
  4977. }
  4978. },
  4979. head: {
  4980. height: math.unit(1.25, "feet"),
  4981. name: "Head",
  4982. image: {
  4983. source: "./media/characters/abysgar/head.svg",
  4984. extra: 669/569,
  4985. bottom: 0/669
  4986. }
  4987. },
  4988. },
  4989. [
  4990. {
  4991. name: "Small",
  4992. height: math.unit(4.5, "meters")
  4993. },
  4994. {
  4995. name: "Macro",
  4996. height: math.unit(1250, "meters"),
  4997. default: true
  4998. },
  4999. {
  5000. name: "Megamacro",
  5001. height: math.unit(125, "km")
  5002. },
  5003. {
  5004. name: "Gigamacro",
  5005. height: math.unit(26000, "km")
  5006. }
  5007. ]
  5008. ))
  5009. characterMakers.push(() => makeCharacter(
  5010. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5011. {
  5012. front: {
  5013. height: math.unit(6, "feet"),
  5014. weight: math.unit(180, "lb"),
  5015. name: "Front",
  5016. image: {
  5017. source: "./media/characters/yakuz/front.svg"
  5018. }
  5019. }
  5020. },
  5021. [
  5022. {
  5023. name: "Small",
  5024. height: math.unit(5, "meters")
  5025. },
  5026. {
  5027. name: "Macro",
  5028. height: math.unit(1500, "meters"),
  5029. default: true
  5030. },
  5031. {
  5032. name: "Megamacro",
  5033. height: math.unit(200, "km")
  5034. },
  5035. {
  5036. name: "Gigamacro",
  5037. height: math.unit(100000, "km")
  5038. }
  5039. ]
  5040. ))
  5041. characterMakers.push(() => makeCharacter(
  5042. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5043. {
  5044. front: {
  5045. height: math.unit(6, "feet"),
  5046. weight: math.unit(175, "lb"),
  5047. name: "Front",
  5048. image: {
  5049. source: "./media/characters/mirova/front.svg",
  5050. extra: 3334 / 3071,
  5051. bottom: 42 / 3375.6
  5052. }
  5053. }
  5054. },
  5055. [
  5056. {
  5057. name: "Small",
  5058. height: math.unit(5, "meters")
  5059. },
  5060. {
  5061. name: "Macro",
  5062. height: math.unit(900, "meters"),
  5063. default: true
  5064. },
  5065. {
  5066. name: "Megamacro",
  5067. height: math.unit(135, "km")
  5068. },
  5069. {
  5070. name: "Gigamacro",
  5071. height: math.unit(20000, "km")
  5072. }
  5073. ]
  5074. ))
  5075. characterMakers.push(() => makeCharacter(
  5076. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5077. {
  5078. side: {
  5079. height: math.unit(28.35, "feet"),
  5080. weight: math.unit(99.75, "tons"),
  5081. name: "Side",
  5082. image: {
  5083. source: "./media/characters/asana-mech/side.svg",
  5084. extra: 923 / 699,
  5085. bottom: 50 / 975
  5086. }
  5087. },
  5088. chaingun: {
  5089. height: math.unit(7, "feet"),
  5090. weight: math.unit(2400, "lb"),
  5091. name: "Chaingun",
  5092. image: {
  5093. source: "./media/characters/asana-mech/chaingun.svg"
  5094. }
  5095. },
  5096. laser: {
  5097. height: math.unit(7.12, "feet"),
  5098. weight: math.unit(2000, "lb"),
  5099. name: "Laser",
  5100. image: {
  5101. source: "./media/characters/asana-mech/laser.svg"
  5102. }
  5103. },
  5104. },
  5105. [
  5106. {
  5107. name: "Normal",
  5108. height: math.unit(28.35, "feet"),
  5109. default: true
  5110. },
  5111. {
  5112. name: "Macro",
  5113. height: math.unit(2500, "feet")
  5114. },
  5115. {
  5116. name: "Megamacro",
  5117. height: math.unit(25, "miles")
  5118. },
  5119. {
  5120. name: "Examacro",
  5121. height: math.unit(6e8, "lightyears")
  5122. },
  5123. ]
  5124. ))
  5125. characterMakers.push(() => makeCharacter(
  5126. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5127. {
  5128. front: {
  5129. height: math.unit(5, "meters"),
  5130. weight: math.unit(1000, "kg"),
  5131. name: "Front",
  5132. image: {
  5133. source: "./media/characters/asche/front.svg",
  5134. extra: 1258 / 1190,
  5135. bottom: 47 / 1305
  5136. }
  5137. },
  5138. frontUnderwear: {
  5139. height: math.unit(5, "meters"),
  5140. weight: math.unit(1000, "kg"),
  5141. name: "Front (Underwear)",
  5142. image: {
  5143. source: "./media/characters/asche/front-underwear.svg",
  5144. extra: 1258 / 1190,
  5145. bottom: 47 / 1305
  5146. }
  5147. },
  5148. frontDressed: {
  5149. height: math.unit(5, "meters"),
  5150. weight: math.unit(1000, "kg"),
  5151. name: "Front (Dressed)",
  5152. image: {
  5153. source: "./media/characters/asche/front-dressed.svg",
  5154. extra: 1258 / 1190,
  5155. bottom: 47 / 1305
  5156. }
  5157. },
  5158. frontArmor: {
  5159. height: math.unit(5, "meters"),
  5160. weight: math.unit(1000, "kg"),
  5161. name: "Front (Armored)",
  5162. image: {
  5163. source: "./media/characters/asche/front-armored.svg",
  5164. extra: 1374 / 1308,
  5165. bottom: 23 / 1397
  5166. }
  5167. },
  5168. mp724: {
  5169. height: math.unit(0.96, "meters"),
  5170. weight: math.unit(38, "kg"),
  5171. name: "H&K MP724",
  5172. image: {
  5173. source: "./media/characters/asche/h&k-mp724.svg"
  5174. }
  5175. },
  5176. side: {
  5177. height: math.unit(5, "meters"),
  5178. weight: math.unit(1000, "kg"),
  5179. name: "Side",
  5180. image: {
  5181. source: "./media/characters/asche/side.svg",
  5182. extra: 1717 / 1609,
  5183. bottom: 0.005
  5184. }
  5185. },
  5186. back: {
  5187. height: math.unit(5, "meters"),
  5188. weight: math.unit(1000, "kg"),
  5189. name: "Back",
  5190. image: {
  5191. source: "./media/characters/asche/back.svg",
  5192. extra: 1570 / 1501
  5193. }
  5194. },
  5195. },
  5196. [
  5197. {
  5198. name: "DEFCON 5",
  5199. height: math.unit(5, "meters")
  5200. },
  5201. {
  5202. name: "DEFCON 4",
  5203. height: math.unit(500, "meters"),
  5204. default: true
  5205. },
  5206. {
  5207. name: "DEFCON 3",
  5208. height: math.unit(5, "km")
  5209. },
  5210. {
  5211. name: "DEFCON 2",
  5212. height: math.unit(500, "km")
  5213. },
  5214. {
  5215. name: "DEFCON 1",
  5216. height: math.unit(500000, "km")
  5217. },
  5218. {
  5219. name: "DEFCON 0",
  5220. height: math.unit(3, "gigaparsecs")
  5221. },
  5222. ]
  5223. ))
  5224. characterMakers.push(() => makeCharacter(
  5225. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5226. {
  5227. front: {
  5228. height: math.unit(2, "meters"),
  5229. weight: math.unit(76, "kg"),
  5230. name: "Front",
  5231. image: {
  5232. source: "./media/characters/gale/front.svg"
  5233. }
  5234. },
  5235. frontAlt1: {
  5236. height: math.unit(2, "meters"),
  5237. weight: math.unit(76, "kg"),
  5238. name: "Front (Alt 1)",
  5239. image: {
  5240. source: "./media/characters/gale/front-alt-1.svg"
  5241. }
  5242. },
  5243. frontAlt2: {
  5244. height: math.unit(2, "meters"),
  5245. weight: math.unit(76, "kg"),
  5246. name: "Front (Alt 2)",
  5247. image: {
  5248. source: "./media/characters/gale/front-alt-2.svg"
  5249. }
  5250. },
  5251. },
  5252. [
  5253. {
  5254. name: "Normal",
  5255. height: math.unit(7, "feet")
  5256. },
  5257. {
  5258. name: "Macro",
  5259. height: math.unit(150, "feet"),
  5260. default: true
  5261. },
  5262. {
  5263. name: "Macro+",
  5264. height: math.unit(300, "feet")
  5265. },
  5266. ]
  5267. ))
  5268. characterMakers.push(() => makeCharacter(
  5269. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5270. {
  5271. front: {
  5272. height: math.unit(5 + 10/12, "feet"),
  5273. weight: math.unit(67, "kg"),
  5274. name: "Front",
  5275. image: {
  5276. source: "./media/characters/draylen/front.svg",
  5277. extra: 832/777,
  5278. bottom: 85/917
  5279. }
  5280. }
  5281. },
  5282. [
  5283. {
  5284. name: "Normal",
  5285. height: math.unit(5 + 10/12, "feet")
  5286. },
  5287. {
  5288. name: "Macro",
  5289. height: math.unit(150, "feet"),
  5290. default: true
  5291. }
  5292. ]
  5293. ))
  5294. characterMakers.push(() => makeCharacter(
  5295. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5296. {
  5297. front: {
  5298. height: math.unit(7 + 9 / 12, "feet"),
  5299. weight: math.unit(379, "lbs"),
  5300. name: "Front",
  5301. image: {
  5302. source: "./media/characters/chez/front.svg"
  5303. }
  5304. },
  5305. side: {
  5306. height: math.unit(7 + 9 / 12, "feet"),
  5307. weight: math.unit(379, "lbs"),
  5308. name: "Side",
  5309. image: {
  5310. source: "./media/characters/chez/side.svg"
  5311. }
  5312. }
  5313. },
  5314. [
  5315. {
  5316. name: "Normal",
  5317. height: math.unit(7 + 9 / 12, "feet"),
  5318. default: true
  5319. },
  5320. {
  5321. name: "God King",
  5322. height: math.unit(9750000, "meters")
  5323. }
  5324. ]
  5325. ))
  5326. characterMakers.push(() => makeCharacter(
  5327. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5328. {
  5329. front: {
  5330. height: math.unit(6, "feet"),
  5331. weight: math.unit(275, "lbs"),
  5332. name: "Front",
  5333. image: {
  5334. source: "./media/characters/kaylum/front.svg",
  5335. bottom: 0.01,
  5336. extra: 1166 / 1031
  5337. }
  5338. },
  5339. frontWingless: {
  5340. height: math.unit(6, "feet"),
  5341. weight: math.unit(275, "lbs"),
  5342. name: "Front (Wingless)",
  5343. image: {
  5344. source: "./media/characters/kaylum/front-wingless.svg",
  5345. bottom: 0.01,
  5346. extra: 1117 / 1031
  5347. }
  5348. }
  5349. },
  5350. [
  5351. {
  5352. name: "Normal",
  5353. height: math.unit(3.05, "meters")
  5354. },
  5355. {
  5356. name: "Master",
  5357. height: math.unit(5.5, "meters")
  5358. },
  5359. {
  5360. name: "Rampage",
  5361. height: math.unit(19, "meters")
  5362. },
  5363. {
  5364. name: "Macro Lite",
  5365. height: math.unit(37, "meters")
  5366. },
  5367. {
  5368. name: "Hyper Predator",
  5369. height: math.unit(61, "meters")
  5370. },
  5371. {
  5372. name: "Macro",
  5373. height: math.unit(138, "meters"),
  5374. default: true
  5375. }
  5376. ]
  5377. ))
  5378. characterMakers.push(() => makeCharacter(
  5379. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5380. {
  5381. front: {
  5382. height: math.unit(5 + 5 / 12, "feet"),
  5383. weight: math.unit(120, "lbs"),
  5384. name: "Front",
  5385. image: {
  5386. source: "./media/characters/geta/front.svg",
  5387. extra: 1003/933,
  5388. bottom: 21/1024
  5389. }
  5390. },
  5391. paw: {
  5392. height: math.unit(0.35, "feet"),
  5393. name: "Paw",
  5394. image: {
  5395. source: "./media/characters/geta/paw.svg"
  5396. }
  5397. },
  5398. },
  5399. [
  5400. {
  5401. name: "Micro",
  5402. height: math.unit(3, "inches"),
  5403. default: true
  5404. },
  5405. {
  5406. name: "Normal",
  5407. height: math.unit(5 + 5 / 12, "feet")
  5408. }
  5409. ]
  5410. ))
  5411. characterMakers.push(() => makeCharacter(
  5412. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5413. {
  5414. front: {
  5415. height: math.unit(6, "feet"),
  5416. weight: math.unit(300, "lbs"),
  5417. name: "Front",
  5418. image: {
  5419. source: "./media/characters/tyrnn/front.svg"
  5420. }
  5421. }
  5422. },
  5423. [
  5424. {
  5425. name: "Main Height",
  5426. height: math.unit(355, "feet"),
  5427. default: true
  5428. },
  5429. {
  5430. name: "Fave. Height",
  5431. height: math.unit(2400, "feet")
  5432. }
  5433. ]
  5434. ))
  5435. characterMakers.push(() => makeCharacter(
  5436. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5437. {
  5438. front: {
  5439. height: math.unit(6, "feet"),
  5440. weight: math.unit(300, "lbs"),
  5441. name: "Front",
  5442. image: {
  5443. source: "./media/characters/appledectomy/front.svg"
  5444. }
  5445. }
  5446. },
  5447. [
  5448. {
  5449. name: "Macro",
  5450. height: math.unit(2500, "feet")
  5451. },
  5452. {
  5453. name: "Megamacro",
  5454. height: math.unit(50, "miles"),
  5455. default: true
  5456. },
  5457. {
  5458. name: "Gigamacro",
  5459. height: math.unit(5000, "miles")
  5460. },
  5461. {
  5462. name: "Teramacro",
  5463. height: math.unit(250000, "miles")
  5464. },
  5465. ]
  5466. ))
  5467. characterMakers.push(() => makeCharacter(
  5468. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5469. {
  5470. front: {
  5471. height: math.unit(6, "feet"),
  5472. weight: math.unit(200, "lbs"),
  5473. name: "Front",
  5474. image: {
  5475. source: "./media/characters/vulpes/front.svg",
  5476. extra: 573 / 543,
  5477. bottom: 0.033
  5478. }
  5479. },
  5480. side: {
  5481. height: math.unit(6, "feet"),
  5482. weight: math.unit(200, "lbs"),
  5483. name: "Side",
  5484. image: {
  5485. source: "./media/characters/vulpes/side.svg",
  5486. extra: 577 / 549,
  5487. bottom: 11 / 588
  5488. }
  5489. },
  5490. back: {
  5491. height: math.unit(6, "feet"),
  5492. weight: math.unit(200, "lbs"),
  5493. name: "Back",
  5494. image: {
  5495. source: "./media/characters/vulpes/back.svg",
  5496. extra: 573 / 549,
  5497. bottom: 20 / 593
  5498. }
  5499. },
  5500. feet: {
  5501. height: math.unit(1.276, "feet"),
  5502. name: "Feet",
  5503. image: {
  5504. source: "./media/characters/vulpes/feet.svg"
  5505. }
  5506. },
  5507. maw: {
  5508. height: math.unit(1.18, "feet"),
  5509. name: "Maw",
  5510. image: {
  5511. source: "./media/characters/vulpes/maw.svg"
  5512. }
  5513. },
  5514. },
  5515. [
  5516. {
  5517. name: "Micro",
  5518. height: math.unit(2, "inches")
  5519. },
  5520. {
  5521. name: "Normal",
  5522. height: math.unit(6.3, "feet")
  5523. },
  5524. {
  5525. name: "Macro",
  5526. height: math.unit(850, "feet")
  5527. },
  5528. {
  5529. name: "Megamacro",
  5530. height: math.unit(7500, "feet"),
  5531. default: true
  5532. },
  5533. {
  5534. name: "Gigamacro",
  5535. height: math.unit(570000, "miles")
  5536. }
  5537. ]
  5538. ))
  5539. characterMakers.push(() => makeCharacter(
  5540. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5541. {
  5542. front: {
  5543. height: math.unit(6, "feet"),
  5544. weight: math.unit(210, "lbs"),
  5545. name: "Front",
  5546. image: {
  5547. source: "./media/characters/rain-fallen/front.svg"
  5548. }
  5549. },
  5550. side: {
  5551. height: math.unit(6, "feet"),
  5552. weight: math.unit(210, "lbs"),
  5553. name: "Side",
  5554. image: {
  5555. source: "./media/characters/rain-fallen/side.svg"
  5556. }
  5557. },
  5558. back: {
  5559. height: math.unit(6, "feet"),
  5560. weight: math.unit(210, "lbs"),
  5561. name: "Back",
  5562. image: {
  5563. source: "./media/characters/rain-fallen/back.svg"
  5564. }
  5565. },
  5566. feral: {
  5567. height: math.unit(9, "feet"),
  5568. weight: math.unit(700, "lbs"),
  5569. name: "Feral",
  5570. image: {
  5571. source: "./media/characters/rain-fallen/feral.svg"
  5572. }
  5573. },
  5574. },
  5575. [
  5576. {
  5577. name: "Meddling with Mortals",
  5578. height: math.unit(8 + 8/12, "feet")
  5579. },
  5580. {
  5581. name: "Normal",
  5582. height: math.unit(5, "meter")
  5583. },
  5584. {
  5585. name: "Macro",
  5586. height: math.unit(150, "meter"),
  5587. default: true
  5588. },
  5589. {
  5590. name: "Megamacro",
  5591. height: math.unit(278e6, "meter")
  5592. },
  5593. {
  5594. name: "Gigamacro",
  5595. height: math.unit(2e9, "meter")
  5596. },
  5597. {
  5598. name: "Teramacro",
  5599. height: math.unit(8e12, "meter")
  5600. },
  5601. {
  5602. name: "Devourer",
  5603. height: math.unit(14, "zettameters")
  5604. },
  5605. {
  5606. name: "Scarlet King",
  5607. height: math.unit(18, "yottameters")
  5608. },
  5609. {
  5610. name: "Void",
  5611. height: math.unit(1e88, "yottameters")
  5612. }
  5613. ]
  5614. ))
  5615. characterMakers.push(() => makeCharacter(
  5616. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5617. {
  5618. standing: {
  5619. height: math.unit(6, "feet"),
  5620. weight: math.unit(180, "lbs"),
  5621. name: "Standing",
  5622. image: {
  5623. source: "./media/characters/zaakira/standing.svg",
  5624. extra: 1599/1504,
  5625. bottom: 39/1638
  5626. }
  5627. },
  5628. laying: {
  5629. height: math.unit(3.3, "feet"),
  5630. weight: math.unit(180, "lbs"),
  5631. name: "Laying",
  5632. image: {
  5633. source: "./media/characters/zaakira/laying.svg"
  5634. }
  5635. },
  5636. },
  5637. [
  5638. {
  5639. name: "Normal",
  5640. height: math.unit(12, "feet")
  5641. },
  5642. {
  5643. name: "Macro",
  5644. height: math.unit(279, "feet"),
  5645. default: true
  5646. }
  5647. ]
  5648. ))
  5649. characterMakers.push(() => makeCharacter(
  5650. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5651. {
  5652. femSfw: {
  5653. height: math.unit(8, "feet"),
  5654. weight: math.unit(350, "lb"),
  5655. name: "Fem",
  5656. image: {
  5657. source: "./media/characters/sigvald/fem-sfw.svg",
  5658. extra: 182 / 164,
  5659. bottom: 8.7 / 190.5
  5660. }
  5661. },
  5662. femNsfw: {
  5663. height: math.unit(8, "feet"),
  5664. weight: math.unit(350, "lb"),
  5665. name: "Fem (NSFW)",
  5666. image: {
  5667. source: "./media/characters/sigvald/fem-nsfw.svg",
  5668. extra: 182 / 164,
  5669. bottom: 8.7 / 190.5
  5670. }
  5671. },
  5672. maleNsfw: {
  5673. height: math.unit(8, "feet"),
  5674. weight: math.unit(350, "lb"),
  5675. name: "Male (NSFW)",
  5676. image: {
  5677. source: "./media/characters/sigvald/male-nsfw.svg",
  5678. extra: 182 / 164,
  5679. bottom: 8.7 / 190.5
  5680. }
  5681. },
  5682. hermNsfw: {
  5683. height: math.unit(8, "feet"),
  5684. weight: math.unit(350, "lb"),
  5685. name: "Herm (NSFW)",
  5686. image: {
  5687. source: "./media/characters/sigvald/herm-nsfw.svg",
  5688. extra: 182 / 164,
  5689. bottom: 8.7 / 190.5
  5690. }
  5691. },
  5692. dick: {
  5693. height: math.unit(2.36, "feet"),
  5694. name: "Dick",
  5695. image: {
  5696. source: "./media/characters/sigvald/dick.svg"
  5697. }
  5698. },
  5699. eye: {
  5700. height: math.unit(0.31, "feet"),
  5701. name: "Eye",
  5702. image: {
  5703. source: "./media/characters/sigvald/eye.svg"
  5704. }
  5705. },
  5706. mouth: {
  5707. height: math.unit(0.92, "feet"),
  5708. name: "Mouth",
  5709. image: {
  5710. source: "./media/characters/sigvald/mouth.svg"
  5711. }
  5712. },
  5713. paws: {
  5714. height: math.unit(2.2, "feet"),
  5715. name: "Paws",
  5716. image: {
  5717. source: "./media/characters/sigvald/paws.svg"
  5718. }
  5719. }
  5720. },
  5721. [
  5722. {
  5723. name: "Normal",
  5724. height: math.unit(8, "feet")
  5725. },
  5726. {
  5727. name: "Large",
  5728. height: math.unit(12, "feet")
  5729. },
  5730. {
  5731. name: "Larger",
  5732. height: math.unit(20, "feet")
  5733. },
  5734. {
  5735. name: "Macro",
  5736. height: math.unit(150, "feet")
  5737. },
  5738. {
  5739. name: "Macro+",
  5740. height: math.unit(200, "feet"),
  5741. default: true
  5742. },
  5743. ]
  5744. ))
  5745. characterMakers.push(() => makeCharacter(
  5746. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5747. {
  5748. side: {
  5749. height: math.unit(12, "feet"),
  5750. weight: math.unit(2000, "kg"),
  5751. name: "Side",
  5752. image: {
  5753. source: "./media/characters/scott/side.svg",
  5754. extra: 754 / 724,
  5755. bottom: 0.069
  5756. }
  5757. },
  5758. upright: {
  5759. height: math.unit(12, "feet"),
  5760. weight: math.unit(2000, "kg"),
  5761. name: "Upright",
  5762. image: {
  5763. source: "./media/characters/scott/upright.svg",
  5764. extra: 3881 / 3722,
  5765. bottom: 0.05
  5766. }
  5767. },
  5768. },
  5769. [
  5770. {
  5771. name: "Normal",
  5772. height: math.unit(12, "feet"),
  5773. default: true
  5774. },
  5775. ]
  5776. ))
  5777. characterMakers.push(() => makeCharacter(
  5778. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5779. {
  5780. side: {
  5781. height: math.unit(8, "meters"),
  5782. weight: math.unit(84755, "lbs"),
  5783. name: "Side",
  5784. image: {
  5785. source: "./media/characters/tobias/side.svg",
  5786. extra: 1474 / 1096,
  5787. bottom: 38.9 / 1513.1235
  5788. }
  5789. },
  5790. },
  5791. [
  5792. {
  5793. name: "Normal",
  5794. height: math.unit(8, "meters"),
  5795. default: true
  5796. },
  5797. ]
  5798. ))
  5799. characterMakers.push(() => makeCharacter(
  5800. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5801. {
  5802. front: {
  5803. height: math.unit(5.5, "feet"),
  5804. weight: math.unit(400, "lbs"),
  5805. name: "Front",
  5806. image: {
  5807. source: "./media/characters/kieran/front.svg",
  5808. extra: 2694 / 2364,
  5809. bottom: 217 / 2908
  5810. }
  5811. },
  5812. side: {
  5813. height: math.unit(5.5, "feet"),
  5814. weight: math.unit(400, "lbs"),
  5815. name: "Side",
  5816. image: {
  5817. source: "./media/characters/kieran/side.svg",
  5818. extra: 875 / 777,
  5819. bottom: 84.6 / 959
  5820. }
  5821. },
  5822. },
  5823. [
  5824. {
  5825. name: "Normal",
  5826. height: math.unit(5.5, "feet"),
  5827. default: true
  5828. },
  5829. ]
  5830. ))
  5831. characterMakers.push(() => makeCharacter(
  5832. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5833. {
  5834. side: {
  5835. height: math.unit(2, "meters"),
  5836. weight: math.unit(70, "kg"),
  5837. name: "Side",
  5838. image: {
  5839. source: "./media/characters/sanya/side.svg",
  5840. bottom: 0.02,
  5841. extra: 1.02
  5842. }
  5843. },
  5844. },
  5845. [
  5846. {
  5847. name: "Small",
  5848. height: math.unit(2, "meters")
  5849. },
  5850. {
  5851. name: "Normal",
  5852. height: math.unit(3, "meters")
  5853. },
  5854. {
  5855. name: "Macro",
  5856. height: math.unit(16, "meters"),
  5857. default: true
  5858. },
  5859. ]
  5860. ))
  5861. characterMakers.push(() => makeCharacter(
  5862. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5863. {
  5864. front: {
  5865. height: math.unit(2, "meters"),
  5866. weight: math.unit(120, "kg"),
  5867. name: "Front",
  5868. image: {
  5869. source: "./media/characters/miranda/front.svg",
  5870. extra: 195 / 185,
  5871. bottom: 10.9 / 206.5
  5872. }
  5873. },
  5874. back: {
  5875. height: math.unit(2, "meters"),
  5876. weight: math.unit(120, "kg"),
  5877. name: "Back",
  5878. image: {
  5879. source: "./media/characters/miranda/back.svg",
  5880. extra: 201 / 193,
  5881. bottom: 2.3 / 203.7
  5882. }
  5883. },
  5884. },
  5885. [
  5886. {
  5887. name: "Normal",
  5888. height: math.unit(10, "feet"),
  5889. default: true
  5890. }
  5891. ]
  5892. ))
  5893. characterMakers.push(() => makeCharacter(
  5894. { name: "James", species: ["deer"], tags: ["anthro"] },
  5895. {
  5896. side: {
  5897. height: math.unit(2, "meters"),
  5898. weight: math.unit(100, "kg"),
  5899. name: "Front",
  5900. image: {
  5901. source: "./media/characters/james/front.svg",
  5902. extra: 10 / 8.5
  5903. }
  5904. },
  5905. },
  5906. [
  5907. {
  5908. name: "Normal",
  5909. height: math.unit(8.5, "feet"),
  5910. default: true
  5911. }
  5912. ]
  5913. ))
  5914. characterMakers.push(() => makeCharacter(
  5915. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5916. {
  5917. side: {
  5918. height: math.unit(9.5, "feet"),
  5919. weight: math.unit(2500, "lbs"),
  5920. name: "Side",
  5921. image: {
  5922. source: "./media/characters/heather/side.svg"
  5923. }
  5924. },
  5925. },
  5926. [
  5927. {
  5928. name: "Normal",
  5929. height: math.unit(9.5, "feet"),
  5930. default: true
  5931. }
  5932. ]
  5933. ))
  5934. characterMakers.push(() => makeCharacter(
  5935. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5936. {
  5937. side: {
  5938. height: math.unit(6.5, "feet"),
  5939. weight: math.unit(400, "lbs"),
  5940. name: "Side",
  5941. image: {
  5942. source: "./media/characters/lukas/side.svg",
  5943. extra: 7.25 / 6.5
  5944. }
  5945. },
  5946. },
  5947. [
  5948. {
  5949. name: "Normal",
  5950. height: math.unit(6.5, "feet"),
  5951. default: true
  5952. }
  5953. ]
  5954. ))
  5955. characterMakers.push(() => makeCharacter(
  5956. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5957. {
  5958. side: {
  5959. height: math.unit(5, "feet"),
  5960. weight: math.unit(3000, "lbs"),
  5961. name: "Side",
  5962. image: {
  5963. source: "./media/characters/louise/side.svg"
  5964. }
  5965. },
  5966. },
  5967. [
  5968. {
  5969. name: "Normal",
  5970. height: math.unit(5, "feet"),
  5971. default: true
  5972. }
  5973. ]
  5974. ))
  5975. characterMakers.push(() => makeCharacter(
  5976. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5977. {
  5978. side: {
  5979. height: math.unit(6, "feet"),
  5980. weight: math.unit(150, "lbs"),
  5981. name: "Side",
  5982. image: {
  5983. source: "./media/characters/ramona/side.svg",
  5984. extra: 871/854,
  5985. bottom: 41/912
  5986. }
  5987. },
  5988. },
  5989. [
  5990. {
  5991. name: "Normal",
  5992. height: math.unit(6 + 4/12, "feet")
  5993. },
  5994. {
  5995. name: "Minimacro",
  5996. height: math.unit(5.3, "meters"),
  5997. default: true
  5998. },
  5999. {
  6000. name: "Macro",
  6001. height: math.unit(20, "stories")
  6002. },
  6003. {
  6004. name: "Macro+",
  6005. height: math.unit(50, "stories")
  6006. },
  6007. ]
  6008. ))
  6009. characterMakers.push(() => makeCharacter(
  6010. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6011. {
  6012. standing: {
  6013. height: math.unit(5.75, "feet"),
  6014. weight: math.unit(160, "lbs"),
  6015. name: "Standing",
  6016. image: {
  6017. source: "./media/characters/deerpuff/standing.svg",
  6018. extra: 682 / 624
  6019. }
  6020. },
  6021. sitting: {
  6022. height: math.unit(5.75 / 1.79, "feet"),
  6023. weight: math.unit(160, "lbs"),
  6024. name: "Sitting",
  6025. image: {
  6026. source: "./media/characters/deerpuff/sitting.svg",
  6027. bottom: 44 / 400,
  6028. extra: 1
  6029. }
  6030. },
  6031. taurLaying: {
  6032. height: math.unit(6, "feet"),
  6033. weight: math.unit(400, "lbs"),
  6034. name: "Taur (Laying)",
  6035. image: {
  6036. source: "./media/characters/deerpuff/taur-laying.svg"
  6037. }
  6038. },
  6039. },
  6040. [
  6041. {
  6042. name: "Puffball",
  6043. height: math.unit(6, "inches")
  6044. },
  6045. {
  6046. name: "Normalpuff",
  6047. height: math.unit(5.75, "feet")
  6048. },
  6049. {
  6050. name: "Macropuff",
  6051. height: math.unit(1500, "feet"),
  6052. default: true
  6053. },
  6054. {
  6055. name: "Megapuff",
  6056. height: math.unit(500, "miles")
  6057. },
  6058. {
  6059. name: "Gigapuff",
  6060. height: math.unit(250000, "miles")
  6061. },
  6062. {
  6063. name: "Omegapuff",
  6064. height: math.unit(1000, "lightyears")
  6065. },
  6066. ]
  6067. ))
  6068. characterMakers.push(() => makeCharacter(
  6069. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6070. {
  6071. stomping: {
  6072. height: math.unit(6, "feet"),
  6073. weight: math.unit(170, "lbs"),
  6074. name: "Stomping",
  6075. image: {
  6076. source: "./media/characters/vivian/stomping.svg"
  6077. }
  6078. },
  6079. sitting: {
  6080. height: math.unit(6 / 1.75, "feet"),
  6081. weight: math.unit(170, "lbs"),
  6082. name: "Sitting",
  6083. image: {
  6084. source: "./media/characters/vivian/sitting.svg",
  6085. bottom: 1 / 6.4,
  6086. extra: 1,
  6087. }
  6088. },
  6089. },
  6090. [
  6091. {
  6092. name: "Normal",
  6093. height: math.unit(7, "feet"),
  6094. default: true
  6095. },
  6096. {
  6097. name: "Macro",
  6098. height: math.unit(10, "stories")
  6099. },
  6100. {
  6101. name: "Macro+",
  6102. height: math.unit(30, "stories")
  6103. },
  6104. {
  6105. name: "Megamacro",
  6106. height: math.unit(10, "miles")
  6107. },
  6108. {
  6109. name: "Megamacro+",
  6110. height: math.unit(2750000, "meters")
  6111. },
  6112. ]
  6113. ))
  6114. characterMakers.push(() => makeCharacter(
  6115. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6116. {
  6117. front: {
  6118. height: math.unit(6, "feet"),
  6119. weight: math.unit(160, "lbs"),
  6120. name: "Front",
  6121. image: {
  6122. source: "./media/characters/prince/front.svg",
  6123. extra: 1938/1682,
  6124. bottom: 45/1983
  6125. }
  6126. },
  6127. back: {
  6128. height: math.unit(6, "feet"),
  6129. weight: math.unit(160, "lbs"),
  6130. name: "Back",
  6131. image: {
  6132. source: "./media/characters/prince/back.svg",
  6133. extra: 1955/1726,
  6134. bottom: 6/1961
  6135. }
  6136. },
  6137. },
  6138. [
  6139. {
  6140. name: "Normal",
  6141. height: math.unit(7.75, "feet"),
  6142. default: true
  6143. },
  6144. {
  6145. name: "Not cute",
  6146. height: math.unit(17, "feet")
  6147. },
  6148. {
  6149. name: "I said NOT",
  6150. height: math.unit(91, "feet")
  6151. },
  6152. {
  6153. name: "Please stop",
  6154. height: math.unit(560, "feet")
  6155. },
  6156. {
  6157. name: "What have you done",
  6158. height: math.unit(2200, "feet")
  6159. },
  6160. {
  6161. name: "Deer God",
  6162. height: math.unit(3.6, "miles")
  6163. },
  6164. ]
  6165. ))
  6166. characterMakers.push(() => makeCharacter(
  6167. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6168. {
  6169. standing: {
  6170. height: math.unit(6, "feet"),
  6171. weight: math.unit(300, "lbs"),
  6172. name: "Standing",
  6173. image: {
  6174. source: "./media/characters/psymon/standing.svg",
  6175. extra: 1888 / 1810,
  6176. bottom: 0.05
  6177. }
  6178. },
  6179. slithering: {
  6180. height: math.unit(6, "feet"),
  6181. weight: math.unit(300, "lbs"),
  6182. name: "Slithering",
  6183. image: {
  6184. source: "./media/characters/psymon/slithering.svg",
  6185. extra: 1330 / 1224
  6186. }
  6187. },
  6188. slitheringAlt: {
  6189. height: math.unit(6, "feet"),
  6190. weight: math.unit(300, "lbs"),
  6191. name: "Slithering (Alt)",
  6192. image: {
  6193. source: "./media/characters/psymon/slithering-alt.svg",
  6194. extra: 1330 / 1224
  6195. }
  6196. },
  6197. },
  6198. [
  6199. {
  6200. name: "Normal",
  6201. height: math.unit(11.25, "feet"),
  6202. default: true
  6203. },
  6204. {
  6205. name: "Large",
  6206. height: math.unit(27, "feet")
  6207. },
  6208. {
  6209. name: "Giant",
  6210. height: math.unit(87, "feet")
  6211. },
  6212. {
  6213. name: "Macro",
  6214. height: math.unit(365, "feet")
  6215. },
  6216. {
  6217. name: "Megamacro",
  6218. height: math.unit(3, "miles")
  6219. },
  6220. {
  6221. name: "World Serpent",
  6222. height: math.unit(8000, "miles")
  6223. },
  6224. ]
  6225. ))
  6226. characterMakers.push(() => makeCharacter(
  6227. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6228. {
  6229. front: {
  6230. height: math.unit(6, "feet"),
  6231. weight: math.unit(180, "lbs"),
  6232. name: "Front",
  6233. image: {
  6234. source: "./media/characters/daimos/front.svg",
  6235. extra: 4160 / 3897,
  6236. bottom: 0.021
  6237. }
  6238. }
  6239. },
  6240. [
  6241. {
  6242. name: "Normal",
  6243. height: math.unit(8, "feet"),
  6244. default: true
  6245. },
  6246. {
  6247. name: "Big Dog",
  6248. height: math.unit(22, "feet")
  6249. },
  6250. {
  6251. name: "Macro",
  6252. height: math.unit(127, "feet")
  6253. },
  6254. {
  6255. name: "Megamacro",
  6256. height: math.unit(3600, "feet")
  6257. },
  6258. ]
  6259. ))
  6260. characterMakers.push(() => makeCharacter(
  6261. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6262. {
  6263. side: {
  6264. height: math.unit(6, "feet"),
  6265. weight: math.unit(180, "lbs"),
  6266. name: "Side",
  6267. image: {
  6268. source: "./media/characters/blake/side.svg",
  6269. extra: 1212 / 1120,
  6270. bottom: 0.05
  6271. }
  6272. },
  6273. crouched: {
  6274. height: math.unit(6 * 0.57, "feet"),
  6275. weight: math.unit(180, "lbs"),
  6276. name: "Crouched",
  6277. image: {
  6278. source: "./media/characters/blake/crouched.svg",
  6279. extra: 840 / 587,
  6280. bottom: 0.04
  6281. }
  6282. },
  6283. bent: {
  6284. height: math.unit(6 * 0.75, "feet"),
  6285. weight: math.unit(180, "lbs"),
  6286. name: "Bent",
  6287. image: {
  6288. source: "./media/characters/blake/bent.svg",
  6289. extra: 592 / 544,
  6290. bottom: 0.035
  6291. }
  6292. },
  6293. },
  6294. [
  6295. {
  6296. name: "Normal",
  6297. height: math.unit(8 + 1 / 6, "feet"),
  6298. default: true
  6299. },
  6300. {
  6301. name: "Big Backside",
  6302. height: math.unit(37, "feet")
  6303. },
  6304. {
  6305. name: "Subway Shredder",
  6306. height: math.unit(72, "feet")
  6307. },
  6308. {
  6309. name: "City Carver",
  6310. height: math.unit(1675, "feet")
  6311. },
  6312. {
  6313. name: "Tectonic Tweaker",
  6314. height: math.unit(2300, "miles")
  6315. },
  6316. ]
  6317. ))
  6318. characterMakers.push(() => makeCharacter(
  6319. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6320. {
  6321. front: {
  6322. height: math.unit(6, "feet"),
  6323. weight: math.unit(180, "lbs"),
  6324. name: "Front",
  6325. image: {
  6326. source: "./media/characters/guisetto/front.svg",
  6327. extra: 856 / 817,
  6328. bottom: 0.06
  6329. }
  6330. },
  6331. airborne: {
  6332. height: math.unit(6, "feet"),
  6333. weight: math.unit(180, "lbs"),
  6334. name: "Airborne",
  6335. image: {
  6336. source: "./media/characters/guisetto/airborne.svg",
  6337. extra: 584 / 525
  6338. }
  6339. },
  6340. },
  6341. [
  6342. {
  6343. name: "Normal",
  6344. height: math.unit(10 + 11 / 12, "feet"),
  6345. default: true
  6346. },
  6347. {
  6348. name: "Large",
  6349. height: math.unit(35, "feet")
  6350. },
  6351. {
  6352. name: "Macro",
  6353. height: math.unit(475, "feet")
  6354. },
  6355. ]
  6356. ))
  6357. characterMakers.push(() => makeCharacter(
  6358. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6359. {
  6360. front: {
  6361. height: math.unit(6, "feet"),
  6362. weight: math.unit(180, "lbs"),
  6363. name: "Front",
  6364. image: {
  6365. source: "./media/characters/luxor/front.svg",
  6366. extra: 2940 / 2152
  6367. }
  6368. },
  6369. back: {
  6370. height: math.unit(6, "feet"),
  6371. weight: math.unit(180, "lbs"),
  6372. name: "Back",
  6373. image: {
  6374. source: "./media/characters/luxor/back.svg",
  6375. extra: 1083 / 960
  6376. }
  6377. },
  6378. },
  6379. [
  6380. {
  6381. name: "Normal",
  6382. height: math.unit(5 + 5 / 6, "feet"),
  6383. default: true
  6384. },
  6385. {
  6386. name: "Lamp",
  6387. height: math.unit(50, "feet")
  6388. },
  6389. {
  6390. name: "Lämp",
  6391. height: math.unit(300, "feet")
  6392. },
  6393. {
  6394. name: "The sun is a lamp",
  6395. height: math.unit(250000, "miles")
  6396. },
  6397. ]
  6398. ))
  6399. characterMakers.push(() => makeCharacter(
  6400. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6401. {
  6402. front: {
  6403. height: math.unit(6, "feet"),
  6404. weight: math.unit(50, "lbs"),
  6405. name: "Front",
  6406. image: {
  6407. source: "./media/characters/huoyan/front.svg"
  6408. }
  6409. },
  6410. side: {
  6411. height: math.unit(6, "feet"),
  6412. weight: math.unit(180, "lbs"),
  6413. name: "Side",
  6414. image: {
  6415. source: "./media/characters/huoyan/side.svg"
  6416. }
  6417. },
  6418. },
  6419. [
  6420. {
  6421. name: "Chef",
  6422. height: math.unit(9, "feet")
  6423. },
  6424. {
  6425. name: "Normal",
  6426. height: math.unit(65, "feet"),
  6427. default: true
  6428. },
  6429. {
  6430. name: "Macro",
  6431. height: math.unit(780, "feet")
  6432. },
  6433. {
  6434. name: "Flaming Mountain",
  6435. height: math.unit(4.8, "miles")
  6436. },
  6437. {
  6438. name: "Celestial",
  6439. height: math.unit(765000, "miles")
  6440. },
  6441. ]
  6442. ))
  6443. characterMakers.push(() => makeCharacter(
  6444. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6445. {
  6446. front: {
  6447. height: math.unit(5 + 3 / 4, "feet"),
  6448. weight: math.unit(120, "lbs"),
  6449. name: "Front",
  6450. image: {
  6451. source: "./media/characters/tails/front.svg"
  6452. }
  6453. }
  6454. },
  6455. [
  6456. {
  6457. name: "Normal",
  6458. height: math.unit(5 + 3 / 4, "feet"),
  6459. default: true
  6460. }
  6461. ]
  6462. ))
  6463. characterMakers.push(() => makeCharacter(
  6464. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6465. {
  6466. front: {
  6467. height: math.unit(4, "feet"),
  6468. weight: math.unit(50, "lbs"),
  6469. name: "Front",
  6470. image: {
  6471. source: "./media/characters/rainy/front.svg"
  6472. }
  6473. }
  6474. },
  6475. [
  6476. {
  6477. name: "Macro",
  6478. height: math.unit(800, "feet"),
  6479. default: true
  6480. }
  6481. ]
  6482. ))
  6483. characterMakers.push(() => makeCharacter(
  6484. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6485. {
  6486. front: {
  6487. height: math.unit(6, "feet"),
  6488. weight: math.unit(150, "lbs"),
  6489. name: "Front",
  6490. image: {
  6491. source: "./media/characters/rainier/front.svg"
  6492. }
  6493. }
  6494. },
  6495. [
  6496. {
  6497. name: "Micro",
  6498. height: math.unit(2, "mm"),
  6499. default: true
  6500. }
  6501. ]
  6502. ))
  6503. characterMakers.push(() => makeCharacter(
  6504. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6505. {
  6506. front: {
  6507. height: math.unit(8 + 4/12, "feet"),
  6508. weight: math.unit(450, "kilograms"),
  6509. volume: math.unit(5, "cups"),
  6510. name: "Front",
  6511. image: {
  6512. source: "./media/characters/andy-renard/front.svg",
  6513. extra: 1839/1726,
  6514. bottom: 134/1973
  6515. }
  6516. },
  6517. back: {
  6518. height: math.unit(8 + 4/12, "feet"),
  6519. weight: math.unit(450, "kilograms"),
  6520. volume: math.unit(5, "cups"),
  6521. name: "Back",
  6522. image: {
  6523. source: "./media/characters/andy-renard/back.svg",
  6524. extra: 1838/1710,
  6525. bottom: 105/1943
  6526. }
  6527. },
  6528. },
  6529. [
  6530. {
  6531. name: "Tall",
  6532. height: math.unit(8 + 4/12, "feet")
  6533. },
  6534. {
  6535. name: "Mini Macro",
  6536. height: math.unit(15, "feet"),
  6537. default: true
  6538. },
  6539. {
  6540. name: "Macro",
  6541. height: math.unit(100, "feet")
  6542. },
  6543. {
  6544. name: "Mega Macro",
  6545. height: math.unit(1000, "feet")
  6546. },
  6547. {
  6548. name: "Giga Macro",
  6549. height: math.unit(10, "miles")
  6550. },
  6551. {
  6552. name: "God Macro",
  6553. height: math.unit(1, "multiverse")
  6554. },
  6555. ]
  6556. ))
  6557. characterMakers.push(() => makeCharacter(
  6558. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6559. {
  6560. front: {
  6561. height: math.unit(6, "feet"),
  6562. weight: math.unit(210, "lbs"),
  6563. name: "Front",
  6564. image: {
  6565. source: "./media/characters/cimmaron/front-sfw.svg",
  6566. extra: 701 / 676,
  6567. bottom: 0.046
  6568. }
  6569. },
  6570. back: {
  6571. height: math.unit(6, "feet"),
  6572. weight: math.unit(210, "lbs"),
  6573. name: "Back",
  6574. image: {
  6575. source: "./media/characters/cimmaron/back-sfw.svg",
  6576. extra: 701 / 676,
  6577. bottom: 0.046
  6578. }
  6579. },
  6580. frontNsfw: {
  6581. height: math.unit(6, "feet"),
  6582. weight: math.unit(210, "lbs"),
  6583. name: "Front (NSFW)",
  6584. image: {
  6585. source: "./media/characters/cimmaron/front-nsfw.svg",
  6586. extra: 701 / 676,
  6587. bottom: 0.046
  6588. }
  6589. },
  6590. backNsfw: {
  6591. height: math.unit(6, "feet"),
  6592. weight: math.unit(210, "lbs"),
  6593. name: "Back (NSFW)",
  6594. image: {
  6595. source: "./media/characters/cimmaron/back-nsfw.svg",
  6596. extra: 701 / 676,
  6597. bottom: 0.046
  6598. }
  6599. },
  6600. dick: {
  6601. height: math.unit(1.714, "feet"),
  6602. name: "Dick",
  6603. image: {
  6604. source: "./media/characters/cimmaron/dick.svg"
  6605. }
  6606. },
  6607. },
  6608. [
  6609. {
  6610. name: "Normal",
  6611. height: math.unit(6, "feet"),
  6612. default: true
  6613. },
  6614. {
  6615. name: "Macro Mayor",
  6616. height: math.unit(350, "meters")
  6617. },
  6618. ]
  6619. ))
  6620. characterMakers.push(() => makeCharacter(
  6621. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6622. {
  6623. front: {
  6624. height: math.unit(6, "feet"),
  6625. weight: math.unit(200, "lbs"),
  6626. name: "Front",
  6627. image: {
  6628. source: "./media/characters/akari/front.svg",
  6629. extra: 962 / 901,
  6630. bottom: 0.04
  6631. }
  6632. }
  6633. },
  6634. [
  6635. {
  6636. name: "Micro",
  6637. height: math.unit(5, "inches"),
  6638. default: true
  6639. },
  6640. {
  6641. name: "Normal",
  6642. height: math.unit(7, "feet")
  6643. },
  6644. ]
  6645. ))
  6646. characterMakers.push(() => makeCharacter(
  6647. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6648. {
  6649. front: {
  6650. height: math.unit(6, "feet"),
  6651. weight: math.unit(140, "lbs"),
  6652. name: "Front",
  6653. image: {
  6654. source: "./media/characters/cynosura/front.svg",
  6655. extra: 437/410,
  6656. bottom: 9/446
  6657. }
  6658. },
  6659. back: {
  6660. height: math.unit(6, "feet"),
  6661. weight: math.unit(140, "lbs"),
  6662. name: "Back",
  6663. image: {
  6664. source: "./media/characters/cynosura/back.svg",
  6665. extra: 1304/1160,
  6666. bottom: 71/1375
  6667. }
  6668. },
  6669. },
  6670. [
  6671. {
  6672. name: "Micro",
  6673. height: math.unit(4, "inches")
  6674. },
  6675. {
  6676. name: "Normal",
  6677. height: math.unit(5.75, "feet"),
  6678. default: true
  6679. },
  6680. {
  6681. name: "Tall",
  6682. height: math.unit(10, "feet")
  6683. },
  6684. {
  6685. name: "Big",
  6686. height: math.unit(20, "feet")
  6687. },
  6688. {
  6689. name: "Macro",
  6690. height: math.unit(50, "feet")
  6691. },
  6692. ]
  6693. ))
  6694. characterMakers.push(() => makeCharacter(
  6695. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6696. {
  6697. front: {
  6698. height: math.unit(13 + 2/12, "feet"),
  6699. weight: math.unit(800, "kg"),
  6700. name: "Front",
  6701. image: {
  6702. source: "./media/characters/gin/front.svg",
  6703. extra: 1312/1191,
  6704. bottom: 45/1357
  6705. }
  6706. },
  6707. mouth: {
  6708. height: math.unit(2.39 * 1.8, "feet"),
  6709. name: "Mouth",
  6710. image: {
  6711. source: "./media/characters/gin/mouth.svg"
  6712. }
  6713. },
  6714. hand: {
  6715. height: math.unit(1.57 * 2.19, "feet"),
  6716. name: "Hand",
  6717. image: {
  6718. source: "./media/characters/gin/hand.svg"
  6719. }
  6720. },
  6721. foot: {
  6722. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6723. name: "Foot",
  6724. image: {
  6725. source: "./media/characters/gin/foot.svg"
  6726. }
  6727. },
  6728. sole: {
  6729. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6730. name: "Sole",
  6731. image: {
  6732. source: "./media/characters/gin/sole.svg"
  6733. }
  6734. },
  6735. },
  6736. [
  6737. {
  6738. name: "Very Small",
  6739. height: math.unit(13 + 2 / 12, "feet")
  6740. },
  6741. {
  6742. name: "Micro",
  6743. height: math.unit(600, "miles")
  6744. },
  6745. {
  6746. name: "Regular",
  6747. height: math.unit(20, "earths"),
  6748. default: true
  6749. },
  6750. {
  6751. name: "Macro",
  6752. height: math.unit(2.2, "solarradii")
  6753. },
  6754. {
  6755. name: "Teramacro",
  6756. height: math.unit(1.2, "galaxies")
  6757. },
  6758. {
  6759. name: "Omegamacro",
  6760. height: math.unit(200, "universes")
  6761. },
  6762. ]
  6763. ))
  6764. characterMakers.push(() => makeCharacter(
  6765. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6766. {
  6767. front: {
  6768. height: math.unit(6 + 1 / 6, "feet"),
  6769. weight: math.unit(178, "lbs"),
  6770. name: "Front",
  6771. image: {
  6772. source: "./media/characters/guy/front.svg"
  6773. }
  6774. }
  6775. },
  6776. [
  6777. {
  6778. name: "Normal",
  6779. height: math.unit(6 + 1 / 6, "feet"),
  6780. default: true
  6781. },
  6782. {
  6783. name: "Large",
  6784. height: math.unit(25 + 7 / 12, "feet")
  6785. },
  6786. {
  6787. name: "Macro",
  6788. height: math.unit(60 + 9 / 12, "feet")
  6789. },
  6790. {
  6791. name: "Macro+",
  6792. height: math.unit(246, "feet")
  6793. },
  6794. {
  6795. name: "Macro++",
  6796. height: math.unit(878, "feet")
  6797. }
  6798. ]
  6799. ))
  6800. characterMakers.push(() => makeCharacter(
  6801. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6802. {
  6803. front: {
  6804. height: math.unit(9, "feet"),
  6805. weight: math.unit(800, "lbs"),
  6806. name: "Front",
  6807. image: {
  6808. source: "./media/characters/tiberius/front.svg",
  6809. extra: 2295 / 2071
  6810. }
  6811. },
  6812. back: {
  6813. height: math.unit(9, "feet"),
  6814. weight: math.unit(800, "lbs"),
  6815. name: "Back",
  6816. image: {
  6817. source: "./media/characters/tiberius/back.svg",
  6818. extra: 2373 / 2160
  6819. }
  6820. },
  6821. },
  6822. [
  6823. {
  6824. name: "Normal",
  6825. height: math.unit(9, "feet"),
  6826. default: true
  6827. }
  6828. ]
  6829. ))
  6830. characterMakers.push(() => makeCharacter(
  6831. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6832. {
  6833. front: {
  6834. height: math.unit(6, "feet"),
  6835. weight: math.unit(600, "lbs"),
  6836. name: "Front",
  6837. image: {
  6838. source: "./media/characters/surgo/front.svg",
  6839. extra: 3591 / 2227
  6840. }
  6841. },
  6842. back: {
  6843. height: math.unit(6, "feet"),
  6844. weight: math.unit(600, "lbs"),
  6845. name: "Back",
  6846. image: {
  6847. source: "./media/characters/surgo/back.svg",
  6848. extra: 3557 / 2228
  6849. }
  6850. },
  6851. laying: {
  6852. height: math.unit(6 * 0.85, "feet"),
  6853. weight: math.unit(600, "lbs"),
  6854. name: "Laying",
  6855. image: {
  6856. source: "./media/characters/surgo/laying.svg"
  6857. }
  6858. },
  6859. },
  6860. [
  6861. {
  6862. name: "Normal",
  6863. height: math.unit(6, "feet"),
  6864. default: true
  6865. }
  6866. ]
  6867. ))
  6868. characterMakers.push(() => makeCharacter(
  6869. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6870. {
  6871. side: {
  6872. height: math.unit(6, "feet"),
  6873. weight: math.unit(150, "lbs"),
  6874. name: "Side",
  6875. image: {
  6876. source: "./media/characters/cibus/side.svg",
  6877. extra: 800 / 400
  6878. }
  6879. },
  6880. },
  6881. [
  6882. {
  6883. name: "Normal",
  6884. height: math.unit(6, "feet"),
  6885. default: true
  6886. }
  6887. ]
  6888. ))
  6889. characterMakers.push(() => makeCharacter(
  6890. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6891. {
  6892. front: {
  6893. height: math.unit(6, "feet"),
  6894. weight: math.unit(240, "lbs"),
  6895. name: "Front",
  6896. image: {
  6897. source: "./media/characters/nibbles/front.svg"
  6898. }
  6899. },
  6900. side: {
  6901. height: math.unit(6, "feet"),
  6902. weight: math.unit(240, "lbs"),
  6903. name: "Side",
  6904. image: {
  6905. source: "./media/characters/nibbles/side.svg"
  6906. }
  6907. },
  6908. },
  6909. [
  6910. {
  6911. name: "Normal",
  6912. height: math.unit(9, "feet"),
  6913. default: true
  6914. }
  6915. ]
  6916. ))
  6917. characterMakers.push(() => makeCharacter(
  6918. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6919. {
  6920. side: {
  6921. height: math.unit(5 + 1 / 6, "feet"),
  6922. weight: math.unit(130, "lbs"),
  6923. name: "Side",
  6924. image: {
  6925. source: "./media/characters/rikky/side.svg",
  6926. extra: 851 / 801
  6927. }
  6928. },
  6929. },
  6930. [
  6931. {
  6932. name: "Normal",
  6933. height: math.unit(5 + 1 / 6, "feet")
  6934. },
  6935. {
  6936. name: "Macro",
  6937. height: math.unit(152, "feet"),
  6938. default: true
  6939. },
  6940. {
  6941. name: "Megamacro",
  6942. height: math.unit(7, "miles")
  6943. }
  6944. ]
  6945. ))
  6946. characterMakers.push(() => makeCharacter(
  6947. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6948. {
  6949. side: {
  6950. height: math.unit(370, "cm"),
  6951. weight: math.unit(350, "lbs"),
  6952. name: "Side",
  6953. image: {
  6954. source: "./media/characters/malfressa/side.svg"
  6955. }
  6956. },
  6957. walking: {
  6958. height: math.unit(370, "cm"),
  6959. weight: math.unit(350, "lbs"),
  6960. name: "Walking",
  6961. image: {
  6962. source: "./media/characters/malfressa/walking.svg"
  6963. }
  6964. },
  6965. feral: {
  6966. height: math.unit(2500, "cm"),
  6967. weight: math.unit(100000, "lbs"),
  6968. name: "Feral",
  6969. image: {
  6970. source: "./media/characters/malfressa/feral.svg",
  6971. extra: 2108 / 837,
  6972. bottom: 0.02
  6973. }
  6974. },
  6975. },
  6976. [
  6977. {
  6978. name: "Normal",
  6979. height: math.unit(370, "cm")
  6980. },
  6981. {
  6982. name: "Macro",
  6983. height: math.unit(300, "meters"),
  6984. default: true
  6985. }
  6986. ]
  6987. ))
  6988. characterMakers.push(() => makeCharacter(
  6989. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6990. {
  6991. front: {
  6992. height: math.unit(6, "feet"),
  6993. weight: math.unit(60, "kg"),
  6994. name: "Front",
  6995. image: {
  6996. source: "./media/characters/jaro/front.svg",
  6997. extra: 845/817,
  6998. bottom: 45/890
  6999. }
  7000. },
  7001. back: {
  7002. height: math.unit(6, "feet"),
  7003. weight: math.unit(60, "kg"),
  7004. name: "Back",
  7005. image: {
  7006. source: "./media/characters/jaro/back.svg",
  7007. extra: 847/817,
  7008. bottom: 34/881
  7009. }
  7010. },
  7011. },
  7012. [
  7013. {
  7014. name: "Micro",
  7015. height: math.unit(7, "inches")
  7016. },
  7017. {
  7018. name: "Normal",
  7019. height: math.unit(5.5, "feet"),
  7020. default: true
  7021. },
  7022. {
  7023. name: "Minimacro",
  7024. height: math.unit(20, "feet")
  7025. },
  7026. {
  7027. name: "Macro",
  7028. height: math.unit(200, "meters")
  7029. }
  7030. ]
  7031. ))
  7032. characterMakers.push(() => makeCharacter(
  7033. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7034. {
  7035. front: {
  7036. height: math.unit(6, "feet"),
  7037. weight: math.unit(195, "lb"),
  7038. name: "Front",
  7039. image: {
  7040. source: "./media/characters/rogue/front.svg"
  7041. }
  7042. },
  7043. },
  7044. [
  7045. {
  7046. name: "Macro",
  7047. height: math.unit(90, "feet"),
  7048. default: true
  7049. },
  7050. ]
  7051. ))
  7052. characterMakers.push(() => makeCharacter(
  7053. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7054. {
  7055. standing: {
  7056. height: math.unit(5 + 8 / 12, "feet"),
  7057. weight: math.unit(140, "lb"),
  7058. name: "Standing",
  7059. image: {
  7060. source: "./media/characters/piper/standing.svg",
  7061. extra: 1440/1284,
  7062. bottom: 66/1506
  7063. }
  7064. },
  7065. running: {
  7066. height: math.unit(5 + 8 / 12, "feet"),
  7067. weight: math.unit(140, "lb"),
  7068. name: "Running",
  7069. image: {
  7070. source: "./media/characters/piper/running.svg",
  7071. extra: 3948/3655,
  7072. bottom: 0/3948
  7073. }
  7074. },
  7075. sole: {
  7076. height: math.unit(0.81, "feet"),
  7077. weight: math.unit(2, "kg"),
  7078. name: "Sole",
  7079. image: {
  7080. source: "./media/characters/piper/sole.svg"
  7081. }
  7082. },
  7083. nipple: {
  7084. height: math.unit(0.25, "feet"),
  7085. weight: math.unit(1.5, "lb"),
  7086. name: "Nipple",
  7087. image: {
  7088. source: "./media/characters/piper/nipple.svg"
  7089. }
  7090. },
  7091. head: {
  7092. height: math.unit(1.1, "feet"),
  7093. name: "Head",
  7094. image: {
  7095. source: "./media/characters/piper/head.svg"
  7096. }
  7097. },
  7098. },
  7099. [
  7100. {
  7101. name: "Micro",
  7102. height: math.unit(2, "inches")
  7103. },
  7104. {
  7105. name: "Normal",
  7106. height: math.unit(5 + 8 / 12, "feet")
  7107. },
  7108. {
  7109. name: "Macro",
  7110. height: math.unit(250, "feet"),
  7111. default: true
  7112. },
  7113. {
  7114. name: "Megamacro",
  7115. height: math.unit(7, "miles")
  7116. },
  7117. ]
  7118. ))
  7119. characterMakers.push(() => makeCharacter(
  7120. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7121. {
  7122. front: {
  7123. height: math.unit(6, "feet"),
  7124. weight: math.unit(220, "lb"),
  7125. name: "Front",
  7126. image: {
  7127. source: "./media/characters/gemini/front.svg"
  7128. }
  7129. },
  7130. back: {
  7131. height: math.unit(6, "feet"),
  7132. weight: math.unit(220, "lb"),
  7133. name: "Back",
  7134. image: {
  7135. source: "./media/characters/gemini/back.svg"
  7136. }
  7137. },
  7138. kneeling: {
  7139. height: math.unit(6 / 1.5, "feet"),
  7140. weight: math.unit(220, "lb"),
  7141. name: "Kneeling",
  7142. image: {
  7143. source: "./media/characters/gemini/kneeling.svg",
  7144. bottom: 0.02
  7145. }
  7146. },
  7147. },
  7148. [
  7149. {
  7150. name: "Macro",
  7151. height: math.unit(300, "meters"),
  7152. default: true
  7153. },
  7154. {
  7155. name: "Megamacro",
  7156. height: math.unit(6900, "meters")
  7157. },
  7158. ]
  7159. ))
  7160. characterMakers.push(() => makeCharacter(
  7161. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7162. {
  7163. anthro: {
  7164. height: math.unit(2.35, "meters"),
  7165. weight: math.unit(73, "kg"),
  7166. name: "Anthro",
  7167. image: {
  7168. source: "./media/characters/alicia/anthro.svg",
  7169. extra: 2571 / 2385,
  7170. bottom: 75 / 2648
  7171. }
  7172. },
  7173. paw: {
  7174. height: math.unit(1.32, "feet"),
  7175. name: "Paw",
  7176. image: {
  7177. source: "./media/characters/alicia/paw.svg"
  7178. }
  7179. },
  7180. feral: {
  7181. height: math.unit(1.69, "meters"),
  7182. weight: math.unit(73, "kg"),
  7183. name: "Feral",
  7184. image: {
  7185. source: "./media/characters/alicia/feral.svg",
  7186. extra: 2123 / 1715,
  7187. bottom: 222 / 2349
  7188. }
  7189. },
  7190. },
  7191. [
  7192. {
  7193. name: "Normal",
  7194. height: math.unit(2.35, "meters")
  7195. },
  7196. {
  7197. name: "Macro",
  7198. height: math.unit(60, "meters"),
  7199. default: true
  7200. },
  7201. {
  7202. name: "Megamacro",
  7203. height: math.unit(10000, "kilometers")
  7204. },
  7205. ]
  7206. ))
  7207. characterMakers.push(() => makeCharacter(
  7208. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7209. {
  7210. front: {
  7211. height: math.unit(7, "feet"),
  7212. weight: math.unit(250, "lbs"),
  7213. name: "Front",
  7214. image: {
  7215. source: "./media/characters/archy/front.svg"
  7216. }
  7217. }
  7218. },
  7219. [
  7220. {
  7221. name: "Micro",
  7222. height: math.unit(1, "inch")
  7223. },
  7224. {
  7225. name: "Shorty",
  7226. height: math.unit(5, "feet")
  7227. },
  7228. {
  7229. name: "Normal",
  7230. height: math.unit(7, "feet")
  7231. },
  7232. {
  7233. name: "Macro",
  7234. height: math.unit(600, "meters"),
  7235. default: true
  7236. },
  7237. {
  7238. name: "Megamacro",
  7239. height: math.unit(1, "mile")
  7240. },
  7241. ]
  7242. ))
  7243. characterMakers.push(() => makeCharacter(
  7244. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7245. {
  7246. front: {
  7247. height: math.unit(1.65, "meters"),
  7248. weight: math.unit(74, "kg"),
  7249. name: "Front",
  7250. image: {
  7251. source: "./media/characters/berri/front.svg",
  7252. extra: 857 / 837,
  7253. bottom: 18 / 877
  7254. }
  7255. },
  7256. bum: {
  7257. height: math.unit(1.46, "feet"),
  7258. name: "Bum",
  7259. image: {
  7260. source: "./media/characters/berri/bum.svg"
  7261. }
  7262. },
  7263. mouth: {
  7264. height: math.unit(0.44, "feet"),
  7265. name: "Mouth",
  7266. image: {
  7267. source: "./media/characters/berri/mouth.svg"
  7268. }
  7269. },
  7270. paw: {
  7271. height: math.unit(0.826, "feet"),
  7272. name: "Paw",
  7273. image: {
  7274. source: "./media/characters/berri/paw.svg"
  7275. }
  7276. },
  7277. },
  7278. [
  7279. {
  7280. name: "Normal",
  7281. height: math.unit(1.65, "meters")
  7282. },
  7283. {
  7284. name: "Macro",
  7285. height: math.unit(60, "m"),
  7286. default: true
  7287. },
  7288. {
  7289. name: "Megamacro",
  7290. height: math.unit(9.213, "km")
  7291. },
  7292. {
  7293. name: "Planet Eater",
  7294. height: math.unit(489, "megameters")
  7295. },
  7296. {
  7297. name: "Teramacro",
  7298. height: math.unit(2471635000000, "meters")
  7299. },
  7300. {
  7301. name: "Examacro",
  7302. height: math.unit(8.0624e+26, "meters")
  7303. }
  7304. ]
  7305. ))
  7306. characterMakers.push(() => makeCharacter(
  7307. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7308. {
  7309. front: {
  7310. height: math.unit(1.72, "meters"),
  7311. weight: math.unit(68, "kg"),
  7312. name: "Front",
  7313. image: {
  7314. source: "./media/characters/lexi/front.svg"
  7315. }
  7316. }
  7317. },
  7318. [
  7319. {
  7320. name: "Very Smol",
  7321. height: math.unit(10, "mm")
  7322. },
  7323. {
  7324. name: "Micro",
  7325. height: math.unit(6.8, "cm"),
  7326. default: true
  7327. },
  7328. {
  7329. name: "Normal",
  7330. height: math.unit(1.72, "m")
  7331. }
  7332. ]
  7333. ))
  7334. characterMakers.push(() => makeCharacter(
  7335. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7336. {
  7337. front: {
  7338. height: math.unit(1.69, "meters"),
  7339. weight: math.unit(68, "kg"),
  7340. name: "Front",
  7341. image: {
  7342. source: "./media/characters/martin/front.svg",
  7343. extra: 596 / 581
  7344. }
  7345. }
  7346. },
  7347. [
  7348. {
  7349. name: "Micro",
  7350. height: math.unit(6.85, "cm"),
  7351. default: true
  7352. },
  7353. {
  7354. name: "Normal",
  7355. height: math.unit(1.69, "m")
  7356. }
  7357. ]
  7358. ))
  7359. characterMakers.push(() => makeCharacter(
  7360. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7361. {
  7362. front: {
  7363. height: math.unit(1.69, "meters"),
  7364. weight: math.unit(68, "kg"),
  7365. name: "Front",
  7366. image: {
  7367. source: "./media/characters/juno/front.svg"
  7368. }
  7369. }
  7370. },
  7371. [
  7372. {
  7373. name: "Micro",
  7374. height: math.unit(7, "cm")
  7375. },
  7376. {
  7377. name: "Normal",
  7378. height: math.unit(1.89, "m")
  7379. },
  7380. {
  7381. name: "Macro",
  7382. height: math.unit(353, "meters"),
  7383. default: true
  7384. }
  7385. ]
  7386. ))
  7387. characterMakers.push(() => makeCharacter(
  7388. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7389. {
  7390. front: {
  7391. height: math.unit(1.93, "meters"),
  7392. weight: math.unit(83, "kg"),
  7393. name: "Front",
  7394. image: {
  7395. source: "./media/characters/samantha/front.svg"
  7396. }
  7397. },
  7398. frontClothed: {
  7399. height: math.unit(1.93, "meters"),
  7400. weight: math.unit(83, "kg"),
  7401. name: "Front (Clothed)",
  7402. image: {
  7403. source: "./media/characters/samantha/front-clothed.svg"
  7404. }
  7405. },
  7406. back: {
  7407. height: math.unit(1.93, "meters"),
  7408. weight: math.unit(83, "kg"),
  7409. name: "Back",
  7410. image: {
  7411. source: "./media/characters/samantha/back.svg"
  7412. }
  7413. },
  7414. },
  7415. [
  7416. {
  7417. name: "Normal",
  7418. height: math.unit(1.93, "m")
  7419. },
  7420. {
  7421. name: "Macro",
  7422. height: math.unit(74, "meters"),
  7423. default: true
  7424. },
  7425. {
  7426. name: "Macro+",
  7427. height: math.unit(223, "meters"),
  7428. },
  7429. {
  7430. name: "Megamacro",
  7431. height: math.unit(8381, "meters"),
  7432. },
  7433. {
  7434. name: "Megamacro+",
  7435. height: math.unit(12000, "kilometers")
  7436. },
  7437. ]
  7438. ))
  7439. characterMakers.push(() => makeCharacter(
  7440. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7441. {
  7442. front: {
  7443. height: math.unit(1.92, "meters"),
  7444. weight: math.unit(80, "kg"),
  7445. name: "Front",
  7446. image: {
  7447. source: "./media/characters/dr-clay/front.svg"
  7448. }
  7449. },
  7450. frontClothed: {
  7451. height: math.unit(1.92, "meters"),
  7452. weight: math.unit(80, "kg"),
  7453. name: "Front (Clothed)",
  7454. image: {
  7455. source: "./media/characters/dr-clay/front-clothed.svg"
  7456. }
  7457. }
  7458. },
  7459. [
  7460. {
  7461. name: "Normal",
  7462. height: math.unit(1.92, "m")
  7463. },
  7464. {
  7465. name: "Macro",
  7466. height: math.unit(214, "meters"),
  7467. default: true
  7468. },
  7469. {
  7470. name: "Macro+",
  7471. height: math.unit(12.237, "meters"),
  7472. },
  7473. {
  7474. name: "Megamacro",
  7475. height: math.unit(557, "megameters"),
  7476. },
  7477. {
  7478. name: "Unimaginable",
  7479. height: math.unit(120e9, "lightyears")
  7480. },
  7481. ]
  7482. ))
  7483. characterMakers.push(() => makeCharacter(
  7484. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7485. {
  7486. front: {
  7487. height: math.unit(2, "meters"),
  7488. weight: math.unit(80, "kg"),
  7489. name: "Front",
  7490. image: {
  7491. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7492. }
  7493. }
  7494. },
  7495. [
  7496. {
  7497. name: "Teramacro",
  7498. height: math.unit(500000, "lightyears"),
  7499. default: true
  7500. },
  7501. ]
  7502. ))
  7503. characterMakers.push(() => makeCharacter(
  7504. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7505. {
  7506. crux: {
  7507. height: math.unit(2, "meters"),
  7508. weight: math.unit(150, "kg"),
  7509. name: "Crux",
  7510. image: {
  7511. source: "./media/characters/vemus/crux.svg",
  7512. extra: 1074/936,
  7513. bottom: 23/1097
  7514. }
  7515. },
  7516. skunkTanuki: {
  7517. height: math.unit(2, "meters"),
  7518. weight: math.unit(150, "kg"),
  7519. name: "Skunk-Tanuki",
  7520. image: {
  7521. source: "./media/characters/vemus/skunk-tanuki.svg",
  7522. extra: 926/893,
  7523. bottom: 20/946
  7524. }
  7525. },
  7526. },
  7527. [
  7528. {
  7529. name: "Normal",
  7530. height: math.unit(4, "meters"),
  7531. default: true
  7532. },
  7533. {
  7534. name: "Big",
  7535. height: math.unit(8, "meters")
  7536. },
  7537. {
  7538. name: "Macro",
  7539. height: math.unit(100, "meters")
  7540. },
  7541. {
  7542. name: "Macro+",
  7543. height: math.unit(1500, "meters")
  7544. },
  7545. {
  7546. name: "Stellar",
  7547. height: math.unit(14e8, "meters")
  7548. },
  7549. ]
  7550. ))
  7551. characterMakers.push(() => makeCharacter(
  7552. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7553. {
  7554. front: {
  7555. height: math.unit(2, "meters"),
  7556. weight: math.unit(70, "kg"),
  7557. name: "Front",
  7558. image: {
  7559. source: "./media/characters/beherit/front.svg",
  7560. extra: 1234/1109,
  7561. bottom: 55/1289
  7562. }
  7563. }
  7564. },
  7565. [
  7566. {
  7567. name: "Normal",
  7568. height: math.unit(6, "feet")
  7569. },
  7570. {
  7571. name: "Lorg",
  7572. height: math.unit(25, "feet"),
  7573. default: true
  7574. },
  7575. {
  7576. name: "Lorger",
  7577. height: math.unit(75, "feet")
  7578. },
  7579. {
  7580. name: "Macro",
  7581. height: math.unit(200, "meters")
  7582. },
  7583. ]
  7584. ))
  7585. characterMakers.push(() => makeCharacter(
  7586. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7587. {
  7588. front: {
  7589. height: math.unit(2, "meters"),
  7590. weight: math.unit(150, "kg"),
  7591. name: "Front",
  7592. image: {
  7593. source: "./media/characters/everett/front.svg",
  7594. extra: 1017/866,
  7595. bottom: 86/1103
  7596. }
  7597. },
  7598. paw: {
  7599. height: math.unit(2 / 3.6, "meters"),
  7600. name: "Paw",
  7601. image: {
  7602. source: "./media/characters/everett/paw.svg"
  7603. }
  7604. },
  7605. },
  7606. [
  7607. {
  7608. name: "Normal",
  7609. height: math.unit(15, "feet"),
  7610. default: true
  7611. },
  7612. {
  7613. name: "Lorg",
  7614. height: math.unit(70, "feet"),
  7615. default: true
  7616. },
  7617. {
  7618. name: "Lorger",
  7619. height: math.unit(250, "feet")
  7620. },
  7621. {
  7622. name: "Macro",
  7623. height: math.unit(500, "meters")
  7624. },
  7625. ]
  7626. ))
  7627. characterMakers.push(() => makeCharacter(
  7628. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7629. {
  7630. front: {
  7631. height: math.unit(2, "meters"),
  7632. weight: math.unit(86, "kg"),
  7633. name: "Front",
  7634. image: {
  7635. source: "./media/characters/rose/front.svg",
  7636. extra: 1785/1636,
  7637. bottom: 30/1815
  7638. },
  7639. form: "liom",
  7640. default: true
  7641. },
  7642. frontSporty: {
  7643. height: math.unit(2, "meters"),
  7644. weight: math.unit(86, "kg"),
  7645. name: "Front (Sporty)",
  7646. image: {
  7647. source: "./media/characters/rose/front-sporty.svg",
  7648. extra: 350/335,
  7649. bottom: 10/360
  7650. },
  7651. form: "liom"
  7652. },
  7653. frontAlt: {
  7654. height: math.unit(1.6, "meters"),
  7655. weight: math.unit(86, "kg"),
  7656. name: "Front (Alt)",
  7657. image: {
  7658. source: "./media/characters/rose/front-alt.svg",
  7659. extra: 299/283,
  7660. bottom: 3/302
  7661. },
  7662. form: "liom"
  7663. },
  7664. plush: {
  7665. height: math.unit(2, "meters"),
  7666. weight: math.unit(86/3, "kg"),
  7667. name: "Plush",
  7668. image: {
  7669. source: "./media/characters/rose/plush.svg",
  7670. extra: 361/337,
  7671. bottom: 11/372
  7672. },
  7673. form: "plush",
  7674. default: true
  7675. },
  7676. faeStanding: {
  7677. height: math.unit(10, "cm"),
  7678. weight: math.unit(10, "grams"),
  7679. name: "Standing",
  7680. image: {
  7681. source: "./media/characters/rose/fae-standing.svg",
  7682. extra: 1189/1060,
  7683. bottom: 27/1216
  7684. },
  7685. form: "fae",
  7686. default: true
  7687. },
  7688. faeSitting: {
  7689. height: math.unit(5, "cm"),
  7690. weight: math.unit(10, "grams"),
  7691. name: "Sitting",
  7692. image: {
  7693. source: "./media/characters/rose/fae-sitting.svg",
  7694. extra: 737/577,
  7695. bottom: 356/1093
  7696. },
  7697. form: "fae"
  7698. },
  7699. faePaw: {
  7700. height: math.unit(1.35, "cm"),
  7701. name: "Paw",
  7702. image: {
  7703. source: "./media/characters/rose/fae-paw.svg"
  7704. },
  7705. form: "fae"
  7706. },
  7707. },
  7708. [
  7709. {
  7710. name: "True Micro",
  7711. height: math.unit(9, "cm"),
  7712. form: "liom"
  7713. },
  7714. {
  7715. name: "Micro",
  7716. height: math.unit(16, "cm"),
  7717. form: "liom"
  7718. },
  7719. {
  7720. name: "Normal",
  7721. height: math.unit(1.85, "meters"),
  7722. default: true,
  7723. form: "liom"
  7724. },
  7725. {
  7726. name: "Mini-Macro",
  7727. height: math.unit(5, "meters"),
  7728. form: "liom"
  7729. },
  7730. {
  7731. name: "Macro",
  7732. height: math.unit(15, "meters"),
  7733. form: "liom"
  7734. },
  7735. {
  7736. name: "True Macro",
  7737. height: math.unit(40, "meters"),
  7738. form: "liom"
  7739. },
  7740. {
  7741. name: "City Scale",
  7742. height: math.unit(1, "km"),
  7743. form: "liom"
  7744. },
  7745. {
  7746. name: "Plushie",
  7747. height: math.unit(9, "cm"),
  7748. form: "plush",
  7749. default: true
  7750. },
  7751. {
  7752. name: "Fae",
  7753. height: math.unit(10, "cm"),
  7754. form: "fae",
  7755. default: true
  7756. },
  7757. ],
  7758. {
  7759. "liom": {
  7760. name: "Liom"
  7761. },
  7762. "plush": {
  7763. name: "Plush"
  7764. },
  7765. "fae": {
  7766. name: "Fae Fox",
  7767. default: true
  7768. }
  7769. }
  7770. ))
  7771. characterMakers.push(() => makeCharacter(
  7772. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7773. {
  7774. front: {
  7775. height: math.unit(2, "meters"),
  7776. weight: math.unit(350, "lbs"),
  7777. name: "Front",
  7778. image: {
  7779. source: "./media/characters/regal/front.svg"
  7780. }
  7781. },
  7782. back: {
  7783. height: math.unit(2, "meters"),
  7784. weight: math.unit(350, "lbs"),
  7785. name: "Back",
  7786. image: {
  7787. source: "./media/characters/regal/back.svg"
  7788. }
  7789. },
  7790. },
  7791. [
  7792. {
  7793. name: "Macro",
  7794. height: math.unit(350, "feet"),
  7795. default: true
  7796. }
  7797. ]
  7798. ))
  7799. characterMakers.push(() => makeCharacter(
  7800. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7801. {
  7802. front: {
  7803. height: math.unit(4 + 11 / 12, "feet"),
  7804. weight: math.unit(100, "lbs"),
  7805. name: "Front",
  7806. image: {
  7807. source: "./media/characters/opal/front.svg"
  7808. }
  7809. },
  7810. frontAlt: {
  7811. height: math.unit(4 + 11 / 12, "feet"),
  7812. weight: math.unit(100, "lbs"),
  7813. name: "Front (Alt)",
  7814. image: {
  7815. source: "./media/characters/opal/front-alt.svg"
  7816. }
  7817. },
  7818. },
  7819. [
  7820. {
  7821. name: "Small",
  7822. height: math.unit(4 + 11 / 12, "feet")
  7823. },
  7824. {
  7825. name: "Normal",
  7826. height: math.unit(20, "feet"),
  7827. default: true
  7828. },
  7829. {
  7830. name: "Macro",
  7831. height: math.unit(120, "feet")
  7832. },
  7833. {
  7834. name: "Megamacro",
  7835. height: math.unit(80, "miles")
  7836. },
  7837. {
  7838. name: "True Size",
  7839. height: math.unit(100000, "lightyears")
  7840. },
  7841. ]
  7842. ))
  7843. characterMakers.push(() => makeCharacter(
  7844. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7845. {
  7846. front: {
  7847. height: math.unit(6, "feet"),
  7848. weight: math.unit(200, "lbs"),
  7849. name: "Front",
  7850. image: {
  7851. source: "./media/characters/vector-wuff/front.svg"
  7852. }
  7853. }
  7854. },
  7855. [
  7856. {
  7857. name: "Normal",
  7858. height: math.unit(2.8, "meters")
  7859. },
  7860. {
  7861. name: "Macro",
  7862. height: math.unit(450, "meters"),
  7863. default: true
  7864. },
  7865. {
  7866. name: "Megamacro",
  7867. height: math.unit(15, "kilometers")
  7868. }
  7869. ]
  7870. ))
  7871. characterMakers.push(() => makeCharacter(
  7872. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7873. {
  7874. front: {
  7875. height: math.unit(6, "feet"),
  7876. weight: math.unit(256, "lbs"),
  7877. name: "Front",
  7878. image: {
  7879. source: "./media/characters/dannik/front.svg"
  7880. }
  7881. }
  7882. },
  7883. [
  7884. {
  7885. name: "Macro",
  7886. height: math.unit(69.57, "meters"),
  7887. default: true
  7888. },
  7889. ]
  7890. ))
  7891. characterMakers.push(() => makeCharacter(
  7892. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7893. {
  7894. front: {
  7895. height: math.unit(6, "feet"),
  7896. weight: math.unit(120, "lbs"),
  7897. name: "Front",
  7898. image: {
  7899. source: "./media/characters/azura-saharah/front.svg"
  7900. }
  7901. },
  7902. back: {
  7903. height: math.unit(6, "feet"),
  7904. weight: math.unit(120, "lbs"),
  7905. name: "Back",
  7906. image: {
  7907. source: "./media/characters/azura-saharah/back.svg"
  7908. }
  7909. },
  7910. },
  7911. [
  7912. {
  7913. name: "Macro",
  7914. height: math.unit(100, "feet"),
  7915. default: true
  7916. },
  7917. ]
  7918. ))
  7919. characterMakers.push(() => makeCharacter(
  7920. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7921. {
  7922. side: {
  7923. height: math.unit(5 + 4 / 12, "feet"),
  7924. weight: math.unit(163, "lbs"),
  7925. name: "Side",
  7926. image: {
  7927. source: "./media/characters/kennedy/side.svg"
  7928. }
  7929. }
  7930. },
  7931. [
  7932. {
  7933. name: "Standard Doggo",
  7934. height: math.unit(5 + 4 / 12, "feet")
  7935. },
  7936. {
  7937. name: "Big Doggo",
  7938. height: math.unit(25 + 3 / 12, "feet"),
  7939. default: true
  7940. },
  7941. ]
  7942. ))
  7943. characterMakers.push(() => makeCharacter(
  7944. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7945. {
  7946. front: {
  7947. height: math.unit(5 + 5/12, "feet"),
  7948. weight: math.unit(100, "lbs"),
  7949. name: "Front",
  7950. image: {
  7951. source: "./media/characters/odios-de-lunar/front.svg",
  7952. extra: 1468/1323,
  7953. bottom: 22/1490
  7954. }
  7955. }
  7956. },
  7957. [
  7958. {
  7959. name: "Micro",
  7960. height: math.unit(3, "inches")
  7961. },
  7962. {
  7963. name: "Normal",
  7964. height: math.unit(5.5, "feet"),
  7965. default: true
  7966. },
  7967. {
  7968. name: "Macro",
  7969. height: math.unit(100, "feet")
  7970. },
  7971. ]
  7972. ))
  7973. characterMakers.push(() => makeCharacter(
  7974. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7975. {
  7976. back: {
  7977. height: math.unit(6, "feet"),
  7978. weight: math.unit(220, "lbs"),
  7979. name: "Back",
  7980. image: {
  7981. source: "./media/characters/mandake/back.svg"
  7982. }
  7983. }
  7984. },
  7985. [
  7986. {
  7987. name: "Normal",
  7988. height: math.unit(7, "feet"),
  7989. default: true
  7990. },
  7991. {
  7992. name: "Macro",
  7993. height: math.unit(78, "feet")
  7994. },
  7995. {
  7996. name: "Macro+",
  7997. height: math.unit(300, "meters")
  7998. },
  7999. {
  8000. name: "Macro++",
  8001. height: math.unit(2400, "feet")
  8002. },
  8003. {
  8004. name: "Megamacro",
  8005. height: math.unit(5167, "meters")
  8006. },
  8007. {
  8008. name: "Gigamacro",
  8009. height: math.unit(41769, "miles")
  8010. },
  8011. ]
  8012. ))
  8013. characterMakers.push(() => makeCharacter(
  8014. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8015. {
  8016. front: {
  8017. height: math.unit(6, "feet"),
  8018. weight: math.unit(120, "lbs"),
  8019. name: "Front",
  8020. image: {
  8021. source: "./media/characters/yozey/front.svg"
  8022. }
  8023. },
  8024. frontAlt: {
  8025. height: math.unit(6, "feet"),
  8026. weight: math.unit(120, "lbs"),
  8027. name: "Front (Alt)",
  8028. image: {
  8029. source: "./media/characters/yozey/front-alt.svg"
  8030. }
  8031. },
  8032. side: {
  8033. height: math.unit(6, "feet"),
  8034. weight: math.unit(120, "lbs"),
  8035. name: "Side",
  8036. image: {
  8037. source: "./media/characters/yozey/side.svg"
  8038. }
  8039. },
  8040. },
  8041. [
  8042. {
  8043. name: "Micro",
  8044. height: math.unit(3, "inches"),
  8045. default: true
  8046. },
  8047. {
  8048. name: "Normal",
  8049. height: math.unit(6, "feet")
  8050. }
  8051. ]
  8052. ))
  8053. characterMakers.push(() => makeCharacter(
  8054. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8055. {
  8056. front: {
  8057. height: math.unit(6, "feet"),
  8058. weight: math.unit(103, "lbs"),
  8059. name: "Front",
  8060. image: {
  8061. source: "./media/characters/valeska-voss/front.svg"
  8062. }
  8063. }
  8064. },
  8065. [
  8066. {
  8067. name: "Mini-Sized Sub",
  8068. height: math.unit(3.1, "inches")
  8069. },
  8070. {
  8071. name: "Mid-Sized Sub",
  8072. height: math.unit(6.2, "inches")
  8073. },
  8074. {
  8075. name: "Full-Sized Sub",
  8076. height: math.unit(9.3, "inches")
  8077. },
  8078. {
  8079. name: "Normal",
  8080. height: math.unit(5 + 2 / 12, "foot"),
  8081. default: true
  8082. },
  8083. ]
  8084. ))
  8085. characterMakers.push(() => makeCharacter(
  8086. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8087. {
  8088. front: {
  8089. height: math.unit(6, "feet"),
  8090. weight: math.unit(160, "lbs"),
  8091. name: "Front",
  8092. image: {
  8093. source: "./media/characters/gene-zeta/front.svg",
  8094. extra: 3006 / 2826,
  8095. bottom: 182 / 3188
  8096. }
  8097. }
  8098. },
  8099. [
  8100. {
  8101. name: "Micro",
  8102. height: math.unit(6, "inches")
  8103. },
  8104. {
  8105. name: "Normal",
  8106. height: math.unit(5 + 11 / 12, "foot"),
  8107. default: true
  8108. },
  8109. {
  8110. name: "Macro",
  8111. height: math.unit(140, "feet")
  8112. },
  8113. {
  8114. name: "Supercharged",
  8115. height: math.unit(2500, "feet")
  8116. },
  8117. ]
  8118. ))
  8119. characterMakers.push(() => makeCharacter(
  8120. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8121. {
  8122. front: {
  8123. height: math.unit(6, "feet"),
  8124. weight: math.unit(350, "lbs"),
  8125. name: "Front",
  8126. image: {
  8127. source: "./media/characters/razinox/front.svg",
  8128. extra: 1686 / 1548,
  8129. bottom: 28.2 / 1868
  8130. }
  8131. },
  8132. back: {
  8133. height: math.unit(6, "feet"),
  8134. weight: math.unit(350, "lbs"),
  8135. name: "Back",
  8136. image: {
  8137. source: "./media/characters/razinox/back.svg",
  8138. extra: 1660 / 1590,
  8139. bottom: 15 / 1665
  8140. }
  8141. },
  8142. },
  8143. [
  8144. {
  8145. name: "Normal",
  8146. height: math.unit(10 + 8 / 12, "foot")
  8147. },
  8148. {
  8149. name: "Minimacro",
  8150. height: math.unit(15, "foot")
  8151. },
  8152. {
  8153. name: "Macro",
  8154. height: math.unit(60, "foot"),
  8155. default: true
  8156. },
  8157. {
  8158. name: "Megamacro",
  8159. height: math.unit(5, "miles")
  8160. },
  8161. {
  8162. name: "Gigamacro",
  8163. height: math.unit(6000, "miles")
  8164. },
  8165. ]
  8166. ))
  8167. characterMakers.push(() => makeCharacter(
  8168. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8169. {
  8170. front: {
  8171. height: math.unit(6, "feet"),
  8172. weight: math.unit(150, "lbs"),
  8173. name: "Front",
  8174. image: {
  8175. source: "./media/characters/cobalt/front.svg"
  8176. }
  8177. }
  8178. },
  8179. [
  8180. {
  8181. name: "Normal",
  8182. height: math.unit(8 + 1 / 12, "foot")
  8183. },
  8184. {
  8185. name: "Macro",
  8186. height: math.unit(111, "foot"),
  8187. default: true
  8188. },
  8189. {
  8190. name: "Supracosmic",
  8191. height: math.unit(1e42, "feet")
  8192. },
  8193. ]
  8194. ))
  8195. characterMakers.push(() => makeCharacter(
  8196. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8197. {
  8198. front: {
  8199. height: math.unit(5, "inches"),
  8200. name: "Front",
  8201. image: {
  8202. source: "./media/characters/amanda/front.svg",
  8203. extra: 926/791,
  8204. bottom: 38/964
  8205. }
  8206. },
  8207. back: {
  8208. height: math.unit(5, "inches"),
  8209. name: "Back",
  8210. image: {
  8211. source: "./media/characters/amanda/back.svg",
  8212. extra: 909/805,
  8213. bottom: 43/952
  8214. }
  8215. },
  8216. },
  8217. [
  8218. {
  8219. name: "Micro",
  8220. height: math.unit(5, "inches"),
  8221. default: true
  8222. },
  8223. ]
  8224. ))
  8225. characterMakers.push(() => makeCharacter(
  8226. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8227. {
  8228. front: {
  8229. height: math.unit(2.75, "meters"),
  8230. weight: math.unit(1200, "lb"),
  8231. name: "Front",
  8232. image: {
  8233. source: "./media/characters/teal/front.svg",
  8234. extra: 2463 / 2320,
  8235. bottom: 166 / 2629
  8236. }
  8237. },
  8238. back: {
  8239. height: math.unit(2.75, "meters"),
  8240. weight: math.unit(1200, "lb"),
  8241. name: "Back",
  8242. image: {
  8243. source: "./media/characters/teal/back.svg",
  8244. extra: 2580 / 2489,
  8245. bottom: 151 / 2731
  8246. }
  8247. },
  8248. sitting: {
  8249. height: math.unit(1.9, "meters"),
  8250. weight: math.unit(1200, "lb"),
  8251. name: "Sitting",
  8252. image: {
  8253. source: "./media/characters/teal/sitting.svg",
  8254. extra: 623 / 590,
  8255. bottom: 121 / 744
  8256. }
  8257. },
  8258. standing: {
  8259. height: math.unit(2.75, "meters"),
  8260. weight: math.unit(1200, "lb"),
  8261. name: "Standing",
  8262. image: {
  8263. source: "./media/characters/teal/standing.svg",
  8264. extra: 923 / 893,
  8265. bottom: 60 / 983
  8266. }
  8267. },
  8268. stretching: {
  8269. height: math.unit(3.65, "meters"),
  8270. weight: math.unit(1200, "lb"),
  8271. name: "Stretching",
  8272. image: {
  8273. source: "./media/characters/teal/stretching.svg",
  8274. extra: 1276 / 1244,
  8275. bottom: 0 / 1276
  8276. }
  8277. },
  8278. legged: {
  8279. height: math.unit(1.3, "meters"),
  8280. weight: math.unit(100, "lb"),
  8281. name: "Legged",
  8282. image: {
  8283. source: "./media/characters/teal/legged.svg",
  8284. extra: 462 / 437,
  8285. bottom: 24 / 486
  8286. }
  8287. },
  8288. naga: {
  8289. height: math.unit(5.4, "meters"),
  8290. weight: math.unit(4000, "lb"),
  8291. name: "Naga",
  8292. image: {
  8293. source: "./media/characters/teal/naga.svg",
  8294. extra: 1902 / 1858,
  8295. bottom: 0 / 1902
  8296. }
  8297. },
  8298. hand: {
  8299. height: math.unit(0.52, "meters"),
  8300. name: "Hand",
  8301. image: {
  8302. source: "./media/characters/teal/hand.svg"
  8303. }
  8304. },
  8305. maw: {
  8306. height: math.unit(0.43, "meters"),
  8307. name: "Maw",
  8308. image: {
  8309. source: "./media/characters/teal/maw.svg"
  8310. }
  8311. },
  8312. slit: {
  8313. height: math.unit(0.25, "meters"),
  8314. name: "Slit",
  8315. image: {
  8316. source: "./media/characters/teal/slit.svg"
  8317. }
  8318. },
  8319. },
  8320. [
  8321. {
  8322. name: "Normal",
  8323. height: math.unit(2.75, "meters"),
  8324. default: true
  8325. },
  8326. {
  8327. name: "Macro",
  8328. height: math.unit(300, "feet")
  8329. },
  8330. {
  8331. name: "Macro+",
  8332. height: math.unit(2000, "feet")
  8333. },
  8334. ]
  8335. ))
  8336. characterMakers.push(() => makeCharacter(
  8337. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8338. {
  8339. frontCat: {
  8340. height: math.unit(6, "feet"),
  8341. weight: math.unit(180, "lbs"),
  8342. name: "Front (Cat)",
  8343. image: {
  8344. source: "./media/characters/ravin-amulet/front-cat.svg"
  8345. }
  8346. },
  8347. frontCatAlt: {
  8348. height: math.unit(6, "feet"),
  8349. weight: math.unit(180, "lbs"),
  8350. name: "Front (Alt, Cat)",
  8351. image: {
  8352. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8353. }
  8354. },
  8355. frontWerewolf: {
  8356. height: math.unit(6 * 1.2, "feet"),
  8357. weight: math.unit(225, "lbs"),
  8358. name: "Front (Werewolf)",
  8359. image: {
  8360. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8361. }
  8362. },
  8363. backWerewolf: {
  8364. height: math.unit(6 * 1.2, "feet"),
  8365. weight: math.unit(225, "lbs"),
  8366. name: "Back (Werewolf)",
  8367. image: {
  8368. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8369. }
  8370. },
  8371. },
  8372. [
  8373. {
  8374. name: "Nano",
  8375. height: math.unit(1, "micrometer")
  8376. },
  8377. {
  8378. name: "Micro",
  8379. height: math.unit(1, "inch")
  8380. },
  8381. {
  8382. name: "Normal",
  8383. height: math.unit(6, "feet"),
  8384. default: true
  8385. },
  8386. {
  8387. name: "Macro",
  8388. height: math.unit(60, "feet")
  8389. }
  8390. ]
  8391. ))
  8392. characterMakers.push(() => makeCharacter(
  8393. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8394. {
  8395. front: {
  8396. height: math.unit(6, "feet"),
  8397. weight: math.unit(165, "lbs"),
  8398. name: "Front",
  8399. image: {
  8400. source: "./media/characters/fluoresce/front.svg"
  8401. }
  8402. }
  8403. },
  8404. [
  8405. {
  8406. name: "Micro",
  8407. height: math.unit(6, "cm")
  8408. },
  8409. {
  8410. name: "Normal",
  8411. height: math.unit(5 + 7 / 12, "feet"),
  8412. default: true
  8413. },
  8414. {
  8415. name: "Macro",
  8416. height: math.unit(56, "feet")
  8417. },
  8418. {
  8419. name: "Megamacro",
  8420. height: math.unit(1.9, "miles")
  8421. },
  8422. ]
  8423. ))
  8424. characterMakers.push(() => makeCharacter(
  8425. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8426. {
  8427. front: {
  8428. height: math.unit(9 + 6 / 12, "feet"),
  8429. weight: math.unit(523, "lbs"),
  8430. name: "Side",
  8431. image: {
  8432. source: "./media/characters/aurora/side.svg",
  8433. extra: 474/393,
  8434. bottom: 5/479
  8435. }
  8436. }
  8437. },
  8438. [
  8439. {
  8440. name: "Normal",
  8441. height: math.unit(9 + 6 / 12, "feet")
  8442. },
  8443. {
  8444. name: "Macro",
  8445. height: math.unit(96, "feet"),
  8446. default: true
  8447. },
  8448. {
  8449. name: "Macro+",
  8450. height: math.unit(243, "feet")
  8451. },
  8452. ]
  8453. ))
  8454. characterMakers.push(() => makeCharacter(
  8455. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8456. {
  8457. front: {
  8458. height: math.unit(194, "cm"),
  8459. weight: math.unit(90, "kg"),
  8460. name: "Front",
  8461. image: {
  8462. source: "./media/characters/ranek/front.svg",
  8463. extra: 1862/1791,
  8464. bottom: 80/1942
  8465. }
  8466. },
  8467. back: {
  8468. height: math.unit(194, "cm"),
  8469. weight: math.unit(90, "kg"),
  8470. name: "Back",
  8471. image: {
  8472. source: "./media/characters/ranek/back.svg",
  8473. extra: 1853/1787,
  8474. bottom: 74/1927
  8475. }
  8476. },
  8477. feral: {
  8478. height: math.unit(30, "cm"),
  8479. weight: math.unit(1.6, "lbs"),
  8480. name: "Feral",
  8481. image: {
  8482. source: "./media/characters/ranek/feral.svg",
  8483. extra: 990/631,
  8484. bottom: 29/1019
  8485. }
  8486. },
  8487. },
  8488. [
  8489. {
  8490. name: "Normal",
  8491. height: math.unit(194, "cm"),
  8492. default: true
  8493. },
  8494. {
  8495. name: "Macro",
  8496. height: math.unit(100, "meters")
  8497. },
  8498. ]
  8499. ))
  8500. characterMakers.push(() => makeCharacter(
  8501. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8502. {
  8503. front: {
  8504. height: math.unit(5 + 6 / 12, "feet"),
  8505. weight: math.unit(153, "lbs"),
  8506. name: "Front",
  8507. image: {
  8508. source: "./media/characters/andrew-cooper/front.svg"
  8509. }
  8510. },
  8511. },
  8512. [
  8513. {
  8514. name: "Nano",
  8515. height: math.unit(1, "mm")
  8516. },
  8517. {
  8518. name: "Micro",
  8519. height: math.unit(2, "inches")
  8520. },
  8521. {
  8522. name: "Normal",
  8523. height: math.unit(5 + 6 / 12, "feet"),
  8524. default: true
  8525. }
  8526. ]
  8527. ))
  8528. characterMakers.push(() => makeCharacter(
  8529. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8530. {
  8531. front: {
  8532. height: math.unit(6, "feet"),
  8533. weight: math.unit(180, "lbs"),
  8534. name: "Front",
  8535. image: {
  8536. source: "./media/characters/akane-sato/front.svg",
  8537. extra: 1219 / 1140
  8538. }
  8539. },
  8540. back: {
  8541. height: math.unit(6, "feet"),
  8542. weight: math.unit(180, "lbs"),
  8543. name: "Back",
  8544. image: {
  8545. source: "./media/characters/akane-sato/back.svg",
  8546. extra: 1219 / 1170
  8547. }
  8548. },
  8549. },
  8550. [
  8551. {
  8552. name: "Normal",
  8553. height: math.unit(2.5, "meters")
  8554. },
  8555. {
  8556. name: "Macro",
  8557. height: math.unit(250, "meters"),
  8558. default: true
  8559. },
  8560. {
  8561. name: "Megamacro",
  8562. height: math.unit(25, "km")
  8563. },
  8564. ]
  8565. ))
  8566. characterMakers.push(() => makeCharacter(
  8567. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8568. {
  8569. front: {
  8570. height: math.unit(6, "feet"),
  8571. weight: math.unit(65, "kg"),
  8572. name: "Front",
  8573. image: {
  8574. source: "./media/characters/rook/front.svg",
  8575. extra: 960 / 950
  8576. }
  8577. }
  8578. },
  8579. [
  8580. {
  8581. name: "Normal",
  8582. height: math.unit(8.8, "feet")
  8583. },
  8584. {
  8585. name: "Macro",
  8586. height: math.unit(88, "feet"),
  8587. default: true
  8588. },
  8589. {
  8590. name: "Megamacro",
  8591. height: math.unit(8, "miles")
  8592. },
  8593. ]
  8594. ))
  8595. characterMakers.push(() => makeCharacter(
  8596. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8597. {
  8598. front: {
  8599. height: math.unit(12 + 2 / 12, "feet"),
  8600. weight: math.unit(808, "lbs"),
  8601. name: "Front",
  8602. image: {
  8603. source: "./media/characters/prodigy/front.svg"
  8604. }
  8605. }
  8606. },
  8607. [
  8608. {
  8609. name: "Normal",
  8610. height: math.unit(12 + 2 / 12, "feet"),
  8611. default: true
  8612. },
  8613. {
  8614. name: "Macro",
  8615. height: math.unit(143, "feet")
  8616. },
  8617. {
  8618. name: "Macro+",
  8619. height: math.unit(400, "feet")
  8620. },
  8621. ]
  8622. ))
  8623. characterMakers.push(() => makeCharacter(
  8624. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8625. {
  8626. front: {
  8627. height: math.unit(6, "feet"),
  8628. weight: math.unit(225, "lbs"),
  8629. name: "Front",
  8630. image: {
  8631. source: "./media/characters/daniel/front.svg"
  8632. }
  8633. },
  8634. leaning: {
  8635. height: math.unit(6, "feet"),
  8636. weight: math.unit(225, "lbs"),
  8637. name: "Leaning",
  8638. image: {
  8639. source: "./media/characters/daniel/leaning.svg"
  8640. }
  8641. },
  8642. },
  8643. [
  8644. {
  8645. name: "Macro",
  8646. height: math.unit(1000, "feet"),
  8647. default: true
  8648. },
  8649. ]
  8650. ))
  8651. characterMakers.push(() => makeCharacter(
  8652. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8653. {
  8654. front: {
  8655. height: math.unit(6, "feet"),
  8656. weight: math.unit(88, "lbs"),
  8657. name: "Front",
  8658. image: {
  8659. source: "./media/characters/chiros/front.svg",
  8660. extra: 306 / 226
  8661. }
  8662. },
  8663. side: {
  8664. height: math.unit(6, "feet"),
  8665. weight: math.unit(88, "lbs"),
  8666. name: "Side",
  8667. image: {
  8668. source: "./media/characters/chiros/side.svg",
  8669. extra: 306 / 226
  8670. }
  8671. },
  8672. },
  8673. [
  8674. {
  8675. name: "Normal",
  8676. height: math.unit(6, "cm"),
  8677. default: true
  8678. },
  8679. ]
  8680. ))
  8681. characterMakers.push(() => makeCharacter(
  8682. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8683. {
  8684. front: {
  8685. height: math.unit(6, "feet"),
  8686. weight: math.unit(100, "lbs"),
  8687. name: "Front",
  8688. image: {
  8689. source: "./media/characters/selka/front.svg",
  8690. extra: 947 / 887
  8691. }
  8692. }
  8693. },
  8694. [
  8695. {
  8696. name: "Normal",
  8697. height: math.unit(5, "cm"),
  8698. default: true
  8699. },
  8700. ]
  8701. ))
  8702. characterMakers.push(() => makeCharacter(
  8703. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8704. {
  8705. front: {
  8706. height: math.unit(8 + 3 / 12, "feet"),
  8707. weight: math.unit(424, "lbs"),
  8708. name: "Front",
  8709. image: {
  8710. source: "./media/characters/verin/front.svg",
  8711. extra: 1845 / 1550
  8712. }
  8713. },
  8714. frontArmored: {
  8715. height: math.unit(8 + 3 / 12, "feet"),
  8716. weight: math.unit(424, "lbs"),
  8717. name: "Front (Armored)",
  8718. image: {
  8719. source: "./media/characters/verin/front-armor.svg",
  8720. extra: 1845 / 1550,
  8721. bottom: 0.01
  8722. }
  8723. },
  8724. back: {
  8725. height: math.unit(8 + 3 / 12, "feet"),
  8726. weight: math.unit(424, "lbs"),
  8727. name: "Back",
  8728. image: {
  8729. source: "./media/characters/verin/back.svg",
  8730. bottom: 0.1,
  8731. extra: 1
  8732. }
  8733. },
  8734. foot: {
  8735. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8736. name: "Foot",
  8737. image: {
  8738. source: "./media/characters/verin/foot.svg"
  8739. }
  8740. },
  8741. },
  8742. [
  8743. {
  8744. name: "Normal",
  8745. height: math.unit(8 + 3 / 12, "feet")
  8746. },
  8747. {
  8748. name: "Minimacro",
  8749. height: math.unit(21, "feet"),
  8750. default: true
  8751. },
  8752. {
  8753. name: "Macro",
  8754. height: math.unit(626, "feet")
  8755. },
  8756. ]
  8757. ))
  8758. characterMakers.push(() => makeCharacter(
  8759. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8760. {
  8761. front: {
  8762. height: math.unit(2.718, "meters"),
  8763. weight: math.unit(150, "lbs"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/sovrim-terraquian/front.svg",
  8767. extra: 1752/1689,
  8768. bottom: 36/1788
  8769. }
  8770. },
  8771. back: {
  8772. height: math.unit(2.718, "meters"),
  8773. weight: math.unit(150, "lbs"),
  8774. name: "Back",
  8775. image: {
  8776. source: "./media/characters/sovrim-terraquian/back.svg",
  8777. extra: 1698/1657,
  8778. bottom: 58/1756
  8779. }
  8780. },
  8781. tongue: {
  8782. height: math.unit(2.865, "feet"),
  8783. name: "Tongue",
  8784. image: {
  8785. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8786. }
  8787. },
  8788. hand: {
  8789. height: math.unit(1.61, "feet"),
  8790. name: "Hand",
  8791. image: {
  8792. source: "./media/characters/sovrim-terraquian/hand.svg"
  8793. }
  8794. },
  8795. foot: {
  8796. height: math.unit(1.05, "feet"),
  8797. name: "Foot",
  8798. image: {
  8799. source: "./media/characters/sovrim-terraquian/foot.svg"
  8800. }
  8801. },
  8802. footAlt: {
  8803. height: math.unit(0.88, "feet"),
  8804. name: "Foot (Alt)",
  8805. image: {
  8806. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8807. }
  8808. },
  8809. },
  8810. [
  8811. {
  8812. name: "Micro",
  8813. height: math.unit(2, "inches")
  8814. },
  8815. {
  8816. name: "Small",
  8817. height: math.unit(1, "meter")
  8818. },
  8819. {
  8820. name: "Normal",
  8821. height: math.unit(Math.E, "meters"),
  8822. default: true
  8823. },
  8824. {
  8825. name: "Macro",
  8826. height: math.unit(20, "meters")
  8827. },
  8828. {
  8829. name: "Macro+",
  8830. height: math.unit(400, "meters")
  8831. },
  8832. ]
  8833. ))
  8834. characterMakers.push(() => makeCharacter(
  8835. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8836. {
  8837. front: {
  8838. height: math.unit(7, "feet"),
  8839. weight: math.unit(489, "lbs"),
  8840. name: "Front",
  8841. image: {
  8842. source: "./media/characters/reece-silvermane/front.svg",
  8843. bottom: 0.02,
  8844. extra: 1
  8845. }
  8846. },
  8847. },
  8848. [
  8849. {
  8850. name: "Macro",
  8851. height: math.unit(1.5, "miles"),
  8852. default: true
  8853. },
  8854. ]
  8855. ))
  8856. characterMakers.push(() => makeCharacter(
  8857. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8858. {
  8859. front: {
  8860. height: math.unit(6, "feet"),
  8861. weight: math.unit(78, "kg"),
  8862. name: "Front",
  8863. image: {
  8864. source: "./media/characters/kane/front.svg",
  8865. extra: 978 / 899
  8866. }
  8867. },
  8868. },
  8869. [
  8870. {
  8871. name: "Normal",
  8872. height: math.unit(2.1, "m"),
  8873. },
  8874. {
  8875. name: "Macro",
  8876. height: math.unit(1, "km"),
  8877. default: true
  8878. },
  8879. ]
  8880. ))
  8881. characterMakers.push(() => makeCharacter(
  8882. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8883. {
  8884. front: {
  8885. height: math.unit(6, "feet"),
  8886. weight: math.unit(200, "kg"),
  8887. name: "Front",
  8888. image: {
  8889. source: "./media/characters/tegon/front.svg",
  8890. bottom: 0.01,
  8891. extra: 1
  8892. }
  8893. },
  8894. },
  8895. [
  8896. {
  8897. name: "Micro",
  8898. height: math.unit(1, "inch")
  8899. },
  8900. {
  8901. name: "Normal",
  8902. height: math.unit(6 + 3 / 12, "feet"),
  8903. default: true
  8904. },
  8905. {
  8906. name: "Macro",
  8907. height: math.unit(300, "feet")
  8908. },
  8909. {
  8910. name: "Megamacro",
  8911. height: math.unit(69, "miles")
  8912. },
  8913. ]
  8914. ))
  8915. characterMakers.push(() => makeCharacter(
  8916. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8917. {
  8918. side: {
  8919. height: math.unit(6, "feet"),
  8920. weight: math.unit(2304, "lbs"),
  8921. name: "Side",
  8922. image: {
  8923. source: "./media/characters/arcturax/side.svg",
  8924. extra: 790 / 376,
  8925. bottom: 0.01
  8926. }
  8927. },
  8928. },
  8929. [
  8930. {
  8931. name: "Micro",
  8932. height: math.unit(2, "inch")
  8933. },
  8934. {
  8935. name: "Normal",
  8936. height: math.unit(6, "feet")
  8937. },
  8938. {
  8939. name: "Macro",
  8940. height: math.unit(39, "feet"),
  8941. default: true
  8942. },
  8943. {
  8944. name: "Megamacro",
  8945. height: math.unit(7, "miles")
  8946. },
  8947. ]
  8948. ))
  8949. characterMakers.push(() => makeCharacter(
  8950. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8951. {
  8952. front: {
  8953. height: math.unit(6, "feet"),
  8954. weight: math.unit(50, "lbs"),
  8955. name: "Front",
  8956. image: {
  8957. source: "./media/characters/sentri/front.svg",
  8958. extra: 1750 / 1570,
  8959. bottom: 0.025
  8960. }
  8961. },
  8962. frontAlt: {
  8963. height: math.unit(6, "feet"),
  8964. weight: math.unit(50, "lbs"),
  8965. name: "Front (Alt)",
  8966. image: {
  8967. source: "./media/characters/sentri/front-alt.svg",
  8968. extra: 1750 / 1570,
  8969. bottom: 0.025
  8970. }
  8971. },
  8972. },
  8973. [
  8974. {
  8975. name: "Normal",
  8976. height: math.unit(15, "feet"),
  8977. default: true
  8978. },
  8979. {
  8980. name: "Macro",
  8981. height: math.unit(2500, "feet")
  8982. }
  8983. ]
  8984. ))
  8985. characterMakers.push(() => makeCharacter(
  8986. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8987. {
  8988. front: {
  8989. height: math.unit(5 + 8 / 12, "feet"),
  8990. weight: math.unit(130, "lbs"),
  8991. name: "Front",
  8992. image: {
  8993. source: "./media/characters/corvin/front.svg",
  8994. extra: 1803 / 1629
  8995. }
  8996. },
  8997. frontShirt: {
  8998. height: math.unit(5 + 8 / 12, "feet"),
  8999. weight: math.unit(130, "lbs"),
  9000. name: "Front (Shirt)",
  9001. image: {
  9002. source: "./media/characters/corvin/front-shirt.svg",
  9003. extra: 1803 / 1629
  9004. }
  9005. },
  9006. frontPoncho: {
  9007. height: math.unit(5 + 8 / 12, "feet"),
  9008. weight: math.unit(130, "lbs"),
  9009. name: "Front (Poncho)",
  9010. image: {
  9011. source: "./media/characters/corvin/front-poncho.svg",
  9012. extra: 1803 / 1629
  9013. }
  9014. },
  9015. side: {
  9016. height: math.unit(5 + 8 / 12, "feet"),
  9017. weight: math.unit(130, "lbs"),
  9018. name: "Side",
  9019. image: {
  9020. source: "./media/characters/corvin/side.svg",
  9021. extra: 1012 / 945
  9022. }
  9023. },
  9024. back: {
  9025. height: math.unit(5 + 8 / 12, "feet"),
  9026. weight: math.unit(130, "lbs"),
  9027. name: "Back",
  9028. image: {
  9029. source: "./media/characters/corvin/back.svg",
  9030. extra: 1803 / 1629
  9031. }
  9032. },
  9033. },
  9034. [
  9035. {
  9036. name: "Micro",
  9037. height: math.unit(3, "inches")
  9038. },
  9039. {
  9040. name: "Normal",
  9041. height: math.unit(5 + 8 / 12, "feet")
  9042. },
  9043. {
  9044. name: "Macro",
  9045. height: math.unit(300, "feet"),
  9046. default: true
  9047. },
  9048. {
  9049. name: "Megamacro",
  9050. height: math.unit(500, "miles")
  9051. }
  9052. ]
  9053. ))
  9054. characterMakers.push(() => makeCharacter(
  9055. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9056. {
  9057. front: {
  9058. height: math.unit(6, "feet"),
  9059. weight: math.unit(135, "lbs"),
  9060. name: "Front",
  9061. image: {
  9062. source: "./media/characters/q/front.svg",
  9063. extra: 854 / 752,
  9064. bottom: 0.005
  9065. }
  9066. },
  9067. back: {
  9068. height: math.unit(6, "feet"),
  9069. weight: math.unit(130, "lbs"),
  9070. name: "Back",
  9071. image: {
  9072. source: "./media/characters/q/back.svg",
  9073. extra: 854 / 752
  9074. }
  9075. },
  9076. },
  9077. [
  9078. {
  9079. name: "Macro",
  9080. height: math.unit(90, "feet"),
  9081. default: true
  9082. },
  9083. {
  9084. name: "Extra Macro",
  9085. height: math.unit(300, "feet"),
  9086. },
  9087. {
  9088. name: "BIG WALF",
  9089. height: math.unit(750, "feet"),
  9090. },
  9091. ]
  9092. ))
  9093. characterMakers.push(() => makeCharacter(
  9094. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9095. {
  9096. front: {
  9097. height: math.unit(3, "feet"),
  9098. weight: math.unit(28, "lbs"),
  9099. name: "Front",
  9100. image: {
  9101. source: "./media/characters/citrine/front.svg"
  9102. }
  9103. }
  9104. },
  9105. [
  9106. {
  9107. name: "Normal",
  9108. height: math.unit(3, "feet"),
  9109. default: true
  9110. }
  9111. ]
  9112. ))
  9113. characterMakers.push(() => makeCharacter(
  9114. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9115. {
  9116. front: {
  9117. height: math.unit(14, "feet"),
  9118. weight: math.unit(1450, "kg"),
  9119. preyCapacity: math.unit(15, "people"),
  9120. name: "Front",
  9121. image: {
  9122. source: "./media/characters/aura-starwind/front.svg",
  9123. extra: 1440/1327,
  9124. bottom: 11/1451
  9125. }
  9126. },
  9127. side: {
  9128. height: math.unit(14, "feet"),
  9129. weight: math.unit(1450, "kg"),
  9130. preyCapacity: math.unit(15, "people"),
  9131. name: "Side",
  9132. image: {
  9133. source: "./media/characters/aura-starwind/side.svg",
  9134. extra: 1654 / 1497
  9135. }
  9136. },
  9137. taur: {
  9138. height: math.unit(18, "feet"),
  9139. weight: math.unit(5500, "kg"),
  9140. preyCapacity: math.unit(50, "people"),
  9141. name: "Taur",
  9142. image: {
  9143. source: "./media/characters/aura-starwind/taur.svg",
  9144. extra: 1760 / 1650
  9145. }
  9146. },
  9147. feral: {
  9148. height: math.unit(46, "feet"),
  9149. weight: math.unit(25000, "kg"),
  9150. preyCapacity: math.unit(120, "people"),
  9151. name: "Feral",
  9152. image: {
  9153. source: "./media/characters/aura-starwind/feral.svg"
  9154. }
  9155. },
  9156. },
  9157. [
  9158. {
  9159. name: "Normal",
  9160. height: math.unit(14, "feet"),
  9161. default: true
  9162. },
  9163. {
  9164. name: "Macro",
  9165. height: math.unit(50, "meters")
  9166. },
  9167. {
  9168. name: "Megamacro",
  9169. height: math.unit(5000, "meters")
  9170. },
  9171. {
  9172. name: "Gigamacro",
  9173. height: math.unit(100000, "kilometers")
  9174. },
  9175. ]
  9176. ))
  9177. characterMakers.push(() => makeCharacter(
  9178. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9179. {
  9180. front: {
  9181. height: math.unit(2 + 7 / 12, "feet"),
  9182. weight: math.unit(32, "lbs"),
  9183. name: "Front",
  9184. image: {
  9185. source: "./media/characters/rivet/front.svg",
  9186. extra: 1716 / 1658,
  9187. bottom: 0.03
  9188. }
  9189. },
  9190. foot: {
  9191. height: math.unit(0.551, "feet"),
  9192. name: "Rivet's Foot",
  9193. image: {
  9194. source: "./media/characters/rivet/foot.svg"
  9195. },
  9196. rename: true
  9197. }
  9198. },
  9199. [
  9200. {
  9201. name: "Micro",
  9202. height: math.unit(1.5, "inches"),
  9203. },
  9204. {
  9205. name: "Normal",
  9206. height: math.unit(2 + 7 / 12, "feet"),
  9207. default: true
  9208. },
  9209. {
  9210. name: "Macro",
  9211. height: math.unit(85, "feet")
  9212. },
  9213. {
  9214. name: "Megamacro",
  9215. height: math.unit(2.2, "km")
  9216. }
  9217. ]
  9218. ))
  9219. characterMakers.push(() => makeCharacter(
  9220. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9221. {
  9222. front: {
  9223. height: math.unit(5 + 9 / 12, "feet"),
  9224. weight: math.unit(150, "lbs"),
  9225. name: "Front",
  9226. image: {
  9227. source: "./media/characters/coffee/front.svg",
  9228. extra: 946/880,
  9229. bottom: 66/1012
  9230. }
  9231. },
  9232. foot: {
  9233. height: math.unit(1.29, "feet"),
  9234. name: "Foot",
  9235. image: {
  9236. source: "./media/characters/coffee/foot.svg"
  9237. }
  9238. },
  9239. },
  9240. [
  9241. {
  9242. name: "Micro",
  9243. height: math.unit(2, "inches"),
  9244. },
  9245. {
  9246. name: "Normal",
  9247. height: math.unit(5 + 9 / 12, "feet"),
  9248. default: true
  9249. },
  9250. {
  9251. name: "Macro",
  9252. height: math.unit(800, "feet")
  9253. },
  9254. {
  9255. name: "Megamacro",
  9256. height: math.unit(25, "miles")
  9257. }
  9258. ]
  9259. ))
  9260. characterMakers.push(() => makeCharacter(
  9261. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9262. {
  9263. front: {
  9264. height: math.unit(6, "feet"),
  9265. weight: math.unit(200, "lbs"),
  9266. name: "Front",
  9267. image: {
  9268. source: "./media/characters/chari-gal/front.svg",
  9269. extra: 1568 / 1385,
  9270. bottom: 0.047
  9271. }
  9272. },
  9273. gigantamax: {
  9274. height: math.unit(6 * 16, "feet"),
  9275. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9276. name: "Gigantamax",
  9277. image: {
  9278. source: "./media/characters/chari-gal/gigantamax.svg",
  9279. extra: 1124 / 888,
  9280. bottom: 0.03
  9281. }
  9282. },
  9283. },
  9284. [
  9285. {
  9286. name: "Normal",
  9287. height: math.unit(5 + 7 / 12, "feet")
  9288. },
  9289. {
  9290. name: "Macro",
  9291. height: math.unit(200, "feet"),
  9292. default: true
  9293. }
  9294. ]
  9295. ))
  9296. characterMakers.push(() => makeCharacter(
  9297. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9298. {
  9299. front: {
  9300. height: math.unit(6, "feet"),
  9301. weight: math.unit(150, "lbs"),
  9302. name: "Front",
  9303. image: {
  9304. source: "./media/characters/nova/front.svg",
  9305. extra: 5000 / 4722,
  9306. bottom: 0.02
  9307. }
  9308. }
  9309. },
  9310. [
  9311. {
  9312. name: "Micro-",
  9313. height: math.unit(0.8, "inches")
  9314. },
  9315. {
  9316. name: "Micro",
  9317. height: math.unit(2, "inches"),
  9318. default: true
  9319. },
  9320. ]
  9321. ))
  9322. characterMakers.push(() => makeCharacter(
  9323. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9324. {
  9325. koboldFront: {
  9326. height: math.unit(3 + 1 / 12, "feet"),
  9327. weight: math.unit(21.7, "lbs"),
  9328. name: "Front",
  9329. image: {
  9330. source: "./media/characters/argent/kobold-front.svg",
  9331. extra: 1471 / 1331,
  9332. bottom: 100.8 / 1575.5
  9333. },
  9334. form: "kobold",
  9335. default: true
  9336. },
  9337. dragonFront: {
  9338. height: math.unit(75, "inches"),
  9339. name: "Front",
  9340. image: {
  9341. source: "./media/characters/argent/dragon-front.svg",
  9342. extra: 1389/1248,
  9343. bottom: 54/1443
  9344. },
  9345. form: "dragon",
  9346. },
  9347. dragonBack: {
  9348. height: math.unit(75, "inches"),
  9349. name: "Back",
  9350. image: {
  9351. source: "./media/characters/argent/dragon-back.svg",
  9352. extra: 1399/1271,
  9353. bottom: 23/1422
  9354. },
  9355. form: "dragon",
  9356. },
  9357. dragonDressed: {
  9358. height: math.unit(75, "inches"),
  9359. name: "Dressed",
  9360. image: {
  9361. source: "./media/characters/argent/dragon-dressed.svg",
  9362. extra: 1350/1215,
  9363. bottom: 26/1376
  9364. },
  9365. form: "dragon"
  9366. },
  9367. dragonHead: {
  9368. height: math.unit(23.5, "inches"),
  9369. name: "Head",
  9370. image: {
  9371. source: "./media/characters/argent/dragon-head.svg"
  9372. },
  9373. form: "dragon",
  9374. },
  9375. },
  9376. [
  9377. {
  9378. name: "Micro",
  9379. height: math.unit(2, "inches"),
  9380. form: "kobold",
  9381. },
  9382. {
  9383. name: "Normal",
  9384. height: math.unit(3 + 1 / 12, "feet"),
  9385. form: "kobold",
  9386. default: true
  9387. },
  9388. {
  9389. name: "Macro",
  9390. height: math.unit(120, "feet"),
  9391. form: "kobold",
  9392. },
  9393. {
  9394. name: "Speck",
  9395. height: math.unit(1, "mm"),
  9396. form: "dragon",
  9397. },
  9398. {
  9399. name: "Tiny",
  9400. height: math.unit(1, "cm"),
  9401. form: "dragon",
  9402. },
  9403. {
  9404. name: "Micro",
  9405. height: math.unit(5, "cm"),
  9406. form: "dragon",
  9407. },
  9408. {
  9409. name: "Normal",
  9410. height: math.unit(75, "inches"),
  9411. form: "dragon",
  9412. default: true
  9413. },
  9414. {
  9415. name: "Extra Tall",
  9416. height: math.unit(9, "feet"),
  9417. form: "dragon",
  9418. },
  9419. {
  9420. name: "Inconvenient",
  9421. height: math.unit(5, "meters"),
  9422. form: "dragon",
  9423. },
  9424. {
  9425. name: "Macro",
  9426. height: math.unit(70, "meters"),
  9427. form: "dragon",
  9428. },
  9429. {
  9430. name: "Macro+",
  9431. height: math.unit(250, "meters"),
  9432. form: "dragon",
  9433. },
  9434. {
  9435. name: "Megamacro",
  9436. height: math.unit(20, "km"),
  9437. form: "dragon",
  9438. },
  9439. {
  9440. name: "Mountainous",
  9441. height: math.unit(100, "km"),
  9442. form: "dragon",
  9443. },
  9444. {
  9445. name: "Continental",
  9446. height: math.unit(2, "megameters"),
  9447. form: "dragon",
  9448. },
  9449. {
  9450. name: "Too Big",
  9451. height: math.unit(900, "megameters"),
  9452. form: "dragon",
  9453. },
  9454. ],
  9455. {
  9456. "kobold": {
  9457. name: "Kobold",
  9458. default: true
  9459. },
  9460. "dragon": {
  9461. name: "Dragon",
  9462. },
  9463. }
  9464. ))
  9465. characterMakers.push(() => makeCharacter(
  9466. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9467. {
  9468. lamp: {
  9469. height: math.unit(7 * 1559 / 989, "feet"),
  9470. name: "Magic Lamp",
  9471. image: {
  9472. source: "./media/characters/mira-al-cul/lamp.svg",
  9473. extra: 1617 / 1559
  9474. }
  9475. },
  9476. front: {
  9477. height: math.unit(7, "feet"),
  9478. name: "Front",
  9479. image: {
  9480. source: "./media/characters/mira-al-cul/front.svg",
  9481. extra: 1044 / 990
  9482. }
  9483. },
  9484. },
  9485. [
  9486. {
  9487. name: "Heavily Restricted",
  9488. height: math.unit(7 * 1559 / 989, "feet")
  9489. },
  9490. {
  9491. name: "Freshly Freed",
  9492. height: math.unit(50 * 1559 / 989, "feet")
  9493. },
  9494. {
  9495. name: "World Encompassing",
  9496. height: math.unit(10000 * 1559 / 989, "miles")
  9497. },
  9498. {
  9499. name: "Galactic",
  9500. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9501. },
  9502. {
  9503. name: "Palmed Universe",
  9504. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9505. default: true
  9506. },
  9507. {
  9508. name: "Multiversal Matriarch",
  9509. height: math.unit(8.87e10, "yottameters")
  9510. },
  9511. {
  9512. name: "Void Mother",
  9513. height: math.unit(3.14e110, "yottaparsecs")
  9514. },
  9515. {
  9516. name: "Toying with Transcendence",
  9517. height: math.unit(1e307, "meters")
  9518. },
  9519. ]
  9520. ))
  9521. characterMakers.push(() => makeCharacter(
  9522. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9523. {
  9524. front: {
  9525. height: math.unit(17 + 1 / 12, "feet"),
  9526. weight: math.unit(476.2 * 5, "lbs"),
  9527. name: "Front",
  9528. image: {
  9529. source: "./media/characters/kuro-shi-uchū/front.svg",
  9530. extra: 2329 / 1835,
  9531. bottom: 0.02
  9532. }
  9533. },
  9534. },
  9535. [
  9536. {
  9537. name: "Micro",
  9538. height: math.unit(2, "inches")
  9539. },
  9540. {
  9541. name: "Normal",
  9542. height: math.unit(12, "meters")
  9543. },
  9544. {
  9545. name: "Planetary",
  9546. height: math.unit(0.00929, "AU"),
  9547. default: true
  9548. },
  9549. {
  9550. name: "Universal",
  9551. height: math.unit(20, "gigaparsecs")
  9552. },
  9553. ]
  9554. ))
  9555. characterMakers.push(() => makeCharacter(
  9556. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9557. {
  9558. front: {
  9559. height: math.unit(5 + 2 / 12, "feet"),
  9560. weight: math.unit(120, "lbs"),
  9561. name: "Front",
  9562. image: {
  9563. source: "./media/characters/katherine/front.svg",
  9564. extra: 2075 / 1969
  9565. }
  9566. },
  9567. dress: {
  9568. height: math.unit(5 + 2 / 12, "feet"),
  9569. weight: math.unit(120, "lbs"),
  9570. name: "Dress",
  9571. image: {
  9572. source: "./media/characters/katherine/dress.svg",
  9573. extra: 2258 / 2064
  9574. }
  9575. },
  9576. },
  9577. [
  9578. {
  9579. name: "Micro",
  9580. height: math.unit(1, "inches"),
  9581. default: true
  9582. },
  9583. {
  9584. name: "Normal",
  9585. height: math.unit(5 + 2 / 12, "feet")
  9586. },
  9587. {
  9588. name: "Macro",
  9589. height: math.unit(100, "meters")
  9590. },
  9591. {
  9592. name: "Megamacro",
  9593. height: math.unit(80, "miles")
  9594. },
  9595. ]
  9596. ))
  9597. characterMakers.push(() => makeCharacter(
  9598. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9599. {
  9600. front: {
  9601. height: math.unit(7 + 8 / 12, "feet"),
  9602. weight: math.unit(250, "lbs"),
  9603. name: "Front",
  9604. image: {
  9605. source: "./media/characters/yevis/front.svg",
  9606. extra: 1938 / 1755
  9607. }
  9608. }
  9609. },
  9610. [
  9611. {
  9612. name: "Mortal",
  9613. height: math.unit(7 + 8 / 12, "feet")
  9614. },
  9615. {
  9616. name: "Battle",
  9617. height: math.unit(25 + 11 / 12, "feet")
  9618. },
  9619. {
  9620. name: "Wrath",
  9621. height: math.unit(1654 + 11 / 12, "feet")
  9622. },
  9623. {
  9624. name: "Planet Destroyer",
  9625. height: math.unit(12000, "miles")
  9626. },
  9627. {
  9628. name: "Galaxy Conqueror",
  9629. height: math.unit(1.45, "zettameters"),
  9630. default: true
  9631. },
  9632. {
  9633. name: "Universal War",
  9634. height: math.unit(184, "gigaparsecs")
  9635. },
  9636. {
  9637. name: "Eternity War",
  9638. height: math.unit(1.98e55, "yottaparsecs")
  9639. },
  9640. ]
  9641. ))
  9642. characterMakers.push(() => makeCharacter(
  9643. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9644. {
  9645. front: {
  9646. height: math.unit(5 + 8 / 12, "feet"),
  9647. weight: math.unit(63, "kg"),
  9648. name: "Front",
  9649. image: {
  9650. source: "./media/characters/xavier/front.svg",
  9651. extra: 944 / 883
  9652. }
  9653. },
  9654. frontStretch: {
  9655. height: math.unit(5 + 8 / 12, "feet"),
  9656. weight: math.unit(63, "kg"),
  9657. name: "Stretching",
  9658. image: {
  9659. source: "./media/characters/xavier/front-stretch.svg",
  9660. extra: 962 / 820
  9661. }
  9662. },
  9663. },
  9664. [
  9665. {
  9666. name: "Normal",
  9667. height: math.unit(5 + 8 / 12, "feet")
  9668. },
  9669. {
  9670. name: "Macro",
  9671. height: math.unit(100, "meters"),
  9672. default: true
  9673. },
  9674. {
  9675. name: "McLargeHuge",
  9676. height: math.unit(10, "miles")
  9677. },
  9678. ]
  9679. ))
  9680. characterMakers.push(() => makeCharacter(
  9681. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9682. {
  9683. front: {
  9684. height: math.unit(5 + 5 / 12, "feet"),
  9685. weight: math.unit(150, "lb"),
  9686. name: "Front",
  9687. image: {
  9688. source: "./media/characters/joshii/front.svg",
  9689. extra: 765 / 653,
  9690. bottom: 51 / 816
  9691. }
  9692. },
  9693. foot: {
  9694. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9695. name: "Foot",
  9696. image: {
  9697. source: "./media/characters/joshii/foot.svg"
  9698. }
  9699. },
  9700. },
  9701. [
  9702. {
  9703. name: "Micro",
  9704. height: math.unit(2, "inches")
  9705. },
  9706. {
  9707. name: "Normal",
  9708. height: math.unit(5 + 5 / 12, "feet")
  9709. },
  9710. {
  9711. name: "Macro",
  9712. height: math.unit(785, "feet"),
  9713. default: true
  9714. },
  9715. {
  9716. name: "Megamacro",
  9717. height: math.unit(24.5, "miles")
  9718. },
  9719. ]
  9720. ))
  9721. characterMakers.push(() => makeCharacter(
  9722. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9723. {
  9724. front: {
  9725. height: math.unit(6, "feet"),
  9726. weight: math.unit(150, "lb"),
  9727. name: "Front",
  9728. image: {
  9729. source: "./media/characters/goddess-elizabeth/front.svg",
  9730. extra: 1800 / 1525,
  9731. bottom: 0.005
  9732. }
  9733. },
  9734. foot: {
  9735. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9736. name: "Foot",
  9737. image: {
  9738. source: "./media/characters/goddess-elizabeth/foot.svg"
  9739. }
  9740. },
  9741. mouth: {
  9742. height: math.unit(6, "feet"),
  9743. name: "Mouth",
  9744. image: {
  9745. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9746. }
  9747. },
  9748. },
  9749. [
  9750. {
  9751. name: "Micro",
  9752. height: math.unit(12, "feet")
  9753. },
  9754. {
  9755. name: "Normal",
  9756. height: math.unit(80, "miles"),
  9757. default: true
  9758. },
  9759. {
  9760. name: "Macro",
  9761. height: math.unit(15000, "parsecs")
  9762. },
  9763. ]
  9764. ))
  9765. characterMakers.push(() => makeCharacter(
  9766. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9767. {
  9768. front: {
  9769. height: math.unit(5 + 9 / 12, "feet"),
  9770. weight: math.unit(144, "lb"),
  9771. name: "Front",
  9772. image: {
  9773. source: "./media/characters/kara/front.svg"
  9774. }
  9775. },
  9776. feet: {
  9777. height: math.unit(6 / 6.765, "feet"),
  9778. name: "Kara's Feet",
  9779. rename: true,
  9780. image: {
  9781. source: "./media/characters/kara/feet.svg"
  9782. }
  9783. },
  9784. },
  9785. [
  9786. {
  9787. name: "Normal",
  9788. height: math.unit(5 + 9 / 12, "feet")
  9789. },
  9790. {
  9791. name: "Macro",
  9792. height: math.unit(174, "feet"),
  9793. default: true
  9794. },
  9795. ]
  9796. ))
  9797. characterMakers.push(() => makeCharacter(
  9798. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9799. {
  9800. front: {
  9801. height: math.unit(18, "feet"),
  9802. weight: math.unit(4050, "lb"),
  9803. name: "Front",
  9804. image: {
  9805. source: "./media/characters/tyrone/front.svg",
  9806. extra: 2405 / 2270,
  9807. bottom: 182 / 2587
  9808. }
  9809. },
  9810. },
  9811. [
  9812. {
  9813. name: "Normal",
  9814. height: math.unit(18, "feet"),
  9815. default: true
  9816. },
  9817. {
  9818. name: "Macro",
  9819. height: math.unit(300, "feet")
  9820. },
  9821. {
  9822. name: "Megamacro",
  9823. height: math.unit(15, "km")
  9824. },
  9825. {
  9826. name: "Gigamacro",
  9827. height: math.unit(500, "km")
  9828. },
  9829. {
  9830. name: "Teramacro",
  9831. height: math.unit(0.5, "gigameters")
  9832. },
  9833. {
  9834. name: "Omnimacro",
  9835. height: math.unit(1e252, "yottauniverse")
  9836. },
  9837. ]
  9838. ))
  9839. characterMakers.push(() => makeCharacter(
  9840. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9841. {
  9842. front: {
  9843. height: math.unit(7 + 8 / 12, "feet"),
  9844. weight: math.unit(120, "lb"),
  9845. name: "Front",
  9846. image: {
  9847. source: "./media/characters/danny/front.svg",
  9848. extra: 1490 / 1350
  9849. }
  9850. },
  9851. back: {
  9852. height: math.unit(7 + 8 / 12, "feet"),
  9853. weight: math.unit(120, "lb"),
  9854. name: "Back",
  9855. image: {
  9856. source: "./media/characters/danny/back.svg",
  9857. extra: 1490 / 1350
  9858. }
  9859. },
  9860. },
  9861. [
  9862. {
  9863. name: "Normal",
  9864. height: math.unit(7 + 8 / 12, "feet"),
  9865. default: true
  9866. },
  9867. ]
  9868. ))
  9869. characterMakers.push(() => makeCharacter(
  9870. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9871. {
  9872. front: {
  9873. height: math.unit(3.5, "inches"),
  9874. weight: math.unit(19, "grams"),
  9875. name: "Front",
  9876. image: {
  9877. source: "./media/characters/mallow/front.svg",
  9878. extra: 471 / 431
  9879. }
  9880. },
  9881. back: {
  9882. height: math.unit(3.5, "inches"),
  9883. weight: math.unit(19, "grams"),
  9884. name: "Back",
  9885. image: {
  9886. source: "./media/characters/mallow/back.svg",
  9887. extra: 471 / 431
  9888. }
  9889. },
  9890. },
  9891. [
  9892. {
  9893. name: "Normal",
  9894. height: math.unit(3.5, "inches"),
  9895. default: true
  9896. },
  9897. ]
  9898. ))
  9899. characterMakers.push(() => makeCharacter(
  9900. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9901. {
  9902. front: {
  9903. height: math.unit(9, "feet"),
  9904. weight: math.unit(230, "kg"),
  9905. name: "Front",
  9906. image: {
  9907. source: "./media/characters/starry-aqua/front.svg"
  9908. }
  9909. },
  9910. back: {
  9911. height: math.unit(9, "feet"),
  9912. weight: math.unit(230, "kg"),
  9913. name: "Back",
  9914. image: {
  9915. source: "./media/characters/starry-aqua/back.svg"
  9916. }
  9917. },
  9918. hand: {
  9919. height: math.unit(9 * 0.1168, "feet"),
  9920. name: "Hand",
  9921. image: {
  9922. source: "./media/characters/starry-aqua/hand.svg"
  9923. }
  9924. },
  9925. foot: {
  9926. height: math.unit(9 * 0.18, "feet"),
  9927. name: "Foot",
  9928. image: {
  9929. source: "./media/characters/starry-aqua/foot.svg"
  9930. }
  9931. }
  9932. },
  9933. [
  9934. {
  9935. name: "Micro",
  9936. height: math.unit(3, "inches")
  9937. },
  9938. {
  9939. name: "Normal",
  9940. height: math.unit(9, "feet")
  9941. },
  9942. {
  9943. name: "Macro",
  9944. height: math.unit(300, "feet"),
  9945. default: true
  9946. },
  9947. {
  9948. name: "Megamacro",
  9949. height: math.unit(3200, "feet")
  9950. }
  9951. ]
  9952. ))
  9953. characterMakers.push(() => makeCharacter(
  9954. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9955. {
  9956. front: {
  9957. height: math.unit(15, "feet"),
  9958. weight: math.unit(5026, "lb"),
  9959. name: "Front",
  9960. image: {
  9961. source: "./media/characters/luka-towers/front.svg",
  9962. extra: 1269/1133,
  9963. bottom: 51/1320
  9964. }
  9965. },
  9966. },
  9967. [
  9968. {
  9969. name: "Normal",
  9970. height: math.unit(15, "feet"),
  9971. default: true
  9972. },
  9973. {
  9974. name: "Minimacro",
  9975. height: math.unit(25, "feet")
  9976. },
  9977. {
  9978. name: "Macro",
  9979. height: math.unit(320, "feet")
  9980. },
  9981. {
  9982. name: "Megamacro",
  9983. height: math.unit(35000, "feet")
  9984. },
  9985. {
  9986. name: "Gigamacro",
  9987. height: math.unit(4000, "miles")
  9988. },
  9989. {
  9990. name: "Teramacro",
  9991. height: math.unit(15000, "miles")
  9992. },
  9993. ]
  9994. ))
  9995. characterMakers.push(() => makeCharacter(
  9996. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9997. {
  9998. front: {
  9999. height: math.unit(6, "feet"),
  10000. weight: math.unit(150, "lb"),
  10001. name: "Front",
  10002. image: {
  10003. source: "./media/characters/natalie-nightring/front.svg",
  10004. extra: 1,
  10005. bottom: 0.06
  10006. }
  10007. },
  10008. },
  10009. [
  10010. {
  10011. name: "Uh Oh",
  10012. height: math.unit(0.1, "mm")
  10013. },
  10014. {
  10015. name: "Small",
  10016. height: math.unit(3, "inches")
  10017. },
  10018. {
  10019. name: "Human Scale",
  10020. height: math.unit(6, "feet")
  10021. },
  10022. {
  10023. name: "Librarian",
  10024. height: math.unit(50, "feet"),
  10025. default: true
  10026. },
  10027. {
  10028. name: "Immense",
  10029. height: math.unit(200, "miles")
  10030. },
  10031. ]
  10032. ))
  10033. characterMakers.push(() => makeCharacter(
  10034. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10035. {
  10036. front: {
  10037. height: math.unit(6, "feet"),
  10038. weight: math.unit(180, "lbs"),
  10039. name: "Front",
  10040. image: {
  10041. source: "./media/characters/danni-rosie/front.svg",
  10042. extra: 1260 / 1128,
  10043. bottom: 0.022
  10044. }
  10045. },
  10046. },
  10047. [
  10048. {
  10049. name: "Micro",
  10050. height: math.unit(2, "inches"),
  10051. default: true
  10052. },
  10053. ]
  10054. ))
  10055. characterMakers.push(() => makeCharacter(
  10056. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10057. {
  10058. front: {
  10059. height: math.unit(5 + 9 / 12, "feet"),
  10060. weight: math.unit(220, "lb"),
  10061. name: "Front",
  10062. image: {
  10063. source: "./media/characters/samantha-kruse/front.svg",
  10064. extra: (985 / 935),
  10065. bottom: 0.03
  10066. }
  10067. },
  10068. frontUndressed: {
  10069. height: math.unit(5 + 9 / 12, "feet"),
  10070. weight: math.unit(220, "lb"),
  10071. name: "Front (Undressed)",
  10072. image: {
  10073. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10074. extra: (973 / 923),
  10075. bottom: 0.025
  10076. }
  10077. },
  10078. fat: {
  10079. height: math.unit(5 + 9 / 12, "feet"),
  10080. weight: math.unit(900, "lb"),
  10081. name: "Front (Fat)",
  10082. image: {
  10083. source: "./media/characters/samantha-kruse/fat.svg",
  10084. extra: 2688 / 2561
  10085. }
  10086. },
  10087. },
  10088. [
  10089. {
  10090. name: "Normal",
  10091. height: math.unit(5 + 9 / 12, "feet"),
  10092. default: true
  10093. }
  10094. ]
  10095. ))
  10096. characterMakers.push(() => makeCharacter(
  10097. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10098. {
  10099. back: {
  10100. height: math.unit(5 + 4 / 12, "feet"),
  10101. weight: math.unit(4963, "lb"),
  10102. name: "Back",
  10103. image: {
  10104. source: "./media/characters/amelia-rosie/back.svg",
  10105. extra: 1113 / 963,
  10106. bottom: 0.01
  10107. }
  10108. },
  10109. },
  10110. [
  10111. {
  10112. name: "Level 0",
  10113. height: math.unit(5 + 4 / 12, "feet")
  10114. },
  10115. {
  10116. name: "Level 1",
  10117. height: math.unit(164597, "feet"),
  10118. default: true
  10119. },
  10120. {
  10121. name: "Level 2",
  10122. height: math.unit(956243, "miles")
  10123. },
  10124. {
  10125. name: "Level 3",
  10126. height: math.unit(29421709423, "miles")
  10127. },
  10128. {
  10129. name: "Level 4",
  10130. height: math.unit(154, "lightyears")
  10131. },
  10132. {
  10133. name: "Level 5",
  10134. height: math.unit(4738272, "lightyears")
  10135. },
  10136. {
  10137. name: "Level 6",
  10138. height: math.unit(145787152896, "lightyears")
  10139. },
  10140. ]
  10141. ))
  10142. characterMakers.push(() => makeCharacter(
  10143. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10144. {
  10145. front: {
  10146. height: math.unit(5 + 11 / 12, "feet"),
  10147. weight: math.unit(65, "kg"),
  10148. name: "Front",
  10149. image: {
  10150. source: "./media/characters/rook-kitara/front.svg",
  10151. extra: 1347 / 1274,
  10152. bottom: 0.005
  10153. }
  10154. },
  10155. },
  10156. [
  10157. {
  10158. name: "Totally Unfair",
  10159. height: math.unit(1.8, "mm")
  10160. },
  10161. {
  10162. name: "Lap Rookie",
  10163. height: math.unit(1.4, "feet")
  10164. },
  10165. {
  10166. name: "Normal",
  10167. height: math.unit(5 + 11 / 12, "feet"),
  10168. default: true
  10169. },
  10170. {
  10171. name: "How Did This Happen",
  10172. height: math.unit(80, "miles")
  10173. }
  10174. ]
  10175. ))
  10176. characterMakers.push(() => makeCharacter(
  10177. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10178. {
  10179. front: {
  10180. height: math.unit(7, "feet"),
  10181. weight: math.unit(300, "lb"),
  10182. name: "Front",
  10183. image: {
  10184. source: "./media/characters/pisces/front.svg",
  10185. extra: 2255 / 2115,
  10186. bottom: 0.03
  10187. }
  10188. },
  10189. back: {
  10190. height: math.unit(7, "feet"),
  10191. weight: math.unit(300, "lb"),
  10192. name: "Back",
  10193. image: {
  10194. source: "./media/characters/pisces/back.svg",
  10195. extra: 2146 / 2055,
  10196. bottom: 0.04
  10197. }
  10198. },
  10199. },
  10200. [
  10201. {
  10202. name: "Normal",
  10203. height: math.unit(7, "feet"),
  10204. default: true
  10205. },
  10206. {
  10207. name: "Swimming Pool",
  10208. height: math.unit(12.2, "meters")
  10209. },
  10210. {
  10211. name: "Olympic Swimming Pool",
  10212. height: math.unit(56.3, "meters")
  10213. },
  10214. {
  10215. name: "Lake Superior",
  10216. height: math.unit(93900, "meters")
  10217. },
  10218. {
  10219. name: "Mediterranean Sea",
  10220. height: math.unit(644457, "meters")
  10221. },
  10222. {
  10223. name: "World's Oceans",
  10224. height: math.unit(4567491, "meters")
  10225. },
  10226. ]
  10227. ))
  10228. characterMakers.push(() => makeCharacter(
  10229. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10230. {
  10231. front: {
  10232. height: math.unit(2.3, "meters"),
  10233. weight: math.unit(120, "kg"),
  10234. name: "Front",
  10235. image: {
  10236. source: "./media/characters/zelas/front.svg"
  10237. }
  10238. },
  10239. side: {
  10240. height: math.unit(2.3, "meters"),
  10241. weight: math.unit(120, "kg"),
  10242. name: "Side",
  10243. image: {
  10244. source: "./media/characters/zelas/side.svg"
  10245. }
  10246. },
  10247. back: {
  10248. height: math.unit(2.3, "meters"),
  10249. weight: math.unit(120, "kg"),
  10250. name: "Back",
  10251. image: {
  10252. source: "./media/characters/zelas/back.svg"
  10253. }
  10254. },
  10255. foot: {
  10256. height: math.unit(1.116, "feet"),
  10257. name: "Foot",
  10258. image: {
  10259. source: "./media/characters/zelas/foot.svg"
  10260. }
  10261. },
  10262. },
  10263. [
  10264. {
  10265. name: "Normal",
  10266. height: math.unit(2.3, "meters")
  10267. },
  10268. {
  10269. name: "Macro",
  10270. height: math.unit(30, "meters"),
  10271. default: true
  10272. },
  10273. ]
  10274. ))
  10275. characterMakers.push(() => makeCharacter(
  10276. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10277. {
  10278. front: {
  10279. height: math.unit(1, "inch"),
  10280. weight: math.unit(0.21, "grams"),
  10281. name: "Front",
  10282. image: {
  10283. source: "./media/characters/talbot/front.svg",
  10284. extra: 594 / 544
  10285. }
  10286. },
  10287. },
  10288. [
  10289. {
  10290. name: "Micro",
  10291. height: math.unit(1, "inch"),
  10292. default: true
  10293. },
  10294. ]
  10295. ))
  10296. characterMakers.push(() => makeCharacter(
  10297. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10298. {
  10299. front: {
  10300. height: math.unit(3 + 3 / 12, "feet"),
  10301. weight: math.unit(51.8, "lb"),
  10302. name: "Front",
  10303. image: {
  10304. source: "./media/characters/fliss/front.svg",
  10305. extra: 840 / 640
  10306. }
  10307. },
  10308. },
  10309. [
  10310. {
  10311. name: "Teeny Tiny",
  10312. height: math.unit(1, "mm")
  10313. },
  10314. {
  10315. name: "Small",
  10316. height: math.unit(1, "inch"),
  10317. default: true
  10318. },
  10319. {
  10320. name: "Standard Sylveon",
  10321. height: math.unit(3 + 3 / 12, "feet")
  10322. },
  10323. {
  10324. name: "Large Nuisance",
  10325. height: math.unit(33, "feet")
  10326. },
  10327. {
  10328. name: "City Filler",
  10329. height: math.unit(3000, "feet")
  10330. },
  10331. {
  10332. name: "New Horizon",
  10333. height: math.unit(6000, "miles")
  10334. },
  10335. ]
  10336. ))
  10337. characterMakers.push(() => makeCharacter(
  10338. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10339. {
  10340. front: {
  10341. height: math.unit(5, "cm"),
  10342. weight: math.unit(1.94, "g"),
  10343. name: "Front",
  10344. image: {
  10345. source: "./media/characters/fleta/front.svg",
  10346. extra: 835 / 803
  10347. }
  10348. },
  10349. back: {
  10350. height: math.unit(5, "cm"),
  10351. weight: math.unit(1.94, "g"),
  10352. name: "Back",
  10353. image: {
  10354. source: "./media/characters/fleta/back.svg",
  10355. extra: 835 / 803
  10356. }
  10357. },
  10358. },
  10359. [
  10360. {
  10361. name: "Micro",
  10362. height: math.unit(5, "cm"),
  10363. default: true
  10364. },
  10365. ]
  10366. ))
  10367. characterMakers.push(() => makeCharacter(
  10368. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10369. {
  10370. front: {
  10371. height: math.unit(6, "feet"),
  10372. weight: math.unit(225, "lb"),
  10373. name: "Front",
  10374. image: {
  10375. source: "./media/characters/dominic/front.svg",
  10376. extra: 1770 / 1620,
  10377. bottom: 0.025
  10378. }
  10379. },
  10380. back: {
  10381. height: math.unit(6, "feet"),
  10382. weight: math.unit(225, "lb"),
  10383. name: "Back",
  10384. image: {
  10385. source: "./media/characters/dominic/back.svg",
  10386. extra: 1745 / 1620,
  10387. bottom: 0.065
  10388. }
  10389. },
  10390. },
  10391. [
  10392. {
  10393. name: "Nano",
  10394. height: math.unit(0.1, "mm")
  10395. },
  10396. {
  10397. name: "Micro-",
  10398. height: math.unit(1, "mm")
  10399. },
  10400. {
  10401. name: "Micro",
  10402. height: math.unit(4, "inches")
  10403. },
  10404. {
  10405. name: "Normal",
  10406. height: math.unit(6 + 4 / 12, "feet"),
  10407. default: true
  10408. },
  10409. {
  10410. name: "Macro",
  10411. height: math.unit(115, "feet")
  10412. },
  10413. {
  10414. name: "Macro+",
  10415. height: math.unit(955, "feet")
  10416. },
  10417. {
  10418. name: "Megamacro",
  10419. height: math.unit(8990, "feet")
  10420. },
  10421. {
  10422. name: "Gigmacro",
  10423. height: math.unit(9310, "miles")
  10424. },
  10425. {
  10426. name: "Teramacro",
  10427. height: math.unit(1567005010, "miles")
  10428. },
  10429. {
  10430. name: "Examacro",
  10431. height: math.unit(1425, "parsecs")
  10432. },
  10433. ]
  10434. ))
  10435. characterMakers.push(() => makeCharacter(
  10436. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10437. {
  10438. front: {
  10439. height: math.unit(400, "feet"),
  10440. weight: math.unit(44444444, "lb"),
  10441. name: "Front",
  10442. image: {
  10443. source: "./media/characters/major-colonel/front.svg"
  10444. }
  10445. },
  10446. back: {
  10447. height: math.unit(400, "feet"),
  10448. weight: math.unit(44444444, "lb"),
  10449. name: "Back",
  10450. image: {
  10451. source: "./media/characters/major-colonel/back.svg"
  10452. }
  10453. },
  10454. },
  10455. [
  10456. {
  10457. name: "Macro",
  10458. height: math.unit(400, "feet"),
  10459. default: true
  10460. },
  10461. ]
  10462. ))
  10463. characterMakers.push(() => makeCharacter(
  10464. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10465. {
  10466. catFront: {
  10467. height: math.unit(6, "feet"),
  10468. weight: math.unit(120, "lb"),
  10469. name: "Front (Cat Side)",
  10470. image: {
  10471. source: "./media/characters/axel-lycan/cat-front.svg",
  10472. extra: 430 / 402,
  10473. bottom: 43 / 472.35
  10474. }
  10475. },
  10476. catBack: {
  10477. height: math.unit(6, "feet"),
  10478. weight: math.unit(120, "lb"),
  10479. name: "Back (Cat Side)",
  10480. image: {
  10481. source: "./media/characters/axel-lycan/cat-back.svg",
  10482. extra: 447 / 419,
  10483. bottom: 23.3 / 469
  10484. }
  10485. },
  10486. wolfFront: {
  10487. height: math.unit(6, "feet"),
  10488. weight: math.unit(120, "lb"),
  10489. name: "Front (Wolf Side)",
  10490. image: {
  10491. source: "./media/characters/axel-lycan/wolf-front.svg",
  10492. extra: 485 / 456,
  10493. bottom: 19 / 504
  10494. }
  10495. },
  10496. wolfBack: {
  10497. height: math.unit(6, "feet"),
  10498. weight: math.unit(120, "lb"),
  10499. name: "Back (Wolf Side)",
  10500. image: {
  10501. source: "./media/characters/axel-lycan/wolf-back.svg",
  10502. extra: 475 / 438,
  10503. bottom: 39.2 / 514
  10504. }
  10505. },
  10506. },
  10507. [
  10508. {
  10509. name: "Macro",
  10510. height: math.unit(1, "km"),
  10511. default: true
  10512. },
  10513. ]
  10514. ))
  10515. characterMakers.push(() => makeCharacter(
  10516. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10517. {
  10518. front: {
  10519. height: math.unit(5 + 9 / 12, "feet"),
  10520. weight: math.unit(175, "lb"),
  10521. name: "Front",
  10522. image: {
  10523. source: "./media/characters/vanrel-hyena/front.svg",
  10524. extra: 1086 / 1010,
  10525. bottom: 0.04
  10526. }
  10527. },
  10528. },
  10529. [
  10530. {
  10531. name: "Normal",
  10532. height: math.unit(5 + 9 / 12, "feet"),
  10533. default: true
  10534. },
  10535. ]
  10536. ))
  10537. characterMakers.push(() => makeCharacter(
  10538. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10539. {
  10540. front: {
  10541. height: math.unit(6, "feet"),
  10542. weight: math.unit(103, "lb"),
  10543. name: "Front",
  10544. image: {
  10545. source: "./media/characters/abbott-absol/front.svg",
  10546. extra: 2010 / 1842
  10547. }
  10548. },
  10549. },
  10550. [
  10551. {
  10552. name: "Megamicro",
  10553. height: math.unit(0.1, "mm")
  10554. },
  10555. {
  10556. name: "Micro",
  10557. height: math.unit(1, "inch")
  10558. },
  10559. {
  10560. name: "Normal",
  10561. height: math.unit(6, "feet"),
  10562. default: true
  10563. },
  10564. ]
  10565. ))
  10566. characterMakers.push(() => makeCharacter(
  10567. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10568. {
  10569. front: {
  10570. height: math.unit(6, "feet"),
  10571. weight: math.unit(264, "lb"),
  10572. name: "Front",
  10573. image: {
  10574. source: "./media/characters/hector/front.svg",
  10575. extra: 2280 / 2130,
  10576. bottom: 0.07
  10577. }
  10578. },
  10579. },
  10580. [
  10581. {
  10582. name: "Normal",
  10583. height: math.unit(12.25, "foot"),
  10584. default: true
  10585. },
  10586. {
  10587. name: "Macro",
  10588. height: math.unit(160, "feet")
  10589. },
  10590. ]
  10591. ))
  10592. characterMakers.push(() => makeCharacter(
  10593. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10594. {
  10595. front: {
  10596. height: math.unit(6, "feet"),
  10597. weight: math.unit(150, "lb"),
  10598. name: "Front",
  10599. image: {
  10600. source: "./media/characters/sal/front.svg",
  10601. extra: 1846 / 1699,
  10602. bottom: 0.04
  10603. }
  10604. },
  10605. },
  10606. [
  10607. {
  10608. name: "Megamacro",
  10609. height: math.unit(10, "miles"),
  10610. default: true
  10611. },
  10612. ]
  10613. ))
  10614. characterMakers.push(() => makeCharacter(
  10615. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10616. {
  10617. front: {
  10618. height: math.unit(3, "meters"),
  10619. weight: math.unit(450, "kg"),
  10620. name: "front",
  10621. image: {
  10622. source: "./media/characters/ranger/front.svg",
  10623. extra: 2401 / 2243,
  10624. bottom: 0.05
  10625. }
  10626. },
  10627. },
  10628. [
  10629. {
  10630. name: "Normal",
  10631. height: math.unit(3, "meters"),
  10632. default: true
  10633. },
  10634. ]
  10635. ))
  10636. characterMakers.push(() => makeCharacter(
  10637. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10638. {
  10639. front: {
  10640. height: math.unit(14, "feet"),
  10641. weight: math.unit(800, "kg"),
  10642. name: "Front",
  10643. image: {
  10644. source: "./media/characters/theresa/front.svg",
  10645. extra: 3575 / 3346,
  10646. bottom: 0.03
  10647. }
  10648. },
  10649. },
  10650. [
  10651. {
  10652. name: "Normal",
  10653. height: math.unit(14, "feet"),
  10654. default: true
  10655. },
  10656. ]
  10657. ))
  10658. characterMakers.push(() => makeCharacter(
  10659. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10660. {
  10661. front: {
  10662. height: math.unit(6, "feet"),
  10663. weight: math.unit(3, "kg"),
  10664. name: "Front",
  10665. image: {
  10666. source: "./media/characters/ine/front.svg",
  10667. extra: 678 / 539,
  10668. bottom: 0.023
  10669. }
  10670. },
  10671. },
  10672. [
  10673. {
  10674. name: "Normal",
  10675. height: math.unit(2.265, "feet"),
  10676. default: true
  10677. },
  10678. ]
  10679. ))
  10680. characterMakers.push(() => makeCharacter(
  10681. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10682. {
  10683. front: {
  10684. height: math.unit(5, "feet"),
  10685. weight: math.unit(30, "kg"),
  10686. name: "Front",
  10687. image: {
  10688. source: "./media/characters/vial/front.svg",
  10689. extra: 1365 / 1277,
  10690. bottom: 0.04
  10691. }
  10692. },
  10693. },
  10694. [
  10695. {
  10696. name: "Normal",
  10697. height: math.unit(5, "feet"),
  10698. default: true
  10699. },
  10700. ]
  10701. ))
  10702. characterMakers.push(() => makeCharacter(
  10703. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10704. {
  10705. side: {
  10706. height: math.unit(3.4, "meters"),
  10707. weight: math.unit(1000, "lb"),
  10708. name: "Side",
  10709. image: {
  10710. source: "./media/characters/rovoska/side.svg",
  10711. extra: 4403 / 1515
  10712. }
  10713. },
  10714. },
  10715. [
  10716. {
  10717. name: "Normal",
  10718. height: math.unit(3.4, "meters"),
  10719. default: true
  10720. },
  10721. ]
  10722. ))
  10723. characterMakers.push(() => makeCharacter(
  10724. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10725. {
  10726. front: {
  10727. height: math.unit(8, "feet"),
  10728. weight: math.unit(315, "lb"),
  10729. name: "Front",
  10730. image: {
  10731. source: "./media/characters/gunner-rotthbauer/front.svg"
  10732. }
  10733. },
  10734. back: {
  10735. height: math.unit(8, "feet"),
  10736. weight: math.unit(315, "lb"),
  10737. name: "Back",
  10738. image: {
  10739. source: "./media/characters/gunner-rotthbauer/back.svg"
  10740. }
  10741. },
  10742. },
  10743. [
  10744. {
  10745. name: "Micro",
  10746. height: math.unit(3.5, "inches")
  10747. },
  10748. {
  10749. name: "Normal",
  10750. height: math.unit(8, "feet"),
  10751. default: true
  10752. },
  10753. {
  10754. name: "Macro",
  10755. height: math.unit(250, "feet")
  10756. },
  10757. {
  10758. name: "Megamacro",
  10759. height: math.unit(1, "AU")
  10760. },
  10761. ]
  10762. ))
  10763. characterMakers.push(() => makeCharacter(
  10764. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10765. {
  10766. front: {
  10767. height: math.unit(5 + 5 / 12, "feet"),
  10768. weight: math.unit(140, "lb"),
  10769. name: "Front",
  10770. image: {
  10771. source: "./media/characters/allatia/front.svg",
  10772. extra: 1227 / 1180,
  10773. bottom: 0.027
  10774. }
  10775. },
  10776. },
  10777. [
  10778. {
  10779. name: "Normal",
  10780. height: math.unit(5 + 5 / 12, "feet")
  10781. },
  10782. {
  10783. name: "Macro",
  10784. height: math.unit(250, "feet"),
  10785. default: true
  10786. },
  10787. {
  10788. name: "Megamacro",
  10789. height: math.unit(8, "miles")
  10790. }
  10791. ]
  10792. ))
  10793. characterMakers.push(() => makeCharacter(
  10794. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10795. {
  10796. front: {
  10797. height: math.unit(6, "feet"),
  10798. weight: math.unit(120, "lb"),
  10799. name: "Front",
  10800. image: {
  10801. source: "./media/characters/tene/front.svg",
  10802. extra: 814/750,
  10803. bottom: 36/850
  10804. }
  10805. },
  10806. stomping: {
  10807. height: math.unit(2.025, "meters"),
  10808. weight: math.unit(120, "lb"),
  10809. name: "Stomping",
  10810. image: {
  10811. source: "./media/characters/tene/stomping.svg",
  10812. extra: 885/821,
  10813. bottom: 15/900
  10814. }
  10815. },
  10816. sitting: {
  10817. height: math.unit(1, "meter"),
  10818. weight: math.unit(120, "lb"),
  10819. name: "Sitting",
  10820. image: {
  10821. source: "./media/characters/tene/sitting.svg",
  10822. extra: 396/366,
  10823. bottom: 79/475
  10824. }
  10825. },
  10826. smiling: {
  10827. height: math.unit(1.2, "feet"),
  10828. name: "Smiling",
  10829. image: {
  10830. source: "./media/characters/tene/smiling.svg",
  10831. extra: 1364/1071,
  10832. bottom: 0/1364
  10833. }
  10834. },
  10835. smug: {
  10836. height: math.unit(1.3, "feet"),
  10837. name: "Smug",
  10838. image: {
  10839. source: "./media/characters/tene/smug.svg",
  10840. extra: 1323/1082,
  10841. bottom: 0/1323
  10842. }
  10843. },
  10844. feral: {
  10845. height: math.unit(3.9, "feet"),
  10846. weight: math.unit(250, "lb"),
  10847. name: "Feral",
  10848. image: {
  10849. source: "./media/characters/tene/feral.svg",
  10850. extra: 717 / 458,
  10851. bottom: 0.179
  10852. }
  10853. },
  10854. },
  10855. [
  10856. {
  10857. name: "Normal",
  10858. height: math.unit(6, "feet")
  10859. },
  10860. {
  10861. name: "Macro",
  10862. height: math.unit(300, "feet"),
  10863. default: true
  10864. },
  10865. {
  10866. name: "Megamacro",
  10867. height: math.unit(5, "miles")
  10868. },
  10869. ]
  10870. ))
  10871. characterMakers.push(() => makeCharacter(
  10872. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10873. {
  10874. side: {
  10875. height: math.unit(6, "feet"),
  10876. name: "Side",
  10877. image: {
  10878. source: "./media/characters/evander/side.svg",
  10879. extra: 877 / 477
  10880. }
  10881. },
  10882. },
  10883. [
  10884. {
  10885. name: "Normal",
  10886. height: math.unit(0.83, "meters"),
  10887. default: true
  10888. },
  10889. ]
  10890. ))
  10891. characterMakers.push(() => makeCharacter(
  10892. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10893. {
  10894. front: {
  10895. height: math.unit(12, "feet"),
  10896. weight: math.unit(1000, "lb"),
  10897. name: "Front",
  10898. image: {
  10899. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10900. extra: 1762 / 1611
  10901. }
  10902. },
  10903. back: {
  10904. height: math.unit(12, "feet"),
  10905. weight: math.unit(1000, "lb"),
  10906. name: "Back",
  10907. image: {
  10908. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10909. extra: 1762 / 1611
  10910. }
  10911. },
  10912. },
  10913. [
  10914. {
  10915. name: "Normal",
  10916. height: math.unit(12, "feet"),
  10917. default: true
  10918. },
  10919. {
  10920. name: "Kaiju",
  10921. height: math.unit(150, "feet")
  10922. },
  10923. ]
  10924. ))
  10925. characterMakers.push(() => makeCharacter(
  10926. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10927. {
  10928. front: {
  10929. height: math.unit(6, "feet"),
  10930. weight: math.unit(150, "lb"),
  10931. name: "Front",
  10932. image: {
  10933. source: "./media/characters/zero-alurus/front.svg"
  10934. }
  10935. },
  10936. back: {
  10937. height: math.unit(6, "feet"),
  10938. weight: math.unit(150, "lb"),
  10939. name: "Back",
  10940. image: {
  10941. source: "./media/characters/zero-alurus/back.svg"
  10942. }
  10943. },
  10944. },
  10945. [
  10946. {
  10947. name: "Normal",
  10948. height: math.unit(5 + 10 / 12, "feet")
  10949. },
  10950. {
  10951. name: "Macro",
  10952. height: math.unit(60, "feet"),
  10953. default: true
  10954. },
  10955. {
  10956. name: "Macro+",
  10957. height: math.unit(450, "feet")
  10958. },
  10959. ]
  10960. ))
  10961. characterMakers.push(() => makeCharacter(
  10962. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10963. {
  10964. front: {
  10965. height: math.unit(6, "feet"),
  10966. weight: math.unit(200, "lb"),
  10967. name: "Front",
  10968. image: {
  10969. source: "./media/characters/mega-shi/front.svg",
  10970. extra: 1279 / 1250,
  10971. bottom: 0.02
  10972. }
  10973. },
  10974. back: {
  10975. height: math.unit(6, "feet"),
  10976. weight: math.unit(200, "lb"),
  10977. name: "Back",
  10978. image: {
  10979. source: "./media/characters/mega-shi/back.svg",
  10980. extra: 1279 / 1250,
  10981. bottom: 0.02
  10982. }
  10983. },
  10984. },
  10985. [
  10986. {
  10987. name: "Micro",
  10988. height: math.unit(16 + 6 / 12, "feet")
  10989. },
  10990. {
  10991. name: "Third Dimension",
  10992. height: math.unit(40, "meters")
  10993. },
  10994. {
  10995. name: "Normal",
  10996. height: math.unit(660, "feet"),
  10997. default: true
  10998. },
  10999. {
  11000. name: "Megamacro",
  11001. height: math.unit(10, "miles")
  11002. },
  11003. {
  11004. name: "Planetary Launch",
  11005. height: math.unit(500, "miles")
  11006. },
  11007. {
  11008. name: "Interstellar",
  11009. height: math.unit(1e9, "miles")
  11010. },
  11011. {
  11012. name: "Leaving the Universe",
  11013. height: math.unit(1, "gigaparsec")
  11014. },
  11015. {
  11016. name: "Travelling Universes",
  11017. height: math.unit(30e15, "parsecs")
  11018. },
  11019. ]
  11020. ))
  11021. characterMakers.push(() => makeCharacter(
  11022. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11023. {
  11024. front: {
  11025. height: math.unit(5 + 4/12, "feet"),
  11026. weight: math.unit(120, "lb"),
  11027. name: "Front",
  11028. image: {
  11029. source: "./media/characters/odyssey/front.svg",
  11030. extra: 1747/1571,
  11031. bottom: 47/1794
  11032. }
  11033. },
  11034. side: {
  11035. height: math.unit(5.1, "feet"),
  11036. weight: math.unit(120, "lb"),
  11037. name: "Side",
  11038. image: {
  11039. source: "./media/characters/odyssey/side.svg",
  11040. extra: 1847/1619,
  11041. bottom: 47/1894
  11042. }
  11043. },
  11044. lounging: {
  11045. height: math.unit(1.464, "feet"),
  11046. weight: math.unit(120, "lb"),
  11047. name: "Lounging",
  11048. image: {
  11049. source: "./media/characters/odyssey/lounging.svg",
  11050. extra: 1235/837,
  11051. bottom: 551/1786
  11052. }
  11053. },
  11054. },
  11055. [
  11056. {
  11057. name: "Normal",
  11058. height: math.unit(5 + 4 / 12, "feet")
  11059. },
  11060. {
  11061. name: "Macro",
  11062. height: math.unit(1, "km")
  11063. },
  11064. {
  11065. name: "Megamacro",
  11066. height: math.unit(3000, "km")
  11067. },
  11068. {
  11069. name: "Gigamacro",
  11070. height: math.unit(1, "AU"),
  11071. default: true
  11072. },
  11073. {
  11074. name: "Omniversal",
  11075. height: math.unit(100e14, "lightyears")
  11076. },
  11077. ]
  11078. ))
  11079. characterMakers.push(() => makeCharacter(
  11080. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11081. {
  11082. front: {
  11083. height: math.unit(6, "feet"),
  11084. weight: math.unit(300, "lb"),
  11085. name: "Front",
  11086. image: {
  11087. source: "./media/characters/mekuto/front.svg",
  11088. extra: 921 / 832,
  11089. bottom: 0.03
  11090. }
  11091. },
  11092. hand: {
  11093. height: math.unit(6 / 10.24, "feet"),
  11094. name: "Hand",
  11095. image: {
  11096. source: "./media/characters/mekuto/hand.svg"
  11097. }
  11098. },
  11099. foot: {
  11100. height: math.unit(6 / 5.05, "feet"),
  11101. name: "Foot",
  11102. image: {
  11103. source: "./media/characters/mekuto/foot.svg"
  11104. }
  11105. },
  11106. },
  11107. [
  11108. {
  11109. name: "Minimicro",
  11110. height: math.unit(0.2, "inches")
  11111. },
  11112. {
  11113. name: "Micro",
  11114. height: math.unit(1.5, "inches")
  11115. },
  11116. {
  11117. name: "Normal",
  11118. height: math.unit(5 + 11 / 12, "feet"),
  11119. default: true
  11120. },
  11121. {
  11122. name: "Minimacro",
  11123. height: math.unit(17 + 9 / 12, "feet")
  11124. },
  11125. {
  11126. name: "Macro",
  11127. height: math.unit(177.5, "feet")
  11128. },
  11129. {
  11130. name: "Megamacro",
  11131. height: math.unit(152, "miles")
  11132. },
  11133. ]
  11134. ))
  11135. characterMakers.push(() => makeCharacter(
  11136. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11137. {
  11138. front: {
  11139. height: math.unit(6.5, "inches"),
  11140. weight: math.unit(13, "oz"),
  11141. name: "Front",
  11142. image: {
  11143. source: "./media/characters/dafydd-tomos/front.svg",
  11144. extra: 2990 / 2603,
  11145. bottom: 0.03
  11146. }
  11147. },
  11148. },
  11149. [
  11150. {
  11151. name: "Micro",
  11152. height: math.unit(6.5, "inches"),
  11153. default: true
  11154. },
  11155. ]
  11156. ))
  11157. characterMakers.push(() => makeCharacter(
  11158. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11159. {
  11160. front: {
  11161. height: math.unit(6, "feet"),
  11162. weight: math.unit(150, "lb"),
  11163. name: "Front",
  11164. image: {
  11165. source: "./media/characters/splinter/front.svg",
  11166. extra: 2990 / 2882,
  11167. bottom: 0.04
  11168. }
  11169. },
  11170. back: {
  11171. height: math.unit(6, "feet"),
  11172. weight: math.unit(150, "lb"),
  11173. name: "Back",
  11174. image: {
  11175. source: "./media/characters/splinter/back.svg",
  11176. extra: 2990 / 2882,
  11177. bottom: 0.04
  11178. }
  11179. },
  11180. },
  11181. [
  11182. {
  11183. name: "Normal",
  11184. height: math.unit(6, "feet")
  11185. },
  11186. {
  11187. name: "Macro",
  11188. height: math.unit(230, "meters"),
  11189. default: true
  11190. },
  11191. ]
  11192. ))
  11193. characterMakers.push(() => makeCharacter(
  11194. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11195. {
  11196. front: {
  11197. height: math.unit(4 + 10 / 12, "feet"),
  11198. weight: math.unit(480, "lb"),
  11199. name: "Front",
  11200. image: {
  11201. source: "./media/characters/snow-gabumon/front.svg",
  11202. extra: 1140 / 963,
  11203. bottom: 0.058
  11204. }
  11205. },
  11206. back: {
  11207. height: math.unit(4 + 10 / 12, "feet"),
  11208. weight: math.unit(480, "lb"),
  11209. name: "Back",
  11210. image: {
  11211. source: "./media/characters/snow-gabumon/back.svg",
  11212. extra: 1115 / 962,
  11213. bottom: 0.041
  11214. }
  11215. },
  11216. frontUndresed: {
  11217. height: math.unit(4 + 10 / 12, "feet"),
  11218. weight: math.unit(480, "lb"),
  11219. name: "Front (Undressed)",
  11220. image: {
  11221. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11222. extra: 1061 / 960,
  11223. bottom: 0.045
  11224. }
  11225. },
  11226. },
  11227. [
  11228. {
  11229. name: "Micro",
  11230. height: math.unit(1, "inch")
  11231. },
  11232. {
  11233. name: "Normal",
  11234. height: math.unit(4 + 10 / 12, "feet"),
  11235. default: true
  11236. },
  11237. {
  11238. name: "Macro",
  11239. height: math.unit(200, "feet")
  11240. },
  11241. {
  11242. name: "Megamacro",
  11243. height: math.unit(120, "miles")
  11244. },
  11245. {
  11246. name: "Gigamacro",
  11247. height: math.unit(9800, "miles")
  11248. },
  11249. ]
  11250. ))
  11251. characterMakers.push(() => makeCharacter(
  11252. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11253. {
  11254. front: {
  11255. height: math.unit(1.7, "meters"),
  11256. weight: math.unit(140, "lb"),
  11257. name: "Front",
  11258. image: {
  11259. source: "./media/characters/moody/front.svg",
  11260. extra: 3226 / 3007,
  11261. bottom: 0.087
  11262. }
  11263. },
  11264. },
  11265. [
  11266. {
  11267. name: "Micro",
  11268. height: math.unit(1, "mm")
  11269. },
  11270. {
  11271. name: "Normal",
  11272. height: math.unit(1.7, "meters"),
  11273. default: true
  11274. },
  11275. {
  11276. name: "Macro",
  11277. height: math.unit(80, "meters")
  11278. },
  11279. {
  11280. name: "Macro+",
  11281. height: math.unit(500, "meters")
  11282. },
  11283. ]
  11284. ))
  11285. characterMakers.push(() => makeCharacter(
  11286. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11287. {
  11288. front: {
  11289. height: math.unit(6, "feet"),
  11290. weight: math.unit(150, "lb"),
  11291. name: "Front",
  11292. image: {
  11293. source: "./media/characters/zyas/front.svg",
  11294. extra: 1180 / 1120,
  11295. bottom: 0.045
  11296. }
  11297. },
  11298. },
  11299. [
  11300. {
  11301. name: "Normal",
  11302. height: math.unit(10, "feet"),
  11303. default: true
  11304. },
  11305. {
  11306. name: "Macro",
  11307. height: math.unit(500, "feet")
  11308. },
  11309. {
  11310. name: "Megamacro",
  11311. height: math.unit(5, "miles")
  11312. },
  11313. {
  11314. name: "Teramacro",
  11315. height: math.unit(150000, "miles")
  11316. },
  11317. ]
  11318. ))
  11319. characterMakers.push(() => makeCharacter(
  11320. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11321. {
  11322. front: {
  11323. height: math.unit(6, "feet"),
  11324. weight: math.unit(150, "lb"),
  11325. name: "Front",
  11326. image: {
  11327. source: "./media/characters/cuon/front.svg",
  11328. extra: 1390 / 1320,
  11329. bottom: 0.008
  11330. }
  11331. },
  11332. },
  11333. [
  11334. {
  11335. name: "Micro",
  11336. height: math.unit(3, "inches")
  11337. },
  11338. {
  11339. name: "Normal",
  11340. height: math.unit(18 + 9 / 12, "feet"),
  11341. default: true
  11342. },
  11343. {
  11344. name: "Macro",
  11345. height: math.unit(360, "feet")
  11346. },
  11347. {
  11348. name: "Megamacro",
  11349. height: math.unit(360, "miles")
  11350. },
  11351. ]
  11352. ))
  11353. characterMakers.push(() => makeCharacter(
  11354. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11355. {
  11356. front: {
  11357. height: math.unit(2.4, "meters"),
  11358. weight: math.unit(70, "kg"),
  11359. name: "Front",
  11360. image: {
  11361. source: "./media/characters/nyanuxk/front.svg",
  11362. extra: 1172 / 1084,
  11363. bottom: 0.065
  11364. }
  11365. },
  11366. side: {
  11367. height: math.unit(2.4, "meters"),
  11368. weight: math.unit(70, "kg"),
  11369. name: "Side",
  11370. image: {
  11371. source: "./media/characters/nyanuxk/side.svg",
  11372. extra: 1190 / 1132,
  11373. bottom: 0.007
  11374. }
  11375. },
  11376. back: {
  11377. height: math.unit(2.4, "meters"),
  11378. weight: math.unit(70, "kg"),
  11379. name: "Back",
  11380. image: {
  11381. source: "./media/characters/nyanuxk/back.svg",
  11382. extra: 1200 / 1141,
  11383. bottom: 0.015
  11384. }
  11385. },
  11386. foot: {
  11387. height: math.unit(0.52, "meters"),
  11388. name: "Foot",
  11389. image: {
  11390. source: "./media/characters/nyanuxk/foot.svg"
  11391. }
  11392. },
  11393. },
  11394. [
  11395. {
  11396. name: "Micro",
  11397. height: math.unit(2, "cm")
  11398. },
  11399. {
  11400. name: "Normal",
  11401. height: math.unit(2.4, "meters"),
  11402. default: true
  11403. },
  11404. {
  11405. name: "Smaller Macro",
  11406. height: math.unit(120, "meters")
  11407. },
  11408. {
  11409. name: "Bigger Macro",
  11410. height: math.unit(1.2, "km")
  11411. },
  11412. {
  11413. name: "Megamacro",
  11414. height: math.unit(15, "kilometers")
  11415. },
  11416. {
  11417. name: "Gigamacro",
  11418. height: math.unit(2000, "km")
  11419. },
  11420. {
  11421. name: "Teramacro",
  11422. height: math.unit(500000, "km")
  11423. },
  11424. ]
  11425. ))
  11426. characterMakers.push(() => makeCharacter(
  11427. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11428. {
  11429. side: {
  11430. height: math.unit(6, "feet"),
  11431. name: "Side",
  11432. image: {
  11433. source: "./media/characters/ailbhe/side.svg",
  11434. extra: 757 / 464,
  11435. bottom: 0.041
  11436. }
  11437. },
  11438. },
  11439. [
  11440. {
  11441. name: "Normal",
  11442. height: math.unit(1.07, "meters"),
  11443. default: true
  11444. },
  11445. ]
  11446. ))
  11447. characterMakers.push(() => makeCharacter(
  11448. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11449. {
  11450. front: {
  11451. height: math.unit(6, "feet"),
  11452. weight: math.unit(120, "kg"),
  11453. name: "Front",
  11454. image: {
  11455. source: "./media/characters/zevulfius/front.svg",
  11456. extra: 965 / 903
  11457. }
  11458. },
  11459. side: {
  11460. height: math.unit(6, "feet"),
  11461. weight: math.unit(120, "kg"),
  11462. name: "Side",
  11463. image: {
  11464. source: "./media/characters/zevulfius/side.svg",
  11465. extra: 939 / 900
  11466. }
  11467. },
  11468. back: {
  11469. height: math.unit(6, "feet"),
  11470. weight: math.unit(120, "kg"),
  11471. name: "Back",
  11472. image: {
  11473. source: "./media/characters/zevulfius/back.svg",
  11474. extra: 918 / 854,
  11475. bottom: 0.005
  11476. }
  11477. },
  11478. foot: {
  11479. height: math.unit(6 / 3.72, "feet"),
  11480. name: "Foot",
  11481. image: {
  11482. source: "./media/characters/zevulfius/foot.svg"
  11483. }
  11484. },
  11485. },
  11486. [
  11487. {
  11488. name: "Macro",
  11489. height: math.unit(750, "meters")
  11490. },
  11491. {
  11492. name: "Megamacro",
  11493. height: math.unit(20, "km"),
  11494. default: true
  11495. },
  11496. {
  11497. name: "Gigamacro",
  11498. height: math.unit(2000, "km")
  11499. },
  11500. {
  11501. name: "Teramacro",
  11502. height: math.unit(250000, "km")
  11503. },
  11504. ]
  11505. ))
  11506. characterMakers.push(() => makeCharacter(
  11507. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11508. {
  11509. front: {
  11510. height: math.unit(100, "feet"),
  11511. weight: math.unit(350, "kg"),
  11512. name: "Front",
  11513. image: {
  11514. source: "./media/characters/rikes/front.svg",
  11515. extra: 1565 / 1483,
  11516. bottom: 0.017
  11517. }
  11518. },
  11519. },
  11520. [
  11521. {
  11522. name: "Macro",
  11523. height: math.unit(100, "feet"),
  11524. default: true
  11525. },
  11526. ]
  11527. ))
  11528. characterMakers.push(() => makeCharacter(
  11529. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11530. {
  11531. front: {
  11532. height: math.unit(8, "feet"),
  11533. weight: math.unit(356, "lb"),
  11534. name: "Front",
  11535. image: {
  11536. source: "./media/characters/adam-silver-mane/front.svg",
  11537. extra: 1036/937,
  11538. bottom: 63/1099
  11539. }
  11540. },
  11541. side: {
  11542. height: math.unit(8, "feet"),
  11543. weight: math.unit(356, "lb"),
  11544. name: "Side",
  11545. image: {
  11546. source: "./media/characters/adam-silver-mane/side.svg",
  11547. extra: 997/901,
  11548. bottom: 59/1056
  11549. }
  11550. },
  11551. frontNsfw: {
  11552. height: math.unit(8, "feet"),
  11553. weight: math.unit(356, "lb"),
  11554. name: "Front (NSFW)",
  11555. image: {
  11556. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11557. extra: 1036/937,
  11558. bottom: 63/1099
  11559. }
  11560. },
  11561. sideNsfw: {
  11562. height: math.unit(8, "feet"),
  11563. weight: math.unit(356, "lb"),
  11564. name: "Side (NSFW)",
  11565. image: {
  11566. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11567. extra: 997/901,
  11568. bottom: 59/1056
  11569. }
  11570. },
  11571. dick: {
  11572. height: math.unit(2.1, "feet"),
  11573. name: "Dick",
  11574. image: {
  11575. source: "./media/characters/adam-silver-mane/dick.svg"
  11576. }
  11577. },
  11578. taur: {
  11579. height: math.unit(16, "feet"),
  11580. weight: math.unit(1500, "kg"),
  11581. name: "Taur",
  11582. image: {
  11583. source: "./media/characters/adam-silver-mane/taur.svg",
  11584. extra: 1713 / 1571,
  11585. bottom: 0.01
  11586. }
  11587. },
  11588. },
  11589. [
  11590. {
  11591. name: "Normal",
  11592. height: math.unit(8, "feet")
  11593. },
  11594. {
  11595. name: "Minimacro",
  11596. height: math.unit(80, "feet")
  11597. },
  11598. {
  11599. name: "MDA",
  11600. height: math.unit(80, "meters")
  11601. },
  11602. {
  11603. name: "Macro",
  11604. height: math.unit(800, "feet"),
  11605. default: true
  11606. },
  11607. {
  11608. name: "Megamacro",
  11609. height: math.unit(8000, "feet")
  11610. },
  11611. {
  11612. name: "Gigamacro",
  11613. height: math.unit(800, "miles")
  11614. },
  11615. {
  11616. name: "Teramacro",
  11617. height: math.unit(80000, "miles")
  11618. },
  11619. {
  11620. name: "Celestial",
  11621. height: math.unit(8e6, "miles")
  11622. },
  11623. {
  11624. name: "Star Dragon",
  11625. height: math.unit(800000, "parsecs")
  11626. },
  11627. {
  11628. name: "Godly",
  11629. height: math.unit(800, "teraparsecs")
  11630. },
  11631. ]
  11632. ))
  11633. characterMakers.push(() => makeCharacter(
  11634. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11635. {
  11636. front: {
  11637. height: math.unit(6, "feet"),
  11638. weight: math.unit(150, "lb"),
  11639. name: "Front",
  11640. image: {
  11641. source: "./media/characters/ky'owin/front.svg",
  11642. extra: 3888 / 3068,
  11643. bottom: 0.015
  11644. }
  11645. },
  11646. },
  11647. [
  11648. {
  11649. name: "Normal",
  11650. height: math.unit(6 + 8 / 12, "feet")
  11651. },
  11652. {
  11653. name: "Large",
  11654. height: math.unit(68, "feet")
  11655. },
  11656. {
  11657. name: "Macro",
  11658. height: math.unit(132, "feet")
  11659. },
  11660. {
  11661. name: "Macro+",
  11662. height: math.unit(340, "feet")
  11663. },
  11664. {
  11665. name: "Macro++",
  11666. height: math.unit(680, "feet"),
  11667. default: true
  11668. },
  11669. {
  11670. name: "Megamacro",
  11671. height: math.unit(1, "mile")
  11672. },
  11673. {
  11674. name: "Megamacro+",
  11675. height: math.unit(10, "miles")
  11676. },
  11677. ]
  11678. ))
  11679. characterMakers.push(() => makeCharacter(
  11680. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11681. {
  11682. front: {
  11683. height: math.unit(4, "feet"),
  11684. weight: math.unit(50, "lb"),
  11685. name: "Front",
  11686. image: {
  11687. source: "./media/characters/mal/front.svg",
  11688. extra: 785 / 724,
  11689. bottom: 0.07
  11690. }
  11691. },
  11692. },
  11693. [
  11694. {
  11695. name: "Micro",
  11696. height: math.unit(4, "inches")
  11697. },
  11698. {
  11699. name: "Normal",
  11700. height: math.unit(4, "feet"),
  11701. default: true
  11702. },
  11703. {
  11704. name: "Macro",
  11705. height: math.unit(200, "feet")
  11706. },
  11707. ]
  11708. ))
  11709. characterMakers.push(() => makeCharacter(
  11710. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11711. {
  11712. front: {
  11713. height: math.unit(6, "feet"),
  11714. weight: math.unit(150, "lb"),
  11715. name: "Front",
  11716. image: {
  11717. source: "./media/characters/jordan-deware/front.svg",
  11718. extra: 1191 / 1012
  11719. }
  11720. },
  11721. },
  11722. [
  11723. {
  11724. name: "Nano",
  11725. height: math.unit(0.01, "mm")
  11726. },
  11727. {
  11728. name: "Minimicro",
  11729. height: math.unit(1, "mm")
  11730. },
  11731. {
  11732. name: "Micro",
  11733. height: math.unit(0.5, "inches")
  11734. },
  11735. {
  11736. name: "Normal",
  11737. height: math.unit(4, "feet"),
  11738. default: true
  11739. },
  11740. {
  11741. name: "Minimacro",
  11742. height: math.unit(40, "meters")
  11743. },
  11744. {
  11745. name: "Small Macro",
  11746. height: math.unit(400, "meters")
  11747. },
  11748. {
  11749. name: "Macro",
  11750. height: math.unit(4, "miles")
  11751. },
  11752. {
  11753. name: "Megamacro",
  11754. height: math.unit(40, "miles")
  11755. },
  11756. {
  11757. name: "Megamacro+",
  11758. height: math.unit(400, "miles")
  11759. },
  11760. {
  11761. name: "Gigamacro",
  11762. height: math.unit(400000, "miles")
  11763. },
  11764. ]
  11765. ))
  11766. characterMakers.push(() => makeCharacter(
  11767. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11768. {
  11769. side: {
  11770. height: math.unit(6, "feet"),
  11771. weight: math.unit(150, "lb"),
  11772. name: "Side",
  11773. image: {
  11774. source: "./media/characters/kimiko/side.svg",
  11775. extra: 600 / 358
  11776. }
  11777. },
  11778. },
  11779. [
  11780. {
  11781. name: "Normal",
  11782. height: math.unit(15, "feet"),
  11783. default: true
  11784. },
  11785. {
  11786. name: "Macro",
  11787. height: math.unit(220, "feet")
  11788. },
  11789. {
  11790. name: "Macro+",
  11791. height: math.unit(1450, "feet")
  11792. },
  11793. {
  11794. name: "Megamacro",
  11795. height: math.unit(11500, "feet")
  11796. },
  11797. {
  11798. name: "Gigamacro",
  11799. height: math.unit(9500, "miles")
  11800. },
  11801. {
  11802. name: "Teramacro",
  11803. height: math.unit(2208005005, "miles")
  11804. },
  11805. {
  11806. name: "Examacro",
  11807. height: math.unit(2750, "parsecs")
  11808. },
  11809. {
  11810. name: "Zettamacro",
  11811. height: math.unit(101500, "parsecs")
  11812. },
  11813. ]
  11814. ))
  11815. characterMakers.push(() => makeCharacter(
  11816. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11817. {
  11818. front: {
  11819. height: math.unit(6, "feet"),
  11820. weight: math.unit(70, "kg"),
  11821. name: "Front",
  11822. image: {
  11823. source: "./media/characters/andrew-sleepy/front.svg"
  11824. }
  11825. },
  11826. side: {
  11827. height: math.unit(6, "feet"),
  11828. weight: math.unit(70, "kg"),
  11829. name: "Side",
  11830. image: {
  11831. source: "./media/characters/andrew-sleepy/side.svg"
  11832. }
  11833. },
  11834. },
  11835. [
  11836. {
  11837. name: "Micro",
  11838. height: math.unit(1, "mm"),
  11839. default: true
  11840. },
  11841. ]
  11842. ))
  11843. characterMakers.push(() => makeCharacter(
  11844. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11845. {
  11846. front: {
  11847. height: math.unit(6, "feet"),
  11848. weight: math.unit(150, "lb"),
  11849. name: "Front",
  11850. image: {
  11851. source: "./media/characters/judio/front.svg",
  11852. extra: 1258 / 1110
  11853. }
  11854. },
  11855. },
  11856. [
  11857. {
  11858. name: "Normal",
  11859. height: math.unit(5 + 6 / 12, "feet")
  11860. },
  11861. {
  11862. name: "Macro",
  11863. height: math.unit(1000, "feet"),
  11864. default: true
  11865. },
  11866. {
  11867. name: "Megamacro",
  11868. height: math.unit(10, "miles")
  11869. },
  11870. ]
  11871. ))
  11872. characterMakers.push(() => makeCharacter(
  11873. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11874. {
  11875. frontDressed: {
  11876. height: math.unit(6, "feet"),
  11877. weight: math.unit(68, "kg"),
  11878. name: "Front (Dressed)",
  11879. image: {
  11880. source: "./media/characters/nomaxice/front-dressed.svg",
  11881. extra: 1137/824,
  11882. bottom: 74/1211
  11883. }
  11884. },
  11885. frontShorts: {
  11886. height: math.unit(6, "feet"),
  11887. weight: math.unit(68, "kg"),
  11888. name: "Front (Shorts)",
  11889. image: {
  11890. source: "./media/characters/nomaxice/front-shorts.svg",
  11891. extra: 1137/824,
  11892. bottom: 74/1211
  11893. }
  11894. },
  11895. back: {
  11896. height: math.unit(6, "feet"),
  11897. weight: math.unit(68, "kg"),
  11898. name: "Back",
  11899. image: {
  11900. source: "./media/characters/nomaxice/back.svg",
  11901. extra: 822/786,
  11902. bottom: 39/861
  11903. }
  11904. },
  11905. hand: {
  11906. height: math.unit(0.565, "feet"),
  11907. name: "Hand",
  11908. image: {
  11909. source: "./media/characters/nomaxice/hand.svg"
  11910. }
  11911. },
  11912. foot: {
  11913. height: math.unit(1, "feet"),
  11914. name: "Foot",
  11915. image: {
  11916. source: "./media/characters/nomaxice/foot.svg"
  11917. }
  11918. },
  11919. },
  11920. [
  11921. {
  11922. name: "Micro",
  11923. height: math.unit(8, "cm")
  11924. },
  11925. {
  11926. name: "Norm",
  11927. height: math.unit(1.82, "m")
  11928. },
  11929. {
  11930. name: "Norm+",
  11931. height: math.unit(8.8, "feet"),
  11932. default: true
  11933. },
  11934. {
  11935. name: "Big",
  11936. height: math.unit(8, "meters")
  11937. },
  11938. {
  11939. name: "Macro",
  11940. height: math.unit(18, "meters")
  11941. },
  11942. {
  11943. name: "Macro+",
  11944. height: math.unit(88, "meters")
  11945. },
  11946. ]
  11947. ))
  11948. characterMakers.push(() => makeCharacter(
  11949. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11950. {
  11951. front: {
  11952. height: math.unit(12, "feet"),
  11953. weight: math.unit(1.5, "tons"),
  11954. name: "Front",
  11955. image: {
  11956. source: "./media/characters/dydros/front.svg",
  11957. extra: 863 / 800,
  11958. bottom: 0.015
  11959. }
  11960. },
  11961. back: {
  11962. height: math.unit(12, "feet"),
  11963. weight: math.unit(1.5, "tons"),
  11964. name: "Back",
  11965. image: {
  11966. source: "./media/characters/dydros/back.svg",
  11967. extra: 900 / 843,
  11968. bottom: 0.005
  11969. }
  11970. },
  11971. },
  11972. [
  11973. {
  11974. name: "Normal",
  11975. height: math.unit(12, "feet"),
  11976. default: true
  11977. },
  11978. ]
  11979. ))
  11980. characterMakers.push(() => makeCharacter(
  11981. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11982. {
  11983. front: {
  11984. height: math.unit(6, "feet"),
  11985. weight: math.unit(100, "kg"),
  11986. name: "Front",
  11987. image: {
  11988. source: "./media/characters/riggi/front.svg",
  11989. extra: 5787 / 5303
  11990. }
  11991. },
  11992. hyper: {
  11993. height: math.unit(6 * 5 / 3, "feet"),
  11994. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11995. name: "Hyper",
  11996. image: {
  11997. source: "./media/characters/riggi/hyper.svg",
  11998. extra: 3595 / 3485
  11999. }
  12000. },
  12001. },
  12002. [
  12003. {
  12004. name: "Small Macro",
  12005. height: math.unit(50, "feet")
  12006. },
  12007. {
  12008. name: "Default",
  12009. height: math.unit(200, "feet"),
  12010. default: true
  12011. },
  12012. {
  12013. name: "Loom",
  12014. height: math.unit(10000, "feet")
  12015. },
  12016. {
  12017. name: "Cruising Altitude",
  12018. height: math.unit(30000, "feet")
  12019. },
  12020. {
  12021. name: "Megamacro",
  12022. height: math.unit(100, "miles")
  12023. },
  12024. {
  12025. name: "Continent Sized",
  12026. height: math.unit(2800, "miles")
  12027. },
  12028. {
  12029. name: "Earth Sized",
  12030. height: math.unit(8000, "miles")
  12031. },
  12032. ]
  12033. ))
  12034. characterMakers.push(() => makeCharacter(
  12035. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12036. {
  12037. front: {
  12038. height: math.unit(6, "feet"),
  12039. weight: math.unit(250, "lb"),
  12040. name: "Front",
  12041. image: {
  12042. source: "./media/characters/alexi/front.svg",
  12043. extra: 3483 / 3291,
  12044. bottom: 0.04
  12045. }
  12046. },
  12047. back: {
  12048. height: math.unit(6, "feet"),
  12049. weight: math.unit(250, "lb"),
  12050. name: "Back",
  12051. image: {
  12052. source: "./media/characters/alexi/back.svg",
  12053. extra: 3533 / 3356,
  12054. bottom: 0.021
  12055. }
  12056. },
  12057. frontTransforming: {
  12058. height: math.unit(8.58, "feet"),
  12059. weight: math.unit(1300, "lb"),
  12060. name: "Transforming",
  12061. image: {
  12062. source: "./media/characters/alexi/front-transforming.svg",
  12063. extra: 437 / 409,
  12064. bottom: 19 / 458.66
  12065. }
  12066. },
  12067. frontTransformed: {
  12068. height: math.unit(12.5, "feet"),
  12069. weight: math.unit(4000, "lb"),
  12070. name: "Transformed",
  12071. image: {
  12072. source: "./media/characters/alexi/front-transformed.svg",
  12073. extra: 639 / 614,
  12074. bottom: 30.55 / 671
  12075. }
  12076. },
  12077. },
  12078. [
  12079. {
  12080. name: "Normal",
  12081. height: math.unit(14, "feet"),
  12082. default: true
  12083. },
  12084. {
  12085. name: "Minimacro",
  12086. height: math.unit(30, "meters")
  12087. },
  12088. {
  12089. name: "Macro",
  12090. height: math.unit(500, "meters")
  12091. },
  12092. {
  12093. name: "Megamacro",
  12094. height: math.unit(9000, "km")
  12095. },
  12096. {
  12097. name: "Teramacro",
  12098. height: math.unit(384000, "km")
  12099. },
  12100. ]
  12101. ))
  12102. characterMakers.push(() => makeCharacter(
  12103. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12104. {
  12105. front: {
  12106. height: math.unit(6, "feet"),
  12107. weight: math.unit(150, "lb"),
  12108. name: "Front",
  12109. image: {
  12110. source: "./media/characters/kayroo/front.svg",
  12111. extra: 1153 / 1038,
  12112. bottom: 0.06
  12113. }
  12114. },
  12115. foot: {
  12116. height: math.unit(6, "feet"),
  12117. weight: math.unit(150, "lb"),
  12118. name: "Foot",
  12119. image: {
  12120. source: "./media/characters/kayroo/foot.svg"
  12121. }
  12122. },
  12123. },
  12124. [
  12125. {
  12126. name: "Normal",
  12127. height: math.unit(8, "feet"),
  12128. default: true
  12129. },
  12130. {
  12131. name: "Minimacro",
  12132. height: math.unit(250, "feet")
  12133. },
  12134. {
  12135. name: "Macro",
  12136. height: math.unit(2800, "feet")
  12137. },
  12138. {
  12139. name: "Megamacro",
  12140. height: math.unit(5200, "feet")
  12141. },
  12142. {
  12143. name: "Gigamacro",
  12144. height: math.unit(27000, "feet")
  12145. },
  12146. {
  12147. name: "Omega",
  12148. height: math.unit(45000, "feet")
  12149. },
  12150. ]
  12151. ))
  12152. characterMakers.push(() => makeCharacter(
  12153. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12154. {
  12155. front: {
  12156. height: math.unit(18, "feet"),
  12157. weight: math.unit(5800, "lb"),
  12158. name: "Front",
  12159. image: {
  12160. source: "./media/characters/rhys/front.svg",
  12161. extra: 3386 / 3090,
  12162. bottom: 0.07
  12163. }
  12164. },
  12165. },
  12166. [
  12167. {
  12168. name: "Normal",
  12169. height: math.unit(18, "feet"),
  12170. default: true
  12171. },
  12172. {
  12173. name: "Working Size",
  12174. height: math.unit(200, "feet")
  12175. },
  12176. {
  12177. name: "Demolition Size",
  12178. height: math.unit(2000, "feet")
  12179. },
  12180. {
  12181. name: "Maximum Licensed Size",
  12182. height: math.unit(5, "miles")
  12183. },
  12184. {
  12185. name: "Maximum Observed Size",
  12186. height: math.unit(10, "yottameters")
  12187. },
  12188. ]
  12189. ))
  12190. characterMakers.push(() => makeCharacter(
  12191. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12192. {
  12193. front: {
  12194. height: math.unit(6, "feet"),
  12195. weight: math.unit(250, "lb"),
  12196. name: "Front",
  12197. image: {
  12198. source: "./media/characters/toto/front.svg",
  12199. extra: 527 / 479,
  12200. bottom: 0.05
  12201. }
  12202. },
  12203. },
  12204. [
  12205. {
  12206. name: "Micro",
  12207. height: math.unit(3, "feet")
  12208. },
  12209. {
  12210. name: "Normal",
  12211. height: math.unit(10, "feet")
  12212. },
  12213. {
  12214. name: "Macro",
  12215. height: math.unit(150, "feet"),
  12216. default: true
  12217. },
  12218. {
  12219. name: "Megamacro",
  12220. height: math.unit(1200, "feet")
  12221. },
  12222. ]
  12223. ))
  12224. characterMakers.push(() => makeCharacter(
  12225. { name: "King", species: ["lion"], tags: ["anthro"] },
  12226. {
  12227. back: {
  12228. height: math.unit(6, "feet"),
  12229. weight: math.unit(150, "lb"),
  12230. name: "Back",
  12231. image: {
  12232. source: "./media/characters/king/back.svg"
  12233. }
  12234. },
  12235. },
  12236. [
  12237. {
  12238. name: "Micro",
  12239. height: math.unit(2, "inches")
  12240. },
  12241. {
  12242. name: "Normal",
  12243. height: math.unit(8, "feet")
  12244. },
  12245. {
  12246. name: "Macro",
  12247. height: math.unit(200, "feet"),
  12248. default: true
  12249. },
  12250. {
  12251. name: "Megamacro",
  12252. height: math.unit(50, "miles")
  12253. },
  12254. ]
  12255. ))
  12256. characterMakers.push(() => makeCharacter(
  12257. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12258. {
  12259. front: {
  12260. height: math.unit(11, "feet"),
  12261. weight: math.unit(1400, "lb"),
  12262. name: "Front",
  12263. image: {
  12264. source: "./media/characters/cordite/front.svg",
  12265. extra: 1919/1827,
  12266. bottom: 40/1959
  12267. }
  12268. },
  12269. side: {
  12270. height: math.unit(11, "feet"),
  12271. weight: math.unit(1400, "lb"),
  12272. name: "Side",
  12273. image: {
  12274. source: "./media/characters/cordite/side.svg",
  12275. extra: 1908/1793,
  12276. bottom: 38/1946
  12277. }
  12278. },
  12279. back: {
  12280. height: math.unit(11, "feet"),
  12281. weight: math.unit(1400, "lb"),
  12282. name: "Back",
  12283. image: {
  12284. source: "./media/characters/cordite/back.svg",
  12285. extra: 1938/1837,
  12286. bottom: 10/1948
  12287. }
  12288. },
  12289. feral: {
  12290. height: math.unit(2, "feet"),
  12291. weight: math.unit(90, "lb"),
  12292. name: "Feral",
  12293. image: {
  12294. source: "./media/characters/cordite/feral.svg",
  12295. extra: 1260 / 755,
  12296. bottom: 0.05
  12297. }
  12298. },
  12299. },
  12300. [
  12301. {
  12302. name: "Normal",
  12303. height: math.unit(11, "feet"),
  12304. default: true
  12305. },
  12306. ]
  12307. ))
  12308. characterMakers.push(() => makeCharacter(
  12309. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12310. {
  12311. front: {
  12312. height: math.unit(6, "feet"),
  12313. weight: math.unit(150, "lb"),
  12314. name: "Front",
  12315. image: {
  12316. source: "./media/characters/pianostrong/front.svg",
  12317. extra: 6577 / 6254,
  12318. bottom: 0.02
  12319. }
  12320. },
  12321. side: {
  12322. height: math.unit(6, "feet"),
  12323. weight: math.unit(150, "lb"),
  12324. name: "Side",
  12325. image: {
  12326. source: "./media/characters/pianostrong/side.svg",
  12327. extra: 6106 / 5730
  12328. }
  12329. },
  12330. back: {
  12331. height: math.unit(6, "feet"),
  12332. weight: math.unit(150, "lb"),
  12333. name: "Back",
  12334. image: {
  12335. source: "./media/characters/pianostrong/back.svg",
  12336. extra: 6085 / 5733,
  12337. bottom: 0.01
  12338. }
  12339. },
  12340. },
  12341. [
  12342. {
  12343. name: "Macro",
  12344. height: math.unit(100, "feet")
  12345. },
  12346. {
  12347. name: "Macro+",
  12348. height: math.unit(300, "feet"),
  12349. default: true
  12350. },
  12351. {
  12352. name: "Macro++",
  12353. height: math.unit(1000, "feet")
  12354. },
  12355. ]
  12356. ))
  12357. characterMakers.push(() => makeCharacter(
  12358. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12359. {
  12360. front: {
  12361. height: math.unit(6, "feet"),
  12362. weight: math.unit(150, "lb"),
  12363. name: "Front",
  12364. image: {
  12365. source: "./media/characters/kona/front.svg",
  12366. extra: 2960 / 2629,
  12367. bottom: 0.005
  12368. }
  12369. },
  12370. },
  12371. [
  12372. {
  12373. name: "Normal",
  12374. height: math.unit(11 + 8 / 12, "feet")
  12375. },
  12376. {
  12377. name: "Macro",
  12378. height: math.unit(850, "feet"),
  12379. default: true
  12380. },
  12381. {
  12382. name: "Macro+",
  12383. height: math.unit(1.5, "km"),
  12384. default: true
  12385. },
  12386. {
  12387. name: "Megamacro",
  12388. height: math.unit(80, "miles")
  12389. },
  12390. {
  12391. name: "Gigamacro",
  12392. height: math.unit(3500, "miles")
  12393. },
  12394. ]
  12395. ))
  12396. characterMakers.push(() => makeCharacter(
  12397. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12398. {
  12399. side: {
  12400. height: math.unit(1.9, "meters"),
  12401. weight: math.unit(326, "kg"),
  12402. name: "Side",
  12403. image: {
  12404. source: "./media/characters/levi/side.svg",
  12405. extra: 1704 / 1334,
  12406. bottom: 0.02
  12407. }
  12408. },
  12409. },
  12410. [
  12411. {
  12412. name: "Normal",
  12413. height: math.unit(1.9, "meters"),
  12414. default: true
  12415. },
  12416. {
  12417. name: "Macro",
  12418. height: math.unit(20, "meters")
  12419. },
  12420. {
  12421. name: "Macro+",
  12422. height: math.unit(200, "meters")
  12423. },
  12424. {
  12425. name: "Megamacro",
  12426. height: math.unit(2, "km")
  12427. },
  12428. {
  12429. name: "Megamacro+",
  12430. height: math.unit(20, "km")
  12431. },
  12432. {
  12433. name: "Gigamacro",
  12434. height: math.unit(2500, "km")
  12435. },
  12436. {
  12437. name: "Gigamacro+",
  12438. height: math.unit(120000, "km")
  12439. },
  12440. {
  12441. name: "Teramacro",
  12442. height: math.unit(7.77e6, "km")
  12443. },
  12444. ]
  12445. ))
  12446. characterMakers.push(() => makeCharacter(
  12447. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12448. {
  12449. front: {
  12450. height: math.unit(6 + 4/12, "feet"),
  12451. weight: math.unit(190, "lb"),
  12452. name: "Front",
  12453. image: {
  12454. source: "./media/characters/bmc/front.svg",
  12455. extra: 1626/1472,
  12456. bottom: 79/1705
  12457. }
  12458. },
  12459. back: {
  12460. height: math.unit(6 + 4/12, "feet"),
  12461. weight: math.unit(190, "lb"),
  12462. name: "Back",
  12463. image: {
  12464. source: "./media/characters/bmc/back.svg",
  12465. extra: 1640/1479,
  12466. bottom: 45/1685
  12467. }
  12468. },
  12469. frontArmor: {
  12470. height: math.unit(6 + 4/12, "feet"),
  12471. weight: math.unit(190, "lb"),
  12472. name: "Front-armor",
  12473. image: {
  12474. source: "./media/characters/bmc/front-armor.svg",
  12475. extra: 1538/1468,
  12476. bottom: 79/1617
  12477. }
  12478. },
  12479. },
  12480. [
  12481. {
  12482. name: "Human-sized",
  12483. height: math.unit(6 + 4 / 12, "feet")
  12484. },
  12485. {
  12486. name: "Interactive Size",
  12487. height: math.unit(25, "feet")
  12488. },
  12489. {
  12490. name: "Small",
  12491. height: math.unit(250, "feet")
  12492. },
  12493. {
  12494. name: "Normal",
  12495. height: math.unit(1250, "feet"),
  12496. default: true
  12497. },
  12498. {
  12499. name: "Good Day",
  12500. height: math.unit(88, "miles")
  12501. },
  12502. {
  12503. name: "Largest Measured Size",
  12504. height: math.unit(105.960, "galaxies")
  12505. },
  12506. ]
  12507. ))
  12508. characterMakers.push(() => makeCharacter(
  12509. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12510. {
  12511. front: {
  12512. height: math.unit(20, "feet"),
  12513. weight: math.unit(2016, "kg"),
  12514. name: "Front",
  12515. image: {
  12516. source: "./media/characters/sven-the-kaiju/front.svg",
  12517. extra: 1277/1250,
  12518. bottom: 35/1312
  12519. }
  12520. },
  12521. mouth: {
  12522. height: math.unit(1.85, "feet"),
  12523. name: "Mouth",
  12524. image: {
  12525. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12526. }
  12527. },
  12528. },
  12529. [
  12530. {
  12531. name: "Fairy",
  12532. height: math.unit(6, "inches")
  12533. },
  12534. {
  12535. name: "Normal",
  12536. height: math.unit(20, "feet"),
  12537. default: true
  12538. },
  12539. {
  12540. name: "Rampage",
  12541. height: math.unit(200, "feet")
  12542. },
  12543. {
  12544. name: "Archfey Forest Guardian",
  12545. height: math.unit(1, "mile")
  12546. },
  12547. ]
  12548. ))
  12549. characterMakers.push(() => makeCharacter(
  12550. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12551. {
  12552. front: {
  12553. height: math.unit(4, "meters"),
  12554. weight: math.unit(2, "tons"),
  12555. name: "Front",
  12556. image: {
  12557. source: "./media/characters/marik/front.svg",
  12558. extra: 1057 / 1003,
  12559. bottom: 0.08
  12560. }
  12561. },
  12562. },
  12563. [
  12564. {
  12565. name: "Normal",
  12566. height: math.unit(4, "meters"),
  12567. default: true
  12568. },
  12569. {
  12570. name: "Macro",
  12571. height: math.unit(20, "meters")
  12572. },
  12573. {
  12574. name: "Megamacro",
  12575. height: math.unit(50, "km")
  12576. },
  12577. {
  12578. name: "Gigamacro",
  12579. height: math.unit(100, "km")
  12580. },
  12581. {
  12582. name: "Alpha Macro",
  12583. height: math.unit(7.88e7, "yottameters")
  12584. },
  12585. ]
  12586. ))
  12587. characterMakers.push(() => makeCharacter(
  12588. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12589. {
  12590. front: {
  12591. height: math.unit(6, "feet"),
  12592. weight: math.unit(110, "lb"),
  12593. name: "Front",
  12594. image: {
  12595. source: "./media/characters/mel/front.svg",
  12596. extra: 736 / 617,
  12597. bottom: 0.017
  12598. }
  12599. },
  12600. },
  12601. [
  12602. {
  12603. name: "Pico",
  12604. height: math.unit(3, "pm")
  12605. },
  12606. {
  12607. name: "Nano",
  12608. height: math.unit(3, "nm")
  12609. },
  12610. {
  12611. name: "Micro",
  12612. height: math.unit(0.3, "mm"),
  12613. default: true
  12614. },
  12615. {
  12616. name: "Micro+",
  12617. height: math.unit(3, "mm")
  12618. },
  12619. {
  12620. name: "Normal",
  12621. height: math.unit(5 + 10.5 / 12, "feet")
  12622. },
  12623. ]
  12624. ))
  12625. characterMakers.push(() => makeCharacter(
  12626. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12627. {
  12628. kaiju: {
  12629. height: math.unit(1.75, "meters"),
  12630. weight: math.unit(55, "kg"),
  12631. name: "Kaiju",
  12632. image: {
  12633. source: "./media/characters/lykonous/kaiju.svg",
  12634. extra: 1055 / 946,
  12635. bottom: 0.135
  12636. }
  12637. },
  12638. },
  12639. [
  12640. {
  12641. name: "Normal",
  12642. height: math.unit(2.5, "meters"),
  12643. default: true
  12644. },
  12645. {
  12646. name: "Kaiju Dragon",
  12647. height: math.unit(60, "meters")
  12648. },
  12649. {
  12650. name: "Mega Kaiju",
  12651. height: math.unit(120, "km")
  12652. },
  12653. {
  12654. name: "Giga Kaiju",
  12655. height: math.unit(200, "megameters")
  12656. },
  12657. {
  12658. name: "Terra Kaiju",
  12659. height: math.unit(400, "gigameters")
  12660. },
  12661. {
  12662. name: "Kaiju Dragon God",
  12663. height: math.unit(13000, "exaparsecs")
  12664. },
  12665. ]
  12666. ))
  12667. characterMakers.push(() => makeCharacter(
  12668. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12669. {
  12670. front: {
  12671. height: math.unit(6, "feet"),
  12672. weight: math.unit(150, "lb"),
  12673. name: "Front",
  12674. image: {
  12675. source: "./media/characters/blü/front.svg",
  12676. extra: 1883 / 1564,
  12677. bottom: 0.031
  12678. }
  12679. },
  12680. },
  12681. [
  12682. {
  12683. name: "Normal",
  12684. height: math.unit(13, "feet"),
  12685. default: true
  12686. },
  12687. {
  12688. name: "Big Boi",
  12689. height: math.unit(150, "meters")
  12690. },
  12691. {
  12692. name: "Mini Stomper",
  12693. height: math.unit(300, "meters")
  12694. },
  12695. {
  12696. name: "Macro",
  12697. height: math.unit(1000, "meters")
  12698. },
  12699. {
  12700. name: "Megamacro",
  12701. height: math.unit(11000, "meters")
  12702. },
  12703. {
  12704. name: "Gigamacro",
  12705. height: math.unit(11000, "km")
  12706. },
  12707. {
  12708. name: "Teramacro",
  12709. height: math.unit(420000, "km")
  12710. },
  12711. {
  12712. name: "Examacro",
  12713. height: math.unit(120, "parsecs")
  12714. },
  12715. {
  12716. name: "God Tho",
  12717. height: math.unit(98000000000, "parsecs")
  12718. },
  12719. ]
  12720. ))
  12721. characterMakers.push(() => makeCharacter(
  12722. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12723. {
  12724. taurFront: {
  12725. height: math.unit(6, "feet"),
  12726. weight: math.unit(200, "lb"),
  12727. name: "Taur (Front)",
  12728. image: {
  12729. source: "./media/characters/scales/taur-front.svg",
  12730. extra: 1,
  12731. bottom: 0.05
  12732. }
  12733. },
  12734. taurBack: {
  12735. height: math.unit(6, "feet"),
  12736. weight: math.unit(200, "lb"),
  12737. name: "Taur (Back)",
  12738. image: {
  12739. source: "./media/characters/scales/taur-back.svg",
  12740. extra: 1,
  12741. bottom: 0.08
  12742. }
  12743. },
  12744. anthro: {
  12745. height: math.unit(6 * 7 / 12, "feet"),
  12746. weight: math.unit(100, "lb"),
  12747. name: "Anthro",
  12748. image: {
  12749. source: "./media/characters/scales/anthro.svg",
  12750. extra: 1,
  12751. bottom: 0.06
  12752. }
  12753. },
  12754. },
  12755. [
  12756. {
  12757. name: "Normal",
  12758. height: math.unit(12, "feet"),
  12759. default: true
  12760. },
  12761. ]
  12762. ))
  12763. characterMakers.push(() => makeCharacter(
  12764. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12765. {
  12766. front: {
  12767. height: math.unit(6, "feet"),
  12768. weight: math.unit(150, "lb"),
  12769. name: "Front",
  12770. image: {
  12771. source: "./media/characters/koragos/front.svg",
  12772. extra: 841 / 794,
  12773. bottom: 0.035
  12774. }
  12775. },
  12776. back: {
  12777. height: math.unit(6, "feet"),
  12778. weight: math.unit(150, "lb"),
  12779. name: "Back",
  12780. image: {
  12781. source: "./media/characters/koragos/back.svg",
  12782. extra: 841 / 810,
  12783. bottom: 0.022
  12784. }
  12785. },
  12786. },
  12787. [
  12788. {
  12789. name: "Normal",
  12790. height: math.unit(6 + 11 / 12, "feet"),
  12791. default: true
  12792. },
  12793. {
  12794. name: "Macro",
  12795. height: math.unit(490, "feet")
  12796. },
  12797. {
  12798. name: "Megamacro",
  12799. height: math.unit(10, "miles")
  12800. },
  12801. {
  12802. name: "Gigamacro",
  12803. height: math.unit(50, "miles")
  12804. },
  12805. ]
  12806. ))
  12807. characterMakers.push(() => makeCharacter(
  12808. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12809. {
  12810. front: {
  12811. height: math.unit(6, "feet"),
  12812. weight: math.unit(250, "lb"),
  12813. name: "Front",
  12814. image: {
  12815. source: "./media/characters/xylrem/front.svg",
  12816. extra: 3323 / 3050,
  12817. bottom: 0.065
  12818. }
  12819. },
  12820. },
  12821. [
  12822. {
  12823. name: "Micro",
  12824. height: math.unit(4, "feet")
  12825. },
  12826. {
  12827. name: "Normal",
  12828. height: math.unit(16, "feet"),
  12829. default: true
  12830. },
  12831. {
  12832. name: "Macro",
  12833. height: math.unit(2720, "feet")
  12834. },
  12835. {
  12836. name: "Megamacro",
  12837. height: math.unit(25000, "miles")
  12838. },
  12839. ]
  12840. ))
  12841. characterMakers.push(() => makeCharacter(
  12842. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12843. {
  12844. front: {
  12845. height: math.unit(8, "feet"),
  12846. weight: math.unit(250, "kg"),
  12847. name: "Front",
  12848. image: {
  12849. source: "./media/characters/ikideru/front.svg",
  12850. extra: 930 / 870,
  12851. bottom: 0.087
  12852. }
  12853. },
  12854. back: {
  12855. height: math.unit(8, "feet"),
  12856. weight: math.unit(250, "kg"),
  12857. name: "Back",
  12858. image: {
  12859. source: "./media/characters/ikideru/back.svg",
  12860. extra: 919 / 852,
  12861. bottom: 0.055
  12862. }
  12863. },
  12864. },
  12865. [
  12866. {
  12867. name: "Rare",
  12868. height: math.unit(8, "feet"),
  12869. default: true
  12870. },
  12871. {
  12872. name: "Playful Loom",
  12873. height: math.unit(80, "feet")
  12874. },
  12875. {
  12876. name: "City Leaner",
  12877. height: math.unit(230, "feet")
  12878. },
  12879. {
  12880. name: "Megamacro",
  12881. height: math.unit(2500, "feet")
  12882. },
  12883. {
  12884. name: "Gigamacro",
  12885. height: math.unit(26400, "feet")
  12886. },
  12887. {
  12888. name: "Tectonic Shifter",
  12889. height: math.unit(1.7, "megameters")
  12890. },
  12891. {
  12892. name: "Planet Carer",
  12893. height: math.unit(21, "megameters")
  12894. },
  12895. {
  12896. name: "God",
  12897. height: math.unit(11157.22, "parsecs")
  12898. },
  12899. ]
  12900. ))
  12901. characterMakers.push(() => makeCharacter(
  12902. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12903. {
  12904. front: {
  12905. height: math.unit(6, "feet"),
  12906. weight: math.unit(120, "lb"),
  12907. name: "Front",
  12908. image: {
  12909. source: "./media/characters/neo/front.svg"
  12910. }
  12911. },
  12912. },
  12913. [
  12914. {
  12915. name: "Micro",
  12916. height: math.unit(2, "inches"),
  12917. default: true
  12918. },
  12919. {
  12920. name: "Human Size",
  12921. height: math.unit(5 + 8 / 12, "feet")
  12922. },
  12923. ]
  12924. ))
  12925. characterMakers.push(() => makeCharacter(
  12926. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12927. {
  12928. front: {
  12929. height: math.unit(13 + 10 / 12, "feet"),
  12930. weight: math.unit(5320, "lb"),
  12931. name: "Front",
  12932. image: {
  12933. source: "./media/characters/chauncey-chantz/front.svg",
  12934. extra: 1587 / 1435,
  12935. bottom: 0.02
  12936. }
  12937. },
  12938. },
  12939. [
  12940. {
  12941. name: "Normal",
  12942. height: math.unit(13 + 10 / 12, "feet"),
  12943. default: true
  12944. },
  12945. {
  12946. name: "Macro",
  12947. height: math.unit(45, "feet")
  12948. },
  12949. {
  12950. name: "Megamacro",
  12951. height: math.unit(250, "miles")
  12952. },
  12953. {
  12954. name: "Planetary",
  12955. height: math.unit(10000, "miles")
  12956. },
  12957. {
  12958. name: "Galactic",
  12959. height: math.unit(40000, "parsecs")
  12960. },
  12961. {
  12962. name: "Universal",
  12963. height: math.unit(1, "yottameter")
  12964. },
  12965. ]
  12966. ))
  12967. characterMakers.push(() => makeCharacter(
  12968. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12969. {
  12970. front: {
  12971. height: math.unit(6, "feet"),
  12972. weight: math.unit(150, "lb"),
  12973. name: "Front",
  12974. image: {
  12975. source: "./media/characters/epifox/front.svg",
  12976. extra: 1,
  12977. bottom: 0.075
  12978. }
  12979. },
  12980. },
  12981. [
  12982. {
  12983. name: "Micro",
  12984. height: math.unit(6, "inches")
  12985. },
  12986. {
  12987. name: "Normal",
  12988. height: math.unit(12, "feet"),
  12989. default: true
  12990. },
  12991. {
  12992. name: "Macro",
  12993. height: math.unit(3810, "feet")
  12994. },
  12995. {
  12996. name: "Megamacro",
  12997. height: math.unit(500, "miles")
  12998. },
  12999. ]
  13000. ))
  13001. characterMakers.push(() => makeCharacter(
  13002. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13003. {
  13004. front: {
  13005. height: math.unit(1.8796, "m"),
  13006. weight: math.unit(230, "lb"),
  13007. name: "Front",
  13008. image: {
  13009. source: "./media/characters/colin-t/front.svg",
  13010. extra: 1272 / 1193,
  13011. bottom: 0.07
  13012. }
  13013. },
  13014. },
  13015. [
  13016. {
  13017. name: "Micro",
  13018. height: math.unit(0.571, "meters")
  13019. },
  13020. {
  13021. name: "Normal",
  13022. height: math.unit(1.8796, "meters"),
  13023. default: true
  13024. },
  13025. {
  13026. name: "Tall",
  13027. height: math.unit(4, "meters")
  13028. },
  13029. {
  13030. name: "Macro",
  13031. height: math.unit(67.241, "meters")
  13032. },
  13033. {
  13034. name: "Megamacro",
  13035. height: math.unit(371.856, "meters")
  13036. },
  13037. {
  13038. name: "Planetary",
  13039. height: math.unit(12631.5689, "km")
  13040. },
  13041. ]
  13042. ))
  13043. characterMakers.push(() => makeCharacter(
  13044. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13045. {
  13046. front: {
  13047. height: math.unit(1.85, "meters"),
  13048. weight: math.unit(80, "kg"),
  13049. name: "Front",
  13050. image: {
  13051. source: "./media/characters/matvei/front.svg",
  13052. extra: 614 / 594,
  13053. bottom: 0.01
  13054. }
  13055. },
  13056. },
  13057. [
  13058. {
  13059. name: "Normal",
  13060. height: math.unit(1.85, "meters"),
  13061. default: true
  13062. },
  13063. ]
  13064. ))
  13065. characterMakers.push(() => makeCharacter(
  13066. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13067. {
  13068. front: {
  13069. height: math.unit(5 + 9 / 12, "feet"),
  13070. weight: math.unit(70, "lb"),
  13071. name: "Front",
  13072. image: {
  13073. source: "./media/characters/quincy/front.svg",
  13074. extra: 3041 / 2751
  13075. }
  13076. },
  13077. back: {
  13078. height: math.unit(5 + 9 / 12, "feet"),
  13079. weight: math.unit(70, "lb"),
  13080. name: "Back",
  13081. image: {
  13082. source: "./media/characters/quincy/back.svg",
  13083. extra: 3041 / 2751
  13084. }
  13085. },
  13086. flying: {
  13087. height: math.unit(5 + 4 / 12, "feet"),
  13088. weight: math.unit(70, "lb"),
  13089. name: "Flying",
  13090. image: {
  13091. source: "./media/characters/quincy/flying.svg",
  13092. extra: 1044 / 930
  13093. }
  13094. },
  13095. },
  13096. [
  13097. {
  13098. name: "Micro",
  13099. height: math.unit(3, "cm")
  13100. },
  13101. {
  13102. name: "Normal",
  13103. height: math.unit(5 + 9 / 12, "feet")
  13104. },
  13105. {
  13106. name: "Macro",
  13107. height: math.unit(200, "meters"),
  13108. default: true
  13109. },
  13110. {
  13111. name: "Megamacro",
  13112. height: math.unit(1000, "meters")
  13113. },
  13114. ]
  13115. ))
  13116. characterMakers.push(() => makeCharacter(
  13117. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13118. {
  13119. front: {
  13120. height: math.unit(3 + 11/12, "feet"),
  13121. weight: math.unit(50, "lb"),
  13122. name: "Front",
  13123. image: {
  13124. source: "./media/characters/vanrel/front.svg",
  13125. extra: 1104/949,
  13126. bottom: 52/1156
  13127. }
  13128. },
  13129. back: {
  13130. height: math.unit(3 + 11/12, "feet"),
  13131. weight: math.unit(50, "lb"),
  13132. name: "Back",
  13133. image: {
  13134. source: "./media/characters/vanrel/back.svg",
  13135. extra: 1119/976,
  13136. bottom: 37/1156
  13137. }
  13138. },
  13139. tome: {
  13140. height: math.unit(1.35, "feet"),
  13141. weight: math.unit(10, "lb"),
  13142. name: "Vanrel's Tome",
  13143. rename: true,
  13144. image: {
  13145. source: "./media/characters/vanrel/tome.svg"
  13146. }
  13147. },
  13148. beans: {
  13149. height: math.unit(0.89, "feet"),
  13150. name: "Beans",
  13151. image: {
  13152. source: "./media/characters/vanrel/beans.svg"
  13153. }
  13154. },
  13155. },
  13156. [
  13157. {
  13158. name: "Normal",
  13159. height: math.unit(3 + 11/12, "feet"),
  13160. default: true
  13161. },
  13162. ]
  13163. ))
  13164. characterMakers.push(() => makeCharacter(
  13165. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13166. {
  13167. front: {
  13168. height: math.unit(7 + 5 / 12, "feet"),
  13169. name: "Front",
  13170. image: {
  13171. source: "./media/characters/kuiper-vanrel/front.svg",
  13172. extra: 1219/1169,
  13173. bottom: 69/1288
  13174. }
  13175. },
  13176. back: {
  13177. height: math.unit(7 + 5 / 12, "feet"),
  13178. name: "Back",
  13179. image: {
  13180. source: "./media/characters/kuiper-vanrel/back.svg",
  13181. extra: 1236/1193,
  13182. bottom: 27/1263
  13183. }
  13184. },
  13185. foot: {
  13186. height: math.unit(0.55, "meters"),
  13187. name: "Foot",
  13188. image: {
  13189. source: "./media/characters/kuiper-vanrel/foot.svg",
  13190. }
  13191. },
  13192. battle: {
  13193. height: math.unit(6.824, "feet"),
  13194. name: "Battle",
  13195. image: {
  13196. source: "./media/characters/kuiper-vanrel/battle.svg",
  13197. extra: 1466 / 1327,
  13198. bottom: 29 / 1492.5
  13199. }
  13200. },
  13201. meerkui: {
  13202. height: math.unit(18, "inches"),
  13203. name: "Meerkui",
  13204. image: {
  13205. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13206. extra: 1354/1289,
  13207. bottom: 69/1423
  13208. }
  13209. },
  13210. },
  13211. [
  13212. {
  13213. name: "Normal",
  13214. height: math.unit(7 + 5 / 12, "feet"),
  13215. default: true
  13216. },
  13217. ]
  13218. ))
  13219. characterMakers.push(() => makeCharacter(
  13220. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13221. {
  13222. front: {
  13223. height: math.unit(8 + 5 / 12, "feet"),
  13224. name: "Front",
  13225. image: {
  13226. source: "./media/characters/keset-vanrel/front.svg",
  13227. extra: 1231/1148,
  13228. bottom: 82/1313
  13229. }
  13230. },
  13231. back: {
  13232. height: math.unit(8 + 5 / 12, "feet"),
  13233. name: "Back",
  13234. image: {
  13235. source: "./media/characters/keset-vanrel/back.svg",
  13236. extra: 1240/1174,
  13237. bottom: 33/1273
  13238. }
  13239. },
  13240. hand: {
  13241. height: math.unit(0.6, "meters"),
  13242. name: "Hand",
  13243. image: {
  13244. source: "./media/characters/keset-vanrel/hand.svg"
  13245. }
  13246. },
  13247. foot: {
  13248. height: math.unit(0.94978, "meters"),
  13249. name: "Foot",
  13250. image: {
  13251. source: "./media/characters/keset-vanrel/foot.svg"
  13252. }
  13253. },
  13254. battle: {
  13255. height: math.unit(7.408, "feet"),
  13256. name: "Battle",
  13257. image: {
  13258. source: "./media/characters/keset-vanrel/battle.svg",
  13259. extra: 1890 / 1386,
  13260. bottom: 73.28 / 1970
  13261. }
  13262. },
  13263. },
  13264. [
  13265. {
  13266. name: "Normal",
  13267. height: math.unit(8 + 5 / 12, "feet"),
  13268. default: true
  13269. },
  13270. ]
  13271. ))
  13272. characterMakers.push(() => makeCharacter(
  13273. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13274. {
  13275. front: {
  13276. height: math.unit(6, "feet"),
  13277. weight: math.unit(150, "lb"),
  13278. name: "Front",
  13279. image: {
  13280. source: "./media/characters/neos/front.svg",
  13281. extra: 1696 / 992,
  13282. bottom: 0.14
  13283. }
  13284. },
  13285. },
  13286. [
  13287. {
  13288. name: "Normal",
  13289. height: math.unit(54, "cm"),
  13290. default: true
  13291. },
  13292. {
  13293. name: "Macro",
  13294. height: math.unit(100, "m")
  13295. },
  13296. {
  13297. name: "Megamacro",
  13298. height: math.unit(10, "km")
  13299. },
  13300. {
  13301. name: "Megamacro+",
  13302. height: math.unit(100, "km")
  13303. },
  13304. {
  13305. name: "Gigamacro",
  13306. height: math.unit(100, "Mm")
  13307. },
  13308. {
  13309. name: "Teramacro",
  13310. height: math.unit(100, "Gm")
  13311. },
  13312. {
  13313. name: "Examacro",
  13314. height: math.unit(100, "Em")
  13315. },
  13316. {
  13317. name: "Godly",
  13318. height: math.unit(10000, "Ym")
  13319. },
  13320. {
  13321. name: "Beyond Godly",
  13322. height: math.unit(25, "multiverses")
  13323. },
  13324. ]
  13325. ))
  13326. characterMakers.push(() => makeCharacter(
  13327. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13328. {
  13329. feminine: {
  13330. height: math.unit(5, "feet"),
  13331. weight: math.unit(100, "lb"),
  13332. name: "Feminine",
  13333. image: {
  13334. source: "./media/characters/sammy-mouse/feminine.svg",
  13335. extra: 2526 / 2425,
  13336. bottom: 0.123
  13337. }
  13338. },
  13339. masculine: {
  13340. height: math.unit(5, "feet"),
  13341. weight: math.unit(100, "lb"),
  13342. name: "Masculine",
  13343. image: {
  13344. source: "./media/characters/sammy-mouse/masculine.svg",
  13345. extra: 2526 / 2425,
  13346. bottom: 0.123
  13347. }
  13348. },
  13349. },
  13350. [
  13351. {
  13352. name: "Micro",
  13353. height: math.unit(5, "inches")
  13354. },
  13355. {
  13356. name: "Normal",
  13357. height: math.unit(5, "feet"),
  13358. default: true
  13359. },
  13360. {
  13361. name: "Macro",
  13362. height: math.unit(60, "feet")
  13363. },
  13364. ]
  13365. ))
  13366. characterMakers.push(() => makeCharacter(
  13367. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13368. {
  13369. front: {
  13370. height: math.unit(4, "feet"),
  13371. weight: math.unit(50, "lb"),
  13372. name: "Front",
  13373. image: {
  13374. source: "./media/characters/kole/front.svg",
  13375. extra: 1423 / 1303,
  13376. bottom: 0.025
  13377. }
  13378. },
  13379. back: {
  13380. height: math.unit(4, "feet"),
  13381. weight: math.unit(50, "lb"),
  13382. name: "Back",
  13383. image: {
  13384. source: "./media/characters/kole/back.svg",
  13385. extra: 1426 / 1280,
  13386. bottom: 0.02
  13387. }
  13388. },
  13389. },
  13390. [
  13391. {
  13392. name: "Normal",
  13393. height: math.unit(4, "feet"),
  13394. default: true
  13395. },
  13396. ]
  13397. ))
  13398. characterMakers.push(() => makeCharacter(
  13399. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13400. {
  13401. front: {
  13402. height: math.unit(2.5, "feet"),
  13403. weight: math.unit(32, "lb"),
  13404. name: "Front",
  13405. image: {
  13406. source: "./media/characters/rufran/front.svg",
  13407. extra: 1313/885,
  13408. bottom: 94/1407
  13409. }
  13410. },
  13411. side: {
  13412. height: math.unit(2.5, "feet"),
  13413. weight: math.unit(32, "lb"),
  13414. name: "Side",
  13415. image: {
  13416. source: "./media/characters/rufran/side.svg",
  13417. extra: 1109/852,
  13418. bottom: 118/1227
  13419. }
  13420. },
  13421. back: {
  13422. height: math.unit(2.5, "feet"),
  13423. weight: math.unit(32, "lb"),
  13424. name: "Back",
  13425. image: {
  13426. source: "./media/characters/rufran/back.svg",
  13427. extra: 1280/878,
  13428. bottom: 131/1411
  13429. }
  13430. },
  13431. mouth: {
  13432. height: math.unit(1.13, "feet"),
  13433. name: "Mouth",
  13434. image: {
  13435. source: "./media/characters/rufran/mouth.svg"
  13436. }
  13437. },
  13438. foot: {
  13439. height: math.unit(1.33, "feet"),
  13440. name: "Foot",
  13441. image: {
  13442. source: "./media/characters/rufran/foot.svg"
  13443. }
  13444. },
  13445. koboldFront: {
  13446. height: math.unit(2 + 6 / 12, "feet"),
  13447. weight: math.unit(20, "lb"),
  13448. name: "Front (Kobold)",
  13449. image: {
  13450. source: "./media/characters/rufran/kobold-front.svg",
  13451. extra: 2041 / 1839,
  13452. bottom: 0.055
  13453. }
  13454. },
  13455. koboldBack: {
  13456. height: math.unit(2 + 6 / 12, "feet"),
  13457. weight: math.unit(20, "lb"),
  13458. name: "Back (Kobold)",
  13459. image: {
  13460. source: "./media/characters/rufran/kobold-back.svg",
  13461. extra: 2054 / 1839,
  13462. bottom: 0.01
  13463. }
  13464. },
  13465. koboldHand: {
  13466. height: math.unit(0.2166, "meters"),
  13467. name: "Hand (Kobold)",
  13468. image: {
  13469. source: "./media/characters/rufran/kobold-hand.svg"
  13470. }
  13471. },
  13472. koboldFoot: {
  13473. height: math.unit(0.185, "meters"),
  13474. name: "Foot (Kobold)",
  13475. image: {
  13476. source: "./media/characters/rufran/kobold-foot.svg"
  13477. }
  13478. },
  13479. },
  13480. [
  13481. {
  13482. name: "Micro",
  13483. height: math.unit(1, "inch")
  13484. },
  13485. {
  13486. name: "Normal",
  13487. height: math.unit(2 + 6 / 12, "feet"),
  13488. default: true
  13489. },
  13490. {
  13491. name: "Big",
  13492. height: math.unit(60, "feet")
  13493. },
  13494. {
  13495. name: "Macro",
  13496. height: math.unit(325, "feet")
  13497. },
  13498. ]
  13499. ))
  13500. characterMakers.push(() => makeCharacter(
  13501. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13502. {
  13503. front: {
  13504. height: math.unit(0.3, "meters"),
  13505. weight: math.unit(3.5, "kg"),
  13506. name: "Front",
  13507. image: {
  13508. source: "./media/characters/chip/front.svg",
  13509. extra: 748 / 674
  13510. }
  13511. },
  13512. },
  13513. [
  13514. {
  13515. name: "Micro",
  13516. height: math.unit(1, "inch"),
  13517. default: true
  13518. },
  13519. ]
  13520. ))
  13521. characterMakers.push(() => makeCharacter(
  13522. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13523. {
  13524. side: {
  13525. height: math.unit(2.3, "meters"),
  13526. weight: math.unit(3500, "lb"),
  13527. name: "Side",
  13528. image: {
  13529. source: "./media/characters/torvid/side.svg",
  13530. extra: 1972 / 722,
  13531. bottom: 0.035
  13532. }
  13533. },
  13534. },
  13535. [
  13536. {
  13537. name: "Normal",
  13538. height: math.unit(2.3, "meters"),
  13539. default: true
  13540. },
  13541. ]
  13542. ))
  13543. characterMakers.push(() => makeCharacter(
  13544. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13545. {
  13546. front: {
  13547. height: math.unit(2, "meters"),
  13548. weight: math.unit(150.5, "kg"),
  13549. name: "Front",
  13550. image: {
  13551. source: "./media/characters/susan/front.svg",
  13552. extra: 693 / 635,
  13553. bottom: 0.05
  13554. }
  13555. },
  13556. },
  13557. [
  13558. {
  13559. name: "Megamacro",
  13560. height: math.unit(505, "miles"),
  13561. default: true
  13562. },
  13563. ]
  13564. ))
  13565. characterMakers.push(() => makeCharacter(
  13566. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13567. {
  13568. front: {
  13569. height: math.unit(6, "feet"),
  13570. weight: math.unit(150, "lb"),
  13571. name: "Front",
  13572. image: {
  13573. source: "./media/characters/raindrops/front.svg",
  13574. extra: 2655 / 2461,
  13575. bottom: 49 / 2705
  13576. }
  13577. },
  13578. back: {
  13579. height: math.unit(6, "feet"),
  13580. weight: math.unit(150, "lb"),
  13581. name: "Back",
  13582. image: {
  13583. source: "./media/characters/raindrops/back.svg",
  13584. extra: 2574 / 2400,
  13585. bottom: 65 / 2634
  13586. }
  13587. },
  13588. },
  13589. [
  13590. {
  13591. name: "Micro",
  13592. height: math.unit(6, "inches")
  13593. },
  13594. {
  13595. name: "Normal",
  13596. height: math.unit(6 + 2 / 12, "feet")
  13597. },
  13598. {
  13599. name: "Macro",
  13600. height: math.unit(131, "feet"),
  13601. default: true
  13602. },
  13603. {
  13604. name: "Megamacro",
  13605. height: math.unit(15, "miles")
  13606. },
  13607. {
  13608. name: "Gigamacro",
  13609. height: math.unit(4000, "miles")
  13610. },
  13611. {
  13612. name: "Teramacro",
  13613. height: math.unit(315000, "miles")
  13614. },
  13615. ]
  13616. ))
  13617. characterMakers.push(() => makeCharacter(
  13618. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13619. {
  13620. front: {
  13621. height: math.unit(2.794, "meters"),
  13622. weight: math.unit(325, "kg"),
  13623. name: "Front",
  13624. image: {
  13625. source: "./media/characters/tezwa/front.svg",
  13626. extra: 2083 / 1906,
  13627. bottom: 0.031
  13628. }
  13629. },
  13630. foot: {
  13631. height: math.unit(0.687, "meters"),
  13632. name: "Foot",
  13633. image: {
  13634. source: "./media/characters/tezwa/foot.svg"
  13635. }
  13636. },
  13637. },
  13638. [
  13639. {
  13640. name: "Normal",
  13641. height: math.unit(9 + 2 / 12, "feet"),
  13642. default: true
  13643. },
  13644. ]
  13645. ))
  13646. characterMakers.push(() => makeCharacter(
  13647. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13648. {
  13649. front: {
  13650. height: math.unit(58, "feet"),
  13651. weight: math.unit(89000, "lb"),
  13652. name: "Front",
  13653. image: {
  13654. source: "./media/characters/typhus/front.svg",
  13655. extra: 816 / 800,
  13656. bottom: 0.065
  13657. }
  13658. },
  13659. },
  13660. [
  13661. {
  13662. name: "Macro",
  13663. height: math.unit(58, "feet"),
  13664. default: true
  13665. },
  13666. ]
  13667. ))
  13668. characterMakers.push(() => makeCharacter(
  13669. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13670. {
  13671. front: {
  13672. height: math.unit(12, "feet"),
  13673. weight: math.unit(6, "tonnes"),
  13674. name: "Front",
  13675. image: {
  13676. source: "./media/characters/lyra-von-wulf/front.svg",
  13677. extra: 1,
  13678. bottom: 0.10
  13679. }
  13680. },
  13681. frontMecha: {
  13682. height: math.unit(12, "feet"),
  13683. weight: math.unit(12, "tonnes"),
  13684. name: "Front (Mecha)",
  13685. image: {
  13686. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13687. extra: 1,
  13688. bottom: 0.042
  13689. }
  13690. },
  13691. maw: {
  13692. height: math.unit(2.2, "feet"),
  13693. name: "Maw",
  13694. image: {
  13695. source: "./media/characters/lyra-von-wulf/maw.svg"
  13696. }
  13697. },
  13698. },
  13699. [
  13700. {
  13701. name: "Normal",
  13702. height: math.unit(12, "feet"),
  13703. default: true
  13704. },
  13705. {
  13706. name: "Classic",
  13707. height: math.unit(50, "feet")
  13708. },
  13709. {
  13710. name: "Macro",
  13711. height: math.unit(500, "feet")
  13712. },
  13713. {
  13714. name: "Megamacro",
  13715. height: math.unit(1, "mile")
  13716. },
  13717. {
  13718. name: "Gigamacro",
  13719. height: math.unit(400, "miles")
  13720. },
  13721. {
  13722. name: "Teramacro",
  13723. height: math.unit(22000, "miles")
  13724. },
  13725. {
  13726. name: "Solarmacro",
  13727. height: math.unit(8600000, "miles")
  13728. },
  13729. {
  13730. name: "Galactic",
  13731. height: math.unit(1057000, "lightyears")
  13732. },
  13733. ]
  13734. ))
  13735. characterMakers.push(() => makeCharacter(
  13736. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13737. {
  13738. front: {
  13739. height: math.unit(6 + 10 / 12, "feet"),
  13740. weight: math.unit(150, "lb"),
  13741. name: "Front",
  13742. image: {
  13743. source: "./media/characters/dixon/front.svg",
  13744. extra: 3361 / 3209,
  13745. bottom: 0.01
  13746. }
  13747. },
  13748. },
  13749. [
  13750. {
  13751. name: "Normal",
  13752. height: math.unit(6 + 10 / 12, "feet"),
  13753. default: true
  13754. },
  13755. {
  13756. name: "Big",
  13757. height: math.unit(12, "meters")
  13758. },
  13759. {
  13760. name: "Macro",
  13761. height: math.unit(500, "meters")
  13762. },
  13763. {
  13764. name: "Megamacro",
  13765. height: math.unit(2, "km")
  13766. },
  13767. ]
  13768. ))
  13769. characterMakers.push(() => makeCharacter(
  13770. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13771. {
  13772. front: {
  13773. height: math.unit(185, "cm"),
  13774. weight: math.unit(68, "kg"),
  13775. name: "Front",
  13776. image: {
  13777. source: "./media/characters/kauko/front.svg",
  13778. extra: 1455 / 1421,
  13779. bottom: 0.03
  13780. }
  13781. },
  13782. back: {
  13783. height: math.unit(185, "cm"),
  13784. weight: math.unit(68, "kg"),
  13785. name: "Back",
  13786. image: {
  13787. source: "./media/characters/kauko/back.svg",
  13788. extra: 1455 / 1421,
  13789. bottom: 0.004
  13790. }
  13791. },
  13792. },
  13793. [
  13794. {
  13795. name: "Normal",
  13796. height: math.unit(185, "cm"),
  13797. default: true
  13798. },
  13799. ]
  13800. ))
  13801. characterMakers.push(() => makeCharacter(
  13802. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13803. {
  13804. front: {
  13805. height: math.unit(6, "feet"),
  13806. weight: math.unit(150, "kg"),
  13807. name: "Front",
  13808. image: {
  13809. source: "./media/characters/varg/front.svg",
  13810. extra: 1108 / 1018,
  13811. bottom: 0.0375
  13812. }
  13813. },
  13814. },
  13815. [
  13816. {
  13817. name: "Normal",
  13818. height: math.unit(5, "meters")
  13819. },
  13820. {
  13821. name: "Macro",
  13822. height: math.unit(200, "meters")
  13823. },
  13824. {
  13825. name: "Megamacro",
  13826. height: math.unit(20, "kilometers")
  13827. },
  13828. {
  13829. name: "True Size",
  13830. height: math.unit(211, "km"),
  13831. default: true
  13832. },
  13833. {
  13834. name: "Gigamacro",
  13835. height: math.unit(1000, "km")
  13836. },
  13837. {
  13838. name: "Gigamacro+",
  13839. height: math.unit(8000, "km")
  13840. },
  13841. {
  13842. name: "Teramacro",
  13843. height: math.unit(1000000, "km")
  13844. },
  13845. ]
  13846. ))
  13847. characterMakers.push(() => makeCharacter(
  13848. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13849. {
  13850. front: {
  13851. height: math.unit(7 + 7 / 12, "feet"),
  13852. weight: math.unit(267, "lb"),
  13853. name: "Front",
  13854. image: {
  13855. source: "./media/characters/dayza/front.svg",
  13856. extra: 1262 / 1200,
  13857. bottom: 0.035
  13858. }
  13859. },
  13860. side: {
  13861. height: math.unit(7 + 7 / 12, "feet"),
  13862. weight: math.unit(267, "lb"),
  13863. name: "Side",
  13864. image: {
  13865. source: "./media/characters/dayza/side.svg",
  13866. extra: 1295 / 1245,
  13867. bottom: 0.05
  13868. }
  13869. },
  13870. back: {
  13871. height: math.unit(7 + 7 / 12, "feet"),
  13872. weight: math.unit(267, "lb"),
  13873. name: "Back",
  13874. image: {
  13875. source: "./media/characters/dayza/back.svg",
  13876. extra: 1241 / 1170
  13877. }
  13878. },
  13879. },
  13880. [
  13881. {
  13882. name: "Normal",
  13883. height: math.unit(7 + 7 / 12, "feet"),
  13884. default: true
  13885. },
  13886. {
  13887. name: "Macro",
  13888. height: math.unit(155, "feet")
  13889. },
  13890. ]
  13891. ))
  13892. characterMakers.push(() => makeCharacter(
  13893. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13894. {
  13895. front: {
  13896. height: math.unit(6 + 5 / 12, "feet"),
  13897. weight: math.unit(160, "lb"),
  13898. name: "Front",
  13899. image: {
  13900. source: "./media/characters/xanthos/front.svg",
  13901. extra: 1,
  13902. bottom: 0.04
  13903. }
  13904. },
  13905. back: {
  13906. height: math.unit(6 + 5 / 12, "feet"),
  13907. weight: math.unit(160, "lb"),
  13908. name: "Back",
  13909. image: {
  13910. source: "./media/characters/xanthos/back.svg",
  13911. extra: 1,
  13912. bottom: 0.03
  13913. }
  13914. },
  13915. hand: {
  13916. height: math.unit(0.928, "feet"),
  13917. name: "Hand",
  13918. image: {
  13919. source: "./media/characters/xanthos/hand.svg"
  13920. }
  13921. },
  13922. foot: {
  13923. height: math.unit(1.286, "feet"),
  13924. name: "Foot",
  13925. image: {
  13926. source: "./media/characters/xanthos/foot.svg"
  13927. }
  13928. },
  13929. },
  13930. [
  13931. {
  13932. name: "Normal",
  13933. height: math.unit(6 + 5 / 12, "feet"),
  13934. default: true
  13935. },
  13936. {
  13937. name: "Normal+",
  13938. height: math.unit(6, "meters")
  13939. },
  13940. {
  13941. name: "Macro",
  13942. height: math.unit(40, "feet")
  13943. },
  13944. {
  13945. name: "Macro+",
  13946. height: math.unit(200, "meters")
  13947. },
  13948. {
  13949. name: "Megamacro",
  13950. height: math.unit(20, "km")
  13951. },
  13952. {
  13953. name: "Megamacro+",
  13954. height: math.unit(100, "km")
  13955. },
  13956. {
  13957. name: "Gigamacro",
  13958. height: math.unit(200, "megameters")
  13959. },
  13960. {
  13961. name: "Gigamacro+",
  13962. height: math.unit(1.5, "gigameters")
  13963. },
  13964. ]
  13965. ))
  13966. characterMakers.push(() => makeCharacter(
  13967. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13968. {
  13969. front: {
  13970. height: math.unit(6 + 3 / 12, "feet"),
  13971. weight: math.unit(215, "lb"),
  13972. name: "Front",
  13973. image: {
  13974. source: "./media/characters/grynn/front.svg",
  13975. extra: 4627 / 4209,
  13976. bottom: 0.047
  13977. }
  13978. },
  13979. },
  13980. [
  13981. {
  13982. name: "Micro",
  13983. height: math.unit(6, "inches")
  13984. },
  13985. {
  13986. name: "Normal",
  13987. height: math.unit(6 + 3 / 12, "feet"),
  13988. default: true
  13989. },
  13990. {
  13991. name: "Big",
  13992. height: math.unit(104, "feet")
  13993. },
  13994. {
  13995. name: "Macro",
  13996. height: math.unit(944, "feet")
  13997. },
  13998. {
  13999. name: "Macro+",
  14000. height: math.unit(9480, "feet")
  14001. },
  14002. {
  14003. name: "Megamacro",
  14004. height: math.unit(78752, "feet")
  14005. },
  14006. {
  14007. name: "Megamacro+",
  14008. height: math.unit(630128, "feet")
  14009. },
  14010. {
  14011. name: "Megamacro++",
  14012. height: math.unit(3150695, "feet")
  14013. },
  14014. ]
  14015. ))
  14016. characterMakers.push(() => makeCharacter(
  14017. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14018. {
  14019. front: {
  14020. height: math.unit(7 + 5 / 12, "feet"),
  14021. weight: math.unit(450, "lb"),
  14022. name: "Front",
  14023. image: {
  14024. source: "./media/characters/mocha-aura/front.svg",
  14025. extra: 1907 / 1817,
  14026. bottom: 0.04
  14027. }
  14028. },
  14029. back: {
  14030. height: math.unit(7 + 5 / 12, "feet"),
  14031. weight: math.unit(450, "lb"),
  14032. name: "Back",
  14033. image: {
  14034. source: "./media/characters/mocha-aura/back.svg",
  14035. extra: 1900 / 1825,
  14036. bottom: 0.045
  14037. }
  14038. },
  14039. },
  14040. [
  14041. {
  14042. name: "Nano",
  14043. height: math.unit(1, "nm")
  14044. },
  14045. {
  14046. name: "Megamicro",
  14047. height: math.unit(1, "mm")
  14048. },
  14049. {
  14050. name: "Micro",
  14051. height: math.unit(3, "inches")
  14052. },
  14053. {
  14054. name: "Normal",
  14055. height: math.unit(7 + 5 / 12, "feet"),
  14056. default: true
  14057. },
  14058. {
  14059. name: "Macro",
  14060. height: math.unit(30, "feet")
  14061. },
  14062. {
  14063. name: "Megamacro",
  14064. height: math.unit(3500, "feet")
  14065. },
  14066. {
  14067. name: "Teramacro",
  14068. height: math.unit(500000, "miles")
  14069. },
  14070. {
  14071. name: "Petamacro",
  14072. height: math.unit(50000000000000000, "parsecs")
  14073. },
  14074. ]
  14075. ))
  14076. characterMakers.push(() => makeCharacter(
  14077. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14078. {
  14079. front: {
  14080. height: math.unit(6, "feet"),
  14081. weight: math.unit(150, "lb"),
  14082. name: "Front",
  14083. image: {
  14084. source: "./media/characters/ilisha-devya/front.svg",
  14085. extra: 1053/1049,
  14086. bottom: 270/1323
  14087. }
  14088. },
  14089. back: {
  14090. height: math.unit(6, "feet"),
  14091. weight: math.unit(150, "lb"),
  14092. name: "Back",
  14093. image: {
  14094. source: "./media/characters/ilisha-devya/back.svg",
  14095. extra: 1131/1128,
  14096. bottom: 39/1170
  14097. }
  14098. },
  14099. },
  14100. [
  14101. {
  14102. name: "Macro",
  14103. height: math.unit(500, "feet"),
  14104. default: true
  14105. },
  14106. {
  14107. name: "Megamacro",
  14108. height: math.unit(10, "miles")
  14109. },
  14110. {
  14111. name: "Gigamacro",
  14112. height: math.unit(100000, "miles")
  14113. },
  14114. {
  14115. name: "Examacro",
  14116. height: math.unit(1e9, "lightyears")
  14117. },
  14118. {
  14119. name: "Omniversal",
  14120. height: math.unit(1e33, "lightyears")
  14121. },
  14122. {
  14123. name: "Beyond Infinite",
  14124. height: math.unit(1e100, "lightyears")
  14125. },
  14126. ]
  14127. ))
  14128. characterMakers.push(() => makeCharacter(
  14129. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14130. {
  14131. Side: {
  14132. height: math.unit(6, "feet"),
  14133. weight: math.unit(150, "lb"),
  14134. name: "Side",
  14135. image: {
  14136. source: "./media/characters/mira/side.svg",
  14137. extra: 900 / 799,
  14138. bottom: 0.02
  14139. }
  14140. },
  14141. },
  14142. [
  14143. {
  14144. name: "Human Size",
  14145. height: math.unit(6, "feet")
  14146. },
  14147. {
  14148. name: "Macro",
  14149. height: math.unit(100, "feet"),
  14150. default: true
  14151. },
  14152. {
  14153. name: "Megamacro",
  14154. height: math.unit(10, "miles")
  14155. },
  14156. {
  14157. name: "Gigamacro",
  14158. height: math.unit(25000, "miles")
  14159. },
  14160. {
  14161. name: "Teramacro",
  14162. height: math.unit(300, "AU")
  14163. },
  14164. {
  14165. name: "Full Size",
  14166. height: math.unit(4.5e10, "lightyears")
  14167. },
  14168. ]
  14169. ))
  14170. characterMakers.push(() => makeCharacter(
  14171. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14172. {
  14173. front: {
  14174. height: math.unit(6, "feet"),
  14175. weight: math.unit(150, "lb"),
  14176. name: "Front",
  14177. image: {
  14178. source: "./media/characters/holly/front.svg",
  14179. extra: 639 / 606
  14180. }
  14181. },
  14182. back: {
  14183. height: math.unit(6, "feet"),
  14184. weight: math.unit(150, "lb"),
  14185. name: "Back",
  14186. image: {
  14187. source: "./media/characters/holly/back.svg",
  14188. extra: 623 / 598
  14189. }
  14190. },
  14191. frontWorking: {
  14192. height: math.unit(6, "feet"),
  14193. weight: math.unit(150, "lb"),
  14194. name: "Front (Working)",
  14195. image: {
  14196. source: "./media/characters/holly/front-working.svg",
  14197. extra: 607 / 577,
  14198. bottom: 0.048
  14199. }
  14200. },
  14201. },
  14202. [
  14203. {
  14204. name: "Normal",
  14205. height: math.unit(12 + 3 / 12, "feet"),
  14206. default: true
  14207. },
  14208. ]
  14209. ))
  14210. characterMakers.push(() => makeCharacter(
  14211. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14212. {
  14213. front: {
  14214. height: math.unit(6, "feet"),
  14215. weight: math.unit(150, "lb"),
  14216. name: "Front",
  14217. image: {
  14218. source: "./media/characters/porter/front.svg",
  14219. extra: 1,
  14220. bottom: 0.01
  14221. }
  14222. },
  14223. frontRobes: {
  14224. height: math.unit(6, "feet"),
  14225. weight: math.unit(150, "lb"),
  14226. name: "Front (Robes)",
  14227. image: {
  14228. source: "./media/characters/porter/front-robes.svg",
  14229. extra: 1.01,
  14230. bottom: 0.01
  14231. }
  14232. },
  14233. },
  14234. [
  14235. {
  14236. name: "Normal",
  14237. height: math.unit(11 + 9 / 12, "feet"),
  14238. default: true
  14239. },
  14240. ]
  14241. ))
  14242. characterMakers.push(() => makeCharacter(
  14243. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14244. {
  14245. legendary: {
  14246. height: math.unit(6, "feet"),
  14247. weight: math.unit(150, "lb"),
  14248. name: "Legendary",
  14249. image: {
  14250. source: "./media/characters/lucy/legendary.svg",
  14251. extra: 1355 / 1100,
  14252. bottom: 0.045
  14253. }
  14254. },
  14255. },
  14256. [
  14257. {
  14258. name: "Legendary",
  14259. height: math.unit(86882 * 2, "miles"),
  14260. default: true
  14261. },
  14262. ]
  14263. ))
  14264. characterMakers.push(() => makeCharacter(
  14265. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14266. {
  14267. front: {
  14268. height: math.unit(6, "feet"),
  14269. weight: math.unit(150, "lb"),
  14270. name: "Front",
  14271. image: {
  14272. source: "./media/characters/drusilla/front.svg",
  14273. extra: 678 / 635,
  14274. bottom: 0.03
  14275. }
  14276. },
  14277. back: {
  14278. height: math.unit(6, "feet"),
  14279. weight: math.unit(150, "lb"),
  14280. name: "Back",
  14281. image: {
  14282. source: "./media/characters/drusilla/back.svg",
  14283. extra: 678 / 635,
  14284. bottom: 0.005
  14285. }
  14286. },
  14287. },
  14288. [
  14289. {
  14290. name: "Macro",
  14291. height: math.unit(100, "feet")
  14292. },
  14293. {
  14294. name: "Canon Height",
  14295. height: math.unit(2000, "feet"),
  14296. default: true
  14297. },
  14298. ]
  14299. ))
  14300. characterMakers.push(() => makeCharacter(
  14301. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14302. {
  14303. front: {
  14304. height: math.unit(6, "feet"),
  14305. weight: math.unit(180, "lb"),
  14306. name: "Front",
  14307. image: {
  14308. source: "./media/characters/renard-thatch/front.svg",
  14309. extra: 2411 / 2275,
  14310. bottom: 0.01
  14311. }
  14312. },
  14313. frontPosing: {
  14314. height: math.unit(6, "feet"),
  14315. weight: math.unit(180, "lb"),
  14316. name: "Front (Posing)",
  14317. image: {
  14318. source: "./media/characters/renard-thatch/front-posing.svg",
  14319. extra: 2381 / 2261,
  14320. bottom: 0.01
  14321. }
  14322. },
  14323. back: {
  14324. height: math.unit(6, "feet"),
  14325. weight: math.unit(180, "lb"),
  14326. name: "Back",
  14327. image: {
  14328. source: "./media/characters/renard-thatch/back.svg",
  14329. extra: 2428 / 2288
  14330. }
  14331. },
  14332. },
  14333. [
  14334. {
  14335. name: "Micro",
  14336. height: math.unit(3, "inches")
  14337. },
  14338. {
  14339. name: "Default",
  14340. height: math.unit(6, "feet"),
  14341. default: true
  14342. },
  14343. {
  14344. name: "Macro",
  14345. height: math.unit(75, "feet")
  14346. },
  14347. ]
  14348. ))
  14349. characterMakers.push(() => makeCharacter(
  14350. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14351. {
  14352. front: {
  14353. height: math.unit(1450, "feet"),
  14354. weight: math.unit(1.21e6, "tons"),
  14355. name: "Front",
  14356. image: {
  14357. source: "./media/characters/sekvra/front.svg",
  14358. extra: 1193/1190,
  14359. bottom: 78/1271
  14360. }
  14361. },
  14362. side: {
  14363. height: math.unit(1450, "feet"),
  14364. weight: math.unit(1.21e6, "tons"),
  14365. name: "Side",
  14366. image: {
  14367. source: "./media/characters/sekvra/side.svg",
  14368. extra: 1193/1190,
  14369. bottom: 52/1245
  14370. }
  14371. },
  14372. back: {
  14373. height: math.unit(1450, "feet"),
  14374. weight: math.unit(1.21e6, "tons"),
  14375. name: "Back",
  14376. image: {
  14377. source: "./media/characters/sekvra/back.svg",
  14378. extra: 1219/1216,
  14379. bottom: 21/1240
  14380. }
  14381. },
  14382. frontClothed: {
  14383. height: math.unit(1450, "feet"),
  14384. weight: math.unit(1.21e6, "tons"),
  14385. name: "Front (Clothed)",
  14386. image: {
  14387. source: "./media/characters/sekvra/front-clothed.svg",
  14388. extra: 1192/1189,
  14389. bottom: 79/1271
  14390. }
  14391. },
  14392. },
  14393. [
  14394. {
  14395. name: "Macro",
  14396. height: math.unit(1450, "feet"),
  14397. default: true
  14398. },
  14399. {
  14400. name: "Megamacro",
  14401. height: math.unit(15000, "feet")
  14402. },
  14403. ]
  14404. ))
  14405. characterMakers.push(() => makeCharacter(
  14406. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14407. {
  14408. front: {
  14409. height: math.unit(6, "feet"),
  14410. weight: math.unit(150, "lb"),
  14411. name: "Front",
  14412. image: {
  14413. source: "./media/characters/carmine/front.svg",
  14414. extra: 1,
  14415. bottom: 0.035
  14416. }
  14417. },
  14418. frontArmor: {
  14419. height: math.unit(6, "feet"),
  14420. weight: math.unit(150, "lb"),
  14421. name: "Front (Armor)",
  14422. image: {
  14423. source: "./media/characters/carmine/front-armor.svg",
  14424. extra: 1,
  14425. bottom: 0.035
  14426. }
  14427. },
  14428. },
  14429. [
  14430. {
  14431. name: "Large",
  14432. height: math.unit(1, "mile")
  14433. },
  14434. {
  14435. name: "Huge",
  14436. height: math.unit(40, "miles"),
  14437. default: true
  14438. },
  14439. {
  14440. name: "Colossal",
  14441. height: math.unit(2500, "miles")
  14442. },
  14443. ]
  14444. ))
  14445. characterMakers.push(() => makeCharacter(
  14446. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14447. {
  14448. front: {
  14449. height: math.unit(6, "feet"),
  14450. weight: math.unit(150, "lb"),
  14451. name: "Front",
  14452. image: {
  14453. source: "./media/characters/elyssia/front.svg",
  14454. extra: 2201 / 2035,
  14455. bottom: 0.05
  14456. }
  14457. },
  14458. frontClothed: {
  14459. height: math.unit(6, "feet"),
  14460. weight: math.unit(150, "lb"),
  14461. name: "Front (Clothed)",
  14462. image: {
  14463. source: "./media/characters/elyssia/front-clothed.svg",
  14464. extra: 2201 / 2035,
  14465. bottom: 0.05
  14466. }
  14467. },
  14468. back: {
  14469. height: math.unit(6, "feet"),
  14470. weight: math.unit(150, "lb"),
  14471. name: "Back",
  14472. image: {
  14473. source: "./media/characters/elyssia/back.svg",
  14474. extra: 2201 / 2035,
  14475. bottom: 0.013
  14476. }
  14477. },
  14478. },
  14479. [
  14480. {
  14481. name: "Smaller",
  14482. height: math.unit(150, "feet")
  14483. },
  14484. {
  14485. name: "Standard",
  14486. height: math.unit(1400, "feet"),
  14487. default: true
  14488. },
  14489. {
  14490. name: "Distracted",
  14491. height: math.unit(15000, "feet")
  14492. },
  14493. ]
  14494. ))
  14495. characterMakers.push(() => makeCharacter(
  14496. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14497. {
  14498. front: {
  14499. height: math.unit(7 + 4/12, "feet"),
  14500. weight: math.unit(690, "lb"),
  14501. name: "Front",
  14502. image: {
  14503. source: "./media/characters/geno-maxwell/front.svg",
  14504. extra: 984/856,
  14505. bottom: 87/1071
  14506. }
  14507. },
  14508. back: {
  14509. height: math.unit(7 + 4/12, "feet"),
  14510. weight: math.unit(690, "lb"),
  14511. name: "Back",
  14512. image: {
  14513. source: "./media/characters/geno-maxwell/back.svg",
  14514. extra: 981/854,
  14515. bottom: 57/1038
  14516. }
  14517. },
  14518. frontCostume: {
  14519. height: math.unit(7 + 4/12, "feet"),
  14520. weight: math.unit(690, "lb"),
  14521. name: "Front (Costume)",
  14522. image: {
  14523. source: "./media/characters/geno-maxwell/front-costume.svg",
  14524. extra: 984/856,
  14525. bottom: 87/1071
  14526. }
  14527. },
  14528. backcostume: {
  14529. height: math.unit(7 + 4/12, "feet"),
  14530. weight: math.unit(690, "lb"),
  14531. name: "Back (Costume)",
  14532. image: {
  14533. source: "./media/characters/geno-maxwell/back-costume.svg",
  14534. extra: 981/854,
  14535. bottom: 57/1038
  14536. }
  14537. },
  14538. },
  14539. [
  14540. {
  14541. name: "Micro",
  14542. height: math.unit(3, "inches")
  14543. },
  14544. {
  14545. name: "Normal",
  14546. height: math.unit(7 + 4 / 12, "feet"),
  14547. default: true
  14548. },
  14549. {
  14550. name: "Macro",
  14551. height: math.unit(220, "feet")
  14552. },
  14553. {
  14554. name: "Megamacro",
  14555. height: math.unit(11, "miles")
  14556. },
  14557. ]
  14558. ))
  14559. characterMakers.push(() => makeCharacter(
  14560. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14561. {
  14562. front: {
  14563. height: math.unit(7 + 4/12, "feet"),
  14564. weight: math.unit(750, "lb"),
  14565. name: "Front",
  14566. image: {
  14567. source: "./media/characters/regena-maxwell/front.svg",
  14568. extra: 984/856,
  14569. bottom: 87/1071
  14570. }
  14571. },
  14572. back: {
  14573. height: math.unit(7 + 4/12, "feet"),
  14574. weight: math.unit(750, "lb"),
  14575. name: "Back",
  14576. image: {
  14577. source: "./media/characters/regena-maxwell/back.svg",
  14578. extra: 981/854,
  14579. bottom: 57/1038
  14580. }
  14581. },
  14582. frontCostume: {
  14583. height: math.unit(7 + 4/12, "feet"),
  14584. weight: math.unit(750, "lb"),
  14585. name: "Front (Costume)",
  14586. image: {
  14587. source: "./media/characters/regena-maxwell/front-costume.svg",
  14588. extra: 984/856,
  14589. bottom: 87/1071
  14590. }
  14591. },
  14592. backcostume: {
  14593. height: math.unit(7 + 4/12, "feet"),
  14594. weight: math.unit(750, "lb"),
  14595. name: "Back (Costume)",
  14596. image: {
  14597. source: "./media/characters/regena-maxwell/back-costume.svg",
  14598. extra: 981/854,
  14599. bottom: 57/1038
  14600. }
  14601. },
  14602. },
  14603. [
  14604. {
  14605. name: "Normal",
  14606. height: math.unit(7 + 4 / 12, "feet"),
  14607. default: true
  14608. },
  14609. {
  14610. name: "Macro",
  14611. height: math.unit(220, "feet")
  14612. },
  14613. {
  14614. name: "Megamacro",
  14615. height: math.unit(11, "miles")
  14616. },
  14617. ]
  14618. ))
  14619. characterMakers.push(() => makeCharacter(
  14620. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14621. {
  14622. front: {
  14623. height: math.unit(6, "feet"),
  14624. weight: math.unit(150, "lb"),
  14625. name: "Front",
  14626. image: {
  14627. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14628. extra: 860 / 690,
  14629. bottom: 0.03
  14630. }
  14631. },
  14632. },
  14633. [
  14634. {
  14635. name: "Normal",
  14636. height: math.unit(1.7, "meters"),
  14637. default: true
  14638. },
  14639. ]
  14640. ))
  14641. characterMakers.push(() => makeCharacter(
  14642. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14643. {
  14644. front: {
  14645. height: math.unit(6, "feet"),
  14646. weight: math.unit(150, "lb"),
  14647. name: "Front",
  14648. image: {
  14649. source: "./media/characters/quilly/front.svg",
  14650. extra: 890 / 776
  14651. }
  14652. },
  14653. },
  14654. [
  14655. {
  14656. name: "Gigamacro",
  14657. height: math.unit(404090, "miles"),
  14658. default: true
  14659. },
  14660. ]
  14661. ))
  14662. characterMakers.push(() => makeCharacter(
  14663. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14664. {
  14665. front: {
  14666. height: math.unit(7 + 8 / 12, "feet"),
  14667. weight: math.unit(350, "lb"),
  14668. name: "Front",
  14669. image: {
  14670. source: "./media/characters/tempest/front.svg",
  14671. extra: 1175 / 1086,
  14672. bottom: 0.02
  14673. }
  14674. },
  14675. },
  14676. [
  14677. {
  14678. name: "Normal",
  14679. height: math.unit(7 + 8 / 12, "feet"),
  14680. default: true
  14681. },
  14682. ]
  14683. ))
  14684. characterMakers.push(() => makeCharacter(
  14685. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14686. {
  14687. side: {
  14688. height: math.unit(4 + 5 / 12, "feet"),
  14689. weight: math.unit(80, "lb"),
  14690. name: "Side",
  14691. image: {
  14692. source: "./media/characters/rodger/side.svg",
  14693. extra: 1235 / 1118
  14694. }
  14695. },
  14696. },
  14697. [
  14698. {
  14699. name: "Micro",
  14700. height: math.unit(1, "inch")
  14701. },
  14702. {
  14703. name: "Normal",
  14704. height: math.unit(4 + 5 / 12, "feet"),
  14705. default: true
  14706. },
  14707. {
  14708. name: "Macro",
  14709. height: math.unit(120, "feet")
  14710. },
  14711. ]
  14712. ))
  14713. characterMakers.push(() => makeCharacter(
  14714. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14715. {
  14716. front: {
  14717. height: math.unit(6, "feet"),
  14718. weight: math.unit(150, "lb"),
  14719. name: "Front",
  14720. image: {
  14721. source: "./media/characters/danyel/front.svg",
  14722. extra: 1185 / 1123,
  14723. bottom: 0.05
  14724. }
  14725. },
  14726. },
  14727. [
  14728. {
  14729. name: "Shrunken",
  14730. height: math.unit(0.5, "mm")
  14731. },
  14732. {
  14733. name: "Micro",
  14734. height: math.unit(1, "mm"),
  14735. default: true
  14736. },
  14737. {
  14738. name: "Upsized",
  14739. height: math.unit(5 + 5 / 12, "feet")
  14740. },
  14741. ]
  14742. ))
  14743. characterMakers.push(() => makeCharacter(
  14744. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14745. {
  14746. front: {
  14747. height: math.unit(5 + 6 / 12, "feet"),
  14748. weight: math.unit(200, "lb"),
  14749. name: "Front",
  14750. image: {
  14751. source: "./media/characters/vivian-bijoux/front.svg",
  14752. extra: 1217/1209,
  14753. bottom: 76/1293
  14754. }
  14755. },
  14756. back: {
  14757. height: math.unit(5 + 6 / 12, "feet"),
  14758. weight: math.unit(200, "lb"),
  14759. name: "Back",
  14760. image: {
  14761. source: "./media/characters/vivian-bijoux/back.svg",
  14762. extra: 1214/1208,
  14763. bottom: 51/1265
  14764. }
  14765. },
  14766. dressed: {
  14767. height: math.unit(5 + 6 / 12, "feet"),
  14768. weight: math.unit(200, "lb"),
  14769. name: "Dressed",
  14770. image: {
  14771. source: "./media/characters/vivian-bijoux/dressed.svg",
  14772. extra: 1217/1209,
  14773. bottom: 76/1293
  14774. }
  14775. },
  14776. },
  14777. [
  14778. {
  14779. name: "Normal",
  14780. height: math.unit(5 + 6 / 12, "feet"),
  14781. default: true
  14782. },
  14783. {
  14784. name: "Bad Dream",
  14785. height: math.unit(500, "feet")
  14786. },
  14787. {
  14788. name: "Nightmare",
  14789. height: math.unit(500, "miles")
  14790. },
  14791. ]
  14792. ))
  14793. characterMakers.push(() => makeCharacter(
  14794. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14795. {
  14796. front: {
  14797. height: math.unit(6 + 1 / 12, "feet"),
  14798. weight: math.unit(260, "lb"),
  14799. name: "Front",
  14800. image: {
  14801. source: "./media/characters/zeta/front.svg",
  14802. extra: 1968 / 1889,
  14803. bottom: 0.06
  14804. }
  14805. },
  14806. back: {
  14807. height: math.unit(6 + 1 / 12, "feet"),
  14808. weight: math.unit(260, "lb"),
  14809. name: "Back",
  14810. image: {
  14811. source: "./media/characters/zeta/back.svg",
  14812. extra: 1944 / 1858,
  14813. bottom: 0.03
  14814. }
  14815. },
  14816. hand: {
  14817. height: math.unit(1.112, "feet"),
  14818. name: "Hand",
  14819. image: {
  14820. source: "./media/characters/zeta/hand.svg"
  14821. }
  14822. },
  14823. foot: {
  14824. height: math.unit(1.48, "feet"),
  14825. name: "Foot",
  14826. image: {
  14827. source: "./media/characters/zeta/foot.svg"
  14828. }
  14829. },
  14830. },
  14831. [
  14832. {
  14833. name: "Micro",
  14834. height: math.unit(6, "inches")
  14835. },
  14836. {
  14837. name: "Normal",
  14838. height: math.unit(6 + 1 / 12, "feet"),
  14839. default: true
  14840. },
  14841. {
  14842. name: "Macro",
  14843. height: math.unit(20, "feet")
  14844. },
  14845. ]
  14846. ))
  14847. characterMakers.push(() => makeCharacter(
  14848. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14849. {
  14850. front: {
  14851. height: math.unit(6, "feet"),
  14852. weight: math.unit(150, "lb"),
  14853. name: "Front",
  14854. image: {
  14855. source: "./media/characters/jamie-larsen/front.svg",
  14856. extra: 962 / 933,
  14857. bottom: 0.02
  14858. }
  14859. },
  14860. back: {
  14861. height: math.unit(6, "feet"),
  14862. weight: math.unit(150, "lb"),
  14863. name: "Back",
  14864. image: {
  14865. source: "./media/characters/jamie-larsen/back.svg",
  14866. extra: 997 / 946
  14867. }
  14868. },
  14869. },
  14870. [
  14871. {
  14872. name: "Macro",
  14873. height: math.unit(28 + 7 / 12, "feet"),
  14874. default: true
  14875. },
  14876. {
  14877. name: "Macro+",
  14878. height: math.unit(180, "feet")
  14879. },
  14880. {
  14881. name: "Megamacro",
  14882. height: math.unit(10, "miles")
  14883. },
  14884. {
  14885. name: "Gigamacro",
  14886. height: math.unit(200000, "miles")
  14887. },
  14888. ]
  14889. ))
  14890. characterMakers.push(() => makeCharacter(
  14891. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14892. {
  14893. front: {
  14894. height: math.unit(6, "feet"),
  14895. weight: math.unit(120, "lb"),
  14896. name: "Front",
  14897. image: {
  14898. source: "./media/characters/vance/front.svg",
  14899. extra: 1980 / 1890,
  14900. bottom: 0.09
  14901. }
  14902. },
  14903. back: {
  14904. height: math.unit(6, "feet"),
  14905. weight: math.unit(120, "lb"),
  14906. name: "Back",
  14907. image: {
  14908. source: "./media/characters/vance/back.svg",
  14909. extra: 2081 / 1994,
  14910. bottom: 0.014
  14911. }
  14912. },
  14913. hand: {
  14914. height: math.unit(0.88, "feet"),
  14915. name: "Hand",
  14916. image: {
  14917. source: "./media/characters/vance/hand.svg"
  14918. }
  14919. },
  14920. foot: {
  14921. height: math.unit(0.64, "feet"),
  14922. name: "Foot",
  14923. image: {
  14924. source: "./media/characters/vance/foot.svg"
  14925. }
  14926. },
  14927. },
  14928. [
  14929. {
  14930. name: "Small",
  14931. height: math.unit(90, "feet"),
  14932. default: true
  14933. },
  14934. {
  14935. name: "Macro",
  14936. height: math.unit(100, "meters")
  14937. },
  14938. {
  14939. name: "Megamacro",
  14940. height: math.unit(15, "miles")
  14941. },
  14942. ]
  14943. ))
  14944. characterMakers.push(() => makeCharacter(
  14945. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14946. {
  14947. front: {
  14948. height: math.unit(6, "feet"),
  14949. weight: math.unit(180, "lb"),
  14950. name: "Front",
  14951. image: {
  14952. source: "./media/characters/xochitl/front.svg",
  14953. extra: 2297 / 2261,
  14954. bottom: 0.065
  14955. }
  14956. },
  14957. back: {
  14958. height: math.unit(6, "feet"),
  14959. weight: math.unit(180, "lb"),
  14960. name: "Back",
  14961. image: {
  14962. source: "./media/characters/xochitl/back.svg",
  14963. extra: 2386 / 2354,
  14964. bottom: 0.01
  14965. }
  14966. },
  14967. foot: {
  14968. height: math.unit(6 / 5 * 1.15, "feet"),
  14969. weight: math.unit(150, "lb"),
  14970. name: "Foot",
  14971. image: {
  14972. source: "./media/characters/xochitl/foot.svg"
  14973. }
  14974. },
  14975. },
  14976. [
  14977. {
  14978. name: "Macro",
  14979. height: math.unit(80, "feet")
  14980. },
  14981. {
  14982. name: "Macro+",
  14983. height: math.unit(400, "feet"),
  14984. default: true
  14985. },
  14986. {
  14987. name: "Gigamacro",
  14988. height: math.unit(80000, "miles")
  14989. },
  14990. {
  14991. name: "Gigamacro+",
  14992. height: math.unit(400000, "miles")
  14993. },
  14994. {
  14995. name: "Teramacro",
  14996. height: math.unit(300, "AU")
  14997. },
  14998. ]
  14999. ))
  15000. characterMakers.push(() => makeCharacter(
  15001. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15002. {
  15003. front: {
  15004. height: math.unit(6, "feet"),
  15005. weight: math.unit(150, "lb"),
  15006. name: "Front",
  15007. image: {
  15008. source: "./media/characters/vincent/front.svg",
  15009. extra: 1130 / 1080,
  15010. bottom: 0.055
  15011. }
  15012. },
  15013. beak: {
  15014. height: math.unit(6 * 0.1, "feet"),
  15015. name: "Beak",
  15016. image: {
  15017. source: "./media/characters/vincent/beak.svg"
  15018. }
  15019. },
  15020. hand: {
  15021. height: math.unit(6 * 0.85, "feet"),
  15022. weight: math.unit(150, "lb"),
  15023. name: "Hand",
  15024. image: {
  15025. source: "./media/characters/vincent/hand.svg"
  15026. }
  15027. },
  15028. foot: {
  15029. height: math.unit(6 * 0.19, "feet"),
  15030. weight: math.unit(150, "lb"),
  15031. name: "Foot",
  15032. image: {
  15033. source: "./media/characters/vincent/foot.svg"
  15034. }
  15035. },
  15036. },
  15037. [
  15038. {
  15039. name: "Base",
  15040. height: math.unit(6 + 5 / 12, "feet"),
  15041. default: true
  15042. },
  15043. {
  15044. name: "Macro",
  15045. height: math.unit(300, "feet")
  15046. },
  15047. {
  15048. name: "Megamacro",
  15049. height: math.unit(2, "miles")
  15050. },
  15051. {
  15052. name: "Gigamacro",
  15053. height: math.unit(1000, "miles")
  15054. },
  15055. ]
  15056. ))
  15057. characterMakers.push(() => makeCharacter(
  15058. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15059. {
  15060. front: {
  15061. height: math.unit(2, "meters"),
  15062. weight: math.unit(500, "kg"),
  15063. name: "Front",
  15064. image: {
  15065. source: "./media/characters/coatl/front.svg",
  15066. extra: 3948 / 3500,
  15067. bottom: 0.082
  15068. }
  15069. },
  15070. },
  15071. [
  15072. {
  15073. name: "Normal",
  15074. height: math.unit(4, "meters")
  15075. },
  15076. {
  15077. name: "Macro",
  15078. height: math.unit(100, "meters"),
  15079. default: true
  15080. },
  15081. {
  15082. name: "Macro+",
  15083. height: math.unit(300, "meters")
  15084. },
  15085. {
  15086. name: "Megamacro",
  15087. height: math.unit(3, "gigameters")
  15088. },
  15089. {
  15090. name: "Megamacro+",
  15091. height: math.unit(300, "terameters")
  15092. },
  15093. {
  15094. name: "Megamacro++",
  15095. height: math.unit(3, "lightyears")
  15096. },
  15097. ]
  15098. ))
  15099. characterMakers.push(() => makeCharacter(
  15100. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15101. {
  15102. front: {
  15103. height: math.unit(6, "feet"),
  15104. weight: math.unit(50, "kg"),
  15105. name: "front",
  15106. image: {
  15107. source: "./media/characters/shiroryu/front.svg",
  15108. extra: 1990 / 1935
  15109. }
  15110. },
  15111. },
  15112. [
  15113. {
  15114. name: "Mortal Mingling",
  15115. height: math.unit(3, "meters")
  15116. },
  15117. {
  15118. name: "Kaiju-ish",
  15119. height: math.unit(250, "meters")
  15120. },
  15121. {
  15122. name: "Somewhat Godly",
  15123. height: math.unit(400, "km"),
  15124. default: true
  15125. },
  15126. {
  15127. name: "Planetary",
  15128. height: math.unit(300, "megameters")
  15129. },
  15130. {
  15131. name: "Galaxy-dwarfing",
  15132. height: math.unit(450, "kiloparsecs")
  15133. },
  15134. {
  15135. name: "Universe Eater",
  15136. height: math.unit(150, "gigaparsecs")
  15137. },
  15138. {
  15139. name: "Almost Immeasurable",
  15140. height: math.unit(1.3e266, "yottaparsecs")
  15141. },
  15142. ]
  15143. ))
  15144. characterMakers.push(() => makeCharacter(
  15145. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15146. {
  15147. front: {
  15148. height: math.unit(6, "feet"),
  15149. weight: math.unit(150, "lb"),
  15150. name: "Front",
  15151. image: {
  15152. source: "./media/characters/umeko/front.svg",
  15153. extra: 1,
  15154. bottom: 0.019
  15155. }
  15156. },
  15157. frontArmored: {
  15158. height: math.unit(6, "feet"),
  15159. weight: math.unit(150, "lb"),
  15160. name: "Front (Armored)",
  15161. image: {
  15162. source: "./media/characters/umeko/front-armored.svg",
  15163. extra: 1,
  15164. bottom: 0.021
  15165. }
  15166. },
  15167. },
  15168. [
  15169. {
  15170. name: "Macro",
  15171. height: math.unit(220, "feet"),
  15172. default: true
  15173. },
  15174. {
  15175. name: "Guardian Dragon",
  15176. height: math.unit(50, "miles")
  15177. },
  15178. {
  15179. name: "Cosmic",
  15180. height: math.unit(800000, "miles")
  15181. },
  15182. ]
  15183. ))
  15184. characterMakers.push(() => makeCharacter(
  15185. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15186. {
  15187. front: {
  15188. height: math.unit(6, "feet"),
  15189. weight: math.unit(150, "lb"),
  15190. name: "Front",
  15191. image: {
  15192. source: "./media/characters/cassidy/front.svg",
  15193. extra: 810/808,
  15194. bottom: 41/851
  15195. }
  15196. },
  15197. },
  15198. [
  15199. {
  15200. name: "Canon Height",
  15201. height: math.unit(120, "feet"),
  15202. default: true
  15203. },
  15204. {
  15205. name: "Macro+",
  15206. height: math.unit(400, "feet")
  15207. },
  15208. {
  15209. name: "Macro++",
  15210. height: math.unit(4000, "feet")
  15211. },
  15212. {
  15213. name: "Megamacro",
  15214. height: math.unit(3, "miles")
  15215. },
  15216. ]
  15217. ))
  15218. characterMakers.push(() => makeCharacter(
  15219. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15220. {
  15221. front: {
  15222. height: math.unit(6, "feet"),
  15223. weight: math.unit(150, "lb"),
  15224. name: "Front",
  15225. image: {
  15226. source: "./media/characters/isaac/front.svg",
  15227. extra: 896 / 815,
  15228. bottom: 0.11
  15229. }
  15230. },
  15231. },
  15232. [
  15233. {
  15234. name: "Human Size",
  15235. height: math.unit(8, "feet"),
  15236. default: true
  15237. },
  15238. {
  15239. name: "Macro",
  15240. height: math.unit(400, "feet")
  15241. },
  15242. {
  15243. name: "Megamacro",
  15244. height: math.unit(50, "miles")
  15245. },
  15246. {
  15247. name: "Canon Height",
  15248. height: math.unit(200, "AU")
  15249. },
  15250. ]
  15251. ))
  15252. characterMakers.push(() => makeCharacter(
  15253. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15254. {
  15255. front: {
  15256. height: math.unit(6, "feet"),
  15257. weight: math.unit(72, "kg"),
  15258. name: "Front",
  15259. image: {
  15260. source: "./media/characters/sleekit/front.svg",
  15261. extra: 4693 / 4487,
  15262. bottom: 0.012
  15263. }
  15264. },
  15265. },
  15266. [
  15267. {
  15268. name: "Minimum Height",
  15269. height: math.unit(10, "meters")
  15270. },
  15271. {
  15272. name: "Smaller",
  15273. height: math.unit(25, "meters")
  15274. },
  15275. {
  15276. name: "Larger",
  15277. height: math.unit(38, "meters"),
  15278. default: true
  15279. },
  15280. {
  15281. name: "Maximum height",
  15282. height: math.unit(100, "meters")
  15283. },
  15284. ]
  15285. ))
  15286. characterMakers.push(() => makeCharacter(
  15287. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15288. {
  15289. front: {
  15290. height: math.unit(6, "feet"),
  15291. weight: math.unit(150, "lb"),
  15292. name: "Front",
  15293. image: {
  15294. source: "./media/characters/nillia/front.svg",
  15295. extra: 2195 / 2037,
  15296. bottom: 0.005
  15297. }
  15298. },
  15299. back: {
  15300. height: math.unit(6, "feet"),
  15301. weight: math.unit(150, "lb"),
  15302. name: "Back",
  15303. image: {
  15304. source: "./media/characters/nillia/back.svg",
  15305. extra: 2195 / 2037,
  15306. bottom: 0.005
  15307. }
  15308. },
  15309. },
  15310. [
  15311. {
  15312. name: "Canon Height",
  15313. height: math.unit(489, "feet"),
  15314. default: true
  15315. }
  15316. ]
  15317. ))
  15318. characterMakers.push(() => makeCharacter(
  15319. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15320. {
  15321. front: {
  15322. height: math.unit(6, "feet"),
  15323. weight: math.unit(150, "lb"),
  15324. name: "Front",
  15325. image: {
  15326. source: "./media/characters/mesmyriza/front.svg",
  15327. extra: 2067 / 1784,
  15328. bottom: 0.035
  15329. }
  15330. },
  15331. foot: {
  15332. height: math.unit(6 / (250 / 35), "feet"),
  15333. name: "Foot",
  15334. image: {
  15335. source: "./media/characters/mesmyriza/foot.svg"
  15336. }
  15337. },
  15338. },
  15339. [
  15340. {
  15341. name: "Macro",
  15342. height: math.unit(457, "meters"),
  15343. default: true
  15344. },
  15345. {
  15346. name: "Megamacro",
  15347. height: math.unit(8, "megameters")
  15348. },
  15349. ]
  15350. ))
  15351. characterMakers.push(() => makeCharacter(
  15352. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15353. {
  15354. front: {
  15355. height: math.unit(6, "feet"),
  15356. weight: math.unit(250, "lb"),
  15357. name: "Front",
  15358. image: {
  15359. source: "./media/characters/saudade/front.svg",
  15360. extra: 1172 / 1139,
  15361. bottom: 0.035
  15362. }
  15363. },
  15364. },
  15365. [
  15366. {
  15367. name: "Micro",
  15368. height: math.unit(3, "inches")
  15369. },
  15370. {
  15371. name: "Normal",
  15372. height: math.unit(6, "feet"),
  15373. default: true
  15374. },
  15375. {
  15376. name: "Macro",
  15377. height: math.unit(50, "feet")
  15378. },
  15379. {
  15380. name: "Megamacro",
  15381. height: math.unit(2800, "feet")
  15382. },
  15383. ]
  15384. ))
  15385. characterMakers.push(() => makeCharacter(
  15386. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15387. {
  15388. front: {
  15389. height: math.unit(5 + 4 / 12, "feet"),
  15390. weight: math.unit(100, "lb"),
  15391. name: "Front",
  15392. image: {
  15393. source: "./media/characters/keireer/front.svg",
  15394. extra: 716 / 666,
  15395. bottom: 0.05
  15396. }
  15397. },
  15398. },
  15399. [
  15400. {
  15401. name: "Normal",
  15402. height: math.unit(5 + 4 / 12, "feet"),
  15403. default: true
  15404. },
  15405. ]
  15406. ))
  15407. characterMakers.push(() => makeCharacter(
  15408. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15409. {
  15410. front: {
  15411. height: math.unit(5.5, "feet"),
  15412. weight: math.unit(90, "kg"),
  15413. name: "Front",
  15414. image: {
  15415. source: "./media/characters/mirja/front.svg",
  15416. extra: 1452/1262,
  15417. bottom: 67/1519
  15418. }
  15419. },
  15420. frontDressed: {
  15421. height: math.unit(5.5, "feet"),
  15422. weight: math.unit(90, "lb"),
  15423. name: "Front (Dressed)",
  15424. image: {
  15425. source: "./media/characters/mirja/dressed.svg",
  15426. extra: 1452/1262,
  15427. bottom: 67/1519
  15428. }
  15429. },
  15430. back: {
  15431. height: math.unit(6, "feet"),
  15432. weight: math.unit(90, "lb"),
  15433. name: "Back",
  15434. image: {
  15435. source: "./media/characters/mirja/back.svg",
  15436. extra: 1892/1795,
  15437. bottom: 48/1940
  15438. }
  15439. },
  15440. maw: {
  15441. height: math.unit(1.312, "feet"),
  15442. name: "Maw",
  15443. image: {
  15444. source: "./media/characters/mirja/maw.svg"
  15445. }
  15446. },
  15447. paw: {
  15448. height: math.unit(1.15, "feet"),
  15449. name: "Paw",
  15450. image: {
  15451. source: "./media/characters/mirja/paw.svg"
  15452. }
  15453. },
  15454. },
  15455. [
  15456. {
  15457. name: "\"Incognito\"",
  15458. height: math.unit(3, "meters")
  15459. },
  15460. {
  15461. name: "Strolling Size",
  15462. height: math.unit(15, "km")
  15463. },
  15464. {
  15465. name: "Larger Strolling Size",
  15466. height: math.unit(400, "km")
  15467. },
  15468. {
  15469. name: "Preferred Size",
  15470. height: math.unit(5000, "km"),
  15471. default: true
  15472. },
  15473. {
  15474. name: "True Size",
  15475. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15476. },
  15477. ]
  15478. ))
  15479. characterMakers.push(() => makeCharacter(
  15480. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15481. {
  15482. front: {
  15483. height: math.unit(15, "feet"),
  15484. weight: math.unit(880, "kg"),
  15485. name: "Front",
  15486. image: {
  15487. source: "./media/characters/nightraver/front.svg",
  15488. extra: 2444 / 2160,
  15489. bottom: 0.027
  15490. }
  15491. },
  15492. back: {
  15493. height: math.unit(15, "feet"),
  15494. weight: math.unit(880, "kg"),
  15495. name: "Back",
  15496. image: {
  15497. source: "./media/characters/nightraver/back.svg",
  15498. extra: 2309 / 2180,
  15499. bottom: 0.005
  15500. }
  15501. },
  15502. sole: {
  15503. height: math.unit(2.878, "feet"),
  15504. name: "Sole",
  15505. image: {
  15506. source: "./media/characters/nightraver/sole.svg"
  15507. }
  15508. },
  15509. foot: {
  15510. height: math.unit(2.285, "feet"),
  15511. name: "Foot",
  15512. image: {
  15513. source: "./media/characters/nightraver/foot.svg"
  15514. }
  15515. },
  15516. maw: {
  15517. height: math.unit(2.67, "feet"),
  15518. name: "Maw",
  15519. image: {
  15520. source: "./media/characters/nightraver/maw.svg"
  15521. }
  15522. },
  15523. },
  15524. [
  15525. {
  15526. name: "Micro",
  15527. height: math.unit(1, "cm")
  15528. },
  15529. {
  15530. name: "Normal",
  15531. height: math.unit(15, "feet"),
  15532. default: true
  15533. },
  15534. {
  15535. name: "Macro",
  15536. height: math.unit(300, "feet")
  15537. },
  15538. {
  15539. name: "Megamacro",
  15540. height: math.unit(300, "miles")
  15541. },
  15542. {
  15543. name: "Gigamacro",
  15544. height: math.unit(10000, "miles")
  15545. },
  15546. ]
  15547. ))
  15548. characterMakers.push(() => makeCharacter(
  15549. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15550. {
  15551. side: {
  15552. height: math.unit(2, "inches"),
  15553. weight: math.unit(5, "grams"),
  15554. name: "Side",
  15555. image: {
  15556. source: "./media/characters/arc/side.svg"
  15557. }
  15558. },
  15559. },
  15560. [
  15561. {
  15562. name: "Micro",
  15563. height: math.unit(2, "inches"),
  15564. default: true
  15565. },
  15566. ]
  15567. ))
  15568. characterMakers.push(() => makeCharacter(
  15569. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15570. {
  15571. front: {
  15572. height: math.unit(1.1938, "meters"),
  15573. weight: math.unit(54, "kg"),
  15574. name: "Front",
  15575. image: {
  15576. source: "./media/characters/nebula-shahar/front.svg",
  15577. extra: 1642 / 1436,
  15578. bottom: 0.06
  15579. }
  15580. },
  15581. },
  15582. [
  15583. {
  15584. name: "Megamicro",
  15585. height: math.unit(0.3, "mm")
  15586. },
  15587. {
  15588. name: "Micro",
  15589. height: math.unit(3, "cm")
  15590. },
  15591. {
  15592. name: "Normal",
  15593. height: math.unit(138, "cm"),
  15594. default: true
  15595. },
  15596. {
  15597. name: "Macro",
  15598. height: math.unit(30, "m")
  15599. },
  15600. ]
  15601. ))
  15602. characterMakers.push(() => makeCharacter(
  15603. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15604. {
  15605. front: {
  15606. height: math.unit(5.24, "feet"),
  15607. weight: math.unit(150, "lb"),
  15608. name: "Front",
  15609. image: {
  15610. source: "./media/characters/shayla/front.svg",
  15611. extra: 1512 / 1414,
  15612. bottom: 0.01
  15613. }
  15614. },
  15615. back: {
  15616. height: math.unit(5.24, "feet"),
  15617. weight: math.unit(150, "lb"),
  15618. name: "Back",
  15619. image: {
  15620. source: "./media/characters/shayla/back.svg",
  15621. extra: 1512 / 1414
  15622. }
  15623. },
  15624. hand: {
  15625. height: math.unit(0.7781496062992126, "feet"),
  15626. name: "Hand",
  15627. image: {
  15628. source: "./media/characters/shayla/hand.svg"
  15629. }
  15630. },
  15631. foot: {
  15632. height: math.unit(1.4206036745406823, "feet"),
  15633. name: "Foot",
  15634. image: {
  15635. source: "./media/characters/shayla/foot.svg"
  15636. }
  15637. },
  15638. },
  15639. [
  15640. {
  15641. name: "Micro",
  15642. height: math.unit(0.32, "feet")
  15643. },
  15644. {
  15645. name: "Normal",
  15646. height: math.unit(5.24, "feet"),
  15647. default: true
  15648. },
  15649. {
  15650. name: "Macro",
  15651. height: math.unit(492.12, "feet")
  15652. },
  15653. {
  15654. name: "Megamacro",
  15655. height: math.unit(186.41, "miles")
  15656. },
  15657. ]
  15658. ))
  15659. characterMakers.push(() => makeCharacter(
  15660. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15661. {
  15662. front: {
  15663. height: math.unit(2.2, "m"),
  15664. weight: math.unit(120, "kg"),
  15665. name: "Front",
  15666. image: {
  15667. source: "./media/characters/pia-jr/front.svg",
  15668. extra: 1000 / 970,
  15669. bottom: 0.035
  15670. }
  15671. },
  15672. hand: {
  15673. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15674. name: "Hand",
  15675. image: {
  15676. source: "./media/characters/pia-jr/hand.svg"
  15677. }
  15678. },
  15679. paw: {
  15680. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15681. name: "Paw",
  15682. image: {
  15683. source: "./media/characters/pia-jr/paw.svg"
  15684. }
  15685. },
  15686. },
  15687. [
  15688. {
  15689. name: "Micro",
  15690. height: math.unit(1.2, "cm")
  15691. },
  15692. {
  15693. name: "Normal",
  15694. height: math.unit(2.2, "m"),
  15695. default: true
  15696. },
  15697. {
  15698. name: "Macro",
  15699. height: math.unit(180, "m")
  15700. },
  15701. {
  15702. name: "Megamacro",
  15703. height: math.unit(420, "km")
  15704. },
  15705. ]
  15706. ))
  15707. characterMakers.push(() => makeCharacter(
  15708. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15709. {
  15710. front: {
  15711. height: math.unit(2, "m"),
  15712. weight: math.unit(115, "kg"),
  15713. name: "Front",
  15714. image: {
  15715. source: "./media/characters/pia-sr/front.svg",
  15716. extra: 760 / 730,
  15717. bottom: 0.015
  15718. }
  15719. },
  15720. back: {
  15721. height: math.unit(2, "m"),
  15722. weight: math.unit(115, "kg"),
  15723. name: "Back",
  15724. image: {
  15725. source: "./media/characters/pia-sr/back.svg",
  15726. extra: 760 / 730,
  15727. bottom: 0.01
  15728. }
  15729. },
  15730. hand: {
  15731. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15732. name: "Hand",
  15733. image: {
  15734. source: "./media/characters/pia-sr/hand.svg"
  15735. }
  15736. },
  15737. foot: {
  15738. height: math.unit(1.83, "feet"),
  15739. name: "Foot",
  15740. image: {
  15741. source: "./media/characters/pia-sr/foot.svg"
  15742. }
  15743. },
  15744. },
  15745. [
  15746. {
  15747. name: "Micro",
  15748. height: math.unit(88, "mm")
  15749. },
  15750. {
  15751. name: "Normal",
  15752. height: math.unit(2, "m"),
  15753. default: true
  15754. },
  15755. {
  15756. name: "Macro",
  15757. height: math.unit(200, "m")
  15758. },
  15759. {
  15760. name: "Megamacro",
  15761. height: math.unit(420, "km")
  15762. },
  15763. ]
  15764. ))
  15765. characterMakers.push(() => makeCharacter(
  15766. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15767. {
  15768. front: {
  15769. height: math.unit(8 + 2 / 12, "feet"),
  15770. weight: math.unit(300, "lb"),
  15771. name: "Front",
  15772. image: {
  15773. source: "./media/characters/kibibyte/front.svg",
  15774. extra: 2221 / 2098,
  15775. bottom: 0.04
  15776. }
  15777. },
  15778. },
  15779. [
  15780. {
  15781. name: "Normal",
  15782. height: math.unit(8 + 2 / 12, "feet"),
  15783. default: true
  15784. },
  15785. {
  15786. name: "Socialable Macro",
  15787. height: math.unit(50, "feet")
  15788. },
  15789. {
  15790. name: "Macro",
  15791. height: math.unit(300, "feet")
  15792. },
  15793. {
  15794. name: "Megamacro",
  15795. height: math.unit(500, "miles")
  15796. },
  15797. ]
  15798. ))
  15799. characterMakers.push(() => makeCharacter(
  15800. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15801. {
  15802. front: {
  15803. height: math.unit(6, "feet"),
  15804. weight: math.unit(150, "lb"),
  15805. name: "Front",
  15806. image: {
  15807. source: "./media/characters/felix/front.svg",
  15808. extra: 762 / 722,
  15809. bottom: 0.02
  15810. }
  15811. },
  15812. frontClothed: {
  15813. height: math.unit(6, "feet"),
  15814. weight: math.unit(150, "lb"),
  15815. name: "Front (Clothed)",
  15816. image: {
  15817. source: "./media/characters/felix/front-clothed.svg",
  15818. extra: 762 / 722,
  15819. bottom: 0.02
  15820. }
  15821. },
  15822. },
  15823. [
  15824. {
  15825. name: "Normal",
  15826. height: math.unit(6 + 8 / 12, "feet"),
  15827. default: true
  15828. },
  15829. {
  15830. name: "Macro",
  15831. height: math.unit(2600, "feet")
  15832. },
  15833. {
  15834. name: "Megamacro",
  15835. height: math.unit(450, "miles")
  15836. },
  15837. ]
  15838. ))
  15839. characterMakers.push(() => makeCharacter(
  15840. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15841. {
  15842. front: {
  15843. height: math.unit(6 + 1 / 12, "feet"),
  15844. weight: math.unit(250, "lb"),
  15845. name: "Front",
  15846. image: {
  15847. source: "./media/characters/tobo/front.svg",
  15848. extra: 608 / 586,
  15849. bottom: 0.023
  15850. }
  15851. },
  15852. back: {
  15853. height: math.unit(6 + 1 / 12, "feet"),
  15854. weight: math.unit(250, "lb"),
  15855. name: "Back",
  15856. image: {
  15857. source: "./media/characters/tobo/back.svg",
  15858. extra: 608 / 586
  15859. }
  15860. },
  15861. },
  15862. [
  15863. {
  15864. name: "Nano",
  15865. height: math.unit(2, "nm")
  15866. },
  15867. {
  15868. name: "Megamicro",
  15869. height: math.unit(0.1, "mm")
  15870. },
  15871. {
  15872. name: "Micro",
  15873. height: math.unit(1, "inch"),
  15874. default: true
  15875. },
  15876. {
  15877. name: "Human-sized",
  15878. height: math.unit(6 + 1 / 12, "feet")
  15879. },
  15880. {
  15881. name: "Macro",
  15882. height: math.unit(250, "feet")
  15883. },
  15884. {
  15885. name: "Megamacro",
  15886. height: math.unit(75, "miles")
  15887. },
  15888. {
  15889. name: "Texas-sized",
  15890. height: math.unit(750, "miles")
  15891. },
  15892. {
  15893. name: "Teramacro",
  15894. height: math.unit(50000, "miles")
  15895. },
  15896. ]
  15897. ))
  15898. characterMakers.push(() => makeCharacter(
  15899. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15900. {
  15901. front: {
  15902. height: math.unit(6, "feet"),
  15903. weight: math.unit(269, "lb"),
  15904. name: "Front",
  15905. image: {
  15906. source: "./media/characters/danny-kapowsky/front.svg",
  15907. extra: 766 / 736,
  15908. bottom: 0.044
  15909. }
  15910. },
  15911. back: {
  15912. height: math.unit(6, "feet"),
  15913. weight: math.unit(269, "lb"),
  15914. name: "Back",
  15915. image: {
  15916. source: "./media/characters/danny-kapowsky/back.svg",
  15917. extra: 797 / 760,
  15918. bottom: 0.025
  15919. }
  15920. },
  15921. },
  15922. [
  15923. {
  15924. name: "Macro",
  15925. height: math.unit(150, "feet"),
  15926. default: true
  15927. },
  15928. {
  15929. name: "Macro+",
  15930. height: math.unit(200, "feet")
  15931. },
  15932. {
  15933. name: "Macro++",
  15934. height: math.unit(300, "feet")
  15935. },
  15936. {
  15937. name: "Macro+++",
  15938. height: math.unit(400, "feet")
  15939. },
  15940. ]
  15941. ))
  15942. characterMakers.push(() => makeCharacter(
  15943. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15944. {
  15945. side: {
  15946. height: math.unit(6, "feet"),
  15947. weight: math.unit(170, "lb"),
  15948. name: "Side",
  15949. image: {
  15950. source: "./media/characters/finn/side.svg",
  15951. extra: 1953 / 1807,
  15952. bottom: 0.057
  15953. }
  15954. },
  15955. },
  15956. [
  15957. {
  15958. name: "Megamacro",
  15959. height: math.unit(14445, "feet"),
  15960. default: true
  15961. },
  15962. ]
  15963. ))
  15964. characterMakers.push(() => makeCharacter(
  15965. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15966. {
  15967. front: {
  15968. height: math.unit(5 + 6 / 12, "feet"),
  15969. weight: math.unit(125, "lb"),
  15970. name: "Front",
  15971. image: {
  15972. source: "./media/characters/roy/front.svg",
  15973. extra: 1,
  15974. bottom: 0.11
  15975. }
  15976. },
  15977. },
  15978. [
  15979. {
  15980. name: "Micro",
  15981. height: math.unit(3, "inches"),
  15982. default: true
  15983. },
  15984. {
  15985. name: "Normal",
  15986. height: math.unit(5 + 6 / 12, "feet")
  15987. },
  15988. {
  15989. name: "Lesser Macro",
  15990. height: math.unit(60, "feet")
  15991. },
  15992. {
  15993. name: "Greater Macro",
  15994. height: math.unit(120, "feet")
  15995. },
  15996. ]
  15997. ))
  15998. characterMakers.push(() => makeCharacter(
  15999. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16000. {
  16001. front: {
  16002. height: math.unit(6, "feet"),
  16003. weight: math.unit(100, "lb"),
  16004. name: "Front",
  16005. image: {
  16006. source: "./media/characters/aevsivs/front.svg",
  16007. extra: 1,
  16008. bottom: 0.03
  16009. }
  16010. },
  16011. back: {
  16012. height: math.unit(6, "feet"),
  16013. weight: math.unit(100, "lb"),
  16014. name: "Back",
  16015. image: {
  16016. source: "./media/characters/aevsivs/back.svg"
  16017. }
  16018. },
  16019. },
  16020. [
  16021. {
  16022. name: "Micro",
  16023. height: math.unit(2, "inches"),
  16024. default: true
  16025. },
  16026. {
  16027. name: "Normal",
  16028. height: math.unit(5, "feet")
  16029. },
  16030. ]
  16031. ))
  16032. characterMakers.push(() => makeCharacter(
  16033. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16034. {
  16035. front: {
  16036. height: math.unit(5 + 7 / 12, "feet"),
  16037. weight: math.unit(159, "lb"),
  16038. name: "Front",
  16039. image: {
  16040. source: "./media/characters/hildegard/front.svg",
  16041. extra: 289 / 269,
  16042. bottom: 7.63 / 297.8
  16043. }
  16044. },
  16045. back: {
  16046. height: math.unit(5 + 7 / 12, "feet"),
  16047. weight: math.unit(159, "lb"),
  16048. name: "Back",
  16049. image: {
  16050. source: "./media/characters/hildegard/back.svg",
  16051. extra: 280 / 260,
  16052. bottom: 2.3 / 282
  16053. }
  16054. },
  16055. },
  16056. [
  16057. {
  16058. name: "Normal",
  16059. height: math.unit(5 + 7 / 12, "feet"),
  16060. default: true
  16061. },
  16062. ]
  16063. ))
  16064. characterMakers.push(() => makeCharacter(
  16065. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16066. {
  16067. bernard: {
  16068. height: math.unit(2 + 7 / 12, "feet"),
  16069. weight: math.unit(66, "lb"),
  16070. name: "Bernard",
  16071. rename: true,
  16072. image: {
  16073. source: "./media/characters/bernard-wilder/bernard.svg",
  16074. extra: 192 / 128,
  16075. bottom: 0.05
  16076. }
  16077. },
  16078. wilder: {
  16079. height: math.unit(5 + 8 / 12, "feet"),
  16080. weight: math.unit(143, "lb"),
  16081. name: "Wilder",
  16082. rename: true,
  16083. image: {
  16084. source: "./media/characters/bernard-wilder/wilder.svg",
  16085. extra: 361 / 312,
  16086. bottom: 0.02
  16087. }
  16088. },
  16089. },
  16090. [
  16091. {
  16092. name: "Normal",
  16093. height: math.unit(2 + 7 / 12, "feet"),
  16094. default: true
  16095. },
  16096. ]
  16097. ))
  16098. characterMakers.push(() => makeCharacter(
  16099. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16100. {
  16101. anthro: {
  16102. height: math.unit(6 + 1 / 12, "feet"),
  16103. weight: math.unit(155, "lb"),
  16104. name: "Anthro",
  16105. image: {
  16106. source: "./media/characters/hearth/anthro.svg",
  16107. extra: 1178/1136,
  16108. bottom: 28/1206
  16109. }
  16110. },
  16111. feral: {
  16112. height: math.unit(3.78, "feet"),
  16113. weight: math.unit(35, "kg"),
  16114. name: "Feral",
  16115. image: {
  16116. source: "./media/characters/hearth/feral.svg",
  16117. extra: 153 / 135,
  16118. bottom: 0.03
  16119. }
  16120. },
  16121. },
  16122. [
  16123. {
  16124. name: "Normal",
  16125. height: math.unit(6 + 1 / 12, "feet"),
  16126. default: true
  16127. },
  16128. ]
  16129. ))
  16130. characterMakers.push(() => makeCharacter(
  16131. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16132. {
  16133. front: {
  16134. height: math.unit(6, "feet"),
  16135. weight: math.unit(182, "lb"),
  16136. name: "Front",
  16137. image: {
  16138. source: "./media/characters/ingrid/front.svg",
  16139. extra: 294 / 268,
  16140. bottom: 0.027
  16141. }
  16142. },
  16143. },
  16144. [
  16145. {
  16146. name: "Normal",
  16147. height: math.unit(6, "feet"),
  16148. default: true
  16149. },
  16150. ]
  16151. ))
  16152. characterMakers.push(() => makeCharacter(
  16153. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16154. {
  16155. eevee: {
  16156. height: math.unit(2 + 10 / 12, "feet"),
  16157. weight: math.unit(86, "lb"),
  16158. name: "Malgam",
  16159. image: {
  16160. source: "./media/characters/malgam/eevee.svg",
  16161. extra: 952/784,
  16162. bottom: 38/990
  16163. }
  16164. },
  16165. sylveon: {
  16166. height: math.unit(4, "feet"),
  16167. weight: math.unit(101, "lb"),
  16168. name: "Future Malgam",
  16169. rename: true,
  16170. image: {
  16171. source: "./media/characters/malgam/sylveon.svg",
  16172. extra: 371 / 325,
  16173. bottom: 0.015
  16174. }
  16175. },
  16176. gigantamax: {
  16177. height: math.unit(50, "feet"),
  16178. name: "Gigantamax Malgam",
  16179. rename: true,
  16180. image: {
  16181. source: "./media/characters/malgam/gigantamax.svg"
  16182. }
  16183. },
  16184. },
  16185. [
  16186. {
  16187. name: "Normal",
  16188. height: math.unit(2 + 10 / 12, "feet"),
  16189. default: true
  16190. },
  16191. ]
  16192. ))
  16193. characterMakers.push(() => makeCharacter(
  16194. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16195. {
  16196. front: {
  16197. height: math.unit(5 + 11 / 12, "feet"),
  16198. weight: math.unit(188, "lb"),
  16199. name: "Front",
  16200. image: {
  16201. source: "./media/characters/fleur/front.svg",
  16202. extra: 309 / 283,
  16203. bottom: 0.007
  16204. }
  16205. },
  16206. },
  16207. [
  16208. {
  16209. name: "Normal",
  16210. height: math.unit(5 + 11 / 12, "feet"),
  16211. default: true
  16212. },
  16213. ]
  16214. ))
  16215. characterMakers.push(() => makeCharacter(
  16216. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16217. {
  16218. front: {
  16219. height: math.unit(5 + 4 / 12, "feet"),
  16220. weight: math.unit(122, "lb"),
  16221. name: "Front",
  16222. image: {
  16223. source: "./media/characters/jude/front.svg",
  16224. extra: 288 / 273,
  16225. bottom: 0.03
  16226. }
  16227. },
  16228. },
  16229. [
  16230. {
  16231. name: "Normal",
  16232. height: math.unit(5 + 4 / 12, "feet"),
  16233. default: true
  16234. },
  16235. ]
  16236. ))
  16237. characterMakers.push(() => makeCharacter(
  16238. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16239. {
  16240. front: {
  16241. height: math.unit(5 + 11 / 12, "feet"),
  16242. weight: math.unit(190, "lb"),
  16243. name: "Front",
  16244. image: {
  16245. source: "./media/characters/seara/front.svg",
  16246. extra: 1,
  16247. bottom: 0.05
  16248. }
  16249. },
  16250. },
  16251. [
  16252. {
  16253. name: "Normal",
  16254. height: math.unit(5 + 11 / 12, "feet"),
  16255. default: true
  16256. },
  16257. ]
  16258. ))
  16259. characterMakers.push(() => makeCharacter(
  16260. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16261. {
  16262. front: {
  16263. height: math.unit(16 + 5 / 12, "feet"),
  16264. weight: math.unit(524, "lb"),
  16265. name: "Front",
  16266. image: {
  16267. source: "./media/characters/caspian-lugia/front.svg",
  16268. extra: 1,
  16269. bottom: 0.04
  16270. }
  16271. },
  16272. },
  16273. [
  16274. {
  16275. name: "Normal",
  16276. height: math.unit(16 + 5 / 12, "feet"),
  16277. default: true
  16278. },
  16279. ]
  16280. ))
  16281. characterMakers.push(() => makeCharacter(
  16282. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16283. {
  16284. front: {
  16285. height: math.unit(5 + 7 / 12, "feet"),
  16286. weight: math.unit(170, "lb"),
  16287. name: "Front",
  16288. image: {
  16289. source: "./media/characters/mika/front.svg",
  16290. extra: 1,
  16291. bottom: 0.016
  16292. }
  16293. },
  16294. },
  16295. [
  16296. {
  16297. name: "Normal",
  16298. height: math.unit(5 + 7 / 12, "feet"),
  16299. default: true
  16300. },
  16301. ]
  16302. ))
  16303. characterMakers.push(() => makeCharacter(
  16304. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16305. {
  16306. front: {
  16307. height: math.unit(6 + 2 / 12, "feet"),
  16308. weight: math.unit(268, "lb"),
  16309. name: "Front",
  16310. image: {
  16311. source: "./media/characters/sol/front.svg",
  16312. extra: 247 / 231,
  16313. bottom: 0.05
  16314. }
  16315. },
  16316. },
  16317. [
  16318. {
  16319. name: "Normal",
  16320. height: math.unit(6 + 2 / 12, "feet"),
  16321. default: true
  16322. },
  16323. ]
  16324. ))
  16325. characterMakers.push(() => makeCharacter(
  16326. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16327. {
  16328. buizel: {
  16329. height: math.unit(2 + 5 / 12, "feet"),
  16330. weight: math.unit(87, "lb"),
  16331. name: "Front",
  16332. image: {
  16333. source: "./media/characters/umiko/buizel.svg",
  16334. extra: 172 / 157,
  16335. bottom: 0.01
  16336. },
  16337. form: "buizel",
  16338. default: true
  16339. },
  16340. floatzel: {
  16341. height: math.unit(5 + 9 / 12, "feet"),
  16342. weight: math.unit(250, "lb"),
  16343. name: "Front",
  16344. image: {
  16345. source: "./media/characters/umiko/floatzel.svg",
  16346. extra: 1076/1006,
  16347. bottom: 15/1091
  16348. },
  16349. form: "floatzel",
  16350. default: true
  16351. },
  16352. },
  16353. [
  16354. {
  16355. name: "Normal",
  16356. height: math.unit(2 + 5 / 12, "feet"),
  16357. form: "buizel",
  16358. default: true
  16359. },
  16360. {
  16361. name: "Normal",
  16362. height: math.unit(5 + 9 / 12, "feet"),
  16363. form: "floatzel",
  16364. default: true
  16365. },
  16366. ],
  16367. {
  16368. "buizel": {
  16369. name: "Buizel"
  16370. },
  16371. "floatzel": {
  16372. name: "Floatzel",
  16373. default: true
  16374. }
  16375. }
  16376. ))
  16377. characterMakers.push(() => makeCharacter(
  16378. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16379. {
  16380. front: {
  16381. height: math.unit(6 + 2 / 12, "feet"),
  16382. weight: math.unit(146, "lb"),
  16383. name: "Front",
  16384. image: {
  16385. source: "./media/characters/iliac/front.svg",
  16386. extra: 389 / 365,
  16387. bottom: 0.035
  16388. }
  16389. },
  16390. },
  16391. [
  16392. {
  16393. name: "Normal",
  16394. height: math.unit(6 + 2 / 12, "feet"),
  16395. default: true
  16396. },
  16397. ]
  16398. ))
  16399. characterMakers.push(() => makeCharacter(
  16400. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16401. {
  16402. front: {
  16403. height: math.unit(6, "feet"),
  16404. weight: math.unit(170, "lb"),
  16405. name: "Front",
  16406. image: {
  16407. source: "./media/characters/topaz/front.svg",
  16408. extra: 317 / 303,
  16409. bottom: 0.055
  16410. }
  16411. },
  16412. },
  16413. [
  16414. {
  16415. name: "Normal",
  16416. height: math.unit(6, "feet"),
  16417. default: true
  16418. },
  16419. ]
  16420. ))
  16421. characterMakers.push(() => makeCharacter(
  16422. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16423. {
  16424. front: {
  16425. height: math.unit(5 + 11 / 12, "feet"),
  16426. weight: math.unit(144, "lb"),
  16427. name: "Front",
  16428. image: {
  16429. source: "./media/characters/gabriel/front.svg",
  16430. extra: 285 / 262,
  16431. bottom: 0.004
  16432. }
  16433. },
  16434. },
  16435. [
  16436. {
  16437. name: "Normal",
  16438. height: math.unit(5 + 11 / 12, "feet"),
  16439. default: true
  16440. },
  16441. ]
  16442. ))
  16443. characterMakers.push(() => makeCharacter(
  16444. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16445. {
  16446. side: {
  16447. height: math.unit(6 + 5 / 12, "feet"),
  16448. weight: math.unit(300, "lb"),
  16449. name: "Side",
  16450. image: {
  16451. source: "./media/characters/tempest-suicune/side.svg",
  16452. extra: 195 / 154,
  16453. bottom: 0.04
  16454. }
  16455. },
  16456. },
  16457. [
  16458. {
  16459. name: "Normal",
  16460. height: math.unit(6 + 5 / 12, "feet"),
  16461. default: true
  16462. },
  16463. ]
  16464. ))
  16465. characterMakers.push(() => makeCharacter(
  16466. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16467. {
  16468. front: {
  16469. height: math.unit(7 + 2 / 12, "feet"),
  16470. weight: math.unit(322, "lb"),
  16471. name: "Front",
  16472. image: {
  16473. source: "./media/characters/vulcan/front.svg",
  16474. extra: 154 / 147,
  16475. bottom: 0.04
  16476. }
  16477. },
  16478. },
  16479. [
  16480. {
  16481. name: "Normal",
  16482. height: math.unit(7 + 2 / 12, "feet"),
  16483. default: true
  16484. },
  16485. ]
  16486. ))
  16487. characterMakers.push(() => makeCharacter(
  16488. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16489. {
  16490. front: {
  16491. height: math.unit(5 + 10 / 12, "feet"),
  16492. weight: math.unit(264, "lb"),
  16493. name: "Front",
  16494. image: {
  16495. source: "./media/characters/gault/front.svg",
  16496. extra: 161 / 140,
  16497. bottom: 0.028
  16498. }
  16499. },
  16500. },
  16501. [
  16502. {
  16503. name: "Normal",
  16504. height: math.unit(5 + 10 / 12, "feet"),
  16505. default: true
  16506. },
  16507. ]
  16508. ))
  16509. characterMakers.push(() => makeCharacter(
  16510. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16511. {
  16512. front: {
  16513. height: math.unit(6, "feet"),
  16514. weight: math.unit(150, "lb"),
  16515. name: "Front",
  16516. image: {
  16517. source: "./media/characters/shard/front.svg",
  16518. extra: 273 / 238,
  16519. bottom: 0.02
  16520. }
  16521. },
  16522. },
  16523. [
  16524. {
  16525. name: "Normal",
  16526. height: math.unit(3 + 6 / 12, "feet"),
  16527. default: true
  16528. },
  16529. ]
  16530. ))
  16531. characterMakers.push(() => makeCharacter(
  16532. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16533. {
  16534. front: {
  16535. height: math.unit(5 + 11 / 12, "feet"),
  16536. weight: math.unit(146, "lb"),
  16537. name: "Front",
  16538. image: {
  16539. source: "./media/characters/ashe/front.svg",
  16540. extra: 400 / 373,
  16541. bottom: 0.01
  16542. }
  16543. },
  16544. },
  16545. [
  16546. {
  16547. name: "Normal",
  16548. height: math.unit(5 + 11 / 12, "feet"),
  16549. default: true
  16550. },
  16551. ]
  16552. ))
  16553. characterMakers.push(() => makeCharacter(
  16554. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16555. {
  16556. front: {
  16557. height: math.unit(5 + 5 / 12, "feet"),
  16558. weight: math.unit(135, "lb"),
  16559. name: "Front",
  16560. image: {
  16561. source: "./media/characters/beatrix/front.svg",
  16562. extra: 392 / 379,
  16563. bottom: 0.01
  16564. }
  16565. },
  16566. },
  16567. [
  16568. {
  16569. name: "Normal",
  16570. height: math.unit(6, "feet"),
  16571. default: true
  16572. },
  16573. ]
  16574. ))
  16575. characterMakers.push(() => makeCharacter(
  16576. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16577. {
  16578. front: {
  16579. height: math.unit(6 + 2/12, "feet"),
  16580. weight: math.unit(135, "lb"),
  16581. name: "Front",
  16582. image: {
  16583. source: "./media/characters/ignatius/front.svg",
  16584. extra: 1380/1259,
  16585. bottom: 27/1407
  16586. }
  16587. },
  16588. },
  16589. [
  16590. {
  16591. name: "Normal",
  16592. height: math.unit(6 + 2/12, "feet"),
  16593. default: true
  16594. },
  16595. ]
  16596. ))
  16597. characterMakers.push(() => makeCharacter(
  16598. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16599. {
  16600. front: {
  16601. height: math.unit(6 + 2 / 12, "feet"),
  16602. weight: math.unit(138, "lb"),
  16603. name: "Front",
  16604. image: {
  16605. source: "./media/characters/mei-li/front.svg",
  16606. extra: 237 / 229,
  16607. bottom: 0.03
  16608. }
  16609. },
  16610. },
  16611. [
  16612. {
  16613. name: "Normal",
  16614. height: math.unit(6 + 2 / 12, "feet"),
  16615. default: true
  16616. },
  16617. ]
  16618. ))
  16619. characterMakers.push(() => makeCharacter(
  16620. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16621. {
  16622. front: {
  16623. height: math.unit(2 + 4 / 12, "feet"),
  16624. weight: math.unit(62, "lb"),
  16625. name: "Front",
  16626. image: {
  16627. source: "./media/characters/puru/front.svg",
  16628. extra: 206 / 149,
  16629. bottom: 0.06
  16630. }
  16631. },
  16632. },
  16633. [
  16634. {
  16635. name: "Normal",
  16636. height: math.unit(2 + 4 / 12, "feet"),
  16637. default: true
  16638. },
  16639. ]
  16640. ))
  16641. characterMakers.push(() => makeCharacter(
  16642. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16643. {
  16644. anthro: {
  16645. height: math.unit(5 + 8/12, "feet"),
  16646. weight: math.unit(200, "lb"),
  16647. energyNeed: math.unit(2000, "kcal"),
  16648. name: "Anthro",
  16649. image: {
  16650. source: "./media/characters/kee/anthro.svg",
  16651. extra: 3251/3184,
  16652. bottom: 250/3501
  16653. }
  16654. },
  16655. taur: {
  16656. height: math.unit(11, "feet"),
  16657. weight: math.unit(500, "lb"),
  16658. energyNeed: math.unit(5000, "kcal"),
  16659. name: "Taur",
  16660. image: {
  16661. source: "./media/characters/kee/taur.svg",
  16662. extra: 1362/1320,
  16663. bottom: 83/1445
  16664. }
  16665. },
  16666. },
  16667. [
  16668. {
  16669. name: "Normal",
  16670. height: math.unit(5 + 8/12, "feet"),
  16671. default: true
  16672. },
  16673. {
  16674. name: "Macro",
  16675. height: math.unit(35, "feet")
  16676. },
  16677. ]
  16678. ))
  16679. characterMakers.push(() => makeCharacter(
  16680. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16681. {
  16682. anthro: {
  16683. height: math.unit(7, "feet"),
  16684. weight: math.unit(190, "lb"),
  16685. name: "Anthro",
  16686. image: {
  16687. source: "./media/characters/cobalt-dracha/anthro.svg",
  16688. extra: 231 / 225,
  16689. bottom: 0.04
  16690. }
  16691. },
  16692. feral: {
  16693. height: math.unit(9 + 7 / 12, "feet"),
  16694. weight: math.unit(294, "lb"),
  16695. name: "Feral",
  16696. image: {
  16697. source: "./media/characters/cobalt-dracha/feral.svg",
  16698. extra: 692 / 633,
  16699. bottom: 0.05
  16700. }
  16701. },
  16702. },
  16703. [
  16704. {
  16705. name: "Normal",
  16706. height: math.unit(7, "feet"),
  16707. default: true
  16708. },
  16709. ]
  16710. ))
  16711. characterMakers.push(() => makeCharacter(
  16712. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16713. {
  16714. fallen: {
  16715. height: math.unit(11 + 8 / 12, "feet"),
  16716. weight: math.unit(485, "lb"),
  16717. name: "Java (Fallen)",
  16718. rename: true,
  16719. image: {
  16720. source: "./media/characters/java/fallen.svg",
  16721. extra: 226 / 208,
  16722. bottom: 0.005
  16723. }
  16724. },
  16725. godkin: {
  16726. height: math.unit(10 + 6 / 12, "feet"),
  16727. weight: math.unit(328, "lb"),
  16728. name: "Java (Godkin)",
  16729. rename: true,
  16730. image: {
  16731. source: "./media/characters/java/godkin.svg",
  16732. extra: 1104/1068,
  16733. bottom: 36/1140
  16734. }
  16735. },
  16736. },
  16737. [
  16738. {
  16739. name: "Normal",
  16740. height: math.unit(11 + 8 / 12, "feet"),
  16741. default: true
  16742. },
  16743. ]
  16744. ))
  16745. characterMakers.push(() => makeCharacter(
  16746. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16747. {
  16748. front: {
  16749. height: math.unit(5 + 9 / 12, "feet"),
  16750. weight: math.unit(170, "lb"),
  16751. name: "Front",
  16752. image: {
  16753. source: "./media/characters/purna/front.svg",
  16754. extra: 239 / 229,
  16755. bottom: 0.01
  16756. }
  16757. },
  16758. },
  16759. [
  16760. {
  16761. name: "Normal",
  16762. height: math.unit(5 + 9 / 12, "feet"),
  16763. default: true
  16764. },
  16765. ]
  16766. ))
  16767. characterMakers.push(() => makeCharacter(
  16768. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16769. {
  16770. front: {
  16771. height: math.unit(5 + 9 / 12, "feet"),
  16772. weight: math.unit(142, "lb"),
  16773. name: "Front",
  16774. image: {
  16775. source: "./media/characters/kuva/front.svg",
  16776. extra: 281 / 271,
  16777. bottom: 0.006
  16778. }
  16779. },
  16780. },
  16781. [
  16782. {
  16783. name: "Normal",
  16784. height: math.unit(5 + 9 / 12, "feet"),
  16785. default: true
  16786. },
  16787. ]
  16788. ))
  16789. characterMakers.push(() => makeCharacter(
  16790. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16791. {
  16792. anthro: {
  16793. height: math.unit(9 + 2 / 12, "feet"),
  16794. weight: math.unit(270, "lb"),
  16795. name: "Anthro",
  16796. image: {
  16797. source: "./media/characters/embra/anthro.svg",
  16798. extra: 200 / 187,
  16799. bottom: 0.02
  16800. }
  16801. },
  16802. feral: {
  16803. height: math.unit(18 + 8 / 12, "feet"),
  16804. weight: math.unit(576, "lb"),
  16805. name: "Feral",
  16806. image: {
  16807. source: "./media/characters/embra/feral.svg",
  16808. extra: 152 / 137,
  16809. bottom: 0.037
  16810. }
  16811. },
  16812. },
  16813. [
  16814. {
  16815. name: "Normal",
  16816. height: math.unit(9 + 2 / 12, "feet"),
  16817. default: true
  16818. },
  16819. ]
  16820. ))
  16821. characterMakers.push(() => makeCharacter(
  16822. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16823. {
  16824. anthro: {
  16825. height: math.unit(10 + 9 / 12, "feet"),
  16826. weight: math.unit(224, "lb"),
  16827. name: "Anthro",
  16828. image: {
  16829. source: "./media/characters/grottos/anthro.svg",
  16830. extra: 350 / 332,
  16831. bottom: 0.045
  16832. }
  16833. },
  16834. feral: {
  16835. height: math.unit(20 + 7 / 12, "feet"),
  16836. weight: math.unit(629, "lb"),
  16837. name: "Feral",
  16838. image: {
  16839. source: "./media/characters/grottos/feral.svg",
  16840. extra: 207 / 190,
  16841. bottom: 0.05
  16842. }
  16843. },
  16844. },
  16845. [
  16846. {
  16847. name: "Normal",
  16848. height: math.unit(10 + 9 / 12, "feet"),
  16849. default: true
  16850. },
  16851. ]
  16852. ))
  16853. characterMakers.push(() => makeCharacter(
  16854. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16855. {
  16856. anthro: {
  16857. height: math.unit(9 + 6 / 12, "feet"),
  16858. weight: math.unit(298, "lb"),
  16859. name: "Anthro",
  16860. image: {
  16861. source: "./media/characters/frifna/anthro.svg",
  16862. extra: 282 / 269,
  16863. bottom: 0.015
  16864. }
  16865. },
  16866. feral: {
  16867. height: math.unit(16 + 2 / 12, "feet"),
  16868. weight: math.unit(624, "lb"),
  16869. name: "Feral",
  16870. image: {
  16871. source: "./media/characters/frifna/feral.svg"
  16872. }
  16873. },
  16874. },
  16875. [
  16876. {
  16877. name: "Normal",
  16878. height: math.unit(9 + 6 / 12, "feet"),
  16879. default: true
  16880. },
  16881. ]
  16882. ))
  16883. characterMakers.push(() => makeCharacter(
  16884. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16885. {
  16886. front: {
  16887. height: math.unit(6 + 2 / 12, "feet"),
  16888. weight: math.unit(168, "lb"),
  16889. name: "Front",
  16890. image: {
  16891. source: "./media/characters/elise/front.svg",
  16892. extra: 276 / 271
  16893. }
  16894. },
  16895. },
  16896. [
  16897. {
  16898. name: "Normal",
  16899. height: math.unit(6 + 2 / 12, "feet"),
  16900. default: true
  16901. },
  16902. ]
  16903. ))
  16904. characterMakers.push(() => makeCharacter(
  16905. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16906. {
  16907. front: {
  16908. height: math.unit(5 + 10 / 12, "feet"),
  16909. weight: math.unit(210, "lb"),
  16910. name: "Front",
  16911. image: {
  16912. source: "./media/characters/glade/front.svg",
  16913. extra: 258 / 247,
  16914. bottom: 0.008
  16915. }
  16916. },
  16917. },
  16918. [
  16919. {
  16920. name: "Normal",
  16921. height: math.unit(5 + 10 / 12, "feet"),
  16922. default: true
  16923. },
  16924. ]
  16925. ))
  16926. characterMakers.push(() => makeCharacter(
  16927. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16928. {
  16929. front: {
  16930. height: math.unit(5 + 10 / 12, "feet"),
  16931. weight: math.unit(129, "lb"),
  16932. name: "Front",
  16933. image: {
  16934. source: "./media/characters/rina/front.svg",
  16935. extra: 266 / 255,
  16936. bottom: 0.005
  16937. }
  16938. },
  16939. },
  16940. [
  16941. {
  16942. name: "Normal",
  16943. height: math.unit(5 + 10 / 12, "feet"),
  16944. default: true
  16945. },
  16946. ]
  16947. ))
  16948. characterMakers.push(() => makeCharacter(
  16949. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16950. {
  16951. front: {
  16952. height: math.unit(6 + 1 / 12, "feet"),
  16953. weight: math.unit(192, "lb"),
  16954. name: "Front",
  16955. image: {
  16956. source: "./media/characters/veronica/front.svg",
  16957. extra: 319 / 309,
  16958. bottom: 0.005
  16959. }
  16960. },
  16961. },
  16962. [
  16963. {
  16964. name: "Normal",
  16965. height: math.unit(6 + 1 / 12, "feet"),
  16966. default: true
  16967. },
  16968. ]
  16969. ))
  16970. characterMakers.push(() => makeCharacter(
  16971. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16972. {
  16973. front: {
  16974. height: math.unit(9 + 3 / 12, "feet"),
  16975. weight: math.unit(1100, "lb"),
  16976. name: "Front",
  16977. image: {
  16978. source: "./media/characters/braxton/front.svg",
  16979. extra: 1057 / 984,
  16980. bottom: 0.05
  16981. }
  16982. },
  16983. },
  16984. [
  16985. {
  16986. name: "Normal",
  16987. height: math.unit(9 + 3 / 12, "feet")
  16988. },
  16989. {
  16990. name: "Giant",
  16991. height: math.unit(300, "feet"),
  16992. default: true
  16993. },
  16994. {
  16995. name: "Macro",
  16996. height: math.unit(700, "feet")
  16997. },
  16998. {
  16999. name: "Megamacro",
  17000. height: math.unit(6000, "feet")
  17001. },
  17002. ]
  17003. ))
  17004. characterMakers.push(() => makeCharacter(
  17005. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17006. {
  17007. front: {
  17008. height: math.unit(6 + 7 / 12, "feet"),
  17009. weight: math.unit(150, "lb"),
  17010. name: "Front",
  17011. image: {
  17012. source: "./media/characters/blue-feyonics/front.svg",
  17013. extra: 1403 / 1306,
  17014. bottom: 0.047
  17015. }
  17016. },
  17017. },
  17018. [
  17019. {
  17020. name: "Normal",
  17021. height: math.unit(6 + 7 / 12, "feet"),
  17022. default: true
  17023. },
  17024. ]
  17025. ))
  17026. characterMakers.push(() => makeCharacter(
  17027. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17028. {
  17029. front: {
  17030. height: math.unit(1.8, "meters"),
  17031. weight: math.unit(60, "kg"),
  17032. name: "Front",
  17033. image: {
  17034. source: "./media/characters/maxwell/front.svg",
  17035. extra: 2060 / 1873
  17036. }
  17037. },
  17038. },
  17039. [
  17040. {
  17041. name: "Micro",
  17042. height: math.unit(1, "mm")
  17043. },
  17044. {
  17045. name: "Normal",
  17046. height: math.unit(1.8, "meter"),
  17047. default: true
  17048. },
  17049. {
  17050. name: "Macro",
  17051. height: math.unit(30, "meters")
  17052. },
  17053. {
  17054. name: "Megamacro",
  17055. height: math.unit(10, "km")
  17056. },
  17057. ]
  17058. ))
  17059. characterMakers.push(() => makeCharacter(
  17060. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17061. {
  17062. front: {
  17063. height: math.unit(6, "feet"),
  17064. weight: math.unit(150, "lb"),
  17065. name: "Front",
  17066. image: {
  17067. source: "./media/characters/jack/front.svg",
  17068. extra: 1754 / 1640,
  17069. bottom: 0.01
  17070. }
  17071. },
  17072. },
  17073. [
  17074. {
  17075. name: "Normal",
  17076. height: math.unit(80000, "feet"),
  17077. default: true
  17078. },
  17079. {
  17080. name: "Max size",
  17081. height: math.unit(10, "lightyears")
  17082. },
  17083. ]
  17084. ))
  17085. characterMakers.push(() => makeCharacter(
  17086. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17087. {
  17088. urban: {
  17089. height: math.unit(5, "feet"),
  17090. weight: math.unit(240, "lb"),
  17091. name: "Urban",
  17092. image: {
  17093. source: "./media/characters/cafat/urban.svg",
  17094. extra: 1223/1126,
  17095. bottom: 205/1428
  17096. }
  17097. },
  17098. summer: {
  17099. height: math.unit(5, "feet"),
  17100. weight: math.unit(240, "lb"),
  17101. name: "Summer",
  17102. image: {
  17103. source: "./media/characters/cafat/summer.svg",
  17104. extra: 1223/1126,
  17105. bottom: 205/1428
  17106. }
  17107. },
  17108. winter: {
  17109. height: math.unit(5, "feet"),
  17110. weight: math.unit(240, "lb"),
  17111. name: "Winter",
  17112. image: {
  17113. source: "./media/characters/cafat/winter.svg",
  17114. extra: 1223/1126,
  17115. bottom: 205/1428
  17116. }
  17117. },
  17118. lingerie: {
  17119. height: math.unit(5, "feet"),
  17120. weight: math.unit(240, "lb"),
  17121. name: "Lingerie",
  17122. image: {
  17123. source: "./media/characters/cafat/lingerie.svg",
  17124. extra: 1223/1126,
  17125. bottom: 205/1428
  17126. }
  17127. },
  17128. upright: {
  17129. height: math.unit(6.3, "feet"),
  17130. weight: math.unit(240, "lb"),
  17131. name: "Upright",
  17132. image: {
  17133. source: "./media/characters/cafat/upright.svg",
  17134. bottom: 0.01
  17135. }
  17136. },
  17137. uprightFull: {
  17138. height: math.unit(6.3, "feet"),
  17139. weight: math.unit(240, "lb"),
  17140. name: "Upright (Full)",
  17141. image: {
  17142. source: "./media/characters/cafat/upright-full.svg",
  17143. bottom: 0.01
  17144. }
  17145. },
  17146. },
  17147. [
  17148. {
  17149. name: "Small",
  17150. height: math.unit(5, "feet"),
  17151. default: true
  17152. },
  17153. {
  17154. name: "Large",
  17155. height: math.unit(13, "feet")
  17156. },
  17157. ]
  17158. ))
  17159. characterMakers.push(() => makeCharacter(
  17160. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17161. {
  17162. front: {
  17163. height: math.unit(6, "feet"),
  17164. weight: math.unit(150, "lb"),
  17165. name: "Front",
  17166. image: {
  17167. source: "./media/characters/verin-raharra/front.svg",
  17168. extra: 5019 / 4835,
  17169. bottom: 0.023
  17170. }
  17171. },
  17172. },
  17173. [
  17174. {
  17175. name: "Normal",
  17176. height: math.unit(7 + 5 / 12, "feet"),
  17177. default: true
  17178. },
  17179. {
  17180. name: "Upsized",
  17181. height: math.unit(20, "feet")
  17182. },
  17183. ]
  17184. ))
  17185. characterMakers.push(() => makeCharacter(
  17186. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17187. {
  17188. front: {
  17189. height: math.unit(7, "feet"),
  17190. weight: math.unit(230, "lb"),
  17191. name: "Front",
  17192. image: {
  17193. source: "./media/characters/nakata/front.svg",
  17194. extra: 1.005,
  17195. bottom: 0.01
  17196. }
  17197. },
  17198. },
  17199. [
  17200. {
  17201. name: "Normal",
  17202. height: math.unit(7, "feet"),
  17203. default: true
  17204. },
  17205. {
  17206. name: "Big",
  17207. height: math.unit(14, "feet")
  17208. },
  17209. {
  17210. name: "Macro",
  17211. height: math.unit(400, "feet")
  17212. },
  17213. ]
  17214. ))
  17215. characterMakers.push(() => makeCharacter(
  17216. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17217. {
  17218. front: {
  17219. height: math.unit(4.91, "feet"),
  17220. weight: math.unit(100, "lb"),
  17221. name: "Front",
  17222. image: {
  17223. source: "./media/characters/lily/front.svg",
  17224. extra: 1585 / 1415,
  17225. bottom: 0.02
  17226. }
  17227. },
  17228. },
  17229. [
  17230. {
  17231. name: "Normal",
  17232. height: math.unit(4.91, "feet"),
  17233. default: true
  17234. },
  17235. ]
  17236. ))
  17237. characterMakers.push(() => makeCharacter(
  17238. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17239. {
  17240. laying: {
  17241. height: math.unit(4 + 4 / 12, "feet"),
  17242. weight: math.unit(600, "lb"),
  17243. name: "Laying",
  17244. image: {
  17245. source: "./media/characters/sheila/laying.svg",
  17246. extra: 1333 / 1265,
  17247. bottom: 0.16
  17248. }
  17249. },
  17250. },
  17251. [
  17252. {
  17253. name: "Normal",
  17254. height: math.unit(4 + 4 / 12, "feet"),
  17255. default: true
  17256. },
  17257. ]
  17258. ))
  17259. characterMakers.push(() => makeCharacter(
  17260. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17261. {
  17262. front: {
  17263. height: math.unit(6, "feet"),
  17264. weight: math.unit(190, "lb"),
  17265. name: "Front",
  17266. image: {
  17267. source: "./media/characters/sax/front.svg",
  17268. extra: 1187 / 973,
  17269. bottom: 0.042
  17270. }
  17271. },
  17272. },
  17273. [
  17274. {
  17275. name: "Micro",
  17276. height: math.unit(4, "inches"),
  17277. default: true
  17278. },
  17279. ]
  17280. ))
  17281. characterMakers.push(() => makeCharacter(
  17282. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17283. {
  17284. front: {
  17285. height: math.unit(6, "feet"),
  17286. weight: math.unit(150, "lb"),
  17287. name: "Front",
  17288. image: {
  17289. source: "./media/characters/pandora/front.svg",
  17290. extra: 2720 / 2556,
  17291. bottom: 0.015
  17292. }
  17293. },
  17294. back: {
  17295. height: math.unit(6, "feet"),
  17296. weight: math.unit(150, "lb"),
  17297. name: "Back",
  17298. image: {
  17299. source: "./media/characters/pandora/back.svg",
  17300. extra: 2720 / 2556,
  17301. bottom: 0.01
  17302. }
  17303. },
  17304. beans: {
  17305. height: math.unit(6 / 8, "feet"),
  17306. name: "Beans",
  17307. image: {
  17308. source: "./media/characters/pandora/beans.svg"
  17309. }
  17310. },
  17311. collar: {
  17312. height: math.unit(0.31, "feet"),
  17313. name: "Collar",
  17314. image: {
  17315. source: "./media/characters/pandora/collar.svg"
  17316. }
  17317. },
  17318. skirt: {
  17319. height: math.unit(6, "feet"),
  17320. weight: math.unit(150, "lb"),
  17321. name: "Skirt",
  17322. image: {
  17323. source: "./media/characters/pandora/skirt.svg",
  17324. extra: 1622 / 1525,
  17325. bottom: 0.015
  17326. }
  17327. },
  17328. hoodie: {
  17329. height: math.unit(6, "feet"),
  17330. weight: math.unit(150, "lb"),
  17331. name: "Hoodie",
  17332. image: {
  17333. source: "./media/characters/pandora/hoodie.svg",
  17334. extra: 1622 / 1525,
  17335. bottom: 0.015
  17336. }
  17337. },
  17338. casual: {
  17339. height: math.unit(6, "feet"),
  17340. weight: math.unit(150, "lb"),
  17341. name: "Casual",
  17342. image: {
  17343. source: "./media/characters/pandora/casual.svg",
  17344. extra: 1622 / 1525,
  17345. bottom: 0.015
  17346. }
  17347. },
  17348. },
  17349. [
  17350. {
  17351. name: "Normal",
  17352. height: math.unit(6, "feet")
  17353. },
  17354. {
  17355. name: "Big Steppy",
  17356. height: math.unit(1, "km"),
  17357. default: true
  17358. },
  17359. {
  17360. name: "Galactic Steppy",
  17361. height: math.unit(2, "gigameters")
  17362. },
  17363. ]
  17364. ))
  17365. characterMakers.push(() => makeCharacter(
  17366. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17367. {
  17368. side: {
  17369. height: math.unit(10, "feet"),
  17370. weight: math.unit(800, "kg"),
  17371. name: "Side",
  17372. image: {
  17373. source: "./media/characters/venio-darcony/side.svg",
  17374. extra: 1373 / 1003,
  17375. bottom: 0.037
  17376. }
  17377. },
  17378. front: {
  17379. height: math.unit(19, "feet"),
  17380. weight: math.unit(800, "kg"),
  17381. name: "Front",
  17382. image: {
  17383. source: "./media/characters/venio-darcony/front.svg"
  17384. }
  17385. },
  17386. back: {
  17387. height: math.unit(19, "feet"),
  17388. weight: math.unit(800, "kg"),
  17389. name: "Back",
  17390. image: {
  17391. source: "./media/characters/venio-darcony/back.svg"
  17392. }
  17393. },
  17394. sideNsfw: {
  17395. height: math.unit(10, "feet"),
  17396. weight: math.unit(800, "kg"),
  17397. name: "Side (NSFW)",
  17398. image: {
  17399. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17400. extra: 1373 / 1003,
  17401. bottom: 0.037
  17402. }
  17403. },
  17404. frontNsfw: {
  17405. height: math.unit(19, "feet"),
  17406. weight: math.unit(800, "kg"),
  17407. name: "Front (NSFW)",
  17408. image: {
  17409. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17410. }
  17411. },
  17412. backNsfw: {
  17413. height: math.unit(19, "feet"),
  17414. weight: math.unit(800, "kg"),
  17415. name: "Back (NSFW)",
  17416. image: {
  17417. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17418. }
  17419. },
  17420. sideArmored: {
  17421. height: math.unit(10, "feet"),
  17422. weight: math.unit(800, "kg"),
  17423. name: "Side (Armored)",
  17424. image: {
  17425. source: "./media/characters/venio-darcony/side-armored.svg",
  17426. extra: 1373 / 1003,
  17427. bottom: 0.037
  17428. }
  17429. },
  17430. frontArmored: {
  17431. height: math.unit(19, "feet"),
  17432. weight: math.unit(900, "kg"),
  17433. name: "Front (Armored)",
  17434. image: {
  17435. source: "./media/characters/venio-darcony/front-armored.svg"
  17436. }
  17437. },
  17438. backArmored: {
  17439. height: math.unit(19, "feet"),
  17440. weight: math.unit(900, "kg"),
  17441. name: "Back (Armored)",
  17442. image: {
  17443. source: "./media/characters/venio-darcony/back-armored.svg"
  17444. }
  17445. },
  17446. sword: {
  17447. height: math.unit(10, "feet"),
  17448. weight: math.unit(50, "lb"),
  17449. name: "Sword",
  17450. image: {
  17451. source: "./media/characters/venio-darcony/sword.svg"
  17452. }
  17453. },
  17454. },
  17455. [
  17456. {
  17457. name: "Normal",
  17458. height: math.unit(10, "feet")
  17459. },
  17460. {
  17461. name: "Macro",
  17462. height: math.unit(130, "feet"),
  17463. default: true
  17464. },
  17465. {
  17466. name: "Macro+",
  17467. height: math.unit(240, "feet")
  17468. },
  17469. ]
  17470. ))
  17471. characterMakers.push(() => makeCharacter(
  17472. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17473. {
  17474. front: {
  17475. height: math.unit(6, "feet"),
  17476. weight: math.unit(150, "lb"),
  17477. name: "Front",
  17478. image: {
  17479. source: "./media/characters/veski/front.svg",
  17480. extra: 1299 / 1225,
  17481. bottom: 0.04
  17482. }
  17483. },
  17484. back: {
  17485. height: math.unit(6, "feet"),
  17486. weight: math.unit(150, "lb"),
  17487. name: "Back",
  17488. image: {
  17489. source: "./media/characters/veski/back.svg",
  17490. extra: 1299 / 1225,
  17491. bottom: 0.008
  17492. }
  17493. },
  17494. maw: {
  17495. height: math.unit(1.5 * 1.21, "feet"),
  17496. name: "Maw",
  17497. image: {
  17498. source: "./media/characters/veski/maw.svg"
  17499. }
  17500. },
  17501. },
  17502. [
  17503. {
  17504. name: "Macro",
  17505. height: math.unit(2, "km"),
  17506. default: true
  17507. },
  17508. ]
  17509. ))
  17510. characterMakers.push(() => makeCharacter(
  17511. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17512. {
  17513. front: {
  17514. height: math.unit(5 + 7 / 12, "feet"),
  17515. name: "Front",
  17516. image: {
  17517. source: "./media/characters/isabelle/front.svg",
  17518. extra: 2130 / 1976,
  17519. bottom: 0.05
  17520. }
  17521. },
  17522. },
  17523. [
  17524. {
  17525. name: "Supermicro",
  17526. height: math.unit(10, "micrometers")
  17527. },
  17528. {
  17529. name: "Micro",
  17530. height: math.unit(1, "inch")
  17531. },
  17532. {
  17533. name: "Tiny",
  17534. height: math.unit(5, "inches")
  17535. },
  17536. {
  17537. name: "Standard",
  17538. height: math.unit(5 + 7 / 12, "inches")
  17539. },
  17540. {
  17541. name: "Macro",
  17542. height: math.unit(80, "meters"),
  17543. default: true
  17544. },
  17545. {
  17546. name: "Megamacro",
  17547. height: math.unit(250, "meters")
  17548. },
  17549. {
  17550. name: "Gigamacro",
  17551. height: math.unit(5, "km")
  17552. },
  17553. {
  17554. name: "Cosmic",
  17555. height: math.unit(2.5e6, "miles")
  17556. },
  17557. ]
  17558. ))
  17559. characterMakers.push(() => makeCharacter(
  17560. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17561. {
  17562. front: {
  17563. height: math.unit(6, "feet"),
  17564. weight: math.unit(150, "lb"),
  17565. name: "Front",
  17566. image: {
  17567. source: "./media/characters/hanzo/front.svg",
  17568. extra: 374 / 344,
  17569. bottom: 0.02
  17570. }
  17571. },
  17572. },
  17573. [
  17574. {
  17575. name: "Normal",
  17576. height: math.unit(8, "feet"),
  17577. default: true
  17578. },
  17579. ]
  17580. ))
  17581. characterMakers.push(() => makeCharacter(
  17582. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17583. {
  17584. front: {
  17585. height: math.unit(7, "feet"),
  17586. weight: math.unit(130, "lb"),
  17587. name: "Front",
  17588. image: {
  17589. source: "./media/characters/anna/front.svg",
  17590. extra: 169 / 145,
  17591. bottom: 0.06
  17592. }
  17593. },
  17594. full: {
  17595. height: math.unit(4.96, "feet"),
  17596. weight: math.unit(220, "lb"),
  17597. name: "Full",
  17598. image: {
  17599. source: "./media/characters/anna/full.svg",
  17600. extra: 138 / 114,
  17601. bottom: 0.15
  17602. }
  17603. },
  17604. tongue: {
  17605. height: math.unit(2.53, "feet"),
  17606. name: "Tongue",
  17607. image: {
  17608. source: "./media/characters/anna/tongue.svg"
  17609. }
  17610. },
  17611. },
  17612. [
  17613. {
  17614. name: "Normal",
  17615. height: math.unit(7, "feet"),
  17616. default: true
  17617. },
  17618. ]
  17619. ))
  17620. characterMakers.push(() => makeCharacter(
  17621. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17622. {
  17623. front: {
  17624. height: math.unit(7, "feet"),
  17625. weight: math.unit(150, "lb"),
  17626. name: "Front",
  17627. image: {
  17628. source: "./media/characters/ian-corvid/front.svg",
  17629. extra: 150 / 142,
  17630. bottom: 0.02
  17631. }
  17632. },
  17633. back: {
  17634. height: math.unit(7, "feet"),
  17635. weight: math.unit(150, "lb"),
  17636. name: "Back",
  17637. image: {
  17638. source: "./media/characters/ian-corvid/back.svg",
  17639. extra: 150 / 143,
  17640. bottom: 0.01
  17641. }
  17642. },
  17643. stomping: {
  17644. height: math.unit(7, "feet"),
  17645. weight: math.unit(150, "lb"),
  17646. name: "Stomping",
  17647. image: {
  17648. source: "./media/characters/ian-corvid/stomping.svg",
  17649. extra: 76 / 72
  17650. }
  17651. },
  17652. sitting: {
  17653. height: math.unit(7 / 1.8, "feet"),
  17654. weight: math.unit(150, "lb"),
  17655. name: "Sitting",
  17656. image: {
  17657. source: "./media/characters/ian-corvid/sitting.svg",
  17658. extra: 1400 / 1269,
  17659. bottom: 0.15
  17660. }
  17661. },
  17662. },
  17663. [
  17664. {
  17665. name: "Tiny Microw",
  17666. height: math.unit(1, "inch")
  17667. },
  17668. {
  17669. name: "Microw",
  17670. height: math.unit(6, "inches")
  17671. },
  17672. {
  17673. name: "Crow",
  17674. height: math.unit(7 + 1 / 12, "feet"),
  17675. default: true
  17676. },
  17677. {
  17678. name: "Macrow",
  17679. height: math.unit(176, "feet")
  17680. },
  17681. ]
  17682. ))
  17683. characterMakers.push(() => makeCharacter(
  17684. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17685. {
  17686. front: {
  17687. height: math.unit(5 + 7 / 12, "feet"),
  17688. weight: math.unit(147, "lb"),
  17689. name: "Front",
  17690. image: {
  17691. source: "./media/characters/natalie-kellon/front.svg",
  17692. extra: 1214 / 1141,
  17693. bottom: 0.02
  17694. }
  17695. },
  17696. },
  17697. [
  17698. {
  17699. name: "Micro",
  17700. height: math.unit(1 / 16, "inch")
  17701. },
  17702. {
  17703. name: "Tiny",
  17704. height: math.unit(4, "inches")
  17705. },
  17706. {
  17707. name: "Normal",
  17708. height: math.unit(5 + 7 / 12, "feet"),
  17709. default: true
  17710. },
  17711. {
  17712. name: "Amazon",
  17713. height: math.unit(12, "feet")
  17714. },
  17715. {
  17716. name: "Giantess",
  17717. height: math.unit(160, "meters")
  17718. },
  17719. {
  17720. name: "Titaness",
  17721. height: math.unit(800, "meters")
  17722. },
  17723. ]
  17724. ))
  17725. characterMakers.push(() => makeCharacter(
  17726. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17727. {
  17728. front: {
  17729. height: math.unit(6, "feet"),
  17730. weight: math.unit(150, "lb"),
  17731. name: "Front",
  17732. image: {
  17733. source: "./media/characters/alluria/front.svg",
  17734. extra: 806 / 738,
  17735. bottom: 0.01
  17736. }
  17737. },
  17738. side: {
  17739. height: math.unit(6, "feet"),
  17740. weight: math.unit(150, "lb"),
  17741. name: "Side",
  17742. image: {
  17743. source: "./media/characters/alluria/side.svg",
  17744. extra: 800 / 750,
  17745. }
  17746. },
  17747. back: {
  17748. height: math.unit(6, "feet"),
  17749. weight: math.unit(150, "lb"),
  17750. name: "Back",
  17751. image: {
  17752. source: "./media/characters/alluria/back.svg",
  17753. extra: 806 / 738,
  17754. }
  17755. },
  17756. frontMaid: {
  17757. height: math.unit(6, "feet"),
  17758. weight: math.unit(150, "lb"),
  17759. name: "Front (Maid)",
  17760. image: {
  17761. source: "./media/characters/alluria/front-maid.svg",
  17762. extra: 806 / 738,
  17763. bottom: 0.01
  17764. }
  17765. },
  17766. sideMaid: {
  17767. height: math.unit(6, "feet"),
  17768. weight: math.unit(150, "lb"),
  17769. name: "Side (Maid)",
  17770. image: {
  17771. source: "./media/characters/alluria/side-maid.svg",
  17772. extra: 800 / 750,
  17773. bottom: 0.005
  17774. }
  17775. },
  17776. backMaid: {
  17777. height: math.unit(6, "feet"),
  17778. weight: math.unit(150, "lb"),
  17779. name: "Back (Maid)",
  17780. image: {
  17781. source: "./media/characters/alluria/back-maid.svg",
  17782. extra: 806 / 738,
  17783. }
  17784. },
  17785. },
  17786. [
  17787. {
  17788. name: "Micro",
  17789. height: math.unit(6, "inches"),
  17790. default: true
  17791. },
  17792. ]
  17793. ))
  17794. characterMakers.push(() => makeCharacter(
  17795. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17796. {
  17797. front: {
  17798. height: math.unit(6, "feet"),
  17799. weight: math.unit(150, "lb"),
  17800. name: "Front",
  17801. image: {
  17802. source: "./media/characters/kyle/front.svg",
  17803. extra: 1069 / 962,
  17804. bottom: 77.228 / 1727.45
  17805. }
  17806. },
  17807. },
  17808. [
  17809. {
  17810. name: "Macro",
  17811. height: math.unit(150, "feet"),
  17812. default: true
  17813. },
  17814. ]
  17815. ))
  17816. characterMakers.push(() => makeCharacter(
  17817. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17818. {
  17819. front: {
  17820. height: math.unit(6, "feet"),
  17821. weight: math.unit(300, "lb"),
  17822. name: "Front",
  17823. image: {
  17824. source: "./media/characters/duncan/front.svg",
  17825. extra: 1650 / 1482,
  17826. bottom: 0.05
  17827. }
  17828. },
  17829. },
  17830. [
  17831. {
  17832. name: "Macro",
  17833. height: math.unit(100, "feet"),
  17834. default: true
  17835. },
  17836. ]
  17837. ))
  17838. characterMakers.push(() => makeCharacter(
  17839. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17840. {
  17841. front: {
  17842. height: math.unit(5 + 4 / 12, "feet"),
  17843. weight: math.unit(220, "lb"),
  17844. name: "Front",
  17845. image: {
  17846. source: "./media/characters/memory/front.svg",
  17847. extra: 3641 / 3545,
  17848. bottom: 0.03
  17849. }
  17850. },
  17851. back: {
  17852. height: math.unit(5 + 4 / 12, "feet"),
  17853. weight: math.unit(220, "lb"),
  17854. name: "Back",
  17855. image: {
  17856. source: "./media/characters/memory/back.svg",
  17857. extra: 3641 / 3545,
  17858. bottom: 0.025
  17859. }
  17860. },
  17861. frontSkirt: {
  17862. height: math.unit(5 + 4 / 12, "feet"),
  17863. weight: math.unit(220, "lb"),
  17864. name: "Front (Skirt)",
  17865. image: {
  17866. source: "./media/characters/memory/front-skirt.svg",
  17867. extra: 3641 / 3545,
  17868. bottom: 0.03
  17869. }
  17870. },
  17871. frontDress: {
  17872. height: math.unit(5 + 4 / 12, "feet"),
  17873. weight: math.unit(220, "lb"),
  17874. name: "Front (Dress)",
  17875. image: {
  17876. source: "./media/characters/memory/front-dress.svg",
  17877. extra: 3641 / 3545,
  17878. bottom: 0.03
  17879. }
  17880. },
  17881. },
  17882. [
  17883. {
  17884. name: "Micro",
  17885. height: math.unit(6, "inches"),
  17886. default: true
  17887. },
  17888. {
  17889. name: "Normal",
  17890. height: math.unit(5 + 4 / 12, "feet")
  17891. },
  17892. ]
  17893. ))
  17894. characterMakers.push(() => makeCharacter(
  17895. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17896. {
  17897. front: {
  17898. height: math.unit(4 + 11 / 12, "feet"),
  17899. weight: math.unit(100, "lb"),
  17900. name: "Front",
  17901. image: {
  17902. source: "./media/characters/luno/front.svg",
  17903. extra: 1535 / 1487,
  17904. bottom: 0.03
  17905. }
  17906. },
  17907. },
  17908. [
  17909. {
  17910. name: "Micro",
  17911. height: math.unit(3, "inches")
  17912. },
  17913. {
  17914. name: "Normal",
  17915. height: math.unit(4 + 11 / 12, "feet"),
  17916. default: true
  17917. },
  17918. {
  17919. name: "Macro",
  17920. height: math.unit(300, "feet")
  17921. },
  17922. {
  17923. name: "Megamacro",
  17924. height: math.unit(700, "miles")
  17925. },
  17926. ]
  17927. ))
  17928. characterMakers.push(() => makeCharacter(
  17929. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17930. {
  17931. front: {
  17932. height: math.unit(6 + 2 / 12, "feet"),
  17933. weight: math.unit(170, "lb"),
  17934. name: "Front",
  17935. image: {
  17936. source: "./media/characters/jamesy/front.svg",
  17937. extra: 440 / 382,
  17938. bottom: 0.005
  17939. }
  17940. },
  17941. },
  17942. [
  17943. {
  17944. name: "Micro",
  17945. height: math.unit(3, "inches")
  17946. },
  17947. {
  17948. name: "Normal",
  17949. height: math.unit(6 + 2 / 12, "feet"),
  17950. default: true
  17951. },
  17952. {
  17953. name: "Macro",
  17954. height: math.unit(300, "feet")
  17955. },
  17956. {
  17957. name: "Megamacro",
  17958. height: math.unit(700, "miles")
  17959. },
  17960. ]
  17961. ))
  17962. characterMakers.push(() => makeCharacter(
  17963. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17964. {
  17965. front: {
  17966. height: math.unit(6, "feet"),
  17967. weight: math.unit(160, "lb"),
  17968. name: "Front",
  17969. image: {
  17970. source: "./media/characters/mark/front.svg",
  17971. extra: 3300 / 3100,
  17972. bottom: 136.42 / 3440.47
  17973. }
  17974. },
  17975. },
  17976. [
  17977. {
  17978. name: "Macro",
  17979. height: math.unit(120, "meters")
  17980. },
  17981. {
  17982. name: "Bigger Macro",
  17983. height: math.unit(350, "meters")
  17984. },
  17985. {
  17986. name: "Megamacro",
  17987. height: math.unit(8, "km"),
  17988. default: true
  17989. },
  17990. {
  17991. name: "Continental",
  17992. height: math.unit(4550, "km")
  17993. },
  17994. {
  17995. name: "Planetary",
  17996. height: math.unit(65000, "km")
  17997. },
  17998. ]
  17999. ))
  18000. characterMakers.push(() => makeCharacter(
  18001. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18002. {
  18003. front: {
  18004. height: math.unit(6, "feet"),
  18005. weight: math.unit(400, "lb"),
  18006. name: "Front",
  18007. image: {
  18008. source: "./media/characters/mac/front.svg",
  18009. extra: 1048 / 987.7,
  18010. bottom: 60 / 1107.6,
  18011. }
  18012. },
  18013. },
  18014. [
  18015. {
  18016. name: "Macro",
  18017. height: math.unit(500, "feet"),
  18018. default: true
  18019. },
  18020. ]
  18021. ))
  18022. characterMakers.push(() => makeCharacter(
  18023. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18024. {
  18025. front: {
  18026. height: math.unit(5 + 2 / 12, "feet"),
  18027. weight: math.unit(190, "lb"),
  18028. name: "Front",
  18029. image: {
  18030. source: "./media/characters/bari/front.svg",
  18031. extra: 3156 / 2880,
  18032. bottom: 0.03
  18033. }
  18034. },
  18035. back: {
  18036. height: math.unit(5 + 2 / 12, "feet"),
  18037. weight: math.unit(190, "lb"),
  18038. name: "Back",
  18039. image: {
  18040. source: "./media/characters/bari/back.svg",
  18041. extra: 3260 / 2834,
  18042. bottom: 0.025
  18043. }
  18044. },
  18045. frontPlush: {
  18046. height: math.unit(5 + 2 / 12, "feet"),
  18047. weight: math.unit(190, "lb"),
  18048. name: "Front (Plush)",
  18049. image: {
  18050. source: "./media/characters/bari/front-plush.svg",
  18051. extra: 1112 / 1061,
  18052. bottom: 0.002
  18053. }
  18054. },
  18055. },
  18056. [
  18057. {
  18058. name: "Micro",
  18059. height: math.unit(3, "inches")
  18060. },
  18061. {
  18062. name: "Normal",
  18063. height: math.unit(5 + 2 / 12, "feet"),
  18064. default: true
  18065. },
  18066. {
  18067. name: "Macro",
  18068. height: math.unit(20, "feet")
  18069. },
  18070. ]
  18071. ))
  18072. characterMakers.push(() => makeCharacter(
  18073. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18074. {
  18075. front: {
  18076. height: math.unit(6 + 1 / 12, "feet"),
  18077. weight: math.unit(275, "lb"),
  18078. name: "Front",
  18079. image: {
  18080. source: "./media/characters/hunter-misha-raven/front.svg"
  18081. }
  18082. },
  18083. },
  18084. [
  18085. {
  18086. name: "Mortal",
  18087. height: math.unit(6 + 1 / 12, "feet")
  18088. },
  18089. {
  18090. name: "Divine",
  18091. height: math.unit(1.12134e34, "parsecs"),
  18092. default: true
  18093. },
  18094. ]
  18095. ))
  18096. characterMakers.push(() => makeCharacter(
  18097. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18098. {
  18099. front: {
  18100. height: math.unit(6 + 3 / 12, "feet"),
  18101. weight: math.unit(220, "lb"),
  18102. name: "Front",
  18103. image: {
  18104. source: "./media/characters/max-calore/front.svg",
  18105. extra: 1700 / 1648,
  18106. bottom: 0.01
  18107. }
  18108. },
  18109. back: {
  18110. height: math.unit(6 + 3 / 12, "feet"),
  18111. weight: math.unit(220, "lb"),
  18112. name: "Back",
  18113. image: {
  18114. source: "./media/characters/max-calore/back.svg",
  18115. extra: 1700 / 1648,
  18116. bottom: 0.01
  18117. }
  18118. },
  18119. },
  18120. [
  18121. {
  18122. name: "Normal",
  18123. height: math.unit(6 + 3 / 12, "feet"),
  18124. default: true
  18125. },
  18126. ]
  18127. ))
  18128. characterMakers.push(() => makeCharacter(
  18129. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18130. {
  18131. side: {
  18132. height: math.unit(2 + 8 / 12, "feet"),
  18133. weight: math.unit(99, "lb"),
  18134. name: "Side",
  18135. image: {
  18136. source: "./media/characters/aspen/side.svg",
  18137. extra: 152 / 138,
  18138. bottom: 0.032
  18139. }
  18140. },
  18141. },
  18142. [
  18143. {
  18144. name: "Normal",
  18145. height: math.unit(2 + 8 / 12, "feet"),
  18146. default: true
  18147. },
  18148. ]
  18149. ))
  18150. characterMakers.push(() => makeCharacter(
  18151. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18152. {
  18153. side: {
  18154. height: math.unit(3 + 2 / 12, "feet"),
  18155. weight: math.unit(224, "lb"),
  18156. name: "Side",
  18157. image: {
  18158. source: "./media/characters/sheila-feral-wolf/side.svg",
  18159. extra: 179 / 166,
  18160. bottom: 0.03
  18161. }
  18162. },
  18163. },
  18164. [
  18165. {
  18166. name: "Normal",
  18167. height: math.unit(3 + 2 / 12, "feet"),
  18168. default: true
  18169. },
  18170. ]
  18171. ))
  18172. characterMakers.push(() => makeCharacter(
  18173. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18174. {
  18175. side: {
  18176. height: math.unit(1 + 9 / 12, "feet"),
  18177. weight: math.unit(38, "lb"),
  18178. name: "Side",
  18179. image: {
  18180. source: "./media/characters/michelle/side.svg",
  18181. extra: 147 / 136.7,
  18182. bottom: 0.03
  18183. }
  18184. },
  18185. },
  18186. [
  18187. {
  18188. name: "Normal",
  18189. height: math.unit(1 + 9 / 12, "feet"),
  18190. default: true
  18191. },
  18192. ]
  18193. ))
  18194. characterMakers.push(() => makeCharacter(
  18195. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18196. {
  18197. front: {
  18198. height: math.unit(1.54, "feet"),
  18199. weight: math.unit(50, "lb"),
  18200. name: "Front",
  18201. image: {
  18202. source: "./media/characters/nino/front.svg"
  18203. }
  18204. },
  18205. },
  18206. [
  18207. {
  18208. name: "Normal",
  18209. height: math.unit(1.54, "feet"),
  18210. default: true
  18211. },
  18212. ]
  18213. ))
  18214. characterMakers.push(() => makeCharacter(
  18215. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18216. {
  18217. front: {
  18218. height: math.unit(1.49, "feet"),
  18219. weight: math.unit(45, "lb"),
  18220. name: "Front",
  18221. image: {
  18222. source: "./media/characters/viola/front.svg"
  18223. }
  18224. },
  18225. },
  18226. [
  18227. {
  18228. name: "Normal",
  18229. height: math.unit(1.49, "feet"),
  18230. default: true
  18231. },
  18232. ]
  18233. ))
  18234. characterMakers.push(() => makeCharacter(
  18235. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18236. {
  18237. front: {
  18238. height: math.unit(6 + 5 / 12, "feet"),
  18239. weight: math.unit(580, "lb"),
  18240. name: "Front",
  18241. image: {
  18242. source: "./media/characters/atlas/front.svg",
  18243. extra: 298.5 / 290,
  18244. bottom: 0.015
  18245. }
  18246. },
  18247. },
  18248. [
  18249. {
  18250. name: "Normal",
  18251. height: math.unit(6 + 5 / 12, "feet"),
  18252. default: true
  18253. },
  18254. ]
  18255. ))
  18256. characterMakers.push(() => makeCharacter(
  18257. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18258. {
  18259. side: {
  18260. height: math.unit(15.6, "inches"),
  18261. weight: math.unit(10, "lb"),
  18262. name: "Side",
  18263. image: {
  18264. source: "./media/characters/davy/side.svg",
  18265. extra: 200 / 170,
  18266. bottom: 0.01
  18267. }
  18268. },
  18269. },
  18270. [
  18271. {
  18272. name: "Normal",
  18273. height: math.unit(15.6, "inches"),
  18274. default: true
  18275. },
  18276. ]
  18277. ))
  18278. characterMakers.push(() => makeCharacter(
  18279. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18280. {
  18281. side: {
  18282. height: math.unit(4 + 8 / 12, "feet"),
  18283. weight: math.unit(166, "lb"),
  18284. name: "Side",
  18285. image: {
  18286. source: "./media/characters/fiona/side.svg",
  18287. extra: 232 / 220,
  18288. bottom: 0.03
  18289. }
  18290. },
  18291. },
  18292. [
  18293. {
  18294. name: "Normal",
  18295. height: math.unit(4 + 8 / 12, "feet"),
  18296. default: true
  18297. },
  18298. ]
  18299. ))
  18300. characterMakers.push(() => makeCharacter(
  18301. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18302. {
  18303. front: {
  18304. height: math.unit(26, "inches"),
  18305. weight: math.unit(35, "lb"),
  18306. name: "Front",
  18307. image: {
  18308. source: "./media/characters/lyla/front.svg",
  18309. bottom: 0.1
  18310. }
  18311. },
  18312. },
  18313. [
  18314. {
  18315. name: "Normal",
  18316. height: math.unit(3, "feet"),
  18317. default: true
  18318. },
  18319. ]
  18320. ))
  18321. characterMakers.push(() => makeCharacter(
  18322. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18323. {
  18324. side: {
  18325. height: math.unit(1.8, "feet"),
  18326. weight: math.unit(44, "lb"),
  18327. name: "Side",
  18328. image: {
  18329. source: "./media/characters/perseus/side.svg",
  18330. bottom: 0.21
  18331. }
  18332. },
  18333. },
  18334. [
  18335. {
  18336. name: "Normal",
  18337. height: math.unit(1.8, "feet"),
  18338. default: true
  18339. },
  18340. ]
  18341. ))
  18342. characterMakers.push(() => makeCharacter(
  18343. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18344. {
  18345. side: {
  18346. height: math.unit(4 + 2 / 12, "feet"),
  18347. weight: math.unit(20, "lb"),
  18348. name: "Side",
  18349. image: {
  18350. source: "./media/characters/remus/side.svg"
  18351. }
  18352. },
  18353. },
  18354. [
  18355. {
  18356. name: "Normal",
  18357. height: math.unit(4 + 2 / 12, "feet"),
  18358. default: true
  18359. },
  18360. ]
  18361. ))
  18362. characterMakers.push(() => makeCharacter(
  18363. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18364. {
  18365. front: {
  18366. height: math.unit(4 + 11 / 12, "feet"),
  18367. weight: math.unit(114, "lb"),
  18368. name: "Front",
  18369. image: {
  18370. source: "./media/characters/raf/front.svg",
  18371. extra: 1504/1339,
  18372. bottom: 26/1530
  18373. }
  18374. },
  18375. side: {
  18376. height: math.unit(4 + 11 / 12, "feet"),
  18377. weight: math.unit(114, "lb"),
  18378. name: "Side",
  18379. image: {
  18380. source: "./media/characters/raf/side.svg",
  18381. extra: 1466/1316,
  18382. bottom: 29/1495
  18383. }
  18384. },
  18385. paw: {
  18386. height: math.unit(1.45, "feet"),
  18387. name: "Paw",
  18388. image: {
  18389. source: "./media/characters/raf/paw.svg"
  18390. },
  18391. extraAttributes: {
  18392. "toeSize": {
  18393. name: "Toe Size",
  18394. power: 2,
  18395. type: "area",
  18396. base: math.unit(0.004, "m^2")
  18397. },
  18398. "padSize": {
  18399. name: "Pad Size",
  18400. power: 2,
  18401. type: "area",
  18402. base: math.unit(0.04, "m^2")
  18403. },
  18404. "footSize": {
  18405. name: "Foot Size",
  18406. power: 2,
  18407. type: "area",
  18408. base: math.unit(0.08, "m^2")
  18409. },
  18410. }
  18411. },
  18412. },
  18413. [
  18414. {
  18415. name: "Micro",
  18416. height: math.unit(2, "inches")
  18417. },
  18418. {
  18419. name: "Normal",
  18420. height: math.unit(4 + 11 / 12, "feet"),
  18421. default: true
  18422. },
  18423. {
  18424. name: "Macro",
  18425. height: math.unit(70, "feet")
  18426. },
  18427. ]
  18428. ))
  18429. characterMakers.push(() => makeCharacter(
  18430. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18431. {
  18432. front: {
  18433. height: math.unit(1.5, "meters"),
  18434. weight: math.unit(68, "kg"),
  18435. name: "Front",
  18436. image: {
  18437. source: "./media/characters/liam-einarr/front.svg",
  18438. extra: 2822 / 2666
  18439. }
  18440. },
  18441. back: {
  18442. height: math.unit(1.5, "meters"),
  18443. weight: math.unit(68, "kg"),
  18444. name: "Back",
  18445. image: {
  18446. source: "./media/characters/liam-einarr/back.svg",
  18447. extra: 2822 / 2666,
  18448. bottom: 0.015
  18449. }
  18450. },
  18451. },
  18452. [
  18453. {
  18454. name: "Normal",
  18455. height: math.unit(1.5, "meters"),
  18456. default: true
  18457. },
  18458. {
  18459. name: "Macro",
  18460. height: math.unit(150, "meters")
  18461. },
  18462. {
  18463. name: "Megamacro",
  18464. height: math.unit(35, "km")
  18465. },
  18466. ]
  18467. ))
  18468. characterMakers.push(() => makeCharacter(
  18469. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18470. {
  18471. front: {
  18472. height: math.unit(6, "feet"),
  18473. weight: math.unit(75, "kg"),
  18474. name: "Front",
  18475. image: {
  18476. source: "./media/characters/linda/front.svg",
  18477. extra: 930 / 874,
  18478. bottom: 0.004
  18479. }
  18480. },
  18481. },
  18482. [
  18483. {
  18484. name: "Normal",
  18485. height: math.unit(6, "feet"),
  18486. default: true
  18487. },
  18488. ]
  18489. ))
  18490. characterMakers.push(() => makeCharacter(
  18491. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18492. {
  18493. front: {
  18494. height: math.unit(6 + 8 / 12, "feet"),
  18495. weight: math.unit(220, "lb"),
  18496. name: "Front",
  18497. image: {
  18498. source: "./media/characters/caylex/front.svg",
  18499. extra: 821 / 772,
  18500. bottom: 0.07
  18501. }
  18502. },
  18503. back: {
  18504. height: math.unit(6 + 8 / 12, "feet"),
  18505. weight: math.unit(220, "lb"),
  18506. name: "Back",
  18507. image: {
  18508. source: "./media/characters/caylex/back.svg",
  18509. extra: 821 / 772,
  18510. bottom: 0.022
  18511. }
  18512. },
  18513. hand: {
  18514. height: math.unit(1.25, "feet"),
  18515. name: "Hand",
  18516. image: {
  18517. source: "./media/characters/caylex/hand.svg"
  18518. }
  18519. },
  18520. foot: {
  18521. height: math.unit(1.6, "feet"),
  18522. name: "Foot",
  18523. image: {
  18524. source: "./media/characters/caylex/foot.svg"
  18525. }
  18526. },
  18527. armored: {
  18528. height: math.unit(6 + 8 / 12, "feet"),
  18529. weight: math.unit(250, "lb"),
  18530. name: "Armored",
  18531. image: {
  18532. source: "./media/characters/caylex/armored.svg",
  18533. extra: 1420 / 1310,
  18534. bottom: 0.045
  18535. }
  18536. },
  18537. },
  18538. [
  18539. {
  18540. name: "Normal",
  18541. height: math.unit(6 + 8 / 12, "feet"),
  18542. default: true
  18543. },
  18544. {
  18545. name: "Normal+",
  18546. height: math.unit(12, "feet")
  18547. },
  18548. ]
  18549. ))
  18550. characterMakers.push(() => makeCharacter(
  18551. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18552. {
  18553. front: {
  18554. height: math.unit(7 + 6 / 12, "feet"),
  18555. weight: math.unit(288, "lb"),
  18556. name: "Front",
  18557. image: {
  18558. source: "./media/characters/alana/front.svg",
  18559. extra: 679 / 653,
  18560. bottom: 22.5 / 701
  18561. }
  18562. },
  18563. },
  18564. [
  18565. {
  18566. name: "Normal",
  18567. height: math.unit(7 + 6 / 12, "feet")
  18568. },
  18569. {
  18570. name: "Large",
  18571. height: math.unit(50, "feet")
  18572. },
  18573. {
  18574. name: "Macro",
  18575. height: math.unit(100, "feet"),
  18576. default: true
  18577. },
  18578. {
  18579. name: "Macro+",
  18580. height: math.unit(200, "feet")
  18581. },
  18582. ]
  18583. ))
  18584. characterMakers.push(() => makeCharacter(
  18585. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18586. {
  18587. front: {
  18588. height: math.unit(6 + 1 / 12, "feet"),
  18589. weight: math.unit(210, "lb"),
  18590. name: "Front",
  18591. image: {
  18592. source: "./media/characters/hasani/front.svg",
  18593. extra: 244 / 232,
  18594. bottom: 0.01
  18595. }
  18596. },
  18597. back: {
  18598. height: math.unit(6 + 1 / 12, "feet"),
  18599. weight: math.unit(210, "lb"),
  18600. name: "Back",
  18601. image: {
  18602. source: "./media/characters/hasani/back.svg",
  18603. extra: 244 / 232,
  18604. bottom: 0.01
  18605. }
  18606. },
  18607. },
  18608. [
  18609. {
  18610. name: "Normal",
  18611. height: math.unit(6 + 1 / 12, "feet")
  18612. },
  18613. {
  18614. name: "Macro",
  18615. height: math.unit(175, "feet"),
  18616. default: true
  18617. },
  18618. ]
  18619. ))
  18620. characterMakers.push(() => makeCharacter(
  18621. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18622. {
  18623. front: {
  18624. height: math.unit(1.82, "meters"),
  18625. weight: math.unit(140, "lb"),
  18626. name: "Front",
  18627. image: {
  18628. source: "./media/characters/nita/front.svg",
  18629. extra: 2473 / 2363,
  18630. bottom: 0.01
  18631. }
  18632. },
  18633. },
  18634. [
  18635. {
  18636. name: "Normal",
  18637. height: math.unit(1.82, "m")
  18638. },
  18639. {
  18640. name: "Macro",
  18641. height: math.unit(300, "m")
  18642. },
  18643. {
  18644. name: "Mistake Canon",
  18645. height: math.unit(0.5, "miles"),
  18646. default: true
  18647. },
  18648. {
  18649. name: "Big Mistake",
  18650. height: math.unit(13, "miles")
  18651. },
  18652. {
  18653. name: "Playing God",
  18654. height: math.unit(2450, "miles")
  18655. },
  18656. ]
  18657. ))
  18658. characterMakers.push(() => makeCharacter(
  18659. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18660. {
  18661. front: {
  18662. height: math.unit(4, "feet"),
  18663. weight: math.unit(120, "lb"),
  18664. name: "Front",
  18665. image: {
  18666. source: "./media/characters/shiriko/front.svg",
  18667. extra: 970/934,
  18668. bottom: 5/975
  18669. }
  18670. },
  18671. },
  18672. [
  18673. {
  18674. name: "Normal",
  18675. height: math.unit(4, "feet"),
  18676. default: true
  18677. },
  18678. ]
  18679. ))
  18680. characterMakers.push(() => makeCharacter(
  18681. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18682. {
  18683. front: {
  18684. height: math.unit(6, "feet"),
  18685. name: "front",
  18686. image: {
  18687. source: "./media/characters/deja/front.svg",
  18688. extra: 926 / 840,
  18689. bottom: 0.07
  18690. }
  18691. },
  18692. },
  18693. [
  18694. {
  18695. name: "Planck Length",
  18696. height: math.unit(1.6e-35, "meters")
  18697. },
  18698. {
  18699. name: "Normal",
  18700. height: math.unit(30.48, "meters"),
  18701. default: true
  18702. },
  18703. {
  18704. name: "Universal",
  18705. height: math.unit(8.8e26, "meters")
  18706. },
  18707. ]
  18708. ))
  18709. characterMakers.push(() => makeCharacter(
  18710. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18711. {
  18712. side: {
  18713. height: math.unit(8, "feet"),
  18714. weight: math.unit(6300, "lb"),
  18715. name: "Side",
  18716. image: {
  18717. source: "./media/characters/anima/side.svg",
  18718. bottom: 0.035
  18719. }
  18720. },
  18721. },
  18722. [
  18723. {
  18724. name: "Normal",
  18725. height: math.unit(8, "feet"),
  18726. default: true
  18727. },
  18728. ]
  18729. ))
  18730. characterMakers.push(() => makeCharacter(
  18731. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18732. {
  18733. front: {
  18734. height: math.unit(8, "feet"),
  18735. weight: math.unit(350, "lb"),
  18736. name: "Front",
  18737. image: {
  18738. source: "./media/characters/bianca/front.svg",
  18739. extra: 234 / 225,
  18740. bottom: 0.03
  18741. }
  18742. },
  18743. },
  18744. [
  18745. {
  18746. name: "Normal",
  18747. height: math.unit(8, "feet"),
  18748. default: true
  18749. },
  18750. ]
  18751. ))
  18752. characterMakers.push(() => makeCharacter(
  18753. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18754. {
  18755. front: {
  18756. height: math.unit(11 + 5/12, "feet"),
  18757. weight: math.unit(1200, "lb"),
  18758. name: "Front",
  18759. image: {
  18760. source: "./media/characters/adinia/front.svg",
  18761. extra: 1767/1641,
  18762. bottom: 44/1811
  18763. },
  18764. extraAttributes: {
  18765. "energyIntake": {
  18766. name: "Energy Intake",
  18767. power: 3,
  18768. type: "energy",
  18769. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18770. },
  18771. }
  18772. },
  18773. back: {
  18774. height: math.unit(11 + 5/12, "feet"),
  18775. weight: math.unit(1200, "lb"),
  18776. name: "Back",
  18777. image: {
  18778. source: "./media/characters/adinia/back.svg",
  18779. extra: 1834/1684,
  18780. bottom: 14/1848
  18781. },
  18782. extraAttributes: {
  18783. "energyIntake": {
  18784. name: "Energy Intake",
  18785. power: 3,
  18786. type: "energy",
  18787. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18788. },
  18789. }
  18790. },
  18791. maw: {
  18792. height: math.unit(3.79, "feet"),
  18793. name: "Maw",
  18794. image: {
  18795. source: "./media/characters/adinia/maw.svg"
  18796. }
  18797. },
  18798. rump: {
  18799. height: math.unit(4.6, "feet"),
  18800. name: "Rump",
  18801. image: {
  18802. source: "./media/characters/adinia/rump.svg"
  18803. }
  18804. },
  18805. },
  18806. [
  18807. {
  18808. name: "Normal",
  18809. height: math.unit(11 + 5 / 12, "feet"),
  18810. default: true
  18811. },
  18812. ]
  18813. ))
  18814. characterMakers.push(() => makeCharacter(
  18815. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18816. {
  18817. front: {
  18818. height: math.unit(3, "meters"),
  18819. weight: math.unit(200, "kg"),
  18820. name: "Front",
  18821. image: {
  18822. source: "./media/characters/lykasa/front.svg",
  18823. extra: 1076 / 976,
  18824. bottom: 0.06
  18825. }
  18826. },
  18827. },
  18828. [
  18829. {
  18830. name: "Normal",
  18831. height: math.unit(3, "meters")
  18832. },
  18833. {
  18834. name: "Kaiju",
  18835. height: math.unit(120, "meters"),
  18836. default: true
  18837. },
  18838. {
  18839. name: "Mega Kaiju",
  18840. height: math.unit(240, "km")
  18841. },
  18842. {
  18843. name: "Giga Kaiju",
  18844. height: math.unit(400, "megameters")
  18845. },
  18846. {
  18847. name: "Tera Kaiju",
  18848. height: math.unit(800, "gigameters")
  18849. },
  18850. {
  18851. name: "Kaiju Dragon Goddess",
  18852. height: math.unit(26, "zettaparsecs")
  18853. },
  18854. ]
  18855. ))
  18856. characterMakers.push(() => makeCharacter(
  18857. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18858. {
  18859. side: {
  18860. height: math.unit(283 / 124 * 6, "feet"),
  18861. weight: math.unit(35000, "lb"),
  18862. name: "Side",
  18863. image: {
  18864. source: "./media/characters/malfaren/side.svg",
  18865. extra: 1310/529,
  18866. bottom: 24/1334
  18867. }
  18868. },
  18869. front: {
  18870. height: math.unit(22.36, "feet"),
  18871. weight: math.unit(35000, "lb"),
  18872. name: "Front",
  18873. image: {
  18874. source: "./media/characters/malfaren/front.svg",
  18875. extra: 1237/1115,
  18876. bottom: 32/1269
  18877. }
  18878. },
  18879. maw: {
  18880. height: math.unit(6.9, "feet"),
  18881. name: "Maw",
  18882. image: {
  18883. source: "./media/characters/malfaren/maw.svg"
  18884. }
  18885. },
  18886. dick: {
  18887. height: math.unit(6.19, "feet"),
  18888. name: "Dick",
  18889. image: {
  18890. source: "./media/characters/malfaren/dick.svg"
  18891. }
  18892. },
  18893. eye: {
  18894. height: math.unit(0.69, "feet"),
  18895. name: "Eye",
  18896. image: {
  18897. source: "./media/characters/malfaren/eye.svg"
  18898. }
  18899. },
  18900. },
  18901. [
  18902. {
  18903. name: "Big",
  18904. height: math.unit(283 / 162 * 6, "feet"),
  18905. },
  18906. {
  18907. name: "Bigger",
  18908. height: math.unit(283 / 124 * 6, "feet")
  18909. },
  18910. {
  18911. name: "Massive",
  18912. height: math.unit(283 / 92 * 6, "feet"),
  18913. default: true
  18914. },
  18915. {
  18916. name: "👀💦",
  18917. height: math.unit(283 / 73 * 6, "feet"),
  18918. },
  18919. ]
  18920. ))
  18921. characterMakers.push(() => makeCharacter(
  18922. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18923. {
  18924. front: {
  18925. height: math.unit(1.7, "m"),
  18926. weight: math.unit(70, "kg"),
  18927. name: "Front",
  18928. image: {
  18929. source: "./media/characters/kernel/front.svg",
  18930. extra: 222 / 210,
  18931. bottom: 0.007
  18932. }
  18933. },
  18934. },
  18935. [
  18936. {
  18937. name: "Nano",
  18938. height: math.unit(17, "micrometers")
  18939. },
  18940. {
  18941. name: "Micro",
  18942. height: math.unit(1.7, "mm")
  18943. },
  18944. {
  18945. name: "Small",
  18946. height: math.unit(1.7, "cm")
  18947. },
  18948. {
  18949. name: "Normal",
  18950. height: math.unit(1.7, "m"),
  18951. default: true
  18952. },
  18953. ]
  18954. ))
  18955. characterMakers.push(() => makeCharacter(
  18956. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18957. {
  18958. front: {
  18959. height: math.unit(1.75, "meters"),
  18960. weight: math.unit(65, "kg"),
  18961. name: "Front",
  18962. image: {
  18963. source: "./media/characters/jayne-folest/front.svg",
  18964. extra: 2115 / 2007,
  18965. bottom: 0.02
  18966. }
  18967. },
  18968. back: {
  18969. height: math.unit(1.75, "meters"),
  18970. weight: math.unit(65, "kg"),
  18971. name: "Back",
  18972. image: {
  18973. source: "./media/characters/jayne-folest/back.svg",
  18974. extra: 2115 / 2007,
  18975. bottom: 0.005
  18976. }
  18977. },
  18978. frontClothed: {
  18979. height: math.unit(1.75, "meters"),
  18980. weight: math.unit(65, "kg"),
  18981. name: "Front (Clothed)",
  18982. image: {
  18983. source: "./media/characters/jayne-folest/front-clothed.svg",
  18984. extra: 2115 / 2007,
  18985. bottom: 0.035
  18986. }
  18987. },
  18988. hand: {
  18989. height: math.unit(1 / 1.260, "feet"),
  18990. name: "Hand",
  18991. image: {
  18992. source: "./media/characters/jayne-folest/hand.svg"
  18993. }
  18994. },
  18995. foot: {
  18996. height: math.unit(1 / 0.918, "feet"),
  18997. name: "Foot",
  18998. image: {
  18999. source: "./media/characters/jayne-folest/foot.svg"
  19000. }
  19001. },
  19002. },
  19003. [
  19004. {
  19005. name: "Micro",
  19006. height: math.unit(4, "cm")
  19007. },
  19008. {
  19009. name: "Normal",
  19010. height: math.unit(1.75, "meters")
  19011. },
  19012. {
  19013. name: "Macro",
  19014. height: math.unit(47.5, "meters"),
  19015. default: true
  19016. },
  19017. ]
  19018. ))
  19019. characterMakers.push(() => makeCharacter(
  19020. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19021. {
  19022. front: {
  19023. height: math.unit(180, "cm"),
  19024. weight: math.unit(70, "kg"),
  19025. name: "Front",
  19026. image: {
  19027. source: "./media/characters/algier/front.svg",
  19028. extra: 596 / 572,
  19029. bottom: 0.04
  19030. }
  19031. },
  19032. back: {
  19033. height: math.unit(180, "cm"),
  19034. weight: math.unit(70, "kg"),
  19035. name: "Back",
  19036. image: {
  19037. source: "./media/characters/algier/back.svg",
  19038. extra: 596 / 572,
  19039. bottom: 0.025
  19040. }
  19041. },
  19042. frontdressed: {
  19043. height: math.unit(180, "cm"),
  19044. weight: math.unit(150, "kg"),
  19045. name: "Front-dressed",
  19046. image: {
  19047. source: "./media/characters/algier/front-dressed.svg",
  19048. extra: 596 / 572,
  19049. bottom: 0.038
  19050. }
  19051. },
  19052. },
  19053. [
  19054. {
  19055. name: "Micro",
  19056. height: math.unit(5, "cm")
  19057. },
  19058. {
  19059. name: "Normal",
  19060. height: math.unit(180, "cm"),
  19061. default: true
  19062. },
  19063. {
  19064. name: "Macro",
  19065. height: math.unit(64, "m")
  19066. },
  19067. ]
  19068. ))
  19069. characterMakers.push(() => makeCharacter(
  19070. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19071. {
  19072. upright: {
  19073. height: math.unit(7, "feet"),
  19074. weight: math.unit(300, "lb"),
  19075. name: "Upright",
  19076. image: {
  19077. source: "./media/characters/pretzel/upright.svg",
  19078. extra: 534 / 522,
  19079. bottom: 0.065
  19080. }
  19081. },
  19082. sprawling: {
  19083. height: math.unit(3.75, "feet"),
  19084. weight: math.unit(300, "lb"),
  19085. name: "Sprawling",
  19086. image: {
  19087. source: "./media/characters/pretzel/sprawling.svg",
  19088. extra: 314 / 281,
  19089. bottom: 0.1
  19090. }
  19091. },
  19092. tongue: {
  19093. height: math.unit(2, "feet"),
  19094. name: "Tongue",
  19095. image: {
  19096. source: "./media/characters/pretzel/tongue.svg"
  19097. }
  19098. },
  19099. },
  19100. [
  19101. {
  19102. name: "Normal",
  19103. height: math.unit(7, "feet"),
  19104. default: true
  19105. },
  19106. {
  19107. name: "Oversized",
  19108. height: math.unit(15, "feet")
  19109. },
  19110. {
  19111. name: "Huge",
  19112. height: math.unit(30, "feet")
  19113. },
  19114. {
  19115. name: "Macro",
  19116. height: math.unit(250, "feet")
  19117. },
  19118. ]
  19119. ))
  19120. characterMakers.push(() => makeCharacter(
  19121. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19122. {
  19123. sideFront: {
  19124. height: math.unit(5 + 2 / 12, "feet"),
  19125. weight: math.unit(120, "lb"),
  19126. name: "Front Side",
  19127. image: {
  19128. source: "./media/characters/roxi/side-front.svg",
  19129. extra: 2924 / 2717,
  19130. bottom: 0.08
  19131. }
  19132. },
  19133. sideBack: {
  19134. height: math.unit(5 + 2 / 12, "feet"),
  19135. weight: math.unit(120, "lb"),
  19136. name: "Back Side",
  19137. image: {
  19138. source: "./media/characters/roxi/side-back.svg",
  19139. extra: 2904 / 2693,
  19140. bottom: 0.06
  19141. }
  19142. },
  19143. front: {
  19144. height: math.unit(5 + 2 / 12, "feet"),
  19145. weight: math.unit(120, "lb"),
  19146. name: "Front",
  19147. image: {
  19148. source: "./media/characters/roxi/front.svg",
  19149. extra: 2028 / 1907,
  19150. bottom: 0.01
  19151. }
  19152. },
  19153. frontAlt: {
  19154. height: math.unit(5 + 2 / 12, "feet"),
  19155. weight: math.unit(120, "lb"),
  19156. name: "Front (Alt)",
  19157. image: {
  19158. source: "./media/characters/roxi/front-alt.svg",
  19159. extra: 1828 / 1798,
  19160. bottom: 0.01
  19161. }
  19162. },
  19163. sitting: {
  19164. height: math.unit(2.8, "feet"),
  19165. weight: math.unit(120, "lb"),
  19166. name: "Sitting",
  19167. image: {
  19168. source: "./media/characters/roxi/sitting.svg",
  19169. extra: 2660 / 2462,
  19170. bottom: 0.1
  19171. }
  19172. },
  19173. },
  19174. [
  19175. {
  19176. name: "Normal",
  19177. height: math.unit(5 + 2 / 12, "feet"),
  19178. default: true
  19179. },
  19180. ]
  19181. ))
  19182. characterMakers.push(() => makeCharacter(
  19183. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19184. {
  19185. side: {
  19186. height: math.unit(55, "feet"),
  19187. weight: math.unit(153, "tons"),
  19188. name: "Side",
  19189. image: {
  19190. source: "./media/characters/shadow/side.svg",
  19191. extra: 701 / 628,
  19192. bottom: 0.02
  19193. }
  19194. },
  19195. flying: {
  19196. height: math.unit(145, "feet"),
  19197. weight: math.unit(153, "tons"),
  19198. name: "Flying",
  19199. image: {
  19200. source: "./media/characters/shadow/flying.svg"
  19201. }
  19202. },
  19203. },
  19204. [
  19205. {
  19206. name: "Normal",
  19207. height: math.unit(55, "feet"),
  19208. default: true
  19209. },
  19210. ]
  19211. ))
  19212. characterMakers.push(() => makeCharacter(
  19213. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19214. {
  19215. front: {
  19216. height: math.unit(6, "feet"),
  19217. weight: math.unit(200, "lb"),
  19218. name: "Front",
  19219. image: {
  19220. source: "./media/characters/marcie/front.svg",
  19221. extra: 960 / 876,
  19222. bottom: 58 / 1017.87
  19223. }
  19224. },
  19225. },
  19226. [
  19227. {
  19228. name: "Macro",
  19229. height: math.unit(1, "mile"),
  19230. default: true
  19231. },
  19232. ]
  19233. ))
  19234. characterMakers.push(() => makeCharacter(
  19235. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19236. {
  19237. front: {
  19238. height: math.unit(7, "feet"),
  19239. weight: math.unit(200, "lb"),
  19240. name: "Front",
  19241. image: {
  19242. source: "./media/characters/kachina/front.svg",
  19243. extra: 1290.68 / 1119,
  19244. bottom: 36.5 / 1327.18
  19245. }
  19246. },
  19247. },
  19248. [
  19249. {
  19250. name: "Normal",
  19251. height: math.unit(7, "feet"),
  19252. default: true
  19253. },
  19254. ]
  19255. ))
  19256. characterMakers.push(() => makeCharacter(
  19257. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19258. {
  19259. looking: {
  19260. height: math.unit(2, "meters"),
  19261. weight: math.unit(300, "kg"),
  19262. name: "Looking",
  19263. image: {
  19264. source: "./media/characters/kash/looking.svg",
  19265. extra: 474 / 344,
  19266. bottom: 0.03
  19267. }
  19268. },
  19269. side: {
  19270. height: math.unit(2, "meters"),
  19271. weight: math.unit(300, "kg"),
  19272. name: "Side",
  19273. image: {
  19274. source: "./media/characters/kash/side.svg",
  19275. extra: 302 / 251,
  19276. bottom: 0.03
  19277. }
  19278. },
  19279. front: {
  19280. height: math.unit(2, "meters"),
  19281. weight: math.unit(300, "kg"),
  19282. name: "Front",
  19283. image: {
  19284. source: "./media/characters/kash/front.svg",
  19285. extra: 495 / 360,
  19286. bottom: 0.015
  19287. }
  19288. },
  19289. },
  19290. [
  19291. {
  19292. name: "Normal",
  19293. height: math.unit(2, "meters"),
  19294. default: true
  19295. },
  19296. {
  19297. name: "Big",
  19298. height: math.unit(3, "meters")
  19299. },
  19300. {
  19301. name: "Large",
  19302. height: math.unit(5, "meters")
  19303. },
  19304. ]
  19305. ))
  19306. characterMakers.push(() => makeCharacter(
  19307. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19308. {
  19309. feeding: {
  19310. height: math.unit(6.7, "feet"),
  19311. weight: math.unit(350, "lb"),
  19312. name: "Feeding",
  19313. image: {
  19314. source: "./media/characters/lalim/feeding.svg",
  19315. }
  19316. },
  19317. },
  19318. [
  19319. {
  19320. name: "Normal",
  19321. height: math.unit(6.7, "feet"),
  19322. default: true
  19323. },
  19324. ]
  19325. ))
  19326. characterMakers.push(() => makeCharacter(
  19327. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19328. {
  19329. front: {
  19330. height: math.unit(9.5, "feet"),
  19331. weight: math.unit(600, "lb"),
  19332. name: "Front",
  19333. image: {
  19334. source: "./media/characters/de'vout/front.svg",
  19335. extra: 1443 / 1328,
  19336. bottom: 0.025
  19337. }
  19338. },
  19339. back: {
  19340. height: math.unit(9.5, "feet"),
  19341. weight: math.unit(600, "lb"),
  19342. name: "Back",
  19343. image: {
  19344. source: "./media/characters/de'vout/back.svg",
  19345. extra: 1443 / 1328
  19346. }
  19347. },
  19348. frontDressed: {
  19349. height: math.unit(9.5, "feet"),
  19350. weight: math.unit(600, "lb"),
  19351. name: "Front (Dressed",
  19352. image: {
  19353. source: "./media/characters/de'vout/front-dressed.svg",
  19354. extra: 1443 / 1328,
  19355. bottom: 0.025
  19356. }
  19357. },
  19358. backDressed: {
  19359. height: math.unit(9.5, "feet"),
  19360. weight: math.unit(600, "lb"),
  19361. name: "Back (Dressed",
  19362. image: {
  19363. source: "./media/characters/de'vout/back-dressed.svg",
  19364. extra: 1443 / 1328
  19365. }
  19366. },
  19367. },
  19368. [
  19369. {
  19370. name: "Normal",
  19371. height: math.unit(9.5, "feet"),
  19372. default: true
  19373. },
  19374. ]
  19375. ))
  19376. characterMakers.push(() => makeCharacter(
  19377. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19378. {
  19379. front: {
  19380. height: math.unit(8, "feet"),
  19381. weight: math.unit(225, "lb"),
  19382. name: "Front",
  19383. image: {
  19384. source: "./media/characters/talana/front.svg",
  19385. extra: 1410 / 1300,
  19386. bottom: 0.015
  19387. }
  19388. },
  19389. frontDressed: {
  19390. height: math.unit(8, "feet"),
  19391. weight: math.unit(225, "lb"),
  19392. name: "Front (Dressed",
  19393. image: {
  19394. source: "./media/characters/talana/front-dressed.svg",
  19395. extra: 1410 / 1300,
  19396. bottom: 0.015
  19397. }
  19398. },
  19399. },
  19400. [
  19401. {
  19402. name: "Normal",
  19403. height: math.unit(8, "feet"),
  19404. default: true
  19405. },
  19406. ]
  19407. ))
  19408. characterMakers.push(() => makeCharacter(
  19409. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19410. {
  19411. side: {
  19412. height: math.unit(7.2, "feet"),
  19413. weight: math.unit(150, "lb"),
  19414. name: "Side",
  19415. image: {
  19416. source: "./media/characters/xeauvok/side.svg",
  19417. extra: 1975 / 1523,
  19418. bottom: 0.07
  19419. }
  19420. },
  19421. },
  19422. [
  19423. {
  19424. name: "Normal",
  19425. height: math.unit(7.2, "feet"),
  19426. default: true
  19427. },
  19428. ]
  19429. ))
  19430. characterMakers.push(() => makeCharacter(
  19431. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19432. {
  19433. side: {
  19434. height: math.unit(4, "meters"),
  19435. weight: math.unit(2200, "kg"),
  19436. name: "Side",
  19437. image: {
  19438. source: "./media/characters/zara/side.svg",
  19439. extra: 765/744,
  19440. bottom: 156/921
  19441. }
  19442. },
  19443. },
  19444. [
  19445. {
  19446. name: "Normal",
  19447. height: math.unit(4, "meters"),
  19448. default: true
  19449. },
  19450. ]
  19451. ))
  19452. characterMakers.push(() => makeCharacter(
  19453. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19454. {
  19455. side: {
  19456. height: math.unit(6, "feet"),
  19457. weight: math.unit(150, "lb"),
  19458. name: "Side",
  19459. image: {
  19460. source: "./media/characters/richard-dragon/side.svg",
  19461. extra: 845 / 340,
  19462. bottom: 0.017
  19463. }
  19464. },
  19465. maw: {
  19466. height: math.unit(2.97, "feet"),
  19467. name: "Maw",
  19468. image: {
  19469. source: "./media/characters/richard-dragon/maw.svg"
  19470. }
  19471. },
  19472. },
  19473. [
  19474. ]
  19475. ))
  19476. characterMakers.push(() => makeCharacter(
  19477. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19478. {
  19479. front: {
  19480. height: math.unit(4, "feet"),
  19481. weight: math.unit(100, "lb"),
  19482. name: "Front",
  19483. image: {
  19484. source: "./media/characters/richard-smeargle/front.svg",
  19485. extra: 2952 / 2820,
  19486. bottom: 0.028
  19487. }
  19488. },
  19489. },
  19490. [
  19491. {
  19492. name: "Normal",
  19493. height: math.unit(4, "feet"),
  19494. default: true
  19495. },
  19496. {
  19497. name: "Dynamax",
  19498. height: math.unit(20, "meters")
  19499. },
  19500. ]
  19501. ))
  19502. characterMakers.push(() => makeCharacter(
  19503. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19504. {
  19505. front: {
  19506. height: math.unit(6, "feet"),
  19507. weight: math.unit(110, "lb"),
  19508. name: "Front",
  19509. image: {
  19510. source: "./media/characters/klay/front.svg",
  19511. extra: 962 / 883,
  19512. bottom: 0.04
  19513. }
  19514. },
  19515. back: {
  19516. height: math.unit(6, "feet"),
  19517. weight: math.unit(110, "lb"),
  19518. name: "Back",
  19519. image: {
  19520. source: "./media/characters/klay/back.svg",
  19521. extra: 962 / 883
  19522. }
  19523. },
  19524. beans: {
  19525. height: math.unit(1.15, "feet"),
  19526. name: "Beans",
  19527. image: {
  19528. source: "./media/characters/klay/beans.svg"
  19529. }
  19530. },
  19531. },
  19532. [
  19533. {
  19534. name: "Micro",
  19535. height: math.unit(6, "inches")
  19536. },
  19537. {
  19538. name: "Mini",
  19539. height: math.unit(3, "feet")
  19540. },
  19541. {
  19542. name: "Normal",
  19543. height: math.unit(6, "feet"),
  19544. default: true
  19545. },
  19546. {
  19547. name: "Big",
  19548. height: math.unit(25, "feet")
  19549. },
  19550. {
  19551. name: "Macro",
  19552. height: math.unit(100, "feet")
  19553. },
  19554. {
  19555. name: "Megamacro",
  19556. height: math.unit(400, "feet")
  19557. },
  19558. ]
  19559. ))
  19560. characterMakers.push(() => makeCharacter(
  19561. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19562. {
  19563. front: {
  19564. height: math.unit(6, "feet"),
  19565. weight: math.unit(160, "lb"),
  19566. name: "Front",
  19567. image: {
  19568. source: "./media/characters/marcus/front.svg",
  19569. extra: 734 / 676,
  19570. bottom: 0.03
  19571. }
  19572. },
  19573. },
  19574. [
  19575. {
  19576. name: "Little",
  19577. height: math.unit(6, "feet")
  19578. },
  19579. {
  19580. name: "Normal",
  19581. height: math.unit(110, "feet"),
  19582. default: true
  19583. },
  19584. {
  19585. name: "Macro",
  19586. height: math.unit(250, "feet")
  19587. },
  19588. {
  19589. name: "Megamacro",
  19590. height: math.unit(1000, "feet")
  19591. },
  19592. ]
  19593. ))
  19594. characterMakers.push(() => makeCharacter(
  19595. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19596. {
  19597. front: {
  19598. height: math.unit(7, "feet"),
  19599. weight: math.unit(275, "lb"),
  19600. name: "Front",
  19601. image: {
  19602. source: "./media/characters/claude-delroute/front.svg",
  19603. extra: 902/827,
  19604. bottom: 26/928
  19605. }
  19606. },
  19607. side: {
  19608. height: math.unit(7, "feet"),
  19609. weight: math.unit(275, "lb"),
  19610. name: "Side",
  19611. image: {
  19612. source: "./media/characters/claude-delroute/side.svg",
  19613. extra: 908/853,
  19614. bottom: 16/924
  19615. }
  19616. },
  19617. back: {
  19618. height: math.unit(7, "feet"),
  19619. weight: math.unit(275, "lb"),
  19620. name: "Back",
  19621. image: {
  19622. source: "./media/characters/claude-delroute/back.svg",
  19623. extra: 911/829,
  19624. bottom: 18/929
  19625. }
  19626. },
  19627. maw: {
  19628. height: math.unit(0.6407, "meters"),
  19629. name: "Maw",
  19630. image: {
  19631. source: "./media/characters/claude-delroute/maw.svg"
  19632. }
  19633. },
  19634. },
  19635. [
  19636. {
  19637. name: "Normal",
  19638. height: math.unit(7, "feet"),
  19639. default: true
  19640. },
  19641. {
  19642. name: "Lorge",
  19643. height: math.unit(20, "feet")
  19644. },
  19645. ]
  19646. ))
  19647. characterMakers.push(() => makeCharacter(
  19648. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19649. {
  19650. front: {
  19651. height: math.unit(8 + 4 / 12, "feet"),
  19652. weight: math.unit(600, "lb"),
  19653. name: "Front",
  19654. image: {
  19655. source: "./media/characters/dragonien/front.svg",
  19656. extra: 100 / 94,
  19657. bottom: 3.3 / 103.3445
  19658. }
  19659. },
  19660. back: {
  19661. height: math.unit(8 + 4 / 12, "feet"),
  19662. weight: math.unit(600, "lb"),
  19663. name: "Back",
  19664. image: {
  19665. source: "./media/characters/dragonien/back.svg",
  19666. extra: 776 / 746,
  19667. bottom: 6.4 / 782.0616
  19668. }
  19669. },
  19670. foot: {
  19671. height: math.unit(1.54, "feet"),
  19672. name: "Foot",
  19673. image: {
  19674. source: "./media/characters/dragonien/foot.svg",
  19675. }
  19676. },
  19677. },
  19678. [
  19679. {
  19680. name: "Normal",
  19681. height: math.unit(8 + 4 / 12, "feet"),
  19682. default: true
  19683. },
  19684. {
  19685. name: "Macro",
  19686. height: math.unit(200, "feet")
  19687. },
  19688. {
  19689. name: "Megamacro",
  19690. height: math.unit(1, "mile")
  19691. },
  19692. {
  19693. name: "Gigamacro",
  19694. height: math.unit(1000, "miles")
  19695. },
  19696. ]
  19697. ))
  19698. characterMakers.push(() => makeCharacter(
  19699. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19700. {
  19701. front: {
  19702. height: math.unit(5 + 2 / 12, "feet"),
  19703. weight: math.unit(110, "lb"),
  19704. name: "Front",
  19705. image: {
  19706. source: "./media/characters/desta/front.svg",
  19707. extra: 767 / 726,
  19708. bottom: 11.7 / 779
  19709. }
  19710. },
  19711. back: {
  19712. height: math.unit(5 + 2 / 12, "feet"),
  19713. weight: math.unit(110, "lb"),
  19714. name: "Back",
  19715. image: {
  19716. source: "./media/characters/desta/back.svg",
  19717. extra: 777 / 728,
  19718. bottom: 6 / 784
  19719. }
  19720. },
  19721. frontAlt: {
  19722. height: math.unit(5 + 2 / 12, "feet"),
  19723. weight: math.unit(110, "lb"),
  19724. name: "Front",
  19725. image: {
  19726. source: "./media/characters/desta/front-alt.svg",
  19727. extra: 1482 / 1417
  19728. }
  19729. },
  19730. side: {
  19731. height: math.unit(5 + 2 / 12, "feet"),
  19732. weight: math.unit(110, "lb"),
  19733. name: "Side",
  19734. image: {
  19735. source: "./media/characters/desta/side.svg",
  19736. extra: 2579 / 2491,
  19737. bottom: 0.053
  19738. }
  19739. },
  19740. },
  19741. [
  19742. {
  19743. name: "Micro",
  19744. height: math.unit(6, "inches")
  19745. },
  19746. {
  19747. name: "Normal",
  19748. height: math.unit(5 + 2 / 12, "feet"),
  19749. default: true
  19750. },
  19751. {
  19752. name: "Macro",
  19753. height: math.unit(62, "feet")
  19754. },
  19755. {
  19756. name: "Megamacro",
  19757. height: math.unit(1800, "feet")
  19758. },
  19759. ]
  19760. ))
  19761. characterMakers.push(() => makeCharacter(
  19762. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19763. {
  19764. front: {
  19765. height: math.unit(10, "feet"),
  19766. weight: math.unit(700, "lb"),
  19767. name: "Front",
  19768. image: {
  19769. source: "./media/characters/storm-alystar/front.svg",
  19770. extra: 2112 / 1898,
  19771. bottom: 0.034
  19772. }
  19773. },
  19774. },
  19775. [
  19776. {
  19777. name: "Micro",
  19778. height: math.unit(3.5, "inches")
  19779. },
  19780. {
  19781. name: "Normal",
  19782. height: math.unit(10, "feet"),
  19783. default: true
  19784. },
  19785. {
  19786. name: "Macro",
  19787. height: math.unit(400, "feet")
  19788. },
  19789. {
  19790. name: "Deific",
  19791. height: math.unit(60, "miles")
  19792. },
  19793. ]
  19794. ))
  19795. characterMakers.push(() => makeCharacter(
  19796. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19797. {
  19798. front: {
  19799. height: math.unit(2.35, "meters"),
  19800. weight: math.unit(119, "kg"),
  19801. name: "Front",
  19802. image: {
  19803. source: "./media/characters/ilia/front.svg",
  19804. extra: 1285 / 1255,
  19805. bottom: 0.06
  19806. }
  19807. },
  19808. },
  19809. [
  19810. {
  19811. name: "Normal",
  19812. height: math.unit(2.35, "meters")
  19813. },
  19814. {
  19815. name: "Macro",
  19816. height: math.unit(140, "meters"),
  19817. default: true
  19818. },
  19819. {
  19820. name: "Megamacro",
  19821. height: math.unit(100, "miles")
  19822. },
  19823. ]
  19824. ))
  19825. characterMakers.push(() => makeCharacter(
  19826. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19827. {
  19828. front: {
  19829. height: math.unit(6 + 5 / 12, "feet"),
  19830. weight: math.unit(190, "lb"),
  19831. name: "Front",
  19832. image: {
  19833. source: "./media/characters/kingdead/front.svg",
  19834. extra: 1228 / 1177
  19835. }
  19836. },
  19837. },
  19838. [
  19839. {
  19840. name: "Micro",
  19841. height: math.unit(7, "inches")
  19842. },
  19843. {
  19844. name: "Normal",
  19845. height: math.unit(6 + 5 / 12, "feet")
  19846. },
  19847. {
  19848. name: "Macro",
  19849. height: math.unit(150, "feet"),
  19850. default: true
  19851. },
  19852. {
  19853. name: "Megamacro",
  19854. height: math.unit(200, "miles")
  19855. },
  19856. ]
  19857. ))
  19858. characterMakers.push(() => makeCharacter(
  19859. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19860. {
  19861. front: {
  19862. height: math.unit(8, "feet"),
  19863. weight: math.unit(600, "lb"),
  19864. name: "Front",
  19865. image: {
  19866. source: "./media/characters/kyrehx/front.svg",
  19867. extra: 1195 / 1095,
  19868. bottom: 0.034
  19869. }
  19870. },
  19871. },
  19872. [
  19873. {
  19874. name: "Micro",
  19875. height: math.unit(2, "inches")
  19876. },
  19877. {
  19878. name: "Normal",
  19879. height: math.unit(8, "feet"),
  19880. default: true
  19881. },
  19882. {
  19883. name: "Macro",
  19884. height: math.unit(255, "feet")
  19885. },
  19886. ]
  19887. ))
  19888. characterMakers.push(() => makeCharacter(
  19889. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19890. {
  19891. front: {
  19892. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19893. weight: math.unit(184, "lb"),
  19894. name: "Front",
  19895. image: {
  19896. source: "./media/characters/xang/front.svg",
  19897. extra: 845 / 755
  19898. }
  19899. },
  19900. },
  19901. [
  19902. {
  19903. name: "Normal",
  19904. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19905. default: true
  19906. },
  19907. {
  19908. name: "Macro",
  19909. height: math.unit(0.935 * 146, "feet")
  19910. },
  19911. {
  19912. name: "Megamacro",
  19913. height: math.unit(0.935 * 3, "miles")
  19914. },
  19915. ]
  19916. ))
  19917. characterMakers.push(() => makeCharacter(
  19918. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19919. {
  19920. frontDressed: {
  19921. height: math.unit(5 + 7 / 12, "feet"),
  19922. weight: math.unit(140, "lb"),
  19923. name: "Front (Dressed)",
  19924. image: {
  19925. source: "./media/characters/doc-weardno/front-dressed.svg",
  19926. extra: 263 / 234
  19927. }
  19928. },
  19929. backDressed: {
  19930. height: math.unit(5 + 7 / 12, "feet"),
  19931. weight: math.unit(140, "lb"),
  19932. name: "Back (Dressed)",
  19933. image: {
  19934. source: "./media/characters/doc-weardno/back-dressed.svg",
  19935. extra: 266 / 238
  19936. }
  19937. },
  19938. front: {
  19939. height: math.unit(5 + 7 / 12, "feet"),
  19940. weight: math.unit(140, "lb"),
  19941. name: "Front",
  19942. image: {
  19943. source: "./media/characters/doc-weardno/front.svg",
  19944. extra: 254 / 233
  19945. }
  19946. },
  19947. },
  19948. [
  19949. {
  19950. name: "Micro",
  19951. height: math.unit(3, "inches")
  19952. },
  19953. {
  19954. name: "Normal",
  19955. height: math.unit(5 + 7 / 12, "feet"),
  19956. default: true
  19957. },
  19958. {
  19959. name: "Macro",
  19960. height: math.unit(25, "feet")
  19961. },
  19962. {
  19963. name: "Megamacro",
  19964. height: math.unit(2, "miles")
  19965. },
  19966. ]
  19967. ))
  19968. characterMakers.push(() => makeCharacter(
  19969. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19970. {
  19971. front: {
  19972. height: math.unit(6 + 2 / 12, "feet"),
  19973. weight: math.unit(153, "lb"),
  19974. name: "Front",
  19975. image: {
  19976. source: "./media/characters/seth-whilst/front.svg",
  19977. bottom: 0.07
  19978. }
  19979. },
  19980. },
  19981. [
  19982. {
  19983. name: "Micro",
  19984. height: math.unit(5, "inches")
  19985. },
  19986. {
  19987. name: "Normal",
  19988. height: math.unit(6 + 2 / 12, "feet"),
  19989. default: true
  19990. },
  19991. ]
  19992. ))
  19993. characterMakers.push(() => makeCharacter(
  19994. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19995. {
  19996. front: {
  19997. height: math.unit(3, "inches"),
  19998. weight: math.unit(8, "grams"),
  19999. name: "Front",
  20000. image: {
  20001. source: "./media/characters/pocket-jabari/front.svg",
  20002. extra: 1024 / 974,
  20003. bottom: 0.039
  20004. }
  20005. },
  20006. },
  20007. [
  20008. {
  20009. name: "Minimicro",
  20010. height: math.unit(8, "mm")
  20011. },
  20012. {
  20013. name: "Micro",
  20014. height: math.unit(3, "inches"),
  20015. default: true
  20016. },
  20017. {
  20018. name: "Normal",
  20019. height: math.unit(3, "feet")
  20020. },
  20021. ]
  20022. ))
  20023. characterMakers.push(() => makeCharacter(
  20024. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20025. {
  20026. frontDressed: {
  20027. height: math.unit(15, "feet"),
  20028. weight: math.unit(3280, "lb"),
  20029. name: "Front (Dressed)",
  20030. image: {
  20031. source: "./media/characters/sapphy/front-dressed.svg",
  20032. extra: 1951/1654,
  20033. bottom: 194/2145
  20034. },
  20035. form: "anthro",
  20036. default: true
  20037. },
  20038. backDressed: {
  20039. height: math.unit(15, "feet"),
  20040. weight: math.unit(3280, "lb"),
  20041. name: "Back (Dressed)",
  20042. image: {
  20043. source: "./media/characters/sapphy/back-dressed.svg",
  20044. extra: 2058/1918,
  20045. bottom: 125/2183
  20046. },
  20047. form: "anthro"
  20048. },
  20049. frontNude: {
  20050. height: math.unit(15, "feet"),
  20051. weight: math.unit(3280, "lb"),
  20052. name: "Front (Nude)",
  20053. image: {
  20054. source: "./media/characters/sapphy/front-nude.svg",
  20055. extra: 1951/1654,
  20056. bottom: 194/2145
  20057. },
  20058. form: "anthro"
  20059. },
  20060. backNude: {
  20061. height: math.unit(15, "feet"),
  20062. weight: math.unit(3280, "lb"),
  20063. name: "Back (Nude)",
  20064. image: {
  20065. source: "./media/characters/sapphy/back-nude.svg",
  20066. extra: 2058/1918,
  20067. bottom: 125/2183
  20068. },
  20069. form: "anthro"
  20070. },
  20071. full: {
  20072. height: math.unit(15, "feet"),
  20073. weight: math.unit(3280, "lb"),
  20074. name: "Full",
  20075. image: {
  20076. source: "./media/characters/sapphy/full.svg",
  20077. extra: 1396/1317,
  20078. bottom: 44/1440
  20079. },
  20080. form: "anthro"
  20081. },
  20082. dick: {
  20083. height: math.unit(3.8, "feet"),
  20084. name: "Dick",
  20085. image: {
  20086. source: "./media/characters/sapphy/dick.svg"
  20087. },
  20088. form: "anthro"
  20089. },
  20090. feral: {
  20091. height: math.unit(35, "feet"),
  20092. weight: math.unit(160, "tons"),
  20093. name: "Feral",
  20094. image: {
  20095. source: "./media/characters/sapphy/feral.svg",
  20096. extra: 1050/573,
  20097. bottom: 60/1110
  20098. },
  20099. form: "feral",
  20100. default: true
  20101. },
  20102. },
  20103. [
  20104. {
  20105. name: "Normal",
  20106. height: math.unit(15, "feet"),
  20107. form: "anthro"
  20108. },
  20109. {
  20110. name: "Casual Macro",
  20111. height: math.unit(120, "feet"),
  20112. form: "anthro"
  20113. },
  20114. {
  20115. name: "Macro",
  20116. height: math.unit(2150, "feet"),
  20117. default: true,
  20118. form: "anthro"
  20119. },
  20120. {
  20121. name: "Megamacro",
  20122. height: math.unit(8, "miles"),
  20123. form: "anthro"
  20124. },
  20125. {
  20126. name: "Galaxy Mom",
  20127. height: math.unit(6, "megalightyears"),
  20128. form: "anthro"
  20129. },
  20130. {
  20131. name: "Normal",
  20132. height: math.unit(35, "feet"),
  20133. form: "feral",
  20134. default: true
  20135. },
  20136. {
  20137. name: "Macro",
  20138. height: math.unit(300, "feet"),
  20139. form: "feral"
  20140. },
  20141. {
  20142. name: "Galaxy Mom",
  20143. height: math.unit(10, "megalightyears"),
  20144. form: "feral"
  20145. },
  20146. ],
  20147. {
  20148. "anthro": {
  20149. name: "Anthro",
  20150. default: true
  20151. },
  20152. "feral": {
  20153. name: "Feral"
  20154. }
  20155. }
  20156. ))
  20157. characterMakers.push(() => makeCharacter(
  20158. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20159. {
  20160. hyenaFront: {
  20161. height: math.unit(6, "feet"),
  20162. weight: math.unit(190, "lb"),
  20163. name: "Front",
  20164. image: {
  20165. source: "./media/characters/kiro/hyena-front.svg",
  20166. extra: 927/839,
  20167. bottom: 91/1018
  20168. },
  20169. form: "hyena",
  20170. default: true
  20171. },
  20172. front: {
  20173. height: math.unit(6, "feet"),
  20174. weight: math.unit(170, "lb"),
  20175. name: "Front",
  20176. image: {
  20177. source: "./media/characters/kiro/front.svg",
  20178. extra: 1064 / 1012,
  20179. bottom: 0.052
  20180. },
  20181. form: "folf",
  20182. default: true
  20183. },
  20184. },
  20185. [
  20186. {
  20187. name: "Micro",
  20188. height: math.unit(6, "inches"),
  20189. form: "folf"
  20190. },
  20191. {
  20192. name: "Normal",
  20193. height: math.unit(6, "feet"),
  20194. form: "folf",
  20195. default: true
  20196. },
  20197. {
  20198. name: "Macro",
  20199. height: math.unit(72, "feet"),
  20200. form: "folf"
  20201. },
  20202. {
  20203. name: "Micro",
  20204. height: math.unit(6, "inches"),
  20205. form: "hyena"
  20206. },
  20207. {
  20208. name: "Normal",
  20209. height: math.unit(6, "feet"),
  20210. form: "hyena",
  20211. default: true
  20212. },
  20213. {
  20214. name: "Macro",
  20215. height: math.unit(72, "feet"),
  20216. form: "hyena"
  20217. },
  20218. ],
  20219. {
  20220. "hyena": {
  20221. name: "Hyena",
  20222. default: true
  20223. },
  20224. "folf": {
  20225. name: "Folf",
  20226. },
  20227. }
  20228. ))
  20229. characterMakers.push(() => makeCharacter(
  20230. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20231. {
  20232. front: {
  20233. height: math.unit(5 + 9 / 12, "feet"),
  20234. weight: math.unit(175, "lb"),
  20235. name: "Front",
  20236. image: {
  20237. source: "./media/characters/irishfox/front.svg",
  20238. extra: 1912 / 1680,
  20239. bottom: 0.02
  20240. }
  20241. },
  20242. },
  20243. [
  20244. {
  20245. name: "Nano",
  20246. height: math.unit(1, "mm")
  20247. },
  20248. {
  20249. name: "Micro",
  20250. height: math.unit(2, "inches")
  20251. },
  20252. {
  20253. name: "Normal",
  20254. height: math.unit(5 + 9 / 12, "feet"),
  20255. default: true
  20256. },
  20257. {
  20258. name: "Macro",
  20259. height: math.unit(45, "feet")
  20260. },
  20261. ]
  20262. ))
  20263. characterMakers.push(() => makeCharacter(
  20264. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20265. {
  20266. front: {
  20267. height: math.unit(6 + 1 / 12, "feet"),
  20268. weight: math.unit(75, "lb"),
  20269. name: "Front",
  20270. image: {
  20271. source: "./media/characters/aronai-sieyes/front.svg",
  20272. extra: 1532/1450,
  20273. bottom: 42/1574
  20274. }
  20275. },
  20276. side: {
  20277. height: math.unit(6 + 1 / 12, "feet"),
  20278. weight: math.unit(75, "lb"),
  20279. name: "Side",
  20280. image: {
  20281. source: "./media/characters/aronai-sieyes/side.svg",
  20282. extra: 1422/1365,
  20283. bottom: 148/1570
  20284. }
  20285. },
  20286. back: {
  20287. height: math.unit(6 + 1 / 12, "feet"),
  20288. weight: math.unit(75, "lb"),
  20289. name: "Back",
  20290. image: {
  20291. source: "./media/characters/aronai-sieyes/back.svg",
  20292. extra: 1526/1464,
  20293. bottom: 51/1577
  20294. }
  20295. },
  20296. dressed: {
  20297. height: math.unit(6 + 1 / 12, "feet"),
  20298. weight: math.unit(75, "lb"),
  20299. name: "Dressed",
  20300. image: {
  20301. source: "./media/characters/aronai-sieyes/dressed.svg",
  20302. extra: 1559/1483,
  20303. bottom: 39/1598
  20304. }
  20305. },
  20306. slit: {
  20307. height: math.unit(1.3, "feet"),
  20308. name: "Slit",
  20309. image: {
  20310. source: "./media/characters/aronai-sieyes/slit.svg"
  20311. }
  20312. },
  20313. slitSpread: {
  20314. height: math.unit(0.9, "feet"),
  20315. name: "Slit (Spread)",
  20316. image: {
  20317. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20318. }
  20319. },
  20320. rump: {
  20321. height: math.unit(1.3, "feet"),
  20322. name: "Rump",
  20323. image: {
  20324. source: "./media/characters/aronai-sieyes/rump.svg"
  20325. }
  20326. },
  20327. maw: {
  20328. height: math.unit(1.25, "feet"),
  20329. name: "Maw",
  20330. image: {
  20331. source: "./media/characters/aronai-sieyes/maw.svg"
  20332. }
  20333. },
  20334. feral: {
  20335. height: math.unit(18, "feet"),
  20336. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20337. name: "Feral",
  20338. image: {
  20339. source: "./media/characters/aronai-sieyes/feral.svg",
  20340. extra: 1530 / 1240,
  20341. bottom: 0.035
  20342. }
  20343. },
  20344. },
  20345. [
  20346. {
  20347. name: "Micro",
  20348. height: math.unit(2, "inches")
  20349. },
  20350. {
  20351. name: "Normal",
  20352. height: math.unit(6 + 1 / 12, "feet"),
  20353. default: true
  20354. }
  20355. ]
  20356. ))
  20357. characterMakers.push(() => makeCharacter(
  20358. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20359. {
  20360. front: {
  20361. height: math.unit(12, "feet"),
  20362. weight: math.unit(410, "kg"),
  20363. name: "Front",
  20364. image: {
  20365. source: "./media/characters/xuna/front.svg",
  20366. extra: 2184 / 1980
  20367. }
  20368. },
  20369. side: {
  20370. height: math.unit(12, "feet"),
  20371. weight: math.unit(410, "kg"),
  20372. name: "Side",
  20373. image: {
  20374. source: "./media/characters/xuna/side.svg",
  20375. extra: 2184 / 1980
  20376. }
  20377. },
  20378. back: {
  20379. height: math.unit(12, "feet"),
  20380. weight: math.unit(410, "kg"),
  20381. name: "Back",
  20382. image: {
  20383. source: "./media/characters/xuna/back.svg",
  20384. extra: 2184 / 1980
  20385. }
  20386. },
  20387. },
  20388. [
  20389. {
  20390. name: "Nano glow",
  20391. height: math.unit(10, "nm")
  20392. },
  20393. {
  20394. name: "Micro floof",
  20395. height: math.unit(0.3, "m")
  20396. },
  20397. {
  20398. name: "Huggable softy boi",
  20399. height: math.unit(3.6576, "m"),
  20400. default: true
  20401. },
  20402. {
  20403. name: "Admirable floof",
  20404. height: math.unit(80, "meters")
  20405. },
  20406. {
  20407. name: "Gentle macro",
  20408. height: math.unit(300, "meters")
  20409. },
  20410. {
  20411. name: "Very careful floof",
  20412. height: math.unit(3200, "meters")
  20413. },
  20414. {
  20415. name: "The mega floof",
  20416. height: math.unit(36000, "meters")
  20417. },
  20418. {
  20419. name: "Giga-fur-Wicker",
  20420. height: math.unit(4800000, "meters")
  20421. },
  20422. {
  20423. name: "Licky world",
  20424. height: math.unit(20000000, "meters")
  20425. },
  20426. {
  20427. name: "Floofy cyan sun",
  20428. height: math.unit(1500000000, "meters")
  20429. },
  20430. {
  20431. name: "Milky Wicker",
  20432. height: math.unit(1000000000000000000000, "meters")
  20433. },
  20434. {
  20435. name: "The observing Wicker",
  20436. height: math.unit(999999999999999999999999999, "meters")
  20437. },
  20438. ]
  20439. ))
  20440. characterMakers.push(() => makeCharacter(
  20441. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20442. {
  20443. front: {
  20444. height: math.unit(5 + 9 / 12, "feet"),
  20445. weight: math.unit(150, "lb"),
  20446. name: "Front",
  20447. image: {
  20448. source: "./media/characters/arokha-sieyes/front.svg",
  20449. extra: 1425 / 1284,
  20450. bottom: 0.05
  20451. }
  20452. },
  20453. },
  20454. [
  20455. {
  20456. name: "Normal",
  20457. height: math.unit(5 + 9 / 12, "feet")
  20458. },
  20459. {
  20460. name: "Macro",
  20461. height: math.unit(30, "meters"),
  20462. default: true
  20463. },
  20464. ]
  20465. ))
  20466. characterMakers.push(() => makeCharacter(
  20467. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20468. {
  20469. front: {
  20470. height: math.unit(6, "feet"),
  20471. weight: math.unit(180, "lb"),
  20472. name: "Front",
  20473. image: {
  20474. source: "./media/characters/arokh-sieyes/front.svg",
  20475. extra: 1830 / 1769,
  20476. bottom: 0.01
  20477. }
  20478. },
  20479. },
  20480. [
  20481. {
  20482. name: "Normal",
  20483. height: math.unit(6, "feet")
  20484. },
  20485. {
  20486. name: "Macro",
  20487. height: math.unit(30, "meters"),
  20488. default: true
  20489. },
  20490. ]
  20491. ))
  20492. characterMakers.push(() => makeCharacter(
  20493. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20494. {
  20495. side: {
  20496. height: math.unit(13 + 1 / 12, "feet"),
  20497. weight: math.unit(8.5, "tonnes"),
  20498. preyCapacity: math.unit(36, "people"),
  20499. name: "Side",
  20500. image: {
  20501. source: "./media/characters/goldeneye/side.svg",
  20502. extra: 1139/741,
  20503. bottom: 98/1237
  20504. }
  20505. },
  20506. front: {
  20507. height: math.unit(5.1, "feet"),
  20508. weight: math.unit(8.5, "tonnes"),
  20509. preyCapacity: math.unit(36, "people"),
  20510. name: "Front",
  20511. image: {
  20512. source: "./media/characters/goldeneye/front.svg",
  20513. extra: 635/365,
  20514. bottom: 598/1233
  20515. }
  20516. },
  20517. maw: {
  20518. height: math.unit(6.6, "feet"),
  20519. name: "Maw",
  20520. image: {
  20521. source: "./media/characters/goldeneye/maw.svg"
  20522. }
  20523. },
  20524. headFront: {
  20525. height: math.unit(8, "feet"),
  20526. name: "Head (Front)",
  20527. image: {
  20528. source: "./media/characters/goldeneye/head-front.svg"
  20529. }
  20530. },
  20531. headSide: {
  20532. height: math.unit(6, "feet"),
  20533. name: "Head (Side)",
  20534. image: {
  20535. source: "./media/characters/goldeneye/head-side.svg"
  20536. }
  20537. },
  20538. headBack: {
  20539. height: math.unit(8, "feet"),
  20540. name: "Head (Back)",
  20541. image: {
  20542. source: "./media/characters/goldeneye/head-back.svg"
  20543. }
  20544. },
  20545. paw: {
  20546. height: math.unit(3.4, "feet"),
  20547. name: "Paw",
  20548. image: {
  20549. source: "./media/characters/goldeneye/paw.svg"
  20550. }
  20551. },
  20552. toering: {
  20553. height: math.unit(0.45, "feet"),
  20554. name: "Toering",
  20555. image: {
  20556. source: "./media/characters/goldeneye/toering.svg"
  20557. }
  20558. },
  20559. eyes: {
  20560. height: math.unit(0.5, "feet"),
  20561. name: "Eyes",
  20562. image: {
  20563. source: "./media/characters/goldeneye/eyes.svg"
  20564. }
  20565. },
  20566. },
  20567. [
  20568. {
  20569. name: "Normal",
  20570. height: math.unit(13 + 1 / 12, "feet"),
  20571. default: true
  20572. },
  20573. ]
  20574. ))
  20575. characterMakers.push(() => makeCharacter(
  20576. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20577. {
  20578. front: {
  20579. height: math.unit(6 + 1 / 12, "feet"),
  20580. weight: math.unit(210, "lb"),
  20581. name: "Front",
  20582. image: {
  20583. source: "./media/characters/leonardo-lycheborne/front.svg",
  20584. extra: 776/723,
  20585. bottom: 34/810
  20586. }
  20587. },
  20588. side: {
  20589. height: math.unit(6 + 1 / 12, "feet"),
  20590. weight: math.unit(210, "lb"),
  20591. name: "Side",
  20592. image: {
  20593. source: "./media/characters/leonardo-lycheborne/side.svg",
  20594. extra: 780/728,
  20595. bottom: 12/792
  20596. }
  20597. },
  20598. back: {
  20599. height: math.unit(6 + 1 / 12, "feet"),
  20600. weight: math.unit(210, "lb"),
  20601. name: "Back",
  20602. image: {
  20603. source: "./media/characters/leonardo-lycheborne/back.svg",
  20604. extra: 775/721,
  20605. bottom: 17/792
  20606. }
  20607. },
  20608. hand: {
  20609. height: math.unit(1.08, "feet"),
  20610. name: "Hand",
  20611. image: {
  20612. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20613. }
  20614. },
  20615. foot: {
  20616. height: math.unit(1.32, "feet"),
  20617. name: "Foot",
  20618. image: {
  20619. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20620. }
  20621. },
  20622. maw: {
  20623. height: math.unit(1, "feet"),
  20624. name: "Maw",
  20625. image: {
  20626. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20627. }
  20628. },
  20629. were: {
  20630. height: math.unit(20, "feet"),
  20631. weight: math.unit(7800, "lb"),
  20632. name: "Were",
  20633. image: {
  20634. source: "./media/characters/leonardo-lycheborne/were.svg",
  20635. extra: 1224/1165,
  20636. bottom: 72/1296
  20637. }
  20638. },
  20639. feral: {
  20640. height: math.unit(7.5, "feet"),
  20641. weight: math.unit(600, "lb"),
  20642. name: "Feral",
  20643. image: {
  20644. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20645. extra: 797/702,
  20646. bottom: 139/936
  20647. }
  20648. },
  20649. taur: {
  20650. height: math.unit(11, "feet"),
  20651. weight: math.unit(3300, "lb"),
  20652. name: "Taur",
  20653. image: {
  20654. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20655. extra: 1271/1197,
  20656. bottom: 47/1318
  20657. }
  20658. },
  20659. barghest: {
  20660. height: math.unit(11, "feet"),
  20661. weight: math.unit(1300, "lb"),
  20662. name: "Barghest",
  20663. image: {
  20664. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20665. extra: 1291/1204,
  20666. bottom: 37/1328
  20667. }
  20668. },
  20669. dick: {
  20670. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20671. name: "Dick",
  20672. image: {
  20673. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20674. }
  20675. },
  20676. dickWere: {
  20677. height: math.unit((20) / 3.8, "feet"),
  20678. name: "Dick (Were)",
  20679. image: {
  20680. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20681. }
  20682. },
  20683. },
  20684. [
  20685. {
  20686. name: "Normal",
  20687. height: math.unit(6 + 1 / 12, "feet"),
  20688. default: true
  20689. },
  20690. ]
  20691. ))
  20692. characterMakers.push(() => makeCharacter(
  20693. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20694. {
  20695. front: {
  20696. height: math.unit(10, "feet"),
  20697. weight: math.unit(350, "lb"),
  20698. name: "Front",
  20699. image: {
  20700. source: "./media/characters/jet/front.svg",
  20701. extra: 2050 / 1980,
  20702. bottom: 0.013
  20703. }
  20704. },
  20705. back: {
  20706. height: math.unit(10, "feet"),
  20707. weight: math.unit(350, "lb"),
  20708. name: "Back",
  20709. image: {
  20710. source: "./media/characters/jet/back.svg",
  20711. extra: 2050 / 1980,
  20712. bottom: 0.013
  20713. }
  20714. },
  20715. },
  20716. [
  20717. {
  20718. name: "Micro",
  20719. height: math.unit(6, "inches")
  20720. },
  20721. {
  20722. name: "Normal",
  20723. height: math.unit(10, "feet"),
  20724. default: true
  20725. },
  20726. {
  20727. name: "Macro",
  20728. height: math.unit(100, "feet")
  20729. },
  20730. ]
  20731. ))
  20732. characterMakers.push(() => makeCharacter(
  20733. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20734. {
  20735. front: {
  20736. height: math.unit(15, "feet"),
  20737. weight: math.unit(2800, "lb"),
  20738. name: "Front",
  20739. image: {
  20740. source: "./media/characters/tanarath/front.svg",
  20741. extra: 2392 / 2220,
  20742. bottom: 0.03
  20743. }
  20744. },
  20745. back: {
  20746. height: math.unit(15, "feet"),
  20747. weight: math.unit(2800, "lb"),
  20748. name: "Back",
  20749. image: {
  20750. source: "./media/characters/tanarath/back.svg",
  20751. extra: 2392 / 2220,
  20752. bottom: 0.03
  20753. }
  20754. },
  20755. },
  20756. [
  20757. {
  20758. name: "Normal",
  20759. height: math.unit(15, "feet"),
  20760. default: true
  20761. },
  20762. ]
  20763. ))
  20764. characterMakers.push(() => makeCharacter(
  20765. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20766. {
  20767. front: {
  20768. height: math.unit(7 + 1 / 12, "feet"),
  20769. weight: math.unit(175, "lb"),
  20770. name: "Front",
  20771. image: {
  20772. source: "./media/characters/patty-cattybatty/front.svg",
  20773. extra: 908 / 874,
  20774. bottom: 0.025
  20775. }
  20776. },
  20777. },
  20778. [
  20779. {
  20780. name: "Micro",
  20781. height: math.unit(1, "inch")
  20782. },
  20783. {
  20784. name: "Normal",
  20785. height: math.unit(7 + 1 / 12, "feet")
  20786. },
  20787. {
  20788. name: "Mini Macro",
  20789. height: math.unit(155, "feet")
  20790. },
  20791. {
  20792. name: "Macro",
  20793. height: math.unit(1077, "feet")
  20794. },
  20795. {
  20796. name: "Mega Macro",
  20797. height: math.unit(47650, "feet"),
  20798. default: true
  20799. },
  20800. {
  20801. name: "Giga Macro",
  20802. height: math.unit(440, "miles")
  20803. },
  20804. {
  20805. name: "Tera Macro",
  20806. height: math.unit(8700, "miles")
  20807. },
  20808. {
  20809. name: "Planetary Macro",
  20810. height: math.unit(32700, "miles")
  20811. },
  20812. {
  20813. name: "Solar Macro",
  20814. height: math.unit(550000, "miles")
  20815. },
  20816. {
  20817. name: "Celestial Macro",
  20818. height: math.unit(2.5, "AU")
  20819. },
  20820. ]
  20821. ))
  20822. characterMakers.push(() => makeCharacter(
  20823. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20824. {
  20825. front: {
  20826. height: math.unit(4 + 5 / 12, "feet"),
  20827. weight: math.unit(90, "lb"),
  20828. name: "Front",
  20829. image: {
  20830. source: "./media/characters/cappu/front.svg",
  20831. extra: 1247 / 1152,
  20832. bottom: 0.012
  20833. }
  20834. },
  20835. },
  20836. [
  20837. {
  20838. name: "Normal",
  20839. height: math.unit(4 + 5 / 12, "feet"),
  20840. default: true
  20841. },
  20842. ]
  20843. ))
  20844. characterMakers.push(() => makeCharacter(
  20845. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20846. {
  20847. frontDressed: {
  20848. height: math.unit(70, "cm"),
  20849. weight: math.unit(6, "kg"),
  20850. name: "Front (Dressed)",
  20851. image: {
  20852. source: "./media/characters/sebi/front-dressed.svg",
  20853. extra: 713.5 / 686.5,
  20854. bottom: 0.003
  20855. }
  20856. },
  20857. front: {
  20858. height: math.unit(70, "cm"),
  20859. weight: math.unit(5, "kg"),
  20860. name: "Front",
  20861. image: {
  20862. source: "./media/characters/sebi/front.svg",
  20863. extra: 713.5 / 686.5,
  20864. bottom: 0.003
  20865. }
  20866. }
  20867. },
  20868. [
  20869. {
  20870. name: "Normal",
  20871. height: math.unit(70, "cm"),
  20872. default: true
  20873. },
  20874. {
  20875. name: "Macro",
  20876. height: math.unit(8, "meters")
  20877. },
  20878. ]
  20879. ))
  20880. characterMakers.push(() => makeCharacter(
  20881. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20882. {
  20883. front: {
  20884. height: math.unit(6, "feet"),
  20885. weight: math.unit(150, "lb"),
  20886. name: "Front",
  20887. image: {
  20888. source: "./media/characters/typhek/front.svg",
  20889. extra: 1948 / 1929,
  20890. bottom: 0.025
  20891. }
  20892. },
  20893. side: {
  20894. height: math.unit(6, "feet"),
  20895. weight: math.unit(150, "lb"),
  20896. name: "Side",
  20897. image: {
  20898. source: "./media/characters/typhek/side.svg",
  20899. extra: 2034 / 2010,
  20900. bottom: 0.003
  20901. }
  20902. },
  20903. back: {
  20904. height: math.unit(6, "feet"),
  20905. weight: math.unit(150, "lb"),
  20906. name: "Back",
  20907. image: {
  20908. source: "./media/characters/typhek/back.svg",
  20909. extra: 2005 / 1978,
  20910. bottom: 0.004
  20911. }
  20912. },
  20913. palm: {
  20914. height: math.unit(1.2, "feet"),
  20915. name: "Palm",
  20916. image: {
  20917. source: "./media/characters/typhek/palm.svg"
  20918. }
  20919. },
  20920. fist: {
  20921. height: math.unit(1.1, "feet"),
  20922. name: "Fist",
  20923. image: {
  20924. source: "./media/characters/typhek/fist.svg"
  20925. }
  20926. },
  20927. foot: {
  20928. height: math.unit(1.57, "feet"),
  20929. name: "Foot",
  20930. image: {
  20931. source: "./media/characters/typhek/foot.svg"
  20932. }
  20933. },
  20934. sole: {
  20935. height: math.unit(2.05, "feet"),
  20936. name: "Sole",
  20937. image: {
  20938. source: "./media/characters/typhek/sole.svg"
  20939. }
  20940. },
  20941. },
  20942. [
  20943. {
  20944. name: "Macro",
  20945. height: math.unit(40, "stories"),
  20946. default: true
  20947. },
  20948. {
  20949. name: "Megamacro",
  20950. height: math.unit(1, "mile")
  20951. },
  20952. {
  20953. name: "Gigamacro",
  20954. height: math.unit(4000, "solarradii")
  20955. },
  20956. {
  20957. name: "Universal",
  20958. height: math.unit(1.1, "universes")
  20959. }
  20960. ]
  20961. ))
  20962. characterMakers.push(() => makeCharacter(
  20963. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20964. {
  20965. side: {
  20966. height: math.unit(5 + 7 / 12, "feet"),
  20967. weight: math.unit(150, "lb"),
  20968. name: "Side",
  20969. image: {
  20970. source: "./media/characters/kassy/side.svg",
  20971. extra: 1280 / 1225,
  20972. bottom: 0.002
  20973. }
  20974. },
  20975. front: {
  20976. height: math.unit(5 + 7 / 12, "feet"),
  20977. weight: math.unit(150, "lb"),
  20978. name: "Front",
  20979. image: {
  20980. source: "./media/characters/kassy/front.svg",
  20981. extra: 1280 / 1225,
  20982. bottom: 0.025
  20983. }
  20984. },
  20985. back: {
  20986. height: math.unit(5 + 7 / 12, "feet"),
  20987. weight: math.unit(150, "lb"),
  20988. name: "Back",
  20989. image: {
  20990. source: "./media/characters/kassy/back.svg",
  20991. extra: 1280 / 1225,
  20992. bottom: 0.002
  20993. }
  20994. },
  20995. foot: {
  20996. height: math.unit(1.266, "feet"),
  20997. name: "Foot",
  20998. image: {
  20999. source: "./media/characters/kassy/foot.svg"
  21000. }
  21001. },
  21002. },
  21003. [
  21004. {
  21005. name: "Normal",
  21006. height: math.unit(5 + 7 / 12, "feet")
  21007. },
  21008. {
  21009. name: "Macro",
  21010. height: math.unit(137, "feet"),
  21011. default: true
  21012. },
  21013. {
  21014. name: "Megamacro",
  21015. height: math.unit(1, "mile")
  21016. },
  21017. ]
  21018. ))
  21019. characterMakers.push(() => makeCharacter(
  21020. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21021. {
  21022. front: {
  21023. height: math.unit(6 + 1 / 12, "feet"),
  21024. weight: math.unit(200, "lb"),
  21025. name: "Front",
  21026. image: {
  21027. source: "./media/characters/neil/front.svg",
  21028. extra: 1326 / 1250,
  21029. bottom: 0.023
  21030. }
  21031. },
  21032. },
  21033. [
  21034. {
  21035. name: "Normal",
  21036. height: math.unit(6 + 1 / 12, "feet"),
  21037. default: true
  21038. },
  21039. {
  21040. name: "Macro",
  21041. height: math.unit(200, "feet")
  21042. },
  21043. ]
  21044. ))
  21045. characterMakers.push(() => makeCharacter(
  21046. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21047. {
  21048. front: {
  21049. height: math.unit(5 + 9 / 12, "feet"),
  21050. weight: math.unit(190, "lb"),
  21051. name: "Front",
  21052. image: {
  21053. source: "./media/characters/atticus/front.svg",
  21054. extra: 2934 / 2785,
  21055. bottom: 0.025
  21056. }
  21057. },
  21058. },
  21059. [
  21060. {
  21061. name: "Normal",
  21062. height: math.unit(5 + 9 / 12, "feet"),
  21063. default: true
  21064. },
  21065. {
  21066. name: "Macro",
  21067. height: math.unit(180, "feet")
  21068. },
  21069. ]
  21070. ))
  21071. characterMakers.push(() => makeCharacter(
  21072. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21073. {
  21074. side: {
  21075. height: math.unit(9, "feet"),
  21076. weight: math.unit(650, "lb"),
  21077. name: "Side",
  21078. image: {
  21079. source: "./media/characters/milo/side.svg",
  21080. extra: 2644 / 2310,
  21081. bottom: 0.032
  21082. }
  21083. },
  21084. },
  21085. [
  21086. {
  21087. name: "Normal",
  21088. height: math.unit(9, "feet"),
  21089. default: true
  21090. },
  21091. {
  21092. name: "Macro",
  21093. height: math.unit(300, "feet")
  21094. },
  21095. ]
  21096. ))
  21097. characterMakers.push(() => makeCharacter(
  21098. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21099. {
  21100. side: {
  21101. height: math.unit(8, "meters"),
  21102. weight: math.unit(90000, "kg"),
  21103. name: "Side",
  21104. image: {
  21105. source: "./media/characters/ijzer/side.svg",
  21106. extra: 2756 / 1600,
  21107. bottom: 0.01
  21108. }
  21109. },
  21110. },
  21111. [
  21112. {
  21113. name: "Small",
  21114. height: math.unit(3, "meters")
  21115. },
  21116. {
  21117. name: "Normal",
  21118. height: math.unit(8, "meters"),
  21119. default: true
  21120. },
  21121. {
  21122. name: "Normal+",
  21123. height: math.unit(10, "meters")
  21124. },
  21125. {
  21126. name: "Bigger",
  21127. height: math.unit(24, "meters")
  21128. },
  21129. {
  21130. name: "Huge",
  21131. height: math.unit(80, "meters")
  21132. },
  21133. ]
  21134. ))
  21135. characterMakers.push(() => makeCharacter(
  21136. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21137. {
  21138. front: {
  21139. height: math.unit(6 + 2 / 12, "feet"),
  21140. weight: math.unit(153, "lb"),
  21141. name: "Front",
  21142. image: {
  21143. source: "./media/characters/luca-cervicum/front.svg",
  21144. extra: 370 / 327,
  21145. bottom: 0.015
  21146. }
  21147. },
  21148. back: {
  21149. height: math.unit(6 + 2 / 12, "feet"),
  21150. weight: math.unit(153, "lb"),
  21151. name: "Back",
  21152. image: {
  21153. source: "./media/characters/luca-cervicum/back.svg",
  21154. extra: 367 / 333,
  21155. bottom: 0.005
  21156. }
  21157. },
  21158. frontGear: {
  21159. height: math.unit(6 + 2 / 12, "feet"),
  21160. weight: math.unit(173, "lb"),
  21161. name: "Front (Gear)",
  21162. image: {
  21163. source: "./media/characters/luca-cervicum/front-gear.svg",
  21164. extra: 377 / 333,
  21165. bottom: 0.006
  21166. }
  21167. },
  21168. },
  21169. [
  21170. {
  21171. name: "Normal",
  21172. height: math.unit(6 + 2 / 12, "feet"),
  21173. default: true
  21174. },
  21175. ]
  21176. ))
  21177. characterMakers.push(() => makeCharacter(
  21178. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21179. {
  21180. front: {
  21181. height: math.unit(6 + 1 / 12, "feet"),
  21182. weight: math.unit(304, "lb"),
  21183. name: "Front",
  21184. image: {
  21185. source: "./media/characters/oliver/front.svg",
  21186. extra: 157 / 143,
  21187. bottom: 0.08
  21188. }
  21189. },
  21190. },
  21191. [
  21192. {
  21193. name: "Normal",
  21194. height: math.unit(6 + 1 / 12, "feet"),
  21195. default: true
  21196. },
  21197. ]
  21198. ))
  21199. characterMakers.push(() => makeCharacter(
  21200. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21201. {
  21202. front: {
  21203. height: math.unit(5 + 7 / 12, "feet"),
  21204. weight: math.unit(140, "lb"),
  21205. name: "Front",
  21206. image: {
  21207. source: "./media/characters/shane/front.svg",
  21208. extra: 304 / 289,
  21209. bottom: 0.005
  21210. }
  21211. },
  21212. },
  21213. [
  21214. {
  21215. name: "Normal",
  21216. height: math.unit(5 + 7 / 12, "feet"),
  21217. default: true
  21218. },
  21219. ]
  21220. ))
  21221. characterMakers.push(() => makeCharacter(
  21222. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21223. {
  21224. front: {
  21225. height: math.unit(5 + 9 / 12, "feet"),
  21226. weight: math.unit(178, "lb"),
  21227. name: "Front",
  21228. image: {
  21229. source: "./media/characters/shin/front.svg",
  21230. extra: 159 / 151,
  21231. bottom: 0.015
  21232. }
  21233. },
  21234. },
  21235. [
  21236. {
  21237. name: "Normal",
  21238. height: math.unit(5 + 9 / 12, "feet"),
  21239. default: true
  21240. },
  21241. ]
  21242. ))
  21243. characterMakers.push(() => makeCharacter(
  21244. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21245. {
  21246. front: {
  21247. height: math.unit(5 + 10 / 12, "feet"),
  21248. weight: math.unit(168, "lb"),
  21249. name: "Front",
  21250. image: {
  21251. source: "./media/characters/xerxes/front.svg",
  21252. extra: 282 / 260,
  21253. bottom: 0.045
  21254. }
  21255. },
  21256. },
  21257. [
  21258. {
  21259. name: "Normal",
  21260. height: math.unit(5 + 10 / 12, "feet"),
  21261. default: true
  21262. },
  21263. ]
  21264. ))
  21265. characterMakers.push(() => makeCharacter(
  21266. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21267. {
  21268. front: {
  21269. height: math.unit(6 + 7 / 12, "feet"),
  21270. weight: math.unit(208, "lb"),
  21271. name: "Front",
  21272. image: {
  21273. source: "./media/characters/chaska/front.svg",
  21274. extra: 332 / 319,
  21275. bottom: 0.015
  21276. }
  21277. },
  21278. },
  21279. [
  21280. {
  21281. name: "Normal",
  21282. height: math.unit(6 + 7 / 12, "feet"),
  21283. default: true
  21284. },
  21285. ]
  21286. ))
  21287. characterMakers.push(() => makeCharacter(
  21288. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21289. {
  21290. front: {
  21291. height: math.unit(5 + 8 / 12, "feet"),
  21292. weight: math.unit(208, "lb"),
  21293. name: "Front",
  21294. image: {
  21295. source: "./media/characters/enuk/front.svg",
  21296. extra: 437 / 406,
  21297. bottom: 0.02
  21298. }
  21299. },
  21300. },
  21301. [
  21302. {
  21303. name: "Normal",
  21304. height: math.unit(5 + 8 / 12, "feet"),
  21305. default: true
  21306. },
  21307. ]
  21308. ))
  21309. characterMakers.push(() => makeCharacter(
  21310. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21311. {
  21312. front: {
  21313. height: math.unit(5 + 10 / 12, "feet"),
  21314. weight: math.unit(252, "lb"),
  21315. name: "Front",
  21316. image: {
  21317. source: "./media/characters/bruun/front.svg",
  21318. extra: 197 / 187,
  21319. bottom: 0.012
  21320. }
  21321. },
  21322. },
  21323. [
  21324. {
  21325. name: "Normal",
  21326. height: math.unit(5 + 10 / 12, "feet"),
  21327. default: true
  21328. },
  21329. ]
  21330. ))
  21331. characterMakers.push(() => makeCharacter(
  21332. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21333. {
  21334. front: {
  21335. height: math.unit(6 + 10 / 12, "feet"),
  21336. weight: math.unit(255, "lb"),
  21337. name: "Front",
  21338. image: {
  21339. source: "./media/characters/alexeev/front.svg",
  21340. extra: 213 / 200,
  21341. bottom: 0.05
  21342. }
  21343. },
  21344. },
  21345. [
  21346. {
  21347. name: "Normal",
  21348. height: math.unit(6 + 10 / 12, "feet"),
  21349. default: true
  21350. },
  21351. ]
  21352. ))
  21353. characterMakers.push(() => makeCharacter(
  21354. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21355. {
  21356. front: {
  21357. height: math.unit(2 + 8 / 12, "feet"),
  21358. weight: math.unit(22, "lb"),
  21359. name: "Front",
  21360. image: {
  21361. source: "./media/characters/evelyn/front.svg",
  21362. extra: 208 / 180
  21363. }
  21364. },
  21365. },
  21366. [
  21367. {
  21368. name: "Normal",
  21369. height: math.unit(2 + 8 / 12, "feet"),
  21370. default: true
  21371. },
  21372. ]
  21373. ))
  21374. characterMakers.push(() => makeCharacter(
  21375. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21376. {
  21377. front: {
  21378. height: math.unit(5 + 9 / 12, "feet"),
  21379. weight: math.unit(139, "lb"),
  21380. name: "Front",
  21381. image: {
  21382. source: "./media/characters/inca/front.svg",
  21383. extra: 294 / 291,
  21384. bottom: 0.03
  21385. }
  21386. },
  21387. },
  21388. [
  21389. {
  21390. name: "Normal",
  21391. height: math.unit(5 + 9 / 12, "feet"),
  21392. default: true
  21393. },
  21394. ]
  21395. ))
  21396. characterMakers.push(() => makeCharacter(
  21397. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21398. {
  21399. front: {
  21400. height: math.unit(6 + 3 / 12, "feet"),
  21401. weight: math.unit(185, "lb"),
  21402. name: "Front",
  21403. image: {
  21404. source: "./media/characters/mera/front.svg",
  21405. extra: 291 / 277,
  21406. bottom: 0.03
  21407. }
  21408. },
  21409. },
  21410. [
  21411. {
  21412. name: "Normal",
  21413. height: math.unit(6 + 3 / 12, "feet"),
  21414. default: true
  21415. },
  21416. ]
  21417. ))
  21418. characterMakers.push(() => makeCharacter(
  21419. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21420. {
  21421. front: {
  21422. height: math.unit(6 + 7 / 12, "feet"),
  21423. weight: math.unit(160, "lb"),
  21424. name: "Front",
  21425. image: {
  21426. source: "./media/characters/ceres/front.svg",
  21427. extra: 1023 / 950,
  21428. bottom: 0.027
  21429. }
  21430. },
  21431. back: {
  21432. height: math.unit(6 + 7 / 12, "feet"),
  21433. weight: math.unit(160, "lb"),
  21434. name: "Back",
  21435. image: {
  21436. source: "./media/characters/ceres/back.svg",
  21437. extra: 1023 / 950
  21438. }
  21439. },
  21440. },
  21441. [
  21442. {
  21443. name: "Normal",
  21444. height: math.unit(6 + 7 / 12, "feet"),
  21445. default: true
  21446. },
  21447. ]
  21448. ))
  21449. characterMakers.push(() => makeCharacter(
  21450. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21451. {
  21452. front: {
  21453. height: math.unit(5 + 10 / 12, "feet"),
  21454. weight: math.unit(150, "lb"),
  21455. name: "Front",
  21456. image: {
  21457. source: "./media/characters/kris/front.svg",
  21458. extra: 885 / 803,
  21459. bottom: 0.03
  21460. }
  21461. },
  21462. },
  21463. [
  21464. {
  21465. name: "Normal",
  21466. height: math.unit(5 + 10 / 12, "feet"),
  21467. default: true
  21468. },
  21469. ]
  21470. ))
  21471. characterMakers.push(() => makeCharacter(
  21472. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21473. {
  21474. front: {
  21475. height: math.unit(7, "feet"),
  21476. weight: math.unit(120, "kg"),
  21477. name: "Front",
  21478. image: {
  21479. source: "./media/characters/taluthus/front.svg",
  21480. extra: 903 / 833,
  21481. bottom: 0.015
  21482. }
  21483. },
  21484. },
  21485. [
  21486. {
  21487. name: "Normal",
  21488. height: math.unit(7, "feet"),
  21489. default: true
  21490. },
  21491. {
  21492. name: "Macro",
  21493. height: math.unit(300, "feet")
  21494. },
  21495. ]
  21496. ))
  21497. characterMakers.push(() => makeCharacter(
  21498. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21499. {
  21500. front: {
  21501. height: math.unit(5 + 9 / 12, "feet"),
  21502. weight: math.unit(145, "lb"),
  21503. name: "Front",
  21504. image: {
  21505. source: "./media/characters/dawn/front.svg",
  21506. extra: 2094 / 2016,
  21507. bottom: 0.025
  21508. }
  21509. },
  21510. back: {
  21511. height: math.unit(5 + 9 / 12, "feet"),
  21512. weight: math.unit(160, "lb"),
  21513. name: "Back",
  21514. image: {
  21515. source: "./media/characters/dawn/back.svg",
  21516. extra: 2112 / 2080,
  21517. bottom: 0.005
  21518. }
  21519. },
  21520. },
  21521. [
  21522. {
  21523. name: "Normal",
  21524. height: math.unit(6 + 7 / 12, "feet"),
  21525. default: true
  21526. },
  21527. ]
  21528. ))
  21529. characterMakers.push(() => makeCharacter(
  21530. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21531. {
  21532. anthro: {
  21533. height: math.unit(8 + 3 / 12, "feet"),
  21534. weight: math.unit(450, "lb"),
  21535. name: "Anthro",
  21536. image: {
  21537. source: "./media/characters/arador/anthro.svg",
  21538. extra: 1835 / 1718,
  21539. bottom: 0.025
  21540. }
  21541. },
  21542. feral: {
  21543. height: math.unit(4, "feet"),
  21544. weight: math.unit(200, "lb"),
  21545. name: "Feral",
  21546. image: {
  21547. source: "./media/characters/arador/feral.svg",
  21548. extra: 1683 / 1514,
  21549. bottom: 0.07
  21550. }
  21551. },
  21552. },
  21553. [
  21554. {
  21555. name: "Normal",
  21556. height: math.unit(8 + 3 / 12, "feet")
  21557. },
  21558. {
  21559. name: "Macro",
  21560. height: math.unit(82.5, "feet"),
  21561. default: true
  21562. },
  21563. ]
  21564. ))
  21565. characterMakers.push(() => makeCharacter(
  21566. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21567. {
  21568. front: {
  21569. height: math.unit(5 + 10 / 12, "feet"),
  21570. weight: math.unit(125, "lb"),
  21571. name: "Front",
  21572. image: {
  21573. source: "./media/characters/dharsi/front.svg",
  21574. extra: 716 / 630,
  21575. bottom: 0.035
  21576. }
  21577. },
  21578. },
  21579. [
  21580. {
  21581. name: "Nano",
  21582. height: math.unit(100, "nm")
  21583. },
  21584. {
  21585. name: "Micro",
  21586. height: math.unit(2, "inches")
  21587. },
  21588. {
  21589. name: "Normal",
  21590. height: math.unit(5 + 10 / 12, "feet"),
  21591. default: true
  21592. },
  21593. {
  21594. name: "Macro",
  21595. height: math.unit(1000, "feet")
  21596. },
  21597. {
  21598. name: "Megamacro",
  21599. height: math.unit(10, "miles")
  21600. },
  21601. {
  21602. name: "Gigamacro",
  21603. height: math.unit(3000, "miles")
  21604. },
  21605. {
  21606. name: "Teramacro",
  21607. height: math.unit(500000, "miles")
  21608. },
  21609. {
  21610. name: "Teramacro+",
  21611. height: math.unit(30, "galaxies")
  21612. },
  21613. ]
  21614. ))
  21615. characterMakers.push(() => makeCharacter(
  21616. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21617. {
  21618. front: {
  21619. height: math.unit(6, "feet"),
  21620. weight: math.unit(150, "lb"),
  21621. name: "Front",
  21622. image: {
  21623. source: "./media/characters/deathy/front.svg",
  21624. extra: 1552 / 1463,
  21625. bottom: 0.025
  21626. }
  21627. },
  21628. side: {
  21629. height: math.unit(6, "feet"),
  21630. weight: math.unit(150, "lb"),
  21631. name: "Side",
  21632. image: {
  21633. source: "./media/characters/deathy/side.svg",
  21634. extra: 1604 / 1455,
  21635. bottom: 0.025
  21636. }
  21637. },
  21638. back: {
  21639. height: math.unit(6, "feet"),
  21640. weight: math.unit(150, "lb"),
  21641. name: "Back",
  21642. image: {
  21643. source: "./media/characters/deathy/back.svg",
  21644. extra: 1580 / 1463,
  21645. bottom: 0.005
  21646. }
  21647. },
  21648. },
  21649. [
  21650. {
  21651. name: "Micro",
  21652. height: math.unit(5, "millimeters")
  21653. },
  21654. {
  21655. name: "Normal",
  21656. height: math.unit(6 + 5 / 12, "feet"),
  21657. default: true
  21658. },
  21659. ]
  21660. ))
  21661. characterMakers.push(() => makeCharacter(
  21662. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21663. {
  21664. front: {
  21665. height: math.unit(16, "feet"),
  21666. weight: math.unit(4000, "lb"),
  21667. name: "Front",
  21668. image: {
  21669. source: "./media/characters/juniper/front.svg",
  21670. bottom: 0.04
  21671. }
  21672. },
  21673. },
  21674. [
  21675. {
  21676. name: "Normal",
  21677. height: math.unit(16, "feet"),
  21678. default: true
  21679. },
  21680. ]
  21681. ))
  21682. characterMakers.push(() => makeCharacter(
  21683. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21684. {
  21685. front: {
  21686. height: math.unit(6, "feet"),
  21687. weight: math.unit(150, "lb"),
  21688. name: "Front",
  21689. image: {
  21690. source: "./media/characters/hipster/front.svg",
  21691. extra: 1312 / 1209,
  21692. bottom: 0.025
  21693. }
  21694. },
  21695. back: {
  21696. height: math.unit(6, "feet"),
  21697. weight: math.unit(150, "lb"),
  21698. name: "Back",
  21699. image: {
  21700. source: "./media/characters/hipster/back.svg",
  21701. extra: 1281 / 1196,
  21702. bottom: 0.01
  21703. }
  21704. },
  21705. },
  21706. [
  21707. {
  21708. name: "Micro",
  21709. height: math.unit(1, "mm")
  21710. },
  21711. {
  21712. name: "Normal",
  21713. height: math.unit(4, "inches"),
  21714. default: true
  21715. },
  21716. {
  21717. name: "Macro",
  21718. height: math.unit(500, "feet")
  21719. },
  21720. {
  21721. name: "Megamacro",
  21722. height: math.unit(1000, "miles")
  21723. },
  21724. ]
  21725. ))
  21726. characterMakers.push(() => makeCharacter(
  21727. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21728. {
  21729. front: {
  21730. height: math.unit(6, "feet"),
  21731. weight: math.unit(150, "lb"),
  21732. name: "Front",
  21733. image: {
  21734. source: "./media/characters/tendirmuldr/front.svg",
  21735. extra: 1878 / 1772,
  21736. bottom: 0.015
  21737. }
  21738. },
  21739. },
  21740. [
  21741. {
  21742. name: "Megamacro",
  21743. height: math.unit(1500, "miles"),
  21744. default: true
  21745. },
  21746. ]
  21747. ))
  21748. characterMakers.push(() => makeCharacter(
  21749. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21750. {
  21751. front: {
  21752. height: math.unit(14, "feet"),
  21753. weight: math.unit(12000, "lb"),
  21754. name: "Front",
  21755. image: {
  21756. source: "./media/characters/mort/front.svg",
  21757. extra: 365 / 318,
  21758. bottom: 0.01
  21759. }
  21760. },
  21761. side: {
  21762. height: math.unit(14, "feet"),
  21763. weight: math.unit(12000, "lb"),
  21764. name: "Side",
  21765. image: {
  21766. source: "./media/characters/mort/side.svg",
  21767. extra: 365 / 318,
  21768. bottom: 0.052
  21769. },
  21770. default: true
  21771. },
  21772. back: {
  21773. height: math.unit(14, "feet"),
  21774. weight: math.unit(12000, "lb"),
  21775. name: "Back",
  21776. image: {
  21777. source: "./media/characters/mort/back.svg",
  21778. extra: 371 / 332,
  21779. bottom: 0.18
  21780. }
  21781. },
  21782. },
  21783. [
  21784. {
  21785. name: "Normal",
  21786. height: math.unit(14, "feet"),
  21787. default: true
  21788. },
  21789. ]
  21790. ))
  21791. characterMakers.push(() => makeCharacter(
  21792. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21793. {
  21794. front: {
  21795. height: math.unit(8, "feet"),
  21796. weight: math.unit(1, "ton"),
  21797. name: "Front",
  21798. image: {
  21799. source: "./media/characters/lycoa/front.svg",
  21800. extra: 1836/1728,
  21801. bottom: 81/1917
  21802. }
  21803. },
  21804. back: {
  21805. height: math.unit(8, "feet"),
  21806. weight: math.unit(1, "ton"),
  21807. name: "Back",
  21808. image: {
  21809. source: "./media/characters/lycoa/back.svg",
  21810. extra: 1785/1720,
  21811. bottom: 91/1876
  21812. }
  21813. },
  21814. head: {
  21815. height: math.unit(1.6243, "feet"),
  21816. name: "Head",
  21817. image: {
  21818. source: "./media/characters/lycoa/head.svg",
  21819. extra: 1011/782,
  21820. bottom: 0/1011
  21821. }
  21822. },
  21823. tailmaw: {
  21824. height: math.unit(1.9, "feet"),
  21825. name: "Tailmaw",
  21826. image: {
  21827. source: "./media/characters/lycoa/tailmaw.svg"
  21828. }
  21829. },
  21830. tentacles: {
  21831. height: math.unit(2.1, "feet"),
  21832. name: "Tentacles",
  21833. image: {
  21834. source: "./media/characters/lycoa/tentacles.svg"
  21835. }
  21836. },
  21837. dick: {
  21838. height: math.unit(1.73, "feet"),
  21839. name: "Dick",
  21840. image: {
  21841. source: "./media/characters/lycoa/dick.svg"
  21842. }
  21843. },
  21844. },
  21845. [
  21846. {
  21847. name: "Normal",
  21848. height: math.unit(8, "feet"),
  21849. default: true
  21850. },
  21851. {
  21852. name: "Macro",
  21853. height: math.unit(30, "feet")
  21854. },
  21855. ]
  21856. ))
  21857. characterMakers.push(() => makeCharacter(
  21858. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21859. {
  21860. front: {
  21861. height: math.unit(4 + 2 / 12, "feet"),
  21862. weight: math.unit(70, "lb"),
  21863. name: "Front",
  21864. image: {
  21865. source: "./media/characters/naldara/front.svg",
  21866. extra: 1664/1387,
  21867. bottom: 81/1745
  21868. },
  21869. form: "anthro",
  21870. default: true
  21871. },
  21872. naga: {
  21873. height: math.unit(20, "feet"),
  21874. weight: math.unit(15000, "kg"),
  21875. name: "Front",
  21876. image: {
  21877. source: "./media/characters/naldara/naga.svg",
  21878. extra: 1590/1396,
  21879. bottom: 285/1875
  21880. },
  21881. form: "naga",
  21882. default: true
  21883. },
  21884. },
  21885. [
  21886. {
  21887. name: "Normal",
  21888. height: math.unit(4 + 2 / 12, "feet"),
  21889. form: "anthro",
  21890. default: true
  21891. },
  21892. {
  21893. name: "Normal",
  21894. height: math.unit(20, "feet"),
  21895. form: "naga",
  21896. default: true
  21897. },
  21898. ],
  21899. {
  21900. "anthro": {
  21901. name: "Anthro",
  21902. default: true
  21903. },
  21904. "naga": {
  21905. name: "Naga"
  21906. }
  21907. }
  21908. ))
  21909. characterMakers.push(() => makeCharacter(
  21910. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21911. {
  21912. front: {
  21913. height: math.unit(13 + 7 / 12, "feet"),
  21914. weight: math.unit(1500, "lb"),
  21915. name: "Front",
  21916. image: {
  21917. source: "./media/characters/briar/front.svg",
  21918. extra: 1223/1157,
  21919. bottom: 123/1346
  21920. }
  21921. },
  21922. },
  21923. [
  21924. {
  21925. name: "Normal",
  21926. height: math.unit(13 + 7 / 12, "feet"),
  21927. default: true
  21928. },
  21929. ]
  21930. ))
  21931. characterMakers.push(() => makeCharacter(
  21932. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21933. {
  21934. side: {
  21935. height: math.unit(16, "feet"),
  21936. weight: math.unit(500, "lb"),
  21937. name: "Side",
  21938. image: {
  21939. source: "./media/characters/vanguard/side.svg",
  21940. extra: 1022/914,
  21941. bottom: 30/1052
  21942. }
  21943. },
  21944. sideAlt: {
  21945. height: math.unit(10, "feet"),
  21946. weight: math.unit(500, "lb"),
  21947. name: "Side (Alt)",
  21948. image: {
  21949. source: "./media/characters/vanguard/side-alt.svg",
  21950. extra: 502 / 425,
  21951. bottom: 0.087
  21952. }
  21953. },
  21954. },
  21955. [
  21956. {
  21957. name: "Normal",
  21958. height: math.unit(17.71, "feet"),
  21959. default: true
  21960. },
  21961. ]
  21962. ))
  21963. characterMakers.push(() => makeCharacter(
  21964. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21965. {
  21966. front: {
  21967. height: math.unit(7.5, "feet"),
  21968. weight: math.unit(2, "lb"),
  21969. name: "Front",
  21970. image: {
  21971. source: "./media/characters/artemis/work-safe-front.svg",
  21972. extra: 1192 / 1075,
  21973. bottom: 0.07
  21974. },
  21975. form: "work-safe",
  21976. default: true
  21977. },
  21978. frontNsfw: {
  21979. height: math.unit(7.5, "feet"),
  21980. weight: math.unit(2, "lb"),
  21981. name: "Front",
  21982. image: {
  21983. source: "./media/characters/artemis/calibrating-front.svg",
  21984. extra: 1192 / 1075,
  21985. bottom: 0.07
  21986. },
  21987. form: "calibrating",
  21988. default: true
  21989. },
  21990. frontNsfwer: {
  21991. height: math.unit(7.5, "feet"),
  21992. weight: math.unit(2, "lb"),
  21993. name: "Front",
  21994. image: {
  21995. source: "./media/characters/artemis/oversize-load-front.svg",
  21996. extra: 1192 / 1075,
  21997. bottom: 0.07
  21998. },
  21999. form: "oversize-load",
  22000. default: true
  22001. },
  22002. side: {
  22003. height: math.unit(7.5, "feet"),
  22004. weight: math.unit(2, "lb"),
  22005. name: "Side",
  22006. image: {
  22007. source: "./media/characters/artemis/work-safe-side.svg",
  22008. extra: 1192 / 1075,
  22009. bottom: 0.07
  22010. },
  22011. form: "work-safe"
  22012. },
  22013. sideNsfw: {
  22014. height: math.unit(7.5, "feet"),
  22015. weight: math.unit(2, "lb"),
  22016. name: "Side",
  22017. image: {
  22018. source: "./media/characters/artemis/calibrating-side.svg",
  22019. extra: 1192 / 1075,
  22020. bottom: 0.07
  22021. },
  22022. form: "calibrating"
  22023. },
  22024. sideNsfwer: {
  22025. height: math.unit(7.5, "feet"),
  22026. weight: math.unit(2, "lb"),
  22027. name: "Side",
  22028. image: {
  22029. source: "./media/characters/artemis/oversize-load-side.svg",
  22030. extra: 1192 / 1075,
  22031. bottom: 0.07
  22032. },
  22033. form: "oversize-load"
  22034. },
  22035. maw: {
  22036. height: math.unit(1.1, "feet"),
  22037. name: "Maw",
  22038. image: {
  22039. source: "./media/characters/artemis/maw.svg"
  22040. },
  22041. form: "work-safe"
  22042. },
  22043. stomach: {
  22044. height: math.unit(0.95, "feet"),
  22045. name: "Stomach",
  22046. image: {
  22047. source: "./media/characters/artemis/stomach.svg"
  22048. },
  22049. form: "work-safe"
  22050. },
  22051. dickCanine: {
  22052. height: math.unit(1, "feet"),
  22053. name: "Dick (Canine)",
  22054. image: {
  22055. source: "./media/characters/artemis/dick-canine.svg"
  22056. },
  22057. form: "calibrating"
  22058. },
  22059. dickEquine: {
  22060. height: math.unit(0.85, "feet"),
  22061. name: "Dick (Equine)",
  22062. image: {
  22063. source: "./media/characters/artemis/dick-equine.svg"
  22064. },
  22065. form: "calibrating"
  22066. },
  22067. dickExotic: {
  22068. height: math.unit(0.85, "feet"),
  22069. name: "Dick (Exotic)",
  22070. image: {
  22071. source: "./media/characters/artemis/dick-exotic.svg"
  22072. },
  22073. form: "calibrating"
  22074. },
  22075. dickCanineBigger: {
  22076. height: math.unit(1 * 1.33, "feet"),
  22077. name: "Dick (Canine)",
  22078. image: {
  22079. source: "./media/characters/artemis/dick-canine.svg"
  22080. },
  22081. form: "oversize-load"
  22082. },
  22083. dickEquineBigger: {
  22084. height: math.unit(0.85 * 1.33, "feet"),
  22085. name: "Dick (Equine)",
  22086. image: {
  22087. source: "./media/characters/artemis/dick-equine.svg"
  22088. },
  22089. form: "oversize-load"
  22090. },
  22091. dickExoticBigger: {
  22092. height: math.unit(0.85 * 1.33, "feet"),
  22093. name: "Dick (Exotic)",
  22094. image: {
  22095. source: "./media/characters/artemis/dick-exotic.svg"
  22096. },
  22097. form: "oversize-load"
  22098. },
  22099. },
  22100. [
  22101. {
  22102. name: "Normal",
  22103. height: math.unit(7.5, "feet"),
  22104. form: "work-safe",
  22105. default: true
  22106. },
  22107. {
  22108. name: "Normal",
  22109. height: math.unit(7.5, "feet"),
  22110. form: "calibrating",
  22111. default: true
  22112. },
  22113. {
  22114. name: "Normal",
  22115. height: math.unit(7.5, "feet"),
  22116. form: "oversize-load",
  22117. default: true
  22118. },
  22119. {
  22120. name: "Enlarged",
  22121. height: math.unit(12, "feet"),
  22122. form: "work-safe",
  22123. },
  22124. {
  22125. name: "Enlarged",
  22126. height: math.unit(12, "feet"),
  22127. form: "calibrating",
  22128. },
  22129. {
  22130. name: "Enlarged",
  22131. height: math.unit(12, "feet"),
  22132. form: "oversize-load",
  22133. },
  22134. ],
  22135. {
  22136. "work-safe": {
  22137. name: "Work-Safe",
  22138. default: true
  22139. },
  22140. "calibrating": {
  22141. name: "Calibrating"
  22142. },
  22143. "oversize-load": {
  22144. name: "Oversize Load"
  22145. }
  22146. }
  22147. ))
  22148. characterMakers.push(() => makeCharacter(
  22149. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22150. {
  22151. front: {
  22152. height: math.unit(5 + 3 / 12, "feet"),
  22153. weight: math.unit(160, "lb"),
  22154. name: "Front",
  22155. image: {
  22156. source: "./media/characters/kira/front.svg",
  22157. extra: 906 / 786,
  22158. bottom: 0.01
  22159. }
  22160. },
  22161. back: {
  22162. height: math.unit(5 + 3 / 12, "feet"),
  22163. weight: math.unit(160, "lb"),
  22164. name: "Back",
  22165. image: {
  22166. source: "./media/characters/kira/back.svg",
  22167. extra: 882 / 757,
  22168. bottom: 0.005
  22169. }
  22170. },
  22171. frontDressed: {
  22172. height: math.unit(5 + 3 / 12, "feet"),
  22173. weight: math.unit(160, "lb"),
  22174. name: "Front (Dressed)",
  22175. image: {
  22176. source: "./media/characters/kira/front-dressed.svg",
  22177. extra: 906 / 786,
  22178. bottom: 0.01
  22179. }
  22180. },
  22181. beans: {
  22182. height: math.unit(0.92, "feet"),
  22183. name: "Beans",
  22184. image: {
  22185. source: "./media/characters/kira/beans.svg"
  22186. }
  22187. },
  22188. },
  22189. [
  22190. {
  22191. name: "Normal",
  22192. height: math.unit(5 + 3 / 12, "feet"),
  22193. default: true
  22194. },
  22195. ]
  22196. ))
  22197. characterMakers.push(() => makeCharacter(
  22198. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22199. {
  22200. front: {
  22201. height: math.unit(5 + 4 / 12, "feet"),
  22202. weight: math.unit(145, "lb"),
  22203. name: "Front",
  22204. image: {
  22205. source: "./media/characters/scramble/front.svg",
  22206. extra: 763 / 727,
  22207. bottom: 0.05
  22208. }
  22209. },
  22210. back: {
  22211. height: math.unit(5 + 4 / 12, "feet"),
  22212. weight: math.unit(145, "lb"),
  22213. name: "Back",
  22214. image: {
  22215. source: "./media/characters/scramble/back.svg",
  22216. extra: 826 / 737,
  22217. bottom: 0.002
  22218. }
  22219. },
  22220. },
  22221. [
  22222. {
  22223. name: "Normal",
  22224. height: math.unit(5 + 4 / 12, "feet"),
  22225. default: true
  22226. },
  22227. ]
  22228. ))
  22229. characterMakers.push(() => makeCharacter(
  22230. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22231. {
  22232. side: {
  22233. height: math.unit(6 + 2 / 12, "feet"),
  22234. weight: math.unit(190, "lb"),
  22235. name: "Side",
  22236. image: {
  22237. source: "./media/characters/biscuit/side.svg",
  22238. extra: 858 / 791,
  22239. bottom: 0.044
  22240. }
  22241. },
  22242. },
  22243. [
  22244. {
  22245. name: "Normal",
  22246. height: math.unit(6 + 2 / 12, "feet"),
  22247. default: true
  22248. },
  22249. ]
  22250. ))
  22251. characterMakers.push(() => makeCharacter(
  22252. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22253. {
  22254. front: {
  22255. height: math.unit(5 + 2 / 12, "feet"),
  22256. weight: math.unit(120, "lb"),
  22257. name: "Front",
  22258. image: {
  22259. source: "./media/characters/poffin/front.svg",
  22260. extra: 786 / 680,
  22261. bottom: 0.005
  22262. }
  22263. },
  22264. },
  22265. [
  22266. {
  22267. name: "Normal",
  22268. height: math.unit(5 + 2 / 12, "feet"),
  22269. default: true
  22270. },
  22271. ]
  22272. ))
  22273. characterMakers.push(() => makeCharacter(
  22274. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22275. {
  22276. front: {
  22277. height: math.unit(6 + 3 / 12, "feet"),
  22278. weight: math.unit(519, "lb"),
  22279. name: "Front",
  22280. image: {
  22281. source: "./media/characters/dhari/front.svg",
  22282. extra: 1048 / 946,
  22283. bottom: 0.015
  22284. }
  22285. },
  22286. back: {
  22287. height: math.unit(6 + 3 / 12, "feet"),
  22288. weight: math.unit(519, "lb"),
  22289. name: "Back",
  22290. image: {
  22291. source: "./media/characters/dhari/back.svg",
  22292. extra: 1048 / 931,
  22293. bottom: 0.005
  22294. }
  22295. },
  22296. frontDressed: {
  22297. height: math.unit(6 + 3 / 12, "feet"),
  22298. weight: math.unit(519, "lb"),
  22299. name: "Front (Dressed)",
  22300. image: {
  22301. source: "./media/characters/dhari/front-dressed.svg",
  22302. extra: 1713 / 1546,
  22303. bottom: 0.02
  22304. }
  22305. },
  22306. backDressed: {
  22307. height: math.unit(6 + 3 / 12, "feet"),
  22308. weight: math.unit(519, "lb"),
  22309. name: "Back (Dressed)",
  22310. image: {
  22311. source: "./media/characters/dhari/back-dressed.svg",
  22312. extra: 1699 / 1537,
  22313. bottom: 0.01
  22314. }
  22315. },
  22316. maw: {
  22317. height: math.unit(0.95, "feet"),
  22318. name: "Maw",
  22319. image: {
  22320. source: "./media/characters/dhari/maw.svg"
  22321. }
  22322. },
  22323. wereFront: {
  22324. height: math.unit(12 + 8 / 12, "feet"),
  22325. weight: math.unit(4000, "lb"),
  22326. name: "Front (Were)",
  22327. image: {
  22328. source: "./media/characters/dhari/were-front.svg",
  22329. extra: 1065 / 969,
  22330. bottom: 0.015
  22331. }
  22332. },
  22333. wereBack: {
  22334. height: math.unit(12 + 8 / 12, "feet"),
  22335. weight: math.unit(4000, "lb"),
  22336. name: "Back (Were)",
  22337. image: {
  22338. source: "./media/characters/dhari/were-back.svg",
  22339. extra: 1065 / 969,
  22340. bottom: 0.012
  22341. }
  22342. },
  22343. wereMaw: {
  22344. height: math.unit(0.625, "meters"),
  22345. name: "Maw (Were)",
  22346. image: {
  22347. source: "./media/characters/dhari/were-maw.svg"
  22348. }
  22349. },
  22350. },
  22351. [
  22352. {
  22353. name: "Normal",
  22354. height: math.unit(6 + 3 / 12, "feet"),
  22355. default: true
  22356. },
  22357. ]
  22358. ))
  22359. characterMakers.push(() => makeCharacter(
  22360. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22361. {
  22362. anthro: {
  22363. height: math.unit(5 + 7 / 12, "feet"),
  22364. weight: math.unit(175, "lb"),
  22365. name: "Anthro",
  22366. image: {
  22367. source: "./media/characters/rena-dyne/anthro.svg",
  22368. extra: 1849 / 1785,
  22369. bottom: 0.005
  22370. }
  22371. },
  22372. taur: {
  22373. height: math.unit(15 + 6 / 12, "feet"),
  22374. weight: math.unit(8000, "lb"),
  22375. name: "Taur",
  22376. image: {
  22377. source: "./media/characters/rena-dyne/taur.svg",
  22378. extra: 2315 / 2234,
  22379. bottom: 0.033
  22380. }
  22381. },
  22382. },
  22383. [
  22384. {
  22385. name: "Normal",
  22386. height: math.unit(5 + 7 / 12, "feet"),
  22387. default: true
  22388. },
  22389. ]
  22390. ))
  22391. characterMakers.push(() => makeCharacter(
  22392. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22393. {
  22394. front: {
  22395. height: math.unit(8, "feet"),
  22396. weight: math.unit(600, "lb"),
  22397. name: "Front",
  22398. image: {
  22399. source: "./media/characters/weremeep/front.svg",
  22400. extra: 970/849,
  22401. bottom: 7/977
  22402. }
  22403. },
  22404. },
  22405. [
  22406. {
  22407. name: "Normal",
  22408. height: math.unit(8, "feet"),
  22409. default: true
  22410. },
  22411. {
  22412. name: "Lorg",
  22413. height: math.unit(12, "feet")
  22414. },
  22415. {
  22416. name: "Oh Lawd She Comin'",
  22417. height: math.unit(20, "feet")
  22418. },
  22419. ]
  22420. ))
  22421. characterMakers.push(() => makeCharacter(
  22422. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22423. {
  22424. front: {
  22425. height: math.unit(4, "feet"),
  22426. weight: math.unit(90, "lb"),
  22427. name: "Front",
  22428. image: {
  22429. source: "./media/characters/reza/front.svg",
  22430. extra: 1183 / 1111,
  22431. bottom: 0.017
  22432. }
  22433. },
  22434. back: {
  22435. height: math.unit(4, "feet"),
  22436. weight: math.unit(90, "lb"),
  22437. name: "Back",
  22438. image: {
  22439. source: "./media/characters/reza/back.svg",
  22440. extra: 1183 / 1111,
  22441. bottom: 0.01
  22442. }
  22443. },
  22444. drake: {
  22445. height: math.unit(30, "feet"),
  22446. weight: math.unit(246960, "lb"),
  22447. name: "Drake",
  22448. image: {
  22449. source: "./media/characters/reza/drake.svg",
  22450. extra: 2350 / 2024,
  22451. bottom: 60.7 / 2403
  22452. }
  22453. },
  22454. },
  22455. [
  22456. {
  22457. name: "Normal",
  22458. height: math.unit(4, "feet"),
  22459. default: true
  22460. },
  22461. ]
  22462. ))
  22463. characterMakers.push(() => makeCharacter(
  22464. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22465. {
  22466. side: {
  22467. height: math.unit(15, "feet"),
  22468. weight: math.unit(14, "tons"),
  22469. name: "Side",
  22470. image: {
  22471. source: "./media/characters/athea/side.svg",
  22472. extra: 960 / 540,
  22473. bottom: 0.003
  22474. }
  22475. },
  22476. sitting: {
  22477. height: math.unit(6 * 2.85, "feet"),
  22478. weight: math.unit(14, "tons"),
  22479. name: "Sitting",
  22480. image: {
  22481. source: "./media/characters/athea/sitting.svg",
  22482. extra: 621 / 581,
  22483. bottom: 0.075
  22484. }
  22485. },
  22486. maw: {
  22487. height: math.unit(7.59498031496063, "feet"),
  22488. name: "Maw",
  22489. image: {
  22490. source: "./media/characters/athea/maw.svg"
  22491. }
  22492. },
  22493. },
  22494. [
  22495. {
  22496. name: "Lap Cat",
  22497. height: math.unit(2.5, "feet")
  22498. },
  22499. {
  22500. name: "Minimacro",
  22501. height: math.unit(15, "feet"),
  22502. default: true
  22503. },
  22504. {
  22505. name: "Macro",
  22506. height: math.unit(120, "feet")
  22507. },
  22508. {
  22509. name: "Macro+",
  22510. height: math.unit(640, "feet")
  22511. },
  22512. {
  22513. name: "Colossus",
  22514. height: math.unit(2.2, "miles")
  22515. },
  22516. ]
  22517. ))
  22518. characterMakers.push(() => makeCharacter(
  22519. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22520. {
  22521. front: {
  22522. height: math.unit(8 + 8 / 12, "feet"),
  22523. weight: math.unit(130, "kg"),
  22524. name: "Front",
  22525. image: {
  22526. source: "./media/characters/seroko/front.svg",
  22527. extra: 1385 / 1280,
  22528. bottom: 0.025
  22529. }
  22530. },
  22531. back: {
  22532. height: math.unit(8 + 8 / 12, "feet"),
  22533. weight: math.unit(130, "kg"),
  22534. name: "Back",
  22535. image: {
  22536. source: "./media/characters/seroko/back.svg",
  22537. extra: 1369 / 1238,
  22538. bottom: 0.018
  22539. }
  22540. },
  22541. frontDressed: {
  22542. height: math.unit(8 + 8 / 12, "feet"),
  22543. weight: math.unit(130, "kg"),
  22544. name: "Front (Dressed)",
  22545. image: {
  22546. source: "./media/characters/seroko/front-dressed.svg",
  22547. extra: 1366 / 1275,
  22548. bottom: 0.03
  22549. }
  22550. },
  22551. },
  22552. [
  22553. {
  22554. name: "Normal",
  22555. height: math.unit(8 + 8 / 12, "feet"),
  22556. default: true
  22557. },
  22558. ]
  22559. ))
  22560. characterMakers.push(() => makeCharacter(
  22561. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22562. {
  22563. front: {
  22564. height: math.unit(5.5, "feet"),
  22565. weight: math.unit(160, "lb"),
  22566. name: "Front",
  22567. image: {
  22568. source: "./media/characters/quatzi/front.svg",
  22569. extra: 2346 / 2242,
  22570. bottom: 0.015
  22571. }
  22572. },
  22573. },
  22574. [
  22575. {
  22576. name: "Normal",
  22577. height: math.unit(5.5, "feet"),
  22578. default: true
  22579. },
  22580. {
  22581. name: "Big",
  22582. height: math.unit(7.7, "feet")
  22583. },
  22584. ]
  22585. ))
  22586. characterMakers.push(() => makeCharacter(
  22587. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22588. {
  22589. front: {
  22590. height: math.unit(5 + 11 / 12, "feet"),
  22591. weight: math.unit(180, "lb"),
  22592. name: "Front",
  22593. image: {
  22594. source: "./media/characters/sen/front.svg",
  22595. extra: 1321 / 1254,
  22596. bottom: 0.015
  22597. }
  22598. },
  22599. side: {
  22600. height: math.unit(5 + 11 / 12, "feet"),
  22601. weight: math.unit(180, "lb"),
  22602. name: "Side",
  22603. image: {
  22604. source: "./media/characters/sen/side.svg",
  22605. extra: 1321 / 1254,
  22606. bottom: 0.007
  22607. }
  22608. },
  22609. back: {
  22610. height: math.unit(5 + 11 / 12, "feet"),
  22611. weight: math.unit(180, "lb"),
  22612. name: "Back",
  22613. image: {
  22614. source: "./media/characters/sen/back.svg",
  22615. extra: 1321 / 1254
  22616. }
  22617. },
  22618. },
  22619. [
  22620. {
  22621. name: "Normal",
  22622. height: math.unit(5 + 11 / 12, "feet"),
  22623. default: true
  22624. },
  22625. ]
  22626. ))
  22627. characterMakers.push(() => makeCharacter(
  22628. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22629. {
  22630. front: {
  22631. height: math.unit(166.6, "cm"),
  22632. weight: math.unit(66.6, "kg"),
  22633. name: "Front",
  22634. image: {
  22635. source: "./media/characters/fruity/front.svg",
  22636. extra: 1510 / 1386,
  22637. bottom: 0.04
  22638. }
  22639. },
  22640. back: {
  22641. height: math.unit(166.6, "cm"),
  22642. weight: math.unit(66.6, "lb"),
  22643. name: "Back",
  22644. image: {
  22645. source: "./media/characters/fruity/back.svg",
  22646. extra: 1563 / 1435,
  22647. bottom: 0.005
  22648. }
  22649. },
  22650. },
  22651. [
  22652. {
  22653. name: "Normal",
  22654. height: math.unit(166.6, "cm"),
  22655. default: true
  22656. },
  22657. {
  22658. name: "Demonic",
  22659. height: math.unit(166.6, "feet")
  22660. },
  22661. ]
  22662. ))
  22663. characterMakers.push(() => makeCharacter(
  22664. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22665. {
  22666. side: {
  22667. height: math.unit(10, "feet"),
  22668. weight: math.unit(500, "lb"),
  22669. name: "Side",
  22670. image: {
  22671. source: "./media/characters/zost/side.svg",
  22672. extra: 2870/2533,
  22673. bottom: 252/3122
  22674. }
  22675. },
  22676. mawFront: {
  22677. height: math.unit(1.08, "meters"),
  22678. name: "Maw (Front)",
  22679. image: {
  22680. source: "./media/characters/zost/maw-front.svg"
  22681. }
  22682. },
  22683. mawSide: {
  22684. height: math.unit(2.66, "feet"),
  22685. name: "Maw (Side)",
  22686. image: {
  22687. source: "./media/characters/zost/maw-side.svg"
  22688. }
  22689. },
  22690. wingspan: {
  22691. height: math.unit(7.4, "feet"),
  22692. name: "Wingspan",
  22693. image: {
  22694. source: "./media/characters/zost/wingspan.svg"
  22695. }
  22696. },
  22697. },
  22698. [
  22699. {
  22700. name: "Normal",
  22701. height: math.unit(10, "feet"),
  22702. default: true
  22703. },
  22704. ]
  22705. ))
  22706. characterMakers.push(() => makeCharacter(
  22707. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22708. {
  22709. front: {
  22710. height: math.unit(5 + 4 / 12, "feet"),
  22711. weight: math.unit(120, "lb"),
  22712. name: "Front",
  22713. image: {
  22714. source: "./media/characters/luci/front.svg",
  22715. extra: 1985 / 1884,
  22716. bottom: 0.04
  22717. }
  22718. },
  22719. back: {
  22720. height: math.unit(5 + 4 / 12, "feet"),
  22721. weight: math.unit(120, "lb"),
  22722. name: "Back",
  22723. image: {
  22724. source: "./media/characters/luci/back.svg",
  22725. extra: 1892 / 1791,
  22726. bottom: 0.002
  22727. }
  22728. },
  22729. },
  22730. [
  22731. {
  22732. name: "Normal",
  22733. height: math.unit(5 + 4 / 12, "feet"),
  22734. default: true
  22735. },
  22736. ]
  22737. ))
  22738. characterMakers.push(() => makeCharacter(
  22739. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22740. {
  22741. front: {
  22742. height: math.unit(1500, "feet"),
  22743. weight: math.unit(3.8e6, "tons"),
  22744. name: "Front",
  22745. image: {
  22746. source: "./media/characters/2th/front.svg",
  22747. extra: 3489 / 3350,
  22748. bottom: 0.1
  22749. }
  22750. },
  22751. foot: {
  22752. height: math.unit(461, "feet"),
  22753. name: "Foot",
  22754. image: {
  22755. source: "./media/characters/2th/foot.svg"
  22756. }
  22757. },
  22758. },
  22759. [
  22760. {
  22761. name: "\"Micro\"",
  22762. height: math.unit(15 + 7 / 12, "feet")
  22763. },
  22764. {
  22765. name: "Normal",
  22766. height: math.unit(1500, "feet"),
  22767. default: true
  22768. },
  22769. {
  22770. name: "Macro",
  22771. height: math.unit(5000, "feet")
  22772. },
  22773. {
  22774. name: "Megamacro",
  22775. height: math.unit(15, "miles")
  22776. },
  22777. {
  22778. name: "Gigamacro",
  22779. height: math.unit(4000, "miles")
  22780. },
  22781. {
  22782. name: "Galactic",
  22783. height: math.unit(50, "AU")
  22784. },
  22785. ]
  22786. ))
  22787. characterMakers.push(() => makeCharacter(
  22788. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22789. {
  22790. front: {
  22791. height: math.unit(5 + 6 / 12, "feet"),
  22792. weight: math.unit(220, "lb"),
  22793. name: "Front",
  22794. image: {
  22795. source: "./media/characters/amethyst/front.svg",
  22796. extra: 2078 / 2040,
  22797. bottom: 0.045
  22798. }
  22799. },
  22800. back: {
  22801. height: math.unit(5 + 6 / 12, "feet"),
  22802. weight: math.unit(220, "lb"),
  22803. name: "Back",
  22804. image: {
  22805. source: "./media/characters/amethyst/back.svg",
  22806. extra: 2021 / 1989,
  22807. bottom: 0.02
  22808. }
  22809. },
  22810. },
  22811. [
  22812. {
  22813. name: "Normal",
  22814. height: math.unit(5 + 6 / 12, "feet"),
  22815. default: true
  22816. },
  22817. ]
  22818. ))
  22819. characterMakers.push(() => makeCharacter(
  22820. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22821. {
  22822. front: {
  22823. height: math.unit(4 + 11 / 12, "feet"),
  22824. weight: math.unit(120, "lb"),
  22825. name: "Front",
  22826. image: {
  22827. source: "./media/characters/yumi-akiyama/front.svg",
  22828. extra: 1327 / 1235,
  22829. bottom: 0.02
  22830. }
  22831. },
  22832. back: {
  22833. height: math.unit(4 + 11 / 12, "feet"),
  22834. weight: math.unit(120, "lb"),
  22835. name: "Back",
  22836. image: {
  22837. source: "./media/characters/yumi-akiyama/back.svg",
  22838. extra: 1287 / 1245,
  22839. bottom: 0.002
  22840. }
  22841. },
  22842. },
  22843. [
  22844. {
  22845. name: "Galactic",
  22846. height: math.unit(50, "galaxies"),
  22847. default: true
  22848. },
  22849. {
  22850. name: "Universal",
  22851. height: math.unit(100, "universes")
  22852. },
  22853. ]
  22854. ))
  22855. characterMakers.push(() => makeCharacter(
  22856. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22857. {
  22858. front: {
  22859. height: math.unit(8, "feet"),
  22860. weight: math.unit(500, "lb"),
  22861. name: "Front",
  22862. image: {
  22863. source: "./media/characters/rifter-yrmori/front.svg",
  22864. extra: 1180 / 1125,
  22865. bottom: 0.02
  22866. }
  22867. },
  22868. back: {
  22869. height: math.unit(8, "feet"),
  22870. weight: math.unit(500, "lb"),
  22871. name: "Back",
  22872. image: {
  22873. source: "./media/characters/rifter-yrmori/back.svg",
  22874. extra: 1190 / 1145,
  22875. bottom: 0.001
  22876. }
  22877. },
  22878. wings: {
  22879. height: math.unit(7.75, "feet"),
  22880. weight: math.unit(500, "lb"),
  22881. name: "Wings",
  22882. image: {
  22883. source: "./media/characters/rifter-yrmori/wings.svg",
  22884. extra: 1357 / 1285
  22885. }
  22886. },
  22887. maw: {
  22888. height: math.unit(0.8, "feet"),
  22889. name: "Maw",
  22890. image: {
  22891. source: "./media/characters/rifter-yrmori/maw.svg"
  22892. }
  22893. },
  22894. mawfront: {
  22895. height: math.unit(1.45, "feet"),
  22896. name: "Maw (Front)",
  22897. image: {
  22898. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22899. }
  22900. },
  22901. },
  22902. [
  22903. {
  22904. name: "Normal",
  22905. height: math.unit(8, "feet"),
  22906. default: true
  22907. },
  22908. {
  22909. name: "Macro",
  22910. height: math.unit(42, "meters")
  22911. },
  22912. ]
  22913. ))
  22914. characterMakers.push(() => makeCharacter(
  22915. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22916. {
  22917. were: {
  22918. height: math.unit(25 + 6 / 12, "feet"),
  22919. weight: math.unit(10000, "lb"),
  22920. name: "Were",
  22921. image: {
  22922. source: "./media/characters/tahajin/were.svg",
  22923. extra: 801 / 770,
  22924. bottom: 0.042
  22925. }
  22926. },
  22927. aquatic: {
  22928. height: math.unit(6 + 4 / 12, "feet"),
  22929. weight: math.unit(160, "lb"),
  22930. name: "Aquatic",
  22931. image: {
  22932. source: "./media/characters/tahajin/aquatic.svg",
  22933. extra: 572 / 542,
  22934. bottom: 0.04
  22935. }
  22936. },
  22937. chow: {
  22938. height: math.unit(8 + 11 / 12, "feet"),
  22939. weight: math.unit(450, "lb"),
  22940. name: "Chow",
  22941. image: {
  22942. source: "./media/characters/tahajin/chow.svg",
  22943. extra: 660 / 640,
  22944. bottom: 0.015
  22945. }
  22946. },
  22947. demiNaga: {
  22948. height: math.unit(6 + 8 / 12, "feet"),
  22949. weight: math.unit(300, "lb"),
  22950. name: "Demi Naga",
  22951. image: {
  22952. source: "./media/characters/tahajin/demi-naga.svg",
  22953. extra: 643 / 615,
  22954. bottom: 0.1
  22955. }
  22956. },
  22957. data: {
  22958. height: math.unit(5, "inches"),
  22959. weight: math.unit(0.1, "lb"),
  22960. name: "Data",
  22961. image: {
  22962. source: "./media/characters/tahajin/data.svg"
  22963. }
  22964. },
  22965. fluu: {
  22966. height: math.unit(5 + 7 / 12, "feet"),
  22967. weight: math.unit(140, "lb"),
  22968. name: "Fluu",
  22969. image: {
  22970. source: "./media/characters/tahajin/fluu.svg",
  22971. extra: 628 / 592,
  22972. bottom: 0.02
  22973. }
  22974. },
  22975. starWarrior: {
  22976. height: math.unit(4 + 5 / 12, "feet"),
  22977. weight: math.unit(50, "lb"),
  22978. name: "Star Warrior",
  22979. image: {
  22980. source: "./media/characters/tahajin/star-warrior.svg"
  22981. }
  22982. },
  22983. },
  22984. [
  22985. {
  22986. name: "Normal",
  22987. height: math.unit(25 + 6 / 12, "feet"),
  22988. default: true
  22989. },
  22990. ]
  22991. ))
  22992. characterMakers.push(() => makeCharacter(
  22993. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22994. {
  22995. front: {
  22996. height: math.unit(8, "feet"),
  22997. weight: math.unit(350, "lb"),
  22998. name: "Front",
  22999. image: {
  23000. source: "./media/characters/gabira/front.svg",
  23001. extra: 1261/1154,
  23002. bottom: 51/1312
  23003. }
  23004. },
  23005. back: {
  23006. height: math.unit(8, "feet"),
  23007. weight: math.unit(350, "lb"),
  23008. name: "Back",
  23009. image: {
  23010. source: "./media/characters/gabira/back.svg",
  23011. extra: 1265/1163,
  23012. bottom: 46/1311
  23013. }
  23014. },
  23015. head: {
  23016. height: math.unit(2.85, "feet"),
  23017. name: "Head",
  23018. image: {
  23019. source: "./media/characters/gabira/head.svg"
  23020. }
  23021. },
  23022. },
  23023. [
  23024. {
  23025. name: "Normal",
  23026. height: math.unit(8, "feet"),
  23027. default: true
  23028. },
  23029. ]
  23030. ))
  23031. characterMakers.push(() => makeCharacter(
  23032. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23033. {
  23034. front: {
  23035. height: math.unit(5 + 3 / 12, "feet"),
  23036. weight: math.unit(137, "lb"),
  23037. name: "Front",
  23038. image: {
  23039. source: "./media/characters/sasha-katraine/front.svg",
  23040. extra: 1745/1694,
  23041. bottom: 37/1782
  23042. }
  23043. },
  23044. back: {
  23045. height: math.unit(5 + 3 / 12, "feet"),
  23046. weight: math.unit(137, "lb"),
  23047. name: "Back",
  23048. image: {
  23049. source: "./media/characters/sasha-katraine/back.svg",
  23050. extra: 1776/1699,
  23051. bottom: 26/1802
  23052. }
  23053. },
  23054. },
  23055. [
  23056. {
  23057. name: "Micro",
  23058. height: math.unit(5, "inches")
  23059. },
  23060. {
  23061. name: "Normal",
  23062. height: math.unit(5 + 3 / 12, "feet"),
  23063. default: true
  23064. },
  23065. ]
  23066. ))
  23067. characterMakers.push(() => makeCharacter(
  23068. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23069. {
  23070. side: {
  23071. height: math.unit(4, "inches"),
  23072. weight: math.unit(200, "grams"),
  23073. name: "Side",
  23074. image: {
  23075. source: "./media/characters/der/side.svg",
  23076. extra: 719 / 400,
  23077. bottom: 30.6 / 749.9187
  23078. }
  23079. },
  23080. },
  23081. [
  23082. {
  23083. name: "Micro",
  23084. height: math.unit(4, "inches"),
  23085. default: true
  23086. },
  23087. ]
  23088. ))
  23089. characterMakers.push(() => makeCharacter(
  23090. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23091. {
  23092. side: {
  23093. height: math.unit(30, "meters"),
  23094. weight: math.unit(700, "tonnes"),
  23095. name: "Side",
  23096. image: {
  23097. source: "./media/characters/fixerdragon/side.svg",
  23098. extra: (1293.0514 - 116.03) / 1106.86,
  23099. bottom: 116.03 / 1293.0514
  23100. }
  23101. },
  23102. },
  23103. [
  23104. {
  23105. name: "Planck",
  23106. height: math.unit(1.6e-35, "meters")
  23107. },
  23108. {
  23109. name: "Micro",
  23110. height: math.unit(0.4, "meters")
  23111. },
  23112. {
  23113. name: "Normal",
  23114. height: math.unit(30, "meters"),
  23115. default: true
  23116. },
  23117. {
  23118. name: "Megamacro",
  23119. height: math.unit(1.2, "megameters")
  23120. },
  23121. {
  23122. name: "Teramacro",
  23123. height: math.unit(130, "terameters")
  23124. },
  23125. {
  23126. name: "Yottamacro",
  23127. height: math.unit(6200, "yottameters")
  23128. },
  23129. ]
  23130. ));
  23131. characterMakers.push(() => makeCharacter(
  23132. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23133. {
  23134. front: {
  23135. height: math.unit(8, "feet"),
  23136. weight: math.unit(250, "lb"),
  23137. name: "Front",
  23138. image: {
  23139. source: "./media/characters/kite/front.svg",
  23140. extra: 2796 / 2659,
  23141. bottom: 0.002
  23142. }
  23143. },
  23144. },
  23145. [
  23146. {
  23147. name: "Normal",
  23148. height: math.unit(8, "feet"),
  23149. default: true
  23150. },
  23151. {
  23152. name: "Macro",
  23153. height: math.unit(360, "feet")
  23154. },
  23155. {
  23156. name: "Megamacro",
  23157. height: math.unit(1500, "feet")
  23158. },
  23159. ]
  23160. ))
  23161. characterMakers.push(() => makeCharacter(
  23162. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23163. {
  23164. front: {
  23165. height: math.unit(5 + 11/12, "feet"),
  23166. weight: math.unit(170, "lb"),
  23167. name: "Front",
  23168. image: {
  23169. source: "./media/characters/poojawa-vynar/front.svg",
  23170. extra: 1735/1585,
  23171. bottom: 96/1831
  23172. }
  23173. },
  23174. back: {
  23175. height: math.unit(5 + 11/12, "feet"),
  23176. weight: math.unit(170, "lb"),
  23177. name: "Back",
  23178. image: {
  23179. source: "./media/characters/poojawa-vynar/back.svg",
  23180. extra: 1749/1607,
  23181. bottom: 28/1777
  23182. }
  23183. },
  23184. male: {
  23185. height: math.unit(5 + 11/12, "feet"),
  23186. weight: math.unit(170, "lb"),
  23187. name: "Male",
  23188. image: {
  23189. source: "./media/characters/poojawa-vynar/male.svg",
  23190. extra: 1855/1713,
  23191. bottom: 63/1918
  23192. }
  23193. },
  23194. taur: {
  23195. height: math.unit(5 + 11/12, "feet"),
  23196. weight: math.unit(170, "lb"),
  23197. name: "Taur",
  23198. image: {
  23199. source: "./media/characters/poojawa-vynar/taur.svg",
  23200. extra: 1151/1059,
  23201. bottom: 356/1507
  23202. }
  23203. },
  23204. frontDressed: {
  23205. height: math.unit(5 + 11/12, "feet"),
  23206. weight: math.unit(170, "lb"),
  23207. name: "Front (Dressed)",
  23208. image: {
  23209. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23210. extra: 1735/1585,
  23211. bottom: 96/1831
  23212. }
  23213. },
  23214. backDressed: {
  23215. height: math.unit(5 + 11/12, "feet"),
  23216. weight: math.unit(170, "lb"),
  23217. name: "Back (Dressed)",
  23218. image: {
  23219. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23220. extra: 1749/1607,
  23221. bottom: 28/1777
  23222. }
  23223. },
  23224. maleDressed: {
  23225. height: math.unit(5 + 11/12, "feet"),
  23226. weight: math.unit(170, "lb"),
  23227. name: "Male (Dressed)",
  23228. image: {
  23229. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23230. extra: 1855/1713,
  23231. bottom: 63/1918
  23232. }
  23233. },
  23234. taurDressed: {
  23235. height: math.unit(5 + 11/12, "feet"),
  23236. weight: math.unit(170, "lb"),
  23237. name: "Taur (Dressed)",
  23238. image: {
  23239. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23240. extra: 1151/1059,
  23241. bottom: 356/1507
  23242. }
  23243. },
  23244. maw: {
  23245. height: math.unit(1.46, "feet"),
  23246. name: "Maw",
  23247. image: {
  23248. source: "./media/characters/poojawa-vynar/maw.svg"
  23249. }
  23250. },
  23251. head: {
  23252. height: math.unit(2.34, "feet"),
  23253. name: "Head",
  23254. image: {
  23255. source: "./media/characters/poojawa-vynar/head.svg"
  23256. }
  23257. },
  23258. paw: {
  23259. height: math.unit(1.61, "feet"),
  23260. name: "Paw",
  23261. image: {
  23262. source: "./media/characters/poojawa-vynar/paw.svg"
  23263. }
  23264. },
  23265. pawToering: {
  23266. height: math.unit(1.72, "feet"),
  23267. name: "Paw (Toering)",
  23268. image: {
  23269. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23270. }
  23271. },
  23272. toering: {
  23273. height: math.unit(2.9, "inches"),
  23274. name: "Toering",
  23275. image: {
  23276. source: "./media/characters/poojawa-vynar/toering.svg"
  23277. }
  23278. },
  23279. shaft: {
  23280. height: math.unit(0.625, "feet"),
  23281. name: "Shaft",
  23282. image: {
  23283. source: "./media/characters/poojawa-vynar/shaft.svg"
  23284. }
  23285. },
  23286. spade: {
  23287. height: math.unit(0.42, "feet"),
  23288. name: "Spade",
  23289. image: {
  23290. source: "./media/characters/poojawa-vynar/spade.svg"
  23291. }
  23292. },
  23293. },
  23294. [
  23295. {
  23296. name: "Shortstack",
  23297. height: math.unit(4, "feet")
  23298. },
  23299. {
  23300. name: "Normal",
  23301. height: math.unit(5 + 11 / 12, "feet"),
  23302. default: true
  23303. },
  23304. {
  23305. name: "Tauric",
  23306. height: math.unit(4, "meters")
  23307. },
  23308. ]
  23309. ))
  23310. characterMakers.push(() => makeCharacter(
  23311. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23312. {
  23313. front: {
  23314. height: math.unit(293, "meters"),
  23315. weight: math.unit(70400, "tons"),
  23316. name: "Front",
  23317. image: {
  23318. source: "./media/characters/violette/front.svg",
  23319. extra: 1227 / 1180,
  23320. bottom: 0.005
  23321. }
  23322. },
  23323. back: {
  23324. height: math.unit(293, "meters"),
  23325. weight: math.unit(70400, "tons"),
  23326. name: "Back",
  23327. image: {
  23328. source: "./media/characters/violette/back.svg",
  23329. extra: 1227 / 1180,
  23330. bottom: 0.005
  23331. }
  23332. },
  23333. },
  23334. [
  23335. {
  23336. name: "Macro",
  23337. height: math.unit(293, "meters"),
  23338. default: true
  23339. },
  23340. ]
  23341. ))
  23342. characterMakers.push(() => makeCharacter(
  23343. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23344. {
  23345. front: {
  23346. height: math.unit(1050, "feet"),
  23347. weight: math.unit(200000, "tons"),
  23348. name: "Front",
  23349. image: {
  23350. source: "./media/characters/alessandra/front.svg",
  23351. extra: 960 / 912,
  23352. bottom: 0.06
  23353. }
  23354. },
  23355. },
  23356. [
  23357. {
  23358. name: "Macro",
  23359. height: math.unit(1050, "feet")
  23360. },
  23361. {
  23362. name: "Macro+",
  23363. height: math.unit(900, "meters"),
  23364. default: true
  23365. },
  23366. ]
  23367. ))
  23368. characterMakers.push(() => makeCharacter(
  23369. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23370. {
  23371. front: {
  23372. height: math.unit(5, "feet"),
  23373. weight: math.unit(187, "lb"),
  23374. name: "Front",
  23375. image: {
  23376. source: "./media/characters/person/front.svg",
  23377. extra: 3087 / 2945,
  23378. bottom: 91 / 3181
  23379. }
  23380. },
  23381. },
  23382. [
  23383. {
  23384. name: "Micro",
  23385. height: math.unit(3, "inches")
  23386. },
  23387. {
  23388. name: "Normal",
  23389. height: math.unit(5, "feet"),
  23390. default: true
  23391. },
  23392. {
  23393. name: "Macro",
  23394. height: math.unit(90, "feet")
  23395. },
  23396. {
  23397. name: "Max Size",
  23398. height: math.unit(280, "feet")
  23399. },
  23400. ]
  23401. ))
  23402. characterMakers.push(() => makeCharacter(
  23403. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23404. {
  23405. front: {
  23406. height: math.unit(4.5, "meters"),
  23407. weight: math.unit(3200, "lb"),
  23408. name: "Front",
  23409. image: {
  23410. source: "./media/characters/ty/front.svg",
  23411. extra: 1038 / 960,
  23412. bottom: 31.156 / 1068
  23413. }
  23414. },
  23415. back: {
  23416. height: math.unit(4.5, "meters"),
  23417. weight: math.unit(3200, "lb"),
  23418. name: "Back",
  23419. image: {
  23420. source: "./media/characters/ty/back.svg",
  23421. extra: 1044 / 966,
  23422. bottom: 7.48 / 1049
  23423. }
  23424. },
  23425. },
  23426. [
  23427. {
  23428. name: "Normal",
  23429. height: math.unit(4.5, "meters"),
  23430. default: true
  23431. },
  23432. ]
  23433. ))
  23434. characterMakers.push(() => makeCharacter(
  23435. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23436. {
  23437. front: {
  23438. height: math.unit(5 + 4 / 12, "feet"),
  23439. weight: math.unit(115, "lb"),
  23440. name: "Front",
  23441. image: {
  23442. source: "./media/characters/rocky/front.svg",
  23443. extra: 1012 / 975,
  23444. bottom: 54 / 1066
  23445. }
  23446. },
  23447. },
  23448. [
  23449. {
  23450. name: "Normal",
  23451. height: math.unit(5 + 4 / 12, "feet"),
  23452. default: true
  23453. },
  23454. ]
  23455. ))
  23456. characterMakers.push(() => makeCharacter(
  23457. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23458. {
  23459. upright: {
  23460. height: math.unit(6, "meters"),
  23461. weight: math.unit(4000, "kg"),
  23462. name: "Upright",
  23463. image: {
  23464. source: "./media/characters/ruin/upright.svg",
  23465. extra: 668 / 661,
  23466. bottom: 42 / 799.8396
  23467. }
  23468. },
  23469. },
  23470. [
  23471. {
  23472. name: "Normal",
  23473. height: math.unit(6, "meters"),
  23474. default: true
  23475. },
  23476. ]
  23477. ))
  23478. characterMakers.push(() => makeCharacter(
  23479. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23480. {
  23481. front: {
  23482. height: math.unit(5, "feet"),
  23483. weight: math.unit(106, "lb"),
  23484. name: "Front",
  23485. image: {
  23486. source: "./media/characters/robin/front.svg",
  23487. extra: 862 / 799,
  23488. bottom: 42.4 / 914.8856
  23489. }
  23490. },
  23491. },
  23492. [
  23493. {
  23494. name: "Normal",
  23495. height: math.unit(5, "feet"),
  23496. default: true
  23497. },
  23498. ]
  23499. ))
  23500. characterMakers.push(() => makeCharacter(
  23501. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23502. {
  23503. side: {
  23504. height: math.unit(3, "feet"),
  23505. weight: math.unit(225, "lb"),
  23506. name: "Side",
  23507. image: {
  23508. source: "./media/characters/saian/side.svg",
  23509. extra: 566 / 356,
  23510. bottom: 79.7 / 643
  23511. }
  23512. },
  23513. maw: {
  23514. height: math.unit(2.85, "feet"),
  23515. name: "Maw",
  23516. image: {
  23517. source: "./media/characters/saian/maw.svg"
  23518. }
  23519. },
  23520. },
  23521. [
  23522. {
  23523. name: "Normal",
  23524. height: math.unit(3, "feet"),
  23525. default: true
  23526. },
  23527. ]
  23528. ))
  23529. characterMakers.push(() => makeCharacter(
  23530. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23531. {
  23532. side: {
  23533. height: math.unit(8, "feet"),
  23534. weight: math.unit(300, "lb"),
  23535. name: "Side",
  23536. image: {
  23537. source: "./media/characters/equus-silvermane/side.svg",
  23538. extra: 2176 / 2050,
  23539. bottom: 65.7 / 2245
  23540. }
  23541. },
  23542. front: {
  23543. height: math.unit(8, "feet"),
  23544. weight: math.unit(300, "lb"),
  23545. name: "Front",
  23546. image: {
  23547. source: "./media/characters/equus-silvermane/front.svg",
  23548. extra: 4633 / 4400,
  23549. bottom: 71.3 / 4706.915
  23550. }
  23551. },
  23552. sideStepping: {
  23553. height: math.unit(8, "feet"),
  23554. weight: math.unit(300, "lb"),
  23555. name: "Side (Stepping)",
  23556. image: {
  23557. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23558. extra: 1968 / 1860,
  23559. bottom: 16.4 / 1989
  23560. }
  23561. },
  23562. },
  23563. [
  23564. {
  23565. name: "Normal",
  23566. height: math.unit(8, "feet")
  23567. },
  23568. {
  23569. name: "Minimacro",
  23570. height: math.unit(75, "feet"),
  23571. default: true
  23572. },
  23573. {
  23574. name: "Macro",
  23575. height: math.unit(150, "feet")
  23576. },
  23577. {
  23578. name: "Macro+",
  23579. height: math.unit(1000, "feet")
  23580. },
  23581. {
  23582. name: "Megamacro",
  23583. height: math.unit(1, "mile")
  23584. },
  23585. ]
  23586. ))
  23587. characterMakers.push(() => makeCharacter(
  23588. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23589. {
  23590. side: {
  23591. height: math.unit(20, "feet"),
  23592. weight: math.unit(30000, "kg"),
  23593. name: "Side",
  23594. image: {
  23595. source: "./media/characters/windar/side.svg",
  23596. extra: 1491 / 1248,
  23597. bottom: 82.56 / 1568
  23598. }
  23599. },
  23600. },
  23601. [
  23602. {
  23603. name: "Normal",
  23604. height: math.unit(20, "feet"),
  23605. default: true
  23606. },
  23607. ]
  23608. ))
  23609. characterMakers.push(() => makeCharacter(
  23610. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23611. {
  23612. side: {
  23613. height: math.unit(15.66, "feet"),
  23614. weight: math.unit(150, "lb"),
  23615. name: "Side",
  23616. image: {
  23617. source: "./media/characters/melody/side.svg",
  23618. extra: 1097 / 944,
  23619. bottom: 11.8 / 1109
  23620. }
  23621. },
  23622. sideOutfit: {
  23623. height: math.unit(15.66, "feet"),
  23624. weight: math.unit(150, "lb"),
  23625. name: "Side (Outfit)",
  23626. image: {
  23627. source: "./media/characters/melody/side-outfit.svg",
  23628. extra: 1097 / 944,
  23629. bottom: 11.8 / 1109
  23630. }
  23631. },
  23632. },
  23633. [
  23634. {
  23635. name: "Normal",
  23636. height: math.unit(15.66, "feet"),
  23637. default: true
  23638. },
  23639. ]
  23640. ))
  23641. characterMakers.push(() => makeCharacter(
  23642. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23643. {
  23644. armoredFront: {
  23645. height: math.unit(8, "feet"),
  23646. weight: math.unit(325, "lb"),
  23647. name: "Front",
  23648. image: {
  23649. source: "./media/characters/windera/armored-front.svg",
  23650. extra: 1830/1598,
  23651. bottom: 151/1981
  23652. },
  23653. form: "armored",
  23654. default: true
  23655. },
  23656. macroFront: {
  23657. height: math.unit(70, "feet"),
  23658. weight: math.unit(315453, "lb"),
  23659. name: "Front",
  23660. image: {
  23661. source: "./media/characters/windera/macro-front.svg",
  23662. extra: 963/883,
  23663. bottom: 23/986
  23664. },
  23665. form: "macro",
  23666. default: true
  23667. },
  23668. },
  23669. [
  23670. {
  23671. name: "Normal",
  23672. height: math.unit(8, "feet"),
  23673. default: true,
  23674. form: "armored"
  23675. },
  23676. {
  23677. name: "Normal",
  23678. height: math.unit(70, "feet"),
  23679. default: true,
  23680. form: "macro"
  23681. },
  23682. ],
  23683. {
  23684. "armored": {
  23685. name: "Armored",
  23686. default: true
  23687. },
  23688. "macro": {
  23689. name: "Macro",
  23690. },
  23691. }
  23692. ))
  23693. characterMakers.push(() => makeCharacter(
  23694. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23695. {
  23696. front: {
  23697. height: math.unit(28.75, "feet"),
  23698. weight: math.unit(2000, "kg"),
  23699. name: "Front",
  23700. image: {
  23701. source: "./media/characters/sonear/front.svg",
  23702. extra: 1041.1 / 964.9,
  23703. bottom: 53.7 / 1096.6
  23704. }
  23705. },
  23706. },
  23707. [
  23708. {
  23709. name: "Normal",
  23710. height: math.unit(28.75, "feet"),
  23711. default: true
  23712. },
  23713. ]
  23714. ))
  23715. characterMakers.push(() => makeCharacter(
  23716. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23717. {
  23718. side: {
  23719. height: math.unit(25.5, "feet"),
  23720. weight: math.unit(23000, "kg"),
  23721. name: "Side",
  23722. image: {
  23723. source: "./media/characters/kanara/side.svg"
  23724. }
  23725. },
  23726. },
  23727. [
  23728. {
  23729. name: "Normal",
  23730. height: math.unit(25.5, "feet"),
  23731. default: true
  23732. },
  23733. ]
  23734. ))
  23735. characterMakers.push(() => makeCharacter(
  23736. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23737. {
  23738. side: {
  23739. height: math.unit(10, "feet"),
  23740. weight: math.unit(1000, "kg"),
  23741. name: "Side",
  23742. image: {
  23743. source: "./media/characters/ereus/side.svg",
  23744. extra: 1157 / 959,
  23745. bottom: 153 / 1312.5
  23746. }
  23747. },
  23748. },
  23749. [
  23750. {
  23751. name: "Normal",
  23752. height: math.unit(10, "feet"),
  23753. default: true
  23754. },
  23755. ]
  23756. ))
  23757. characterMakers.push(() => makeCharacter(
  23758. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23759. {
  23760. side: {
  23761. height: math.unit(4.5, "feet"),
  23762. weight: math.unit(500, "lb"),
  23763. name: "Side",
  23764. image: {
  23765. source: "./media/characters/e-ter/side.svg",
  23766. extra: 1550 / 1248,
  23767. bottom: 146 / 1694
  23768. }
  23769. },
  23770. },
  23771. [
  23772. {
  23773. name: "Normal",
  23774. height: math.unit(4.5, "feet"),
  23775. default: true
  23776. },
  23777. ]
  23778. ))
  23779. characterMakers.push(() => makeCharacter(
  23780. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23781. {
  23782. side: {
  23783. height: math.unit(9.7, "feet"),
  23784. weight: math.unit(4000, "kg"),
  23785. name: "Side",
  23786. image: {
  23787. source: "./media/characters/yamie/side.svg"
  23788. }
  23789. },
  23790. },
  23791. [
  23792. {
  23793. name: "Normal",
  23794. height: math.unit(9.7, "feet"),
  23795. default: true
  23796. },
  23797. ]
  23798. ))
  23799. characterMakers.push(() => makeCharacter(
  23800. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23801. {
  23802. front: {
  23803. height: math.unit(50, "feet"),
  23804. weight: math.unit(50000, "kg"),
  23805. name: "Front",
  23806. image: {
  23807. source: "./media/characters/anders/front.svg",
  23808. extra: 570 / 539,
  23809. bottom: 14.7 / 586.7
  23810. }
  23811. },
  23812. },
  23813. [
  23814. {
  23815. name: "Large",
  23816. height: math.unit(50, "feet")
  23817. },
  23818. {
  23819. name: "Macro",
  23820. height: math.unit(2000, "feet"),
  23821. default: true
  23822. },
  23823. {
  23824. name: "Megamacro",
  23825. height: math.unit(12, "miles")
  23826. },
  23827. ]
  23828. ))
  23829. characterMakers.push(() => makeCharacter(
  23830. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23831. {
  23832. front: {
  23833. height: math.unit(7 + 2 / 12, "feet"),
  23834. weight: math.unit(300, "lb"),
  23835. name: "Front",
  23836. image: {
  23837. source: "./media/characters/reban/front.svg",
  23838. extra: 1287/1212,
  23839. bottom: 148/1435
  23840. }
  23841. },
  23842. head: {
  23843. height: math.unit(1.95, "feet"),
  23844. name: "Head",
  23845. image: {
  23846. source: "./media/characters/reban/head.svg"
  23847. }
  23848. },
  23849. maw: {
  23850. height: math.unit(0.95, "feet"),
  23851. name: "Maw",
  23852. image: {
  23853. source: "./media/characters/reban/maw.svg"
  23854. }
  23855. },
  23856. foot: {
  23857. height: math.unit(1.65, "feet"),
  23858. name: "Foot",
  23859. image: {
  23860. source: "./media/characters/reban/foot.svg"
  23861. }
  23862. },
  23863. dick: {
  23864. height: math.unit(7 / 5, "feet"),
  23865. name: "Dick",
  23866. image: {
  23867. source: "./media/characters/reban/dick.svg"
  23868. }
  23869. },
  23870. },
  23871. [
  23872. {
  23873. name: "Natural Height",
  23874. height: math.unit(7 + 2 / 12, "feet")
  23875. },
  23876. {
  23877. name: "Macro",
  23878. height: math.unit(500, "feet"),
  23879. default: true
  23880. },
  23881. {
  23882. name: "Canon Height",
  23883. height: math.unit(50, "AU")
  23884. },
  23885. ]
  23886. ))
  23887. characterMakers.push(() => makeCharacter(
  23888. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23889. {
  23890. front: {
  23891. height: math.unit(6, "feet"),
  23892. weight: math.unit(150, "lb"),
  23893. name: "Front",
  23894. image: {
  23895. source: "./media/characters/terrance-keayes/front.svg",
  23896. extra: 1.005,
  23897. bottom: 151 / 1615
  23898. }
  23899. },
  23900. side: {
  23901. height: math.unit(6, "feet"),
  23902. weight: math.unit(150, "lb"),
  23903. name: "Side",
  23904. image: {
  23905. source: "./media/characters/terrance-keayes/side.svg",
  23906. extra: 1.005,
  23907. bottom: 129.4 / 1544
  23908. }
  23909. },
  23910. back: {
  23911. height: math.unit(6, "feet"),
  23912. weight: math.unit(150, "lb"),
  23913. name: "Back",
  23914. image: {
  23915. source: "./media/characters/terrance-keayes/back.svg",
  23916. extra: 1.005,
  23917. bottom: 58.4 / 1557.3
  23918. }
  23919. },
  23920. dick: {
  23921. height: math.unit(6 * 0.208, "feet"),
  23922. name: "Dick",
  23923. image: {
  23924. source: "./media/characters/terrance-keayes/dick.svg"
  23925. }
  23926. },
  23927. },
  23928. [
  23929. {
  23930. name: "Canon Height",
  23931. height: math.unit(35, "miles"),
  23932. default: true
  23933. },
  23934. ]
  23935. ))
  23936. characterMakers.push(() => makeCharacter(
  23937. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23938. {
  23939. front: {
  23940. height: math.unit(6, "feet"),
  23941. weight: math.unit(150, "lb"),
  23942. name: "Front",
  23943. image: {
  23944. source: "./media/characters/ofelia/front.svg",
  23945. extra: 1130/1117,
  23946. bottom: 91/1221
  23947. }
  23948. },
  23949. back: {
  23950. height: math.unit(6, "feet"),
  23951. weight: math.unit(150, "lb"),
  23952. name: "Back",
  23953. image: {
  23954. source: "./media/characters/ofelia/back.svg",
  23955. extra: 1172/1159,
  23956. bottom: 28/1200
  23957. }
  23958. },
  23959. maw: {
  23960. height: math.unit(1, "feet"),
  23961. name: "Maw",
  23962. image: {
  23963. source: "./media/characters/ofelia/maw.svg"
  23964. }
  23965. },
  23966. foot: {
  23967. height: math.unit(1.949, "feet"),
  23968. name: "Foot",
  23969. image: {
  23970. source: "./media/characters/ofelia/foot.svg"
  23971. }
  23972. },
  23973. },
  23974. [
  23975. {
  23976. name: "Canon Height",
  23977. height: math.unit(2000, "miles"),
  23978. default: true
  23979. },
  23980. ]
  23981. ))
  23982. characterMakers.push(() => makeCharacter(
  23983. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23984. {
  23985. front: {
  23986. height: math.unit(6, "feet"),
  23987. weight: math.unit(150, "lb"),
  23988. name: "Front",
  23989. image: {
  23990. source: "./media/characters/samuel/front.svg",
  23991. extra: 265 / 258,
  23992. bottom: 2 / 266.1566
  23993. }
  23994. },
  23995. },
  23996. [
  23997. {
  23998. name: "Macro",
  23999. height: math.unit(100, "feet"),
  24000. default: true
  24001. },
  24002. {
  24003. name: "Full Size",
  24004. height: math.unit(1000, "miles")
  24005. },
  24006. ]
  24007. ))
  24008. characterMakers.push(() => makeCharacter(
  24009. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24010. {
  24011. front: {
  24012. height: math.unit(6, "feet"),
  24013. weight: math.unit(300, "lb"),
  24014. name: "Front",
  24015. image: {
  24016. source: "./media/characters/beishir-kiel/front.svg",
  24017. extra: 569 / 547,
  24018. bottom: 41.9 / 609
  24019. }
  24020. },
  24021. maw: {
  24022. height: math.unit(6 * 0.202, "feet"),
  24023. name: "Maw",
  24024. image: {
  24025. source: "./media/characters/beishir-kiel/maw.svg"
  24026. }
  24027. },
  24028. },
  24029. [
  24030. {
  24031. name: "Macro",
  24032. height: math.unit(300, "feet"),
  24033. default: true
  24034. },
  24035. ]
  24036. ))
  24037. characterMakers.push(() => makeCharacter(
  24038. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24039. {
  24040. front: {
  24041. height: math.unit(5 + 7/12, "feet"),
  24042. weight: math.unit(120, "lb"),
  24043. name: "Front",
  24044. image: {
  24045. source: "./media/characters/logan-grey/front.svg",
  24046. extra: 1836/1738,
  24047. bottom: 108/1944
  24048. }
  24049. },
  24050. back: {
  24051. height: math.unit(5 + 7/12, "feet"),
  24052. weight: math.unit(120, "lb"),
  24053. name: "Back",
  24054. image: {
  24055. source: "./media/characters/logan-grey/back.svg",
  24056. extra: 1880/1794,
  24057. bottom: 24/1904
  24058. }
  24059. },
  24060. frontSfw: {
  24061. height: math.unit(5 + 7/12, "feet"),
  24062. weight: math.unit(120, "lb"),
  24063. name: "Front (SFW)",
  24064. image: {
  24065. source: "./media/characters/logan-grey/front-sfw.svg",
  24066. extra: 1836/1738,
  24067. bottom: 108/1944
  24068. }
  24069. },
  24070. backSfw: {
  24071. height: math.unit(5 + 7/12, "feet"),
  24072. weight: math.unit(120, "lb"),
  24073. name: "Back (SFW)",
  24074. image: {
  24075. source: "./media/characters/logan-grey/back-sfw.svg",
  24076. extra: 1880/1794,
  24077. bottom: 24/1904
  24078. }
  24079. },
  24080. hands: {
  24081. height: math.unit(0.84, "feet"),
  24082. name: "Hands",
  24083. image: {
  24084. source: "./media/characters/logan-grey/hands.svg"
  24085. }
  24086. },
  24087. paws: {
  24088. height: math.unit(0.72, "feet"),
  24089. name: "Paws",
  24090. image: {
  24091. source: "./media/characters/logan-grey/paws.svg"
  24092. }
  24093. },
  24094. cock: {
  24095. height: math.unit(1.45, "feet"),
  24096. name: "Cock",
  24097. image: {
  24098. source: "./media/characters/logan-grey/cock.svg"
  24099. }
  24100. },
  24101. cockAlt: {
  24102. height: math.unit(1.437, "feet"),
  24103. name: "Cock (alt)",
  24104. image: {
  24105. source: "./media/characters/logan-grey/cock-alt.svg"
  24106. }
  24107. },
  24108. },
  24109. [
  24110. {
  24111. name: "Normal",
  24112. height: math.unit(5 + 8 / 12, "feet")
  24113. },
  24114. {
  24115. name: "The 500 Foot Femboy",
  24116. height: math.unit(500, "feet"),
  24117. default: true
  24118. },
  24119. {
  24120. name: "Megmacro",
  24121. height: math.unit(20, "miles")
  24122. },
  24123. ]
  24124. ))
  24125. characterMakers.push(() => makeCharacter(
  24126. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24127. {
  24128. front: {
  24129. height: math.unit(8 + 2 / 12, "feet"),
  24130. weight: math.unit(275, "lb"),
  24131. name: "Front",
  24132. image: {
  24133. source: "./media/characters/draganta/front.svg",
  24134. extra: 1177 / 1135,
  24135. bottom: 33.46 / 1212.1
  24136. }
  24137. },
  24138. },
  24139. [
  24140. {
  24141. name: "Normal",
  24142. height: math.unit(8 + 6 / 12, "feet"),
  24143. default: true
  24144. },
  24145. {
  24146. name: "Macro",
  24147. height: math.unit(150, "feet")
  24148. },
  24149. {
  24150. name: "Megamacro",
  24151. height: math.unit(1000, "miles")
  24152. },
  24153. ]
  24154. ))
  24155. characterMakers.push(() => makeCharacter(
  24156. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24157. {
  24158. front: {
  24159. height: math.unit(1.72, "m"),
  24160. weight: math.unit(80, "lb"),
  24161. name: "Front",
  24162. image: {
  24163. source: "./media/characters/voski/front.svg",
  24164. extra: 2076.22 / 2022.4,
  24165. bottom: 102.7 / 2177.3866
  24166. }
  24167. },
  24168. frontFlaccid: {
  24169. height: math.unit(1.72, "m"),
  24170. weight: math.unit(80, "lb"),
  24171. name: "Front (Flaccid)",
  24172. image: {
  24173. source: "./media/characters/voski/front-flaccid.svg",
  24174. extra: 2076.22 / 2022.4,
  24175. bottom: 102.7 / 2177.3866
  24176. }
  24177. },
  24178. frontErect: {
  24179. height: math.unit(1.72, "m"),
  24180. weight: math.unit(80, "lb"),
  24181. name: "Front (Erect)",
  24182. image: {
  24183. source: "./media/characters/voski/front-erect.svg",
  24184. extra: 2076.22 / 2022.4,
  24185. bottom: 102.7 / 2177.3866
  24186. }
  24187. },
  24188. back: {
  24189. height: math.unit(1.72, "m"),
  24190. weight: math.unit(80, "lb"),
  24191. name: "Back",
  24192. image: {
  24193. source: "./media/characters/voski/back.svg",
  24194. extra: 2104 / 2051,
  24195. bottom: 10.45 / 2113.63
  24196. }
  24197. },
  24198. },
  24199. [
  24200. {
  24201. name: "Normal",
  24202. height: math.unit(1.72, "m")
  24203. },
  24204. {
  24205. name: "Macro",
  24206. height: math.unit(55, "m"),
  24207. default: true
  24208. },
  24209. {
  24210. name: "Macro+",
  24211. height: math.unit(300, "m")
  24212. },
  24213. {
  24214. name: "Macro++",
  24215. height: math.unit(700, "m")
  24216. },
  24217. {
  24218. name: "Macro+++",
  24219. height: math.unit(4500, "m")
  24220. },
  24221. {
  24222. name: "Macro++++",
  24223. height: math.unit(45, "km")
  24224. },
  24225. {
  24226. name: "Macro+++++",
  24227. height: math.unit(1220, "km")
  24228. },
  24229. ]
  24230. ))
  24231. characterMakers.push(() => makeCharacter(
  24232. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24233. {
  24234. front: {
  24235. height: math.unit(2.3, "m"),
  24236. weight: math.unit(304, "kg"),
  24237. name: "Front",
  24238. image: {
  24239. source: "./media/characters/icowom-lee/front.svg",
  24240. extra: 985 / 955,
  24241. bottom: 25.4 / 1012
  24242. }
  24243. },
  24244. fronttentacles: {
  24245. height: math.unit(2.3, "m"),
  24246. weight: math.unit(304, "kg"),
  24247. name: "Front-tentacles",
  24248. image: {
  24249. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24250. extra: 985 / 955,
  24251. bottom: 25.4 / 1012
  24252. }
  24253. },
  24254. back: {
  24255. height: math.unit(2.3, "m"),
  24256. weight: math.unit(304, "kg"),
  24257. name: "Back",
  24258. image: {
  24259. source: "./media/characters/icowom-lee/back.svg",
  24260. extra: 975 / 954,
  24261. bottom: 9.5 / 985
  24262. }
  24263. },
  24264. backtentacles: {
  24265. height: math.unit(2.3, "m"),
  24266. weight: math.unit(304, "kg"),
  24267. name: "Back-tentacles",
  24268. image: {
  24269. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24270. extra: 975 / 954,
  24271. bottom: 9.5 / 985
  24272. }
  24273. },
  24274. frontDressed: {
  24275. height: math.unit(2.3, "m"),
  24276. weight: math.unit(304, "kg"),
  24277. name: "Front (Dressed)",
  24278. image: {
  24279. source: "./media/characters/icowom-lee/front-dressed.svg",
  24280. extra: 3076 / 2933,
  24281. bottom: 51.4 / 3125.1889
  24282. }
  24283. },
  24284. rump: {
  24285. height: math.unit(0.776, "meters"),
  24286. name: "Rump",
  24287. image: {
  24288. source: "./media/characters/icowom-lee/rump.svg"
  24289. }
  24290. },
  24291. genitals: {
  24292. height: math.unit(0.78, "meters"),
  24293. name: "Genitals",
  24294. image: {
  24295. source: "./media/characters/icowom-lee/genitals.svg"
  24296. }
  24297. },
  24298. },
  24299. [
  24300. {
  24301. name: "Normal",
  24302. height: math.unit(2.3, "meters"),
  24303. default: true
  24304. },
  24305. {
  24306. name: "Macro",
  24307. height: math.unit(94, "meters"),
  24308. default: true
  24309. },
  24310. ]
  24311. ))
  24312. characterMakers.push(() => makeCharacter(
  24313. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24314. {
  24315. front: {
  24316. height: math.unit(22, "meters"),
  24317. weight: math.unit(21000, "kg"),
  24318. name: "Front",
  24319. image: {
  24320. source: "./media/characters/shock-diamond/front.svg",
  24321. extra: 2204 / 2053,
  24322. bottom: 65 / 2239.47
  24323. }
  24324. },
  24325. frontNude: {
  24326. height: math.unit(22, "meters"),
  24327. weight: math.unit(21000, "kg"),
  24328. name: "Front (Nude)",
  24329. image: {
  24330. source: "./media/characters/shock-diamond/front-nude.svg",
  24331. extra: 2514 / 2285,
  24332. bottom: 13 / 2527.56
  24333. }
  24334. },
  24335. },
  24336. [
  24337. {
  24338. name: "Normal",
  24339. height: math.unit(3, "meters")
  24340. },
  24341. {
  24342. name: "Macro",
  24343. height: math.unit(22, "meters"),
  24344. default: true
  24345. },
  24346. ]
  24347. ))
  24348. characterMakers.push(() => makeCharacter(
  24349. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24350. {
  24351. front: {
  24352. height: math.unit(5 + 4/12, "feet"),
  24353. weight: math.unit(125, "lb"),
  24354. name: "Front",
  24355. image: {
  24356. source: "./media/characters/rory/front.svg",
  24357. extra: 1790/1681,
  24358. bottom: 66/1856
  24359. }
  24360. },
  24361. back: {
  24362. height: math.unit(5 + 4/12, "feet"),
  24363. weight: math.unit(125, "lb"),
  24364. name: "Back",
  24365. image: {
  24366. source: "./media/characters/rory/back.svg",
  24367. extra: 1805/1690,
  24368. bottom: 56/1861
  24369. }
  24370. },
  24371. frontDressed: {
  24372. height: math.unit(5 + 4/12, "feet"),
  24373. weight: math.unit(125, "lb"),
  24374. name: "Front (Dressed)",
  24375. image: {
  24376. source: "./media/characters/rory/front-dressed.svg",
  24377. extra: 1790/1681,
  24378. bottom: 66/1856
  24379. }
  24380. },
  24381. backDressed: {
  24382. height: math.unit(5 + 4/12, "feet"),
  24383. weight: math.unit(125, "lb"),
  24384. name: "Back (Dressed)",
  24385. image: {
  24386. source: "./media/characters/rory/back-dressed.svg",
  24387. extra: 1805/1690,
  24388. bottom: 56/1861
  24389. }
  24390. },
  24391. frontNsfw: {
  24392. height: math.unit(5 + 4/12, "feet"),
  24393. weight: math.unit(125, "lb"),
  24394. name: "Front (NSFW)",
  24395. image: {
  24396. source: "./media/characters/rory/front-nsfw.svg",
  24397. extra: 1790/1681,
  24398. bottom: 66/1856
  24399. }
  24400. },
  24401. backNsfw: {
  24402. height: math.unit(5 + 4/12, "feet"),
  24403. weight: math.unit(125, "lb"),
  24404. name: "Back (NSFW)",
  24405. image: {
  24406. source: "./media/characters/rory/back-nsfw.svg",
  24407. extra: 1805/1690,
  24408. bottom: 56/1861
  24409. }
  24410. },
  24411. dick: {
  24412. height: math.unit(0.8, "feet"),
  24413. name: "Dick",
  24414. image: {
  24415. source: "./media/characters/rory/dick.svg"
  24416. }
  24417. },
  24418. },
  24419. [
  24420. {
  24421. name: "Micro",
  24422. height: math.unit(3, "inches")
  24423. },
  24424. {
  24425. name: "Normal",
  24426. height: math.unit(5 + 4/12, "feet"),
  24427. default: true
  24428. },
  24429. {
  24430. name: "Macro",
  24431. height: math.unit(90, "feet")
  24432. },
  24433. {
  24434. name: "Supercharged",
  24435. height: math.unit(270, "feet")
  24436. },
  24437. ]
  24438. ))
  24439. characterMakers.push(() => makeCharacter(
  24440. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24441. {
  24442. front: {
  24443. height: math.unit(5 + 9 / 12, "feet"),
  24444. weight: math.unit(190, "lb"),
  24445. name: "Front",
  24446. image: {
  24447. source: "./media/characters/sprisk/front.svg",
  24448. extra: 1225 / 1180,
  24449. bottom: 42.7 / 1266.4
  24450. }
  24451. },
  24452. frontNsfw: {
  24453. height: math.unit(5 + 9 / 12, "feet"),
  24454. weight: math.unit(190, "lb"),
  24455. name: "Front (NSFW)",
  24456. image: {
  24457. source: "./media/characters/sprisk/front-nsfw.svg",
  24458. extra: 1225 / 1180,
  24459. bottom: 42.7 / 1266.4
  24460. }
  24461. },
  24462. back: {
  24463. height: math.unit(5 + 9 / 12, "feet"),
  24464. weight: math.unit(190, "lb"),
  24465. name: "Back",
  24466. image: {
  24467. source: "./media/characters/sprisk/back.svg",
  24468. extra: 1247 / 1200,
  24469. bottom: 5.6 / 1253.04
  24470. }
  24471. },
  24472. },
  24473. [
  24474. {
  24475. name: "Tiny",
  24476. height: math.unit(2, "inches")
  24477. },
  24478. {
  24479. name: "Normal",
  24480. height: math.unit(5 + 9 / 12, "feet"),
  24481. default: true
  24482. },
  24483. {
  24484. name: "Mini Macro",
  24485. height: math.unit(18, "feet")
  24486. },
  24487. {
  24488. name: "Macro",
  24489. height: math.unit(100, "feet")
  24490. },
  24491. {
  24492. name: "MACRO",
  24493. height: math.unit(50, "miles")
  24494. },
  24495. {
  24496. name: "M A C R O",
  24497. height: math.unit(300, "miles")
  24498. },
  24499. ]
  24500. ))
  24501. characterMakers.push(() => makeCharacter(
  24502. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24503. {
  24504. side: {
  24505. height: math.unit(15.6, "meters"),
  24506. weight: math.unit(700000, "kg"),
  24507. name: "Side",
  24508. image: {
  24509. source: "./media/characters/bunsen/side.svg",
  24510. extra: 1644 / 358
  24511. }
  24512. },
  24513. foot: {
  24514. height: math.unit(1.611 * 1644 / 358, "meter"),
  24515. name: "Foot",
  24516. image: {
  24517. source: "./media/characters/bunsen/foot.svg"
  24518. }
  24519. },
  24520. },
  24521. [
  24522. {
  24523. name: "Small",
  24524. height: math.unit(10, "feet")
  24525. },
  24526. {
  24527. name: "Normal",
  24528. height: math.unit(15.6, "meters"),
  24529. default: true
  24530. },
  24531. ]
  24532. ))
  24533. characterMakers.push(() => makeCharacter(
  24534. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24535. {
  24536. front: {
  24537. height: math.unit(4 + 11 / 12, "feet"),
  24538. weight: math.unit(140, "lb"),
  24539. name: "Front",
  24540. image: {
  24541. source: "./media/characters/sesh/front.svg",
  24542. extra: 3420 / 3231,
  24543. bottom: 72 / 3949.5
  24544. }
  24545. },
  24546. },
  24547. [
  24548. {
  24549. name: "Normal",
  24550. height: math.unit(4 + 11 / 12, "feet")
  24551. },
  24552. {
  24553. name: "Grown",
  24554. height: math.unit(15, "feet"),
  24555. default: true
  24556. },
  24557. {
  24558. name: "Macro",
  24559. height: math.unit(1500, "feet")
  24560. },
  24561. {
  24562. name: "Megamacro",
  24563. height: math.unit(30, "miles")
  24564. },
  24565. {
  24566. name: "Continental",
  24567. height: math.unit(3000, "miles")
  24568. },
  24569. {
  24570. name: "Gravity Mass",
  24571. height: math.unit(300000, "miles")
  24572. },
  24573. {
  24574. name: "Planet Buster",
  24575. height: math.unit(30000000, "miles")
  24576. },
  24577. {
  24578. name: "Big",
  24579. height: math.unit(3000000000, "miles")
  24580. },
  24581. ]
  24582. ))
  24583. characterMakers.push(() => makeCharacter(
  24584. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24585. {
  24586. front: {
  24587. height: math.unit(9, "feet"),
  24588. weight: math.unit(350, "lb"),
  24589. name: "Front",
  24590. image: {
  24591. source: "./media/characters/pepper/front.svg",
  24592. extra: 1448 / 1312,
  24593. bottom: 9.4 / 1457.88
  24594. }
  24595. },
  24596. back: {
  24597. height: math.unit(9, "feet"),
  24598. weight: math.unit(350, "lb"),
  24599. name: "Back",
  24600. image: {
  24601. source: "./media/characters/pepper/back.svg",
  24602. extra: 1423 / 1300,
  24603. bottom: 4.6 / 1429
  24604. }
  24605. },
  24606. maw: {
  24607. height: math.unit(0.932, "feet"),
  24608. name: "Maw",
  24609. image: {
  24610. source: "./media/characters/pepper/maw.svg"
  24611. }
  24612. },
  24613. },
  24614. [
  24615. {
  24616. name: "Normal",
  24617. height: math.unit(9, "feet"),
  24618. default: true
  24619. },
  24620. ]
  24621. ))
  24622. characterMakers.push(() => makeCharacter(
  24623. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24624. {
  24625. front: {
  24626. height: math.unit(6, "feet"),
  24627. weight: math.unit(150, "lb"),
  24628. name: "Front",
  24629. image: {
  24630. source: "./media/characters/maelstrom/front.svg",
  24631. extra: 2100 / 1883,
  24632. bottom: 94 / 2196.7
  24633. }
  24634. },
  24635. },
  24636. [
  24637. {
  24638. name: "Less Kaiju",
  24639. height: math.unit(200, "feet")
  24640. },
  24641. {
  24642. name: "Kaiju",
  24643. height: math.unit(400, "feet"),
  24644. default: true
  24645. },
  24646. {
  24647. name: "Kaiju-er",
  24648. height: math.unit(600, "feet")
  24649. },
  24650. ]
  24651. ))
  24652. characterMakers.push(() => makeCharacter(
  24653. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24654. {
  24655. front: {
  24656. height: math.unit(6 + 5 / 12, "feet"),
  24657. weight: math.unit(180, "lb"),
  24658. name: "Front",
  24659. image: {
  24660. source: "./media/characters/lexir/front.svg",
  24661. extra: 180 / 172,
  24662. bottom: 12 / 192
  24663. }
  24664. },
  24665. back: {
  24666. height: math.unit(6 + 5 / 12, "feet"),
  24667. weight: math.unit(180, "lb"),
  24668. name: "Back",
  24669. image: {
  24670. source: "./media/characters/lexir/back.svg",
  24671. extra: 1273/1201,
  24672. bottom: 39/1312
  24673. }
  24674. },
  24675. },
  24676. [
  24677. {
  24678. name: "Very Smal",
  24679. height: math.unit(1, "nm")
  24680. },
  24681. {
  24682. name: "Normal",
  24683. height: math.unit(6 + 5 / 12, "feet"),
  24684. default: true
  24685. },
  24686. {
  24687. name: "Macro",
  24688. height: math.unit(1, "mile")
  24689. },
  24690. {
  24691. name: "Megamacro",
  24692. height: math.unit(50, "miles")
  24693. },
  24694. ]
  24695. ))
  24696. characterMakers.push(() => makeCharacter(
  24697. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24698. {
  24699. front: {
  24700. height: math.unit(1.5, "meters"),
  24701. weight: math.unit(100, "lb"),
  24702. name: "Front",
  24703. image: {
  24704. source: "./media/characters/maksio/front.svg",
  24705. extra: 1549 / 1531,
  24706. bottom: 123.7 / 1674.5429
  24707. }
  24708. },
  24709. back: {
  24710. height: math.unit(1.5, "meters"),
  24711. weight: math.unit(100, "lb"),
  24712. name: "Back",
  24713. image: {
  24714. source: "./media/characters/maksio/back.svg",
  24715. extra: 1541 / 1509,
  24716. bottom: 97 / 1639
  24717. }
  24718. },
  24719. hand: {
  24720. height: math.unit(0.621, "feet"),
  24721. name: "Hand",
  24722. image: {
  24723. source: "./media/characters/maksio/hand.svg"
  24724. }
  24725. },
  24726. foot: {
  24727. height: math.unit(1.611, "feet"),
  24728. name: "Foot",
  24729. image: {
  24730. source: "./media/characters/maksio/foot.svg"
  24731. }
  24732. },
  24733. },
  24734. [
  24735. {
  24736. name: "Shrunken",
  24737. height: math.unit(10, "cm")
  24738. },
  24739. {
  24740. name: "Normal",
  24741. height: math.unit(150, "cm"),
  24742. default: true
  24743. },
  24744. ]
  24745. ))
  24746. characterMakers.push(() => makeCharacter(
  24747. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24748. {
  24749. front: {
  24750. height: math.unit(100, "feet"),
  24751. name: "Front",
  24752. image: {
  24753. source: "./media/characters/erza-bear/front.svg",
  24754. extra: 2449 / 2390,
  24755. bottom: 46 / 2494
  24756. }
  24757. },
  24758. back: {
  24759. height: math.unit(100, "feet"),
  24760. name: "Back",
  24761. image: {
  24762. source: "./media/characters/erza-bear/back.svg",
  24763. extra: 2489 / 2430,
  24764. bottom: 85.4 / 2480
  24765. }
  24766. },
  24767. tail: {
  24768. height: math.unit(42, "feet"),
  24769. name: "Tail",
  24770. image: {
  24771. source: "./media/characters/erza-bear/tail.svg"
  24772. }
  24773. },
  24774. tongue: {
  24775. height: math.unit(8, "feet"),
  24776. name: "Tongue",
  24777. image: {
  24778. source: "./media/characters/erza-bear/tongue.svg"
  24779. }
  24780. },
  24781. dick: {
  24782. height: math.unit(10.5, "feet"),
  24783. name: "Dick",
  24784. image: {
  24785. source: "./media/characters/erza-bear/dick.svg"
  24786. }
  24787. },
  24788. dickVertical: {
  24789. height: math.unit(16.9, "feet"),
  24790. name: "Dick (Vertical)",
  24791. image: {
  24792. source: "./media/characters/erza-bear/dick-vertical.svg"
  24793. }
  24794. },
  24795. },
  24796. [
  24797. {
  24798. name: "Macro",
  24799. height: math.unit(100, "feet"),
  24800. default: true
  24801. },
  24802. ]
  24803. ))
  24804. characterMakers.push(() => makeCharacter(
  24805. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24806. {
  24807. front: {
  24808. height: math.unit(172, "cm"),
  24809. weight: math.unit(73, "kg"),
  24810. name: "Front",
  24811. image: {
  24812. source: "./media/characters/violet-flor/front.svg",
  24813. extra: 1530 / 1442,
  24814. bottom: 61.9 / 1588.8
  24815. }
  24816. },
  24817. back: {
  24818. height: math.unit(180, "cm"),
  24819. weight: math.unit(73, "kg"),
  24820. name: "Back",
  24821. image: {
  24822. source: "./media/characters/violet-flor/back.svg",
  24823. extra: 1692 / 1630,
  24824. bottom: 20 / 1712
  24825. }
  24826. },
  24827. },
  24828. [
  24829. {
  24830. name: "Normal",
  24831. height: math.unit(172, "cm"),
  24832. default: true
  24833. },
  24834. ]
  24835. ))
  24836. characterMakers.push(() => makeCharacter(
  24837. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24838. {
  24839. front: {
  24840. height: math.unit(6, "feet"),
  24841. weight: math.unit(220, "lb"),
  24842. name: "Front",
  24843. image: {
  24844. source: "./media/characters/lynn-rhea/front.svg",
  24845. extra: 310 / 273
  24846. }
  24847. },
  24848. back: {
  24849. height: math.unit(6, "feet"),
  24850. weight: math.unit(220, "lb"),
  24851. name: "Back",
  24852. image: {
  24853. source: "./media/characters/lynn-rhea/back.svg",
  24854. extra: 310 / 273
  24855. }
  24856. },
  24857. dicks: {
  24858. height: math.unit(0.9, "feet"),
  24859. name: "Dicks",
  24860. image: {
  24861. source: "./media/characters/lynn-rhea/dicks.svg"
  24862. }
  24863. },
  24864. slit: {
  24865. height: math.unit(0.4, "feet"),
  24866. name: "Slit",
  24867. image: {
  24868. source: "./media/characters/lynn-rhea/slit.svg"
  24869. }
  24870. },
  24871. },
  24872. [
  24873. {
  24874. name: "Micro",
  24875. height: math.unit(1, "inch")
  24876. },
  24877. {
  24878. name: "Macro",
  24879. height: math.unit(60, "feet"),
  24880. default: true
  24881. },
  24882. {
  24883. name: "Megamacro",
  24884. height: math.unit(2, "miles")
  24885. },
  24886. {
  24887. name: "Gigamacro",
  24888. height: math.unit(3, "earths")
  24889. },
  24890. {
  24891. name: "Galactic",
  24892. height: math.unit(0.8, "galaxies")
  24893. },
  24894. ]
  24895. ))
  24896. characterMakers.push(() => makeCharacter(
  24897. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24898. {
  24899. front: {
  24900. height: math.unit(1600, "feet"),
  24901. weight: math.unit(85758785169, "kg"),
  24902. name: "Front",
  24903. image: {
  24904. source: "./media/characters/valathos/front.svg",
  24905. extra: 1451 / 1339
  24906. }
  24907. },
  24908. },
  24909. [
  24910. {
  24911. name: "Macro",
  24912. height: math.unit(1600, "feet"),
  24913. default: true
  24914. },
  24915. ]
  24916. ))
  24917. characterMakers.push(() => makeCharacter(
  24918. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24919. {
  24920. front: {
  24921. height: math.unit(7 + 5 / 12, "feet"),
  24922. weight: math.unit(300, "lb"),
  24923. name: "Front",
  24924. image: {
  24925. source: "./media/characters/azula/front.svg",
  24926. extra: 3208 / 2880,
  24927. bottom: 80.2 / 3277
  24928. }
  24929. },
  24930. back: {
  24931. height: math.unit(7 + 5 / 12, "feet"),
  24932. weight: math.unit(300, "lb"),
  24933. name: "Back",
  24934. image: {
  24935. source: "./media/characters/azula/back.svg",
  24936. extra: 3169 / 2822,
  24937. bottom: 150.6 / 3321
  24938. }
  24939. },
  24940. },
  24941. [
  24942. {
  24943. name: "Normal",
  24944. height: math.unit(7 + 5 / 12, "feet"),
  24945. default: true
  24946. },
  24947. {
  24948. name: "Big",
  24949. height: math.unit(20, "feet")
  24950. },
  24951. ]
  24952. ))
  24953. characterMakers.push(() => makeCharacter(
  24954. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24955. {
  24956. front: {
  24957. height: math.unit(5 + 1 / 12, "feet"),
  24958. weight: math.unit(110, "lb"),
  24959. name: "Front",
  24960. image: {
  24961. source: "./media/characters/rupert/front.svg",
  24962. extra: 1549 / 1495,
  24963. bottom: 54.2 / 1604.4
  24964. }
  24965. },
  24966. },
  24967. [
  24968. {
  24969. name: "Normal",
  24970. height: math.unit(5 + 1 / 12, "feet"),
  24971. default: true
  24972. },
  24973. ]
  24974. ))
  24975. characterMakers.push(() => makeCharacter(
  24976. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24977. {
  24978. front: {
  24979. height: math.unit(8 + 4 / 12, "feet"),
  24980. weight: math.unit(350, "lb"),
  24981. name: "Front",
  24982. image: {
  24983. source: "./media/characters/sheera-castellar/front.svg",
  24984. extra: 1957 / 1894,
  24985. bottom: 26.97 / 1975.017
  24986. }
  24987. },
  24988. side: {
  24989. height: math.unit(8 + 4 / 12, "feet"),
  24990. weight: math.unit(350, "lb"),
  24991. name: "Side",
  24992. image: {
  24993. source: "./media/characters/sheera-castellar/side.svg",
  24994. extra: 1957 / 1894
  24995. }
  24996. },
  24997. back: {
  24998. height: math.unit(8 + 4 / 12, "feet"),
  24999. weight: math.unit(350, "lb"),
  25000. name: "Back",
  25001. image: {
  25002. source: "./media/characters/sheera-castellar/back.svg",
  25003. extra: 1957 / 1894
  25004. }
  25005. },
  25006. angled: {
  25007. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25008. weight: math.unit(350, "lb"),
  25009. name: "Angled",
  25010. image: {
  25011. source: "./media/characters/sheera-castellar/angled.svg",
  25012. extra: 1807 / 1707,
  25013. bottom: 68 / 1875
  25014. }
  25015. },
  25016. genitals: {
  25017. height: math.unit(2.2, "feet"),
  25018. name: "Genitals",
  25019. image: {
  25020. source: "./media/characters/sheera-castellar/genitals.svg"
  25021. }
  25022. },
  25023. taur: {
  25024. height: math.unit(10 + 6/12, "feet"),
  25025. name: "Taur",
  25026. image: {
  25027. source: "./media/characters/sheera-castellar/taur.svg",
  25028. extra: 2017/1909,
  25029. bottom: 185/2202
  25030. }
  25031. },
  25032. },
  25033. [
  25034. {
  25035. name: "Normal",
  25036. height: math.unit(8 + 4 / 12, "feet")
  25037. },
  25038. {
  25039. name: "Macro",
  25040. height: math.unit(150, "feet"),
  25041. default: true
  25042. },
  25043. {
  25044. name: "Macro+",
  25045. height: math.unit(800, "feet")
  25046. },
  25047. ]
  25048. ))
  25049. characterMakers.push(() => makeCharacter(
  25050. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25051. {
  25052. front: {
  25053. height: math.unit(6, "feet"),
  25054. weight: math.unit(150, "lb"),
  25055. name: "Front",
  25056. image: {
  25057. source: "./media/characters/jaipur/front.svg",
  25058. extra: 3860 / 3731,
  25059. bottom: 287 / 4140
  25060. }
  25061. },
  25062. back: {
  25063. height: math.unit(6, "feet"),
  25064. weight: math.unit(150, "lb"),
  25065. name: "Back",
  25066. image: {
  25067. source: "./media/characters/jaipur/back.svg",
  25068. extra: 1637/1561,
  25069. bottom: 154/1791
  25070. }
  25071. },
  25072. },
  25073. [
  25074. {
  25075. name: "Normal",
  25076. height: math.unit(1.85, "meters"),
  25077. default: true
  25078. },
  25079. {
  25080. name: "Macro",
  25081. height: math.unit(150, "meters")
  25082. },
  25083. {
  25084. name: "Macro+",
  25085. height: math.unit(0.5, "miles")
  25086. },
  25087. {
  25088. name: "Macro++",
  25089. height: math.unit(2.5, "miles")
  25090. },
  25091. {
  25092. name: "Macro+++",
  25093. height: math.unit(12, "miles")
  25094. },
  25095. {
  25096. name: "Macro++++",
  25097. height: math.unit(120, "miles")
  25098. },
  25099. {
  25100. name: "Macro+++++",
  25101. height: math.unit(1200, "miles")
  25102. },
  25103. ]
  25104. ))
  25105. characterMakers.push(() => makeCharacter(
  25106. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25107. {
  25108. front: {
  25109. height: math.unit(6, "feet"),
  25110. weight: math.unit(150, "lb"),
  25111. name: "Front",
  25112. image: {
  25113. source: "./media/characters/sheila-wolf/front.svg",
  25114. extra: 1931 / 1808,
  25115. bottom: 29.5 / 1960
  25116. }
  25117. },
  25118. dick: {
  25119. height: math.unit(1.464, "feet"),
  25120. name: "Dick",
  25121. image: {
  25122. source: "./media/characters/sheila-wolf/dick.svg"
  25123. }
  25124. },
  25125. muzzle: {
  25126. height: math.unit(0.513, "feet"),
  25127. name: "Muzzle",
  25128. image: {
  25129. source: "./media/characters/sheila-wolf/muzzle.svg"
  25130. }
  25131. },
  25132. },
  25133. [
  25134. {
  25135. name: "Macro",
  25136. height: math.unit(70, "feet"),
  25137. default: true
  25138. },
  25139. ]
  25140. ))
  25141. characterMakers.push(() => makeCharacter(
  25142. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25143. {
  25144. front: {
  25145. height: math.unit(32, "meters"),
  25146. weight: math.unit(300000, "kg"),
  25147. name: "Front",
  25148. image: {
  25149. source: "./media/characters/almor/front.svg",
  25150. extra: 1408 / 1322,
  25151. bottom: 94.6 / 1506.5
  25152. }
  25153. },
  25154. },
  25155. [
  25156. {
  25157. name: "Macro",
  25158. height: math.unit(32, "meters"),
  25159. default: true
  25160. },
  25161. ]
  25162. ))
  25163. characterMakers.push(() => makeCharacter(
  25164. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25165. {
  25166. front: {
  25167. height: math.unit(7, "feet"),
  25168. weight: math.unit(200, "lb"),
  25169. name: "Front",
  25170. image: {
  25171. source: "./media/characters/silver/front.svg",
  25172. extra: 472.1 / 450.5,
  25173. bottom: 26.5 / 499.424
  25174. }
  25175. },
  25176. },
  25177. [
  25178. {
  25179. name: "Normal",
  25180. height: math.unit(7, "feet"),
  25181. default: true
  25182. },
  25183. {
  25184. name: "Macro",
  25185. height: math.unit(800, "feet")
  25186. },
  25187. {
  25188. name: "Megamacro",
  25189. height: math.unit(250, "miles")
  25190. },
  25191. ]
  25192. ))
  25193. characterMakers.push(() => makeCharacter(
  25194. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25195. {
  25196. front: {
  25197. height: math.unit(6, "feet"),
  25198. weight: math.unit(150, "lb"),
  25199. name: "Front",
  25200. image: {
  25201. source: "./media/characters/pliskin/front.svg",
  25202. extra: 1469 / 1359,
  25203. bottom: 70 / 1540
  25204. }
  25205. },
  25206. },
  25207. [
  25208. {
  25209. name: "Micro",
  25210. height: math.unit(3, "inches")
  25211. },
  25212. {
  25213. name: "Normal",
  25214. height: math.unit(5 + 11 / 12, "feet"),
  25215. default: true
  25216. },
  25217. {
  25218. name: "Macro",
  25219. height: math.unit(120, "feet")
  25220. },
  25221. ]
  25222. ))
  25223. characterMakers.push(() => makeCharacter(
  25224. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25225. {
  25226. front: {
  25227. height: math.unit(6, "feet"),
  25228. weight: math.unit(150, "lb"),
  25229. name: "Front",
  25230. image: {
  25231. source: "./media/characters/sammy/front.svg",
  25232. extra: 1193 / 1089,
  25233. bottom: 30.5 / 1226
  25234. }
  25235. },
  25236. },
  25237. [
  25238. {
  25239. name: "Macro",
  25240. height: math.unit(1700, "feet"),
  25241. default: true
  25242. },
  25243. {
  25244. name: "Examacro",
  25245. height: math.unit(2.5e9, "lightyears")
  25246. },
  25247. ]
  25248. ))
  25249. characterMakers.push(() => makeCharacter(
  25250. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25251. {
  25252. front: {
  25253. height: math.unit(21, "meters"),
  25254. weight: math.unit(12, "tonnes"),
  25255. name: "Front",
  25256. image: {
  25257. source: "./media/characters/kuru/front.svg",
  25258. extra: 4301 / 3785,
  25259. bottom: 371.3 / 4691
  25260. }
  25261. },
  25262. },
  25263. [
  25264. {
  25265. name: "Macro",
  25266. height: math.unit(21, "meters"),
  25267. default: true
  25268. },
  25269. ]
  25270. ))
  25271. characterMakers.push(() => makeCharacter(
  25272. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25273. {
  25274. front: {
  25275. height: math.unit(23, "meters"),
  25276. weight: math.unit(12.2, "tonnes"),
  25277. name: "Front",
  25278. image: {
  25279. source: "./media/characters/rakka/front.svg",
  25280. extra: 4670 / 4169,
  25281. bottom: 301 / 4968.7
  25282. }
  25283. },
  25284. },
  25285. [
  25286. {
  25287. name: "Macro",
  25288. height: math.unit(23, "meters"),
  25289. default: true
  25290. },
  25291. ]
  25292. ))
  25293. characterMakers.push(() => makeCharacter(
  25294. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25295. {
  25296. front: {
  25297. height: math.unit(6, "feet"),
  25298. weight: math.unit(150, "lb"),
  25299. name: "Front",
  25300. image: {
  25301. source: "./media/characters/rhys-feline/front.svg",
  25302. extra: 2488 / 2308,
  25303. bottom: 35.67 / 2519.19
  25304. }
  25305. },
  25306. },
  25307. [
  25308. {
  25309. name: "Really Small",
  25310. height: math.unit(1, "nm")
  25311. },
  25312. {
  25313. name: "Micro",
  25314. height: math.unit(4, "inches")
  25315. },
  25316. {
  25317. name: "Normal",
  25318. height: math.unit(4 + 10 / 12, "feet"),
  25319. default: true
  25320. },
  25321. {
  25322. name: "Macro",
  25323. height: math.unit(100, "feet")
  25324. },
  25325. {
  25326. name: "Megamacto",
  25327. height: math.unit(50, "miles")
  25328. },
  25329. ]
  25330. ))
  25331. characterMakers.push(() => makeCharacter(
  25332. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25333. {
  25334. side: {
  25335. height: math.unit(30, "feet"),
  25336. weight: math.unit(35000, "kg"),
  25337. name: "Side",
  25338. image: {
  25339. source: "./media/characters/alydar/side.svg",
  25340. extra: 234 / 222,
  25341. bottom: 6.5 / 241
  25342. }
  25343. },
  25344. front: {
  25345. height: math.unit(30, "feet"),
  25346. weight: math.unit(35000, "kg"),
  25347. name: "Front",
  25348. image: {
  25349. source: "./media/characters/alydar/front.svg",
  25350. extra: 223.37 / 210.2,
  25351. bottom: 22.3 / 246.76
  25352. }
  25353. },
  25354. top: {
  25355. height: math.unit(64.54, "feet"),
  25356. weight: math.unit(35000, "kg"),
  25357. name: "Top",
  25358. image: {
  25359. source: "./media/characters/alydar/top.svg"
  25360. }
  25361. },
  25362. anthro: {
  25363. height: math.unit(30, "feet"),
  25364. weight: math.unit(9000, "kg"),
  25365. name: "Anthro",
  25366. image: {
  25367. source: "./media/characters/alydar/anthro.svg",
  25368. extra: 432 / 421,
  25369. bottom: 7.18 / 440
  25370. }
  25371. },
  25372. maw: {
  25373. height: math.unit(11.693, "feet"),
  25374. name: "Maw",
  25375. image: {
  25376. source: "./media/characters/alydar/maw.svg"
  25377. }
  25378. },
  25379. head: {
  25380. height: math.unit(11.693, "feet"),
  25381. name: "Head",
  25382. image: {
  25383. source: "./media/characters/alydar/head.svg"
  25384. }
  25385. },
  25386. headAlt: {
  25387. height: math.unit(12.861, "feet"),
  25388. name: "Head (Alt)",
  25389. image: {
  25390. source: "./media/characters/alydar/head-alt.svg"
  25391. }
  25392. },
  25393. wing: {
  25394. height: math.unit(20.712, "feet"),
  25395. name: "Wing",
  25396. image: {
  25397. source: "./media/characters/alydar/wing.svg"
  25398. }
  25399. },
  25400. wingFeather: {
  25401. height: math.unit(9.662, "feet"),
  25402. name: "Wing Feather",
  25403. image: {
  25404. source: "./media/characters/alydar/wing-feather.svg"
  25405. }
  25406. },
  25407. countourFeather: {
  25408. height: math.unit(4.154, "feet"),
  25409. name: "Contour Feather",
  25410. image: {
  25411. source: "./media/characters/alydar/contour-feather.svg"
  25412. }
  25413. },
  25414. },
  25415. [
  25416. {
  25417. name: "Diplomatic",
  25418. height: math.unit(13, "feet"),
  25419. default: true
  25420. },
  25421. {
  25422. name: "Small",
  25423. height: math.unit(30, "feet")
  25424. },
  25425. {
  25426. name: "Normal",
  25427. height: math.unit(95, "feet"),
  25428. default: true
  25429. },
  25430. {
  25431. name: "Large",
  25432. height: math.unit(285, "feet")
  25433. },
  25434. {
  25435. name: "Incomprehensible",
  25436. height: math.unit(450, "megameters")
  25437. },
  25438. ]
  25439. ))
  25440. characterMakers.push(() => makeCharacter(
  25441. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25442. {
  25443. side: {
  25444. height: math.unit(11, "feet"),
  25445. weight: math.unit(1750, "kg"),
  25446. name: "Side",
  25447. image: {
  25448. source: "./media/characters/selicia/side.svg",
  25449. extra: 440 / 396,
  25450. bottom: 24.8 / 465.979
  25451. }
  25452. },
  25453. maw: {
  25454. height: math.unit(4.665, "feet"),
  25455. name: "Maw",
  25456. image: {
  25457. source: "./media/characters/selicia/maw.svg"
  25458. }
  25459. },
  25460. },
  25461. [
  25462. {
  25463. name: "Normal",
  25464. height: math.unit(11, "feet"),
  25465. default: true
  25466. },
  25467. ]
  25468. ))
  25469. characterMakers.push(() => makeCharacter(
  25470. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25471. {
  25472. side: {
  25473. height: math.unit(2 + 6 / 12, "feet"),
  25474. weight: math.unit(30, "lb"),
  25475. name: "Side",
  25476. image: {
  25477. source: "./media/characters/layla/side.svg",
  25478. extra: 244 / 188,
  25479. bottom: 18.2 / 262.1
  25480. }
  25481. },
  25482. back: {
  25483. height: math.unit(2 + 6 / 12, "feet"),
  25484. weight: math.unit(30, "lb"),
  25485. name: "Back",
  25486. image: {
  25487. source: "./media/characters/layla/back.svg",
  25488. extra: 308 / 241.5,
  25489. bottom: 8.9 / 316.8
  25490. }
  25491. },
  25492. cumming: {
  25493. height: math.unit(2 + 6 / 12, "feet"),
  25494. weight: math.unit(30, "lb"),
  25495. name: "Cumming",
  25496. image: {
  25497. source: "./media/characters/layla/cumming.svg",
  25498. extra: 342 / 279,
  25499. bottom: 595 / 938
  25500. }
  25501. },
  25502. dickFlaccid: {
  25503. height: math.unit(2.595, "feet"),
  25504. name: "Flaccid Genitals",
  25505. image: {
  25506. source: "./media/characters/layla/dick-flaccid.svg"
  25507. }
  25508. },
  25509. dickErect: {
  25510. height: math.unit(2.359, "feet"),
  25511. name: "Erect Genitals",
  25512. image: {
  25513. source: "./media/characters/layla/dick-erect.svg"
  25514. }
  25515. },
  25516. dragon: {
  25517. height: math.unit(40, "feet"),
  25518. name: "Dragon",
  25519. image: {
  25520. source: "./media/characters/layla/dragon.svg",
  25521. extra: 610/535,
  25522. bottom: 367/977
  25523. }
  25524. },
  25525. taur: {
  25526. height: math.unit(30, "feet"),
  25527. name: "Taur",
  25528. image: {
  25529. source: "./media/characters/layla/taur.svg",
  25530. extra: 1268/1199,
  25531. bottom: 112/1380
  25532. }
  25533. },
  25534. },
  25535. [
  25536. {
  25537. name: "Micro",
  25538. height: math.unit(1, "inch")
  25539. },
  25540. {
  25541. name: "Small",
  25542. height: math.unit(1, "foot")
  25543. },
  25544. {
  25545. name: "Normal",
  25546. height: math.unit(2 + 6 / 12, "feet"),
  25547. default: true
  25548. },
  25549. {
  25550. name: "Macro",
  25551. height: math.unit(200, "feet")
  25552. },
  25553. {
  25554. name: "Megamacro",
  25555. height: math.unit(1000, "miles")
  25556. },
  25557. {
  25558. name: "Planetary",
  25559. height: math.unit(8000, "miles")
  25560. },
  25561. {
  25562. name: "True Layla",
  25563. height: math.unit(200000 * 7, "multiverses")
  25564. },
  25565. ]
  25566. ))
  25567. characterMakers.push(() => makeCharacter(
  25568. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25569. {
  25570. back: {
  25571. height: math.unit(10.5, "feet"),
  25572. weight: math.unit(800, "lb"),
  25573. name: "Back",
  25574. image: {
  25575. source: "./media/characters/knox/back.svg",
  25576. extra: 1486 / 1089,
  25577. bottom: 107 / 1601.4
  25578. }
  25579. },
  25580. side: {
  25581. height: math.unit(10.5, "feet"),
  25582. weight: math.unit(800, "lb"),
  25583. name: "Side",
  25584. image: {
  25585. source: "./media/characters/knox/side.svg",
  25586. extra: 244 / 218,
  25587. bottom: 14 / 260
  25588. }
  25589. },
  25590. },
  25591. [
  25592. {
  25593. name: "Compact",
  25594. height: math.unit(10.5, "feet"),
  25595. default: true
  25596. },
  25597. {
  25598. name: "Dynamax",
  25599. height: math.unit(210, "feet")
  25600. },
  25601. {
  25602. name: "Full Macro",
  25603. height: math.unit(850, "feet")
  25604. },
  25605. ]
  25606. ))
  25607. characterMakers.push(() => makeCharacter(
  25608. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25609. {
  25610. front: {
  25611. height: math.unit(28, "feet"),
  25612. weight: math.unit(10500, "lb"),
  25613. name: "Front",
  25614. image: {
  25615. source: "./media/characters/kayda/front.svg",
  25616. extra: 1536 / 1428,
  25617. bottom: 68.7 / 1603
  25618. }
  25619. },
  25620. back: {
  25621. height: math.unit(28, "feet"),
  25622. weight: math.unit(10500, "lb"),
  25623. name: "Back",
  25624. image: {
  25625. source: "./media/characters/kayda/back.svg",
  25626. extra: 1557 / 1464,
  25627. bottom: 39.5 / 1597.49
  25628. }
  25629. },
  25630. dick: {
  25631. height: math.unit(3.858, "feet"),
  25632. name: "Dick",
  25633. image: {
  25634. source: "./media/characters/kayda/dick.svg"
  25635. }
  25636. },
  25637. },
  25638. [
  25639. {
  25640. name: "Macro",
  25641. height: math.unit(28, "feet"),
  25642. default: true
  25643. },
  25644. ]
  25645. ))
  25646. characterMakers.push(() => makeCharacter(
  25647. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25648. {
  25649. front: {
  25650. height: math.unit(10 + 11 / 12, "feet"),
  25651. weight: math.unit(1400, "lb"),
  25652. name: "Front",
  25653. image: {
  25654. source: "./media/characters/brian/front.svg",
  25655. extra: 737 / 692,
  25656. bottom: 55.4 / 785
  25657. }
  25658. },
  25659. },
  25660. [
  25661. {
  25662. name: "Normal",
  25663. height: math.unit(10 + 11 / 12, "feet"),
  25664. default: true
  25665. },
  25666. ]
  25667. ))
  25668. characterMakers.push(() => makeCharacter(
  25669. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25670. {
  25671. front: {
  25672. height: math.unit(5 + 8 / 12, "feet"),
  25673. weight: math.unit(140, "lb"),
  25674. name: "Front",
  25675. image: {
  25676. source: "./media/characters/khemri/front.svg",
  25677. extra: 4780 / 4059,
  25678. bottom: 80.1 / 4859.25
  25679. }
  25680. },
  25681. },
  25682. [
  25683. {
  25684. name: "Micro",
  25685. height: math.unit(6, "inches")
  25686. },
  25687. {
  25688. name: "Normal",
  25689. height: math.unit(5 + 8 / 12, "feet"),
  25690. default: true
  25691. },
  25692. ]
  25693. ))
  25694. characterMakers.push(() => makeCharacter(
  25695. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25696. {
  25697. front: {
  25698. height: math.unit(13, "feet"),
  25699. weight: math.unit(1700, "lb"),
  25700. name: "Front",
  25701. image: {
  25702. source: "./media/characters/felix-braveheart/front.svg",
  25703. extra: 1222 / 1157,
  25704. bottom: 53.2 / 1280
  25705. }
  25706. },
  25707. back: {
  25708. height: math.unit(13, "feet"),
  25709. weight: math.unit(1700, "lb"),
  25710. name: "Back",
  25711. image: {
  25712. source: "./media/characters/felix-braveheart/back.svg",
  25713. extra: 1277 / 1203,
  25714. bottom: 50.2 / 1327
  25715. }
  25716. },
  25717. feral: {
  25718. height: math.unit(6, "feet"),
  25719. weight: math.unit(400, "lb"),
  25720. name: "Feral",
  25721. image: {
  25722. source: "./media/characters/felix-braveheart/feral.svg",
  25723. extra: 682 / 625,
  25724. bottom: 6.9 / 688
  25725. }
  25726. },
  25727. },
  25728. [
  25729. {
  25730. name: "Normal",
  25731. height: math.unit(13, "feet"),
  25732. default: true
  25733. },
  25734. ]
  25735. ))
  25736. characterMakers.push(() => makeCharacter(
  25737. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25738. {
  25739. side: {
  25740. height: math.unit(5 + 11 / 12, "feet"),
  25741. weight: math.unit(1400, "lb"),
  25742. name: "Side",
  25743. image: {
  25744. source: "./media/characters/shadow-blade/side.svg",
  25745. extra: 1726 / 1267,
  25746. bottom: 58.4 / 1785
  25747. }
  25748. },
  25749. },
  25750. [
  25751. {
  25752. name: "Normal",
  25753. height: math.unit(5 + 11 / 12, "feet"),
  25754. default: true
  25755. },
  25756. ]
  25757. ))
  25758. characterMakers.push(() => makeCharacter(
  25759. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25760. {
  25761. front: {
  25762. height: math.unit(1 + 6 / 12, "feet"),
  25763. weight: math.unit(25, "lb"),
  25764. name: "Front",
  25765. image: {
  25766. source: "./media/characters/karla-halldor/front.svg",
  25767. extra: 1459 / 1383,
  25768. bottom: 12 / 1472
  25769. }
  25770. },
  25771. },
  25772. [
  25773. {
  25774. name: "Normal",
  25775. height: math.unit(1 + 6 / 12, "feet"),
  25776. default: true
  25777. },
  25778. ]
  25779. ))
  25780. characterMakers.push(() => makeCharacter(
  25781. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25782. {
  25783. front: {
  25784. height: math.unit(6 + 2 / 12, "feet"),
  25785. weight: math.unit(160, "lb"),
  25786. name: "Front",
  25787. image: {
  25788. source: "./media/characters/ariam/front.svg",
  25789. extra: 1073/976,
  25790. bottom: 52/1125
  25791. }
  25792. },
  25793. back: {
  25794. height: math.unit(6 + 2/12, "feet"),
  25795. weight: math.unit(160, "lb"),
  25796. name: "Back",
  25797. image: {
  25798. source: "./media/characters/ariam/back.svg",
  25799. extra: 1103/1023,
  25800. bottom: 9/1112
  25801. }
  25802. },
  25803. dressed: {
  25804. height: math.unit(6 + 2/12, "feet"),
  25805. weight: math.unit(160, "lb"),
  25806. name: "Dressed",
  25807. image: {
  25808. source: "./media/characters/ariam/dressed.svg",
  25809. extra: 1099/1009,
  25810. bottom: 25/1124
  25811. }
  25812. },
  25813. squatting: {
  25814. height: math.unit(4.1, "feet"),
  25815. weight: math.unit(160, "lb"),
  25816. name: "Squatting",
  25817. image: {
  25818. source: "./media/characters/ariam/squatting.svg",
  25819. extra: 2617 / 2112,
  25820. bottom: 61.2 / 2681,
  25821. }
  25822. },
  25823. },
  25824. [
  25825. {
  25826. name: "Normal",
  25827. height: math.unit(6 + 2 / 12, "feet"),
  25828. default: true
  25829. },
  25830. {
  25831. name: "Normal+",
  25832. height: math.unit(4, "meters")
  25833. },
  25834. {
  25835. name: "Macro",
  25836. height: math.unit(50, "meters")
  25837. },
  25838. {
  25839. name: "Macro+",
  25840. height: math.unit(100, "meters")
  25841. },
  25842. {
  25843. name: "Megamacro",
  25844. height: math.unit(20, "km")
  25845. },
  25846. {
  25847. name: "Caretaker",
  25848. height: math.unit(444, "megameters")
  25849. },
  25850. ]
  25851. ))
  25852. characterMakers.push(() => makeCharacter(
  25853. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25854. {
  25855. front: {
  25856. height: math.unit(1.67, "meters"),
  25857. weight: math.unit(140, "lb"),
  25858. name: "Front",
  25859. image: {
  25860. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25861. extra: 438 / 410,
  25862. bottom: 0.75 / 439
  25863. }
  25864. },
  25865. },
  25866. [
  25867. {
  25868. name: "Shrunken",
  25869. height: math.unit(7.6, "cm")
  25870. },
  25871. {
  25872. name: "Human Scale",
  25873. height: math.unit(1.67, "meters")
  25874. },
  25875. {
  25876. name: "Wolxi Scale",
  25877. height: math.unit(36.7, "meters"),
  25878. default: true
  25879. },
  25880. ]
  25881. ))
  25882. characterMakers.push(() => makeCharacter(
  25883. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25884. {
  25885. front: {
  25886. height: math.unit(1.73, "meters"),
  25887. weight: math.unit(240, "lb"),
  25888. name: "Front",
  25889. image: {
  25890. source: "./media/characters/izue-two-mothers/front.svg",
  25891. extra: 469 / 437,
  25892. bottom: 1.24 / 470.6
  25893. }
  25894. },
  25895. },
  25896. [
  25897. {
  25898. name: "Shrunken",
  25899. height: math.unit(7.86, "cm")
  25900. },
  25901. {
  25902. name: "Human Scale",
  25903. height: math.unit(1.73, "meters")
  25904. },
  25905. {
  25906. name: "Wolxi Scale",
  25907. height: math.unit(38, "meters"),
  25908. default: true
  25909. },
  25910. ]
  25911. ))
  25912. characterMakers.push(() => makeCharacter(
  25913. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25914. {
  25915. front: {
  25916. height: math.unit(1.55, "meters"),
  25917. weight: math.unit(120, "lb"),
  25918. name: "Front",
  25919. image: {
  25920. source: "./media/characters/teeku-love-shack/front.svg",
  25921. extra: 387 / 362,
  25922. bottom: 1.51 / 388
  25923. }
  25924. },
  25925. },
  25926. [
  25927. {
  25928. name: "Shrunken",
  25929. height: math.unit(7, "cm")
  25930. },
  25931. {
  25932. name: "Human Scale",
  25933. height: math.unit(1.55, "meters")
  25934. },
  25935. {
  25936. name: "Wolxi Scale",
  25937. height: math.unit(34.1, "meters"),
  25938. default: true
  25939. },
  25940. ]
  25941. ))
  25942. characterMakers.push(() => makeCharacter(
  25943. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25944. {
  25945. front: {
  25946. height: math.unit(1.83, "meters"),
  25947. weight: math.unit(135, "lb"),
  25948. name: "Front",
  25949. image: {
  25950. source: "./media/characters/dejma-the-red/front.svg",
  25951. extra: 480 / 458,
  25952. bottom: 1.8 / 482
  25953. }
  25954. },
  25955. },
  25956. [
  25957. {
  25958. name: "Shrunken",
  25959. height: math.unit(8.3, "cm")
  25960. },
  25961. {
  25962. name: "Human Scale",
  25963. height: math.unit(1.83, "meters")
  25964. },
  25965. {
  25966. name: "Wolxi Scale",
  25967. height: math.unit(40, "meters"),
  25968. default: true
  25969. },
  25970. ]
  25971. ))
  25972. characterMakers.push(() => makeCharacter(
  25973. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25974. {
  25975. front: {
  25976. height: math.unit(1.78, "meters"),
  25977. weight: math.unit(65, "kg"),
  25978. name: "Front",
  25979. image: {
  25980. source: "./media/characters/aki/front.svg",
  25981. extra: 452 / 415
  25982. }
  25983. },
  25984. frontNsfw: {
  25985. height: math.unit(1.78, "meters"),
  25986. weight: math.unit(65, "kg"),
  25987. name: "Front (NSFW)",
  25988. image: {
  25989. source: "./media/characters/aki/front-nsfw.svg",
  25990. extra: 452 / 415
  25991. }
  25992. },
  25993. back: {
  25994. height: math.unit(1.78, "meters"),
  25995. weight: math.unit(65, "kg"),
  25996. name: "Back",
  25997. image: {
  25998. source: "./media/characters/aki/back.svg",
  25999. extra: 452 / 415
  26000. }
  26001. },
  26002. rump: {
  26003. height: math.unit(2.05, "feet"),
  26004. name: "Rump",
  26005. image: {
  26006. source: "./media/characters/aki/rump.svg"
  26007. }
  26008. },
  26009. dick: {
  26010. height: math.unit(0.95, "feet"),
  26011. name: "Dick",
  26012. image: {
  26013. source: "./media/characters/aki/dick.svg"
  26014. }
  26015. },
  26016. },
  26017. [
  26018. {
  26019. name: "Micro",
  26020. height: math.unit(15, "cm")
  26021. },
  26022. {
  26023. name: "Normal",
  26024. height: math.unit(178, "cm"),
  26025. default: true
  26026. },
  26027. {
  26028. name: "Macro",
  26029. height: math.unit(214, "m")
  26030. },
  26031. {
  26032. name: "Macro+",
  26033. height: math.unit(534, "m")
  26034. },
  26035. ]
  26036. ))
  26037. characterMakers.push(() => makeCharacter(
  26038. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26039. {
  26040. front: {
  26041. height: math.unit(5 + 5 / 12, "feet"),
  26042. weight: math.unit(120, "lb"),
  26043. name: "Front",
  26044. image: {
  26045. source: "./media/characters/ari/front.svg",
  26046. extra: 1550/1471,
  26047. bottom: 39/1589
  26048. }
  26049. },
  26050. },
  26051. [
  26052. {
  26053. name: "Normal",
  26054. height: math.unit(5 + 5 / 12, "feet")
  26055. },
  26056. {
  26057. name: "Macro",
  26058. height: math.unit(100, "feet"),
  26059. default: true
  26060. },
  26061. {
  26062. name: "Megamacro",
  26063. height: math.unit(100, "miles")
  26064. },
  26065. {
  26066. name: "Gigamacro",
  26067. height: math.unit(80000, "miles")
  26068. },
  26069. ]
  26070. ))
  26071. characterMakers.push(() => makeCharacter(
  26072. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26073. {
  26074. side: {
  26075. height: math.unit(9, "feet"),
  26076. weight: math.unit(400, "kg"),
  26077. name: "Side",
  26078. image: {
  26079. source: "./media/characters/bolt/side.svg",
  26080. extra: 1126 / 896,
  26081. bottom: 60 / 1187.3,
  26082. }
  26083. },
  26084. },
  26085. [
  26086. {
  26087. name: "Micro",
  26088. height: math.unit(5, "inches")
  26089. },
  26090. {
  26091. name: "Normal",
  26092. height: math.unit(9, "feet"),
  26093. default: true
  26094. },
  26095. {
  26096. name: "Macro",
  26097. height: math.unit(700, "feet")
  26098. },
  26099. {
  26100. name: "Max Size",
  26101. height: math.unit(1.52e22, "yottameters")
  26102. },
  26103. ]
  26104. ))
  26105. characterMakers.push(() => makeCharacter(
  26106. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26107. {
  26108. front: {
  26109. height: math.unit(4.3, "meters"),
  26110. weight: math.unit(3, "tons"),
  26111. name: "Front",
  26112. image: {
  26113. source: "./media/characters/draekon-sylviar/front.svg",
  26114. extra: 2072/1512,
  26115. bottom: 74/2146
  26116. }
  26117. },
  26118. back: {
  26119. height: math.unit(4.3, "meters"),
  26120. weight: math.unit(3, "tons"),
  26121. name: "Back",
  26122. image: {
  26123. source: "./media/characters/draekon-sylviar/back.svg",
  26124. extra: 1639/1483,
  26125. bottom: 41/1680
  26126. }
  26127. },
  26128. feral: {
  26129. height: math.unit(1.15, "meters"),
  26130. weight: math.unit(3, "tons"),
  26131. name: "Feral",
  26132. image: {
  26133. source: "./media/characters/draekon-sylviar/feral.svg",
  26134. extra: 1033/395,
  26135. bottom: 130/1163
  26136. }
  26137. },
  26138. maw: {
  26139. height: math.unit(1.3, "meters"),
  26140. name: "Maw",
  26141. image: {
  26142. source: "./media/characters/draekon-sylviar/maw.svg"
  26143. }
  26144. },
  26145. mawSeparated: {
  26146. height: math.unit(1.53, "meters"),
  26147. name: "Separated Maw",
  26148. image: {
  26149. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26150. }
  26151. },
  26152. tail: {
  26153. height: math.unit(1.15, "meters"),
  26154. name: "Tail",
  26155. image: {
  26156. source: "./media/characters/draekon-sylviar/tail.svg"
  26157. }
  26158. },
  26159. tailDick: {
  26160. height: math.unit(1.15, "meters"),
  26161. name: "Tail (Dick)",
  26162. image: {
  26163. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26164. }
  26165. },
  26166. tailDickSeparated: {
  26167. height: math.unit(1.19, "meters"),
  26168. name: "Tail (Separated Dick)",
  26169. image: {
  26170. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26171. }
  26172. },
  26173. slit: {
  26174. height: math.unit(1, "meters"),
  26175. name: "Slit",
  26176. image: {
  26177. source: "./media/characters/draekon-sylviar/slit.svg"
  26178. }
  26179. },
  26180. dick: {
  26181. height: math.unit(1.15, "meters"),
  26182. name: "Dick",
  26183. image: {
  26184. source: "./media/characters/draekon-sylviar/dick.svg"
  26185. }
  26186. },
  26187. dickSeparated: {
  26188. height: math.unit(1.1, "meters"),
  26189. name: "Separated Dick",
  26190. image: {
  26191. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26192. }
  26193. },
  26194. sheath: {
  26195. height: math.unit(1.15, "meters"),
  26196. name: "Sheath",
  26197. image: {
  26198. source: "./media/characters/draekon-sylviar/sheath.svg"
  26199. }
  26200. },
  26201. },
  26202. [
  26203. {
  26204. name: "Small",
  26205. height: math.unit(4.53 / 2, "meters"),
  26206. default: true
  26207. },
  26208. {
  26209. name: "Normal",
  26210. height: math.unit(4.53, "meters"),
  26211. default: true
  26212. },
  26213. {
  26214. name: "Large",
  26215. height: math.unit(4.53 * 2, "meters"),
  26216. },
  26217. ]
  26218. ))
  26219. characterMakers.push(() => makeCharacter(
  26220. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26221. {
  26222. front: {
  26223. height: math.unit(6 + 2 / 12, "feet"),
  26224. weight: math.unit(180, "lb"),
  26225. name: "Front",
  26226. image: {
  26227. source: "./media/characters/brawler/front.svg",
  26228. extra: 3301 / 3027,
  26229. bottom: 138 / 3439
  26230. }
  26231. },
  26232. },
  26233. [
  26234. {
  26235. name: "Normal",
  26236. height: math.unit(6 + 2 / 12, "feet"),
  26237. default: true
  26238. },
  26239. ]
  26240. ))
  26241. characterMakers.push(() => makeCharacter(
  26242. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26243. {
  26244. front: {
  26245. height: math.unit(11, "feet"),
  26246. weight: math.unit(1000, "lb"),
  26247. name: "Front",
  26248. image: {
  26249. source: "./media/characters/alex/front.svg",
  26250. bottom: 44.5 / 620
  26251. }
  26252. },
  26253. },
  26254. [
  26255. {
  26256. name: "Micro",
  26257. height: math.unit(5, "inches")
  26258. },
  26259. {
  26260. name: "Normal",
  26261. height: math.unit(11, "feet"),
  26262. default: true
  26263. },
  26264. {
  26265. name: "Macro",
  26266. height: math.unit(9.5e9, "feet")
  26267. },
  26268. {
  26269. name: "Max Size",
  26270. height: math.unit(1.4e283, "yottameters")
  26271. },
  26272. ]
  26273. ))
  26274. characterMakers.push(() => makeCharacter(
  26275. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26276. {
  26277. female: {
  26278. height: math.unit(29.9, "m"),
  26279. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26280. name: "Female",
  26281. image: {
  26282. source: "./media/characters/zenari/female.svg",
  26283. extra: 3281.6 / 3217,
  26284. bottom: 72.2 / 3353
  26285. }
  26286. },
  26287. male: {
  26288. height: math.unit(27.7, "m"),
  26289. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26290. name: "Male",
  26291. image: {
  26292. source: "./media/characters/zenari/male.svg",
  26293. extra: 3008 / 2991,
  26294. bottom: 54.6 / 3069
  26295. }
  26296. },
  26297. },
  26298. [
  26299. {
  26300. name: "Macro",
  26301. height: math.unit(29.7, "meters"),
  26302. default: true
  26303. },
  26304. ]
  26305. ))
  26306. characterMakers.push(() => makeCharacter(
  26307. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26308. {
  26309. female: {
  26310. height: math.unit(23.8, "m"),
  26311. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26312. name: "Female",
  26313. image: {
  26314. source: "./media/characters/mactarian/female.svg",
  26315. extra: 2662 / 2569,
  26316. bottom: 73 / 2736
  26317. }
  26318. },
  26319. male: {
  26320. height: math.unit(23.8, "m"),
  26321. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26322. name: "Male",
  26323. image: {
  26324. source: "./media/characters/mactarian/male.svg",
  26325. extra: 2673 / 2600,
  26326. bottom: 76 / 2750
  26327. }
  26328. },
  26329. },
  26330. [
  26331. {
  26332. name: "Macro",
  26333. height: math.unit(23.8, "meters"),
  26334. default: true
  26335. },
  26336. ]
  26337. ))
  26338. characterMakers.push(() => makeCharacter(
  26339. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26340. {
  26341. female: {
  26342. height: math.unit(19.3, "m"),
  26343. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26344. name: "Female",
  26345. image: {
  26346. source: "./media/characters/umok/female.svg",
  26347. extra: 2186 / 2078,
  26348. bottom: 87 / 2277
  26349. }
  26350. },
  26351. male: {
  26352. height: math.unit(19.5, "m"),
  26353. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26354. name: "Male",
  26355. image: {
  26356. source: "./media/characters/umok/male.svg",
  26357. extra: 2233 / 2140,
  26358. bottom: 24.4 / 2258
  26359. }
  26360. },
  26361. },
  26362. [
  26363. {
  26364. name: "Macro",
  26365. height: math.unit(19.3, "meters"),
  26366. default: true
  26367. },
  26368. ]
  26369. ))
  26370. characterMakers.push(() => makeCharacter(
  26371. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26372. {
  26373. female: {
  26374. height: math.unit(26.15, "m"),
  26375. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26376. name: "Female",
  26377. image: {
  26378. source: "./media/characters/joraxian/female.svg",
  26379. extra: 2912 / 2824,
  26380. bottom: 36 / 2956
  26381. }
  26382. },
  26383. male: {
  26384. height: math.unit(25.4, "m"),
  26385. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26386. name: "Male",
  26387. image: {
  26388. source: "./media/characters/joraxian/male.svg",
  26389. extra: 2877 / 2721,
  26390. bottom: 82 / 2967
  26391. }
  26392. },
  26393. },
  26394. [
  26395. {
  26396. name: "Macro",
  26397. height: math.unit(26.15, "meters"),
  26398. default: true
  26399. },
  26400. ]
  26401. ))
  26402. characterMakers.push(() => makeCharacter(
  26403. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26404. {
  26405. female: {
  26406. height: math.unit(21.6, "m"),
  26407. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26408. name: "Female",
  26409. image: {
  26410. source: "./media/characters/sthara/female.svg",
  26411. extra: 2516 / 2347,
  26412. bottom: 21.5 / 2537
  26413. }
  26414. },
  26415. male: {
  26416. height: math.unit(24, "m"),
  26417. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26418. name: "Male",
  26419. image: {
  26420. source: "./media/characters/sthara/male.svg",
  26421. extra: 2732 / 2607,
  26422. bottom: 23 / 2732
  26423. }
  26424. },
  26425. },
  26426. [
  26427. {
  26428. name: "Macro",
  26429. height: math.unit(21.6, "meters"),
  26430. default: true
  26431. },
  26432. ]
  26433. ))
  26434. characterMakers.push(() => makeCharacter(
  26435. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26436. {
  26437. front: {
  26438. height: math.unit(6 + 4 / 12, "feet"),
  26439. weight: math.unit(175, "lb"),
  26440. name: "Front",
  26441. image: {
  26442. source: "./media/characters/luka-bryzant/front.svg",
  26443. extra: 311 / 289,
  26444. bottom: 4 / 315
  26445. }
  26446. },
  26447. back: {
  26448. height: math.unit(6 + 4 / 12, "feet"),
  26449. weight: math.unit(175, "lb"),
  26450. name: "Back",
  26451. image: {
  26452. source: "./media/characters/luka-bryzant/back.svg",
  26453. extra: 311 / 289,
  26454. bottom: 3.8 / 313.7
  26455. }
  26456. },
  26457. },
  26458. [
  26459. {
  26460. name: "Micro",
  26461. height: math.unit(10, "inches")
  26462. },
  26463. {
  26464. name: "Normal",
  26465. height: math.unit(6 + 4 / 12, "feet"),
  26466. default: true
  26467. },
  26468. {
  26469. name: "Large",
  26470. height: math.unit(12, "feet")
  26471. },
  26472. ]
  26473. ))
  26474. characterMakers.push(() => makeCharacter(
  26475. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26476. {
  26477. front: {
  26478. height: math.unit(5 + 7 / 12, "feet"),
  26479. weight: math.unit(185, "lb"),
  26480. name: "Front",
  26481. image: {
  26482. source: "./media/characters/aman-aquila/front.svg",
  26483. extra: 1013 / 976,
  26484. bottom: 45.6 / 1057
  26485. }
  26486. },
  26487. side: {
  26488. height: math.unit(5 + 7 / 12, "feet"),
  26489. weight: math.unit(185, "lb"),
  26490. name: "Side",
  26491. image: {
  26492. source: "./media/characters/aman-aquila/side.svg",
  26493. extra: 1054 / 1011,
  26494. bottom: 15 / 1070
  26495. }
  26496. },
  26497. back: {
  26498. height: math.unit(5 + 7 / 12, "feet"),
  26499. weight: math.unit(185, "lb"),
  26500. name: "Back",
  26501. image: {
  26502. source: "./media/characters/aman-aquila/back.svg",
  26503. extra: 1026 / 970,
  26504. bottom: 12 / 1039
  26505. }
  26506. },
  26507. head: {
  26508. height: math.unit(1.211, "feet"),
  26509. name: "Head",
  26510. image: {
  26511. source: "./media/characters/aman-aquila/head.svg",
  26512. }
  26513. },
  26514. },
  26515. [
  26516. {
  26517. name: "Minimicro",
  26518. height: math.unit(0.057, "inches")
  26519. },
  26520. {
  26521. name: "Micro",
  26522. height: math.unit(7, "inches")
  26523. },
  26524. {
  26525. name: "Mini",
  26526. height: math.unit(3 + 7 / 12, "feet")
  26527. },
  26528. {
  26529. name: "Normal",
  26530. height: math.unit(5 + 7 / 12, "feet"),
  26531. default: true
  26532. },
  26533. {
  26534. name: "Macro",
  26535. height: math.unit(157 + 7 / 12, "feet")
  26536. },
  26537. {
  26538. name: "Megamacro",
  26539. height: math.unit(1557 + 7 / 12, "feet")
  26540. },
  26541. {
  26542. name: "Gigamacro",
  26543. height: math.unit(15557 + 7 / 12, "feet")
  26544. },
  26545. ]
  26546. ))
  26547. characterMakers.push(() => makeCharacter(
  26548. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26549. {
  26550. front: {
  26551. height: math.unit(3 + 2 / 12, "inches"),
  26552. weight: math.unit(0.3, "ounces"),
  26553. name: "Front",
  26554. image: {
  26555. source: "./media/characters/hiphae/front.svg",
  26556. extra: 1931 / 1683,
  26557. bottom: 24 / 1955
  26558. }
  26559. },
  26560. },
  26561. [
  26562. {
  26563. name: "Normal",
  26564. height: math.unit(3 + 1 / 2, "inches"),
  26565. default: true
  26566. },
  26567. ]
  26568. ))
  26569. characterMakers.push(() => makeCharacter(
  26570. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26571. {
  26572. front: {
  26573. height: math.unit(5 + 10 / 12, "feet"),
  26574. weight: math.unit(165, "lb"),
  26575. name: "Front",
  26576. image: {
  26577. source: "./media/characters/nicky/front.svg",
  26578. extra: 3144 / 2886,
  26579. bottom: 45.6 / 3192
  26580. }
  26581. },
  26582. back: {
  26583. height: math.unit(5 + 10 / 12, "feet"),
  26584. weight: math.unit(165, "lb"),
  26585. name: "Back",
  26586. image: {
  26587. source: "./media/characters/nicky/back.svg",
  26588. extra: 3055 / 2804,
  26589. bottom: 28.4 / 3087
  26590. }
  26591. },
  26592. frontclothed: {
  26593. height: math.unit(5 + 10 / 12, "feet"),
  26594. weight: math.unit(165, "lb"),
  26595. name: "Front-clothed",
  26596. image: {
  26597. source: "./media/characters/nicky/front-clothed.svg",
  26598. extra: 3184.9 / 2926.9,
  26599. bottom: 86.5 / 3239.9
  26600. }
  26601. },
  26602. foot: {
  26603. height: math.unit(1.16, "feet"),
  26604. name: "Foot",
  26605. image: {
  26606. source: "./media/characters/nicky/foot.svg"
  26607. }
  26608. },
  26609. feet: {
  26610. height: math.unit(1.34, "feet"),
  26611. name: "Feet",
  26612. image: {
  26613. source: "./media/characters/nicky/feet.svg"
  26614. }
  26615. },
  26616. maw: {
  26617. height: math.unit(0.9, "feet"),
  26618. name: "Maw",
  26619. image: {
  26620. source: "./media/characters/nicky/maw.svg"
  26621. }
  26622. },
  26623. },
  26624. [
  26625. {
  26626. name: "Normal",
  26627. height: math.unit(5 + 10 / 12, "feet"),
  26628. default: true
  26629. },
  26630. {
  26631. name: "Macro",
  26632. height: math.unit(60, "feet")
  26633. },
  26634. {
  26635. name: "Megamacro",
  26636. height: math.unit(1, "mile")
  26637. },
  26638. ]
  26639. ))
  26640. characterMakers.push(() => makeCharacter(
  26641. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26642. {
  26643. side: {
  26644. height: math.unit(10, "feet"),
  26645. weight: math.unit(600, "lb"),
  26646. name: "Side",
  26647. image: {
  26648. source: "./media/characters/blair/side.svg",
  26649. bottom: 16.6 / 475,
  26650. extra: 458 / 431
  26651. }
  26652. },
  26653. },
  26654. [
  26655. {
  26656. name: "Micro",
  26657. height: math.unit(8, "inches")
  26658. },
  26659. {
  26660. name: "Normal",
  26661. height: math.unit(10, "feet"),
  26662. default: true
  26663. },
  26664. {
  26665. name: "Macro",
  26666. height: math.unit(180, "feet")
  26667. },
  26668. ]
  26669. ))
  26670. characterMakers.push(() => makeCharacter(
  26671. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26672. {
  26673. front: {
  26674. height: math.unit(5 + 4 / 12, "feet"),
  26675. weight: math.unit(125, "lb"),
  26676. name: "Front",
  26677. image: {
  26678. source: "./media/characters/fisher/front.svg",
  26679. extra: 444 / 390,
  26680. bottom: 2 / 444.8
  26681. }
  26682. },
  26683. },
  26684. [
  26685. {
  26686. name: "Micro",
  26687. height: math.unit(4, "inches")
  26688. },
  26689. {
  26690. name: "Normal",
  26691. height: math.unit(5 + 4 / 12, "feet"),
  26692. default: true
  26693. },
  26694. {
  26695. name: "Macro",
  26696. height: math.unit(100, "feet")
  26697. },
  26698. ]
  26699. ))
  26700. characterMakers.push(() => makeCharacter(
  26701. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26702. {
  26703. front: {
  26704. height: math.unit(6.71, "feet"),
  26705. weight: math.unit(200, "lb"),
  26706. preyCapacity: math.unit(1000000, "people"),
  26707. name: "Front",
  26708. image: {
  26709. source: "./media/characters/gliss/front.svg",
  26710. extra: 2347 / 2231,
  26711. bottom: 113 / 2462
  26712. }
  26713. },
  26714. hammerspaceSize: {
  26715. height: math.unit(6.71 * 717, "feet"),
  26716. weight: math.unit(200, "lb"),
  26717. preyCapacity: math.unit(1000000, "people"),
  26718. name: "Hammerspace Size",
  26719. image: {
  26720. source: "./media/characters/gliss/front.svg",
  26721. extra: 2347 / 2231,
  26722. bottom: 113 / 2462
  26723. }
  26724. },
  26725. },
  26726. [
  26727. {
  26728. name: "Normal",
  26729. height: math.unit(6.71, "feet"),
  26730. default: true
  26731. },
  26732. ]
  26733. ))
  26734. characterMakers.push(() => makeCharacter(
  26735. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26736. {
  26737. side: {
  26738. height: math.unit(1.44, "m"),
  26739. weight: math.unit(80, "kg"),
  26740. name: "Side",
  26741. image: {
  26742. source: "./media/characters/dune-anderson/side.svg",
  26743. bottom: 49 / 1426
  26744. }
  26745. },
  26746. },
  26747. [
  26748. {
  26749. name: "Wolf-sized",
  26750. height: math.unit(1.44, "meters")
  26751. },
  26752. {
  26753. name: "Normal",
  26754. height: math.unit(5.05, "meters"),
  26755. default: true
  26756. },
  26757. {
  26758. name: "Big",
  26759. height: math.unit(14.4, "meters")
  26760. },
  26761. {
  26762. name: "Huge",
  26763. height: math.unit(144, "meters")
  26764. },
  26765. ]
  26766. ))
  26767. characterMakers.push(() => makeCharacter(
  26768. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26769. {
  26770. front: {
  26771. height: math.unit(7, "feet"),
  26772. weight: math.unit(425, "lb"),
  26773. name: "Front",
  26774. image: {
  26775. source: "./media/characters/hind/front.svg",
  26776. extra: 2091 / 1860,
  26777. bottom: 129 / 2220
  26778. }
  26779. },
  26780. back: {
  26781. height: math.unit(7, "feet"),
  26782. weight: math.unit(425, "lb"),
  26783. name: "Back",
  26784. image: {
  26785. source: "./media/characters/hind/back.svg",
  26786. extra: 2091 / 1860,
  26787. bottom: 24.6 / 2309
  26788. }
  26789. },
  26790. tail: {
  26791. height: math.unit(2.8, "feet"),
  26792. name: "Tail",
  26793. image: {
  26794. source: "./media/characters/hind/tail.svg"
  26795. }
  26796. },
  26797. head: {
  26798. height: math.unit(2.55, "feet"),
  26799. name: "Head",
  26800. image: {
  26801. source: "./media/characters/hind/head.svg"
  26802. }
  26803. },
  26804. },
  26805. [
  26806. {
  26807. name: "XS",
  26808. height: math.unit(0.7, "feet")
  26809. },
  26810. {
  26811. name: "Normal",
  26812. height: math.unit(7, "feet"),
  26813. default: true
  26814. },
  26815. {
  26816. name: "XL",
  26817. height: math.unit(70, "feet")
  26818. },
  26819. ]
  26820. ))
  26821. characterMakers.push(() => makeCharacter(
  26822. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26823. {
  26824. front: {
  26825. height: math.unit(2.1, "meters"),
  26826. weight: math.unit(150, "lb"),
  26827. name: "Front",
  26828. image: {
  26829. source: "./media/characters/tharquench-sizestealer/front.svg",
  26830. extra: 1605/1470,
  26831. bottom: 36/1641
  26832. }
  26833. },
  26834. frontAlt: {
  26835. height: math.unit(2.1, "meters"),
  26836. weight: math.unit(150, "lb"),
  26837. name: "Front (Alt)",
  26838. image: {
  26839. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26840. extra: 2318 / 2063,
  26841. bottom: 93.4 / 2410
  26842. }
  26843. },
  26844. },
  26845. [
  26846. {
  26847. name: "Nano",
  26848. height: math.unit(1, "mm")
  26849. },
  26850. {
  26851. name: "Micro",
  26852. height: math.unit(1, "cm")
  26853. },
  26854. {
  26855. name: "Normal",
  26856. height: math.unit(2.1, "meters"),
  26857. default: true
  26858. },
  26859. ]
  26860. ))
  26861. characterMakers.push(() => makeCharacter(
  26862. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26863. {
  26864. front: {
  26865. height: math.unit(7 + 5 / 12, "feet"),
  26866. weight: math.unit(357, "lb"),
  26867. name: "Front",
  26868. image: {
  26869. source: "./media/characters/solex-draconov/front.svg",
  26870. extra: 1993 / 1865,
  26871. bottom: 117 / 2111
  26872. }
  26873. },
  26874. },
  26875. [
  26876. {
  26877. name: "Natural Height",
  26878. height: math.unit(7 + 5 / 12, "feet"),
  26879. default: true
  26880. },
  26881. {
  26882. name: "Macro",
  26883. height: math.unit(350, "feet")
  26884. },
  26885. {
  26886. name: "Macro+",
  26887. height: math.unit(1000, "feet")
  26888. },
  26889. {
  26890. name: "Megamacro",
  26891. height: math.unit(20, "km")
  26892. },
  26893. {
  26894. name: "Megamacro+",
  26895. height: math.unit(1000, "km")
  26896. },
  26897. {
  26898. name: "Gigamacro",
  26899. height: math.unit(2.5, "Gm")
  26900. },
  26901. {
  26902. name: "Teramacro",
  26903. height: math.unit(15, "Tm")
  26904. },
  26905. {
  26906. name: "Galactic",
  26907. height: math.unit(30, "Zm")
  26908. },
  26909. {
  26910. name: "Universal",
  26911. height: math.unit(21000, "Ym")
  26912. },
  26913. {
  26914. name: "Omniversal",
  26915. height: math.unit(9.861e50, "Ym")
  26916. },
  26917. {
  26918. name: "Existential",
  26919. height: math.unit(1e300, "meters")
  26920. },
  26921. ]
  26922. ))
  26923. characterMakers.push(() => makeCharacter(
  26924. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26925. {
  26926. side: {
  26927. height: math.unit(25, "feet"),
  26928. weight: math.unit(90000, "lb"),
  26929. name: "Side",
  26930. image: {
  26931. source: "./media/characters/mandarax/side.svg",
  26932. extra: 614 / 332,
  26933. bottom: 55 / 630
  26934. }
  26935. },
  26936. lounging: {
  26937. height: math.unit(15.4, "feet"),
  26938. weight: math.unit(90000, "lb"),
  26939. name: "Lounging",
  26940. image: {
  26941. source: "./media/characters/mandarax/lounging.svg",
  26942. extra: 817/609,
  26943. bottom: 685/1502
  26944. }
  26945. },
  26946. head: {
  26947. height: math.unit(11.4, "feet"),
  26948. name: "Head",
  26949. image: {
  26950. source: "./media/characters/mandarax/head.svg"
  26951. }
  26952. },
  26953. belly: {
  26954. height: math.unit(33, "feet"),
  26955. name: "Belly",
  26956. preyCapacity: math.unit(500, "people"),
  26957. image: {
  26958. source: "./media/characters/mandarax/belly.svg"
  26959. }
  26960. },
  26961. dick: {
  26962. height: math.unit(8.46, "feet"),
  26963. name: "Dick",
  26964. image: {
  26965. source: "./media/characters/mandarax/dick.svg"
  26966. }
  26967. },
  26968. top: {
  26969. height: math.unit(28, "meters"),
  26970. name: "Top",
  26971. image: {
  26972. source: "./media/characters/mandarax/top.svg"
  26973. }
  26974. },
  26975. },
  26976. [
  26977. {
  26978. name: "Normal",
  26979. height: math.unit(25, "feet"),
  26980. default: true
  26981. },
  26982. ]
  26983. ))
  26984. characterMakers.push(() => makeCharacter(
  26985. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26986. {
  26987. front: {
  26988. height: math.unit(5, "feet"),
  26989. weight: math.unit(90, "lb"),
  26990. name: "Front",
  26991. image: {
  26992. source: "./media/characters/pixil/front.svg",
  26993. extra: 2000 / 1618,
  26994. bottom: 12.3 / 2011
  26995. }
  26996. },
  26997. },
  26998. [
  26999. {
  27000. name: "Normal",
  27001. height: math.unit(5, "feet"),
  27002. default: true
  27003. },
  27004. {
  27005. name: "Megamacro",
  27006. height: math.unit(10, "miles"),
  27007. },
  27008. ]
  27009. ))
  27010. characterMakers.push(() => makeCharacter(
  27011. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27012. {
  27013. front: {
  27014. height: math.unit(7 + 2 / 12, "feet"),
  27015. weight: math.unit(200, "lb"),
  27016. name: "Front",
  27017. image: {
  27018. source: "./media/characters/angel/front.svg",
  27019. extra: 1830 / 1737,
  27020. bottom: 22.6 / 1854,
  27021. }
  27022. },
  27023. },
  27024. [
  27025. {
  27026. name: "Normal",
  27027. height: math.unit(7 + 2 / 12, "feet"),
  27028. default: true
  27029. },
  27030. {
  27031. name: "Macro",
  27032. height: math.unit(1000, "feet")
  27033. },
  27034. {
  27035. name: "Megamacro",
  27036. height: math.unit(2, "miles")
  27037. },
  27038. {
  27039. name: "Gigamacro",
  27040. height: math.unit(20, "earths")
  27041. },
  27042. ]
  27043. ))
  27044. characterMakers.push(() => makeCharacter(
  27045. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27046. {
  27047. front: {
  27048. height: math.unit(5, "feet"),
  27049. weight: math.unit(180, "lb"),
  27050. name: "Front",
  27051. image: {
  27052. source: "./media/characters/mekana/front.svg",
  27053. extra: 1671 / 1605,
  27054. bottom: 3.5 / 1691
  27055. }
  27056. },
  27057. side: {
  27058. height: math.unit(5, "feet"),
  27059. weight: math.unit(180, "lb"),
  27060. name: "Side",
  27061. image: {
  27062. source: "./media/characters/mekana/side.svg",
  27063. extra: 1671 / 1605,
  27064. bottom: 3.5 / 1691
  27065. }
  27066. },
  27067. back: {
  27068. height: math.unit(5, "feet"),
  27069. weight: math.unit(180, "lb"),
  27070. name: "Back",
  27071. image: {
  27072. source: "./media/characters/mekana/back.svg",
  27073. extra: 1671 / 1605,
  27074. bottom: 3.5 / 1691
  27075. }
  27076. },
  27077. },
  27078. [
  27079. {
  27080. name: "Normal",
  27081. height: math.unit(5, "feet"),
  27082. default: true
  27083. },
  27084. ]
  27085. ))
  27086. characterMakers.push(() => makeCharacter(
  27087. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27088. {
  27089. front: {
  27090. height: math.unit(4 + 6 / 12, "feet"),
  27091. weight: math.unit(80, "lb"),
  27092. name: "Front",
  27093. image: {
  27094. source: "./media/characters/pixie/front.svg",
  27095. extra: 1924 / 1825,
  27096. bottom: 22.4 / 1946
  27097. }
  27098. },
  27099. },
  27100. [
  27101. {
  27102. name: "Normal",
  27103. height: math.unit(4 + 6 / 12, "feet"),
  27104. default: true
  27105. },
  27106. {
  27107. name: "Macro",
  27108. height: math.unit(40, "feet")
  27109. },
  27110. ]
  27111. ))
  27112. characterMakers.push(() => makeCharacter(
  27113. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27114. {
  27115. front: {
  27116. height: math.unit(2.1, "meters"),
  27117. weight: math.unit(200, "lb"),
  27118. name: "Front",
  27119. image: {
  27120. source: "./media/characters/the-lascivious/front.svg",
  27121. extra: 1 / 0.893,
  27122. bottom: 3.5 / 573.7
  27123. }
  27124. },
  27125. },
  27126. [
  27127. {
  27128. name: "Human Scale",
  27129. height: math.unit(2.1, "meters")
  27130. },
  27131. {
  27132. name: "Wolxi Scale",
  27133. height: math.unit(46.2, "m"),
  27134. default: true
  27135. },
  27136. {
  27137. name: "Boinker of Buildings",
  27138. height: math.unit(10, "km")
  27139. },
  27140. {
  27141. name: "Shagger of Skyscrapers",
  27142. height: math.unit(40, "km")
  27143. },
  27144. {
  27145. name: "Banger of Boroughs",
  27146. height: math.unit(4000, "km")
  27147. },
  27148. {
  27149. name: "Screwer of States",
  27150. height: math.unit(100000, "km")
  27151. },
  27152. {
  27153. name: "Pounder of Planets",
  27154. height: math.unit(2000000, "km")
  27155. },
  27156. ]
  27157. ))
  27158. characterMakers.push(() => makeCharacter(
  27159. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27160. {
  27161. front: {
  27162. height: math.unit(6, "feet"),
  27163. weight: math.unit(150, "lb"),
  27164. name: "Front",
  27165. image: {
  27166. source: "./media/characters/aj/front.svg",
  27167. extra: 2039 / 1562,
  27168. bottom: 40 / 2079
  27169. }
  27170. },
  27171. },
  27172. [
  27173. {
  27174. name: "Normal",
  27175. height: math.unit(11 + 6 / 12, "feet"),
  27176. default: true
  27177. },
  27178. {
  27179. name: "Megamacro",
  27180. height: math.unit(60, "megameters")
  27181. },
  27182. ]
  27183. ))
  27184. characterMakers.push(() => makeCharacter(
  27185. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27186. {
  27187. side: {
  27188. height: math.unit(31 + 8 / 12, "feet"),
  27189. weight: math.unit(75000, "kg"),
  27190. name: "Side",
  27191. image: {
  27192. source: "./media/characters/koros/side.svg",
  27193. extra: 1442 / 1297,
  27194. bottom: 122.7 / 1562
  27195. }
  27196. },
  27197. dicksKingsCrown: {
  27198. height: math.unit(6, "feet"),
  27199. name: "Dicks (King's Crown)",
  27200. image: {
  27201. source: "./media/characters/koros/dicks-kings-crown.svg"
  27202. }
  27203. },
  27204. dicksTailSet: {
  27205. height: math.unit(3, "feet"),
  27206. name: "Dicks (Tail Set)",
  27207. image: {
  27208. source: "./media/characters/koros/dicks-tail-set.svg"
  27209. }
  27210. },
  27211. dickCumming: {
  27212. height: math.unit(7.98, "feet"),
  27213. name: "Dick (Cumming)",
  27214. image: {
  27215. source: "./media/characters/koros/dick-cumming.svg"
  27216. }
  27217. },
  27218. dicksBack: {
  27219. height: math.unit(5.9, "feet"),
  27220. name: "Dicks (Back)",
  27221. image: {
  27222. source: "./media/characters/koros/dicks-back.svg"
  27223. }
  27224. },
  27225. dicksFront: {
  27226. height: math.unit(3.72, "feet"),
  27227. name: "Dicks (Front)",
  27228. image: {
  27229. source: "./media/characters/koros/dicks-front.svg"
  27230. }
  27231. },
  27232. dicksPeeking: {
  27233. height: math.unit(3.0, "feet"),
  27234. name: "Dicks (Peeking)",
  27235. image: {
  27236. source: "./media/characters/koros/dicks-peeking.svg"
  27237. }
  27238. },
  27239. eye: {
  27240. height: math.unit(1.7, "feet"),
  27241. name: "Eye",
  27242. image: {
  27243. source: "./media/characters/koros/eye.svg"
  27244. }
  27245. },
  27246. headFront: {
  27247. height: math.unit(11.69, "feet"),
  27248. name: "Head (Front)",
  27249. image: {
  27250. source: "./media/characters/koros/head-front.svg"
  27251. }
  27252. },
  27253. headSide: {
  27254. height: math.unit(14, "feet"),
  27255. name: "Head (Side)",
  27256. image: {
  27257. source: "./media/characters/koros/head-side.svg"
  27258. }
  27259. },
  27260. leg: {
  27261. height: math.unit(17, "feet"),
  27262. name: "Leg",
  27263. image: {
  27264. source: "./media/characters/koros/leg.svg"
  27265. }
  27266. },
  27267. mawSide: {
  27268. height: math.unit(12.8, "feet"),
  27269. name: "Maw (Side)",
  27270. image: {
  27271. source: "./media/characters/koros/maw-side.svg"
  27272. }
  27273. },
  27274. mawSpitting: {
  27275. height: math.unit(17, "feet"),
  27276. name: "Maw (Spitting)",
  27277. image: {
  27278. source: "./media/characters/koros/maw-spitting.svg"
  27279. }
  27280. },
  27281. slit: {
  27282. height: math.unit(2.8, "feet"),
  27283. name: "Slit",
  27284. image: {
  27285. source: "./media/characters/koros/slit.svg"
  27286. }
  27287. },
  27288. stomach: {
  27289. height: math.unit(6.8, "feet"),
  27290. preyCapacity: math.unit(20, "people"),
  27291. name: "Stomach",
  27292. image: {
  27293. source: "./media/characters/koros/stomach.svg"
  27294. }
  27295. },
  27296. wingspanBottom: {
  27297. height: math.unit(114, "feet"),
  27298. name: "Wingspan (Bottom)",
  27299. image: {
  27300. source: "./media/characters/koros/wingspan-bottom.svg"
  27301. }
  27302. },
  27303. wingspanTop: {
  27304. height: math.unit(104, "feet"),
  27305. name: "Wingspan (Top)",
  27306. image: {
  27307. source: "./media/characters/koros/wingspan-top.svg"
  27308. }
  27309. },
  27310. },
  27311. [
  27312. {
  27313. name: "Normal",
  27314. height: math.unit(31 + 8 / 12, "feet"),
  27315. default: true
  27316. },
  27317. ]
  27318. ))
  27319. characterMakers.push(() => makeCharacter(
  27320. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27321. {
  27322. front: {
  27323. height: math.unit(18 + 5 / 12, "feet"),
  27324. weight: math.unit(3750, "kg"),
  27325. name: "Front",
  27326. image: {
  27327. source: "./media/characters/vexx/front.svg",
  27328. extra: 426 / 396,
  27329. bottom: 31.5 / 458
  27330. }
  27331. },
  27332. maw: {
  27333. height: math.unit(6, "feet"),
  27334. name: "Maw",
  27335. image: {
  27336. source: "./media/characters/vexx/maw.svg"
  27337. }
  27338. },
  27339. },
  27340. [
  27341. {
  27342. name: "Normal",
  27343. height: math.unit(18 + 5 / 12, "feet"),
  27344. default: true
  27345. },
  27346. ]
  27347. ))
  27348. characterMakers.push(() => makeCharacter(
  27349. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27350. {
  27351. front: {
  27352. height: math.unit(17 + 6 / 12, "feet"),
  27353. weight: math.unit(150, "lb"),
  27354. name: "Front",
  27355. image: {
  27356. source: "./media/characters/baadra/front.svg",
  27357. extra: 1694/1553,
  27358. bottom: 179/1873
  27359. }
  27360. },
  27361. frontAlt: {
  27362. height: math.unit(17 + 6 / 12, "feet"),
  27363. weight: math.unit(150, "lb"),
  27364. name: "Front (Alt)",
  27365. image: {
  27366. source: "./media/characters/baadra/front-alt.svg",
  27367. extra: 3137 / 2890,
  27368. bottom: 168.4 / 3305
  27369. }
  27370. },
  27371. back: {
  27372. height: math.unit(17 + 6 / 12, "feet"),
  27373. weight: math.unit(150, "lb"),
  27374. name: "Back",
  27375. image: {
  27376. source: "./media/characters/baadra/back.svg",
  27377. extra: 3142 / 2890,
  27378. bottom: 220 / 3371
  27379. }
  27380. },
  27381. head: {
  27382. height: math.unit(5.45, "feet"),
  27383. name: "Head",
  27384. image: {
  27385. source: "./media/characters/baadra/head.svg"
  27386. }
  27387. },
  27388. headAngry: {
  27389. height: math.unit(4.95, "feet"),
  27390. name: "Head (Angry)",
  27391. image: {
  27392. source: "./media/characters/baadra/head-angry.svg"
  27393. }
  27394. },
  27395. headOpen: {
  27396. height: math.unit(6, "feet"),
  27397. name: "Head (Open)",
  27398. image: {
  27399. source: "./media/characters/baadra/head-open.svg"
  27400. }
  27401. },
  27402. },
  27403. [
  27404. {
  27405. name: "Normal",
  27406. height: math.unit(17 + 6 / 12, "feet"),
  27407. default: true
  27408. },
  27409. ]
  27410. ))
  27411. characterMakers.push(() => makeCharacter(
  27412. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27413. {
  27414. front: {
  27415. height: math.unit(7 + 3 / 12, "feet"),
  27416. weight: math.unit(180, "lb"),
  27417. name: "Front",
  27418. image: {
  27419. source: "./media/characters/juri/front.svg",
  27420. extra: 1401 / 1237,
  27421. bottom: 18.5 / 1418
  27422. }
  27423. },
  27424. side: {
  27425. height: math.unit(7 + 3 / 12, "feet"),
  27426. weight: math.unit(180, "lb"),
  27427. name: "Side",
  27428. image: {
  27429. source: "./media/characters/juri/side.svg",
  27430. extra: 1424 / 1242,
  27431. bottom: 18.5 / 1447
  27432. }
  27433. },
  27434. sitting: {
  27435. height: math.unit(6, "feet"),
  27436. weight: math.unit(180, "lb"),
  27437. name: "Sitting",
  27438. image: {
  27439. source: "./media/characters/juri/sitting.svg",
  27440. extra: 1270 / 1143,
  27441. bottom: 100 / 1343
  27442. }
  27443. },
  27444. back: {
  27445. height: math.unit(7 + 3 / 12, "feet"),
  27446. weight: math.unit(180, "lb"),
  27447. name: "Back",
  27448. image: {
  27449. source: "./media/characters/juri/back.svg",
  27450. extra: 1377 / 1240,
  27451. bottom: 23.7 / 1405
  27452. }
  27453. },
  27454. maw: {
  27455. height: math.unit(2.8, "feet"),
  27456. name: "Maw",
  27457. image: {
  27458. source: "./media/characters/juri/maw.svg"
  27459. }
  27460. },
  27461. stomach: {
  27462. height: math.unit(0.89, "feet"),
  27463. preyCapacity: math.unit(4, "liters"),
  27464. name: "Stomach",
  27465. image: {
  27466. source: "./media/characters/juri/stomach.svg"
  27467. }
  27468. },
  27469. },
  27470. [
  27471. {
  27472. name: "Normal",
  27473. height: math.unit(7 + 3 / 12, "feet"),
  27474. default: true
  27475. },
  27476. ]
  27477. ))
  27478. characterMakers.push(() => makeCharacter(
  27479. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27480. {
  27481. fox: {
  27482. height: math.unit(5 + 6 / 12, "feet"),
  27483. weight: math.unit(140, "lb"),
  27484. name: "Fox",
  27485. image: {
  27486. source: "./media/characters/maxene-sita/fox.svg",
  27487. extra: 146 / 138,
  27488. bottom: 2.1 / 148.19
  27489. }
  27490. },
  27491. foxLaying: {
  27492. height: math.unit(1.70, "feet"),
  27493. weight: math.unit(140, "lb"),
  27494. name: "Fox (Laying)",
  27495. image: {
  27496. source: "./media/characters/maxene-sita/fox-laying.svg",
  27497. extra: 910 / 572,
  27498. bottom: 71 / 981
  27499. }
  27500. },
  27501. kitsune: {
  27502. height: math.unit(10, "feet"),
  27503. weight: math.unit(800, "lb"),
  27504. name: "Kitsune",
  27505. image: {
  27506. source: "./media/characters/maxene-sita/kitsune.svg",
  27507. extra: 185 / 176,
  27508. bottom: 4.7 / 189.9
  27509. }
  27510. },
  27511. hellhound: {
  27512. height: math.unit(10, "feet"),
  27513. weight: math.unit(700, "lb"),
  27514. name: "Hellhound",
  27515. image: {
  27516. source: "./media/characters/maxene-sita/hellhound.svg",
  27517. extra: 1600 / 1545,
  27518. bottom: 81 / 1681
  27519. }
  27520. },
  27521. },
  27522. [
  27523. {
  27524. name: "Normal",
  27525. height: math.unit(5 + 6 / 12, "feet"),
  27526. default: true
  27527. },
  27528. ]
  27529. ))
  27530. characterMakers.push(() => makeCharacter(
  27531. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27532. {
  27533. front: {
  27534. height: math.unit(3 + 4 / 12, "feet"),
  27535. weight: math.unit(70, "lb"),
  27536. name: "Front",
  27537. image: {
  27538. source: "./media/characters/maia/front.svg",
  27539. extra: 227 / 219.5,
  27540. bottom: 40 / 267
  27541. }
  27542. },
  27543. back: {
  27544. height: math.unit(3 + 4 / 12, "feet"),
  27545. weight: math.unit(70, "lb"),
  27546. name: "Back",
  27547. image: {
  27548. source: "./media/characters/maia/back.svg",
  27549. extra: 237 / 225
  27550. }
  27551. },
  27552. },
  27553. [
  27554. {
  27555. name: "Normal",
  27556. height: math.unit(3 + 4 / 12, "feet"),
  27557. default: true
  27558. },
  27559. ]
  27560. ))
  27561. characterMakers.push(() => makeCharacter(
  27562. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27563. {
  27564. front: {
  27565. height: math.unit(5 + 10 / 12, "feet"),
  27566. weight: math.unit(197, "lb"),
  27567. name: "Front",
  27568. image: {
  27569. source: "./media/characters/jabaro/front.svg",
  27570. extra: 225 / 216,
  27571. bottom: 5.06 / 230
  27572. }
  27573. },
  27574. back: {
  27575. height: math.unit(5 + 10 / 12, "feet"),
  27576. weight: math.unit(197, "lb"),
  27577. name: "Back",
  27578. image: {
  27579. source: "./media/characters/jabaro/back.svg",
  27580. extra: 225 / 219,
  27581. bottom: 1.9 / 227
  27582. }
  27583. },
  27584. },
  27585. [
  27586. {
  27587. name: "Normal",
  27588. height: math.unit(5 + 10 / 12, "feet"),
  27589. default: true
  27590. },
  27591. ]
  27592. ))
  27593. characterMakers.push(() => makeCharacter(
  27594. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27595. {
  27596. front: {
  27597. height: math.unit(5 + 8 / 12, "feet"),
  27598. weight: math.unit(139, "lb"),
  27599. name: "Front",
  27600. image: {
  27601. source: "./media/characters/risa/front.svg",
  27602. extra: 270 / 260,
  27603. bottom: 11.2 / 282
  27604. }
  27605. },
  27606. back: {
  27607. height: math.unit(5 + 8 / 12, "feet"),
  27608. weight: math.unit(139, "lb"),
  27609. name: "Back",
  27610. image: {
  27611. source: "./media/characters/risa/back.svg",
  27612. extra: 264 / 255,
  27613. bottom: 4 / 268
  27614. }
  27615. },
  27616. },
  27617. [
  27618. {
  27619. name: "Normal",
  27620. height: math.unit(5 + 8 / 12, "feet"),
  27621. default: true
  27622. },
  27623. ]
  27624. ))
  27625. characterMakers.push(() => makeCharacter(
  27626. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27627. {
  27628. front: {
  27629. height: math.unit(2 + 11 / 12, "feet"),
  27630. weight: math.unit(30, "lb"),
  27631. name: "Front",
  27632. image: {
  27633. source: "./media/characters/weatley/front.svg",
  27634. bottom: 10.7 / 414,
  27635. extra: 403.5 / 362
  27636. }
  27637. },
  27638. back: {
  27639. height: math.unit(2 + 11 / 12, "feet"),
  27640. weight: math.unit(30, "lb"),
  27641. name: "Back",
  27642. image: {
  27643. source: "./media/characters/weatley/back.svg",
  27644. bottom: 10.7 / 414,
  27645. extra: 403.5 / 362
  27646. }
  27647. },
  27648. },
  27649. [
  27650. {
  27651. name: "Normal",
  27652. height: math.unit(2 + 11 / 12, "feet"),
  27653. default: true
  27654. },
  27655. ]
  27656. ))
  27657. characterMakers.push(() => makeCharacter(
  27658. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27659. {
  27660. front: {
  27661. height: math.unit(5 + 2 / 12, "feet"),
  27662. weight: math.unit(50, "kg"),
  27663. name: "Front",
  27664. image: {
  27665. source: "./media/characters/mercury-crescent/front.svg",
  27666. extra: 1088 / 1033,
  27667. bottom: 18.9 / 1109
  27668. }
  27669. },
  27670. },
  27671. [
  27672. {
  27673. name: "Normal",
  27674. height: math.unit(5 + 2 / 12, "feet"),
  27675. default: true
  27676. },
  27677. ]
  27678. ))
  27679. characterMakers.push(() => makeCharacter(
  27680. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27681. {
  27682. front: {
  27683. height: math.unit(2, "feet"),
  27684. weight: math.unit(15, "kg"),
  27685. name: "Front",
  27686. image: {
  27687. source: "./media/characters/diamond-jones/front.svg",
  27688. extra: 727/723,
  27689. bottom: 46/773
  27690. }
  27691. },
  27692. },
  27693. [
  27694. {
  27695. name: "Normal",
  27696. height: math.unit(2, "feet"),
  27697. default: true
  27698. },
  27699. ]
  27700. ))
  27701. characterMakers.push(() => makeCharacter(
  27702. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27703. {
  27704. front: {
  27705. height: math.unit(3, "feet"),
  27706. weight: math.unit(30, "kg"),
  27707. name: "Front",
  27708. image: {
  27709. source: "./media/characters/sweet-bit/front.svg",
  27710. extra: 675 / 567,
  27711. bottom: 27.7 / 703
  27712. }
  27713. },
  27714. },
  27715. [
  27716. {
  27717. name: "Normal",
  27718. height: math.unit(3, "feet"),
  27719. default: true
  27720. },
  27721. ]
  27722. ))
  27723. characterMakers.push(() => makeCharacter(
  27724. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27725. {
  27726. side: {
  27727. height: math.unit(9.178, "feet"),
  27728. weight: math.unit(500, "lb"),
  27729. name: "Side",
  27730. image: {
  27731. source: "./media/characters/umbrazen/side.svg",
  27732. extra: 1730 / 1473,
  27733. bottom: 34.6 / 1765
  27734. }
  27735. },
  27736. },
  27737. [
  27738. {
  27739. name: "Normal",
  27740. height: math.unit(9.178, "feet"),
  27741. default: true
  27742. },
  27743. ]
  27744. ))
  27745. characterMakers.push(() => makeCharacter(
  27746. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27747. {
  27748. front: {
  27749. height: math.unit(10, "feet"),
  27750. weight: math.unit(750, "lb"),
  27751. name: "Front",
  27752. image: {
  27753. source: "./media/characters/arlist/front.svg",
  27754. extra: 961 / 778,
  27755. bottom: 6.2 / 986
  27756. }
  27757. },
  27758. },
  27759. [
  27760. {
  27761. name: "Normal",
  27762. height: math.unit(10, "feet"),
  27763. default: true
  27764. },
  27765. ]
  27766. ))
  27767. characterMakers.push(() => makeCharacter(
  27768. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27769. {
  27770. front: {
  27771. height: math.unit(5 + 1 / 12, "feet"),
  27772. weight: math.unit(110, "lb"),
  27773. name: "Front",
  27774. image: {
  27775. source: "./media/characters/aradel/front.svg",
  27776. extra: 324 / 303,
  27777. bottom: 3.6 / 329.4
  27778. }
  27779. },
  27780. },
  27781. [
  27782. {
  27783. name: "Normal",
  27784. height: math.unit(5 + 1 / 12, "feet"),
  27785. default: true
  27786. },
  27787. ]
  27788. ))
  27789. characterMakers.push(() => makeCharacter(
  27790. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27791. {
  27792. dressed: {
  27793. height: math.unit(3 + 8 / 12, "feet"),
  27794. weight: math.unit(50, "lb"),
  27795. name: "Dressed",
  27796. image: {
  27797. source: "./media/characters/serryn/dressed.svg",
  27798. extra: 1792 / 1656,
  27799. bottom: 43.5 / 1840
  27800. }
  27801. },
  27802. nude: {
  27803. height: math.unit(3 + 8 / 12, "feet"),
  27804. weight: math.unit(50, "lb"),
  27805. name: "Nude",
  27806. image: {
  27807. source: "./media/characters/serryn/nude.svg",
  27808. extra: 1792 / 1656,
  27809. bottom: 43.5 / 1840
  27810. }
  27811. },
  27812. },
  27813. [
  27814. {
  27815. name: "Normal",
  27816. height: math.unit(3 + 8 / 12, "feet"),
  27817. default: true
  27818. },
  27819. ]
  27820. ))
  27821. characterMakers.push(() => makeCharacter(
  27822. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27823. {
  27824. front: {
  27825. height: math.unit(7 + 10 / 12, "feet"),
  27826. weight: math.unit(255, "lb"),
  27827. name: "Front",
  27828. image: {
  27829. source: "./media/characters/xavier-thyme/front.svg",
  27830. extra: 3733 / 3642,
  27831. bottom: 131 / 3869
  27832. }
  27833. },
  27834. frontRaven: {
  27835. height: math.unit(7 + 10 / 12, "feet"),
  27836. weight: math.unit(255, "lb"),
  27837. name: "Front (Raven)",
  27838. image: {
  27839. source: "./media/characters/xavier-thyme/front-raven.svg",
  27840. extra: 4385 / 3642,
  27841. bottom: 131 / 4517
  27842. }
  27843. },
  27844. },
  27845. [
  27846. {
  27847. name: "Normal",
  27848. height: math.unit(7 + 10 / 12, "feet"),
  27849. default: true
  27850. },
  27851. ]
  27852. ))
  27853. characterMakers.push(() => makeCharacter(
  27854. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27855. {
  27856. front: {
  27857. height: math.unit(1.6, "m"),
  27858. weight: math.unit(50, "kg"),
  27859. name: "Front",
  27860. image: {
  27861. source: "./media/characters/kiki/front.svg",
  27862. extra: 4682 / 3610,
  27863. bottom: 115 / 4777
  27864. }
  27865. },
  27866. },
  27867. [
  27868. {
  27869. name: "Normal",
  27870. height: math.unit(1.6, "meters"),
  27871. default: true
  27872. },
  27873. ]
  27874. ))
  27875. characterMakers.push(() => makeCharacter(
  27876. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27877. {
  27878. front: {
  27879. height: math.unit(50, "m"),
  27880. weight: math.unit(500, "tonnes"),
  27881. name: "Front",
  27882. image: {
  27883. source: "./media/characters/ryoko/front.svg",
  27884. extra: 4632 / 3926,
  27885. bottom: 193 / 4823
  27886. }
  27887. },
  27888. },
  27889. [
  27890. {
  27891. name: "Normal",
  27892. height: math.unit(50, "meters"),
  27893. default: true
  27894. },
  27895. ]
  27896. ))
  27897. characterMakers.push(() => makeCharacter(
  27898. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27899. {
  27900. front: {
  27901. height: math.unit(30, "m"),
  27902. weight: math.unit(22, "tonnes"),
  27903. name: "Front",
  27904. image: {
  27905. source: "./media/characters/elio/front.svg",
  27906. extra: 4582 / 3720,
  27907. bottom: 236 / 4828
  27908. }
  27909. },
  27910. },
  27911. [
  27912. {
  27913. name: "Normal",
  27914. height: math.unit(30, "meters"),
  27915. default: true
  27916. },
  27917. ]
  27918. ))
  27919. characterMakers.push(() => makeCharacter(
  27920. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27921. {
  27922. front: {
  27923. height: math.unit(6 + 3 / 12, "feet"),
  27924. weight: math.unit(120, "lb"),
  27925. name: "Front",
  27926. image: {
  27927. source: "./media/characters/azura/front.svg",
  27928. extra: 1149 / 1135,
  27929. bottom: 45 / 1194
  27930. }
  27931. },
  27932. frontClothed: {
  27933. height: math.unit(6 + 3 / 12, "feet"),
  27934. weight: math.unit(120, "lb"),
  27935. name: "Front (Clothed)",
  27936. image: {
  27937. source: "./media/characters/azura/front-clothed.svg",
  27938. extra: 1149 / 1135,
  27939. bottom: 45 / 1194
  27940. }
  27941. },
  27942. },
  27943. [
  27944. {
  27945. name: "Normal",
  27946. height: math.unit(6 + 3 / 12, "feet"),
  27947. default: true
  27948. },
  27949. {
  27950. name: "Macro",
  27951. height: math.unit(20 + 6 / 12, "feet")
  27952. },
  27953. {
  27954. name: "Megamacro",
  27955. height: math.unit(12, "miles")
  27956. },
  27957. {
  27958. name: "Gigamacro",
  27959. height: math.unit(10000, "miles")
  27960. },
  27961. {
  27962. name: "Teramacro",
  27963. height: math.unit(900000, "miles")
  27964. },
  27965. ]
  27966. ))
  27967. characterMakers.push(() => makeCharacter(
  27968. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27969. {
  27970. front: {
  27971. height: math.unit(12, "feet"),
  27972. weight: math.unit(1, "ton"),
  27973. capacity: math.unit(660000, "gallons"),
  27974. name: "Front",
  27975. image: {
  27976. source: "./media/characters/zeus/front.svg",
  27977. extra: 5005 / 4717,
  27978. bottom: 363 / 5388
  27979. }
  27980. },
  27981. },
  27982. [
  27983. {
  27984. name: "Normal",
  27985. height: math.unit(12, "feet")
  27986. },
  27987. {
  27988. name: "Preferred Size",
  27989. height: math.unit(0.5, "miles"),
  27990. default: true
  27991. },
  27992. {
  27993. name: "Giga Horse",
  27994. height: math.unit(300, "miles")
  27995. },
  27996. {
  27997. name: "Riding Planets",
  27998. height: math.unit(30, "megameters")
  27999. },
  28000. {
  28001. name: "Cosmic Giant",
  28002. height: math.unit(3, "zettameters")
  28003. },
  28004. {
  28005. name: "Breeding God",
  28006. height: math.unit(9.92e22, "yottameters")
  28007. },
  28008. ]
  28009. ))
  28010. characterMakers.push(() => makeCharacter(
  28011. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28012. {
  28013. side: {
  28014. height: math.unit(9, "feet"),
  28015. weight: math.unit(1500, "kg"),
  28016. name: "Side",
  28017. image: {
  28018. source: "./media/characters/fang/side.svg",
  28019. extra: 924 / 866,
  28020. bottom: 47.5 / 972.3
  28021. }
  28022. },
  28023. },
  28024. [
  28025. {
  28026. name: "Normal",
  28027. height: math.unit(9, "feet"),
  28028. default: true
  28029. },
  28030. {
  28031. name: "Macro",
  28032. height: math.unit(75 + 6 / 12, "feet")
  28033. },
  28034. {
  28035. name: "Teramacro",
  28036. height: math.unit(50000, "miles")
  28037. },
  28038. ]
  28039. ))
  28040. characterMakers.push(() => makeCharacter(
  28041. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28042. {
  28043. front: {
  28044. height: math.unit(10, "feet"),
  28045. weight: math.unit(2, "tons"),
  28046. name: "Front",
  28047. image: {
  28048. source: "./media/characters/rekhit/front.svg",
  28049. extra: 2796 / 2590,
  28050. bottom: 225 / 3022
  28051. }
  28052. },
  28053. },
  28054. [
  28055. {
  28056. name: "Normal",
  28057. height: math.unit(10, "feet"),
  28058. default: true
  28059. },
  28060. {
  28061. name: "Macro",
  28062. height: math.unit(500, "feet")
  28063. },
  28064. ]
  28065. ))
  28066. characterMakers.push(() => makeCharacter(
  28067. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28068. {
  28069. front: {
  28070. height: math.unit(7 + 6.451 / 12, "feet"),
  28071. weight: math.unit(310, "lb"),
  28072. name: "Front",
  28073. image: {
  28074. source: "./media/characters/dahlia-verrick/front.svg",
  28075. extra: 1488 / 1365,
  28076. bottom: 6.2 / 1495
  28077. }
  28078. },
  28079. back: {
  28080. height: math.unit(7 + 6.451 / 12, "feet"),
  28081. weight: math.unit(310, "lb"),
  28082. name: "Back",
  28083. image: {
  28084. source: "./media/characters/dahlia-verrick/back.svg",
  28085. extra: 1472 / 1351,
  28086. bottom: 5.28 / 1477
  28087. }
  28088. },
  28089. frontBusiness: {
  28090. height: math.unit(7 + 6.451 / 12, "feet"),
  28091. weight: math.unit(200, "lb"),
  28092. name: "Front (Business)",
  28093. image: {
  28094. source: "./media/characters/dahlia-verrick/front-business.svg",
  28095. extra: 1478 / 1381,
  28096. bottom: 5.5 / 1484
  28097. }
  28098. },
  28099. frontCasual: {
  28100. height: math.unit(7 + 6.451 / 12, "feet"),
  28101. weight: math.unit(200, "lb"),
  28102. name: "Front (Casual)",
  28103. image: {
  28104. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28105. extra: 1478 / 1381,
  28106. bottom: 5.5 / 1484
  28107. }
  28108. },
  28109. },
  28110. [
  28111. {
  28112. name: "Travel-Sized",
  28113. height: math.unit(7.45, "inches")
  28114. },
  28115. {
  28116. name: "Normal",
  28117. height: math.unit(7 + 6.451 / 12, "feet"),
  28118. default: true
  28119. },
  28120. {
  28121. name: "Hitting the Town",
  28122. height: math.unit(37 + 8 / 12, "feet")
  28123. },
  28124. {
  28125. name: "Stomp in the Suburbs",
  28126. height: math.unit(964 + 9.728 / 12, "feet")
  28127. },
  28128. {
  28129. name: "Sit on the City",
  28130. height: math.unit(61747 + 10.592 / 12, "feet")
  28131. },
  28132. {
  28133. name: "Glomp the Globe",
  28134. height: math.unit(252919327 + 4.832 / 12, "feet")
  28135. },
  28136. ]
  28137. ))
  28138. characterMakers.push(() => makeCharacter(
  28139. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28140. {
  28141. front: {
  28142. height: math.unit(6 + 4 / 12, "feet"),
  28143. weight: math.unit(320, "lb"),
  28144. name: "Front",
  28145. image: {
  28146. source: "./media/characters/balina-mahigan/front.svg",
  28147. extra: 447 / 428,
  28148. bottom: 18 / 466
  28149. }
  28150. },
  28151. back: {
  28152. height: math.unit(6 + 4 / 12, "feet"),
  28153. weight: math.unit(320, "lb"),
  28154. name: "Back",
  28155. image: {
  28156. source: "./media/characters/balina-mahigan/back.svg",
  28157. extra: 445 / 428,
  28158. bottom: 4.07 / 448
  28159. }
  28160. },
  28161. arm: {
  28162. height: math.unit(1.88, "feet"),
  28163. name: "Arm",
  28164. image: {
  28165. source: "./media/characters/balina-mahigan/arm.svg"
  28166. }
  28167. },
  28168. backPort: {
  28169. height: math.unit(0.685, "feet"),
  28170. name: "Back Port",
  28171. image: {
  28172. source: "./media/characters/balina-mahigan/back-port.svg"
  28173. }
  28174. },
  28175. hoofpaw: {
  28176. height: math.unit(1.41, "feet"),
  28177. name: "Hoofpaw",
  28178. image: {
  28179. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28180. }
  28181. },
  28182. leftHandBack: {
  28183. height: math.unit(0.938, "feet"),
  28184. name: "Left Hand (Back)",
  28185. image: {
  28186. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28187. }
  28188. },
  28189. leftHandFront: {
  28190. height: math.unit(0.938, "feet"),
  28191. name: "Left Hand (Front)",
  28192. image: {
  28193. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28194. }
  28195. },
  28196. rightHandBack: {
  28197. height: math.unit(0.95, "feet"),
  28198. name: "Right Hand (Back)",
  28199. image: {
  28200. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28201. }
  28202. },
  28203. rightHandFront: {
  28204. height: math.unit(0.95, "feet"),
  28205. name: "Right Hand (Front)",
  28206. image: {
  28207. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28208. }
  28209. },
  28210. },
  28211. [
  28212. {
  28213. name: "Normal",
  28214. height: math.unit(6 + 4 / 12, "feet"),
  28215. default: true
  28216. },
  28217. ]
  28218. ))
  28219. characterMakers.push(() => makeCharacter(
  28220. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28221. {
  28222. front: {
  28223. height: math.unit(6, "feet"),
  28224. weight: math.unit(320, "lb"),
  28225. name: "Front",
  28226. image: {
  28227. source: "./media/characters/balina-mejeri/front.svg",
  28228. extra: 517 / 488,
  28229. bottom: 44.2 / 561
  28230. }
  28231. },
  28232. },
  28233. [
  28234. {
  28235. name: "Normal",
  28236. height: math.unit(6 + 4 / 12, "feet")
  28237. },
  28238. {
  28239. name: "Business",
  28240. height: math.unit(155, "feet"),
  28241. default: true
  28242. },
  28243. ]
  28244. ))
  28245. characterMakers.push(() => makeCharacter(
  28246. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28247. {
  28248. kneeling: {
  28249. height: math.unit(6 + 4 / 12, "feet"),
  28250. weight: math.unit(300 * 20, "lb"),
  28251. name: "Kneeling",
  28252. image: {
  28253. source: "./media/characters/balbarian/kneeling.svg",
  28254. extra: 922 / 862,
  28255. bottom: 42.4 / 965
  28256. }
  28257. },
  28258. },
  28259. [
  28260. {
  28261. name: "Normal",
  28262. height: math.unit(6 + 4 / 12, "feet")
  28263. },
  28264. {
  28265. name: "Treasured",
  28266. height: math.unit(18 + 9 / 12, "feet"),
  28267. default: true
  28268. },
  28269. {
  28270. name: "Macro",
  28271. height: math.unit(900, "feet")
  28272. },
  28273. ]
  28274. ))
  28275. characterMakers.push(() => makeCharacter(
  28276. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28277. {
  28278. front: {
  28279. height: math.unit(6 + 4 / 12, "feet"),
  28280. weight: math.unit(325, "lb"),
  28281. name: "Front",
  28282. image: {
  28283. source: "./media/characters/balina-amarini/front.svg",
  28284. extra: 415 / 403,
  28285. bottom: 19 / 433.4
  28286. }
  28287. },
  28288. back: {
  28289. height: math.unit(6 + 4 / 12, "feet"),
  28290. weight: math.unit(325, "lb"),
  28291. name: "Back",
  28292. image: {
  28293. source: "./media/characters/balina-amarini/back.svg",
  28294. extra: 415 / 403,
  28295. bottom: 13.5 / 432
  28296. }
  28297. },
  28298. overdrive: {
  28299. height: math.unit(6 + 4 / 12, "feet"),
  28300. weight: math.unit(400, "lb"),
  28301. name: "Overdrive",
  28302. image: {
  28303. source: "./media/characters/balina-amarini/overdrive.svg",
  28304. extra: 269 / 259,
  28305. bottom: 12 / 282
  28306. }
  28307. },
  28308. },
  28309. [
  28310. {
  28311. name: "Boom",
  28312. height: math.unit(9 + 10 / 12, "feet"),
  28313. default: true
  28314. },
  28315. {
  28316. name: "Macro",
  28317. height: math.unit(280, "feet")
  28318. },
  28319. ]
  28320. ))
  28321. characterMakers.push(() => makeCharacter(
  28322. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28323. {
  28324. goddess: {
  28325. height: math.unit(600, "feet"),
  28326. weight: math.unit(2000000, "tons"),
  28327. name: "Goddess",
  28328. image: {
  28329. source: "./media/characters/lady-kubwa/goddess.svg",
  28330. extra: 1240.5 / 1223,
  28331. bottom: 22 / 1263
  28332. }
  28333. },
  28334. goddesser: {
  28335. height: math.unit(900, "feet"),
  28336. weight: math.unit(20000000, "lb"),
  28337. name: "Goddess-er",
  28338. image: {
  28339. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28340. extra: 899 / 888,
  28341. bottom: 12.6 / 912
  28342. }
  28343. },
  28344. },
  28345. [
  28346. {
  28347. name: "Macro",
  28348. height: math.unit(600, "feet"),
  28349. default: true
  28350. },
  28351. {
  28352. name: "Megamacro",
  28353. height: math.unit(250, "miles")
  28354. },
  28355. ]
  28356. ))
  28357. characterMakers.push(() => makeCharacter(
  28358. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28359. {
  28360. front: {
  28361. height: math.unit(7 + 7 / 12, "feet"),
  28362. weight: math.unit(250, "lb"),
  28363. name: "Front",
  28364. image: {
  28365. source: "./media/characters/tala-grovehorn/front.svg",
  28366. extra: 2636 / 2525,
  28367. bottom: 147 / 2781
  28368. }
  28369. },
  28370. back: {
  28371. height: math.unit(7 + 7 / 12, "feet"),
  28372. weight: math.unit(250, "lb"),
  28373. name: "Back",
  28374. image: {
  28375. source: "./media/characters/tala-grovehorn/back.svg",
  28376. extra: 2635 / 2539,
  28377. bottom: 100 / 2732.8
  28378. }
  28379. },
  28380. mouth: {
  28381. height: math.unit(1.15, "feet"),
  28382. name: "Mouth",
  28383. image: {
  28384. source: "./media/characters/tala-grovehorn/mouth.svg"
  28385. }
  28386. },
  28387. dick: {
  28388. height: math.unit(2.36, "feet"),
  28389. name: "Dick",
  28390. image: {
  28391. source: "./media/characters/tala-grovehorn/dick.svg"
  28392. }
  28393. },
  28394. slit: {
  28395. height: math.unit(0.61, "feet"),
  28396. name: "Slit",
  28397. image: {
  28398. source: "./media/characters/tala-grovehorn/slit.svg"
  28399. }
  28400. },
  28401. },
  28402. [
  28403. ]
  28404. ))
  28405. characterMakers.push(() => makeCharacter(
  28406. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28407. {
  28408. front: {
  28409. height: math.unit(7 + 7 / 12, "feet"),
  28410. weight: math.unit(225, "lb"),
  28411. name: "Front",
  28412. image: {
  28413. source: "./media/characters/epona/front.svg",
  28414. extra: 2445 / 2290,
  28415. bottom: 251 / 2696
  28416. }
  28417. },
  28418. back: {
  28419. height: math.unit(7 + 7 / 12, "feet"),
  28420. weight: math.unit(225, "lb"),
  28421. name: "Back",
  28422. image: {
  28423. source: "./media/characters/epona/back.svg",
  28424. extra: 2546 / 2408,
  28425. bottom: 44 / 2589
  28426. }
  28427. },
  28428. genitals: {
  28429. height: math.unit(1.5, "feet"),
  28430. name: "Genitals",
  28431. image: {
  28432. source: "./media/characters/epona/genitals.svg"
  28433. }
  28434. },
  28435. },
  28436. [
  28437. {
  28438. name: "Normal",
  28439. height: math.unit(7 + 7 / 12, "feet"),
  28440. default: true
  28441. },
  28442. ]
  28443. ))
  28444. characterMakers.push(() => makeCharacter(
  28445. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28446. {
  28447. front: {
  28448. height: math.unit(7, "feet"),
  28449. weight: math.unit(518, "lb"),
  28450. name: "Front",
  28451. image: {
  28452. source: "./media/characters/avia-bloodbourn/front.svg",
  28453. extra: 1466 / 1350,
  28454. bottom: 65 / 1527
  28455. }
  28456. },
  28457. },
  28458. [
  28459. ]
  28460. ))
  28461. characterMakers.push(() => makeCharacter(
  28462. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28463. {
  28464. front: {
  28465. height: math.unit(9.35, "feet"),
  28466. weight: math.unit(600, "lb"),
  28467. name: "Front",
  28468. image: {
  28469. source: "./media/characters/amera/front.svg",
  28470. extra: 891 / 818,
  28471. bottom: 30 / 922.7
  28472. }
  28473. },
  28474. back: {
  28475. height: math.unit(9.35, "feet"),
  28476. weight: math.unit(600, "lb"),
  28477. name: "Back",
  28478. image: {
  28479. source: "./media/characters/amera/back.svg",
  28480. extra: 876 / 824,
  28481. bottom: 6.8 / 884
  28482. }
  28483. },
  28484. dick: {
  28485. height: math.unit(2.14, "feet"),
  28486. name: "Dick",
  28487. image: {
  28488. source: "./media/characters/amera/dick.svg"
  28489. }
  28490. },
  28491. },
  28492. [
  28493. {
  28494. name: "Normal",
  28495. height: math.unit(9.35, "feet"),
  28496. default: true
  28497. },
  28498. ]
  28499. ))
  28500. characterMakers.push(() => makeCharacter(
  28501. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28502. {
  28503. kneeling: {
  28504. height: math.unit(3 + 4 / 12, "feet"),
  28505. weight: math.unit(90, "lb"),
  28506. name: "Kneeling",
  28507. image: {
  28508. source: "./media/characters/rosewen/kneeling.svg",
  28509. extra: 1835 / 1571,
  28510. bottom: 27.7 / 1862
  28511. }
  28512. },
  28513. },
  28514. [
  28515. {
  28516. name: "Normal",
  28517. height: math.unit(3 + 4 / 12, "feet"),
  28518. default: true
  28519. },
  28520. ]
  28521. ))
  28522. characterMakers.push(() => makeCharacter(
  28523. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28524. {
  28525. front: {
  28526. height: math.unit(5 + 10 / 12, "feet"),
  28527. weight: math.unit(200, "lb"),
  28528. name: "Front",
  28529. image: {
  28530. source: "./media/characters/sabah/front.svg",
  28531. extra: 849 / 763,
  28532. bottom: 33.9 / 881
  28533. }
  28534. },
  28535. },
  28536. [
  28537. {
  28538. name: "Normal",
  28539. height: math.unit(5 + 10 / 12, "feet"),
  28540. default: true
  28541. },
  28542. ]
  28543. ))
  28544. characterMakers.push(() => makeCharacter(
  28545. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28546. {
  28547. front: {
  28548. height: math.unit(3 + 5 / 12, "feet"),
  28549. weight: math.unit(40, "kg"),
  28550. name: "Front",
  28551. image: {
  28552. source: "./media/characters/purple-flame/front.svg",
  28553. extra: 1577 / 1412,
  28554. bottom: 97 / 1694
  28555. }
  28556. },
  28557. frontDressed: {
  28558. height: math.unit(3 + 5 / 12, "feet"),
  28559. weight: math.unit(40, "kg"),
  28560. name: "Front (Dressed)",
  28561. image: {
  28562. source: "./media/characters/purple-flame/front-dressed.svg",
  28563. extra: 1577 / 1412,
  28564. bottom: 97 / 1694
  28565. }
  28566. },
  28567. headphones: {
  28568. height: math.unit(0.85, "feet"),
  28569. name: "Headphones",
  28570. image: {
  28571. source: "./media/characters/purple-flame/headphones.svg"
  28572. }
  28573. },
  28574. },
  28575. [
  28576. {
  28577. name: "Really Small",
  28578. height: math.unit(5, "cm")
  28579. },
  28580. {
  28581. name: "Micro",
  28582. height: math.unit(1 + 5 / 12, "feet")
  28583. },
  28584. {
  28585. name: "Normal",
  28586. height: math.unit(3 + 5 / 12, "feet"),
  28587. default: true
  28588. },
  28589. {
  28590. name: "Minimacro",
  28591. height: math.unit(125, "feet")
  28592. },
  28593. {
  28594. name: "Macro",
  28595. height: math.unit(0.5, "miles")
  28596. },
  28597. {
  28598. name: "Megamacro",
  28599. height: math.unit(50, "miles")
  28600. },
  28601. {
  28602. name: "Gigantic",
  28603. height: math.unit(750, "miles")
  28604. },
  28605. {
  28606. name: "Planetary",
  28607. height: math.unit(15000, "miles")
  28608. },
  28609. ]
  28610. ))
  28611. characterMakers.push(() => makeCharacter(
  28612. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28613. {
  28614. front: {
  28615. height: math.unit(14, "feet"),
  28616. weight: math.unit(959, "lb"),
  28617. name: "Front",
  28618. image: {
  28619. source: "./media/characters/arsenal/front.svg",
  28620. extra: 2357 / 2157,
  28621. bottom: 93 / 2458
  28622. }
  28623. },
  28624. },
  28625. [
  28626. {
  28627. name: "Normal",
  28628. height: math.unit(14, "feet"),
  28629. default: true
  28630. },
  28631. ]
  28632. ))
  28633. characterMakers.push(() => makeCharacter(
  28634. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28635. {
  28636. front: {
  28637. height: math.unit(6, "feet"),
  28638. weight: math.unit(150, "lb"),
  28639. name: "Front",
  28640. image: {
  28641. source: "./media/characters/adira/front.svg",
  28642. extra: 1078 / 1029,
  28643. bottom: 87 / 1166
  28644. }
  28645. },
  28646. },
  28647. [
  28648. {
  28649. name: "Micro",
  28650. height: math.unit(4, "inches"),
  28651. default: true
  28652. },
  28653. {
  28654. name: "Macro",
  28655. height: math.unit(50, "feet")
  28656. },
  28657. ]
  28658. ))
  28659. characterMakers.push(() => makeCharacter(
  28660. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28661. {
  28662. front: {
  28663. height: math.unit(16, "feet"),
  28664. weight: math.unit(1000, "lb"),
  28665. name: "Front",
  28666. image: {
  28667. source: "./media/characters/grim/front.svg",
  28668. extra: 622 / 614,
  28669. bottom: 18.1 / 642
  28670. }
  28671. },
  28672. back: {
  28673. height: math.unit(16, "feet"),
  28674. weight: math.unit(1000, "lb"),
  28675. name: "Back",
  28676. image: {
  28677. source: "./media/characters/grim/back.svg",
  28678. extra: 610.6 / 602,
  28679. bottom: 40.8 / 652
  28680. }
  28681. },
  28682. hunched: {
  28683. height: math.unit(9.75, "feet"),
  28684. weight: math.unit(1000, "lb"),
  28685. name: "Hunched",
  28686. image: {
  28687. source: "./media/characters/grim/hunched.svg",
  28688. extra: 304 / 297,
  28689. bottom: 35.4 / 394
  28690. }
  28691. },
  28692. },
  28693. [
  28694. {
  28695. name: "Normal",
  28696. height: math.unit(16, "feet"),
  28697. default: true
  28698. },
  28699. ]
  28700. ))
  28701. characterMakers.push(() => makeCharacter(
  28702. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28703. {
  28704. front: {
  28705. height: math.unit(2.3, "meters"),
  28706. weight: math.unit(300, "lb"),
  28707. name: "Front",
  28708. image: {
  28709. source: "./media/characters/sinja/front-sfw.svg",
  28710. extra: 1393 / 1294,
  28711. bottom: 70 / 1463
  28712. }
  28713. },
  28714. frontNsfw: {
  28715. height: math.unit(2.3, "meters"),
  28716. weight: math.unit(300, "lb"),
  28717. name: "Front (NSFW)",
  28718. image: {
  28719. source: "./media/characters/sinja/front-nsfw.svg",
  28720. extra: 1393 / 1294,
  28721. bottom: 70 / 1463
  28722. }
  28723. },
  28724. back: {
  28725. height: math.unit(2.3, "meters"),
  28726. weight: math.unit(300, "lb"),
  28727. name: "Back",
  28728. image: {
  28729. source: "./media/characters/sinja/back.svg",
  28730. extra: 1393 / 1294,
  28731. bottom: 70 / 1463
  28732. }
  28733. },
  28734. head: {
  28735. height: math.unit(1.771, "feet"),
  28736. name: "Head",
  28737. image: {
  28738. source: "./media/characters/sinja/head.svg"
  28739. }
  28740. },
  28741. slit: {
  28742. height: math.unit(0.8, "feet"),
  28743. name: "Slit",
  28744. image: {
  28745. source: "./media/characters/sinja/slit.svg"
  28746. }
  28747. },
  28748. },
  28749. [
  28750. {
  28751. name: "Normal",
  28752. height: math.unit(2.3, "meters")
  28753. },
  28754. {
  28755. name: "Macro",
  28756. height: math.unit(91, "meters"),
  28757. default: true
  28758. },
  28759. {
  28760. name: "Megamacro",
  28761. height: math.unit(91440, "meters")
  28762. },
  28763. {
  28764. name: "Gigamacro",
  28765. height: math.unit(60960000, "meters")
  28766. },
  28767. {
  28768. name: "Teramacro",
  28769. height: math.unit(9144000000, "meters")
  28770. },
  28771. ]
  28772. ))
  28773. characterMakers.push(() => makeCharacter(
  28774. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28775. {
  28776. front: {
  28777. height: math.unit(1.7, "meters"),
  28778. weight: math.unit(130, "lb"),
  28779. name: "Front",
  28780. image: {
  28781. source: "./media/characters/kyu/front.svg",
  28782. extra: 415 / 395,
  28783. bottom: 5 / 420
  28784. }
  28785. },
  28786. head: {
  28787. height: math.unit(1.75, "feet"),
  28788. name: "Head",
  28789. image: {
  28790. source: "./media/characters/kyu/head.svg"
  28791. }
  28792. },
  28793. foot: {
  28794. height: math.unit(0.81, "feet"),
  28795. name: "Foot",
  28796. image: {
  28797. source: "./media/characters/kyu/foot.svg"
  28798. }
  28799. },
  28800. },
  28801. [
  28802. {
  28803. name: "Normal",
  28804. height: math.unit(1.7, "meters")
  28805. },
  28806. {
  28807. name: "Macro",
  28808. height: math.unit(131, "feet"),
  28809. default: true
  28810. },
  28811. {
  28812. name: "Megamacro",
  28813. height: math.unit(91440, "meters")
  28814. },
  28815. {
  28816. name: "Gigamacro",
  28817. height: math.unit(60960000, "meters")
  28818. },
  28819. {
  28820. name: "Teramacro",
  28821. height: math.unit(9144000000, "meters")
  28822. },
  28823. ]
  28824. ))
  28825. characterMakers.push(() => makeCharacter(
  28826. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28827. {
  28828. front: {
  28829. height: math.unit(7 + 1 / 12, "feet"),
  28830. weight: math.unit(250, "lb"),
  28831. name: "Front",
  28832. image: {
  28833. source: "./media/characters/joey/front.svg",
  28834. extra: 1791 / 1537,
  28835. bottom: 28 / 1816
  28836. }
  28837. },
  28838. },
  28839. [
  28840. {
  28841. name: "Micro",
  28842. height: math.unit(3, "inches")
  28843. },
  28844. {
  28845. name: "Normal",
  28846. height: math.unit(7 + 1 / 12, "feet"),
  28847. default: true
  28848. },
  28849. ]
  28850. ))
  28851. characterMakers.push(() => makeCharacter(
  28852. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28853. {
  28854. front: {
  28855. height: math.unit(165, "cm"),
  28856. weight: math.unit(140, "lb"),
  28857. name: "Front",
  28858. image: {
  28859. source: "./media/characters/sam-evans/front.svg",
  28860. extra: 3417 / 3230,
  28861. bottom: 41.3 / 3417
  28862. }
  28863. },
  28864. frontSixTails: {
  28865. height: math.unit(165, "cm"),
  28866. weight: math.unit(140, "lb"),
  28867. name: "Front-six-tails",
  28868. image: {
  28869. source: "./media/characters/sam-evans/front-six-tails.svg",
  28870. extra: 3417 / 3230,
  28871. bottom: 41.3 / 3417
  28872. }
  28873. },
  28874. back: {
  28875. height: math.unit(165, "cm"),
  28876. weight: math.unit(140, "lb"),
  28877. name: "Back",
  28878. image: {
  28879. source: "./media/characters/sam-evans/back.svg",
  28880. extra: 3227 / 3032,
  28881. bottom: 6.8 / 3234
  28882. }
  28883. },
  28884. face: {
  28885. height: math.unit(0.68, "feet"),
  28886. name: "Face",
  28887. image: {
  28888. source: "./media/characters/sam-evans/face.svg"
  28889. }
  28890. },
  28891. },
  28892. [
  28893. {
  28894. name: "Normal",
  28895. height: math.unit(165, "cm"),
  28896. default: true
  28897. },
  28898. {
  28899. name: "Macro",
  28900. height: math.unit(100, "meters")
  28901. },
  28902. {
  28903. name: "Macro+",
  28904. height: math.unit(800, "meters")
  28905. },
  28906. {
  28907. name: "Macro++",
  28908. height: math.unit(3, "km")
  28909. },
  28910. {
  28911. name: "Macro+++",
  28912. height: math.unit(30, "km")
  28913. },
  28914. ]
  28915. ))
  28916. characterMakers.push(() => makeCharacter(
  28917. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28918. {
  28919. front: {
  28920. height: math.unit(10, "feet"),
  28921. weight: math.unit(750, "lb"),
  28922. name: "Front",
  28923. image: {
  28924. source: "./media/characters/juliet-a/front.svg",
  28925. extra: 1766 / 1720,
  28926. bottom: 43 / 1809
  28927. }
  28928. },
  28929. back: {
  28930. height: math.unit(10, "feet"),
  28931. weight: math.unit(750, "lb"),
  28932. name: "Back",
  28933. image: {
  28934. source: "./media/characters/juliet-a/back.svg",
  28935. extra: 1781 / 1734,
  28936. bottom: 35 / 1810,
  28937. }
  28938. },
  28939. },
  28940. [
  28941. {
  28942. name: "Normal",
  28943. height: math.unit(10, "feet"),
  28944. default: true
  28945. },
  28946. {
  28947. name: "Dragon Form",
  28948. height: math.unit(250, "feet")
  28949. },
  28950. {
  28951. name: "Macro",
  28952. height: math.unit(1000, "feet")
  28953. },
  28954. {
  28955. name: "Megamacro",
  28956. height: math.unit(10000, "feet")
  28957. }
  28958. ]
  28959. ))
  28960. characterMakers.push(() => makeCharacter(
  28961. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28962. {
  28963. regular: {
  28964. height: math.unit(7 + 3 / 12, "feet"),
  28965. weight: math.unit(260, "lb"),
  28966. name: "Regular",
  28967. image: {
  28968. source: "./media/characters/wild/regular.svg",
  28969. extra: 97.45 / 92,
  28970. bottom: 6.8 / 104.3
  28971. }
  28972. },
  28973. biggums: {
  28974. height: math.unit(8 + 6 / 12, "feet"),
  28975. weight: math.unit(425, "lb"),
  28976. name: "Biggums",
  28977. image: {
  28978. source: "./media/characters/wild/biggums.svg",
  28979. extra: 97.45 / 92,
  28980. bottom: 7.5 / 132.34
  28981. }
  28982. },
  28983. mawRegular: {
  28984. height: math.unit(1.24, "feet"),
  28985. name: "Maw (Regular)",
  28986. image: {
  28987. source: "./media/characters/wild/maw.svg"
  28988. }
  28989. },
  28990. mawBiggums: {
  28991. height: math.unit(1.47, "feet"),
  28992. name: "Maw (Biggums)",
  28993. image: {
  28994. source: "./media/characters/wild/maw.svg"
  28995. }
  28996. },
  28997. },
  28998. [
  28999. {
  29000. name: "Normal",
  29001. height: math.unit(7 + 3 / 12, "feet"),
  29002. default: true
  29003. },
  29004. ]
  29005. ))
  29006. characterMakers.push(() => makeCharacter(
  29007. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29008. {
  29009. front: {
  29010. height: math.unit(2.5, "meters"),
  29011. weight: math.unit(200, "kg"),
  29012. name: "Front",
  29013. image: {
  29014. source: "./media/characters/vidar/front.svg",
  29015. extra: 2994 / 2795,
  29016. bottom: 56 / 3061
  29017. }
  29018. },
  29019. back: {
  29020. height: math.unit(2.5, "meters"),
  29021. weight: math.unit(200, "kg"),
  29022. name: "Back",
  29023. image: {
  29024. source: "./media/characters/vidar/back.svg",
  29025. extra: 3131 / 2928,
  29026. bottom: 13.5 / 3141.5
  29027. }
  29028. },
  29029. feral: {
  29030. height: math.unit(2.5, "meters"),
  29031. weight: math.unit(2000, "kg"),
  29032. name: "Feral",
  29033. image: {
  29034. source: "./media/characters/vidar/feral.svg",
  29035. extra: 2790 / 1765,
  29036. bottom: 6 / 2796
  29037. }
  29038. },
  29039. },
  29040. [
  29041. {
  29042. name: "Normal",
  29043. height: math.unit(2.5, "meters"),
  29044. default: true
  29045. },
  29046. {
  29047. name: "Macro",
  29048. height: math.unit(100, "meters")
  29049. },
  29050. ]
  29051. ))
  29052. characterMakers.push(() => makeCharacter(
  29053. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29054. {
  29055. front: {
  29056. height: math.unit(5 + 9 / 12, "feet"),
  29057. weight: math.unit(120, "lb"),
  29058. name: "Front",
  29059. image: {
  29060. source: "./media/characters/ash/front.svg",
  29061. extra: 2189 / 1961,
  29062. bottom: 5.2 / 2194
  29063. }
  29064. },
  29065. },
  29066. [
  29067. {
  29068. name: "Normal",
  29069. height: math.unit(5 + 9 / 12, "feet"),
  29070. default: true
  29071. },
  29072. ]
  29073. ))
  29074. characterMakers.push(() => makeCharacter(
  29075. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29076. {
  29077. front: {
  29078. height: math.unit(9, "feet"),
  29079. weight: math.unit(10000, "lb"),
  29080. name: "Front",
  29081. image: {
  29082. source: "./media/characters/gygabite/front.svg",
  29083. bottom: 31.7 / 537.8,
  29084. extra: 505 / 370
  29085. }
  29086. },
  29087. },
  29088. [
  29089. {
  29090. name: "Normal",
  29091. height: math.unit(9, "feet"),
  29092. default: true
  29093. },
  29094. ]
  29095. ))
  29096. characterMakers.push(() => makeCharacter(
  29097. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29098. {
  29099. front: {
  29100. height: math.unit(12, "feet"),
  29101. weight: math.unit(4000, "lb"),
  29102. name: "Front",
  29103. image: {
  29104. source: "./media/characters/p0tat0/front.svg",
  29105. extra: 1065 / 921,
  29106. bottom: 55.7 / 1121.25
  29107. }
  29108. },
  29109. },
  29110. [
  29111. {
  29112. name: "Normal",
  29113. height: math.unit(12, "feet"),
  29114. default: true
  29115. },
  29116. ]
  29117. ))
  29118. characterMakers.push(() => makeCharacter(
  29119. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29120. {
  29121. side: {
  29122. height: math.unit(6.5, "feet"),
  29123. weight: math.unit(800, "lb"),
  29124. name: "Side",
  29125. image: {
  29126. source: "./media/characters/dusk/side.svg",
  29127. extra: 615 / 373,
  29128. bottom: 53 / 664
  29129. }
  29130. },
  29131. sitting: {
  29132. height: math.unit(7, "feet"),
  29133. weight: math.unit(800, "lb"),
  29134. name: "Sitting",
  29135. image: {
  29136. source: "./media/characters/dusk/sitting.svg",
  29137. extra: 753 / 425,
  29138. bottom: 33 / 774
  29139. }
  29140. },
  29141. head: {
  29142. height: math.unit(6.1, "feet"),
  29143. name: "Head",
  29144. image: {
  29145. source: "./media/characters/dusk/head.svg"
  29146. }
  29147. },
  29148. },
  29149. [
  29150. {
  29151. name: "Normal",
  29152. height: math.unit(7, "feet"),
  29153. default: true
  29154. },
  29155. ]
  29156. ))
  29157. characterMakers.push(() => makeCharacter(
  29158. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29159. {
  29160. front: {
  29161. height: math.unit(15, "feet"),
  29162. weight: math.unit(7000, "lb"),
  29163. name: "Front",
  29164. image: {
  29165. source: "./media/characters/jay-direwolf/front.svg",
  29166. extra: 1810 / 1732,
  29167. bottom: 66 / 1892
  29168. }
  29169. },
  29170. },
  29171. [
  29172. {
  29173. name: "Normal",
  29174. height: math.unit(15, "feet"),
  29175. default: true
  29176. },
  29177. ]
  29178. ))
  29179. characterMakers.push(() => makeCharacter(
  29180. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29181. {
  29182. front: {
  29183. height: math.unit(4 + 9 / 12, "feet"),
  29184. weight: math.unit(130, "lb"),
  29185. name: "Front",
  29186. image: {
  29187. source: "./media/characters/anchovie/front.svg",
  29188. extra: 382 / 350,
  29189. bottom: 25 / 409
  29190. }
  29191. },
  29192. back: {
  29193. height: math.unit(4 + 9 / 12, "feet"),
  29194. weight: math.unit(130, "lb"),
  29195. name: "Back",
  29196. image: {
  29197. source: "./media/characters/anchovie/back.svg",
  29198. extra: 385 / 352,
  29199. bottom: 16.6 / 402
  29200. }
  29201. },
  29202. frontDressed: {
  29203. height: math.unit(4 + 9 / 12, "feet"),
  29204. weight: math.unit(130, "lb"),
  29205. name: "Front (Dressed)",
  29206. image: {
  29207. source: "./media/characters/anchovie/front-dressed.svg",
  29208. extra: 382 / 350,
  29209. bottom: 25 / 409
  29210. }
  29211. },
  29212. backDressed: {
  29213. height: math.unit(4 + 9 / 12, "feet"),
  29214. weight: math.unit(130, "lb"),
  29215. name: "Back (Dressed)",
  29216. image: {
  29217. source: "./media/characters/anchovie/back-dressed.svg",
  29218. extra: 385 / 352,
  29219. bottom: 16.6 / 402
  29220. }
  29221. },
  29222. },
  29223. [
  29224. {
  29225. name: "Micro",
  29226. height: math.unit(6.4, "inches")
  29227. },
  29228. {
  29229. name: "Normal",
  29230. height: math.unit(4 + 9 / 12, "feet"),
  29231. default: true
  29232. },
  29233. ]
  29234. ))
  29235. characterMakers.push(() => makeCharacter(
  29236. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29237. {
  29238. front: {
  29239. height: math.unit(2, "meters"),
  29240. weight: math.unit(180, "lb"),
  29241. name: "Front",
  29242. image: {
  29243. source: "./media/characters/acidrenamon/front.svg",
  29244. extra: 987 / 890,
  29245. bottom: 22.8 / 1009
  29246. }
  29247. },
  29248. back: {
  29249. height: math.unit(2, "meters"),
  29250. weight: math.unit(180, "lb"),
  29251. name: "Back",
  29252. image: {
  29253. source: "./media/characters/acidrenamon/back.svg",
  29254. extra: 983 / 891,
  29255. bottom: 8.4 / 992
  29256. }
  29257. },
  29258. head: {
  29259. height: math.unit(1.92, "feet"),
  29260. name: "Head",
  29261. image: {
  29262. source: "./media/characters/acidrenamon/head.svg"
  29263. }
  29264. },
  29265. rump: {
  29266. height: math.unit(1.72, "feet"),
  29267. name: "Rump",
  29268. image: {
  29269. source: "./media/characters/acidrenamon/rump.svg"
  29270. }
  29271. },
  29272. tail: {
  29273. height: math.unit(4.2, "feet"),
  29274. name: "Tail",
  29275. image: {
  29276. source: "./media/characters/acidrenamon/tail.svg"
  29277. }
  29278. },
  29279. },
  29280. [
  29281. {
  29282. name: "Normal",
  29283. height: math.unit(2, "meters"),
  29284. default: true
  29285. },
  29286. {
  29287. name: "Minimacro",
  29288. height: math.unit(7, "meters")
  29289. },
  29290. {
  29291. name: "Macro",
  29292. height: math.unit(200, "meters")
  29293. },
  29294. {
  29295. name: "Gigamacro",
  29296. height: math.unit(0.2, "earths")
  29297. },
  29298. ]
  29299. ))
  29300. characterMakers.push(() => makeCharacter(
  29301. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29302. {
  29303. front: {
  29304. height: math.unit(152, "feet"),
  29305. name: "Front",
  29306. image: {
  29307. source: "./media/characters/kenzie-lee/front.svg",
  29308. extra: 1869/1774,
  29309. bottom: 128/1997
  29310. }
  29311. },
  29312. side: {
  29313. height: math.unit(86, "feet"),
  29314. name: "Side",
  29315. image: {
  29316. source: "./media/characters/kenzie-lee/side.svg",
  29317. extra: 930/815,
  29318. bottom: 177/1107
  29319. }
  29320. },
  29321. paw: {
  29322. height: math.unit(15, "feet"),
  29323. name: "Paw",
  29324. image: {
  29325. source: "./media/characters/kenzie-lee/paw.svg"
  29326. }
  29327. },
  29328. },
  29329. [
  29330. {
  29331. name: "Kenzie Flea",
  29332. height: math.unit(2, "mm"),
  29333. default: true
  29334. },
  29335. {
  29336. name: "Micro",
  29337. height: math.unit(2, "inches")
  29338. },
  29339. {
  29340. name: "Normal",
  29341. height: math.unit(152, "feet")
  29342. },
  29343. {
  29344. name: "Megamacro",
  29345. height: math.unit(7, "miles")
  29346. },
  29347. {
  29348. name: "Gigamacro",
  29349. height: math.unit(8000, "miles")
  29350. },
  29351. ]
  29352. ))
  29353. characterMakers.push(() => makeCharacter(
  29354. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29355. {
  29356. front: {
  29357. height: math.unit(6, "feet"),
  29358. name: "Front",
  29359. image: {
  29360. source: "./media/characters/withers/front.svg",
  29361. extra: 1935/1760,
  29362. bottom: 72/2007
  29363. }
  29364. },
  29365. back: {
  29366. height: math.unit(6, "feet"),
  29367. name: "Back",
  29368. image: {
  29369. source: "./media/characters/withers/back.svg",
  29370. extra: 1944/1792,
  29371. bottom: 12/1956
  29372. }
  29373. },
  29374. dressed: {
  29375. height: math.unit(6, "feet"),
  29376. name: "Dressed",
  29377. image: {
  29378. source: "./media/characters/withers/dressed.svg",
  29379. extra: 1937/1765,
  29380. bottom: 73/2010
  29381. }
  29382. },
  29383. phase1: {
  29384. height: math.unit(1.1, "feet"),
  29385. name: "Phase 1",
  29386. image: {
  29387. source: "./media/characters/withers/phase-1.svg",
  29388. extra: 1885/1232,
  29389. bottom: 0/1885
  29390. }
  29391. },
  29392. phase2: {
  29393. height: math.unit(1.05, "feet"),
  29394. name: "Phase 2",
  29395. image: {
  29396. source: "./media/characters/withers/phase-2.svg",
  29397. extra: 1792/1090,
  29398. bottom: 0/1792
  29399. }
  29400. },
  29401. partyWipe: {
  29402. height: math.unit(1.1, "feet"),
  29403. name: "Party Wipe",
  29404. image: {
  29405. source: "./media/characters/withers/party-wipe.svg",
  29406. extra: 1864/1207,
  29407. bottom: 0/1864
  29408. }
  29409. },
  29410. },
  29411. [
  29412. {
  29413. name: "Macro",
  29414. height: math.unit(167, "feet"),
  29415. default: true
  29416. },
  29417. {
  29418. name: "Megamacro",
  29419. height: math.unit(15, "miles")
  29420. }
  29421. ]
  29422. ))
  29423. characterMakers.push(() => makeCharacter(
  29424. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29425. {
  29426. front: {
  29427. height: math.unit(6 + 7 / 12, "feet"),
  29428. weight: math.unit(250, "lb"),
  29429. name: "Front",
  29430. image: {
  29431. source: "./media/characters/nemoskii/front.svg",
  29432. extra: 2270 / 1734,
  29433. bottom: 86 / 2354
  29434. }
  29435. },
  29436. back: {
  29437. height: math.unit(6 + 7 / 12, "feet"),
  29438. weight: math.unit(250, "lb"),
  29439. name: "Back",
  29440. image: {
  29441. source: "./media/characters/nemoskii/back.svg",
  29442. extra: 1845 / 1788,
  29443. bottom: 10.5 / 1852
  29444. }
  29445. },
  29446. head: {
  29447. height: math.unit(1.31, "feet"),
  29448. name: "Head",
  29449. image: {
  29450. source: "./media/characters/nemoskii/head.svg"
  29451. }
  29452. },
  29453. },
  29454. [
  29455. {
  29456. name: "Micro",
  29457. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29458. },
  29459. {
  29460. name: "Normal",
  29461. height: math.unit(6 + 7 / 12, "feet"),
  29462. default: true
  29463. },
  29464. {
  29465. name: "Macro",
  29466. height: math.unit((6 + 7 / 12) * 150, "feet")
  29467. },
  29468. {
  29469. name: "Macro+",
  29470. height: math.unit((6 + 7 / 12) * 500, "feet")
  29471. },
  29472. {
  29473. name: "Megamacro",
  29474. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29475. },
  29476. ]
  29477. ))
  29478. characterMakers.push(() => makeCharacter(
  29479. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29480. {
  29481. front: {
  29482. height: math.unit(1, "mile"),
  29483. weight: math.unit(265261.9, "lb"),
  29484. name: "Front",
  29485. image: {
  29486. source: "./media/characters/shui/front.svg",
  29487. extra: 1633 / 1564,
  29488. bottom: 91.5 / 1726
  29489. }
  29490. },
  29491. },
  29492. [
  29493. {
  29494. name: "Macro",
  29495. height: math.unit(1, "mile"),
  29496. default: true
  29497. },
  29498. ]
  29499. ))
  29500. characterMakers.push(() => makeCharacter(
  29501. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29502. {
  29503. front: {
  29504. height: math.unit(12 + 6 / 12, "feet"),
  29505. weight: math.unit(1342, "lb"),
  29506. name: "Front",
  29507. image: {
  29508. source: "./media/characters/arokh-takakura/front.svg",
  29509. extra: 1089 / 1043,
  29510. bottom: 77.4 / 1176.7
  29511. }
  29512. },
  29513. back: {
  29514. height: math.unit(12 + 6 / 12, "feet"),
  29515. weight: math.unit(1342, "lb"),
  29516. name: "Back",
  29517. image: {
  29518. source: "./media/characters/arokh-takakura/back.svg",
  29519. extra: 1046 / 1019,
  29520. bottom: 102 / 1150
  29521. }
  29522. },
  29523. },
  29524. [
  29525. {
  29526. name: "Big",
  29527. height: math.unit(12 + 6 / 12, "feet"),
  29528. default: true
  29529. },
  29530. ]
  29531. ))
  29532. characterMakers.push(() => makeCharacter(
  29533. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29534. {
  29535. front: {
  29536. height: math.unit(5 + 6 / 12, "feet"),
  29537. weight: math.unit(150, "lb"),
  29538. name: "Front",
  29539. image: {
  29540. source: "./media/characters/theo/front.svg",
  29541. extra: 1184 / 1131,
  29542. bottom: 7.4 / 1191
  29543. }
  29544. },
  29545. },
  29546. [
  29547. {
  29548. name: "Micro",
  29549. height: math.unit(5, "inches")
  29550. },
  29551. {
  29552. name: "Normal",
  29553. height: math.unit(5 + 6 / 12, "feet"),
  29554. default: true
  29555. },
  29556. ]
  29557. ))
  29558. characterMakers.push(() => makeCharacter(
  29559. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29560. {
  29561. front: {
  29562. height: math.unit(5 + 9 / 12, "feet"),
  29563. weight: math.unit(130, "lb"),
  29564. name: "Front",
  29565. image: {
  29566. source: "./media/characters/cecelia-swift/front.svg",
  29567. extra: 502 / 484,
  29568. bottom: 23 / 523
  29569. }
  29570. },
  29571. back: {
  29572. height: math.unit(5 + 9 / 12, "feet"),
  29573. weight: math.unit(130, "lb"),
  29574. name: "Back",
  29575. image: {
  29576. source: "./media/characters/cecelia-swift/back.svg",
  29577. extra: 499 / 485,
  29578. bottom: 12 / 511
  29579. }
  29580. },
  29581. head: {
  29582. height: math.unit(0.90, "feet"),
  29583. name: "Head",
  29584. image: {
  29585. source: "./media/characters/cecelia-swift/head.svg"
  29586. }
  29587. },
  29588. rump: {
  29589. height: math.unit(1.75, "feet"),
  29590. name: "Rump",
  29591. image: {
  29592. source: "./media/characters/cecelia-swift/rump.svg"
  29593. }
  29594. },
  29595. },
  29596. [
  29597. {
  29598. name: "Normal",
  29599. height: math.unit(5 + 9 / 12, "feet"),
  29600. default: true
  29601. },
  29602. {
  29603. name: "Big",
  29604. height: math.unit(50, "feet")
  29605. },
  29606. {
  29607. name: "Macro",
  29608. height: math.unit(100, "feet")
  29609. },
  29610. {
  29611. name: "Macro+",
  29612. height: math.unit(500, "feet")
  29613. },
  29614. {
  29615. name: "Macro++",
  29616. height: math.unit(1000, "feet")
  29617. },
  29618. ]
  29619. ))
  29620. characterMakers.push(() => makeCharacter(
  29621. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29622. {
  29623. front: {
  29624. height: math.unit(6, "feet"),
  29625. weight: math.unit(150, "lb"),
  29626. name: "Front",
  29627. image: {
  29628. source: "./media/characters/kaunan/front.svg",
  29629. extra: 2890 / 2523,
  29630. bottom: 49 / 2939
  29631. }
  29632. },
  29633. },
  29634. [
  29635. {
  29636. name: "Macro",
  29637. height: math.unit(150, "feet"),
  29638. default: true
  29639. },
  29640. ]
  29641. ))
  29642. characterMakers.push(() => makeCharacter(
  29643. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29644. {
  29645. dressed: {
  29646. height: math.unit(175, "cm"),
  29647. weight: math.unit(60, "kg"),
  29648. name: "Dressed",
  29649. image: {
  29650. source: "./media/characters/fei/dressed.svg",
  29651. extra: 1402/1278,
  29652. bottom: 27/1429
  29653. }
  29654. },
  29655. nude: {
  29656. height: math.unit(175, "cm"),
  29657. weight: math.unit(60, "kg"),
  29658. name: "Nude",
  29659. image: {
  29660. source: "./media/characters/fei/nude.svg",
  29661. extra: 1402/1278,
  29662. bottom: 27/1429
  29663. }
  29664. },
  29665. heels: {
  29666. height: math.unit(0.466, "feet"),
  29667. name: "Heels",
  29668. image: {
  29669. source: "./media/characters/fei/heels.svg",
  29670. extra: 156/152,
  29671. bottom: 28/184
  29672. }
  29673. },
  29674. },
  29675. [
  29676. {
  29677. name: "Mortal",
  29678. height: math.unit(175, "cm")
  29679. },
  29680. {
  29681. name: "Normal",
  29682. height: math.unit(3500, "m")
  29683. },
  29684. {
  29685. name: "Stroll",
  29686. height: math.unit(18.4, "km"),
  29687. default: true
  29688. },
  29689. {
  29690. name: "Showoff",
  29691. height: math.unit(175, "km")
  29692. },
  29693. ]
  29694. ))
  29695. characterMakers.push(() => makeCharacter(
  29696. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29697. {
  29698. front: {
  29699. height: math.unit(7, "feet"),
  29700. weight: math.unit(1000, "kg"),
  29701. name: "Front",
  29702. image: {
  29703. source: "./media/characters/edrax/front.svg",
  29704. extra: 2838 / 2550,
  29705. bottom: 130 / 2968
  29706. }
  29707. },
  29708. },
  29709. [
  29710. {
  29711. name: "Small",
  29712. height: math.unit(7, "feet")
  29713. },
  29714. {
  29715. name: "Normal",
  29716. height: math.unit(1500, "meters")
  29717. },
  29718. {
  29719. name: "Mega",
  29720. height: math.unit(12000000, "km"),
  29721. default: true
  29722. },
  29723. {
  29724. name: "Megamacro",
  29725. height: math.unit(10600000, "lightyears")
  29726. },
  29727. {
  29728. name: "Hypermacro",
  29729. height: math.unit(256, "yottameters")
  29730. },
  29731. ]
  29732. ))
  29733. characterMakers.push(() => makeCharacter(
  29734. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29735. {
  29736. front: {
  29737. height: math.unit(10, "feet"),
  29738. weight: math.unit(750, "lb"),
  29739. name: "Front",
  29740. image: {
  29741. source: "./media/characters/clove/front.svg",
  29742. extra: 1918/1751,
  29743. bottom: 52/1970
  29744. }
  29745. },
  29746. back: {
  29747. height: math.unit(10, "feet"),
  29748. weight: math.unit(750, "lb"),
  29749. name: "Back",
  29750. image: {
  29751. source: "./media/characters/clove/back.svg",
  29752. extra: 1912/1747,
  29753. bottom: 50/1962
  29754. }
  29755. },
  29756. },
  29757. [
  29758. {
  29759. name: "Normal",
  29760. height: math.unit(10, "feet"),
  29761. default: true
  29762. },
  29763. ]
  29764. ))
  29765. characterMakers.push(() => makeCharacter(
  29766. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29767. {
  29768. front: {
  29769. height: math.unit(4, "feet"),
  29770. weight: math.unit(50, "lb"),
  29771. name: "Front",
  29772. image: {
  29773. source: "./media/characters/alex-rabbit/front.svg",
  29774. extra: 507 / 458,
  29775. bottom: 18.5 / 527
  29776. }
  29777. },
  29778. back: {
  29779. height: math.unit(4, "feet"),
  29780. weight: math.unit(50, "lb"),
  29781. name: "Back",
  29782. image: {
  29783. source: "./media/characters/alex-rabbit/back.svg",
  29784. extra: 502 / 460,
  29785. bottom: 18.9 / 521
  29786. }
  29787. },
  29788. },
  29789. [
  29790. {
  29791. name: "Normal",
  29792. height: math.unit(4, "feet"),
  29793. default: true
  29794. },
  29795. ]
  29796. ))
  29797. characterMakers.push(() => makeCharacter(
  29798. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29799. {
  29800. front: {
  29801. height: math.unit(1 + 3 / 12, "feet"),
  29802. weight: math.unit(80, "lb"),
  29803. name: "Front",
  29804. image: {
  29805. source: "./media/characters/zander-rose/front.svg",
  29806. extra: 916 / 797,
  29807. bottom: 17 / 933
  29808. }
  29809. },
  29810. back: {
  29811. height: math.unit(1 + 3 / 12, "feet"),
  29812. weight: math.unit(80, "lb"),
  29813. name: "Back",
  29814. image: {
  29815. source: "./media/characters/zander-rose/back.svg",
  29816. extra: 903 / 779,
  29817. bottom: 31 / 934
  29818. }
  29819. },
  29820. },
  29821. [
  29822. {
  29823. name: "Normal",
  29824. height: math.unit(1 + 3 / 12, "feet"),
  29825. default: true
  29826. },
  29827. ]
  29828. ))
  29829. characterMakers.push(() => makeCharacter(
  29830. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29831. {
  29832. anthro: {
  29833. height: math.unit(6, "feet"),
  29834. weight: math.unit(150, "lb"),
  29835. name: "Anthro",
  29836. image: {
  29837. source: "./media/characters/razz/anthro.svg",
  29838. extra: 1437 / 1343,
  29839. bottom: 48 / 1485
  29840. }
  29841. },
  29842. feral: {
  29843. height: math.unit(6, "feet"),
  29844. weight: math.unit(150, "lb"),
  29845. name: "Feral",
  29846. image: {
  29847. source: "./media/characters/razz/feral.svg",
  29848. extra: 2569 / 1385,
  29849. bottom: 95 / 2664
  29850. }
  29851. },
  29852. },
  29853. [
  29854. {
  29855. name: "Normal",
  29856. height: math.unit(6, "feet"),
  29857. default: true
  29858. },
  29859. ]
  29860. ))
  29861. characterMakers.push(() => makeCharacter(
  29862. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29863. {
  29864. front: {
  29865. height: math.unit(9 + 4 / 12, "feet"),
  29866. weight: math.unit(500, "lb"),
  29867. name: "Front",
  29868. image: {
  29869. source: "./media/characters/morrigan/front.svg",
  29870. extra: 2707 / 2579,
  29871. bottom: 156 / 2863
  29872. }
  29873. },
  29874. },
  29875. [
  29876. {
  29877. name: "Normal",
  29878. height: math.unit(9 + 4 / 12, "feet"),
  29879. default: true
  29880. },
  29881. ]
  29882. ))
  29883. characterMakers.push(() => makeCharacter(
  29884. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29885. {
  29886. front: {
  29887. height: math.unit(5, "stories"),
  29888. weight: math.unit(4000, "lb"),
  29889. name: "Front",
  29890. image: {
  29891. source: "./media/characters/jenene/front.svg",
  29892. extra: 1780 / 1710,
  29893. bottom: 57 / 1837
  29894. }
  29895. },
  29896. },
  29897. [
  29898. {
  29899. name: "Normal",
  29900. height: math.unit(5, "stories"),
  29901. default: true
  29902. },
  29903. ]
  29904. ))
  29905. characterMakers.push(() => makeCharacter(
  29906. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29907. {
  29908. taurSfw: {
  29909. height: math.unit(10, "meters"),
  29910. weight: math.unit(17500, "kg"),
  29911. name: "Taur",
  29912. image: {
  29913. source: "./media/characters/faey/taur-sfw.svg",
  29914. extra: 1200 / 968,
  29915. bottom: 41 / 1241
  29916. }
  29917. },
  29918. chestmaw: {
  29919. height: math.unit(2.01, "meters"),
  29920. name: "Chestmaw",
  29921. image: {
  29922. source: "./media/characters/faey/chestmaw.svg"
  29923. }
  29924. },
  29925. foot: {
  29926. height: math.unit(2.43, "meters"),
  29927. name: "Foot",
  29928. image: {
  29929. source: "./media/characters/faey/foot.svg"
  29930. }
  29931. },
  29932. jaws: {
  29933. height: math.unit(1.66, "meters"),
  29934. name: "Jaws",
  29935. image: {
  29936. source: "./media/characters/faey/jaws.svg"
  29937. }
  29938. },
  29939. tongues: {
  29940. height: math.unit(2.01, "meters"),
  29941. name: "Tongues",
  29942. image: {
  29943. source: "./media/characters/faey/tongues.svg"
  29944. }
  29945. },
  29946. },
  29947. [
  29948. {
  29949. name: "Small",
  29950. height: math.unit(10, "meters"),
  29951. default: true
  29952. },
  29953. {
  29954. name: "Big",
  29955. height: math.unit(500000, "km")
  29956. },
  29957. ]
  29958. ))
  29959. characterMakers.push(() => makeCharacter(
  29960. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29961. {
  29962. front: {
  29963. height: math.unit(7, "feet"),
  29964. weight: math.unit(275, "lb"),
  29965. name: "Front",
  29966. image: {
  29967. source: "./media/characters/roku/front.svg",
  29968. extra: 903 / 878,
  29969. bottom: 37 / 940
  29970. }
  29971. },
  29972. },
  29973. [
  29974. {
  29975. name: "Normal",
  29976. height: math.unit(7, "feet"),
  29977. default: true
  29978. },
  29979. {
  29980. name: "Macro",
  29981. height: math.unit(500, "feet")
  29982. },
  29983. {
  29984. name: "Megamacro",
  29985. height: math.unit(200, "miles")
  29986. },
  29987. ]
  29988. ))
  29989. characterMakers.push(() => makeCharacter(
  29990. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29991. {
  29992. front: {
  29993. height: math.unit(6 + 2 / 12, "feet"),
  29994. weight: math.unit(150, "lb"),
  29995. name: "Front",
  29996. image: {
  29997. source: "./media/characters/lira/front.svg",
  29998. extra: 1727 / 1605,
  29999. bottom: 26 / 1753
  30000. }
  30001. },
  30002. back: {
  30003. height: math.unit(6 + 2 / 12, "feet"),
  30004. weight: math.unit(150, "lb"),
  30005. name: "Back",
  30006. image: {
  30007. source: "./media/characters/lira/back.svg",
  30008. extra: 1713/1621,
  30009. bottom: 20/1733
  30010. }
  30011. },
  30012. hand: {
  30013. height: math.unit(0.75, "feet"),
  30014. name: "Hand",
  30015. image: {
  30016. source: "./media/characters/lira/hand.svg"
  30017. }
  30018. },
  30019. maw: {
  30020. height: math.unit(0.65, "feet"),
  30021. name: "Maw",
  30022. image: {
  30023. source: "./media/characters/lira/maw.svg"
  30024. }
  30025. },
  30026. pawDigi: {
  30027. height: math.unit(1.6, "feet"),
  30028. name: "Paw Digi",
  30029. image: {
  30030. source: "./media/characters/lira/paw-digi.svg"
  30031. }
  30032. },
  30033. pawPlanti: {
  30034. height: math.unit(1.4, "feet"),
  30035. name: "Paw Planti",
  30036. image: {
  30037. source: "./media/characters/lira/paw-planti.svg"
  30038. }
  30039. },
  30040. },
  30041. [
  30042. {
  30043. name: "Normal",
  30044. height: math.unit(6 + 2 / 12, "feet"),
  30045. default: true
  30046. },
  30047. {
  30048. name: "Macro",
  30049. height: math.unit(100, "feet")
  30050. },
  30051. {
  30052. name: "Macro²",
  30053. height: math.unit(1600, "feet")
  30054. },
  30055. {
  30056. name: "Planetary",
  30057. height: math.unit(20, "earths")
  30058. },
  30059. ]
  30060. ))
  30061. characterMakers.push(() => makeCharacter(
  30062. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30063. {
  30064. front: {
  30065. height: math.unit(6, "feet"),
  30066. weight: math.unit(150, "lb"),
  30067. name: "Front",
  30068. image: {
  30069. source: "./media/characters/hadjet/front.svg",
  30070. extra: 1480 / 1346,
  30071. bottom: 26 / 1506
  30072. }
  30073. },
  30074. frontNsfw: {
  30075. height: math.unit(6, "feet"),
  30076. weight: math.unit(150, "lb"),
  30077. name: "Front (NSFW)",
  30078. image: {
  30079. source: "./media/characters/hadjet/front-nsfw.svg",
  30080. extra: 1440 / 1358,
  30081. bottom: 52 / 1492
  30082. }
  30083. },
  30084. },
  30085. [
  30086. {
  30087. name: "Macro",
  30088. height: math.unit(10, "stories"),
  30089. default: true
  30090. },
  30091. {
  30092. name: "Megamacro",
  30093. height: math.unit(1.5, "miles")
  30094. },
  30095. {
  30096. name: "Megamacro+",
  30097. height: math.unit(5, "miles")
  30098. },
  30099. ]
  30100. ))
  30101. characterMakers.push(() => makeCharacter(
  30102. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30103. {
  30104. side: {
  30105. height: math.unit(106, "feet"),
  30106. weight: math.unit(500, "tonnes"),
  30107. name: "Side",
  30108. image: {
  30109. source: "./media/characters/kodran/side.svg",
  30110. extra: 553 / 480,
  30111. bottom: 33 / 586
  30112. }
  30113. },
  30114. front: {
  30115. height: math.unit(132, "feet"),
  30116. weight: math.unit(500, "tonnes"),
  30117. name: "Front",
  30118. image: {
  30119. source: "./media/characters/kodran/front.svg",
  30120. extra: 667 / 643,
  30121. bottom: 42 / 709
  30122. }
  30123. },
  30124. flying: {
  30125. height: math.unit(350, "feet"),
  30126. weight: math.unit(500, "tonnes"),
  30127. name: "Flying",
  30128. image: {
  30129. source: "./media/characters/kodran/flying.svg"
  30130. }
  30131. },
  30132. foot: {
  30133. height: math.unit(33, "feet"),
  30134. name: "Foot",
  30135. image: {
  30136. source: "./media/characters/kodran/foot.svg"
  30137. }
  30138. },
  30139. footFront: {
  30140. height: math.unit(19, "feet"),
  30141. name: "Foot (Front)",
  30142. image: {
  30143. source: "./media/characters/kodran/foot-front.svg",
  30144. extra: 261 / 261,
  30145. bottom: 91 / 352
  30146. }
  30147. },
  30148. headFront: {
  30149. height: math.unit(53, "feet"),
  30150. name: "Head (Front)",
  30151. image: {
  30152. source: "./media/characters/kodran/head-front.svg"
  30153. }
  30154. },
  30155. headSide: {
  30156. height: math.unit(65, "feet"),
  30157. name: "Head (Side)",
  30158. image: {
  30159. source: "./media/characters/kodran/head-side.svg"
  30160. }
  30161. },
  30162. throat: {
  30163. height: math.unit(79, "feet"),
  30164. name: "Throat",
  30165. image: {
  30166. source: "./media/characters/kodran/throat.svg"
  30167. }
  30168. },
  30169. },
  30170. [
  30171. {
  30172. name: "Large",
  30173. height: math.unit(106, "feet"),
  30174. default: true
  30175. },
  30176. ]
  30177. ))
  30178. characterMakers.push(() => makeCharacter(
  30179. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30180. {
  30181. side: {
  30182. height: math.unit(11, "feet"),
  30183. weight: math.unit(150, "lb"),
  30184. name: "Side",
  30185. image: {
  30186. source: "./media/characters/pyxaron/side.svg",
  30187. extra: 305 / 195,
  30188. bottom: 17 / 322
  30189. }
  30190. },
  30191. },
  30192. [
  30193. {
  30194. name: "Normal",
  30195. height: math.unit(11, "feet"),
  30196. default: true
  30197. },
  30198. ]
  30199. ))
  30200. characterMakers.push(() => makeCharacter(
  30201. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30202. {
  30203. front: {
  30204. height: math.unit(6, "feet"),
  30205. weight: math.unit(150, "lb"),
  30206. name: "Front",
  30207. image: {
  30208. source: "./media/characters/meep/front.svg",
  30209. extra: 88 / 80,
  30210. bottom: 6 / 94
  30211. }
  30212. },
  30213. },
  30214. [
  30215. {
  30216. name: "Fun Sized",
  30217. height: math.unit(2, "inches"),
  30218. default: true
  30219. },
  30220. {
  30221. name: "Friend Sized",
  30222. height: math.unit(8, "inches")
  30223. },
  30224. ]
  30225. ))
  30226. characterMakers.push(() => makeCharacter(
  30227. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30228. {
  30229. front: {
  30230. height: math.unit(15, "feet"),
  30231. weight: math.unit(2500, "lb"),
  30232. name: "Front",
  30233. image: {
  30234. source: "./media/characters/holly-rabbit/front.svg",
  30235. extra: 1433 / 1233,
  30236. bottom: 125 / 1558
  30237. }
  30238. },
  30239. dick: {
  30240. height: math.unit(4.6, "feet"),
  30241. name: "Dick",
  30242. image: {
  30243. source: "./media/characters/holly-rabbit/dick.svg"
  30244. }
  30245. },
  30246. },
  30247. [
  30248. {
  30249. name: "Normal",
  30250. height: math.unit(15, "feet"),
  30251. default: true
  30252. },
  30253. {
  30254. name: "Macro",
  30255. height: math.unit(250, "feet")
  30256. },
  30257. {
  30258. name: "Macro+",
  30259. height: math.unit(2500, "feet")
  30260. },
  30261. ]
  30262. ))
  30263. characterMakers.push(() => makeCharacter(
  30264. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30265. {
  30266. front: {
  30267. height: math.unit(3.02, "meters"),
  30268. weight: math.unit(500, "kg"),
  30269. name: "Front",
  30270. image: {
  30271. source: "./media/characters/drena/front.svg",
  30272. extra: 282 / 243,
  30273. bottom: 8 / 290
  30274. }
  30275. },
  30276. side: {
  30277. height: math.unit(3.02, "meters"),
  30278. weight: math.unit(500, "kg"),
  30279. name: "Side",
  30280. image: {
  30281. source: "./media/characters/drena/side.svg",
  30282. extra: 280 / 245,
  30283. bottom: 10 / 290
  30284. }
  30285. },
  30286. back: {
  30287. height: math.unit(3.02, "meters"),
  30288. weight: math.unit(500, "kg"),
  30289. name: "Back",
  30290. image: {
  30291. source: "./media/characters/drena/back.svg",
  30292. extra: 278 / 243,
  30293. bottom: 2 / 280
  30294. }
  30295. },
  30296. foot: {
  30297. height: math.unit(0.75, "meters"),
  30298. name: "Foot",
  30299. image: {
  30300. source: "./media/characters/drena/foot.svg"
  30301. }
  30302. },
  30303. maw: {
  30304. height: math.unit(0.82, "meters"),
  30305. name: "Maw",
  30306. image: {
  30307. source: "./media/characters/drena/maw.svg"
  30308. }
  30309. },
  30310. eating: {
  30311. height: math.unit(0.75, "meters"),
  30312. name: "Eating",
  30313. image: {
  30314. source: "./media/characters/drena/eating.svg"
  30315. }
  30316. },
  30317. rump: {
  30318. height: math.unit(0.93, "meters"),
  30319. name: "Rump",
  30320. image: {
  30321. source: "./media/characters/drena/rump.svg"
  30322. }
  30323. },
  30324. },
  30325. [
  30326. {
  30327. name: "Normal",
  30328. height: math.unit(3.02, "meters"),
  30329. default: true
  30330. },
  30331. ]
  30332. ))
  30333. characterMakers.push(() => makeCharacter(
  30334. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30335. {
  30336. front: {
  30337. height: math.unit(6 + 4 / 12, "feet"),
  30338. weight: math.unit(250, "lb"),
  30339. name: "Front",
  30340. image: {
  30341. source: "./media/characters/remmyzilla/front.svg",
  30342. extra: 4033 / 3588,
  30343. bottom: 123 / 4156
  30344. }
  30345. },
  30346. back: {
  30347. height: math.unit(6 + 4 / 12, "feet"),
  30348. weight: math.unit(250, "lb"),
  30349. name: "Back",
  30350. image: {
  30351. source: "./media/characters/remmyzilla/back.svg",
  30352. extra: 2687 / 2555,
  30353. bottom: 48 / 2735
  30354. }
  30355. },
  30356. paw: {
  30357. height: math.unit(1.73, "feet"),
  30358. name: "Paw",
  30359. image: {
  30360. source: "./media/characters/remmyzilla/paw.svg"
  30361. },
  30362. extraAttributes: {
  30363. "toeSize": {
  30364. name: "Toe Size",
  30365. power: 2,
  30366. type: "area",
  30367. base: math.unit(0.0035, "m^2")
  30368. },
  30369. "padSize": {
  30370. name: "Pad Size",
  30371. power: 2,
  30372. type: "area",
  30373. base: math.unit(0.015, "m^2")
  30374. },
  30375. "pawsize": {
  30376. name: "Paw Size",
  30377. power: 2,
  30378. type: "area",
  30379. base: math.unit(0.072, "m^2")
  30380. },
  30381. }
  30382. },
  30383. maw: {
  30384. height: math.unit(1.73, "feet"),
  30385. name: "Maw",
  30386. image: {
  30387. source: "./media/characters/remmyzilla/maw.svg"
  30388. }
  30389. },
  30390. },
  30391. [
  30392. {
  30393. name: "Normal",
  30394. height: math.unit(6 + 4 / 12, "feet")
  30395. },
  30396. {
  30397. name: "Minimacro",
  30398. height: math.unit(12 + 8 / 12, "feet")
  30399. },
  30400. {
  30401. name: "Normal",
  30402. height: math.unit(640, "feet"),
  30403. default: true
  30404. },
  30405. {
  30406. name: "Megamacro",
  30407. height: math.unit(6400, "feet")
  30408. },
  30409. {
  30410. name: "Gigamacro",
  30411. height: math.unit(64000, "miles")
  30412. },
  30413. ]
  30414. ))
  30415. characterMakers.push(() => makeCharacter(
  30416. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30417. {
  30418. front: {
  30419. height: math.unit(2.5, "meters"),
  30420. weight: math.unit(300, "lb"),
  30421. name: "Front",
  30422. image: {
  30423. source: "./media/characters/lawrence/front.svg",
  30424. extra: 357 / 335,
  30425. bottom: 30 / 387
  30426. }
  30427. },
  30428. back: {
  30429. height: math.unit(2.5, "meters"),
  30430. weight: math.unit(300, "lb"),
  30431. name: "Back",
  30432. image: {
  30433. source: "./media/characters/lawrence/back.svg",
  30434. extra: 357 / 338,
  30435. bottom: 16 / 373
  30436. }
  30437. },
  30438. head: {
  30439. height: math.unit(0.9, "meter"),
  30440. name: "Head",
  30441. image: {
  30442. source: "./media/characters/lawrence/head.svg"
  30443. }
  30444. },
  30445. maw: {
  30446. height: math.unit(0.7, "meter"),
  30447. name: "Maw",
  30448. image: {
  30449. source: "./media/characters/lawrence/maw.svg"
  30450. }
  30451. },
  30452. footBottom: {
  30453. height: math.unit(0.5, "meter"),
  30454. name: "Foot (Bottom)",
  30455. image: {
  30456. source: "./media/characters/lawrence/foot-bottom.svg"
  30457. }
  30458. },
  30459. footTop: {
  30460. height: math.unit(0.5, "meter"),
  30461. name: "Foot (Top)",
  30462. image: {
  30463. source: "./media/characters/lawrence/foot-top.svg"
  30464. }
  30465. },
  30466. },
  30467. [
  30468. {
  30469. name: "Normal",
  30470. height: math.unit(2.5, "meters"),
  30471. default: true
  30472. },
  30473. {
  30474. name: "Macro",
  30475. height: math.unit(95, "meters")
  30476. },
  30477. {
  30478. name: "Megamacro",
  30479. height: math.unit(150, "km")
  30480. },
  30481. ]
  30482. ))
  30483. characterMakers.push(() => makeCharacter(
  30484. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30485. {
  30486. front: {
  30487. height: math.unit(4.2, "meters"),
  30488. name: "Front",
  30489. image: {
  30490. source: "./media/characters/sydney/front.svg",
  30491. extra: 1323 / 1277,
  30492. bottom: 111 / 1434
  30493. }
  30494. },
  30495. },
  30496. [
  30497. {
  30498. name: "Normal",
  30499. height: math.unit(4.2, "meters"),
  30500. default: true
  30501. },
  30502. ]
  30503. ))
  30504. characterMakers.push(() => makeCharacter(
  30505. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30506. {
  30507. back: {
  30508. height: math.unit(201, "feet"),
  30509. name: "Back",
  30510. image: {
  30511. source: "./media/characters/jessica/back.svg",
  30512. extra: 273 / 259,
  30513. bottom: 7 / 280
  30514. }
  30515. },
  30516. },
  30517. [
  30518. {
  30519. name: "Normal",
  30520. height: math.unit(201, "feet"),
  30521. default: true
  30522. },
  30523. {
  30524. name: "Megamacro",
  30525. height: math.unit(8, "miles")
  30526. },
  30527. ]
  30528. ))
  30529. characterMakers.push(() => makeCharacter(
  30530. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30531. {
  30532. side: {
  30533. height: math.unit(5.6, "m"),
  30534. weight: math.unit(8000, "kg"),
  30535. name: "Side",
  30536. image: {
  30537. source: "./media/characters/victoria/side.svg",
  30538. extra: 1542/1229,
  30539. bottom: 124/1666
  30540. }
  30541. },
  30542. maw: {
  30543. height: math.unit(7.14, "feet"),
  30544. name: "Maw",
  30545. image: {
  30546. source: "./media/characters/victoria/maw.svg"
  30547. }
  30548. },
  30549. },
  30550. [
  30551. {
  30552. name: "Normal",
  30553. height: math.unit(5.6, "m"),
  30554. default: true
  30555. },
  30556. ]
  30557. ))
  30558. characterMakers.push(() => makeCharacter(
  30559. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30560. {
  30561. front: {
  30562. height: math.unit(5 + 6 / 12, "feet"),
  30563. name: "Front",
  30564. image: {
  30565. source: "./media/characters/cat/front.svg",
  30566. extra: 1449/1295,
  30567. bottom: 34/1483
  30568. },
  30569. form: "cat",
  30570. default: true
  30571. },
  30572. back: {
  30573. height: math.unit(5 + 6 / 12, "feet"),
  30574. name: "Back",
  30575. image: {
  30576. source: "./media/characters/cat/back.svg",
  30577. extra: 1466/1301,
  30578. bottom: 19/1485
  30579. },
  30580. form: "cat"
  30581. },
  30582. taur: {
  30583. height: math.unit(7, "feet"),
  30584. name: "Taur",
  30585. image: {
  30586. source: "./media/characters/cat/taur.svg",
  30587. extra: 1389/1233,
  30588. bottom: 83/1472
  30589. },
  30590. form: "taur",
  30591. default: true
  30592. },
  30593. lucarioFront: {
  30594. height: math.unit(4, "feet"),
  30595. name: "Lucario (Front)",
  30596. image: {
  30597. source: "./media/characters/cat/lucario-front.svg",
  30598. extra: 1149/1019,
  30599. bottom: 84/1233
  30600. },
  30601. form: "lucario",
  30602. default: true
  30603. },
  30604. lucarioBack: {
  30605. height: math.unit(4, "feet"),
  30606. name: "Lucario (Back)",
  30607. image: {
  30608. source: "./media/characters/cat/lucario-back.svg",
  30609. extra: 1190/1059,
  30610. bottom: 33/1223
  30611. },
  30612. form: "lucario"
  30613. },
  30614. megaLucario: {
  30615. height: math.unit(4, "feet"),
  30616. name: "Mega Lucario",
  30617. image: {
  30618. source: "./media/characters/cat/mega-lucario.svg",
  30619. extra: 1515 / 1319,
  30620. bottom: 63 / 1578
  30621. },
  30622. form: "lucario"
  30623. },
  30624. nickit: {
  30625. height: math.unit(2, "feet"),
  30626. name: "Nickit",
  30627. image: {
  30628. source: "./media/characters/cat/nickit.svg",
  30629. extra: 1980 / 1585,
  30630. bottom: 102 / 2082
  30631. },
  30632. form: "nickit",
  30633. default: true
  30634. },
  30635. lopunnyFront: {
  30636. height: math.unit(5, "feet"),
  30637. name: "Lopunny (Front)",
  30638. image: {
  30639. source: "./media/characters/cat/lopunny-front.svg",
  30640. extra: 1782 / 1469,
  30641. bottom: 38 / 1820
  30642. },
  30643. form: "lopunny",
  30644. default: true
  30645. },
  30646. lopunnyBack: {
  30647. height: math.unit(5, "feet"),
  30648. name: "Lopunny (Back)",
  30649. image: {
  30650. source: "./media/characters/cat/lopunny-back.svg",
  30651. extra: 1660 / 1490,
  30652. bottom: 25 / 1685
  30653. },
  30654. form: "lopunny"
  30655. },
  30656. },
  30657. [
  30658. {
  30659. name: "Really small",
  30660. height: math.unit(1, "nm")
  30661. },
  30662. {
  30663. name: "Micro",
  30664. height: math.unit(5, "inches")
  30665. },
  30666. {
  30667. name: "Normal",
  30668. height: math.unit(5 + 6 / 12, "feet"),
  30669. default: true
  30670. },
  30671. {
  30672. name: "Macro",
  30673. height: math.unit(50, "feet")
  30674. },
  30675. {
  30676. name: "Macro+",
  30677. height: math.unit(150, "feet")
  30678. },
  30679. {
  30680. name: "Megamacro",
  30681. height: math.unit(100, "miles")
  30682. },
  30683. ]
  30684. ))
  30685. characterMakers.push(() => makeCharacter(
  30686. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30687. {
  30688. front: {
  30689. height: math.unit(63.4, "meters"),
  30690. weight: math.unit(3.28349e+6, "kilograms"),
  30691. name: "Front",
  30692. image: {
  30693. source: "./media/characters/kirina-violet/front.svg",
  30694. extra: 2812 / 2725,
  30695. bottom: 0 / 2812
  30696. }
  30697. },
  30698. back: {
  30699. height: math.unit(63.4, "meters"),
  30700. weight: math.unit(3.28349e+6, "kilograms"),
  30701. name: "Back",
  30702. image: {
  30703. source: "./media/characters/kirina-violet/back.svg",
  30704. extra: 2812 / 2725,
  30705. bottom: 0 / 2812
  30706. }
  30707. },
  30708. mouth: {
  30709. height: math.unit(4.35, "meters"),
  30710. name: "Mouth",
  30711. image: {
  30712. source: "./media/characters/kirina-violet/mouth.svg"
  30713. }
  30714. },
  30715. paw: {
  30716. height: math.unit(5.6, "meters"),
  30717. name: "Paw",
  30718. image: {
  30719. source: "./media/characters/kirina-violet/paw.svg"
  30720. }
  30721. },
  30722. tail: {
  30723. height: math.unit(18, "meters"),
  30724. name: "Tail",
  30725. image: {
  30726. source: "./media/characters/kirina-violet/tail.svg"
  30727. }
  30728. },
  30729. },
  30730. [
  30731. {
  30732. name: "Macro",
  30733. height: math.unit(63.4, "meters"),
  30734. default: true
  30735. },
  30736. ]
  30737. ))
  30738. characterMakers.push(() => makeCharacter(
  30739. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30740. {
  30741. front: {
  30742. height: math.unit(75, "feet"),
  30743. name: "Front",
  30744. image: {
  30745. source: "./media/characters/cat-gigachu/front.svg",
  30746. extra: 1239/1027,
  30747. bottom: 32/1271
  30748. }
  30749. },
  30750. back: {
  30751. height: math.unit(75, "feet"),
  30752. name: "Back",
  30753. image: {
  30754. source: "./media/characters/cat-gigachu/back.svg",
  30755. extra: 1229/1030,
  30756. bottom: 9/1238
  30757. }
  30758. },
  30759. },
  30760. [
  30761. {
  30762. name: "Dynamax",
  30763. height: math.unit(75, "feet"),
  30764. default: true
  30765. },
  30766. ]
  30767. ))
  30768. characterMakers.push(() => makeCharacter(
  30769. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30770. {
  30771. front: {
  30772. height: math.unit(6, "feet"),
  30773. weight: math.unit(150, "lb"),
  30774. name: "Front",
  30775. image: {
  30776. source: "./media/characters/sfaiyan/front.svg",
  30777. extra: 999 / 978,
  30778. bottom: 5 / 1004
  30779. }
  30780. },
  30781. },
  30782. [
  30783. {
  30784. name: "Normal",
  30785. height: math.unit(1.82, "meters")
  30786. },
  30787. {
  30788. name: "Giant",
  30789. height: math.unit(2.27, "km"),
  30790. default: true
  30791. },
  30792. ]
  30793. ))
  30794. characterMakers.push(() => makeCharacter(
  30795. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30796. {
  30797. front: {
  30798. height: math.unit(179, "cm"),
  30799. weight: math.unit(100, "kg"),
  30800. name: "Front",
  30801. image: {
  30802. source: "./media/characters/raunehkeli/front.svg",
  30803. extra: 1934 / 1926,
  30804. bottom: 0 / 1934
  30805. }
  30806. },
  30807. },
  30808. [
  30809. {
  30810. name: "Normal",
  30811. height: math.unit(179, "cm")
  30812. },
  30813. {
  30814. name: "Maximum",
  30815. height: math.unit(575, "meters"),
  30816. default: true
  30817. },
  30818. ]
  30819. ))
  30820. characterMakers.push(() => makeCharacter(
  30821. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30822. {
  30823. front: {
  30824. height: math.unit(6, "feet"),
  30825. weight: math.unit(150, "lb"),
  30826. name: "Front",
  30827. image: {
  30828. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30829. extra: 2625 / 2518,
  30830. bottom: 60 / 2685
  30831. }
  30832. },
  30833. },
  30834. [
  30835. {
  30836. name: "Normal",
  30837. height: math.unit(6 + 2 / 12, "feet")
  30838. },
  30839. {
  30840. name: "Macro",
  30841. height: math.unit(1180, "feet"),
  30842. default: true
  30843. },
  30844. ]
  30845. ))
  30846. characterMakers.push(() => makeCharacter(
  30847. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30848. {
  30849. front: {
  30850. height: math.unit(5 + 6 / 12, "feet"),
  30851. weight: math.unit(108, "lb"),
  30852. name: "Front",
  30853. image: {
  30854. source: "./media/characters/lilith-zott/front.svg",
  30855. extra: 2510 / 2238,
  30856. bottom: 100 / 2610
  30857. }
  30858. },
  30859. frontDressed: {
  30860. height: math.unit(5 + 6 / 12, "feet"),
  30861. weight: math.unit(108, "lb"),
  30862. name: "Front (Dressed)",
  30863. image: {
  30864. source: "./media/characters/lilith-zott/front-dressed.svg",
  30865. extra: 2510 / 2238,
  30866. bottom: 100 / 2610
  30867. }
  30868. },
  30869. },
  30870. [
  30871. {
  30872. name: "Normal",
  30873. height: math.unit(5 + 6 / 12, "feet")
  30874. },
  30875. {
  30876. name: "Macro",
  30877. height: math.unit(1030, "feet"),
  30878. default: true
  30879. },
  30880. ]
  30881. ))
  30882. characterMakers.push(() => makeCharacter(
  30883. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30884. {
  30885. front: {
  30886. height: math.unit(6, "feet"),
  30887. weight: math.unit(150, "lb"),
  30888. name: "Front",
  30889. image: {
  30890. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30891. extra: 2567 / 2435,
  30892. bottom: 39 / 2606
  30893. }
  30894. },
  30895. frontSuper: {
  30896. height: math.unit(6, "feet"),
  30897. name: "Front (Super)",
  30898. image: {
  30899. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30900. extra: 2567 / 2435,
  30901. bottom: 39 / 2606
  30902. }
  30903. },
  30904. },
  30905. [
  30906. {
  30907. name: "Normal",
  30908. height: math.unit(5 + 10 / 12, "feet")
  30909. },
  30910. {
  30911. name: "Macro",
  30912. height: math.unit(1100, "feet"),
  30913. default: true
  30914. },
  30915. ]
  30916. ))
  30917. characterMakers.push(() => makeCharacter(
  30918. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30919. {
  30920. front: {
  30921. height: math.unit(100, "miles"),
  30922. name: "Front",
  30923. image: {
  30924. source: "./media/characters/sona/front.svg",
  30925. extra: 2433 / 2201,
  30926. bottom: 53 / 2486
  30927. }
  30928. },
  30929. foot: {
  30930. height: math.unit(16.1, "miles"),
  30931. name: "Foot",
  30932. image: {
  30933. source: "./media/characters/sona/foot.svg"
  30934. }
  30935. },
  30936. },
  30937. [
  30938. {
  30939. name: "Macro",
  30940. height: math.unit(100, "miles"),
  30941. default: true
  30942. },
  30943. ]
  30944. ))
  30945. characterMakers.push(() => makeCharacter(
  30946. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30947. {
  30948. front: {
  30949. height: math.unit(6, "feet"),
  30950. weight: math.unit(150, "lb"),
  30951. name: "Front",
  30952. image: {
  30953. source: "./media/characters/bailey/front.svg",
  30954. extra: 1778 / 1724,
  30955. bottom: 30 / 1808
  30956. }
  30957. },
  30958. },
  30959. [
  30960. {
  30961. name: "Micro",
  30962. height: math.unit(4, "inches")
  30963. },
  30964. {
  30965. name: "Normal",
  30966. height: math.unit(5 + 5 / 12, "feet"),
  30967. default: true
  30968. },
  30969. {
  30970. name: "Macro",
  30971. height: math.unit(250, "feet")
  30972. },
  30973. {
  30974. name: "Megamacro",
  30975. height: math.unit(100, "miles")
  30976. },
  30977. ]
  30978. ))
  30979. characterMakers.push(() => makeCharacter(
  30980. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30981. {
  30982. front: {
  30983. height: math.unit(5 + 2 / 12, "feet"),
  30984. weight: math.unit(120, "lb"),
  30985. name: "Front",
  30986. image: {
  30987. source: "./media/characters/snaps/front.svg",
  30988. extra: 2370 / 2177,
  30989. bottom: 48 / 2418
  30990. }
  30991. },
  30992. back: {
  30993. height: math.unit(5 + 2 / 12, "feet"),
  30994. weight: math.unit(120, "lb"),
  30995. name: "Back",
  30996. image: {
  30997. source: "./media/characters/snaps/back.svg",
  30998. extra: 2408 / 2258,
  30999. bottom: 15 / 2423
  31000. }
  31001. },
  31002. },
  31003. [
  31004. {
  31005. name: "Micro",
  31006. height: math.unit(9, "inches")
  31007. },
  31008. {
  31009. name: "Normal",
  31010. height: math.unit(5 + 2 / 12, "feet"),
  31011. default: true
  31012. },
  31013. {
  31014. name: "Mini Macro",
  31015. height: math.unit(10, "feet")
  31016. },
  31017. ]
  31018. ))
  31019. characterMakers.push(() => makeCharacter(
  31020. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31021. {
  31022. front: {
  31023. height: math.unit(1.8, "meters"),
  31024. weight: math.unit(85, "kg"),
  31025. name: "Front",
  31026. image: {
  31027. source: "./media/characters/azteck/front.svg",
  31028. extra: 2815 / 2625,
  31029. bottom: 89 / 2904
  31030. }
  31031. },
  31032. back: {
  31033. height: math.unit(1.8, "meters"),
  31034. weight: math.unit(85, "kg"),
  31035. name: "Back",
  31036. image: {
  31037. source: "./media/characters/azteck/back.svg",
  31038. extra: 2856 / 2648,
  31039. bottom: 85 / 2941
  31040. }
  31041. },
  31042. frontDressed: {
  31043. height: math.unit(1.8, "meters"),
  31044. weight: math.unit(85, "kg"),
  31045. name: "Front (Dressed)",
  31046. image: {
  31047. source: "./media/characters/azteck/front-dressed.svg",
  31048. extra: 2147 / 2003,
  31049. bottom: 68 / 2215
  31050. }
  31051. },
  31052. head: {
  31053. height: math.unit(0.47, "meters"),
  31054. weight: math.unit(85, "kg"),
  31055. name: "Head",
  31056. image: {
  31057. source: "./media/characters/azteck/head.svg"
  31058. }
  31059. },
  31060. },
  31061. [
  31062. {
  31063. name: "Bite sized",
  31064. height: math.unit(16, "cm")
  31065. },
  31066. {
  31067. name: "Normal",
  31068. height: math.unit(1.8, "meters"),
  31069. default: true
  31070. },
  31071. ]
  31072. ))
  31073. characterMakers.push(() => makeCharacter(
  31074. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31075. {
  31076. front: {
  31077. height: math.unit(6, "feet"),
  31078. weight: math.unit(150, "lb"),
  31079. name: "Front",
  31080. image: {
  31081. source: "./media/characters/pidge/front.svg",
  31082. extra: 1936/1820,
  31083. bottom: 0/1936
  31084. }
  31085. },
  31086. back: {
  31087. height: math.unit(6, "feet"),
  31088. weight: math.unit(150, "lb"),
  31089. name: "Back",
  31090. image: {
  31091. source: "./media/characters/pidge/back.svg",
  31092. extra: 1938/1843,
  31093. bottom: 0/1938
  31094. }
  31095. },
  31096. casual: {
  31097. height: math.unit(6, "feet"),
  31098. weight: math.unit(150, "lb"),
  31099. name: "Casual",
  31100. image: {
  31101. source: "./media/characters/pidge/casual.svg",
  31102. extra: 1936/1820,
  31103. bottom: 0/1936
  31104. }
  31105. },
  31106. tech: {
  31107. height: math.unit(6, "feet"),
  31108. weight: math.unit(150, "lb"),
  31109. name: "Tech",
  31110. image: {
  31111. source: "./media/characters/pidge/tech.svg",
  31112. extra: 1802/1682,
  31113. bottom: 0/1802
  31114. }
  31115. },
  31116. head: {
  31117. height: math.unit(1.61, "feet"),
  31118. name: "Head",
  31119. image: {
  31120. source: "./media/characters/pidge/head.svg"
  31121. }
  31122. },
  31123. collar: {
  31124. height: math.unit(0.82, "feet"),
  31125. name: "Collar",
  31126. image: {
  31127. source: "./media/characters/pidge/collar.svg"
  31128. }
  31129. },
  31130. },
  31131. [
  31132. {
  31133. name: "Macro",
  31134. height: math.unit(2, "mile"),
  31135. default: true
  31136. },
  31137. {
  31138. name: "PUPPY",
  31139. height: math.unit(20, "miles")
  31140. },
  31141. ]
  31142. ))
  31143. characterMakers.push(() => makeCharacter(
  31144. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31145. {
  31146. front: {
  31147. height: math.unit(6, "feet"),
  31148. weight: math.unit(150, "lb"),
  31149. name: "Front",
  31150. image: {
  31151. source: "./media/characters/en/front.svg",
  31152. extra: 1697 / 1563,
  31153. bottom: 103 / 1800
  31154. }
  31155. },
  31156. back: {
  31157. height: math.unit(6, "feet"),
  31158. weight: math.unit(150, "lb"),
  31159. name: "Back",
  31160. image: {
  31161. source: "./media/characters/en/back.svg",
  31162. extra: 1700 / 1570,
  31163. bottom: 51 / 1751
  31164. }
  31165. },
  31166. frontDressed: {
  31167. height: math.unit(6, "feet"),
  31168. weight: math.unit(150, "lb"),
  31169. name: "Front (Dressed)",
  31170. image: {
  31171. source: "./media/characters/en/front-dressed.svg",
  31172. extra: 1697 / 1563,
  31173. bottom: 103 / 1800
  31174. }
  31175. },
  31176. backDressed: {
  31177. height: math.unit(6, "feet"),
  31178. weight: math.unit(150, "lb"),
  31179. name: "Back (Dressed)",
  31180. image: {
  31181. source: "./media/characters/en/back-dressed.svg",
  31182. extra: 1700 / 1570,
  31183. bottom: 51 / 1751
  31184. }
  31185. },
  31186. },
  31187. [
  31188. {
  31189. name: "Macro",
  31190. height: math.unit(210, "feet"),
  31191. default: true
  31192. },
  31193. ]
  31194. ))
  31195. characterMakers.push(() => makeCharacter(
  31196. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31197. {
  31198. front: {
  31199. height: math.unit(6, "feet"),
  31200. weight: math.unit(150, "lb"),
  31201. name: "Front",
  31202. image: {
  31203. source: "./media/characters/haze-orris/front.svg",
  31204. extra: 3975 / 3525,
  31205. bottom: 137 / 4112
  31206. }
  31207. },
  31208. },
  31209. [
  31210. {
  31211. name: "Micro",
  31212. height: math.unit(150, "mm"),
  31213. default: true
  31214. },
  31215. ]
  31216. ))
  31217. characterMakers.push(() => makeCharacter(
  31218. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31219. {
  31220. front: {
  31221. height: math.unit(6, "feet"),
  31222. weight: math.unit(150, "lb"),
  31223. name: "Front",
  31224. image: {
  31225. source: "./media/characters/casselene-yaro/front.svg",
  31226. extra: 4721 / 4541,
  31227. bottom: 82 / 4803
  31228. }
  31229. },
  31230. back: {
  31231. height: math.unit(6, "feet"),
  31232. weight: math.unit(150, "lb"),
  31233. name: "Back",
  31234. image: {
  31235. source: "./media/characters/casselene-yaro/back.svg",
  31236. extra: 4569 / 4377,
  31237. bottom: 69 / 4638
  31238. }
  31239. },
  31240. dressed: {
  31241. height: math.unit(6, "feet"),
  31242. weight: math.unit(150, "lb"),
  31243. name: "Dressed",
  31244. image: {
  31245. source: "./media/characters/casselene-yaro/dressed.svg",
  31246. extra: 4721 / 4541,
  31247. bottom: 82 / 4803
  31248. }
  31249. },
  31250. maw: {
  31251. height: math.unit(1, "feet"),
  31252. name: "Maw",
  31253. image: {
  31254. source: "./media/characters/casselene-yaro/maw.svg"
  31255. }
  31256. },
  31257. },
  31258. [
  31259. {
  31260. name: "Macro",
  31261. height: math.unit(190, "feet"),
  31262. default: true
  31263. },
  31264. ]
  31265. ))
  31266. characterMakers.push(() => makeCharacter(
  31267. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31268. {
  31269. front: {
  31270. height: math.unit(10, "feet"),
  31271. weight: math.unit(15015, "lb"),
  31272. name: "Front",
  31273. image: {
  31274. source: "./media/characters/platine/front.svg",
  31275. extra: 1741/1650,
  31276. bottom: 84/1825
  31277. }
  31278. },
  31279. side: {
  31280. height: math.unit(10, "feet"),
  31281. weight: math.unit(15015, "lb"),
  31282. name: "Side",
  31283. image: {
  31284. source: "./media/characters/platine/side.svg",
  31285. extra: 1790/1705,
  31286. bottom: 29/1819
  31287. }
  31288. },
  31289. },
  31290. [
  31291. {
  31292. name: "Normal",
  31293. height: math.unit(10, "feet"),
  31294. default: true
  31295. },
  31296. {
  31297. name: "Macro",
  31298. height: math.unit(100, "feet")
  31299. },
  31300. {
  31301. name: "Megamacro",
  31302. height: math.unit(1000, "feet")
  31303. },
  31304. ]
  31305. ))
  31306. characterMakers.push(() => makeCharacter(
  31307. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31308. {
  31309. front: {
  31310. height: math.unit(15 + 5 / 12, "feet"),
  31311. weight: math.unit(4600, "lb"),
  31312. name: "Front",
  31313. image: {
  31314. source: "./media/characters/neapolitan-ananassa/front.svg",
  31315. extra: 2903 / 2736,
  31316. bottom: 0 / 2903
  31317. }
  31318. },
  31319. side: {
  31320. height: math.unit(15 + 5 / 12, "feet"),
  31321. weight: math.unit(4600, "lb"),
  31322. name: "Side",
  31323. image: {
  31324. source: "./media/characters/neapolitan-ananassa/side.svg",
  31325. extra: 2925 / 2719,
  31326. bottom: 0 / 2925
  31327. }
  31328. },
  31329. back: {
  31330. height: math.unit(15 + 5 / 12, "feet"),
  31331. weight: math.unit(4600, "lb"),
  31332. name: "Back",
  31333. image: {
  31334. source: "./media/characters/neapolitan-ananassa/back.svg",
  31335. extra: 2903 / 2736,
  31336. bottom: 0 / 2903
  31337. }
  31338. },
  31339. },
  31340. [
  31341. {
  31342. name: "Normal",
  31343. height: math.unit(15 + 5 / 12, "feet"),
  31344. default: true
  31345. },
  31346. {
  31347. name: "Post-Millenium",
  31348. height: math.unit(35 + 5 / 12, "feet")
  31349. },
  31350. {
  31351. name: "Post-Era",
  31352. height: math.unit(450 + 5 / 12, "feet")
  31353. },
  31354. ]
  31355. ))
  31356. characterMakers.push(() => makeCharacter(
  31357. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31358. {
  31359. front: {
  31360. height: math.unit(300, "meters"),
  31361. weight: math.unit(125000, "tonnes"),
  31362. name: "Front",
  31363. image: {
  31364. source: "./media/characters/pazuzu/front.svg",
  31365. extra: 877 / 794,
  31366. bottom: 47 / 924
  31367. }
  31368. },
  31369. },
  31370. [
  31371. {
  31372. name: "Macro",
  31373. height: math.unit(300, "meters"),
  31374. default: true
  31375. },
  31376. ]
  31377. ))
  31378. characterMakers.push(() => makeCharacter(
  31379. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31380. {
  31381. side: {
  31382. height: math.unit(10 + 7 / 12, "feet"),
  31383. weight: math.unit(2.5, "tons"),
  31384. name: "Side",
  31385. image: {
  31386. source: "./media/characters/aasha/side.svg",
  31387. extra: 1345 / 1245,
  31388. bottom: 111 / 1456
  31389. }
  31390. },
  31391. back: {
  31392. height: math.unit(10 + 7 / 12, "feet"),
  31393. weight: math.unit(2.5, "tons"),
  31394. name: "Back",
  31395. image: {
  31396. source: "./media/characters/aasha/back.svg",
  31397. extra: 1133 / 1057,
  31398. bottom: 257 / 1390
  31399. }
  31400. },
  31401. },
  31402. [
  31403. {
  31404. name: "Normal",
  31405. height: math.unit(10 + 7 / 12, "feet"),
  31406. default: true
  31407. },
  31408. ]
  31409. ))
  31410. characterMakers.push(() => makeCharacter(
  31411. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31412. {
  31413. front: {
  31414. height: math.unit(6 + 3 / 12, "feet"),
  31415. name: "Front",
  31416. image: {
  31417. source: "./media/characters/nevan/front.svg",
  31418. extra: 704 / 704,
  31419. bottom: 28 / 732
  31420. }
  31421. },
  31422. back: {
  31423. height: math.unit(6 + 3 / 12, "feet"),
  31424. name: "Back",
  31425. image: {
  31426. source: "./media/characters/nevan/back.svg",
  31427. extra: 714 / 714,
  31428. bottom: 21 / 735
  31429. }
  31430. },
  31431. frontFlaccid: {
  31432. height: math.unit(6 + 3 / 12, "feet"),
  31433. name: "Front (Flaccid)",
  31434. image: {
  31435. source: "./media/characters/nevan/front-flaccid.svg",
  31436. extra: 704 / 704,
  31437. bottom: 28 / 732
  31438. }
  31439. },
  31440. frontErect: {
  31441. height: math.unit(6 + 3 / 12, "feet"),
  31442. name: "Front (Erect)",
  31443. image: {
  31444. source: "./media/characters/nevan/front-erect.svg",
  31445. extra: 704 / 704,
  31446. bottom: 28 / 732
  31447. }
  31448. },
  31449. backFlaccid: {
  31450. height: math.unit(6 + 3 / 12, "feet"),
  31451. name: "Back (Flaccid)",
  31452. image: {
  31453. source: "./media/characters/nevan/back-flaccid.svg",
  31454. extra: 714 / 714,
  31455. bottom: 21 / 735
  31456. }
  31457. },
  31458. },
  31459. [
  31460. {
  31461. name: "Normal",
  31462. height: math.unit(6 + 3 / 12, "feet"),
  31463. default: true
  31464. },
  31465. ]
  31466. ))
  31467. characterMakers.push(() => makeCharacter(
  31468. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31469. {
  31470. front: {
  31471. height: math.unit(4, "feet"),
  31472. name: "Front",
  31473. image: {
  31474. source: "./media/characters/arhan/front.svg",
  31475. extra: 3368 / 3133,
  31476. bottom: 0 / 3368
  31477. }
  31478. },
  31479. side: {
  31480. height: math.unit(4, "feet"),
  31481. name: "Side",
  31482. image: {
  31483. source: "./media/characters/arhan/side.svg",
  31484. extra: 3347 / 3105,
  31485. bottom: 0 / 3347
  31486. }
  31487. },
  31488. tongue: {
  31489. height: math.unit(1.42, "feet"),
  31490. name: "Tongue",
  31491. image: {
  31492. source: "./media/characters/arhan/tongue.svg"
  31493. }
  31494. },
  31495. head: {
  31496. height: math.unit(0.85, "feet"),
  31497. name: "Head",
  31498. image: {
  31499. source: "./media/characters/arhan/head.svg"
  31500. }
  31501. },
  31502. },
  31503. [
  31504. {
  31505. name: "Normal",
  31506. height: math.unit(4, "feet"),
  31507. default: true
  31508. },
  31509. ]
  31510. ))
  31511. characterMakers.push(() => makeCharacter(
  31512. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31513. {
  31514. front: {
  31515. height: math.unit(5 + 7.5 / 12, "feet"),
  31516. weight: math.unit(120, "lb"),
  31517. name: "Front",
  31518. image: {
  31519. source: "./media/characters/digi-duncan/front.svg",
  31520. extra: 330 / 326,
  31521. bottom: 16 / 346
  31522. }
  31523. },
  31524. side: {
  31525. height: math.unit(5 + 7.5 / 12, "feet"),
  31526. weight: math.unit(120, "lb"),
  31527. name: "Side",
  31528. image: {
  31529. source: "./media/characters/digi-duncan/side.svg",
  31530. extra: 341 / 337,
  31531. bottom: 1 / 342
  31532. }
  31533. },
  31534. back: {
  31535. height: math.unit(5 + 7.5 / 12, "feet"),
  31536. weight: math.unit(120, "lb"),
  31537. name: "Back",
  31538. image: {
  31539. source: "./media/characters/digi-duncan/back.svg",
  31540. extra: 330 / 326,
  31541. bottom: 12 / 342
  31542. }
  31543. },
  31544. },
  31545. [
  31546. {
  31547. name: "Speck",
  31548. height: math.unit(0.25, "mm")
  31549. },
  31550. {
  31551. name: "Micro",
  31552. height: math.unit(5, "mm")
  31553. },
  31554. {
  31555. name: "Tiny",
  31556. height: math.unit(0.5, "inches"),
  31557. default: true
  31558. },
  31559. {
  31560. name: "Human",
  31561. height: math.unit(5 + 7.5 / 12, "feet")
  31562. },
  31563. {
  31564. name: "Minigiant",
  31565. height: math.unit(8 + 5.25, "feet")
  31566. },
  31567. {
  31568. name: "Giant",
  31569. height: math.unit(2000, "feet")
  31570. },
  31571. {
  31572. name: "Mega",
  31573. height: math.unit(371.1, "miles")
  31574. },
  31575. ]
  31576. ))
  31577. characterMakers.push(() => makeCharacter(
  31578. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31579. {
  31580. front: {
  31581. height: math.unit(2, "meters"),
  31582. weight: math.unit(350, "kg"),
  31583. name: "Front",
  31584. image: {
  31585. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31586. extra: 898 / 838,
  31587. bottom: 9 / 907
  31588. }
  31589. },
  31590. },
  31591. [
  31592. {
  31593. name: "Micro",
  31594. height: math.unit(8, "meters")
  31595. },
  31596. {
  31597. name: "Normal",
  31598. height: math.unit(50, "meters"),
  31599. default: true
  31600. },
  31601. {
  31602. name: "Macro",
  31603. height: math.unit(500, "meters")
  31604. },
  31605. ]
  31606. ))
  31607. characterMakers.push(() => makeCharacter(
  31608. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31609. {
  31610. front: {
  31611. height: math.unit(6 + 6 / 12, "feet"),
  31612. name: "Front",
  31613. image: {
  31614. source: "./media/characters/khardesh/front.svg",
  31615. extra: 1788/1596,
  31616. bottom: 66/1854
  31617. }
  31618. },
  31619. back: {
  31620. height: math.unit(6 + 6 / 12, "feet"),
  31621. name: "Back",
  31622. image: {
  31623. source: "./media/characters/khardesh/back.svg",
  31624. extra: 1781/1584,
  31625. bottom: 68/1849
  31626. }
  31627. },
  31628. },
  31629. [
  31630. {
  31631. name: "Normal",
  31632. height: math.unit(6 + 6 / 12, "feet"),
  31633. default: true
  31634. },
  31635. {
  31636. name: "Normal+",
  31637. height: math.unit(4, "meters")
  31638. },
  31639. {
  31640. name: "Macro",
  31641. height: math.unit(50, "meters")
  31642. },
  31643. {
  31644. name: "Macro+",
  31645. height: math.unit(100, "meters")
  31646. },
  31647. {
  31648. name: "Megamacro",
  31649. height: math.unit(20, "km")
  31650. },
  31651. ]
  31652. ))
  31653. characterMakers.push(() => makeCharacter(
  31654. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31655. {
  31656. front: {
  31657. height: math.unit(6, "feet"),
  31658. weight: math.unit(150, "lb"),
  31659. name: "Front",
  31660. image: {
  31661. source: "./media/characters/kosho/front.svg",
  31662. extra: 1847 / 1847,
  31663. bottom: 86 / 1933
  31664. }
  31665. },
  31666. },
  31667. [
  31668. {
  31669. name: "Second-stage micro",
  31670. height: math.unit(0.5, "inches")
  31671. },
  31672. {
  31673. name: "First-stage micro",
  31674. height: math.unit(6, "inches")
  31675. },
  31676. {
  31677. name: "Normal",
  31678. height: math.unit(6, "feet"),
  31679. default: true
  31680. },
  31681. {
  31682. name: "First-stage macro",
  31683. height: math.unit(72, "feet")
  31684. },
  31685. {
  31686. name: "Second-stage macro",
  31687. height: math.unit(864, "feet")
  31688. },
  31689. ]
  31690. ))
  31691. characterMakers.push(() => makeCharacter(
  31692. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31693. {
  31694. normal: {
  31695. height: math.unit(4 + 6 / 12, "feet"),
  31696. name: "Normal",
  31697. image: {
  31698. source: "./media/characters/hydra/normal.svg",
  31699. extra: 2833 / 2634,
  31700. bottom: 68 / 2901
  31701. }
  31702. },
  31703. smol: {
  31704. height: math.unit(0.705, "inches"),
  31705. name: "Smol",
  31706. image: {
  31707. source: "./media/characters/hydra/smol.svg",
  31708. extra: 2715 / 2540,
  31709. bottom: 0 / 2715
  31710. }
  31711. },
  31712. },
  31713. [
  31714. {
  31715. name: "Normal",
  31716. height: math.unit(4 + 6 / 12, "feet"),
  31717. default: true
  31718. }
  31719. ]
  31720. ))
  31721. characterMakers.push(() => makeCharacter(
  31722. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31723. {
  31724. front: {
  31725. height: math.unit(0.6, "cm"),
  31726. name: "Front",
  31727. image: {
  31728. source: "./media/characters/daz/front.svg",
  31729. extra: 1682 / 1164,
  31730. bottom: 42 / 1724
  31731. }
  31732. },
  31733. },
  31734. [
  31735. {
  31736. name: "Normal",
  31737. height: math.unit(0.6, "cm"),
  31738. default: true
  31739. },
  31740. ]
  31741. ))
  31742. characterMakers.push(() => makeCharacter(
  31743. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31744. {
  31745. front: {
  31746. height: math.unit(6, "feet"),
  31747. weight: math.unit(235, "lb"),
  31748. name: "Front",
  31749. image: {
  31750. source: "./media/characters/theo-pangolin/front.svg",
  31751. extra: 1996 / 1969,
  31752. bottom: 115 / 2111
  31753. }
  31754. },
  31755. back: {
  31756. height: math.unit(6, "feet"),
  31757. weight: math.unit(235, "lb"),
  31758. name: "Back",
  31759. image: {
  31760. source: "./media/characters/theo-pangolin/back.svg",
  31761. extra: 1979 / 1979,
  31762. bottom: 40 / 2019
  31763. }
  31764. },
  31765. feral: {
  31766. height: math.unit(2, "feet"),
  31767. weight: math.unit(30, "lb"),
  31768. name: "Feral",
  31769. image: {
  31770. source: "./media/characters/theo-pangolin/feral.svg",
  31771. extra: 803 / 791,
  31772. bottom: 181 / 984
  31773. }
  31774. },
  31775. footFive: {
  31776. height: math.unit(1.43, "feet"),
  31777. name: "Foot (Five Toes)",
  31778. image: {
  31779. source: "./media/characters/theo-pangolin/foot-five.svg"
  31780. }
  31781. },
  31782. footFour: {
  31783. height: math.unit(1.43, "feet"),
  31784. name: "Foot (Four Toes)",
  31785. image: {
  31786. source: "./media/characters/theo-pangolin/foot-four.svg"
  31787. }
  31788. },
  31789. handFour: {
  31790. height: math.unit(0.81, "feet"),
  31791. name: "Hand (Four Fingers)",
  31792. image: {
  31793. source: "./media/characters/theo-pangolin/hand-four.svg"
  31794. }
  31795. },
  31796. handThree: {
  31797. height: math.unit(0.81, "feet"),
  31798. name: "Hand (Three Fingers)",
  31799. image: {
  31800. source: "./media/characters/theo-pangolin/hand-three.svg"
  31801. }
  31802. },
  31803. headFront: {
  31804. height: math.unit(1.37, "feet"),
  31805. name: "Head (Front)",
  31806. image: {
  31807. source: "./media/characters/theo-pangolin/head-front.svg"
  31808. }
  31809. },
  31810. headSide: {
  31811. height: math.unit(1.43, "feet"),
  31812. name: "Head (Side)",
  31813. image: {
  31814. source: "./media/characters/theo-pangolin/head-side.svg"
  31815. }
  31816. },
  31817. tongue: {
  31818. height: math.unit(2.29, "feet"),
  31819. name: "Tongue",
  31820. image: {
  31821. source: "./media/characters/theo-pangolin/tongue.svg"
  31822. }
  31823. },
  31824. },
  31825. [
  31826. {
  31827. name: "Normal",
  31828. height: math.unit(6, "feet")
  31829. },
  31830. {
  31831. name: "Macro",
  31832. height: math.unit(400, "feet"),
  31833. default: true
  31834. },
  31835. ]
  31836. ))
  31837. characterMakers.push(() => makeCharacter(
  31838. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31839. {
  31840. front: {
  31841. height: math.unit(6, "inches"),
  31842. weight: math.unit(0.036, "kg"),
  31843. name: "Front",
  31844. image: {
  31845. source: "./media/characters/renée/front.svg",
  31846. extra: 900 / 886,
  31847. bottom: 8 / 908
  31848. }
  31849. },
  31850. },
  31851. [
  31852. {
  31853. name: "Nano",
  31854. height: math.unit(1, "nm")
  31855. },
  31856. {
  31857. name: "Micro",
  31858. height: math.unit(1, "mm")
  31859. },
  31860. {
  31861. name: "Normal",
  31862. height: math.unit(6, "inches")
  31863. },
  31864. {
  31865. name: "Macro",
  31866. height: math.unit(2000, "feet"),
  31867. default: true
  31868. },
  31869. {
  31870. name: "Megamacro",
  31871. height: math.unit(2, "km")
  31872. },
  31873. {
  31874. name: "Gigamacro",
  31875. height: math.unit(2000, "km")
  31876. },
  31877. {
  31878. name: "Teramacro",
  31879. height: math.unit(250000, "km")
  31880. },
  31881. ]
  31882. ))
  31883. characterMakers.push(() => makeCharacter(
  31884. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31885. {
  31886. front: {
  31887. height: math.unit(4, "meters"),
  31888. weight: math.unit(150, "kg"),
  31889. name: "Front",
  31890. image: {
  31891. source: "./media/characters/caledvwlch/front.svg",
  31892. extra: 1760 / 1551,
  31893. bottom: 28 / 1788
  31894. }
  31895. },
  31896. side: {
  31897. height: math.unit(4, "meters"),
  31898. weight: math.unit(150, "kg"),
  31899. name: "Side",
  31900. image: {
  31901. source: "./media/characters/caledvwlch/side.svg",
  31902. extra: 1605 / 1536,
  31903. bottom: 31 / 1636
  31904. }
  31905. },
  31906. back: {
  31907. height: math.unit(4, "meters"),
  31908. weight: math.unit(150, "kg"),
  31909. name: "Back",
  31910. image: {
  31911. source: "./media/characters/caledvwlch/back.svg",
  31912. extra: 1635 / 1565,
  31913. bottom: 27 / 1662
  31914. }
  31915. },
  31916. },
  31917. [
  31918. {
  31919. name: "\"Incognito\"",
  31920. height: math.unit(4, "meters")
  31921. },
  31922. {
  31923. name: "Small rampage",
  31924. height: math.unit(600, "meters")
  31925. },
  31926. {
  31927. name: "Mega",
  31928. height: math.unit(30, "km")
  31929. },
  31930. {
  31931. name: "Home-size",
  31932. height: math.unit(50, "km"),
  31933. default: true
  31934. },
  31935. {
  31936. name: "Giga",
  31937. height: math.unit(300, "km")
  31938. },
  31939. {
  31940. name: "Lounging",
  31941. height: math.unit(11000, "km")
  31942. },
  31943. {
  31944. name: "Planet snacking",
  31945. height: math.unit(2000000, "km")
  31946. },
  31947. ]
  31948. ))
  31949. characterMakers.push(() => makeCharacter(
  31950. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31951. {
  31952. front: {
  31953. height: math.unit(6, "feet"),
  31954. weight: math.unit(215, "lb"),
  31955. name: "Front",
  31956. image: {
  31957. source: "./media/characters/sapphire-svell/front.svg",
  31958. extra: 495 / 455,
  31959. bottom: 20 / 515
  31960. }
  31961. },
  31962. back: {
  31963. height: math.unit(6, "feet"),
  31964. weight: math.unit(216, "lb"),
  31965. name: "Back",
  31966. image: {
  31967. source: "./media/characters/sapphire-svell/back.svg",
  31968. extra: 497 / 477,
  31969. bottom: 7 / 504
  31970. }
  31971. },
  31972. maw: {
  31973. height: math.unit(1.57, "feet"),
  31974. name: "Maw",
  31975. image: {
  31976. source: "./media/characters/sapphire-svell/maw.svg"
  31977. }
  31978. },
  31979. foot: {
  31980. height: math.unit(1.07, "feet"),
  31981. name: "Foot",
  31982. image: {
  31983. source: "./media/characters/sapphire-svell/foot.svg"
  31984. }
  31985. },
  31986. toering: {
  31987. height: math.unit(1.7, "inch"),
  31988. name: "Toering",
  31989. image: {
  31990. source: "./media/characters/sapphire-svell/toering.svg"
  31991. }
  31992. },
  31993. },
  31994. [
  31995. {
  31996. name: "Normal",
  31997. height: math.unit(300, "feet"),
  31998. default: true
  31999. },
  32000. {
  32001. name: "Augmented",
  32002. height: math.unit(1250, "feet")
  32003. },
  32004. {
  32005. name: "Unleashed",
  32006. height: math.unit(3000, "feet")
  32007. },
  32008. ]
  32009. ))
  32010. characterMakers.push(() => makeCharacter(
  32011. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32012. {
  32013. side: {
  32014. height: math.unit(2 + 3 / 12, "feet"),
  32015. weight: math.unit(110, "lb"),
  32016. name: "Side",
  32017. image: {
  32018. source: "./media/characters/glitch-flux/side.svg",
  32019. extra: 997 / 805,
  32020. bottom: 20 / 1017
  32021. }
  32022. },
  32023. },
  32024. [
  32025. {
  32026. name: "Normal",
  32027. height: math.unit(2 + 3 / 12, "feet"),
  32028. default: true
  32029. },
  32030. ]
  32031. ))
  32032. characterMakers.push(() => makeCharacter(
  32033. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32034. {
  32035. front: {
  32036. height: math.unit(4, "meters"),
  32037. name: "Front",
  32038. image: {
  32039. source: "./media/characters/mid/front.svg",
  32040. extra: 507 / 476,
  32041. bottom: 17 / 524
  32042. }
  32043. },
  32044. back: {
  32045. height: math.unit(4, "meters"),
  32046. name: "Back",
  32047. image: {
  32048. source: "./media/characters/mid/back.svg",
  32049. extra: 519 / 487,
  32050. bottom: 7 / 526
  32051. }
  32052. },
  32053. stuck: {
  32054. height: math.unit(2.2, "meters"),
  32055. name: "Stuck",
  32056. image: {
  32057. source: "./media/characters/mid/stuck.svg",
  32058. extra: 1951 / 1869,
  32059. bottom: 88 / 2039
  32060. }
  32061. }
  32062. },
  32063. [
  32064. {
  32065. name: "Normal",
  32066. height: math.unit(4, "meters"),
  32067. default: true
  32068. },
  32069. {
  32070. name: "Big",
  32071. height: math.unit(10, "meters")
  32072. },
  32073. {
  32074. name: "Macro",
  32075. height: math.unit(800, "meters")
  32076. },
  32077. {
  32078. name: "Megamacro",
  32079. height: math.unit(100, "km")
  32080. },
  32081. {
  32082. name: "Overgrown",
  32083. height: math.unit(1, "parsec")
  32084. },
  32085. ]
  32086. ))
  32087. characterMakers.push(() => makeCharacter(
  32088. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32089. {
  32090. front: {
  32091. height: math.unit(2.5, "meters"),
  32092. weight: math.unit(225, "kg"),
  32093. name: "Front",
  32094. image: {
  32095. source: "./media/characters/iris/front.svg",
  32096. extra: 3348 / 3251,
  32097. bottom: 205 / 3553
  32098. }
  32099. },
  32100. maw: {
  32101. height: math.unit(0.56, "meter"),
  32102. name: "Maw",
  32103. image: {
  32104. source: "./media/characters/iris/maw.svg"
  32105. }
  32106. },
  32107. },
  32108. [
  32109. {
  32110. name: "Mewter cat",
  32111. height: math.unit(1.2, "meters")
  32112. },
  32113. {
  32114. name: "Normal",
  32115. height: math.unit(2.5, "meters"),
  32116. default: true
  32117. },
  32118. {
  32119. name: "Minimacro",
  32120. height: math.unit(18, "feet")
  32121. },
  32122. {
  32123. name: "Macro",
  32124. height: math.unit(140, "feet")
  32125. },
  32126. {
  32127. name: "Macro+",
  32128. height: math.unit(180, "meters")
  32129. },
  32130. {
  32131. name: "Megamacro",
  32132. height: math.unit(2746, "meters")
  32133. },
  32134. ]
  32135. ))
  32136. characterMakers.push(() => makeCharacter(
  32137. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32138. {
  32139. front: {
  32140. height: math.unit(6, "feet"),
  32141. weight: math.unit(135, "lb"),
  32142. name: "Front",
  32143. image: {
  32144. source: "./media/characters/axel/front.svg",
  32145. extra: 908 / 908,
  32146. bottom: 58 / 966
  32147. }
  32148. },
  32149. side: {
  32150. height: math.unit(6, "feet"),
  32151. weight: math.unit(135, "lb"),
  32152. name: "Side",
  32153. image: {
  32154. source: "./media/characters/axel/side.svg",
  32155. extra: 958 / 958,
  32156. bottom: 11 / 969
  32157. }
  32158. },
  32159. back: {
  32160. height: math.unit(6, "feet"),
  32161. weight: math.unit(135, "lb"),
  32162. name: "Back",
  32163. image: {
  32164. source: "./media/characters/axel/back.svg",
  32165. extra: 887 / 887,
  32166. bottom: 34 / 921
  32167. }
  32168. },
  32169. head: {
  32170. height: math.unit(1.07, "feet"),
  32171. name: "Head",
  32172. image: {
  32173. source: "./media/characters/axel/head.svg"
  32174. }
  32175. },
  32176. beak: {
  32177. height: math.unit(1.4, "feet"),
  32178. name: "Beak",
  32179. image: {
  32180. source: "./media/characters/axel/beak.svg"
  32181. }
  32182. },
  32183. beakSide: {
  32184. height: math.unit(1.4, "feet"),
  32185. name: "Beak Side",
  32186. image: {
  32187. source: "./media/characters/axel/beak-side.svg"
  32188. }
  32189. },
  32190. sheath: {
  32191. height: math.unit(0.5, "feet"),
  32192. name: "Sheath",
  32193. image: {
  32194. source: "./media/characters/axel/sheath.svg"
  32195. }
  32196. },
  32197. dick: {
  32198. height: math.unit(0.98, "feet"),
  32199. name: "Dick",
  32200. image: {
  32201. source: "./media/characters/axel/dick.svg"
  32202. }
  32203. },
  32204. },
  32205. [
  32206. {
  32207. name: "Macro",
  32208. height: math.unit(68, "meters"),
  32209. default: true
  32210. },
  32211. ]
  32212. ))
  32213. characterMakers.push(() => makeCharacter(
  32214. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32215. {
  32216. front: {
  32217. height: math.unit(3.5, "meters"),
  32218. weight: math.unit(1200, "kg"),
  32219. name: "Front",
  32220. image: {
  32221. source: "./media/characters/joanna/front.svg",
  32222. extra: 1596 / 1488,
  32223. bottom: 29 / 1625
  32224. }
  32225. },
  32226. back: {
  32227. height: math.unit(3.5, "meters"),
  32228. weight: math.unit(1200, "kg"),
  32229. name: "Back",
  32230. image: {
  32231. source: "./media/characters/joanna/back.svg",
  32232. extra: 1594 / 1495,
  32233. bottom: 26 / 1620
  32234. }
  32235. },
  32236. frontShorts: {
  32237. height: math.unit(3.5, "meters"),
  32238. weight: math.unit(1200, "kg"),
  32239. name: "Front (Shorts)",
  32240. image: {
  32241. source: "./media/characters/joanna/front-shorts.svg",
  32242. extra: 1596 / 1488,
  32243. bottom: 29 / 1625
  32244. }
  32245. },
  32246. frontBiker: {
  32247. height: math.unit(3.5, "meters"),
  32248. weight: math.unit(1200, "kg"),
  32249. name: "Front (Biker)",
  32250. image: {
  32251. source: "./media/characters/joanna/front-biker.svg",
  32252. extra: 1596 / 1488,
  32253. bottom: 29 / 1625
  32254. }
  32255. },
  32256. backBiker: {
  32257. height: math.unit(3.5, "meters"),
  32258. weight: math.unit(1200, "kg"),
  32259. name: "Back (Biker)",
  32260. image: {
  32261. source: "./media/characters/joanna/back-biker.svg",
  32262. extra: 1594 / 1495,
  32263. bottom: 88 / 1682
  32264. }
  32265. },
  32266. bikeLeft: {
  32267. height: math.unit(2.4, "meters"),
  32268. weight: math.unit(1600, "kg"),
  32269. name: "Bike (Left)",
  32270. image: {
  32271. source: "./media/characters/joanna/bike-left.svg",
  32272. extra: 720 / 720,
  32273. bottom: 8 / 728
  32274. }
  32275. },
  32276. bikeRight: {
  32277. height: math.unit(2.4, "meters"),
  32278. weight: math.unit(1600, "kg"),
  32279. name: "Bike (Right)",
  32280. image: {
  32281. source: "./media/characters/joanna/bike-right.svg",
  32282. extra: 720 / 720,
  32283. bottom: 8 / 728
  32284. }
  32285. },
  32286. },
  32287. [
  32288. {
  32289. name: "Incognito",
  32290. height: math.unit(3.5, "meters")
  32291. },
  32292. {
  32293. name: "Casual Big",
  32294. height: math.unit(200, "meters")
  32295. },
  32296. {
  32297. name: "Macro",
  32298. height: math.unit(600, "meters")
  32299. },
  32300. {
  32301. name: "Original",
  32302. height: math.unit(20, "km"),
  32303. default: true
  32304. },
  32305. {
  32306. name: "Giga",
  32307. height: math.unit(400, "km")
  32308. },
  32309. {
  32310. name: "Lounging",
  32311. height: math.unit(1500, "km")
  32312. },
  32313. {
  32314. name: "Planetary",
  32315. height: math.unit(200000, "km")
  32316. },
  32317. ]
  32318. ))
  32319. characterMakers.push(() => makeCharacter(
  32320. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32321. {
  32322. front: {
  32323. height: math.unit(6, "feet"),
  32324. weight: math.unit(150, "lb"),
  32325. name: "Front",
  32326. image: {
  32327. source: "./media/characters/hugo-sigil/front.svg",
  32328. extra: 522 / 500,
  32329. bottom: 2 / 524
  32330. }
  32331. },
  32332. back: {
  32333. height: math.unit(6, "feet"),
  32334. weight: math.unit(150, "lb"),
  32335. name: "Back",
  32336. image: {
  32337. source: "./media/characters/hugo-sigil/back.svg",
  32338. extra: 519 / 495,
  32339. bottom: 5 / 524
  32340. }
  32341. },
  32342. maw: {
  32343. height: math.unit(1.4, "feet"),
  32344. weight: math.unit(150, "lb"),
  32345. name: "Maw",
  32346. image: {
  32347. source: "./media/characters/hugo-sigil/maw.svg"
  32348. }
  32349. },
  32350. feet: {
  32351. height: math.unit(1.56, "feet"),
  32352. weight: math.unit(150, "lb"),
  32353. name: "Feet",
  32354. image: {
  32355. source: "./media/characters/hugo-sigil/feet.svg",
  32356. extra: 177 / 177,
  32357. bottom: 12 / 189
  32358. }
  32359. },
  32360. },
  32361. [
  32362. {
  32363. name: "Normal",
  32364. height: math.unit(6, "feet")
  32365. },
  32366. {
  32367. name: "Macro",
  32368. height: math.unit(200, "feet"),
  32369. default: true
  32370. },
  32371. ]
  32372. ))
  32373. characterMakers.push(() => makeCharacter(
  32374. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32375. {
  32376. front: {
  32377. height: math.unit(6, "feet"),
  32378. weight: math.unit(150, "lb"),
  32379. name: "Front",
  32380. image: {
  32381. source: "./media/characters/peri/front.svg",
  32382. extra: 2354 / 2233,
  32383. bottom: 49 / 2403
  32384. }
  32385. },
  32386. },
  32387. [
  32388. {
  32389. name: "Really Small",
  32390. height: math.unit(1, "nm")
  32391. },
  32392. {
  32393. name: "Micro",
  32394. height: math.unit(4, "inches")
  32395. },
  32396. {
  32397. name: "Normal",
  32398. height: math.unit(7, "inches"),
  32399. default: true
  32400. },
  32401. {
  32402. name: "Macro",
  32403. height: math.unit(400, "feet")
  32404. },
  32405. {
  32406. name: "Megamacro",
  32407. height: math.unit(100, "miles")
  32408. },
  32409. ]
  32410. ))
  32411. characterMakers.push(() => makeCharacter(
  32412. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32413. {
  32414. frontSlim: {
  32415. height: math.unit(7, "feet"),
  32416. name: "Front (Slim)",
  32417. image: {
  32418. source: "./media/characters/issilora/front-slim.svg",
  32419. extra: 529 / 449,
  32420. bottom: 53 / 582
  32421. }
  32422. },
  32423. sideSlim: {
  32424. height: math.unit(7, "feet"),
  32425. name: "Side (Slim)",
  32426. image: {
  32427. source: "./media/characters/issilora/side-slim.svg",
  32428. extra: 570 / 480,
  32429. bottom: 30 / 600
  32430. }
  32431. },
  32432. backSlim: {
  32433. height: math.unit(7, "feet"),
  32434. name: "Back (Slim)",
  32435. image: {
  32436. source: "./media/characters/issilora/back-slim.svg",
  32437. extra: 537 / 455,
  32438. bottom: 46 / 583
  32439. }
  32440. },
  32441. frontBuff: {
  32442. height: math.unit(7, "feet"),
  32443. name: "Front (Buff)",
  32444. image: {
  32445. source: "./media/characters/issilora/front-buff.svg",
  32446. extra: 2310 / 2035,
  32447. bottom: 335 / 2645
  32448. }
  32449. },
  32450. head: {
  32451. height: math.unit(1.94, "feet"),
  32452. name: "Head",
  32453. image: {
  32454. source: "./media/characters/issilora/head.svg"
  32455. }
  32456. },
  32457. },
  32458. [
  32459. {
  32460. name: "Minimum",
  32461. height: math.unit(7, "feet")
  32462. },
  32463. {
  32464. name: "Comfortable",
  32465. height: math.unit(17, "feet")
  32466. },
  32467. {
  32468. name: "Fun Size",
  32469. height: math.unit(47, "feet")
  32470. },
  32471. {
  32472. name: "Natural Macro",
  32473. height: math.unit(137, "feet"),
  32474. default: true
  32475. },
  32476. {
  32477. name: "Maximum Kaiju",
  32478. height: math.unit(397, "feet")
  32479. },
  32480. ]
  32481. ))
  32482. characterMakers.push(() => makeCharacter(
  32483. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32484. {
  32485. front: {
  32486. height: math.unit(50 + 9/12, "feet"),
  32487. weight: math.unit(32.8, "tons"),
  32488. name: "Front",
  32489. image: {
  32490. source: "./media/characters/irb'iiritaahn/front.svg",
  32491. extra: 1878/1826,
  32492. bottom: 326/2204
  32493. }
  32494. },
  32495. back: {
  32496. height: math.unit(50 + 9/12, "feet"),
  32497. weight: math.unit(32.8, "tons"),
  32498. name: "Back",
  32499. image: {
  32500. source: "./media/characters/irb'iiritaahn/back.svg",
  32501. extra: 2052/2018,
  32502. bottom: 152/2204
  32503. }
  32504. },
  32505. head: {
  32506. height: math.unit(12.86, "feet"),
  32507. name: "Head",
  32508. image: {
  32509. source: "./media/characters/irb'iiritaahn/head.svg"
  32510. }
  32511. },
  32512. maw: {
  32513. height: math.unit(9.66, "feet"),
  32514. name: "Maw",
  32515. image: {
  32516. source: "./media/characters/irb'iiritaahn/maw.svg"
  32517. }
  32518. },
  32519. frontDick: {
  32520. height: math.unit(8.78461, "feet"),
  32521. name: "Front Dick",
  32522. image: {
  32523. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32524. }
  32525. },
  32526. rearDick: {
  32527. height: math.unit(8.78461, "feet"),
  32528. name: "Rear Dick",
  32529. image: {
  32530. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32531. }
  32532. },
  32533. rearDickUnfolded: {
  32534. height: math.unit(8.78, "feet"),
  32535. name: "Rear Dick (Unfolded)",
  32536. image: {
  32537. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32538. }
  32539. },
  32540. wings: {
  32541. height: math.unit(43, "feet"),
  32542. name: "Wings",
  32543. image: {
  32544. source: "./media/characters/irb'iiritaahn/wings.svg"
  32545. }
  32546. },
  32547. },
  32548. [
  32549. {
  32550. name: "Macro",
  32551. height: math.unit(50 + 9/12, "feet"),
  32552. default: true
  32553. },
  32554. ]
  32555. ))
  32556. characterMakers.push(() => makeCharacter(
  32557. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32558. {
  32559. front: {
  32560. height: math.unit(205, "cm"),
  32561. weight: math.unit(102, "kg"),
  32562. name: "Front",
  32563. image: {
  32564. source: "./media/characters/irbisgreif/front.svg",
  32565. extra: 785/706,
  32566. bottom: 13/798
  32567. }
  32568. },
  32569. back: {
  32570. height: math.unit(205, "cm"),
  32571. weight: math.unit(102, "kg"),
  32572. name: "Back",
  32573. image: {
  32574. source: "./media/characters/irbisgreif/back.svg",
  32575. extra: 713/701,
  32576. bottom: 26/739
  32577. }
  32578. },
  32579. frontDressed: {
  32580. height: math.unit(216, "cm"),
  32581. weight: math.unit(102, "kg"),
  32582. name: "Front-dressed",
  32583. image: {
  32584. source: "./media/characters/irbisgreif/front-dressed.svg",
  32585. extra: 902/776,
  32586. bottom: 14/916
  32587. }
  32588. },
  32589. sideDressed: {
  32590. height: math.unit(195, "cm"),
  32591. weight: math.unit(102, "kg"),
  32592. name: "Side-dressed",
  32593. image: {
  32594. source: "./media/characters/irbisgreif/side-dressed.svg",
  32595. extra: 788/688,
  32596. bottom: 21/809
  32597. }
  32598. },
  32599. backDressed: {
  32600. height: math.unit(216, "cm"),
  32601. weight: math.unit(102, "kg"),
  32602. name: "Back-dressed",
  32603. image: {
  32604. source: "./media/characters/irbisgreif/back-dressed.svg",
  32605. extra: 901/783,
  32606. bottom: 10/911
  32607. }
  32608. },
  32609. dick: {
  32610. height: math.unit(0.49, "feet"),
  32611. name: "Dick",
  32612. image: {
  32613. source: "./media/characters/irbisgreif/dick.svg"
  32614. }
  32615. },
  32616. wingTop: {
  32617. height: math.unit(1.93 , "feet"),
  32618. name: "Wing-top",
  32619. image: {
  32620. source: "./media/characters/irbisgreif/wing-top.svg"
  32621. }
  32622. },
  32623. wingBottom: {
  32624. height: math.unit(1.93 , "feet"),
  32625. name: "Wing-bottom",
  32626. image: {
  32627. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32628. }
  32629. },
  32630. },
  32631. [
  32632. {
  32633. name: "Normal",
  32634. height: math.unit(216, "cm"),
  32635. default: true
  32636. },
  32637. ]
  32638. ))
  32639. characterMakers.push(() => makeCharacter(
  32640. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32641. {
  32642. front: {
  32643. height: math.unit(6, "feet"),
  32644. weight: math.unit(150, "lb"),
  32645. name: "Front",
  32646. image: {
  32647. source: "./media/characters/pride/front.svg",
  32648. extra: 1299/1230,
  32649. bottom: 18/1317
  32650. }
  32651. },
  32652. },
  32653. [
  32654. {
  32655. name: "Normal",
  32656. height: math.unit(7, "feet")
  32657. },
  32658. {
  32659. name: "Mini-macro",
  32660. height: math.unit(11, "feet")
  32661. },
  32662. {
  32663. name: "Macro",
  32664. height: math.unit(15, "meters"),
  32665. default: true
  32666. },
  32667. {
  32668. name: "Macro+",
  32669. height: math.unit(40, "meters")
  32670. },
  32671. ]
  32672. ))
  32673. characterMakers.push(() => makeCharacter(
  32674. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32675. {
  32676. front: {
  32677. height: math.unit(4 + 2 / 12, "feet"),
  32678. weight: math.unit(95, "lb"),
  32679. name: "Front",
  32680. image: {
  32681. source: "./media/characters/vaelophis-nyx/front.svg",
  32682. extra: 2532/2330,
  32683. bottom: 0/2532
  32684. }
  32685. },
  32686. back: {
  32687. height: math.unit(4 + 2 / 12, "feet"),
  32688. weight: math.unit(95, "lb"),
  32689. name: "Back",
  32690. image: {
  32691. source: "./media/characters/vaelophis-nyx/back.svg",
  32692. extra: 2484/2361,
  32693. bottom: 0/2484
  32694. }
  32695. },
  32696. feralSide: {
  32697. height: math.unit(2 + 1/12, "feet"),
  32698. weight: math.unit(20, "lb"),
  32699. name: "Feral (Side)",
  32700. image: {
  32701. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32702. extra: 1721/1581,
  32703. bottom: 70/1791
  32704. }
  32705. },
  32706. feralLazing: {
  32707. height: math.unit(1.08, "feet"),
  32708. weight: math.unit(20, "lb"),
  32709. name: "Feral (Lazing)",
  32710. image: {
  32711. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32712. extra: 822/822,
  32713. bottom: 248/1070
  32714. }
  32715. },
  32716. ear: {
  32717. height: math.unit(0.416, "feet"),
  32718. name: "Ear",
  32719. image: {
  32720. source: "./media/characters/vaelophis-nyx/ear.svg"
  32721. }
  32722. },
  32723. eye: {
  32724. height: math.unit(0.0748, "feet"),
  32725. name: "Eye",
  32726. image: {
  32727. source: "./media/characters/vaelophis-nyx/eye.svg"
  32728. }
  32729. },
  32730. mouth: {
  32731. height: math.unit(0.378, "feet"),
  32732. name: "Mouth",
  32733. image: {
  32734. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32735. }
  32736. },
  32737. spade: {
  32738. height: math.unit(0.55, "feet"),
  32739. name: "Spade",
  32740. image: {
  32741. source: "./media/characters/vaelophis-nyx/spade.svg"
  32742. }
  32743. },
  32744. },
  32745. [
  32746. {
  32747. name: "Normal",
  32748. height: math.unit(4 + 2/12, "feet"),
  32749. default: true
  32750. },
  32751. ]
  32752. ))
  32753. characterMakers.push(() => makeCharacter(
  32754. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32755. {
  32756. front: {
  32757. height: math.unit(7, "feet"),
  32758. weight: math.unit(231, "lb"),
  32759. name: "Front",
  32760. image: {
  32761. source: "./media/characters/flux/front.svg",
  32762. extra: 919/871,
  32763. bottom: 0/919
  32764. }
  32765. },
  32766. back: {
  32767. height: math.unit(7, "feet"),
  32768. weight: math.unit(231, "lb"),
  32769. name: "Back",
  32770. image: {
  32771. source: "./media/characters/flux/back.svg",
  32772. extra: 1040/992,
  32773. bottom: 0/1040
  32774. }
  32775. },
  32776. frontDressed: {
  32777. height: math.unit(7, "feet"),
  32778. weight: math.unit(231, "lb"),
  32779. name: "Front (Dressed)",
  32780. image: {
  32781. source: "./media/characters/flux/front-dressed.svg",
  32782. extra: 919/871,
  32783. bottom: 0/919
  32784. }
  32785. },
  32786. feralSide: {
  32787. height: math.unit(5, "feet"),
  32788. weight: math.unit(150, "lb"),
  32789. name: "Feral (Side)",
  32790. image: {
  32791. source: "./media/characters/flux/feral-side.svg",
  32792. extra: 598/528,
  32793. bottom: 28/626
  32794. }
  32795. },
  32796. head: {
  32797. height: math.unit(1.585, "feet"),
  32798. name: "Head",
  32799. image: {
  32800. source: "./media/characters/flux/head.svg"
  32801. }
  32802. },
  32803. headSide: {
  32804. height: math.unit(1.74, "feet"),
  32805. name: "Head (Side)",
  32806. image: {
  32807. source: "./media/characters/flux/head-side.svg"
  32808. }
  32809. },
  32810. headSideFire: {
  32811. height: math.unit(1.76, "feet"),
  32812. name: "Head (Side, Fire)",
  32813. image: {
  32814. source: "./media/characters/flux/head-side-fire.svg"
  32815. }
  32816. },
  32817. },
  32818. [
  32819. {
  32820. name: "Normal",
  32821. height: math.unit(7, "feet"),
  32822. default: true
  32823. },
  32824. ]
  32825. ))
  32826. characterMakers.push(() => makeCharacter(
  32827. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32828. {
  32829. front: {
  32830. height: math.unit(9, "feet"),
  32831. weight: math.unit(1012, "lb"),
  32832. name: "Front",
  32833. image: {
  32834. source: "./media/characters/ulfra-lupae/front.svg",
  32835. extra: 1083/1011,
  32836. bottom: 67/1150
  32837. }
  32838. },
  32839. },
  32840. [
  32841. {
  32842. name: "Micro",
  32843. height: math.unit(6, "inches")
  32844. },
  32845. {
  32846. name: "Socializing",
  32847. height: math.unit(6 + 5/12, "feet")
  32848. },
  32849. {
  32850. name: "Normal",
  32851. height: math.unit(9, "feet"),
  32852. default: true
  32853. },
  32854. {
  32855. name: "Macro",
  32856. height: math.unit(150, "feet")
  32857. },
  32858. ]
  32859. ))
  32860. characterMakers.push(() => makeCharacter(
  32861. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32862. {
  32863. front: {
  32864. height: math.unit(5 + 2/12, "feet"),
  32865. weight: math.unit(120, "lb"),
  32866. name: "Front",
  32867. image: {
  32868. source: "./media/characters/timber/front.svg",
  32869. extra: 2814/2705,
  32870. bottom: 181/2995
  32871. }
  32872. },
  32873. },
  32874. [
  32875. {
  32876. name: "Normal",
  32877. height: math.unit(5 + 2/12, "feet"),
  32878. default: true
  32879. },
  32880. ]
  32881. ))
  32882. characterMakers.push(() => makeCharacter(
  32883. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32884. {
  32885. front: {
  32886. height: math.unit(9, "feet"),
  32887. name: "Front",
  32888. image: {
  32889. source: "./media/characters/nicki/front.svg",
  32890. extra: 1240/990,
  32891. bottom: 45/1285
  32892. },
  32893. form: "anthro",
  32894. default: true
  32895. },
  32896. side: {
  32897. height: math.unit(9, "feet"),
  32898. name: "Side",
  32899. image: {
  32900. source: "./media/characters/nicki/side.svg",
  32901. extra: 1047/973,
  32902. bottom: 61/1108
  32903. },
  32904. form: "anthro"
  32905. },
  32906. back: {
  32907. height: math.unit(9, "feet"),
  32908. name: "Back",
  32909. image: {
  32910. source: "./media/characters/nicki/back.svg",
  32911. extra: 1006/965,
  32912. bottom: 39/1045
  32913. },
  32914. form: "anthro"
  32915. },
  32916. taur: {
  32917. height: math.unit(15, "feet"),
  32918. name: "Taur",
  32919. image: {
  32920. source: "./media/characters/nicki/taur.svg",
  32921. extra: 1592/1347,
  32922. bottom: 0/1592
  32923. },
  32924. form: "taur",
  32925. default: true
  32926. },
  32927. },
  32928. [
  32929. {
  32930. name: "Normal",
  32931. height: math.unit(9, "feet"),
  32932. form: "anthro",
  32933. default: true
  32934. },
  32935. {
  32936. name: "Normal",
  32937. height: math.unit(15, "feet"),
  32938. form: "taur",
  32939. default: true
  32940. }
  32941. ],
  32942. {
  32943. "anthro": {
  32944. name: "Anthro",
  32945. default: true
  32946. },
  32947. "taur": {
  32948. name: "Taur"
  32949. }
  32950. }
  32951. ))
  32952. characterMakers.push(() => makeCharacter(
  32953. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32954. {
  32955. front: {
  32956. height: math.unit(7 + 10/12, "feet"),
  32957. weight: math.unit(3.5, "tons"),
  32958. name: "Front",
  32959. image: {
  32960. source: "./media/characters/lee/front.svg",
  32961. extra: 1773/1615,
  32962. bottom: 86/1859
  32963. }
  32964. },
  32965. hand: {
  32966. height: math.unit(1.78, "feet"),
  32967. name: "Hand",
  32968. image: {
  32969. source: "./media/characters/lee/hand.svg"
  32970. }
  32971. },
  32972. maw: {
  32973. height: math.unit(1.18, "feet"),
  32974. name: "Maw",
  32975. image: {
  32976. source: "./media/characters/lee/maw.svg"
  32977. }
  32978. },
  32979. },
  32980. [
  32981. {
  32982. name: "Normal",
  32983. height: math.unit(7 + 10/12, "feet"),
  32984. default: true
  32985. },
  32986. ]
  32987. ))
  32988. characterMakers.push(() => makeCharacter(
  32989. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32990. {
  32991. front: {
  32992. height: math.unit(9, "feet"),
  32993. name: "Front",
  32994. image: {
  32995. source: "./media/characters/guti/front.svg",
  32996. extra: 4551/4355,
  32997. bottom: 123/4674
  32998. }
  32999. },
  33000. tongue: {
  33001. height: math.unit(1, "feet"),
  33002. name: "Tongue",
  33003. image: {
  33004. source: "./media/characters/guti/tongue.svg"
  33005. }
  33006. },
  33007. paw: {
  33008. height: math.unit(1.18, "feet"),
  33009. name: "Paw",
  33010. image: {
  33011. source: "./media/characters/guti/paw.svg"
  33012. }
  33013. },
  33014. },
  33015. [
  33016. {
  33017. name: "Normal",
  33018. height: math.unit(9, "feet"),
  33019. default: true
  33020. },
  33021. ]
  33022. ))
  33023. characterMakers.push(() => makeCharacter(
  33024. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33025. {
  33026. side: {
  33027. height: math.unit(5, "meters"),
  33028. name: "Side",
  33029. image: {
  33030. source: "./media/characters/vesper/side.svg",
  33031. extra: 1605/1518,
  33032. bottom: 0/1605
  33033. }
  33034. },
  33035. },
  33036. [
  33037. {
  33038. name: "Small",
  33039. height: math.unit(5, "meters")
  33040. },
  33041. {
  33042. name: "Sage",
  33043. height: math.unit(100, "meters"),
  33044. default: true
  33045. },
  33046. {
  33047. name: "Fun Size",
  33048. height: math.unit(600, "meters")
  33049. },
  33050. {
  33051. name: "Goddess",
  33052. height: math.unit(20000, "km")
  33053. },
  33054. {
  33055. name: "Maximum",
  33056. height: math.unit(5, "galaxies")
  33057. },
  33058. ]
  33059. ))
  33060. characterMakers.push(() => makeCharacter(
  33061. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33062. {
  33063. front: {
  33064. height: math.unit(6 + 3/12, "feet"),
  33065. weight: math.unit(190, "lb"),
  33066. name: "Front",
  33067. image: {
  33068. source: "./media/characters/gawain/front.svg",
  33069. extra: 2222/2139,
  33070. bottom: 90/2312
  33071. }
  33072. },
  33073. back: {
  33074. height: math.unit(6 + 3/12, "feet"),
  33075. weight: math.unit(190, "lb"),
  33076. name: "Back",
  33077. image: {
  33078. source: "./media/characters/gawain/back.svg",
  33079. extra: 2199/2111,
  33080. bottom: 73/2272
  33081. }
  33082. },
  33083. },
  33084. [
  33085. {
  33086. name: "Normal",
  33087. height: math.unit(6 + 3/12, "feet"),
  33088. default: true
  33089. },
  33090. ]
  33091. ))
  33092. characterMakers.push(() => makeCharacter(
  33093. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33094. {
  33095. side: {
  33096. height: math.unit(3.5, "meters"),
  33097. weight: math.unit(16000, "lb"),
  33098. name: "Side",
  33099. image: {
  33100. source: "./media/characters/dascalti/side.svg",
  33101. extra: 392/273,
  33102. bottom: 47/439
  33103. }
  33104. },
  33105. breath: {
  33106. height: math.unit(7.4, "feet"),
  33107. name: "Breath",
  33108. image: {
  33109. source: "./media/characters/dascalti/breath.svg"
  33110. }
  33111. },
  33112. fed: {
  33113. height: math.unit(3.6, "meters"),
  33114. weight: math.unit(16000, "lb"),
  33115. name: "Fed",
  33116. image: {
  33117. source: "./media/characters/dascalti/fed.svg",
  33118. extra: 1419/820,
  33119. bottom: 95/1514
  33120. }
  33121. },
  33122. },
  33123. [
  33124. {
  33125. name: "Normal",
  33126. height: math.unit(3.5, "meters"),
  33127. default: true
  33128. },
  33129. ]
  33130. ))
  33131. characterMakers.push(() => makeCharacter(
  33132. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33133. {
  33134. front: {
  33135. height: math.unit(3 + 5/12, "feet"),
  33136. name: "Front",
  33137. image: {
  33138. source: "./media/characters/mauve/front.svg",
  33139. extra: 1126/1033,
  33140. bottom: 65/1191
  33141. }
  33142. },
  33143. side: {
  33144. height: math.unit(3 + 5/12, "feet"),
  33145. name: "Side",
  33146. image: {
  33147. source: "./media/characters/mauve/side.svg",
  33148. extra: 1089/1001,
  33149. bottom: 29/1118
  33150. }
  33151. },
  33152. back: {
  33153. height: math.unit(3 + 5/12, "feet"),
  33154. name: "Back",
  33155. image: {
  33156. source: "./media/characters/mauve/back.svg",
  33157. extra: 1173/1053,
  33158. bottom: 109/1282
  33159. }
  33160. },
  33161. },
  33162. [
  33163. {
  33164. name: "Normal",
  33165. height: math.unit(3 + 5/12, "feet"),
  33166. default: true
  33167. },
  33168. ]
  33169. ))
  33170. characterMakers.push(() => makeCharacter(
  33171. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33172. {
  33173. front: {
  33174. height: math.unit(6 + 3/12, "feet"),
  33175. weight: math.unit(430, "lb"),
  33176. name: "Front",
  33177. image: {
  33178. source: "./media/characters/carlos/front.svg",
  33179. extra: 1964/1913,
  33180. bottom: 70/2034
  33181. }
  33182. },
  33183. },
  33184. [
  33185. {
  33186. name: "Normal",
  33187. height: math.unit(6 + 3/12, "feet"),
  33188. default: true
  33189. },
  33190. ]
  33191. ))
  33192. characterMakers.push(() => makeCharacter(
  33193. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33194. {
  33195. back: {
  33196. height: math.unit(5 + 10/12, "feet"),
  33197. weight: math.unit(200, "lb"),
  33198. name: "Back",
  33199. image: {
  33200. source: "./media/characters/jax/back.svg",
  33201. extra: 764/739,
  33202. bottom: 25/789
  33203. }
  33204. },
  33205. },
  33206. [
  33207. {
  33208. name: "Normal",
  33209. height: math.unit(5 + 10/12, "feet"),
  33210. default: true
  33211. },
  33212. ]
  33213. ))
  33214. characterMakers.push(() => makeCharacter(
  33215. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33216. {
  33217. front: {
  33218. height: math.unit(8, "feet"),
  33219. weight: math.unit(250, "lb"),
  33220. name: "Front",
  33221. image: {
  33222. source: "./media/characters/eikthynir/front.svg",
  33223. extra: 1332/1166,
  33224. bottom: 82/1414
  33225. }
  33226. },
  33227. back: {
  33228. height: math.unit(8, "feet"),
  33229. weight: math.unit(250, "lb"),
  33230. name: "Back",
  33231. image: {
  33232. source: "./media/characters/eikthynir/back.svg",
  33233. extra: 1342/1190,
  33234. bottom: 19/1361
  33235. }
  33236. },
  33237. dick: {
  33238. height: math.unit(2.35, "feet"),
  33239. name: "Dick",
  33240. image: {
  33241. source: "./media/characters/eikthynir/dick.svg"
  33242. }
  33243. },
  33244. },
  33245. [
  33246. {
  33247. name: "Normal",
  33248. height: math.unit(8, "feet"),
  33249. default: true
  33250. },
  33251. ]
  33252. ))
  33253. characterMakers.push(() => makeCharacter(
  33254. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33255. {
  33256. front: {
  33257. height: math.unit(99, "meters"),
  33258. weight: math.unit(13000, "tons"),
  33259. name: "Front",
  33260. image: {
  33261. source: "./media/characters/zlmos/front.svg",
  33262. extra: 2202/1992,
  33263. bottom: 315/2517
  33264. }
  33265. },
  33266. },
  33267. [
  33268. {
  33269. name: "Macro",
  33270. height: math.unit(99, "meters"),
  33271. default: true
  33272. },
  33273. ]
  33274. ))
  33275. characterMakers.push(() => makeCharacter(
  33276. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33277. {
  33278. front: {
  33279. height: math.unit(6 + 5/12, "feet"),
  33280. name: "Front",
  33281. image: {
  33282. source: "./media/characters/purri/front.svg",
  33283. extra: 1698/1610,
  33284. bottom: 32/1730
  33285. }
  33286. },
  33287. frontAlt: {
  33288. height: math.unit(6 + 5/12, "feet"),
  33289. name: "Front (Alt)",
  33290. image: {
  33291. source: "./media/characters/purri/front-alt.svg",
  33292. extra: 450/420,
  33293. bottom: 26/476
  33294. }
  33295. },
  33296. boots: {
  33297. height: math.unit(5.5, "feet"),
  33298. name: "Boots",
  33299. image: {
  33300. source: "./media/characters/purri/boots.svg",
  33301. extra: 905/853,
  33302. bottom: 18/923
  33303. }
  33304. },
  33305. lying: {
  33306. height: math.unit(2, "feet"),
  33307. name: "Lying",
  33308. image: {
  33309. source: "./media/characters/purri/lying.svg",
  33310. extra: 940/843,
  33311. bottom: 146/1086
  33312. }
  33313. },
  33314. devious: {
  33315. height: math.unit(1.77, "feet"),
  33316. name: "Devious",
  33317. image: {
  33318. source: "./media/characters/purri/devious.svg",
  33319. extra: 1440/1155,
  33320. bottom: 147/1587
  33321. }
  33322. },
  33323. bean: {
  33324. height: math.unit(1.94, "feet"),
  33325. name: "Bean",
  33326. image: {
  33327. source: "./media/characters/purri/bean.svg"
  33328. }
  33329. },
  33330. },
  33331. [
  33332. {
  33333. name: "Micro",
  33334. height: math.unit(1, "mm")
  33335. },
  33336. {
  33337. name: "Normal",
  33338. height: math.unit(6 + 5/12, "feet"),
  33339. default: true
  33340. },
  33341. {
  33342. name: "Macro :3c",
  33343. height: math.unit(2, "miles")
  33344. },
  33345. ]
  33346. ))
  33347. characterMakers.push(() => makeCharacter(
  33348. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33349. {
  33350. front: {
  33351. height: math.unit(6 + 2/12, "feet"),
  33352. weight: math.unit(250, "lb"),
  33353. name: "Front",
  33354. image: {
  33355. source: "./media/characters/moonlight/front.svg",
  33356. extra: 1044/908,
  33357. bottom: 56/1100
  33358. }
  33359. },
  33360. feral: {
  33361. height: math.unit(3 + 1/12, "feet"),
  33362. weight: math.unit(50, "kg"),
  33363. name: "Feral",
  33364. image: {
  33365. source: "./media/characters/moonlight/feral.svg",
  33366. extra: 3705/2791,
  33367. bottom: 145/3850
  33368. }
  33369. },
  33370. paw: {
  33371. height: math.unit(1, "feet"),
  33372. name: "Paw",
  33373. image: {
  33374. source: "./media/characters/moonlight/paw.svg"
  33375. }
  33376. },
  33377. paws: {
  33378. height: math.unit(0.98, "feet"),
  33379. name: "Paws",
  33380. image: {
  33381. source: "./media/characters/moonlight/paws.svg",
  33382. extra: 939/939,
  33383. bottom: 50/989
  33384. }
  33385. },
  33386. mouth: {
  33387. height: math.unit(0.48, "feet"),
  33388. name: "Mouth",
  33389. image: {
  33390. source: "./media/characters/moonlight/mouth.svg"
  33391. }
  33392. },
  33393. dick: {
  33394. height: math.unit(1.46, "feet"),
  33395. name: "Dick",
  33396. image: {
  33397. source: "./media/characters/moonlight/dick.svg"
  33398. }
  33399. },
  33400. },
  33401. [
  33402. {
  33403. name: "Normal",
  33404. height: math.unit(6 + 2/12, "feet"),
  33405. default: true
  33406. },
  33407. {
  33408. name: "Macro",
  33409. height: math.unit(300, "feet")
  33410. },
  33411. {
  33412. name: "Macro+",
  33413. height: math.unit(1, "mile")
  33414. },
  33415. {
  33416. name: "Mt. Moon",
  33417. height: math.unit(5, "miles")
  33418. },
  33419. {
  33420. name: "Megamacro",
  33421. height: math.unit(15, "miles")
  33422. },
  33423. ]
  33424. ))
  33425. characterMakers.push(() => makeCharacter(
  33426. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33427. {
  33428. back: {
  33429. height: math.unit(6, "feet"),
  33430. weight: math.unit(150, "lb"),
  33431. name: "Back",
  33432. image: {
  33433. source: "./media/characters/sylen/back.svg",
  33434. extra: 1335/1273,
  33435. bottom: 107/1442
  33436. }
  33437. },
  33438. },
  33439. [
  33440. {
  33441. name: "Normal",
  33442. height: math.unit(5 + 5/12, "feet")
  33443. },
  33444. {
  33445. name: "Megamacro",
  33446. height: math.unit(3, "miles"),
  33447. default: true
  33448. },
  33449. ]
  33450. ))
  33451. characterMakers.push(() => makeCharacter(
  33452. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33453. {
  33454. front: {
  33455. height: math.unit(6, "feet"),
  33456. weight: math.unit(190, "lb"),
  33457. name: "Front",
  33458. image: {
  33459. source: "./media/characters/huttser/front.svg",
  33460. extra: 1152/1058,
  33461. bottom: 23/1175
  33462. }
  33463. },
  33464. side: {
  33465. height: math.unit(6, "feet"),
  33466. weight: math.unit(190, "lb"),
  33467. name: "Side",
  33468. image: {
  33469. source: "./media/characters/huttser/side.svg",
  33470. extra: 1174/1065,
  33471. bottom: 18/1192
  33472. }
  33473. },
  33474. back: {
  33475. height: math.unit(6, "feet"),
  33476. weight: math.unit(190, "lb"),
  33477. name: "Back",
  33478. image: {
  33479. source: "./media/characters/huttser/back.svg",
  33480. extra: 1158/1056,
  33481. bottom: 12/1170
  33482. }
  33483. },
  33484. },
  33485. [
  33486. ]
  33487. ))
  33488. characterMakers.push(() => makeCharacter(
  33489. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33490. {
  33491. side: {
  33492. height: math.unit(12 + 9/12, "feet"),
  33493. weight: math.unit(15000, "lb"),
  33494. name: "Side",
  33495. image: {
  33496. source: "./media/characters/faan/side.svg",
  33497. extra: 2747/2697,
  33498. bottom: 0/2747
  33499. }
  33500. },
  33501. front: {
  33502. height: math.unit(12 + 9/12, "feet"),
  33503. weight: math.unit(15000, "lb"),
  33504. name: "Front",
  33505. image: {
  33506. source: "./media/characters/faan/front.svg",
  33507. extra: 607/571,
  33508. bottom: 24/631
  33509. }
  33510. },
  33511. head: {
  33512. height: math.unit(2.85, "feet"),
  33513. name: "Head",
  33514. image: {
  33515. source: "./media/characters/faan/head.svg"
  33516. }
  33517. },
  33518. headAlt: {
  33519. height: math.unit(3.13, "feet"),
  33520. name: "Head-alt",
  33521. image: {
  33522. source: "./media/characters/faan/head-alt.svg"
  33523. }
  33524. },
  33525. },
  33526. [
  33527. {
  33528. name: "Normal",
  33529. height: math.unit(12 + 9/12, "feet"),
  33530. default: true
  33531. },
  33532. ]
  33533. ))
  33534. characterMakers.push(() => makeCharacter(
  33535. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33536. {
  33537. front: {
  33538. height: math.unit(6, "feet"),
  33539. weight: math.unit(300, "lb"),
  33540. name: "Front",
  33541. image: {
  33542. source: "./media/characters/tanio/front.svg",
  33543. extra: 711/673,
  33544. bottom: 25/736
  33545. }
  33546. },
  33547. },
  33548. [
  33549. {
  33550. name: "Normal",
  33551. height: math.unit(6, "feet"),
  33552. default: true
  33553. },
  33554. ]
  33555. ))
  33556. characterMakers.push(() => makeCharacter(
  33557. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33558. {
  33559. front: {
  33560. height: math.unit(3, "inches"),
  33561. name: "Front",
  33562. image: {
  33563. source: "./media/characters/noboru/front.svg",
  33564. extra: 1039/932,
  33565. bottom: 18/1057
  33566. }
  33567. },
  33568. },
  33569. [
  33570. {
  33571. name: "Micro",
  33572. height: math.unit(3, "inches"),
  33573. default: true
  33574. },
  33575. ]
  33576. ))
  33577. characterMakers.push(() => makeCharacter(
  33578. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33579. {
  33580. front: {
  33581. height: math.unit(1.85, "meters"),
  33582. weight: math.unit(80, "kg"),
  33583. name: "Front",
  33584. image: {
  33585. source: "./media/characters/daniel-barrett/front.svg",
  33586. extra: 355/337,
  33587. bottom: 9/364
  33588. }
  33589. },
  33590. },
  33591. [
  33592. {
  33593. name: "Pico",
  33594. height: math.unit(0.0433, "mm")
  33595. },
  33596. {
  33597. name: "Nano",
  33598. height: math.unit(1.5, "mm")
  33599. },
  33600. {
  33601. name: "Micro",
  33602. height: math.unit(5.3, "cm"),
  33603. default: true
  33604. },
  33605. {
  33606. name: "Normal",
  33607. height: math.unit(1.85, "meters")
  33608. },
  33609. {
  33610. name: "Macro",
  33611. height: math.unit(64.7, "meters")
  33612. },
  33613. {
  33614. name: "Megamacro",
  33615. height: math.unit(2.26, "km")
  33616. },
  33617. {
  33618. name: "Gigamacro",
  33619. height: math.unit(79, "km")
  33620. },
  33621. {
  33622. name: "Teramacro",
  33623. height: math.unit(2765, "km")
  33624. },
  33625. {
  33626. name: "Petamacro",
  33627. height: math.unit(96678, "km")
  33628. },
  33629. ]
  33630. ))
  33631. characterMakers.push(() => makeCharacter(
  33632. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33633. {
  33634. front: {
  33635. height: math.unit(30, "meters"),
  33636. weight: math.unit(400, "tons"),
  33637. name: "Front",
  33638. image: {
  33639. source: "./media/characters/zeel/front.svg",
  33640. extra: 2599/2599,
  33641. bottom: 226/2825
  33642. }
  33643. },
  33644. },
  33645. [
  33646. {
  33647. name: "Macro",
  33648. height: math.unit(30, "meters"),
  33649. default: true
  33650. },
  33651. ]
  33652. ))
  33653. characterMakers.push(() => makeCharacter(
  33654. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33655. {
  33656. front: {
  33657. height: math.unit(6 + 7/12, "feet"),
  33658. weight: math.unit(210, "lb"),
  33659. name: "Front",
  33660. image: {
  33661. source: "./media/characters/tarn/front.svg",
  33662. extra: 3517/3220,
  33663. bottom: 91/3608
  33664. }
  33665. },
  33666. back: {
  33667. height: math.unit(6 + 7/12, "feet"),
  33668. weight: math.unit(210, "lb"),
  33669. name: "Back",
  33670. image: {
  33671. source: "./media/characters/tarn/back.svg",
  33672. extra: 3566/3241,
  33673. bottom: 34/3600
  33674. }
  33675. },
  33676. dick: {
  33677. height: math.unit(1.65, "feet"),
  33678. name: "Dick",
  33679. image: {
  33680. source: "./media/characters/tarn/dick.svg"
  33681. }
  33682. },
  33683. paw: {
  33684. height: math.unit(1.80, "feet"),
  33685. name: "Paw",
  33686. image: {
  33687. source: "./media/characters/tarn/paw.svg"
  33688. }
  33689. },
  33690. tongue: {
  33691. height: math.unit(0.97, "feet"),
  33692. name: "Tongue",
  33693. image: {
  33694. source: "./media/characters/tarn/tongue.svg"
  33695. }
  33696. },
  33697. },
  33698. [
  33699. {
  33700. name: "Micro",
  33701. height: math.unit(4, "inches")
  33702. },
  33703. {
  33704. name: "Normal",
  33705. height: math.unit(6 + 7/12, "feet"),
  33706. default: true
  33707. },
  33708. {
  33709. name: "Macro",
  33710. height: math.unit(300, "feet")
  33711. },
  33712. ]
  33713. ))
  33714. characterMakers.push(() => makeCharacter(
  33715. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33716. {
  33717. front: {
  33718. height: math.unit(5 + 7/12, "feet"),
  33719. weight: math.unit(80, "kg"),
  33720. name: "Front",
  33721. image: {
  33722. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33723. extra: 3023/2865,
  33724. bottom: 33/3056
  33725. }
  33726. },
  33727. back: {
  33728. height: math.unit(5 + 7/12, "feet"),
  33729. weight: math.unit(80, "kg"),
  33730. name: "Back",
  33731. image: {
  33732. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33733. extra: 3020/2886,
  33734. bottom: 30/3050
  33735. }
  33736. },
  33737. dick: {
  33738. height: math.unit(0.98, "feet"),
  33739. name: "Dick",
  33740. image: {
  33741. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33742. }
  33743. },
  33744. anatomy: {
  33745. height: math.unit(2.86, "feet"),
  33746. name: "Anatomy",
  33747. image: {
  33748. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33749. }
  33750. },
  33751. },
  33752. [
  33753. {
  33754. name: "Really Small",
  33755. height: math.unit(2, "inches")
  33756. },
  33757. {
  33758. name: "Micro",
  33759. height: math.unit(5.583, "inches")
  33760. },
  33761. {
  33762. name: "Normal",
  33763. height: math.unit(5 + 7/12, "feet"),
  33764. default: true
  33765. },
  33766. {
  33767. name: "Macro",
  33768. height: math.unit(67, "feet")
  33769. },
  33770. {
  33771. name: "Megamacro",
  33772. height: math.unit(134, "feet")
  33773. },
  33774. ]
  33775. ))
  33776. characterMakers.push(() => makeCharacter(
  33777. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33778. {
  33779. front: {
  33780. height: math.unit(9, "feet"),
  33781. weight: math.unit(120, "lb"),
  33782. name: "Front",
  33783. image: {
  33784. source: "./media/characters/sally/front.svg",
  33785. extra: 1506/1349,
  33786. bottom: 66/1572
  33787. }
  33788. },
  33789. },
  33790. [
  33791. {
  33792. name: "Normal",
  33793. height: math.unit(9, "feet"),
  33794. default: true
  33795. },
  33796. ]
  33797. ))
  33798. characterMakers.push(() => makeCharacter(
  33799. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33800. {
  33801. front: {
  33802. height: math.unit(8, "feet"),
  33803. weight: math.unit(900, "lb"),
  33804. name: "Front",
  33805. image: {
  33806. source: "./media/characters/owen/front.svg",
  33807. extra: 1761/1657,
  33808. bottom: 74/1835
  33809. }
  33810. },
  33811. side: {
  33812. height: math.unit(8, "feet"),
  33813. weight: math.unit(900, "lb"),
  33814. name: "Side",
  33815. image: {
  33816. source: "./media/characters/owen/side.svg",
  33817. extra: 1797/1734,
  33818. bottom: 30/1827
  33819. }
  33820. },
  33821. back: {
  33822. height: math.unit(8, "feet"),
  33823. weight: math.unit(900, "lb"),
  33824. name: "Back",
  33825. image: {
  33826. source: "./media/characters/owen/back.svg",
  33827. extra: 1796/1706,
  33828. bottom: 59/1855
  33829. }
  33830. },
  33831. maw: {
  33832. height: math.unit(1.76, "feet"),
  33833. name: "Maw",
  33834. image: {
  33835. source: "./media/characters/owen/maw.svg"
  33836. }
  33837. },
  33838. },
  33839. [
  33840. {
  33841. name: "Normal",
  33842. height: math.unit(8, "feet"),
  33843. default: true
  33844. },
  33845. ]
  33846. ))
  33847. characterMakers.push(() => makeCharacter(
  33848. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33849. {
  33850. front: {
  33851. height: math.unit(4, "feet"),
  33852. weight: math.unit(400, "lb"),
  33853. name: "Front",
  33854. image: {
  33855. source: "./media/characters/ryth/front.svg",
  33856. extra: 1920/1748,
  33857. bottom: 42/1962
  33858. }
  33859. },
  33860. back: {
  33861. height: math.unit(4, "feet"),
  33862. weight: math.unit(400, "lb"),
  33863. name: "Back",
  33864. image: {
  33865. source: "./media/characters/ryth/back.svg",
  33866. extra: 1897/1690,
  33867. bottom: 89/1986
  33868. }
  33869. },
  33870. mouth: {
  33871. height: math.unit(1.39, "feet"),
  33872. name: "Mouth",
  33873. image: {
  33874. source: "./media/characters/ryth/mouth.svg"
  33875. }
  33876. },
  33877. tailmaw: {
  33878. height: math.unit(1.23, "feet"),
  33879. name: "Tailmaw",
  33880. image: {
  33881. source: "./media/characters/ryth/tailmaw.svg"
  33882. }
  33883. },
  33884. goia: {
  33885. height: math.unit(4, "meters"),
  33886. weight: math.unit(10800, "lb"),
  33887. name: "Goia",
  33888. image: {
  33889. source: "./media/characters/ryth/goia.svg",
  33890. extra: 745/640,
  33891. bottom: 107/852
  33892. }
  33893. },
  33894. goiaFront: {
  33895. height: math.unit(4, "meters"),
  33896. weight: math.unit(10800, "lb"),
  33897. name: "Goia (Front)",
  33898. image: {
  33899. source: "./media/characters/ryth/goia-front.svg",
  33900. extra: 750/586,
  33901. bottom: 114/864
  33902. }
  33903. },
  33904. goiaMaw: {
  33905. height: math.unit(5.55, "feet"),
  33906. name: "Goia Maw",
  33907. image: {
  33908. source: "./media/characters/ryth/goia-maw.svg"
  33909. }
  33910. },
  33911. goiaForepaw: {
  33912. height: math.unit(3.5, "feet"),
  33913. name: "Goia Forepaw",
  33914. image: {
  33915. source: "./media/characters/ryth/goia-forepaw.svg"
  33916. }
  33917. },
  33918. goiaHindpaw: {
  33919. height: math.unit(5.55, "feet"),
  33920. name: "Goia Hindpaw",
  33921. image: {
  33922. source: "./media/characters/ryth/goia-hindpaw.svg"
  33923. }
  33924. },
  33925. },
  33926. [
  33927. {
  33928. name: "Normal",
  33929. height: math.unit(4, "feet"),
  33930. default: true
  33931. },
  33932. ]
  33933. ))
  33934. characterMakers.push(() => makeCharacter(
  33935. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33936. {
  33937. front: {
  33938. height: math.unit(7, "feet"),
  33939. weight: math.unit(180, "lb"),
  33940. name: "Front",
  33941. image: {
  33942. source: "./media/characters/necrolance/front.svg",
  33943. extra: 1062/947,
  33944. bottom: 41/1103
  33945. }
  33946. },
  33947. back: {
  33948. height: math.unit(7, "feet"),
  33949. weight: math.unit(180, "lb"),
  33950. name: "Back",
  33951. image: {
  33952. source: "./media/characters/necrolance/back.svg",
  33953. extra: 1045/984,
  33954. bottom: 14/1059
  33955. }
  33956. },
  33957. wing: {
  33958. height: math.unit(2.67, "feet"),
  33959. name: "Wing",
  33960. image: {
  33961. source: "./media/characters/necrolance/wing.svg"
  33962. }
  33963. },
  33964. },
  33965. [
  33966. {
  33967. name: "Normal",
  33968. height: math.unit(7, "feet"),
  33969. default: true
  33970. },
  33971. ]
  33972. ))
  33973. characterMakers.push(() => makeCharacter(
  33974. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33975. {
  33976. front: {
  33977. height: math.unit(76, "meters"),
  33978. weight: math.unit(30000, "tons"),
  33979. name: "Front",
  33980. image: {
  33981. source: "./media/characters/tyler/front.svg",
  33982. extra: 1640/1640,
  33983. bottom: 114/1754
  33984. }
  33985. },
  33986. },
  33987. [
  33988. {
  33989. name: "Macro",
  33990. height: math.unit(76, "meters"),
  33991. default: true
  33992. },
  33993. ]
  33994. ))
  33995. characterMakers.push(() => makeCharacter(
  33996. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33997. {
  33998. front: {
  33999. height: math.unit(4 + 11/12, "feet"),
  34000. weight: math.unit(132, "lb"),
  34001. name: "Front",
  34002. image: {
  34003. source: "./media/characters/icey/front.svg",
  34004. extra: 2750/2550,
  34005. bottom: 33/2783
  34006. }
  34007. },
  34008. back: {
  34009. height: math.unit(4 + 11/12, "feet"),
  34010. weight: math.unit(132, "lb"),
  34011. name: "Back",
  34012. image: {
  34013. source: "./media/characters/icey/back.svg",
  34014. extra: 2624/2481,
  34015. bottom: 35/2659
  34016. }
  34017. },
  34018. },
  34019. [
  34020. {
  34021. name: "Normal",
  34022. height: math.unit(4 + 11/12, "feet"),
  34023. default: true
  34024. },
  34025. ]
  34026. ))
  34027. characterMakers.push(() => makeCharacter(
  34028. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34029. {
  34030. front: {
  34031. height: math.unit(100, "feet"),
  34032. weight: math.unit(0, "lb"),
  34033. name: "Front",
  34034. image: {
  34035. source: "./media/characters/smile/front.svg",
  34036. extra: 2983/2912,
  34037. bottom: 162/3145
  34038. }
  34039. },
  34040. back: {
  34041. height: math.unit(100, "feet"),
  34042. weight: math.unit(0, "lb"),
  34043. name: "Back",
  34044. image: {
  34045. source: "./media/characters/smile/back.svg",
  34046. extra: 3143/3031,
  34047. bottom: 91/3234
  34048. }
  34049. },
  34050. head: {
  34051. height: math.unit(26.3, "feet"),
  34052. weight: math.unit(0, "lb"),
  34053. name: "Head",
  34054. image: {
  34055. source: "./media/characters/smile/head.svg"
  34056. }
  34057. },
  34058. collar: {
  34059. height: math.unit(5.3, "feet"),
  34060. weight: math.unit(0, "lb"),
  34061. name: "Collar",
  34062. image: {
  34063. source: "./media/characters/smile/collar.svg"
  34064. }
  34065. },
  34066. },
  34067. [
  34068. {
  34069. name: "Macro",
  34070. height: math.unit(100, "feet"),
  34071. default: true
  34072. },
  34073. ]
  34074. ))
  34075. characterMakers.push(() => makeCharacter(
  34076. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34077. {
  34078. dragon: {
  34079. height: math.unit(26, "feet"),
  34080. weight: math.unit(36, "tons"),
  34081. name: "Dragon",
  34082. image: {
  34083. source: "./media/characters/arimphae/dragon.svg",
  34084. extra: 1574/983,
  34085. bottom: 357/1931
  34086. }
  34087. },
  34088. drake: {
  34089. height: math.unit(9, "feet"),
  34090. weight: math.unit(1.5, "tons"),
  34091. name: "Drake",
  34092. image: {
  34093. source: "./media/characters/arimphae/drake.svg",
  34094. extra: 1120/925,
  34095. bottom: 435/1555
  34096. }
  34097. },
  34098. },
  34099. [
  34100. {
  34101. name: "Small",
  34102. height: math.unit(26*5/9, "feet")
  34103. },
  34104. {
  34105. name: "Normal",
  34106. height: math.unit(26, "feet"),
  34107. default: true
  34108. },
  34109. ]
  34110. ))
  34111. characterMakers.push(() => makeCharacter(
  34112. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34113. {
  34114. front: {
  34115. height: math.unit(8 + 9/12, "feet"),
  34116. name: "Front",
  34117. image: {
  34118. source: "./media/characters/xander/front.svg",
  34119. extra: 1237/974,
  34120. bottom: 94/1331
  34121. }
  34122. },
  34123. },
  34124. [
  34125. {
  34126. name: "Normal",
  34127. height: math.unit(8 + 9/12, "feet"),
  34128. default: true
  34129. },
  34130. {
  34131. name: "Gaze Grabber",
  34132. height: math.unit(13 + 8/12, "feet")
  34133. },
  34134. {
  34135. name: "Jaw Dropper",
  34136. height: math.unit(27, "feet")
  34137. },
  34138. {
  34139. name: "Show Stopper",
  34140. height: math.unit(136, "feet")
  34141. },
  34142. {
  34143. name: "Superstar",
  34144. height: math.unit(1.9e6, "miles")
  34145. },
  34146. ]
  34147. ))
  34148. characterMakers.push(() => makeCharacter(
  34149. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34150. {
  34151. side: {
  34152. height: math.unit(2100, "feet"),
  34153. name: "Side",
  34154. image: {
  34155. source: "./media/characters/osiris/side.svg",
  34156. extra: 1105/939,
  34157. bottom: 167/1272
  34158. }
  34159. },
  34160. },
  34161. [
  34162. {
  34163. name: "Macro",
  34164. height: math.unit(2100, "feet"),
  34165. default: true
  34166. },
  34167. ]
  34168. ))
  34169. characterMakers.push(() => makeCharacter(
  34170. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34171. {
  34172. front: {
  34173. height: math.unit(6 + 8/12, "feet"),
  34174. weight: math.unit(225, "lb"),
  34175. name: "Front",
  34176. image: {
  34177. source: "./media/characters/rhys-londe/front.svg",
  34178. extra: 2258/2141,
  34179. bottom: 188/2446
  34180. }
  34181. },
  34182. back: {
  34183. height: math.unit(6 + 8/12, "feet"),
  34184. weight: math.unit(225, "lb"),
  34185. name: "Back",
  34186. image: {
  34187. source: "./media/characters/rhys-londe/back.svg",
  34188. extra: 2237/2137,
  34189. bottom: 63/2300
  34190. }
  34191. },
  34192. frontNsfw: {
  34193. height: math.unit(6 + 8/12, "feet"),
  34194. weight: math.unit(225, "lb"),
  34195. name: "Front (NSFW)",
  34196. image: {
  34197. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34198. extra: 2258/2141,
  34199. bottom: 188/2446
  34200. }
  34201. },
  34202. backNsfw: {
  34203. height: math.unit(6 + 8/12, "feet"),
  34204. weight: math.unit(225, "lb"),
  34205. name: "Back (NSFW)",
  34206. image: {
  34207. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34208. extra: 2237/2137,
  34209. bottom: 63/2300
  34210. }
  34211. },
  34212. dick: {
  34213. height: math.unit(30, "inches"),
  34214. name: "Dick",
  34215. image: {
  34216. source: "./media/characters/rhys-londe/dick.svg"
  34217. }
  34218. },
  34219. maw: {
  34220. height: math.unit(1.6, "feet"),
  34221. name: "Maw",
  34222. image: {
  34223. source: "./media/characters/rhys-londe/maw.svg"
  34224. }
  34225. },
  34226. },
  34227. [
  34228. {
  34229. name: "Normal",
  34230. height: math.unit(6 + 8/12, "feet"),
  34231. default: true
  34232. },
  34233. ]
  34234. ))
  34235. characterMakers.push(() => makeCharacter(
  34236. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34237. {
  34238. front: {
  34239. height: math.unit(3 + 10/12, "feet"),
  34240. weight: math.unit(90, "lb"),
  34241. name: "Front",
  34242. image: {
  34243. source: "./media/characters/taivas-ensim/front.svg",
  34244. extra: 1327/1216,
  34245. bottom: 96/1423
  34246. }
  34247. },
  34248. back: {
  34249. height: math.unit(3 + 10/12, "feet"),
  34250. weight: math.unit(90, "lb"),
  34251. name: "Back",
  34252. image: {
  34253. source: "./media/characters/taivas-ensim/back.svg",
  34254. extra: 1355/1247,
  34255. bottom: 11/1366
  34256. }
  34257. },
  34258. frontNsfw: {
  34259. height: math.unit(3 + 10/12, "feet"),
  34260. weight: math.unit(90, "lb"),
  34261. name: "Front (NSFW)",
  34262. image: {
  34263. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34264. extra: 1327/1216,
  34265. bottom: 96/1423
  34266. }
  34267. },
  34268. backNsfw: {
  34269. height: math.unit(3 + 10/12, "feet"),
  34270. weight: math.unit(90, "lb"),
  34271. name: "Back (NSFW)",
  34272. image: {
  34273. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34274. extra: 1355/1247,
  34275. bottom: 11/1366
  34276. }
  34277. },
  34278. },
  34279. [
  34280. {
  34281. name: "Normal",
  34282. height: math.unit(3 + 10/12, "feet"),
  34283. default: true
  34284. },
  34285. ]
  34286. ))
  34287. characterMakers.push(() => makeCharacter(
  34288. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34289. {
  34290. front: {
  34291. height: math.unit(9 + 6/12, "feet"),
  34292. weight: math.unit(940, "lb"),
  34293. name: "Front",
  34294. image: {
  34295. source: "./media/characters/byliss/front.svg",
  34296. extra: 1327/1290,
  34297. bottom: 82/1409
  34298. }
  34299. },
  34300. back: {
  34301. height: math.unit(9 + 6/12, "feet"),
  34302. weight: math.unit(940, "lb"),
  34303. name: "Back",
  34304. image: {
  34305. source: "./media/characters/byliss/back.svg",
  34306. extra: 1376/1349,
  34307. bottom: 9/1385
  34308. }
  34309. },
  34310. frontNsfw: {
  34311. height: math.unit(9 + 6/12, "feet"),
  34312. weight: math.unit(940, "lb"),
  34313. name: "Front (NSFW)",
  34314. image: {
  34315. source: "./media/characters/byliss/front-nsfw.svg",
  34316. extra: 1327/1290,
  34317. bottom: 82/1409
  34318. }
  34319. },
  34320. backNsfw: {
  34321. height: math.unit(9 + 6/12, "feet"),
  34322. weight: math.unit(940, "lb"),
  34323. name: "Back (NSFW)",
  34324. image: {
  34325. source: "./media/characters/byliss/back-nsfw.svg",
  34326. extra: 1376/1349,
  34327. bottom: 9/1385
  34328. }
  34329. },
  34330. },
  34331. [
  34332. {
  34333. name: "Normal",
  34334. height: math.unit(9 + 6/12, "feet"),
  34335. default: true
  34336. },
  34337. ]
  34338. ))
  34339. characterMakers.push(() => makeCharacter(
  34340. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34341. {
  34342. front: {
  34343. height: math.unit(5 + 2/12, "feet"),
  34344. weight: math.unit(200, "lb"),
  34345. name: "Front",
  34346. image: {
  34347. source: "./media/characters/noraly/front.svg",
  34348. extra: 4985/4773,
  34349. bottom: 150/5135
  34350. }
  34351. },
  34352. full: {
  34353. height: math.unit(5 + 2/12, "feet"),
  34354. weight: math.unit(164, "lb"),
  34355. name: "Full",
  34356. image: {
  34357. source: "./media/characters/noraly/full.svg",
  34358. extra: 1114/1059,
  34359. bottom: 35/1149
  34360. }
  34361. },
  34362. fuller: {
  34363. height: math.unit(5 + 2/12, "feet"),
  34364. weight: math.unit(230, "lb"),
  34365. name: "Fuller",
  34366. image: {
  34367. source: "./media/characters/noraly/fuller.svg",
  34368. extra: 1114/1059,
  34369. bottom: 35/1149
  34370. }
  34371. },
  34372. fullest: {
  34373. height: math.unit(5 + 2/12, "feet"),
  34374. weight: math.unit(300, "lb"),
  34375. name: "Fullest",
  34376. image: {
  34377. source: "./media/characters/noraly/fullest.svg",
  34378. extra: 1114/1059,
  34379. bottom: 35/1149
  34380. }
  34381. },
  34382. },
  34383. [
  34384. {
  34385. name: "Normal",
  34386. height: math.unit(5 + 2/12, "feet"),
  34387. default: true
  34388. },
  34389. ]
  34390. ))
  34391. characterMakers.push(() => makeCharacter(
  34392. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34393. {
  34394. front: {
  34395. height: math.unit(5 + 2/12, "feet"),
  34396. weight: math.unit(210, "lb"),
  34397. name: "Front",
  34398. image: {
  34399. source: "./media/characters/pera/front.svg",
  34400. extra: 1560/1531,
  34401. bottom: 165/1725
  34402. }
  34403. },
  34404. back: {
  34405. height: math.unit(5 + 2/12, "feet"),
  34406. weight: math.unit(210, "lb"),
  34407. name: "Back",
  34408. image: {
  34409. source: "./media/characters/pera/back.svg",
  34410. extra: 1523/1493,
  34411. bottom: 152/1675
  34412. }
  34413. },
  34414. dick: {
  34415. height: math.unit(2.4, "feet"),
  34416. name: "Dick",
  34417. image: {
  34418. source: "./media/characters/pera/dick.svg"
  34419. }
  34420. },
  34421. },
  34422. [
  34423. {
  34424. name: "Normal",
  34425. height: math.unit(5 + 2/12, "feet"),
  34426. default: true
  34427. },
  34428. ]
  34429. ))
  34430. characterMakers.push(() => makeCharacter(
  34431. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34432. {
  34433. front: {
  34434. height: math.unit(12, "feet"),
  34435. weight: math.unit(3200, "lb"),
  34436. name: "Front",
  34437. image: {
  34438. source: "./media/characters/julian/front.svg",
  34439. extra: 2962/2701,
  34440. bottom: 184/3146
  34441. }
  34442. },
  34443. maw: {
  34444. height: math.unit(5.35, "feet"),
  34445. name: "Maw",
  34446. image: {
  34447. source: "./media/characters/julian/maw.svg"
  34448. }
  34449. },
  34450. paw: {
  34451. height: math.unit(3.07, "feet"),
  34452. name: "Paw",
  34453. image: {
  34454. source: "./media/characters/julian/paw.svg"
  34455. }
  34456. },
  34457. },
  34458. [
  34459. {
  34460. name: "Default",
  34461. height: math.unit(12, "feet"),
  34462. default: true
  34463. },
  34464. {
  34465. name: "Big",
  34466. height: math.unit(50, "feet")
  34467. },
  34468. {
  34469. name: "Really Big",
  34470. height: math.unit(1, "mile")
  34471. },
  34472. {
  34473. name: "Extremely Big",
  34474. height: math.unit(100, "miles")
  34475. },
  34476. {
  34477. name: "Planet Hugger",
  34478. height: math.unit(200, "megameters")
  34479. },
  34480. {
  34481. name: "Unreasonably Big",
  34482. height: math.unit(1e300, "meters")
  34483. },
  34484. ]
  34485. ))
  34486. characterMakers.push(() => makeCharacter(
  34487. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34488. {
  34489. solgooleo: {
  34490. height: math.unit(4, "meters"),
  34491. weight: math.unit(6000*1.5, "kg"),
  34492. volume: math.unit(6000, "liters"),
  34493. name: "Solgooleo",
  34494. image: {
  34495. source: "./media/characters/pi/solgooleo.svg",
  34496. extra: 388/331,
  34497. bottom: 29/417
  34498. }
  34499. },
  34500. },
  34501. [
  34502. {
  34503. name: "Normal",
  34504. height: math.unit(4, "meters"),
  34505. default: true
  34506. },
  34507. ]
  34508. ))
  34509. characterMakers.push(() => makeCharacter(
  34510. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34511. {
  34512. front: {
  34513. height: math.unit(8, "feet"),
  34514. weight: math.unit(4, "tons"),
  34515. name: "Front",
  34516. image: {
  34517. source: "./media/characters/shaun/front.svg",
  34518. extra: 503/495,
  34519. bottom: 20/523
  34520. }
  34521. },
  34522. back: {
  34523. height: math.unit(8, "feet"),
  34524. weight: math.unit(4, "tons"),
  34525. name: "Back",
  34526. image: {
  34527. source: "./media/characters/shaun/back.svg",
  34528. extra: 487/480,
  34529. bottom: 20/507
  34530. }
  34531. },
  34532. },
  34533. [
  34534. {
  34535. name: "Lorg",
  34536. height: math.unit(8, "feet"),
  34537. default: true
  34538. },
  34539. ]
  34540. ))
  34541. characterMakers.push(() => makeCharacter(
  34542. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34543. {
  34544. frontAnthro: {
  34545. height: math.unit(7, "feet"),
  34546. name: "Front",
  34547. image: {
  34548. source: "./media/characters/sini/front-anthro.svg",
  34549. extra: 726/678,
  34550. bottom: 35/761
  34551. },
  34552. form: "anthro",
  34553. default: true
  34554. },
  34555. backAnthro: {
  34556. height: math.unit(7, "feet"),
  34557. name: "Back",
  34558. image: {
  34559. source: "./media/characters/sini/back-anthro.svg",
  34560. extra: 743/701,
  34561. bottom: 12/755
  34562. },
  34563. form: "anthro",
  34564. },
  34565. frontAnthroNsfw: {
  34566. height: math.unit(7, "feet"),
  34567. name: "Front (NSFW)",
  34568. image: {
  34569. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34570. extra: 726/678,
  34571. bottom: 35/761
  34572. },
  34573. form: "anthro"
  34574. },
  34575. backAnthroNsfw: {
  34576. height: math.unit(7, "feet"),
  34577. name: "Back (NSFW)",
  34578. image: {
  34579. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34580. extra: 743/701,
  34581. bottom: 12/755
  34582. },
  34583. form: "anthro",
  34584. },
  34585. mawAnthro: {
  34586. height: math.unit(2.14, "feet"),
  34587. name: "Maw",
  34588. image: {
  34589. source: "./media/characters/sini/maw-anthro.svg"
  34590. },
  34591. form: "anthro"
  34592. },
  34593. dick: {
  34594. height: math.unit(1.45, "feet"),
  34595. name: "Dick",
  34596. image: {
  34597. source: "./media/characters/sini/dick-anthro.svg"
  34598. },
  34599. form: "anthro"
  34600. },
  34601. feral: {
  34602. height: math.unit(16, "feet"),
  34603. name: "Feral",
  34604. image: {
  34605. source: "./media/characters/sini/feral.svg",
  34606. extra: 814/605,
  34607. bottom: 11/825
  34608. },
  34609. form: "feral",
  34610. default: true
  34611. },
  34612. feralNsfw: {
  34613. height: math.unit(16, "feet"),
  34614. name: "Feral (NSFW)",
  34615. image: {
  34616. source: "./media/characters/sini/feral-nsfw.svg",
  34617. extra: 814/605,
  34618. bottom: 11/825
  34619. },
  34620. form: "feral"
  34621. },
  34622. mawFeral: {
  34623. height: math.unit(5.66, "feet"),
  34624. name: "Maw",
  34625. image: {
  34626. source: "./media/characters/sini/maw-feral.svg"
  34627. },
  34628. form: "feral",
  34629. },
  34630. pawFeral: {
  34631. height: math.unit(5.17, "feet"),
  34632. name: "Paw",
  34633. image: {
  34634. source: "./media/characters/sini/paw-feral.svg"
  34635. },
  34636. form: "feral",
  34637. },
  34638. rumpFeral: {
  34639. height: math.unit(13.11, "feet"),
  34640. name: "Rump",
  34641. image: {
  34642. source: "./media/characters/sini/rump-feral.svg"
  34643. },
  34644. form: "feral",
  34645. },
  34646. dickFeral: {
  34647. height: math.unit(1, "feet"),
  34648. name: "Dick",
  34649. image: {
  34650. source: "./media/characters/sini/dick-feral.svg"
  34651. },
  34652. form: "feral",
  34653. },
  34654. eyeFeral: {
  34655. height: math.unit(1.23, "feet"),
  34656. name: "Eye",
  34657. image: {
  34658. source: "./media/characters/sini/eye-feral.svg"
  34659. },
  34660. form: "feral",
  34661. },
  34662. },
  34663. [
  34664. {
  34665. name: "Normal",
  34666. height: math.unit(7, "feet"),
  34667. default: true,
  34668. form: "anthro"
  34669. },
  34670. {
  34671. name: "Normal",
  34672. height: math.unit(16, "feet"),
  34673. default: true,
  34674. form: "feral"
  34675. },
  34676. ],
  34677. {
  34678. "anthro": {
  34679. name: "Anthro",
  34680. default: true
  34681. },
  34682. "feral": {
  34683. name: "Feral",
  34684. }
  34685. }
  34686. ))
  34687. characterMakers.push(() => makeCharacter(
  34688. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34689. {
  34690. side: {
  34691. height: math.unit(47.2, "meters"),
  34692. weight: math.unit(10000, "tons"),
  34693. name: "Side",
  34694. image: {
  34695. source: "./media/characters/raylldo/side.svg",
  34696. extra: 2363/642,
  34697. bottom: 221/2584
  34698. }
  34699. },
  34700. top: {
  34701. height: math.unit(240, "meters"),
  34702. weight: math.unit(10000, "tons"),
  34703. name: "Top",
  34704. image: {
  34705. source: "./media/characters/raylldo/top.svg"
  34706. }
  34707. },
  34708. bottom: {
  34709. height: math.unit(240, "meters"),
  34710. weight: math.unit(10000, "tons"),
  34711. name: "Bottom",
  34712. image: {
  34713. source: "./media/characters/raylldo/bottom.svg"
  34714. }
  34715. },
  34716. head: {
  34717. height: math.unit(38.6, "meters"),
  34718. name: "Head",
  34719. image: {
  34720. source: "./media/characters/raylldo/head.svg",
  34721. extra: 1335/1112,
  34722. bottom: 0/1335
  34723. }
  34724. },
  34725. maw: {
  34726. height: math.unit(16.37, "meters"),
  34727. name: "Maw",
  34728. image: {
  34729. source: "./media/characters/raylldo/maw.svg",
  34730. extra: 883/660,
  34731. bottom: 0/883
  34732. },
  34733. extraAttributes: {
  34734. preyCapacity: {
  34735. name: "Capacity",
  34736. power: 3,
  34737. type: "volume",
  34738. base: math.unit(1000, "people")
  34739. },
  34740. tongueSize: {
  34741. name: "Tongue Size",
  34742. power: 2,
  34743. type: "area",
  34744. base: math.unit(21, "m^2")
  34745. }
  34746. }
  34747. },
  34748. forepaw: {
  34749. height: math.unit(18, "meters"),
  34750. name: "Forepaw",
  34751. image: {
  34752. source: "./media/characters/raylldo/forepaw.svg"
  34753. }
  34754. },
  34755. hindpaw: {
  34756. height: math.unit(23, "meters"),
  34757. name: "Hindpaw",
  34758. image: {
  34759. source: "./media/characters/raylldo/hindpaw.svg"
  34760. }
  34761. },
  34762. genitals: {
  34763. height: math.unit(42, "meters"),
  34764. name: "Genitals",
  34765. image: {
  34766. source: "./media/characters/raylldo/genitals.svg"
  34767. }
  34768. },
  34769. },
  34770. [
  34771. {
  34772. name: "Normal",
  34773. height: math.unit(47.2, "meters"),
  34774. default: true
  34775. },
  34776. ]
  34777. ))
  34778. characterMakers.push(() => makeCharacter(
  34779. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34780. {
  34781. anthroFront: {
  34782. height: math.unit(9, "feet"),
  34783. weight: math.unit(600, "lb"),
  34784. name: "Anthro (Front)",
  34785. image: {
  34786. source: "./media/characters/glint/anthro-front.svg",
  34787. extra: 1097/1018,
  34788. bottom: 28/1125
  34789. }
  34790. },
  34791. anthroBack: {
  34792. height: math.unit(9, "feet"),
  34793. weight: math.unit(600, "lb"),
  34794. name: "Anthro (Back)",
  34795. image: {
  34796. source: "./media/characters/glint/anthro-back.svg",
  34797. extra: 1154/997,
  34798. bottom: 36/1190
  34799. }
  34800. },
  34801. feral: {
  34802. height: math.unit(11, "feet"),
  34803. weight: math.unit(50000, "lb"),
  34804. name: "Feral",
  34805. image: {
  34806. source: "./media/characters/glint/feral.svg",
  34807. extra: 3035/1585,
  34808. bottom: 1169/4204
  34809. }
  34810. },
  34811. dickAnthro: {
  34812. height: math.unit(0.7, "meters"),
  34813. name: "Dick (Anthro)",
  34814. image: {
  34815. source: "./media/characters/glint/dick-anthro.svg"
  34816. }
  34817. },
  34818. dickFeral: {
  34819. height: math.unit(2.65, "meters"),
  34820. name: "Dick (Feral)",
  34821. image: {
  34822. source: "./media/characters/glint/dick-feral.svg"
  34823. }
  34824. },
  34825. slitHidden: {
  34826. height: math.unit(5.85, "meters"),
  34827. name: "Slit (Hidden)",
  34828. image: {
  34829. source: "./media/characters/glint/slit-hidden.svg"
  34830. }
  34831. },
  34832. slitErect: {
  34833. height: math.unit(5.85, "meters"),
  34834. name: "Slit (Erect)",
  34835. image: {
  34836. source: "./media/characters/glint/slit-erect.svg"
  34837. }
  34838. },
  34839. mawAnthro: {
  34840. height: math.unit(0.63, "meters"),
  34841. name: "Maw (Anthro)",
  34842. image: {
  34843. source: "./media/characters/glint/maw.svg"
  34844. }
  34845. },
  34846. mawFeral: {
  34847. height: math.unit(2.89, "meters"),
  34848. name: "Maw (Feral)",
  34849. image: {
  34850. source: "./media/characters/glint/maw.svg"
  34851. }
  34852. },
  34853. },
  34854. [
  34855. {
  34856. name: "Normal",
  34857. height: math.unit(9, "feet"),
  34858. default: true
  34859. },
  34860. ]
  34861. ))
  34862. characterMakers.push(() => makeCharacter(
  34863. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34864. {
  34865. side: {
  34866. height: math.unit(15, "feet"),
  34867. weight: math.unit(5000, "kg"),
  34868. name: "Side",
  34869. image: {
  34870. source: "./media/characters/kairne/side.svg",
  34871. extra: 979/811,
  34872. bottom: 13/992
  34873. }
  34874. },
  34875. front: {
  34876. height: math.unit(15, "feet"),
  34877. weight: math.unit(5000, "kg"),
  34878. name: "Front",
  34879. image: {
  34880. source: "./media/characters/kairne/front.svg",
  34881. extra: 908/814,
  34882. bottom: 26/934
  34883. }
  34884. },
  34885. sideNsfw: {
  34886. height: math.unit(15, "feet"),
  34887. weight: math.unit(5000, "kg"),
  34888. name: "Side (NSFW)",
  34889. image: {
  34890. source: "./media/characters/kairne/side-nsfw.svg",
  34891. extra: 979/811,
  34892. bottom: 13/992
  34893. }
  34894. },
  34895. frontNsfw: {
  34896. height: math.unit(15, "feet"),
  34897. weight: math.unit(5000, "kg"),
  34898. name: "Front (NSFW)",
  34899. image: {
  34900. source: "./media/characters/kairne/front-nsfw.svg",
  34901. extra: 908/814,
  34902. bottom: 26/934
  34903. }
  34904. },
  34905. dickCaged: {
  34906. height: math.unit(0.65, "meters"),
  34907. name: "Dick-caged",
  34908. image: {
  34909. source: "./media/characters/kairne/dick-caged.svg"
  34910. }
  34911. },
  34912. dick: {
  34913. height: math.unit(0.79, "meters"),
  34914. name: "Dick",
  34915. image: {
  34916. source: "./media/characters/kairne/dick.svg"
  34917. }
  34918. },
  34919. genitals: {
  34920. height: math.unit(1.29, "meters"),
  34921. name: "Genitals",
  34922. image: {
  34923. source: "./media/characters/kairne/genitals.svg"
  34924. }
  34925. },
  34926. maw: {
  34927. height: math.unit(1.73, "meters"),
  34928. name: "Maw",
  34929. image: {
  34930. source: "./media/characters/kairne/maw.svg"
  34931. }
  34932. },
  34933. },
  34934. [
  34935. {
  34936. name: "Normal",
  34937. height: math.unit(15, "feet"),
  34938. default: true
  34939. },
  34940. ]
  34941. ))
  34942. characterMakers.push(() => makeCharacter(
  34943. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34944. {
  34945. front: {
  34946. height: math.unit(5 + 8/12, "feet"),
  34947. weight: math.unit(139, "lb"),
  34948. name: "Front",
  34949. image: {
  34950. source: "./media/characters/biscuit-jackal/front.svg",
  34951. extra: 2106/1961,
  34952. bottom: 58/2164
  34953. }
  34954. },
  34955. back: {
  34956. height: math.unit(5 + 8/12, "feet"),
  34957. weight: math.unit(139, "lb"),
  34958. name: "Back",
  34959. image: {
  34960. source: "./media/characters/biscuit-jackal/back.svg",
  34961. extra: 2132/1976,
  34962. bottom: 57/2189
  34963. }
  34964. },
  34965. werejackal: {
  34966. height: math.unit(6 + 3/12, "feet"),
  34967. weight: math.unit(188, "lb"),
  34968. name: "Werejackal",
  34969. image: {
  34970. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34971. extra: 2373/2178,
  34972. bottom: 53/2426
  34973. }
  34974. },
  34975. },
  34976. [
  34977. {
  34978. name: "Normal",
  34979. height: math.unit(5 + 8/12, "feet"),
  34980. default: true
  34981. },
  34982. ]
  34983. ))
  34984. characterMakers.push(() => makeCharacter(
  34985. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34986. {
  34987. front: {
  34988. height: math.unit(140, "cm"),
  34989. weight: math.unit(45, "kg"),
  34990. name: "Front",
  34991. image: {
  34992. source: "./media/characters/tayra-white/front.svg",
  34993. extra: 2229/2192,
  34994. bottom: 75/2304
  34995. }
  34996. },
  34997. },
  34998. [
  34999. {
  35000. name: "Normal",
  35001. height: math.unit(140, "cm"),
  35002. default: true
  35003. },
  35004. ]
  35005. ))
  35006. characterMakers.push(() => makeCharacter(
  35007. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35008. {
  35009. front: {
  35010. height: math.unit(4 + 5/12, "feet"),
  35011. name: "Front",
  35012. image: {
  35013. source: "./media/characters/scoop/front.svg",
  35014. extra: 1257/1136,
  35015. bottom: 69/1326
  35016. }
  35017. },
  35018. back: {
  35019. height: math.unit(4 + 5/12, "feet"),
  35020. name: "Back",
  35021. image: {
  35022. source: "./media/characters/scoop/back.svg",
  35023. extra: 1321/1152,
  35024. bottom: 32/1353
  35025. }
  35026. },
  35027. maw: {
  35028. height: math.unit(0.68, "feet"),
  35029. name: "Maw",
  35030. image: {
  35031. source: "./media/characters/scoop/maw.svg"
  35032. }
  35033. },
  35034. },
  35035. [
  35036. {
  35037. name: "Really Small",
  35038. height: math.unit(1, "mm")
  35039. },
  35040. {
  35041. name: "Micro",
  35042. height: math.unit(1, "inch")
  35043. },
  35044. {
  35045. name: "Normal",
  35046. height: math.unit(4 + 5/12, "feet"),
  35047. default: true
  35048. },
  35049. {
  35050. name: "Macro",
  35051. height: math.unit(200, "feet")
  35052. },
  35053. {
  35054. name: "Megamacro",
  35055. height: math.unit(3240, "feet")
  35056. },
  35057. {
  35058. name: "Teramacro",
  35059. height: math.unit(2500, "miles")
  35060. },
  35061. ]
  35062. ))
  35063. characterMakers.push(() => makeCharacter(
  35064. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35065. {
  35066. front: {
  35067. height: math.unit(15 + 7/12, "feet"),
  35068. weight: math.unit(1150, "tons"),
  35069. name: "Front",
  35070. image: {
  35071. source: "./media/characters/saphinara/front.svg",
  35072. extra: 1837/1643,
  35073. bottom: 84/1921
  35074. },
  35075. form: "normal",
  35076. default: true
  35077. },
  35078. side: {
  35079. height: math.unit(15 + 7/12, "feet"),
  35080. weight: math.unit(1150, "tons"),
  35081. name: "Side",
  35082. image: {
  35083. source: "./media/characters/saphinara/side.svg",
  35084. extra: 605/547,
  35085. bottom: 6/611
  35086. },
  35087. form: "normal"
  35088. },
  35089. back: {
  35090. height: math.unit(15 + 7/12, "feet"),
  35091. weight: math.unit(1150, "tons"),
  35092. name: "Back",
  35093. image: {
  35094. source: "./media/characters/saphinara/back.svg",
  35095. extra: 591/531,
  35096. bottom: 13/604
  35097. },
  35098. form: "normal"
  35099. },
  35100. frontTail: {
  35101. height: math.unit(15 + 7/12, "feet"),
  35102. weight: math.unit(1150, "tons"),
  35103. name: "Front (Full Tail)",
  35104. image: {
  35105. source: "./media/characters/saphinara/front-tail.svg",
  35106. extra: 2256/1630,
  35107. bottom: 261/2517
  35108. },
  35109. form: "normal"
  35110. },
  35111. insides: {
  35112. height: math.unit(11.92, "feet"),
  35113. name: "Insides",
  35114. image: {
  35115. source: "./media/characters/saphinara/insides.svg"
  35116. },
  35117. form: "normal"
  35118. },
  35119. head: {
  35120. height: math.unit(4.17, "feet"),
  35121. name: "Head",
  35122. image: {
  35123. source: "./media/characters/saphinara/head.svg"
  35124. },
  35125. form: "normal"
  35126. },
  35127. tongue: {
  35128. height: math.unit(4.60, "feet"),
  35129. name: "Tongue",
  35130. image: {
  35131. source: "./media/characters/saphinara/tongue.svg"
  35132. },
  35133. form: "normal"
  35134. },
  35135. headEnraged: {
  35136. height: math.unit(5.55, "feet"),
  35137. name: "Head (Enraged)",
  35138. image: {
  35139. source: "./media/characters/saphinara/head-enraged.svg"
  35140. },
  35141. form: "normal"
  35142. },
  35143. wings: {
  35144. height: math.unit(11.95, "feet"),
  35145. name: "Wings",
  35146. image: {
  35147. source: "./media/characters/saphinara/wings.svg"
  35148. },
  35149. form: "normal"
  35150. },
  35151. feathers: {
  35152. height: math.unit(8.92, "feet"),
  35153. name: "Feathers",
  35154. image: {
  35155. source: "./media/characters/saphinara/feathers.svg"
  35156. },
  35157. form: "normal"
  35158. },
  35159. shackles: {
  35160. height: math.unit(2, "feet"),
  35161. name: "Shackles",
  35162. image: {
  35163. source: "./media/characters/saphinara/shackles.svg"
  35164. },
  35165. form: "normal"
  35166. },
  35167. eyes: {
  35168. height: math.unit(1.331, "feet"),
  35169. name: "Eyes",
  35170. image: {
  35171. source: "./media/characters/saphinara/eyes.svg"
  35172. },
  35173. form: "normal"
  35174. },
  35175. eyesEnraged: {
  35176. height: math.unit(1.331, "feet"),
  35177. name: "Eyes (Enraged)",
  35178. image: {
  35179. source: "./media/characters/saphinara/eyes-enraged.svg"
  35180. },
  35181. form: "normal"
  35182. },
  35183. trueFormSide: {
  35184. height: math.unit(200, "feet"),
  35185. weight: math.unit(1e7, "tons"),
  35186. name: "Side",
  35187. image: {
  35188. source: "./media/characters/saphinara/true-form-side.svg",
  35189. extra: 1399/770,
  35190. bottom: 97/1496
  35191. },
  35192. form: "true-form",
  35193. default: true
  35194. },
  35195. trueFormMaw: {
  35196. height: math.unit(71.5, "feet"),
  35197. name: "Maw",
  35198. image: {
  35199. source: "./media/characters/saphinara/true-form-maw.svg",
  35200. extra: 2302/1453,
  35201. bottom: 0/2302
  35202. },
  35203. form: "true-form"
  35204. },
  35205. meowberusSide: {
  35206. height: math.unit(75, "feet"),
  35207. weight: math.unit(180000, "kg"),
  35208. preyCapacity: math.unit(50000, "people"),
  35209. name: "Side",
  35210. image: {
  35211. source: "./media/characters/saphinara/meowberus-side.svg",
  35212. extra: 1400/711,
  35213. bottom: 126/1526
  35214. },
  35215. form: "meowberus",
  35216. extraAttributes: {
  35217. "pawArea": {
  35218. name: "Paw Size",
  35219. power: 2,
  35220. type: "area",
  35221. base: math.unit(35, "m^2")
  35222. }
  35223. }
  35224. },
  35225. },
  35226. [
  35227. {
  35228. name: "Normal",
  35229. height: math.unit(15 + 7/12, "feet"),
  35230. default: true,
  35231. form: "normal"
  35232. },
  35233. {
  35234. name: "Angry",
  35235. height: math.unit(30 + 6/12, "feet"),
  35236. form: "normal"
  35237. },
  35238. {
  35239. name: "Enraged",
  35240. height: math.unit(102 + 1/12, "feet"),
  35241. form: "normal"
  35242. },
  35243. {
  35244. name: "True",
  35245. height: math.unit(200, "feet"),
  35246. default: true,
  35247. form: "true-form"
  35248. },
  35249. {
  35250. name: "Normal",
  35251. height: math.unit(75, "feet"),
  35252. default: true,
  35253. form: "meowberus"
  35254. },
  35255. ],
  35256. {
  35257. "normal": {
  35258. name: "Normal",
  35259. default: true
  35260. },
  35261. "true-form": {
  35262. name: "True Form"
  35263. },
  35264. "meowberus": {
  35265. name: "Meowberus",
  35266. },
  35267. }
  35268. ))
  35269. characterMakers.push(() => makeCharacter(
  35270. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35271. {
  35272. front: {
  35273. height: math.unit(6 + 8/12, "feet"),
  35274. weight: math.unit(300, "lb"),
  35275. name: "Front",
  35276. image: {
  35277. source: "./media/characters/jrain/front.svg",
  35278. extra: 3039/2865,
  35279. bottom: 399/3438
  35280. }
  35281. },
  35282. back: {
  35283. height: math.unit(6 + 8/12, "feet"),
  35284. weight: math.unit(300, "lb"),
  35285. name: "Back",
  35286. image: {
  35287. source: "./media/characters/jrain/back.svg",
  35288. extra: 3089/2938,
  35289. bottom: 172/3261
  35290. }
  35291. },
  35292. head: {
  35293. height: math.unit(2.14, "feet"),
  35294. name: "Head",
  35295. image: {
  35296. source: "./media/characters/jrain/head.svg"
  35297. }
  35298. },
  35299. maw: {
  35300. height: math.unit(1.77, "feet"),
  35301. name: "Maw",
  35302. image: {
  35303. source: "./media/characters/jrain/maw.svg"
  35304. }
  35305. },
  35306. leftHand: {
  35307. height: math.unit(1.1, "feet"),
  35308. name: "Left Hand",
  35309. image: {
  35310. source: "./media/characters/jrain/left-hand.svg"
  35311. }
  35312. },
  35313. rightHand: {
  35314. height: math.unit(1.1, "feet"),
  35315. name: "Right Hand",
  35316. image: {
  35317. source: "./media/characters/jrain/right-hand.svg"
  35318. }
  35319. },
  35320. eye: {
  35321. height: math.unit(0.35, "feet"),
  35322. name: "Eye",
  35323. image: {
  35324. source: "./media/characters/jrain/eye.svg"
  35325. }
  35326. },
  35327. },
  35328. [
  35329. {
  35330. name: "Normal",
  35331. height: math.unit(6 + 8/12, "feet"),
  35332. default: true
  35333. },
  35334. {
  35335. name: "Casually Large",
  35336. height: math.unit(25, "feet")
  35337. },
  35338. {
  35339. name: "Giant",
  35340. height: math.unit(100, "feet")
  35341. },
  35342. {
  35343. name: "Kaiju",
  35344. height: math.unit(300, "feet")
  35345. },
  35346. ]
  35347. ))
  35348. characterMakers.push(() => makeCharacter(
  35349. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35350. {
  35351. dragon: {
  35352. height: math.unit(5, "meters"),
  35353. name: "Dragon",
  35354. image: {
  35355. source: "./media/characters/sabrina/dragon.svg",
  35356. extra: 3670 / 2365,
  35357. bottom: 333 / 4003
  35358. }
  35359. },
  35360. gryphon: {
  35361. height: math.unit(3, "meters"),
  35362. name: "Gryphon",
  35363. image: {
  35364. source: "./media/characters/sabrina/gryphon.svg",
  35365. extra: 1576 / 945,
  35366. bottom: 71 / 1647
  35367. }
  35368. },
  35369. snake: {
  35370. height: math.unit(12, "meters"),
  35371. name: "Snake",
  35372. image: {
  35373. source: "./media/characters/sabrina/snake.svg",
  35374. extra: 1758 / 1320,
  35375. bottom: 186 / 1944
  35376. }
  35377. },
  35378. collar: {
  35379. height: math.unit(1.86, "meters"),
  35380. name: "Collar",
  35381. image: {
  35382. source: "./media/characters/sabrina/collar.svg"
  35383. }
  35384. },
  35385. eye: {
  35386. height: math.unit(0.53, "meters"),
  35387. name: "Eye",
  35388. image: {
  35389. source: "./media/characters/sabrina/eye.svg"
  35390. }
  35391. },
  35392. foot: {
  35393. height: math.unit(1.86, "meters"),
  35394. name: "Foot",
  35395. image: {
  35396. source: "./media/characters/sabrina/foot.svg"
  35397. }
  35398. },
  35399. hand: {
  35400. height: math.unit(1.32, "meters"),
  35401. name: "Hand",
  35402. image: {
  35403. source: "./media/characters/sabrina/hand.svg"
  35404. }
  35405. },
  35406. head: {
  35407. height: math.unit(2.44, "meters"),
  35408. name: "Head",
  35409. image: {
  35410. source: "./media/characters/sabrina/head.svg"
  35411. }
  35412. },
  35413. headAngry: {
  35414. height: math.unit(2.44, "meters"),
  35415. name: "Head (Angry))",
  35416. image: {
  35417. source: "./media/characters/sabrina/head-angry.svg"
  35418. }
  35419. },
  35420. maw: {
  35421. height: math.unit(1.65, "meters"),
  35422. name: "Maw",
  35423. image: {
  35424. source: "./media/characters/sabrina/maw.svg"
  35425. }
  35426. },
  35427. spikes: {
  35428. height: math.unit(1.69, "meters"),
  35429. name: "Spikes",
  35430. image: {
  35431. source: "./media/characters/sabrina/spikes.svg"
  35432. }
  35433. },
  35434. stomach: {
  35435. height: math.unit(1.15, "meters"),
  35436. name: "Stomach",
  35437. image: {
  35438. source: "./media/characters/sabrina/stomach.svg"
  35439. }
  35440. },
  35441. tongue: {
  35442. height: math.unit(1.27, "meters"),
  35443. name: "Tongue",
  35444. image: {
  35445. source: "./media/characters/sabrina/tongue.svg"
  35446. }
  35447. },
  35448. wingDorsal: {
  35449. height: math.unit(4.85, "meters"),
  35450. name: "Wing (Dorsal)",
  35451. image: {
  35452. source: "./media/characters/sabrina/wing-dorsal.svg"
  35453. }
  35454. },
  35455. wingVentral: {
  35456. height: math.unit(4.85, "meters"),
  35457. name: "Wing (Ventral)",
  35458. image: {
  35459. source: "./media/characters/sabrina/wing-ventral.svg"
  35460. }
  35461. },
  35462. },
  35463. [
  35464. {
  35465. name: "Normal",
  35466. height: math.unit(5, "meters"),
  35467. default: true
  35468. },
  35469. ]
  35470. ))
  35471. characterMakers.push(() => makeCharacter(
  35472. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35473. {
  35474. frontMaid: {
  35475. height: math.unit(5 + 5/12, "feet"),
  35476. weight: math.unit(130, "lb"),
  35477. name: "Front (Maid)",
  35478. image: {
  35479. source: "./media/characters/midnight-tales/front-maid.svg",
  35480. extra: 489/454,
  35481. bottom: 61/550
  35482. }
  35483. },
  35484. frontFormal: {
  35485. height: math.unit(5 + 5/12, "feet"),
  35486. weight: math.unit(130, "lb"),
  35487. name: "Front (Formal)",
  35488. image: {
  35489. source: "./media/characters/midnight-tales/front-formal.svg",
  35490. extra: 489/454,
  35491. bottom: 61/550
  35492. }
  35493. },
  35494. back: {
  35495. height: math.unit(5 + 5/12, "feet"),
  35496. weight: math.unit(130, "lb"),
  35497. name: "Back",
  35498. image: {
  35499. source: "./media/characters/midnight-tales/back.svg",
  35500. extra: 498/456,
  35501. bottom: 33/531
  35502. }
  35503. },
  35504. frontBeast: {
  35505. height: math.unit(40, "feet"),
  35506. weight: math.unit(64000, "lb"),
  35507. name: "Front (Beast)",
  35508. image: {
  35509. source: "./media/characters/midnight-tales/front-beast.svg",
  35510. extra: 927/860,
  35511. bottom: 53/980
  35512. }
  35513. },
  35514. backBeast: {
  35515. height: math.unit(40, "feet"),
  35516. weight: math.unit(64000, "lb"),
  35517. name: "Back (Beast)",
  35518. image: {
  35519. source: "./media/characters/midnight-tales/back-beast.svg",
  35520. extra: 929/855,
  35521. bottom: 16/945
  35522. }
  35523. },
  35524. footBeast: {
  35525. height: math.unit(6.7, "feet"),
  35526. name: "Foot (Beast)",
  35527. image: {
  35528. source: "./media/characters/midnight-tales/foot-beast.svg"
  35529. }
  35530. },
  35531. headBeast: {
  35532. height: math.unit(8, "feet"),
  35533. name: "Head (Beast)",
  35534. image: {
  35535. source: "./media/characters/midnight-tales/head-beast.svg"
  35536. }
  35537. },
  35538. },
  35539. [
  35540. {
  35541. name: "Normal",
  35542. height: math.unit(5 + 5 / 12, "feet"),
  35543. default: true
  35544. },
  35545. {
  35546. name: "Macro",
  35547. height: math.unit(25, "feet")
  35548. },
  35549. ]
  35550. ))
  35551. characterMakers.push(() => makeCharacter(
  35552. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35553. {
  35554. front: {
  35555. height: math.unit(5 + 10/12, "feet"),
  35556. name: "Front",
  35557. image: {
  35558. source: "./media/characters/argon/front.svg",
  35559. extra: 2009/1935,
  35560. bottom: 118/2127
  35561. }
  35562. },
  35563. back: {
  35564. height: math.unit(5 + 10/12, "feet"),
  35565. name: "Back",
  35566. image: {
  35567. source: "./media/characters/argon/back.svg",
  35568. extra: 2047/1992,
  35569. bottom: 20/2067
  35570. }
  35571. },
  35572. frontDressed: {
  35573. height: math.unit(5 + 10/12, "feet"),
  35574. name: "Front (Dressed)",
  35575. image: {
  35576. source: "./media/characters/argon/front-dressed.svg",
  35577. extra: 2009/1935,
  35578. bottom: 118/2127
  35579. }
  35580. },
  35581. },
  35582. [
  35583. {
  35584. name: "Normal",
  35585. height: math.unit(5 + 10/12, "feet"),
  35586. default: true
  35587. },
  35588. ]
  35589. ))
  35590. characterMakers.push(() => makeCharacter(
  35591. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35592. {
  35593. front: {
  35594. height: math.unit(8 + 6/12, "feet"),
  35595. weight: math.unit(1150, "lb"),
  35596. name: "Front",
  35597. image: {
  35598. source: "./media/characters/kichi/front.svg",
  35599. extra: 1267/1164,
  35600. bottom: 61/1328
  35601. }
  35602. },
  35603. back: {
  35604. height: math.unit(8 + 6/12, "feet"),
  35605. weight: math.unit(1150, "lb"),
  35606. name: "Back",
  35607. image: {
  35608. source: "./media/characters/kichi/back.svg",
  35609. extra: 1273/1166,
  35610. bottom: 33/1306
  35611. }
  35612. },
  35613. },
  35614. [
  35615. {
  35616. name: "Normal",
  35617. height: math.unit(8 + 6/12, "feet"),
  35618. default: true
  35619. },
  35620. ]
  35621. ))
  35622. characterMakers.push(() => makeCharacter(
  35623. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35624. {
  35625. front: {
  35626. height: math.unit(6, "feet"),
  35627. weight: math.unit(210, "lb"),
  35628. name: "Front",
  35629. image: {
  35630. source: "./media/characters/manetel-greyscale/front.svg",
  35631. extra: 350/312,
  35632. bottom: 8/358
  35633. }
  35634. },
  35635. },
  35636. [
  35637. {
  35638. name: "Micro",
  35639. height: math.unit(2, "inches")
  35640. },
  35641. {
  35642. name: "Normal",
  35643. height: math.unit(6, "feet"),
  35644. default: true
  35645. },
  35646. {
  35647. name: "Minimacro",
  35648. height: math.unit(17, "feet")
  35649. },
  35650. {
  35651. name: "Macro",
  35652. height: math.unit(117, "feet")
  35653. },
  35654. ]
  35655. ))
  35656. characterMakers.push(() => makeCharacter(
  35657. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35658. {
  35659. side: {
  35660. height: math.unit(5 + 1/12, "feet"),
  35661. weight: math.unit(418, "lb"),
  35662. name: "Side",
  35663. image: {
  35664. source: "./media/characters/softpurr/side.svg",
  35665. extra: 1993/1945,
  35666. bottom: 134/2127
  35667. }
  35668. },
  35669. front: {
  35670. height: math.unit(5 + 1/12, "feet"),
  35671. weight: math.unit(418, "lb"),
  35672. name: "Front",
  35673. image: {
  35674. source: "./media/characters/softpurr/front.svg",
  35675. extra: 1950/1856,
  35676. bottom: 174/2124
  35677. }
  35678. },
  35679. paw: {
  35680. height: math.unit(1, "feet"),
  35681. name: "Paw",
  35682. image: {
  35683. source: "./media/characters/softpurr/paw.svg"
  35684. }
  35685. },
  35686. },
  35687. [
  35688. {
  35689. name: "Normal",
  35690. height: math.unit(5 + 1/12, "feet"),
  35691. default: true
  35692. },
  35693. ]
  35694. ))
  35695. characterMakers.push(() => makeCharacter(
  35696. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35697. {
  35698. front: {
  35699. height: math.unit(260, "meters"),
  35700. name: "Front",
  35701. image: {
  35702. source: "./media/characters/anahita/front.svg",
  35703. extra: 665/635,
  35704. bottom: 89/754
  35705. }
  35706. },
  35707. },
  35708. [
  35709. {
  35710. name: "Macro",
  35711. height: math.unit(260, "meters"),
  35712. default: true
  35713. },
  35714. ]
  35715. ))
  35716. characterMakers.push(() => makeCharacter(
  35717. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35718. {
  35719. front: {
  35720. height: math.unit(4 + 10/12, "feet"),
  35721. weight: math.unit(160, "lb"),
  35722. name: "Front",
  35723. image: {
  35724. source: "./media/characters/chip-mouse/front.svg",
  35725. extra: 3528/3408,
  35726. bottom: 0/3528
  35727. }
  35728. },
  35729. frontNsfw: {
  35730. height: math.unit(4 + 10/12, "feet"),
  35731. weight: math.unit(160, "lb"),
  35732. name: "Front (NSFW)",
  35733. image: {
  35734. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35735. extra: 3528/3408,
  35736. bottom: 0/3528
  35737. }
  35738. },
  35739. },
  35740. [
  35741. {
  35742. name: "Normal",
  35743. height: math.unit(4 + 10/12, "feet"),
  35744. default: true
  35745. },
  35746. ]
  35747. ))
  35748. characterMakers.push(() => makeCharacter(
  35749. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35750. {
  35751. side: {
  35752. height: math.unit(10, "feet"),
  35753. weight: math.unit(14000, "lb"),
  35754. name: "Side",
  35755. image: {
  35756. source: "./media/characters/kremm/side.svg",
  35757. extra: 1390/1053,
  35758. bottom: 90/1480
  35759. }
  35760. },
  35761. gut: {
  35762. height: math.unit(5.8, "feet"),
  35763. name: "Gut",
  35764. image: {
  35765. source: "./media/characters/kremm/gut.svg"
  35766. }
  35767. },
  35768. ass: {
  35769. height: math.unit(6.1, "feet"),
  35770. name: "Ass",
  35771. image: {
  35772. source: "./media/characters/kremm/ass.svg"
  35773. }
  35774. },
  35775. jaws: {
  35776. height: math.unit(2.2, "feet"),
  35777. name: "Jaws",
  35778. image: {
  35779. source: "./media/characters/kremm/jaws.svg"
  35780. }
  35781. },
  35782. dick: {
  35783. height: math.unit(4.26, "feet"),
  35784. name: "Dick",
  35785. image: {
  35786. source: "./media/characters/kremm/dick.svg"
  35787. }
  35788. },
  35789. },
  35790. [
  35791. {
  35792. name: "Normal",
  35793. height: math.unit(10, "feet"),
  35794. default: true
  35795. },
  35796. ]
  35797. ))
  35798. characterMakers.push(() => makeCharacter(
  35799. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35800. {
  35801. front: {
  35802. height: math.unit(30, "stories"),
  35803. name: "Front",
  35804. image: {
  35805. source: "./media/characters/kai/front.svg",
  35806. extra: 1892/1718,
  35807. bottom: 162/2054
  35808. }
  35809. },
  35810. },
  35811. [
  35812. {
  35813. name: "Macro",
  35814. height: math.unit(30, "stories"),
  35815. default: true
  35816. },
  35817. ]
  35818. ))
  35819. characterMakers.push(() => makeCharacter(
  35820. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35821. {
  35822. front: {
  35823. height: math.unit(6 + 4/12, "feet"),
  35824. weight: math.unit(145, "lb"),
  35825. name: "Front",
  35826. image: {
  35827. source: "./media/characters/sykes/front.svg",
  35828. extra: 1321 / 1187,
  35829. bottom: 66 / 1387
  35830. }
  35831. },
  35832. back: {
  35833. height: math.unit(6 + 4/12, "feet"),
  35834. weight: math.unit(145, "lb"),
  35835. name: "Back",
  35836. image: {
  35837. source: "./media/characters/sykes/back.svg",
  35838. extra: 1326/1181,
  35839. bottom: 31/1357
  35840. }
  35841. },
  35842. traditionalOutfit: {
  35843. height: math.unit(6 + 4/12, "feet"),
  35844. weight: math.unit(145, "lb"),
  35845. name: "Traditional Outfit",
  35846. image: {
  35847. source: "./media/characters/sykes/traditional-outfit.svg",
  35848. extra: 1321 / 1187,
  35849. bottom: 66 / 1387
  35850. }
  35851. },
  35852. adventureOutfit: {
  35853. height: math.unit(6 + 4/12, "feet"),
  35854. weight: math.unit(145, "lb"),
  35855. name: "Adventure Outfit",
  35856. image: {
  35857. source: "./media/characters/sykes/adventure-outfit.svg",
  35858. extra: 1321 / 1187,
  35859. bottom: 66 / 1387
  35860. }
  35861. },
  35862. handLeft: {
  35863. height: math.unit(0.9, "feet"),
  35864. name: "Hand (Left)",
  35865. image: {
  35866. source: "./media/characters/sykes/hand-left.svg"
  35867. }
  35868. },
  35869. handRight: {
  35870. height: math.unit(0.839, "feet"),
  35871. name: "Hand (Right)",
  35872. image: {
  35873. source: "./media/characters/sykes/hand-right.svg"
  35874. }
  35875. },
  35876. leftFoot: {
  35877. height: math.unit(1.2, "feet"),
  35878. name: "Foot (Left)",
  35879. image: {
  35880. source: "./media/characters/sykes/foot-left.svg"
  35881. }
  35882. },
  35883. rightFoot: {
  35884. height: math.unit(1.2, "feet"),
  35885. name: "Foot (Right)",
  35886. image: {
  35887. source: "./media/characters/sykes/foot-right.svg"
  35888. }
  35889. },
  35890. maw: {
  35891. height: math.unit(1.93, "feet"),
  35892. name: "Maw",
  35893. image: {
  35894. source: "./media/characters/sykes/maw.svg"
  35895. }
  35896. },
  35897. teeth: {
  35898. height: math.unit(0.51, "feet"),
  35899. name: "Teeth",
  35900. image: {
  35901. source: "./media/characters/sykes/teeth.svg"
  35902. }
  35903. },
  35904. tongue: {
  35905. height: math.unit(2.13, "feet"),
  35906. name: "Tongue",
  35907. image: {
  35908. source: "./media/characters/sykes/tongue.svg"
  35909. }
  35910. },
  35911. uvula: {
  35912. height: math.unit(0.16, "feet"),
  35913. name: "Uvula",
  35914. image: {
  35915. source: "./media/characters/sykes/uvula.svg"
  35916. }
  35917. },
  35918. collar: {
  35919. height: math.unit(0.287, "feet"),
  35920. name: "Collar",
  35921. image: {
  35922. source: "./media/characters/sykes/collar.svg"
  35923. }
  35924. },
  35925. tail: {
  35926. height: math.unit(3.8, "feet"),
  35927. name: "Tail",
  35928. image: {
  35929. source: "./media/characters/sykes/tail.svg"
  35930. }
  35931. },
  35932. },
  35933. [
  35934. {
  35935. name: "Shrunken",
  35936. height: math.unit(5, "inches")
  35937. },
  35938. {
  35939. name: "Normal",
  35940. height: math.unit(6 + 4 / 12, "feet"),
  35941. default: true
  35942. },
  35943. {
  35944. name: "Big",
  35945. height: math.unit(15, "feet")
  35946. },
  35947. ]
  35948. ))
  35949. characterMakers.push(() => makeCharacter(
  35950. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35951. {
  35952. front: {
  35953. height: math.unit(5 + 8/12, "feet"),
  35954. weight: math.unit(190, "lb"),
  35955. name: "Front",
  35956. image: {
  35957. source: "./media/characters/oven-otter/front.svg",
  35958. extra: 1809/1740,
  35959. bottom: 181/1990
  35960. }
  35961. },
  35962. back: {
  35963. height: math.unit(5 + 8/12, "feet"),
  35964. weight: math.unit(190, "lb"),
  35965. name: "Back",
  35966. image: {
  35967. source: "./media/characters/oven-otter/back.svg",
  35968. extra: 1709/1635,
  35969. bottom: 118/1827
  35970. }
  35971. },
  35972. hand: {
  35973. height: math.unit(1.07, "feet"),
  35974. name: "Hand",
  35975. image: {
  35976. source: "./media/characters/oven-otter/hand.svg"
  35977. }
  35978. },
  35979. beans: {
  35980. height: math.unit(1.74, "feet"),
  35981. name: "Beans",
  35982. image: {
  35983. source: "./media/characters/oven-otter/beans.svg"
  35984. }
  35985. },
  35986. },
  35987. [
  35988. {
  35989. name: "Micro",
  35990. height: math.unit(0.5, "inches")
  35991. },
  35992. {
  35993. name: "Normal",
  35994. height: math.unit(5 + 8/12, "feet"),
  35995. default: true
  35996. },
  35997. {
  35998. name: "Macro",
  35999. height: math.unit(250, "feet")
  36000. },
  36001. {
  36002. name: "Really High",
  36003. height: math.unit(420, "feet")
  36004. },
  36005. ]
  36006. ))
  36007. characterMakers.push(() => makeCharacter(
  36008. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36009. {
  36010. front: {
  36011. height: math.unit(5, "meters"),
  36012. weight: math.unit(292000000000000, "kg"),
  36013. name: "Front",
  36014. image: {
  36015. source: "./media/characters/devourer/front.svg",
  36016. extra: 1800/1733,
  36017. bottom: 211/2011
  36018. }
  36019. },
  36020. maw: {
  36021. height: math.unit(1.1, "meter"),
  36022. name: "Maw",
  36023. image: {
  36024. source: "./media/characters/devourer/maw.svg"
  36025. }
  36026. },
  36027. },
  36028. [
  36029. {
  36030. name: "Small",
  36031. height: math.unit(3, "meters")
  36032. },
  36033. {
  36034. name: "Large",
  36035. height: math.unit(5, "meters"),
  36036. default: true
  36037. },
  36038. ]
  36039. ))
  36040. characterMakers.push(() => makeCharacter(
  36041. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36042. {
  36043. front: {
  36044. height: math.unit(6, "feet"),
  36045. weight: math.unit(400, "lb"),
  36046. name: "Front",
  36047. image: {
  36048. source: "./media/characters/ellarby/front.svg",
  36049. extra: 1909/1763,
  36050. bottom: 80/1989
  36051. }
  36052. },
  36053. back: {
  36054. height: math.unit(6, "feet"),
  36055. weight: math.unit(400, "lb"),
  36056. name: "Back",
  36057. image: {
  36058. source: "./media/characters/ellarby/back.svg",
  36059. extra: 1914/1784,
  36060. bottom: 172/2086
  36061. }
  36062. },
  36063. },
  36064. [
  36065. {
  36066. name: "Mischief",
  36067. height: math.unit(18, "inches")
  36068. },
  36069. {
  36070. name: "Trouble",
  36071. height: math.unit(12, "feet")
  36072. },
  36073. {
  36074. name: "Havoc",
  36075. height: math.unit(200, "feet"),
  36076. default: true
  36077. },
  36078. {
  36079. name: "Pandemonium",
  36080. height: math.unit(1, "mile")
  36081. },
  36082. {
  36083. name: "Catastrophe",
  36084. height: math.unit(100, "miles")
  36085. },
  36086. ]
  36087. ))
  36088. characterMakers.push(() => makeCharacter(
  36089. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36090. {
  36091. front: {
  36092. height: math.unit(4.7, "meters"),
  36093. weight: math.unit(6500, "kg"),
  36094. name: "Front",
  36095. image: {
  36096. source: "./media/characters/vex/front.svg",
  36097. extra: 1288/1140,
  36098. bottom: 100/1388
  36099. }
  36100. },
  36101. },
  36102. [
  36103. {
  36104. name: "Normal",
  36105. height: math.unit(4.7, "meters"),
  36106. default: true
  36107. },
  36108. ]
  36109. ))
  36110. characterMakers.push(() => makeCharacter(
  36111. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36112. {
  36113. normal: {
  36114. height: math.unit(6, "feet"),
  36115. weight: math.unit(350, "lb"),
  36116. name: "Normal",
  36117. image: {
  36118. source: "./media/characters/teshy/normal.svg",
  36119. extra: 1795/1735,
  36120. bottom: 16/1811
  36121. }
  36122. },
  36123. monsterFront: {
  36124. height: math.unit(12, "feet"),
  36125. weight: math.unit(4700, "lb"),
  36126. name: "Monster (Front)",
  36127. image: {
  36128. source: "./media/characters/teshy/monster-front.svg",
  36129. extra: 2042/2034,
  36130. bottom: 128/2170
  36131. }
  36132. },
  36133. monsterSide: {
  36134. height: math.unit(12, "feet"),
  36135. weight: math.unit(4700, "lb"),
  36136. name: "Monster (Side)",
  36137. image: {
  36138. source: "./media/characters/teshy/monster-side.svg",
  36139. extra: 2067/2056,
  36140. bottom: 70/2137
  36141. }
  36142. },
  36143. monsterBack: {
  36144. height: math.unit(12, "feet"),
  36145. weight: math.unit(4700, "lb"),
  36146. name: "Monster (Back)",
  36147. image: {
  36148. source: "./media/characters/teshy/monster-back.svg",
  36149. extra: 1921/1914,
  36150. bottom: 171/2092
  36151. }
  36152. },
  36153. },
  36154. [
  36155. {
  36156. name: "Normal",
  36157. height: math.unit(6, "feet"),
  36158. default: true
  36159. },
  36160. ]
  36161. ))
  36162. characterMakers.push(() => makeCharacter(
  36163. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36164. {
  36165. front: {
  36166. height: math.unit(6, "feet"),
  36167. name: "Front",
  36168. image: {
  36169. source: "./media/characters/ramey/front.svg",
  36170. extra: 790/787,
  36171. bottom: 27/817
  36172. }
  36173. },
  36174. },
  36175. [
  36176. {
  36177. name: "Normal",
  36178. height: math.unit(6, "feet"),
  36179. default: true
  36180. },
  36181. ]
  36182. ))
  36183. characterMakers.push(() => makeCharacter(
  36184. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36185. {
  36186. front: {
  36187. height: math.unit(5 + 5/12, "feet"),
  36188. weight: math.unit(120, "lb"),
  36189. name: "Front",
  36190. image: {
  36191. source: "./media/characters/phirae/front.svg",
  36192. extra: 2491/2436,
  36193. bottom: 38/2529
  36194. }
  36195. },
  36196. },
  36197. [
  36198. {
  36199. name: "Normal",
  36200. height: math.unit(5 + 5/12, "feet"),
  36201. default: true
  36202. },
  36203. ]
  36204. ))
  36205. characterMakers.push(() => makeCharacter(
  36206. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36207. {
  36208. front: {
  36209. height: math.unit(5 + 3/12, "feet"),
  36210. name: "Front",
  36211. image: {
  36212. source: "./media/characters/stagglas/front.svg",
  36213. extra: 962/882,
  36214. bottom: 53/1015
  36215. }
  36216. },
  36217. feral: {
  36218. height: math.unit(335, "cm"),
  36219. name: "Feral",
  36220. image: {
  36221. source: "./media/characters/stagglas/feral.svg",
  36222. extra: 1732/1090,
  36223. bottom: 48/1780
  36224. }
  36225. },
  36226. },
  36227. [
  36228. {
  36229. name: "Normal",
  36230. height: math.unit(5 + 3/12, "feet"),
  36231. default: true
  36232. },
  36233. ]
  36234. ))
  36235. characterMakers.push(() => makeCharacter(
  36236. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36237. {
  36238. front: {
  36239. height: math.unit(5 + 4/12, "feet"),
  36240. weight: math.unit(145, "lb"),
  36241. name: "Front",
  36242. image: {
  36243. source: "./media/characters/starra/front.svg",
  36244. extra: 1790/1691,
  36245. bottom: 91/1881
  36246. }
  36247. },
  36248. },
  36249. [
  36250. {
  36251. name: "Normal",
  36252. height: math.unit(5 + 4/12, "feet"),
  36253. default: true
  36254. },
  36255. ]
  36256. ))
  36257. characterMakers.push(() => makeCharacter(
  36258. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36259. {
  36260. front: {
  36261. height: math.unit(2.2, "meters"),
  36262. name: "Front",
  36263. image: {
  36264. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36265. extra: 1248/972,
  36266. bottom: 38/1286
  36267. }
  36268. },
  36269. },
  36270. [
  36271. {
  36272. name: "Normal",
  36273. height: math.unit(2.2, "meters"),
  36274. default: true
  36275. },
  36276. ]
  36277. ))
  36278. characterMakers.push(() => makeCharacter(
  36279. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36280. {
  36281. side: {
  36282. height: math.unit(8 + 2/12, "feet"),
  36283. weight: math.unit(1240, "lb"),
  36284. name: "Side",
  36285. image: {
  36286. source: "./media/characters/mika-valentine/side.svg",
  36287. extra: 2670/2501,
  36288. bottom: 250/2920
  36289. }
  36290. },
  36291. },
  36292. [
  36293. {
  36294. name: "Normal",
  36295. height: math.unit(8 + 2/12, "feet"),
  36296. default: true
  36297. },
  36298. ]
  36299. ))
  36300. characterMakers.push(() => makeCharacter(
  36301. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36302. {
  36303. front: {
  36304. height: math.unit(7 + 2/12, "feet"),
  36305. name: "Front",
  36306. image: {
  36307. source: "./media/characters/xoltol/front.svg",
  36308. extra: 2212/2124,
  36309. bottom: 84/2296
  36310. }
  36311. },
  36312. side: {
  36313. height: math.unit(7 + 2/12, "feet"),
  36314. name: "Side",
  36315. image: {
  36316. source: "./media/characters/xoltol/side.svg",
  36317. extra: 2273/2197,
  36318. bottom: 26/2299
  36319. }
  36320. },
  36321. hand: {
  36322. height: math.unit(2.5, "feet"),
  36323. name: "Hand",
  36324. image: {
  36325. source: "./media/characters/xoltol/hand.svg"
  36326. }
  36327. },
  36328. },
  36329. [
  36330. {
  36331. name: "Small-ish",
  36332. height: math.unit(5 + 11/12, "feet")
  36333. },
  36334. {
  36335. name: "Normal",
  36336. height: math.unit(7 + 2/12, "feet")
  36337. },
  36338. {
  36339. name: "\"Macro\"",
  36340. height: math.unit(14 + 9/12, "feet"),
  36341. default: true
  36342. },
  36343. {
  36344. name: "Alternate Height",
  36345. height: math.unit(20, "feet")
  36346. },
  36347. {
  36348. name: "Actually Macro",
  36349. height: math.unit(100, "feet")
  36350. },
  36351. ]
  36352. ))
  36353. characterMakers.push(() => makeCharacter(
  36354. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36355. {
  36356. front: {
  36357. height: math.unit(5 + 2/12, "feet"),
  36358. name: "Front",
  36359. image: {
  36360. source: "./media/characters/kotetsu-redwood/front.svg",
  36361. extra: 1053/942,
  36362. bottom: 60/1113
  36363. }
  36364. },
  36365. },
  36366. [
  36367. {
  36368. name: "Normal",
  36369. height: math.unit(5 + 2/12, "feet"),
  36370. default: true
  36371. },
  36372. ]
  36373. ))
  36374. characterMakers.push(() => makeCharacter(
  36375. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36376. {
  36377. front: {
  36378. height: math.unit(2.4, "meters"),
  36379. weight: math.unit(125, "kg"),
  36380. name: "Front",
  36381. image: {
  36382. source: "./media/characters/lilith/front.svg",
  36383. extra: 1590/1513,
  36384. bottom: 203/1793
  36385. }
  36386. },
  36387. },
  36388. [
  36389. {
  36390. name: "Humanoid",
  36391. height: math.unit(2.4, "meters")
  36392. },
  36393. {
  36394. name: "Normal",
  36395. height: math.unit(6, "meters"),
  36396. default: true
  36397. },
  36398. {
  36399. name: "Largest",
  36400. height: math.unit(55, "meters")
  36401. },
  36402. ]
  36403. ))
  36404. characterMakers.push(() => makeCharacter(
  36405. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36406. {
  36407. front: {
  36408. height: math.unit(8 + 4/12, "feet"),
  36409. weight: math.unit(535, "lb"),
  36410. name: "Front",
  36411. image: {
  36412. source: "./media/characters/beh'kah-bolger/front.svg",
  36413. extra: 1660/1603,
  36414. bottom: 37/1697
  36415. }
  36416. },
  36417. },
  36418. [
  36419. {
  36420. name: "Normal",
  36421. height: math.unit(8 + 4/12, "feet"),
  36422. default: true
  36423. },
  36424. {
  36425. name: "Kaiju",
  36426. height: math.unit(250, "feet")
  36427. },
  36428. {
  36429. name: "Still Growing",
  36430. height: math.unit(10, "miles")
  36431. },
  36432. {
  36433. name: "Continental",
  36434. height: math.unit(5000, "miles")
  36435. },
  36436. {
  36437. name: "Final Form",
  36438. height: math.unit(2500000, "miles")
  36439. },
  36440. ]
  36441. ))
  36442. characterMakers.push(() => makeCharacter(
  36443. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36444. {
  36445. front: {
  36446. height: math.unit(7 + 2/12, "feet"),
  36447. weight: math.unit(230, "kg"),
  36448. name: "Front",
  36449. image: {
  36450. source: "./media/characters/tatyana-milewska/front.svg",
  36451. extra: 1199/1150,
  36452. bottom: 86/1285
  36453. }
  36454. },
  36455. },
  36456. [
  36457. {
  36458. name: "Normal",
  36459. height: math.unit(7 + 2/12, "feet"),
  36460. default: true
  36461. },
  36462. {
  36463. name: "Big",
  36464. height: math.unit(12, "feet")
  36465. },
  36466. {
  36467. name: "Minimacro",
  36468. height: math.unit(20, "feet")
  36469. },
  36470. {
  36471. name: "Macro",
  36472. height: math.unit(120, "feet")
  36473. },
  36474. ]
  36475. ))
  36476. characterMakers.push(() => makeCharacter(
  36477. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36478. {
  36479. front: {
  36480. height: math.unit(7 + 8/12, "feet"),
  36481. weight: math.unit(152, "kg"),
  36482. name: "Front",
  36483. image: {
  36484. source: "./media/characters/helen-arri/front.svg",
  36485. extra: 440/423,
  36486. bottom: 14/454
  36487. }
  36488. },
  36489. back: {
  36490. height: math.unit(7 + 8/12, "feet"),
  36491. weight: math.unit(152, "kg"),
  36492. name: "Back",
  36493. image: {
  36494. source: "./media/characters/helen-arri/back.svg",
  36495. extra: 443/426,
  36496. bottom: 8/451
  36497. }
  36498. },
  36499. },
  36500. [
  36501. {
  36502. name: "Normal",
  36503. height: math.unit(7 + 8/12, "feet"),
  36504. default: true
  36505. },
  36506. {
  36507. name: "Big",
  36508. height: math.unit(14, "feet")
  36509. },
  36510. {
  36511. name: "Minimacro",
  36512. height: math.unit(24, "feet")
  36513. },
  36514. {
  36515. name: "Macro",
  36516. height: math.unit(140, "feet")
  36517. },
  36518. ]
  36519. ))
  36520. characterMakers.push(() => makeCharacter(
  36521. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36522. {
  36523. front: {
  36524. height: math.unit(6, "meters"),
  36525. name: "Front",
  36526. image: {
  36527. source: "./media/characters/ehanu-rehu/front.svg",
  36528. extra: 1800/1800,
  36529. bottom: 59/1859
  36530. }
  36531. },
  36532. },
  36533. [
  36534. {
  36535. name: "Normal",
  36536. height: math.unit(6, "meters"),
  36537. default: true
  36538. },
  36539. ]
  36540. ))
  36541. characterMakers.push(() => makeCharacter(
  36542. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36543. {
  36544. front: {
  36545. height: math.unit(7 + 3/12, "feet"),
  36546. name: "Front",
  36547. image: {
  36548. source: "./media/characters/renholder/front.svg",
  36549. extra: 3096/2960,
  36550. bottom: 250/3346
  36551. }
  36552. },
  36553. },
  36554. [
  36555. {
  36556. name: "Normal Bat",
  36557. height: math.unit(7 + 3/12, "feet"),
  36558. default: true
  36559. },
  36560. {
  36561. name: "Slightly Tall Bat",
  36562. height: math.unit(100, "feet")
  36563. },
  36564. {
  36565. name: "Big Bat",
  36566. height: math.unit(1000, "feet")
  36567. },
  36568. {
  36569. name: "City-Sized Bat",
  36570. height: math.unit(200000, "feet")
  36571. },
  36572. {
  36573. name: "Bigger Bat",
  36574. height: math.unit(10000, "miles")
  36575. },
  36576. {
  36577. name: "Solar Sized Bat",
  36578. height: math.unit(100, "AU")
  36579. },
  36580. {
  36581. name: "Galactic Bat",
  36582. height: math.unit(200000, "lightyears")
  36583. },
  36584. {
  36585. name: "Universally Known Bat",
  36586. height: math.unit(1, "universe")
  36587. },
  36588. ]
  36589. ))
  36590. characterMakers.push(() => makeCharacter(
  36591. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36592. {
  36593. front: {
  36594. height: math.unit(6 + 11/12, "feet"),
  36595. weight: math.unit(250, "lb"),
  36596. name: "Front",
  36597. image: {
  36598. source: "./media/characters/cookiecat/front.svg",
  36599. extra: 893/827,
  36600. bottom: 14/907
  36601. }
  36602. },
  36603. },
  36604. [
  36605. {
  36606. name: "Micro",
  36607. height: math.unit(3, "inches")
  36608. },
  36609. {
  36610. name: "Normal",
  36611. height: math.unit(6 + 11/12, "feet"),
  36612. default: true
  36613. },
  36614. {
  36615. name: "Macro",
  36616. height: math.unit(100, "feet")
  36617. },
  36618. {
  36619. name: "Macro+",
  36620. height: math.unit(404, "feet")
  36621. },
  36622. {
  36623. name: "Megamacro",
  36624. height: math.unit(165, "miles")
  36625. },
  36626. {
  36627. name: "Planetary",
  36628. height: math.unit(4600, "miles")
  36629. },
  36630. ]
  36631. ))
  36632. characterMakers.push(() => makeCharacter(
  36633. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36634. {
  36635. front: {
  36636. height: math.unit(10 + 3/12, "feet"),
  36637. weight: math.unit(1500, "lb"),
  36638. name: "Front",
  36639. image: {
  36640. source: "./media/characters/tux-kusanagi/front.svg",
  36641. extra: 944/840,
  36642. bottom: 39/983
  36643. }
  36644. },
  36645. back: {
  36646. height: math.unit(10 + 3/12, "feet"),
  36647. weight: math.unit(1500, "lb"),
  36648. name: "Back",
  36649. image: {
  36650. source: "./media/characters/tux-kusanagi/back.svg",
  36651. extra: 941/842,
  36652. bottom: 28/969
  36653. }
  36654. },
  36655. rump: {
  36656. height: math.unit(5.25, "feet"),
  36657. name: "Rump",
  36658. image: {
  36659. source: "./media/characters/tux-kusanagi/rump.svg"
  36660. }
  36661. },
  36662. beak: {
  36663. height: math.unit(1.54, "feet"),
  36664. name: "Beak",
  36665. image: {
  36666. source: "./media/characters/tux-kusanagi/beak.svg"
  36667. }
  36668. },
  36669. },
  36670. [
  36671. {
  36672. name: "Normal",
  36673. height: math.unit(10 + 3/12, "feet"),
  36674. default: true
  36675. },
  36676. ]
  36677. ))
  36678. characterMakers.push(() => makeCharacter(
  36679. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36680. {
  36681. front: {
  36682. height: math.unit(58, "feet"),
  36683. weight: math.unit(200, "tons"),
  36684. name: "Front",
  36685. image: {
  36686. source: "./media/characters/uzarmazari/front.svg",
  36687. extra: 1575/1455,
  36688. bottom: 152/1727
  36689. }
  36690. },
  36691. back: {
  36692. height: math.unit(58, "feet"),
  36693. weight: math.unit(200, "tons"),
  36694. name: "Back",
  36695. image: {
  36696. source: "./media/characters/uzarmazari/back.svg",
  36697. extra: 1585/1510,
  36698. bottom: 157/1742
  36699. }
  36700. },
  36701. head: {
  36702. height: math.unit(26, "feet"),
  36703. name: "Head",
  36704. image: {
  36705. source: "./media/characters/uzarmazari/head.svg"
  36706. }
  36707. },
  36708. },
  36709. [
  36710. {
  36711. name: "Normal",
  36712. height: math.unit(58, "feet"),
  36713. default: true
  36714. },
  36715. ]
  36716. ))
  36717. characterMakers.push(() => makeCharacter(
  36718. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36719. {
  36720. side: {
  36721. height: math.unit(15, "feet"),
  36722. name: "Side",
  36723. image: {
  36724. source: "./media/characters/akitu/side.svg",
  36725. extra: 1421/1321,
  36726. bottom: 157/1578
  36727. }
  36728. },
  36729. front: {
  36730. height: math.unit(15, "feet"),
  36731. name: "Front",
  36732. image: {
  36733. source: "./media/characters/akitu/front.svg",
  36734. extra: 1435/1326,
  36735. bottom: 232/1667
  36736. }
  36737. },
  36738. },
  36739. [
  36740. {
  36741. name: "Normal",
  36742. height: math.unit(15, "feet"),
  36743. default: true
  36744. },
  36745. ]
  36746. ))
  36747. characterMakers.push(() => makeCharacter(
  36748. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36749. {
  36750. front: {
  36751. height: math.unit(10 + 8/12, "feet"),
  36752. name: "Front",
  36753. image: {
  36754. source: "./media/characters/azalie-croixland/front.svg",
  36755. extra: 1972/1856,
  36756. bottom: 31/2003
  36757. }
  36758. },
  36759. },
  36760. [
  36761. {
  36762. name: "Original Height",
  36763. height: math.unit(5 + 4/12, "feet")
  36764. },
  36765. {
  36766. name: "Normal Height",
  36767. height: math.unit(10 + 8/12, "feet"),
  36768. default: true
  36769. },
  36770. ]
  36771. ))
  36772. characterMakers.push(() => makeCharacter(
  36773. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36774. {
  36775. side: {
  36776. height: math.unit(7 + 1/12, "feet"),
  36777. weight: math.unit(245, "lb"),
  36778. name: "Side",
  36779. image: {
  36780. source: "./media/characters/kavus-kazian/side.svg",
  36781. extra: 349/342,
  36782. bottom: 15/364
  36783. }
  36784. },
  36785. },
  36786. [
  36787. {
  36788. name: "Normal",
  36789. height: math.unit(7 + 1/12, "feet"),
  36790. default: true
  36791. },
  36792. ]
  36793. ))
  36794. characterMakers.push(() => makeCharacter(
  36795. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36796. {
  36797. normalFront: {
  36798. height: math.unit(5 + 11/12, "feet"),
  36799. name: "Front",
  36800. image: {
  36801. source: "./media/characters/moonlight-rose/normal-front.svg",
  36802. extra: 1980/1825,
  36803. bottom: 18/1998
  36804. },
  36805. form: "normal",
  36806. default: true
  36807. },
  36808. normalBack: {
  36809. height: math.unit(5 + 11/12, "feet"),
  36810. name: "Back",
  36811. image: {
  36812. source: "./media/characters/moonlight-rose/normal-back.svg",
  36813. extra: 2010/1839,
  36814. bottom: 10/2020
  36815. },
  36816. form: "normal"
  36817. },
  36818. demonFront: {
  36819. height: math.unit(1.5, "earths"),
  36820. name: "Front",
  36821. image: {
  36822. source: "./media/characters/moonlight-rose/demon.svg",
  36823. extra: 1400/1294,
  36824. bottom: 45/1445
  36825. },
  36826. form: "demon",
  36827. default: true
  36828. },
  36829. terraFront: {
  36830. height: math.unit(1.5, "earths"),
  36831. name: "Front",
  36832. image: {
  36833. source: "./media/characters/moonlight-rose/terra.svg"
  36834. },
  36835. form: "terra",
  36836. default: true
  36837. },
  36838. jupiterFront: {
  36839. height: math.unit(69911*2, "km"),
  36840. name: "Front",
  36841. image: {
  36842. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36843. extra: 1367/1286,
  36844. bottom: 55/1422
  36845. },
  36846. form: "jupiter",
  36847. default: true
  36848. },
  36849. neptuneFront: {
  36850. height: math.unit(24622*2, "feet"),
  36851. name: "Front",
  36852. image: {
  36853. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36854. extra: 1851/1712,
  36855. bottom: 0/1851
  36856. },
  36857. form: "neptune",
  36858. default: true
  36859. },
  36860. },
  36861. [
  36862. {
  36863. name: "\"Natural\" Height",
  36864. height: math.unit(5 + 11/12, "feet"),
  36865. form: "normal"
  36866. },
  36867. {
  36868. name: "Smallest comfortable size",
  36869. height: math.unit(40, "meters"),
  36870. form: "normal"
  36871. },
  36872. {
  36873. name: "Common size",
  36874. height: math.unit(50, "km"),
  36875. form: "normal",
  36876. default: true
  36877. },
  36878. {
  36879. name: "Normal",
  36880. height: math.unit(1.5, "earths"),
  36881. form: "demon",
  36882. default: true
  36883. },
  36884. {
  36885. name: "Universal",
  36886. height: math.unit(15, "universes"),
  36887. form: "demon"
  36888. },
  36889. {
  36890. name: "Earth",
  36891. height: math.unit(1.5, "earths"),
  36892. form: "terra",
  36893. default: true
  36894. },
  36895. {
  36896. name: "Super Earth",
  36897. height: math.unit(67.5, "earths"),
  36898. form: "terra"
  36899. },
  36900. {
  36901. name: "Doesn't fit in a solar system...",
  36902. height: math.unit(1, "galaxy"),
  36903. form: "terra"
  36904. },
  36905. {
  36906. name: "Saturn",
  36907. height: math.unit(58232*2, "km"),
  36908. form: "jupiter"
  36909. },
  36910. {
  36911. name: "Jupiter",
  36912. height: math.unit(69911*2, "km"),
  36913. form: "jupiter",
  36914. default: true
  36915. },
  36916. {
  36917. name: "HD 100546 b",
  36918. height: math.unit(482938, "km"),
  36919. form: "jupiter"
  36920. },
  36921. {
  36922. name: "Enceladus",
  36923. height: math.unit(513*2, "km"),
  36924. form: "neptune"
  36925. },
  36926. {
  36927. name: "Europe",
  36928. height: math.unit(1560*2, "km"),
  36929. form: "neptune"
  36930. },
  36931. {
  36932. name: "Neptune",
  36933. height: math.unit(24622*2, "km"),
  36934. form: "neptune",
  36935. default: true
  36936. },
  36937. {
  36938. name: "CoRoT-9b",
  36939. height: math.unit(75067*2, "km"),
  36940. form: "neptune"
  36941. },
  36942. ],
  36943. {
  36944. "normal": {
  36945. name: "Normal",
  36946. default: true
  36947. },
  36948. "demon": {
  36949. name: "Demon"
  36950. },
  36951. "terra": {
  36952. name: "Terra"
  36953. },
  36954. "jupiter": {
  36955. name: "Jupiter"
  36956. },
  36957. "neptune": {
  36958. name: "Neptune"
  36959. }
  36960. }
  36961. ))
  36962. characterMakers.push(() => makeCharacter(
  36963. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36964. {
  36965. front: {
  36966. height: math.unit(16, "feet"),
  36967. weight: math.unit(610, "kg"),
  36968. name: "Front",
  36969. image: {
  36970. source: "./media/characters/huckle/front.svg",
  36971. extra: 1731/1625,
  36972. bottom: 33/1764
  36973. }
  36974. },
  36975. back: {
  36976. height: math.unit(16, "feet"),
  36977. weight: math.unit(610, "kg"),
  36978. name: "Back",
  36979. image: {
  36980. source: "./media/characters/huckle/back.svg",
  36981. extra: 1738/1651,
  36982. bottom: 37/1775
  36983. }
  36984. },
  36985. laughing: {
  36986. height: math.unit(3.75, "feet"),
  36987. name: "Laughing",
  36988. image: {
  36989. source: "./media/characters/huckle/laughing.svg"
  36990. }
  36991. },
  36992. angry: {
  36993. height: math.unit(4.15, "feet"),
  36994. name: "Angry",
  36995. image: {
  36996. source: "./media/characters/huckle/angry.svg"
  36997. }
  36998. },
  36999. },
  37000. [
  37001. {
  37002. name: "Normal",
  37003. height: math.unit(16, "feet"),
  37004. default: true
  37005. },
  37006. {
  37007. name: "Mini Macro",
  37008. height: math.unit(463, "feet")
  37009. },
  37010. {
  37011. name: "Macro",
  37012. height: math.unit(1680, "meters")
  37013. },
  37014. {
  37015. name: "Mega Macro",
  37016. height: math.unit(175, "km")
  37017. },
  37018. {
  37019. name: "Terra Macro",
  37020. height: math.unit(32, "gigameters")
  37021. },
  37022. {
  37023. name: "Multiverse+",
  37024. height: math.unit(2.56e23, "yottameters")
  37025. },
  37026. ]
  37027. ))
  37028. characterMakers.push(() => makeCharacter(
  37029. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37030. {
  37031. front: {
  37032. height: math.unit(6 + 9/12, "feet"),
  37033. weight: math.unit(280, "lb"),
  37034. name: "Front",
  37035. image: {
  37036. source: "./media/characters/candy/front.svg",
  37037. extra: 234/217,
  37038. bottom: 11/245
  37039. }
  37040. },
  37041. },
  37042. [
  37043. {
  37044. name: "Really Small",
  37045. height: math.unit(0.1, "nm")
  37046. },
  37047. {
  37048. name: "Micro",
  37049. height: math.unit(2, "inches")
  37050. },
  37051. {
  37052. name: "Normal",
  37053. height: math.unit(6 + 9/12, "feet"),
  37054. default: true
  37055. },
  37056. {
  37057. name: "Small Macro",
  37058. height: math.unit(69, "feet")
  37059. },
  37060. {
  37061. name: "Macro",
  37062. height: math.unit(160, "feet")
  37063. },
  37064. {
  37065. name: "Megamacro",
  37066. height: math.unit(22000, "miles")
  37067. },
  37068. {
  37069. name: "Gigamacro",
  37070. height: math.unit(50000, "miles")
  37071. },
  37072. ]
  37073. ))
  37074. characterMakers.push(() => makeCharacter(
  37075. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37076. {
  37077. front: {
  37078. height: math.unit(4, "feet"),
  37079. weight: math.unit(90, "lb"),
  37080. name: "Front",
  37081. image: {
  37082. source: "./media/characters/joey-mcdonald/front.svg",
  37083. extra: 1059/852,
  37084. bottom: 33/1092
  37085. }
  37086. },
  37087. back: {
  37088. height: math.unit(4, "feet"),
  37089. weight: math.unit(90, "lb"),
  37090. name: "Back",
  37091. image: {
  37092. source: "./media/characters/joey-mcdonald/back.svg",
  37093. extra: 1077/879,
  37094. bottom: 5/1082
  37095. }
  37096. },
  37097. frontKobold: {
  37098. height: math.unit(4, "feet"),
  37099. weight: math.unit(100, "lb"),
  37100. name: "Front-kobold",
  37101. image: {
  37102. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37103. extra: 1480/1367,
  37104. bottom: 0/1480
  37105. }
  37106. },
  37107. backKobold: {
  37108. height: math.unit(4, "feet"),
  37109. weight: math.unit(100, "lb"),
  37110. name: "Back-kobold",
  37111. image: {
  37112. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37113. extra: 1449/1361,
  37114. bottom: 0/1449
  37115. }
  37116. },
  37117. },
  37118. [
  37119. {
  37120. name: "Normal",
  37121. height: math.unit(4, "feet"),
  37122. default: true
  37123. },
  37124. ]
  37125. ))
  37126. characterMakers.push(() => makeCharacter(
  37127. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37128. {
  37129. front: {
  37130. height: math.unit(12 + 6/12, "feet"),
  37131. name: "Front",
  37132. image: {
  37133. source: "./media/characters/kass-lockheed/front.svg",
  37134. extra: 354/343,
  37135. bottom: 9/363
  37136. }
  37137. },
  37138. back: {
  37139. height: math.unit(12 + 6/12, "feet"),
  37140. name: "Back",
  37141. image: {
  37142. source: "./media/characters/kass-lockheed/back.svg",
  37143. extra: 364/352,
  37144. bottom: 3/367
  37145. }
  37146. },
  37147. dick: {
  37148. height: math.unit(3.12, "feet"),
  37149. name: "Dick",
  37150. image: {
  37151. source: "./media/characters/kass-lockheed/dick.svg"
  37152. }
  37153. },
  37154. head: {
  37155. height: math.unit(2.6, "feet"),
  37156. name: "Head",
  37157. image: {
  37158. source: "./media/characters/kass-lockheed/head.svg"
  37159. }
  37160. },
  37161. bleh: {
  37162. height: math.unit(2.85, "feet"),
  37163. name: "Bleh",
  37164. image: {
  37165. source: "./media/characters/kass-lockheed/bleh.svg"
  37166. }
  37167. },
  37168. smug: {
  37169. height: math.unit(2.85, "feet"),
  37170. name: "Smug",
  37171. image: {
  37172. source: "./media/characters/kass-lockheed/smug.svg"
  37173. }
  37174. },
  37175. },
  37176. [
  37177. {
  37178. name: "Normal",
  37179. height: math.unit(12 + 6/12, "feet"),
  37180. default: true
  37181. },
  37182. ]
  37183. ))
  37184. characterMakers.push(() => makeCharacter(
  37185. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37186. {
  37187. front: {
  37188. height: math.unit(6 + 2/12, "feet"),
  37189. name: "Front",
  37190. image: {
  37191. source: "./media/characters/taylor/front.svg",
  37192. extra: 639/495,
  37193. bottom: 12/651
  37194. }
  37195. },
  37196. },
  37197. [
  37198. {
  37199. name: "Normal",
  37200. height: math.unit(6 + 2/12, "feet"),
  37201. default: true
  37202. },
  37203. {
  37204. name: "Big",
  37205. height: math.unit(15, "feet")
  37206. },
  37207. {
  37208. name: "Lorg",
  37209. height: math.unit(80, "feet")
  37210. },
  37211. {
  37212. name: "Too Lorg",
  37213. height: math.unit(120, "feet")
  37214. },
  37215. ]
  37216. ))
  37217. characterMakers.push(() => makeCharacter(
  37218. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37219. {
  37220. front: {
  37221. height: math.unit(15, "feet"),
  37222. name: "Front",
  37223. image: {
  37224. source: "./media/characters/kaizer/front.svg",
  37225. extra: 1612/1436,
  37226. bottom: 43/1655
  37227. }
  37228. },
  37229. },
  37230. [
  37231. {
  37232. name: "Normal",
  37233. height: math.unit(15, "feet"),
  37234. default: true
  37235. },
  37236. ]
  37237. ))
  37238. characterMakers.push(() => makeCharacter(
  37239. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37240. {
  37241. front: {
  37242. height: math.unit(2, "feet"),
  37243. weight: math.unit(30, "lb"),
  37244. name: "Front",
  37245. image: {
  37246. source: "./media/characters/sandy/front.svg",
  37247. extra: 1439/1307,
  37248. bottom: 194/1633
  37249. }
  37250. },
  37251. },
  37252. [
  37253. {
  37254. name: "Normal",
  37255. height: math.unit(2, "feet"),
  37256. default: true
  37257. },
  37258. ]
  37259. ))
  37260. characterMakers.push(() => makeCharacter(
  37261. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37262. {
  37263. front: {
  37264. height: math.unit(3, "feet"),
  37265. name: "Front",
  37266. image: {
  37267. source: "./media/characters/mellvi/front.svg",
  37268. extra: 1831/1630,
  37269. bottom: 58/1889
  37270. }
  37271. },
  37272. },
  37273. [
  37274. {
  37275. name: "Normal",
  37276. height: math.unit(3, "feet"),
  37277. default: true
  37278. },
  37279. ]
  37280. ))
  37281. characterMakers.push(() => makeCharacter(
  37282. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37283. {
  37284. front: {
  37285. height: math.unit(5 + 11/12, "feet"),
  37286. weight: math.unit(200, "lb"),
  37287. name: "Front",
  37288. image: {
  37289. source: "./media/characters/shirou/front.svg",
  37290. extra: 2491/2383,
  37291. bottom: 189/2680
  37292. }
  37293. },
  37294. back: {
  37295. height: math.unit(5 + 11/12, "feet"),
  37296. weight: math.unit(200, "lb"),
  37297. name: "Back",
  37298. image: {
  37299. source: "./media/characters/shirou/back.svg",
  37300. extra: 2554/2450,
  37301. bottom: 76/2630
  37302. }
  37303. },
  37304. },
  37305. [
  37306. {
  37307. name: "Normal",
  37308. height: math.unit(5 + 11/12, "feet"),
  37309. default: true
  37310. },
  37311. ]
  37312. ))
  37313. characterMakers.push(() => makeCharacter(
  37314. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37315. {
  37316. front: {
  37317. height: math.unit(6 + 3/12, "feet"),
  37318. weight: math.unit(177, "lb"),
  37319. name: "Front",
  37320. image: {
  37321. source: "./media/characters/noryu/front.svg",
  37322. extra: 973/885,
  37323. bottom: 10/983
  37324. }
  37325. },
  37326. },
  37327. [
  37328. {
  37329. name: "Normal",
  37330. height: math.unit(6 + 3/12, "feet"),
  37331. default: true
  37332. },
  37333. ]
  37334. ))
  37335. characterMakers.push(() => makeCharacter(
  37336. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37337. {
  37338. front: {
  37339. height: math.unit(5 + 6/12, "feet"),
  37340. weight: math.unit(170, "lb"),
  37341. name: "Front",
  37342. image: {
  37343. source: "./media/characters/mevolas-rubenido/front.svg",
  37344. extra: 2109/1901,
  37345. bottom: 96/2205
  37346. }
  37347. },
  37348. },
  37349. [
  37350. {
  37351. name: "Normal",
  37352. height: math.unit(5 + 6/12, "feet"),
  37353. default: true
  37354. },
  37355. ]
  37356. ))
  37357. characterMakers.push(() => makeCharacter(
  37358. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37359. {
  37360. front: {
  37361. height: math.unit(100, "feet"),
  37362. name: "Front",
  37363. image: {
  37364. source: "./media/characters/dee/front.svg",
  37365. extra: 2153/2036,
  37366. bottom: 59/2212
  37367. }
  37368. },
  37369. back: {
  37370. height: math.unit(100, "feet"),
  37371. name: "Back",
  37372. image: {
  37373. source: "./media/characters/dee/back.svg",
  37374. extra: 2183/2058,
  37375. bottom: 75/2258
  37376. }
  37377. },
  37378. foot: {
  37379. height: math.unit(19.43, "feet"),
  37380. name: "Foot",
  37381. image: {
  37382. source: "./media/characters/dee/foot.svg"
  37383. }
  37384. },
  37385. hoof: {
  37386. height: math.unit(20.6, "feet"),
  37387. name: "Hoof",
  37388. image: {
  37389. source: "./media/characters/dee/hoof.svg"
  37390. }
  37391. },
  37392. },
  37393. [
  37394. {
  37395. name: "Macro",
  37396. height: math.unit(100, "feet"),
  37397. default: true
  37398. },
  37399. ]
  37400. ))
  37401. characterMakers.push(() => makeCharacter(
  37402. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37403. {
  37404. front: {
  37405. height: math.unit(5 + 6/12, "feet"),
  37406. name: "Front",
  37407. image: {
  37408. source: "./media/characters/teh/front.svg",
  37409. extra: 1002/847,
  37410. bottom: 62/1064
  37411. }
  37412. },
  37413. },
  37414. [
  37415. {
  37416. name: "Normal",
  37417. height: math.unit(5 + 6/12, "feet"),
  37418. default: true
  37419. },
  37420. ]
  37421. ))
  37422. characterMakers.push(() => makeCharacter(
  37423. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37424. {
  37425. side: {
  37426. height: math.unit(6 + 1/12, "feet"),
  37427. weight: math.unit(204, "lb"),
  37428. name: "Side",
  37429. image: {
  37430. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37431. extra: 974/775,
  37432. bottom: 169/1143
  37433. }
  37434. },
  37435. sitting: {
  37436. height: math.unit(6 + 2/12, "feet"),
  37437. weight: math.unit(204, "lb"),
  37438. name: "Sitting",
  37439. image: {
  37440. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37441. extra: 1175/964,
  37442. bottom: 378/1553
  37443. }
  37444. },
  37445. },
  37446. [
  37447. {
  37448. name: "Normal",
  37449. height: math.unit(6 + 1/12, "feet"),
  37450. default: true
  37451. },
  37452. ]
  37453. ))
  37454. characterMakers.push(() => makeCharacter(
  37455. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37456. {
  37457. front: {
  37458. height: math.unit(6, "inches"),
  37459. name: "Front",
  37460. image: {
  37461. source: "./media/characters/tululi/front.svg",
  37462. extra: 1997/1876,
  37463. bottom: 20/2017
  37464. }
  37465. },
  37466. },
  37467. [
  37468. {
  37469. name: "Normal",
  37470. height: math.unit(6, "inches"),
  37471. default: true
  37472. },
  37473. ]
  37474. ))
  37475. characterMakers.push(() => makeCharacter(
  37476. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37477. {
  37478. front: {
  37479. height: math.unit(4 + 1/12, "feet"),
  37480. name: "Front",
  37481. image: {
  37482. source: "./media/characters/star/front.svg",
  37483. extra: 1493/1189,
  37484. bottom: 48/1541
  37485. }
  37486. },
  37487. },
  37488. [
  37489. {
  37490. name: "Normal",
  37491. height: math.unit(4 + 1/12, "feet"),
  37492. default: true
  37493. },
  37494. ]
  37495. ))
  37496. characterMakers.push(() => makeCharacter(
  37497. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37498. {
  37499. front: {
  37500. height: math.unit(6 + 3/12, "feet"),
  37501. name: "Front",
  37502. image: {
  37503. source: "./media/characters/comet/front.svg",
  37504. extra: 1681/1462,
  37505. bottom: 26/1707
  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: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37519. {
  37520. front: {
  37521. height: math.unit(950, "feet"),
  37522. name: "Front",
  37523. image: {
  37524. source: "./media/characters/vortex/front.svg",
  37525. extra: 1497/1434,
  37526. bottom: 56/1553
  37527. }
  37528. },
  37529. maw: {
  37530. height: math.unit(285, "feet"),
  37531. name: "Maw",
  37532. image: {
  37533. source: "./media/characters/vortex/maw.svg"
  37534. }
  37535. },
  37536. },
  37537. [
  37538. {
  37539. name: "Macro",
  37540. height: math.unit(950, "feet"),
  37541. default: true
  37542. },
  37543. ]
  37544. ))
  37545. characterMakers.push(() => makeCharacter(
  37546. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37547. {
  37548. front: {
  37549. height: math.unit(600, "feet"),
  37550. weight: math.unit(0.02, "grams"),
  37551. name: "Front",
  37552. image: {
  37553. source: "./media/characters/doodle/front.svg",
  37554. extra: 1578/1413,
  37555. bottom: 37/1615
  37556. }
  37557. },
  37558. },
  37559. [
  37560. {
  37561. name: "Macro",
  37562. height: math.unit(600, "feet"),
  37563. default: true
  37564. },
  37565. ]
  37566. ))
  37567. characterMakers.push(() => makeCharacter(
  37568. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37569. {
  37570. front: {
  37571. height: math.unit(6 + 6/12, "feet"),
  37572. name: "Front",
  37573. image: {
  37574. source: "./media/characters/jai/front.svg",
  37575. extra: 1645/1534,
  37576. bottom: 115/1760
  37577. }
  37578. },
  37579. },
  37580. [
  37581. {
  37582. name: "Normal",
  37583. height: math.unit(6 + 6/12, "feet"),
  37584. default: true
  37585. },
  37586. ]
  37587. ))
  37588. characterMakers.push(() => makeCharacter(
  37589. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37590. {
  37591. front: {
  37592. height: math.unit(6 + 8/12, "feet"),
  37593. name: "Front",
  37594. image: {
  37595. source: "./media/characters/pixel/front.svg",
  37596. extra: 1900/1735,
  37597. bottom: 63/1963
  37598. }
  37599. },
  37600. },
  37601. [
  37602. {
  37603. name: "Normal",
  37604. height: math.unit(6 + 8/12, "feet"),
  37605. default: true
  37606. },
  37607. ]
  37608. ))
  37609. characterMakers.push(() => makeCharacter(
  37610. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37611. {
  37612. back: {
  37613. height: math.unit(4 + 1/12, "feet"),
  37614. weight: math.unit(75, "lb"),
  37615. name: "Back",
  37616. image: {
  37617. source: "./media/characters/rhett/back.svg",
  37618. extra: 930/878,
  37619. bottom: 25/955
  37620. }
  37621. },
  37622. front: {
  37623. height: math.unit(4 + 1/12, "feet"),
  37624. weight: math.unit(75, "lb"),
  37625. name: "Front",
  37626. image: {
  37627. source: "./media/characters/rhett/front.svg",
  37628. extra: 1682/1586,
  37629. bottom: 92/1774
  37630. }
  37631. },
  37632. },
  37633. [
  37634. {
  37635. name: "Micro",
  37636. height: math.unit(8, "inches")
  37637. },
  37638. {
  37639. name: "Tiny",
  37640. height: math.unit(2, "feet")
  37641. },
  37642. {
  37643. name: "Normal",
  37644. height: math.unit(4 + 1/12, "feet"),
  37645. default: true
  37646. },
  37647. ]
  37648. ))
  37649. characterMakers.push(() => makeCharacter(
  37650. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37651. {
  37652. front: {
  37653. height: math.unit(3 + 3/12, "feet"),
  37654. name: "Front",
  37655. image: {
  37656. source: "./media/characters/penny/front.svg",
  37657. extra: 1406/1311,
  37658. bottom: 26/1432
  37659. }
  37660. },
  37661. },
  37662. [
  37663. {
  37664. name: "Normal",
  37665. height: math.unit(3 + 3/12, "feet"),
  37666. default: true
  37667. },
  37668. ]
  37669. ))
  37670. characterMakers.push(() => makeCharacter(
  37671. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37672. {
  37673. front: {
  37674. height: math.unit(4 + 11/12, "feet"),
  37675. name: "Front",
  37676. image: {
  37677. source: "./media/characters/monty/front.svg",
  37678. extra: 1479/1209,
  37679. bottom: 0/1479
  37680. }
  37681. },
  37682. },
  37683. [
  37684. {
  37685. name: "Normal",
  37686. height: math.unit(4 + 11/12, "feet"),
  37687. default: true
  37688. },
  37689. ]
  37690. ))
  37691. characterMakers.push(() => makeCharacter(
  37692. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37693. {
  37694. front: {
  37695. height: math.unit(8 + 4/12, "feet"),
  37696. name: "Front",
  37697. image: {
  37698. source: "./media/characters/sterling/front.svg",
  37699. extra: 1420/1236,
  37700. bottom: 27/1447
  37701. }
  37702. },
  37703. },
  37704. [
  37705. {
  37706. name: "Normal",
  37707. height: math.unit(8 + 4/12, "feet"),
  37708. default: true
  37709. },
  37710. ]
  37711. ))
  37712. characterMakers.push(() => makeCharacter(
  37713. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37714. {
  37715. front: {
  37716. height: math.unit(15, "feet"),
  37717. name: "Front",
  37718. image: {
  37719. source: "./media/characters/marble/front.svg",
  37720. extra: 973/937,
  37721. bottom: 32/1005
  37722. }
  37723. },
  37724. },
  37725. [
  37726. {
  37727. name: "Normal",
  37728. height: math.unit(15, "feet"),
  37729. default: true
  37730. },
  37731. ]
  37732. ))
  37733. characterMakers.push(() => makeCharacter(
  37734. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37735. {
  37736. front: {
  37737. height: math.unit(3, "inches"),
  37738. name: "Front",
  37739. image: {
  37740. source: "./media/characters/powder/front.svg",
  37741. extra: 1504/1334,
  37742. bottom: 518/2022
  37743. }
  37744. },
  37745. },
  37746. [
  37747. {
  37748. name: "Normal",
  37749. height: math.unit(3, "inches"),
  37750. default: true
  37751. },
  37752. ]
  37753. ))
  37754. characterMakers.push(() => makeCharacter(
  37755. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37756. {
  37757. front: {
  37758. height: math.unit(4 + 5/12, "feet"),
  37759. name: "Front",
  37760. image: {
  37761. source: "./media/characters/joey-raccoon/front.svg",
  37762. extra: 1273/1197,
  37763. bottom: 0/1273
  37764. }
  37765. },
  37766. },
  37767. [
  37768. {
  37769. name: "Normal",
  37770. height: math.unit(4 + 5/12, "feet"),
  37771. default: true
  37772. },
  37773. ]
  37774. ))
  37775. characterMakers.push(() => makeCharacter(
  37776. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37777. {
  37778. front: {
  37779. height: math.unit(8 + 4/12, "feet"),
  37780. name: "Front",
  37781. image: {
  37782. source: "./media/characters/vick/front.svg",
  37783. extra: 2187/2118,
  37784. bottom: 47/2234
  37785. }
  37786. },
  37787. },
  37788. [
  37789. {
  37790. name: "Normal",
  37791. height: math.unit(8 + 4/12, "feet"),
  37792. default: true
  37793. },
  37794. ]
  37795. ))
  37796. characterMakers.push(() => makeCharacter(
  37797. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37798. {
  37799. front: {
  37800. height: math.unit(5 + 5/12, "feet"),
  37801. name: "Front",
  37802. image: {
  37803. source: "./media/characters/mitsy/front.svg",
  37804. extra: 1842/1695,
  37805. bottom: 0/1842
  37806. }
  37807. },
  37808. },
  37809. [
  37810. {
  37811. name: "Normal",
  37812. height: math.unit(5 + 5/12, "feet"),
  37813. default: true
  37814. },
  37815. ]
  37816. ))
  37817. characterMakers.push(() => makeCharacter(
  37818. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37819. {
  37820. front: {
  37821. height: math.unit(6 + 3/12, "feet"),
  37822. name: "Front",
  37823. image: {
  37824. source: "./media/characters/silvy/front.svg",
  37825. extra: 1995/1836,
  37826. bottom: 225/2220
  37827. }
  37828. },
  37829. },
  37830. [
  37831. {
  37832. name: "Normal",
  37833. height: math.unit(6 + 3/12, "feet"),
  37834. default: true
  37835. },
  37836. ]
  37837. ))
  37838. characterMakers.push(() => makeCharacter(
  37839. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37840. {
  37841. front: {
  37842. height: math.unit(3 + 8/12, "feet"),
  37843. name: "Front",
  37844. image: {
  37845. source: "./media/characters/rodney/front.svg",
  37846. extra: 1956/1747,
  37847. bottom: 31/1987
  37848. }
  37849. },
  37850. frontDressed: {
  37851. height: math.unit(2.9, "feet"),
  37852. name: "Front (Dressed)",
  37853. image: {
  37854. source: "./media/characters/rodney/front-dressed.svg",
  37855. extra: 1382/1241,
  37856. bottom: 385/1767
  37857. }
  37858. },
  37859. },
  37860. [
  37861. {
  37862. name: "Normal",
  37863. height: math.unit(3 + 8/12, "feet"),
  37864. default: true
  37865. },
  37866. ]
  37867. ))
  37868. characterMakers.push(() => makeCharacter(
  37869. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37870. {
  37871. front: {
  37872. height: math.unit(5 + 9/12, "feet"),
  37873. weight: math.unit(194, "lbs"),
  37874. name: "Front",
  37875. image: {
  37876. source: "./media/characters/zakail-sudekai/front.svg",
  37877. extra: 2696/2533,
  37878. bottom: 248/2944
  37879. }
  37880. },
  37881. maw: {
  37882. height: math.unit(1.35, "feet"),
  37883. name: "Maw",
  37884. image: {
  37885. source: "./media/characters/zakail-sudekai/maw.svg"
  37886. }
  37887. },
  37888. },
  37889. [
  37890. {
  37891. name: "Normal",
  37892. height: math.unit(5 + 9/12, "feet"),
  37893. default: true
  37894. },
  37895. ]
  37896. ))
  37897. characterMakers.push(() => makeCharacter(
  37898. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37899. {
  37900. front: {
  37901. height: math.unit(8 + 4/12, "feet"),
  37902. weight: math.unit(1200, "lb"),
  37903. name: "Front",
  37904. image: {
  37905. source: "./media/characters/eleanor/front.svg",
  37906. extra: 1226/1192,
  37907. bottom: 52/1278
  37908. }
  37909. },
  37910. back: {
  37911. height: math.unit(8 + 4/12, "feet"),
  37912. weight: math.unit(1200, "lb"),
  37913. name: "Back",
  37914. image: {
  37915. source: "./media/characters/eleanor/back.svg",
  37916. extra: 1242/1184,
  37917. bottom: 60/1302
  37918. }
  37919. },
  37920. head: {
  37921. height: math.unit(2.62, "feet"),
  37922. name: "Head",
  37923. image: {
  37924. source: "./media/characters/eleanor/head.svg"
  37925. }
  37926. },
  37927. },
  37928. [
  37929. {
  37930. name: "Normal",
  37931. height: math.unit(8 + 4/12, "feet"),
  37932. default: true
  37933. },
  37934. ]
  37935. ))
  37936. characterMakers.push(() => makeCharacter(
  37937. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37938. {
  37939. front: {
  37940. height: math.unit(8 + 4/12, "feet"),
  37941. weight: math.unit(750, "lb"),
  37942. name: "Front",
  37943. image: {
  37944. source: "./media/characters/tanya/front.svg",
  37945. extra: 1749/1615,
  37946. bottom: 33/1782
  37947. }
  37948. },
  37949. },
  37950. [
  37951. {
  37952. name: "Normal",
  37953. height: math.unit(8 + 4/12, "feet"),
  37954. default: true
  37955. },
  37956. ]
  37957. ))
  37958. characterMakers.push(() => makeCharacter(
  37959. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37960. {
  37961. front: {
  37962. height: math.unit(5, "feet"),
  37963. weight: math.unit(225, "lb"),
  37964. name: "Front",
  37965. image: {
  37966. source: "./media/characters/cindy/front.svg",
  37967. extra: 1320/1250,
  37968. bottom: 42/1362
  37969. }
  37970. },
  37971. frontDressed: {
  37972. height: math.unit(5, "feet"),
  37973. weight: math.unit(225, "lb"),
  37974. name: "Front (Dressed)",
  37975. image: {
  37976. source: "./media/characters/cindy/front-dressed.svg",
  37977. extra: 1320/1250,
  37978. bottom: 42/1362
  37979. }
  37980. },
  37981. back: {
  37982. height: math.unit(5, "feet"),
  37983. weight: math.unit(225, "lb"),
  37984. name: "Back",
  37985. image: {
  37986. source: "./media/characters/cindy/back.svg",
  37987. extra: 1384/1346,
  37988. bottom: 14/1398
  37989. }
  37990. },
  37991. },
  37992. [
  37993. {
  37994. name: "Normal",
  37995. height: math.unit(5, "feet"),
  37996. default: true
  37997. },
  37998. ]
  37999. ))
  38000. characterMakers.push(() => makeCharacter(
  38001. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38002. {
  38003. front: {
  38004. height: math.unit(6 + 9/12, "feet"),
  38005. weight: math.unit(440, "lb"),
  38006. name: "Front",
  38007. image: {
  38008. source: "./media/characters/wilbur-owen/front.svg",
  38009. extra: 1575/1448,
  38010. bottom: 72/1647
  38011. }
  38012. },
  38013. back: {
  38014. height: math.unit(6 + 9/12, "feet"),
  38015. weight: math.unit(440, "lb"),
  38016. name: "Back",
  38017. image: {
  38018. source: "./media/characters/wilbur-owen/back.svg",
  38019. extra: 1578/1445,
  38020. bottom: 36/1614
  38021. }
  38022. },
  38023. },
  38024. [
  38025. {
  38026. name: "Normal",
  38027. height: math.unit(6 + 9/12, "feet"),
  38028. default: true
  38029. },
  38030. ]
  38031. ))
  38032. characterMakers.push(() => makeCharacter(
  38033. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38034. {
  38035. front: {
  38036. height: math.unit(6 + 5/12, "feet"),
  38037. weight: math.unit(650, "lb"),
  38038. name: "Front",
  38039. image: {
  38040. source: "./media/characters/keegan/front.svg",
  38041. extra: 2387/2198,
  38042. bottom: 33/2420
  38043. }
  38044. },
  38045. side: {
  38046. height: math.unit(6 + 5/12, "feet"),
  38047. weight: math.unit(650, "lb"),
  38048. name: "Side",
  38049. image: {
  38050. source: "./media/characters/keegan/side.svg",
  38051. extra: 2390/2202,
  38052. bottom: 47/2437
  38053. }
  38054. },
  38055. back: {
  38056. height: math.unit(6 + 5/12, "feet"),
  38057. weight: math.unit(650, "lb"),
  38058. name: "Back",
  38059. image: {
  38060. source: "./media/characters/keegan/back.svg",
  38061. extra: 2418/2268,
  38062. bottom: 15/2433
  38063. }
  38064. },
  38065. frontSfw: {
  38066. height: math.unit(6 + 5/12, "feet"),
  38067. weight: math.unit(650, "lb"),
  38068. name: "Front (SFW)",
  38069. image: {
  38070. source: "./media/characters/keegan/front-sfw.svg",
  38071. extra: 2387/2198,
  38072. bottom: 33/2420
  38073. }
  38074. },
  38075. beans: {
  38076. height: math.unit(1.85, "feet"),
  38077. name: "Beans",
  38078. image: {
  38079. source: "./media/characters/keegan/beans.svg"
  38080. }
  38081. },
  38082. },
  38083. [
  38084. {
  38085. name: "Normal",
  38086. height: math.unit(6 + 5/12, "feet"),
  38087. default: true
  38088. },
  38089. ]
  38090. ))
  38091. characterMakers.push(() => makeCharacter(
  38092. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38093. {
  38094. front: {
  38095. height: math.unit(9, "feet"),
  38096. name: "Front",
  38097. image: {
  38098. source: "./media/characters/colton/front.svg",
  38099. extra: 1589/1326,
  38100. bottom: 139/1728
  38101. }
  38102. },
  38103. },
  38104. [
  38105. {
  38106. name: "Normal",
  38107. height: math.unit(9, "feet"),
  38108. default: true
  38109. },
  38110. ]
  38111. ))
  38112. characterMakers.push(() => makeCharacter(
  38113. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38114. {
  38115. front: {
  38116. height: math.unit(2 + 9/12, "feet"),
  38117. name: "Front",
  38118. image: {
  38119. source: "./media/characters/bora/front.svg",
  38120. extra: 1265/1250,
  38121. bottom: 24/1289
  38122. }
  38123. },
  38124. },
  38125. [
  38126. {
  38127. name: "Normal",
  38128. height: math.unit(2 + 9/12, "feet"),
  38129. default: true
  38130. },
  38131. ]
  38132. ))
  38133. characterMakers.push(() => makeCharacter(
  38134. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38135. {
  38136. front: {
  38137. height: math.unit(8, "feet"),
  38138. name: "Front",
  38139. image: {
  38140. source: "./media/characters/myu-myu/front.svg",
  38141. extra: 1949/1857,
  38142. bottom: 90/2039
  38143. }
  38144. },
  38145. },
  38146. [
  38147. {
  38148. name: "Normal",
  38149. height: math.unit(8, "feet"),
  38150. default: true
  38151. },
  38152. {
  38153. name: "Big",
  38154. height: math.unit(15, "feet")
  38155. },
  38156. {
  38157. name: "BIG",
  38158. height: math.unit(25, "feet")
  38159. },
  38160. ]
  38161. ))
  38162. characterMakers.push(() => makeCharacter(
  38163. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38164. {
  38165. side: {
  38166. height: math.unit(7 + 5/12, "feet"),
  38167. weight: math.unit(2800, "lb"),
  38168. name: "Side",
  38169. image: {
  38170. source: "./media/characters/haloren/side.svg",
  38171. extra: 1793/409,
  38172. bottom: 59/1852
  38173. }
  38174. },
  38175. frontPaw: {
  38176. height: math.unit(2.36, "feet"),
  38177. name: "Front paw",
  38178. image: {
  38179. source: "./media/characters/haloren/front-paw.svg"
  38180. }
  38181. },
  38182. hindPaw: {
  38183. height: math.unit(3.18, "feet"),
  38184. name: "Hind paw",
  38185. image: {
  38186. source: "./media/characters/haloren/hind-paw.svg"
  38187. }
  38188. },
  38189. maw: {
  38190. height: math.unit(5.05, "feet"),
  38191. name: "Maw",
  38192. image: {
  38193. source: "./media/characters/haloren/maw.svg"
  38194. }
  38195. },
  38196. dick: {
  38197. height: math.unit(2.90, "feet"),
  38198. name: "Dick",
  38199. image: {
  38200. source: "./media/characters/haloren/dick.svg"
  38201. }
  38202. },
  38203. },
  38204. [
  38205. {
  38206. name: "Normal",
  38207. height: math.unit(7 + 5/12, "feet"),
  38208. default: true
  38209. },
  38210. {
  38211. name: "Enhanced",
  38212. height: math.unit(14 + 3/12, "feet")
  38213. },
  38214. ]
  38215. ))
  38216. characterMakers.push(() => makeCharacter(
  38217. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38218. {
  38219. front: {
  38220. height: math.unit(171, "cm"),
  38221. name: "Front",
  38222. image: {
  38223. source: "./media/characters/kimmy/front.svg",
  38224. extra: 1491/1435,
  38225. bottom: 53/1544
  38226. }
  38227. },
  38228. },
  38229. [
  38230. {
  38231. name: "Small",
  38232. height: math.unit(9, "cm")
  38233. },
  38234. {
  38235. name: "Normal",
  38236. height: math.unit(171, "cm"),
  38237. default: true
  38238. },
  38239. ]
  38240. ))
  38241. characterMakers.push(() => makeCharacter(
  38242. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38243. {
  38244. front: {
  38245. height: math.unit(8, "feet"),
  38246. weight: math.unit(300, "lb"),
  38247. name: "Front",
  38248. image: {
  38249. source: "./media/characters/galeboomer/front.svg",
  38250. extra: 4651/4415,
  38251. bottom: 162/4813
  38252. }
  38253. },
  38254. back: {
  38255. height: math.unit(8, "feet"),
  38256. weight: math.unit(300, "lb"),
  38257. name: "Back",
  38258. image: {
  38259. source: "./media/characters/galeboomer/back.svg",
  38260. extra: 4544/4314,
  38261. bottom: 16/4560
  38262. }
  38263. },
  38264. frontAlt: {
  38265. height: math.unit(8, "feet"),
  38266. weight: math.unit(300, "lb"),
  38267. name: "Front (Alt)",
  38268. image: {
  38269. source: "./media/characters/galeboomer/front-alt.svg",
  38270. extra: 4458/4228,
  38271. bottom: 68/4526
  38272. }
  38273. },
  38274. maw: {
  38275. height: math.unit(1.2, "feet"),
  38276. name: "Maw",
  38277. image: {
  38278. source: "./media/characters/galeboomer/maw.svg"
  38279. }
  38280. },
  38281. },
  38282. [
  38283. {
  38284. name: "Normal",
  38285. height: math.unit(8, "feet"),
  38286. default: true
  38287. },
  38288. ]
  38289. ))
  38290. characterMakers.push(() => makeCharacter(
  38291. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38292. {
  38293. front: {
  38294. height: math.unit(5 + 9/12, "feet"),
  38295. weight: math.unit(120, "lb"),
  38296. name: "Front",
  38297. image: {
  38298. source: "./media/characters/chyr/front.svg",
  38299. extra: 1323/1254,
  38300. bottom: 63/1386
  38301. }
  38302. },
  38303. back: {
  38304. height: math.unit(5 + 9/12, "feet"),
  38305. weight: math.unit(120, "lb"),
  38306. name: "Back",
  38307. image: {
  38308. source: "./media/characters/chyr/back.svg",
  38309. extra: 1323/1252,
  38310. bottom: 48/1371
  38311. }
  38312. },
  38313. },
  38314. [
  38315. {
  38316. name: "Normal",
  38317. height: math.unit(5 + 9/12, "feet"),
  38318. default: true
  38319. },
  38320. ]
  38321. ))
  38322. characterMakers.push(() => makeCharacter(
  38323. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38324. {
  38325. front: {
  38326. height: math.unit(7, "feet"),
  38327. weight: math.unit(310, "lb"),
  38328. name: "Front",
  38329. image: {
  38330. source: "./media/characters/solarus/front.svg",
  38331. extra: 2415/2021,
  38332. bottom: 103/2518
  38333. }
  38334. },
  38335. back: {
  38336. height: math.unit(7, "feet"),
  38337. weight: math.unit(310, "lb"),
  38338. name: "Back",
  38339. image: {
  38340. source: "./media/characters/solarus/back.svg",
  38341. extra: 2463/2089,
  38342. bottom: 79/2542
  38343. }
  38344. },
  38345. },
  38346. [
  38347. {
  38348. name: "Normal",
  38349. height: math.unit(7, "feet"),
  38350. default: true
  38351. },
  38352. ]
  38353. ))
  38354. characterMakers.push(() => makeCharacter(
  38355. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38356. {
  38357. front: {
  38358. height: math.unit(16, "feet"),
  38359. name: "Front",
  38360. image: {
  38361. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38362. extra: 1844/1780,
  38363. bottom: 58/1902
  38364. }
  38365. },
  38366. winterCoat: {
  38367. height: math.unit(16, "feet"),
  38368. name: "Winter Coat",
  38369. image: {
  38370. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38371. extra: 1807/1775,
  38372. bottom: 69/1876
  38373. }
  38374. },
  38375. },
  38376. [
  38377. {
  38378. name: "Normal",
  38379. height: math.unit(16, "feet"),
  38380. default: true
  38381. },
  38382. {
  38383. name: "Chicago Size",
  38384. height: math.unit(560, "feet")
  38385. },
  38386. ]
  38387. ))
  38388. characterMakers.push(() => makeCharacter(
  38389. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38390. {
  38391. front: {
  38392. height: math.unit(11 + 6/12, "feet"),
  38393. weight: math.unit(1366, "lb"),
  38394. name: "Front",
  38395. image: {
  38396. source: "./media/characters/lexor/front.svg",
  38397. extra: 1560/1481,
  38398. bottom: 211/1771
  38399. }
  38400. },
  38401. back: {
  38402. height: math.unit(11 + 6/12, "feet"),
  38403. weight: math.unit(1366, "lb"),
  38404. name: "Back",
  38405. image: {
  38406. source: "./media/characters/lexor/back.svg",
  38407. extra: 1614/1533,
  38408. bottom: 76/1690
  38409. }
  38410. },
  38411. maw: {
  38412. height: math.unit(3, "feet"),
  38413. name: "Maw",
  38414. image: {
  38415. source: "./media/characters/lexor/maw.svg"
  38416. }
  38417. },
  38418. dick: {
  38419. height: math.unit(2.59, "feet"),
  38420. name: "Dick",
  38421. image: {
  38422. source: "./media/characters/lexor/dick.svg"
  38423. }
  38424. },
  38425. },
  38426. [
  38427. {
  38428. name: "Normal",
  38429. height: math.unit(11 + 6/12, "feet"),
  38430. default: true
  38431. },
  38432. ]
  38433. ))
  38434. characterMakers.push(() => makeCharacter(
  38435. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38436. {
  38437. front: {
  38438. height: math.unit(5 + 8/12, "feet"),
  38439. name: "Front",
  38440. image: {
  38441. source: "./media/characters/magnum/front.svg",
  38442. extra: 942/855,
  38443. bottom: 26/968
  38444. }
  38445. },
  38446. },
  38447. [
  38448. {
  38449. name: "Normal",
  38450. height: math.unit(5 + 8/12, "feet"),
  38451. default: true
  38452. },
  38453. ]
  38454. ))
  38455. characterMakers.push(() => makeCharacter(
  38456. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38457. {
  38458. front: {
  38459. height: math.unit(18 + 4/12, "feet"),
  38460. weight: math.unit(1500, "kg"),
  38461. name: "Front",
  38462. image: {
  38463. source: "./media/characters/solas-sharpsman/front.svg",
  38464. extra: 1698/1589,
  38465. bottom: 0/1698
  38466. }
  38467. },
  38468. },
  38469. [
  38470. {
  38471. name: "Normal",
  38472. height: math.unit(18 + 4/12, "feet"),
  38473. default: true
  38474. },
  38475. ]
  38476. ))
  38477. characterMakers.push(() => makeCharacter(
  38478. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38479. {
  38480. front: {
  38481. height: math.unit(5 + 5/12, "feet"),
  38482. weight: math.unit(180, "lb"),
  38483. name: "Front",
  38484. image: {
  38485. source: "./media/characters/october/front.svg",
  38486. extra: 1800/1650,
  38487. bottom: 0/1800
  38488. }
  38489. },
  38490. frontNsfw: {
  38491. height: math.unit(5 + 5/12, "feet"),
  38492. weight: math.unit(180, "lb"),
  38493. name: "Front (NSFW)",
  38494. image: {
  38495. source: "./media/characters/october/front-nsfw.svg",
  38496. extra: 1392/1307,
  38497. bottom: 42/1434
  38498. }
  38499. },
  38500. },
  38501. [
  38502. {
  38503. name: "Normal",
  38504. height: math.unit(5 + 5/12, "feet"),
  38505. default: true
  38506. },
  38507. ]
  38508. ))
  38509. characterMakers.push(() => makeCharacter(
  38510. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38511. {
  38512. front: {
  38513. height: math.unit(8 + 6/12, "feet"),
  38514. name: "Front",
  38515. image: {
  38516. source: "./media/characters/essynkardi/front.svg",
  38517. extra: 1914/1846,
  38518. bottom: 22/1936
  38519. }
  38520. },
  38521. },
  38522. [
  38523. {
  38524. name: "Normal",
  38525. height: math.unit(8 + 6/12, "feet"),
  38526. default: true
  38527. },
  38528. ]
  38529. ))
  38530. characterMakers.push(() => makeCharacter(
  38531. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38532. {
  38533. front: {
  38534. height: math.unit(6 + 6/12, "feet"),
  38535. weight: math.unit(7, "lb"),
  38536. name: "Front",
  38537. image: {
  38538. source: "./media/characters/icky/front.svg",
  38539. extra: 813/782,
  38540. bottom: 66/879
  38541. }
  38542. },
  38543. back: {
  38544. height: math.unit(6 + 6/12, "feet"),
  38545. weight: math.unit(7, "lb"),
  38546. name: "Back",
  38547. image: {
  38548. source: "./media/characters/icky/back.svg",
  38549. extra: 754/735,
  38550. bottom: 56/810
  38551. }
  38552. },
  38553. },
  38554. [
  38555. {
  38556. name: "Normal",
  38557. height: math.unit(6 + 6/12, "feet"),
  38558. default: true
  38559. },
  38560. ]
  38561. ))
  38562. characterMakers.push(() => makeCharacter(
  38563. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38564. {
  38565. front: {
  38566. height: math.unit(15, "feet"),
  38567. name: "Front",
  38568. image: {
  38569. source: "./media/characters/rojas/front.svg",
  38570. extra: 1462/1408,
  38571. bottom: 95/1557
  38572. }
  38573. },
  38574. back: {
  38575. height: math.unit(15, "feet"),
  38576. name: "Back",
  38577. image: {
  38578. source: "./media/characters/rojas/back.svg",
  38579. extra: 1023/954,
  38580. bottom: 28/1051
  38581. }
  38582. },
  38583. },
  38584. [
  38585. {
  38586. name: "Normal",
  38587. height: math.unit(15, "feet"),
  38588. default: true
  38589. },
  38590. ]
  38591. ))
  38592. characterMakers.push(() => makeCharacter(
  38593. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38594. {
  38595. frontHuman: {
  38596. height: math.unit(5 + 7/12, "feet"),
  38597. name: "Front (Human)",
  38598. image: {
  38599. source: "./media/characters/alek-dryagan/front-human.svg",
  38600. extra: 1687/1667,
  38601. bottom: 69/1756
  38602. }
  38603. },
  38604. backHuman: {
  38605. height: math.unit(5 + 7/12, "feet"),
  38606. name: "Back (Human)",
  38607. image: {
  38608. source: "./media/characters/alek-dryagan/back-human.svg",
  38609. extra: 1670/1649,
  38610. bottom: 65/1735
  38611. }
  38612. },
  38613. frontDemi: {
  38614. height: math.unit(65, "feet"),
  38615. name: "Front (Demi)",
  38616. image: {
  38617. source: "./media/characters/alek-dryagan/front-demi.svg",
  38618. extra: 1669/1642,
  38619. bottom: 49/1718
  38620. }
  38621. },
  38622. backDemi: {
  38623. height: math.unit(65, "feet"),
  38624. name: "Back (Demi)",
  38625. image: {
  38626. source: "./media/characters/alek-dryagan/back-demi.svg",
  38627. extra: 1658/1637,
  38628. bottom: 40/1698
  38629. }
  38630. },
  38631. mawHuman: {
  38632. height: math.unit(0.3, "feet"),
  38633. name: "Maw (Human)",
  38634. image: {
  38635. source: "./media/characters/alek-dryagan/maw-human.svg"
  38636. }
  38637. },
  38638. mawDemi: {
  38639. height: math.unit(3.8, "feet"),
  38640. name: "Maw (Demi)",
  38641. image: {
  38642. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38643. }
  38644. },
  38645. },
  38646. [
  38647. {
  38648. name: "Normal",
  38649. height: math.unit(5 + 7/12, "feet"),
  38650. default: true
  38651. },
  38652. ]
  38653. ))
  38654. characterMakers.push(() => makeCharacter(
  38655. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38656. {
  38657. frontHuman: {
  38658. height: math.unit(5 + 2/12, "feet"),
  38659. name: "Front (Human)",
  38660. image: {
  38661. source: "./media/characters/gen/front-human.svg",
  38662. extra: 1627/1538,
  38663. bottom: 71/1698
  38664. }
  38665. },
  38666. backHuman: {
  38667. height: math.unit(5 + 2/12, "feet"),
  38668. name: "Back (Human)",
  38669. image: {
  38670. source: "./media/characters/gen/back-human.svg",
  38671. extra: 1638/1548,
  38672. bottom: 69/1707
  38673. }
  38674. },
  38675. frontDemi: {
  38676. height: math.unit(5 + 2/12, "feet"),
  38677. name: "Front (Demi)",
  38678. image: {
  38679. source: "./media/characters/gen/front-demi.svg",
  38680. extra: 1627/1538,
  38681. bottom: 71/1698
  38682. }
  38683. },
  38684. backDemi: {
  38685. height: math.unit(5 + 2/12, "feet"),
  38686. name: "Back (Demi)",
  38687. image: {
  38688. source: "./media/characters/gen/back-demi.svg",
  38689. extra: 1638/1548,
  38690. bottom: 69/1707
  38691. }
  38692. },
  38693. },
  38694. [
  38695. {
  38696. name: "Normal",
  38697. height: math.unit(5 + 2/12, "feet"),
  38698. default: true
  38699. },
  38700. ]
  38701. ))
  38702. characterMakers.push(() => makeCharacter(
  38703. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38704. {
  38705. frontImp: {
  38706. height: math.unit(1 + 11/12, "feet"),
  38707. name: "Front (Imp)",
  38708. image: {
  38709. source: "./media/characters/max-kobold/front-imp.svg",
  38710. extra: 1238/1134,
  38711. bottom: 81/1319
  38712. }
  38713. },
  38714. backImp: {
  38715. height: math.unit(1 + 11/12, "feet"),
  38716. name: "Back (Imp)",
  38717. image: {
  38718. source: "./media/characters/max-kobold/back-imp.svg",
  38719. extra: 1334/1175,
  38720. bottom: 34/1368
  38721. }
  38722. },
  38723. frontDemi: {
  38724. height: math.unit(5 + 9/12, "feet"),
  38725. name: "Front (Demi)",
  38726. image: {
  38727. source: "./media/characters/max-kobold/front-demi.svg",
  38728. extra: 1715/1685,
  38729. bottom: 54/1769
  38730. }
  38731. },
  38732. backDemi: {
  38733. height: math.unit(5 + 9/12, "feet"),
  38734. name: "Back (Demi)",
  38735. image: {
  38736. source: "./media/characters/max-kobold/back-demi.svg",
  38737. extra: 1752/1729,
  38738. bottom: 41/1793
  38739. }
  38740. },
  38741. handImp: {
  38742. height: math.unit(0.45, "feet"),
  38743. name: "Hand (Imp)",
  38744. image: {
  38745. source: "./media/characters/max-kobold/hand.svg"
  38746. }
  38747. },
  38748. pawImp: {
  38749. height: math.unit(0.46, "feet"),
  38750. name: "Paw (Imp)",
  38751. image: {
  38752. source: "./media/characters/max-kobold/paw.svg"
  38753. }
  38754. },
  38755. handDemi: {
  38756. height: math.unit(0.80, "feet"),
  38757. name: "Hand (Demi)",
  38758. image: {
  38759. source: "./media/characters/max-kobold/hand.svg"
  38760. }
  38761. },
  38762. pawDemi: {
  38763. height: math.unit(1.1, "feet"),
  38764. name: "Paw (Demi)",
  38765. image: {
  38766. source: "./media/characters/max-kobold/paw.svg"
  38767. }
  38768. },
  38769. headImp: {
  38770. height: math.unit(1.33, "feet"),
  38771. name: "Head (Imp)",
  38772. image: {
  38773. source: "./media/characters/max-kobold/head-imp.svg"
  38774. }
  38775. },
  38776. mawImp: {
  38777. height: math.unit(0.75, "feet"),
  38778. name: "Maw (Imp)",
  38779. image: {
  38780. source: "./media/characters/max-kobold/maw-imp.svg"
  38781. }
  38782. },
  38783. mawDemi: {
  38784. height: math.unit(0.42, "feet"),
  38785. name: "Maw (Demi)",
  38786. image: {
  38787. source: "./media/characters/max-kobold/maw-demi.svg"
  38788. }
  38789. },
  38790. },
  38791. [
  38792. {
  38793. name: "Normal",
  38794. height: math.unit(1 + 11/12, "feet"),
  38795. default: true
  38796. },
  38797. ]
  38798. ))
  38799. characterMakers.push(() => makeCharacter(
  38800. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38801. {
  38802. front: {
  38803. height: math.unit(7 + 5/12, "feet"),
  38804. name: "Front",
  38805. image: {
  38806. source: "./media/characters/carbon/front.svg",
  38807. extra: 1754/1689,
  38808. bottom: 65/1819
  38809. }
  38810. },
  38811. back: {
  38812. height: math.unit(7 + 5/12, "feet"),
  38813. name: "Back",
  38814. image: {
  38815. source: "./media/characters/carbon/back.svg",
  38816. extra: 1762/1695,
  38817. bottom: 24/1786
  38818. }
  38819. },
  38820. frontGigantamax: {
  38821. height: math.unit(150, "feet"),
  38822. name: "Front (Gigantamax)",
  38823. image: {
  38824. source: "./media/characters/carbon/front-gigantamax.svg",
  38825. extra: 1826/1669,
  38826. bottom: 59/1885
  38827. }
  38828. },
  38829. backGigantamax: {
  38830. height: math.unit(150, "feet"),
  38831. name: "Back (Gigantamax)",
  38832. image: {
  38833. source: "./media/characters/carbon/back-gigantamax.svg",
  38834. extra: 1796/1653,
  38835. bottom: 53/1849
  38836. }
  38837. },
  38838. maw: {
  38839. height: math.unit(0.48, "feet"),
  38840. name: "Maw",
  38841. image: {
  38842. source: "./media/characters/carbon/maw.svg"
  38843. }
  38844. },
  38845. mawGigantamax: {
  38846. height: math.unit(7.5, "feet"),
  38847. name: "Maw (Gigantamax)",
  38848. image: {
  38849. source: "./media/characters/carbon/maw-gigantamax.svg"
  38850. }
  38851. },
  38852. },
  38853. [
  38854. {
  38855. name: "Normal",
  38856. height: math.unit(7 + 5/12, "feet"),
  38857. default: true
  38858. },
  38859. ]
  38860. ))
  38861. characterMakers.push(() => makeCharacter(
  38862. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38863. {
  38864. front: {
  38865. height: math.unit(6, "feet"),
  38866. name: "Front",
  38867. image: {
  38868. source: "./media/characters/maverick/front.svg",
  38869. extra: 1672/1661,
  38870. bottom: 85/1757
  38871. }
  38872. },
  38873. back: {
  38874. height: math.unit(6, "feet"),
  38875. name: "Back",
  38876. image: {
  38877. source: "./media/characters/maverick/back.svg",
  38878. extra: 1642/1631,
  38879. bottom: 38/1680
  38880. }
  38881. },
  38882. },
  38883. [
  38884. {
  38885. name: "Normal",
  38886. height: math.unit(6, "feet"),
  38887. default: true
  38888. },
  38889. ]
  38890. ))
  38891. characterMakers.push(() => makeCharacter(
  38892. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38893. {
  38894. front: {
  38895. height: math.unit(15, "feet"),
  38896. weight: math.unit(615, "lb"),
  38897. name: "Front",
  38898. image: {
  38899. source: "./media/characters/grockle/front.svg",
  38900. extra: 1535/1427,
  38901. bottom: 56/1591
  38902. }
  38903. },
  38904. },
  38905. [
  38906. {
  38907. name: "Normal",
  38908. height: math.unit(15, "feet"),
  38909. default: true
  38910. },
  38911. {
  38912. name: "Large",
  38913. height: math.unit(150, "feet")
  38914. },
  38915. {
  38916. name: "Macro",
  38917. height: math.unit(1876, "feet")
  38918. },
  38919. {
  38920. name: "Mega Macro",
  38921. height: math.unit(121940, "feet")
  38922. },
  38923. {
  38924. name: "Giga Macro",
  38925. height: math.unit(750, "km")
  38926. },
  38927. {
  38928. name: "Tera Macro",
  38929. height: math.unit(750000, "km")
  38930. },
  38931. {
  38932. name: "Galactic",
  38933. height: math.unit(1.4e5, "km")
  38934. },
  38935. {
  38936. name: "Godlike",
  38937. height: math.unit(9.8e280, "galaxies")
  38938. },
  38939. ]
  38940. ))
  38941. characterMakers.push(() => makeCharacter(
  38942. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38943. {
  38944. front: {
  38945. height: math.unit(11, "meters"),
  38946. weight: math.unit(20, "tonnes"),
  38947. name: "Front",
  38948. image: {
  38949. source: "./media/characters/alistair/front.svg",
  38950. extra: 1265/1009,
  38951. bottom: 93/1358
  38952. }
  38953. },
  38954. },
  38955. [
  38956. {
  38957. name: "Normal",
  38958. height: math.unit(11, "meters"),
  38959. default: true
  38960. },
  38961. ]
  38962. ))
  38963. characterMakers.push(() => makeCharacter(
  38964. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38965. {
  38966. front: {
  38967. height: math.unit(5 + 8/12, "feet"),
  38968. name: "Front",
  38969. image: {
  38970. source: "./media/characters/haruka/front.svg",
  38971. extra: 2012/1952,
  38972. bottom: 0/2012
  38973. }
  38974. },
  38975. },
  38976. [
  38977. {
  38978. name: "Normal",
  38979. height: math.unit(5 + 8/12, "feet"),
  38980. default: true
  38981. },
  38982. ]
  38983. ))
  38984. characterMakers.push(() => makeCharacter(
  38985. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38986. {
  38987. back: {
  38988. height: math.unit(9, "feet"),
  38989. name: "Back",
  38990. image: {
  38991. source: "./media/characters/vivian-sylveon/back.svg",
  38992. extra: 1853/1714,
  38993. bottom: 0/1853
  38994. }
  38995. },
  38996. },
  38997. [
  38998. {
  38999. name: "Normal",
  39000. height: math.unit(9, "feet"),
  39001. default: true
  39002. },
  39003. {
  39004. name: "Macro",
  39005. height: math.unit(500, "feet")
  39006. },
  39007. {
  39008. name: "Megamacro",
  39009. height: math.unit(600, "miles")
  39010. },
  39011. {
  39012. name: "Gigamacro",
  39013. height: math.unit(30000, "miles")
  39014. },
  39015. ]
  39016. ))
  39017. characterMakers.push(() => makeCharacter(
  39018. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39019. {
  39020. anthro: {
  39021. height: math.unit(5 + 10/12, "feet"),
  39022. weight: math.unit(100, "lb"),
  39023. name: "Anthro",
  39024. image: {
  39025. source: "./media/characters/daiki/anthro.svg",
  39026. extra: 1115/1027,
  39027. bottom: 69/1184
  39028. }
  39029. },
  39030. feral: {
  39031. height: math.unit(200, "feet"),
  39032. name: "Feral",
  39033. image: {
  39034. source: "./media/characters/daiki/feral.svg",
  39035. extra: 1256/313,
  39036. bottom: 39/1295
  39037. }
  39038. },
  39039. feralHead: {
  39040. height: math.unit(171, "feet"),
  39041. name: "Feral Head",
  39042. image: {
  39043. source: "./media/characters/daiki/feral-head.svg"
  39044. }
  39045. },
  39046. manaDragon: {
  39047. height: math.unit(170, "meters"),
  39048. name: "Mana-dragon",
  39049. image: {
  39050. source: "./media/characters/daiki/mana-dragon.svg",
  39051. extra: 763/420,
  39052. bottom: 97/860
  39053. }
  39054. },
  39055. },
  39056. [
  39057. {
  39058. name: "Normal",
  39059. height: math.unit(5 + 10/12, "feet"),
  39060. default: true
  39061. },
  39062. ]
  39063. ))
  39064. characterMakers.push(() => makeCharacter(
  39065. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39066. {
  39067. fullyEquippedFront: {
  39068. height: math.unit(3 + 1/12, "feet"),
  39069. weight: math.unit(24, "lb"),
  39070. name: "Fully Equipped (Front)",
  39071. image: {
  39072. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39073. extra: 687/605,
  39074. bottom: 18/705
  39075. }
  39076. },
  39077. fullyEquippedBack: {
  39078. height: math.unit(3 + 1/12, "feet"),
  39079. weight: math.unit(24, "lb"),
  39080. name: "Fully Equipped (Back)",
  39081. image: {
  39082. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39083. extra: 689/590,
  39084. bottom: 18/707
  39085. }
  39086. },
  39087. dailyWear: {
  39088. height: math.unit(3 + 1/12, "feet"),
  39089. weight: math.unit(24, "lb"),
  39090. name: "Daily Wear",
  39091. image: {
  39092. source: "./media/characters/tea-spot/daily-wear.svg",
  39093. extra: 701/620,
  39094. bottom: 21/722
  39095. }
  39096. },
  39097. maidWork: {
  39098. height: math.unit(3 + 1/12, "feet"),
  39099. weight: math.unit(24, "lb"),
  39100. name: "Maid Work",
  39101. image: {
  39102. source: "./media/characters/tea-spot/maid-work.svg",
  39103. extra: 693/609,
  39104. bottom: 15/708
  39105. }
  39106. },
  39107. },
  39108. [
  39109. {
  39110. name: "Normal",
  39111. height: math.unit(3 + 1/12, "feet"),
  39112. default: true
  39113. },
  39114. ]
  39115. ))
  39116. characterMakers.push(() => makeCharacter(
  39117. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39118. {
  39119. front: {
  39120. height: math.unit(175, "cm"),
  39121. weight: math.unit(75, "kg"),
  39122. name: "Front",
  39123. image: {
  39124. source: "./media/characters/chee/front.svg",
  39125. extra: 1796/1740,
  39126. bottom: 40/1836
  39127. }
  39128. },
  39129. },
  39130. [
  39131. {
  39132. name: "Micro-Micro",
  39133. height: math.unit(1, "nm")
  39134. },
  39135. {
  39136. name: "Micro-erst",
  39137. height: math.unit(1, "micrometer")
  39138. },
  39139. {
  39140. name: "Micro-er",
  39141. height: math.unit(1, "cm")
  39142. },
  39143. {
  39144. name: "Normal",
  39145. height: math.unit(175, "cm"),
  39146. default: true
  39147. },
  39148. {
  39149. name: "Macro",
  39150. height: math.unit(100, "m")
  39151. },
  39152. {
  39153. name: "Macro-er",
  39154. height: math.unit(1, "km")
  39155. },
  39156. {
  39157. name: "Macro-erst",
  39158. height: math.unit(10, "km")
  39159. },
  39160. {
  39161. name: "Macro-Macro",
  39162. height: math.unit(100, "km")
  39163. },
  39164. ]
  39165. ))
  39166. characterMakers.push(() => makeCharacter(
  39167. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39168. {
  39169. front: {
  39170. height: math.unit(11 + 9/12, "feet"),
  39171. weight: math.unit(935, "lb"),
  39172. name: "Front",
  39173. image: {
  39174. source: "./media/characters/kingsley/front.svg",
  39175. extra: 1803/1674,
  39176. bottom: 127/1930
  39177. }
  39178. },
  39179. frontNude: {
  39180. height: math.unit(11 + 9/12, "feet"),
  39181. weight: math.unit(935, "lb"),
  39182. name: "Front (Nude)",
  39183. image: {
  39184. source: "./media/characters/kingsley/front-nude.svg",
  39185. extra: 1803/1674,
  39186. bottom: 127/1930
  39187. }
  39188. },
  39189. },
  39190. [
  39191. {
  39192. name: "Normal",
  39193. height: math.unit(11 + 9/12, "feet"),
  39194. default: true
  39195. },
  39196. ]
  39197. ))
  39198. characterMakers.push(() => makeCharacter(
  39199. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39200. {
  39201. side: {
  39202. height: math.unit(9, "feet"),
  39203. name: "Side",
  39204. image: {
  39205. source: "./media/characters/rymel/side.svg",
  39206. extra: 792/469,
  39207. bottom: 121/913
  39208. }
  39209. },
  39210. maw: {
  39211. height: math.unit(2.4, "meters"),
  39212. name: "Maw",
  39213. image: {
  39214. source: "./media/characters/rymel/maw.svg"
  39215. }
  39216. },
  39217. },
  39218. [
  39219. {
  39220. name: "House Drake",
  39221. height: math.unit(2, "feet")
  39222. },
  39223. {
  39224. name: "Reduced",
  39225. height: math.unit(4.5, "feet")
  39226. },
  39227. {
  39228. name: "Normal",
  39229. height: math.unit(9, "feet"),
  39230. default: true
  39231. },
  39232. ]
  39233. ))
  39234. characterMakers.push(() => makeCharacter(
  39235. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39236. {
  39237. front: {
  39238. height: math.unit(1.74, "meters"),
  39239. weight: math.unit(55, "kg"),
  39240. name: "Front",
  39241. image: {
  39242. source: "./media/characters/rubus/front.svg",
  39243. extra: 1894/1742,
  39244. bottom: 44/1938
  39245. }
  39246. },
  39247. },
  39248. [
  39249. {
  39250. name: "Normal",
  39251. height: math.unit(1.74, "meters"),
  39252. default: true
  39253. },
  39254. ]
  39255. ))
  39256. characterMakers.push(() => makeCharacter(
  39257. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39258. {
  39259. front: {
  39260. height: math.unit(5 + 2/12, "feet"),
  39261. weight: math.unit(112, "lb"),
  39262. name: "Front",
  39263. image: {
  39264. source: "./media/characters/cassie-kingston/front.svg",
  39265. extra: 1438/1390,
  39266. bottom: 47/1485
  39267. }
  39268. },
  39269. },
  39270. [
  39271. {
  39272. name: "Normal",
  39273. height: math.unit(5 + 2/12, "feet"),
  39274. default: true
  39275. },
  39276. {
  39277. name: "Macro",
  39278. height: math.unit(128, "feet")
  39279. },
  39280. {
  39281. name: "Megamacro",
  39282. height: math.unit(2.56, "miles")
  39283. },
  39284. ]
  39285. ))
  39286. characterMakers.push(() => makeCharacter(
  39287. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39288. {
  39289. front: {
  39290. height: math.unit(7, "feet"),
  39291. name: "Front",
  39292. image: {
  39293. source: "./media/characters/fox/front.svg",
  39294. extra: 1798/1703,
  39295. bottom: 55/1853
  39296. }
  39297. },
  39298. back: {
  39299. height: math.unit(7, "feet"),
  39300. name: "Back",
  39301. image: {
  39302. source: "./media/characters/fox/back.svg",
  39303. extra: 1748/1649,
  39304. bottom: 32/1780
  39305. }
  39306. },
  39307. head: {
  39308. height: math.unit(1.95, "feet"),
  39309. name: "Head",
  39310. image: {
  39311. source: "./media/characters/fox/head.svg"
  39312. }
  39313. },
  39314. dick: {
  39315. height: math.unit(1.33, "feet"),
  39316. name: "Dick",
  39317. image: {
  39318. source: "./media/characters/fox/dick.svg"
  39319. }
  39320. },
  39321. foot: {
  39322. height: math.unit(1, "feet"),
  39323. name: "Foot",
  39324. image: {
  39325. source: "./media/characters/fox/foot.svg"
  39326. }
  39327. },
  39328. paw: {
  39329. height: math.unit(0.92, "feet"),
  39330. name: "Paw",
  39331. image: {
  39332. source: "./media/characters/fox/paw.svg"
  39333. }
  39334. },
  39335. },
  39336. [
  39337. {
  39338. name: "Small",
  39339. height: math.unit(3, "inches")
  39340. },
  39341. {
  39342. name: "\"Realistic\"",
  39343. height: math.unit(7, "feet")
  39344. },
  39345. {
  39346. name: "Normal",
  39347. height: math.unit(150, "feet"),
  39348. default: true
  39349. },
  39350. {
  39351. name: "BIG",
  39352. height: math.unit(1200, "feet")
  39353. },
  39354. {
  39355. name: "👀",
  39356. height: math.unit(5, "miles")
  39357. },
  39358. {
  39359. name: "👀👀👀",
  39360. height: math.unit(64, "miles")
  39361. },
  39362. ]
  39363. ))
  39364. characterMakers.push(() => makeCharacter(
  39365. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39366. {
  39367. front: {
  39368. height: math.unit(625, "feet"),
  39369. name: "Front",
  39370. image: {
  39371. source: "./media/characters/asonja-rossa/front.svg",
  39372. extra: 1833/1686,
  39373. bottom: 24/1857
  39374. }
  39375. },
  39376. back: {
  39377. height: math.unit(625, "feet"),
  39378. name: "Back",
  39379. image: {
  39380. source: "./media/characters/asonja-rossa/back.svg",
  39381. extra: 1852/1753,
  39382. bottom: 26/1878
  39383. }
  39384. },
  39385. },
  39386. [
  39387. {
  39388. name: "Macro",
  39389. height: math.unit(625, "feet"),
  39390. default: true
  39391. },
  39392. ]
  39393. ))
  39394. characterMakers.push(() => makeCharacter(
  39395. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39396. {
  39397. side: {
  39398. height: math.unit(8, "feet"),
  39399. name: "Side",
  39400. image: {
  39401. source: "./media/characters/rezukii/side.svg",
  39402. extra: 979/542,
  39403. bottom: 87/1066
  39404. }
  39405. },
  39406. sitting: {
  39407. height: math.unit(14.6, "feet"),
  39408. name: "Sitting",
  39409. image: {
  39410. source: "./media/characters/rezukii/sitting.svg",
  39411. extra: 1023/813,
  39412. bottom: 45/1068
  39413. }
  39414. },
  39415. },
  39416. [
  39417. {
  39418. name: "Tiny",
  39419. height: math.unit(2, "feet")
  39420. },
  39421. {
  39422. name: "Smol",
  39423. height: math.unit(4, "feet")
  39424. },
  39425. {
  39426. name: "Normal",
  39427. height: math.unit(8, "feet"),
  39428. default: true
  39429. },
  39430. {
  39431. name: "Big",
  39432. height: math.unit(12, "feet")
  39433. },
  39434. {
  39435. name: "Macro",
  39436. height: math.unit(30, "feet")
  39437. },
  39438. ]
  39439. ))
  39440. characterMakers.push(() => makeCharacter(
  39441. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39442. {
  39443. front: {
  39444. height: math.unit(14, "feet"),
  39445. weight: math.unit(9.5, "tonnes"),
  39446. name: "Front",
  39447. image: {
  39448. source: "./media/characters/dawnheart/front.svg",
  39449. extra: 2792/2675,
  39450. bottom: 64/2856
  39451. }
  39452. },
  39453. },
  39454. [
  39455. {
  39456. name: "Normal",
  39457. height: math.unit(14, "feet"),
  39458. default: true
  39459. },
  39460. ]
  39461. ))
  39462. characterMakers.push(() => makeCharacter(
  39463. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39464. {
  39465. front: {
  39466. height: math.unit(1.7, "m"),
  39467. name: "Front",
  39468. image: {
  39469. source: "./media/characters/gladi/front.svg",
  39470. extra: 1460/1362,
  39471. bottom: 19/1479
  39472. }
  39473. },
  39474. back: {
  39475. height: math.unit(1.7, "m"),
  39476. name: "Back",
  39477. image: {
  39478. source: "./media/characters/gladi/back.svg",
  39479. extra: 1459/1357,
  39480. bottom: 12/1471
  39481. }
  39482. },
  39483. feral: {
  39484. height: math.unit(2.05, "m"),
  39485. name: "Feral",
  39486. image: {
  39487. source: "./media/characters/gladi/feral.svg",
  39488. extra: 821/557,
  39489. bottom: 91/912
  39490. }
  39491. },
  39492. },
  39493. [
  39494. {
  39495. name: "Shortest",
  39496. height: math.unit(70, "cm")
  39497. },
  39498. {
  39499. name: "Normal",
  39500. height: math.unit(1.7, "m")
  39501. },
  39502. {
  39503. name: "Macro",
  39504. height: math.unit(10, "m"),
  39505. default: true
  39506. },
  39507. {
  39508. name: "Tallest",
  39509. height: math.unit(200, "m")
  39510. },
  39511. ]
  39512. ))
  39513. characterMakers.push(() => makeCharacter(
  39514. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39515. {
  39516. front: {
  39517. height: math.unit(5 + 7/12, "feet"),
  39518. weight: math.unit(2, "tons"),
  39519. name: "Front",
  39520. image: {
  39521. source: "./media/characters/erdno/front.svg",
  39522. extra: 1234/1129,
  39523. bottom: 35/1269
  39524. }
  39525. },
  39526. angled: {
  39527. height: math.unit(5 + 7/12, "feet"),
  39528. weight: math.unit(2, "tons"),
  39529. name: "Angled",
  39530. image: {
  39531. source: "./media/characters/erdno/angled.svg",
  39532. extra: 1185/1139,
  39533. bottom: 36/1221
  39534. }
  39535. },
  39536. side: {
  39537. height: math.unit(5 + 7/12, "feet"),
  39538. weight: math.unit(2, "tons"),
  39539. name: "Side",
  39540. image: {
  39541. source: "./media/characters/erdno/side.svg",
  39542. extra: 1191/1144,
  39543. bottom: 40/1231
  39544. }
  39545. },
  39546. back: {
  39547. height: math.unit(5 + 7/12, "feet"),
  39548. weight: math.unit(2, "tons"),
  39549. name: "Back",
  39550. image: {
  39551. source: "./media/characters/erdno/back.svg",
  39552. extra: 1202/1146,
  39553. bottom: 17/1219
  39554. }
  39555. },
  39556. frontNsfw: {
  39557. height: math.unit(5 + 7/12, "feet"),
  39558. weight: math.unit(2, "tons"),
  39559. name: "Front (NSFW)",
  39560. image: {
  39561. source: "./media/characters/erdno/front-nsfw.svg",
  39562. extra: 1234/1129,
  39563. bottom: 35/1269
  39564. }
  39565. },
  39566. angledNsfw: {
  39567. height: math.unit(5 + 7/12, "feet"),
  39568. weight: math.unit(2, "tons"),
  39569. name: "Angled (NSFW)",
  39570. image: {
  39571. source: "./media/characters/erdno/angled-nsfw.svg",
  39572. extra: 1185/1139,
  39573. bottom: 36/1221
  39574. }
  39575. },
  39576. sideNsfw: {
  39577. height: math.unit(5 + 7/12, "feet"),
  39578. weight: math.unit(2, "tons"),
  39579. name: "Side (NSFW)",
  39580. image: {
  39581. source: "./media/characters/erdno/side-nsfw.svg",
  39582. extra: 1191/1144,
  39583. bottom: 40/1231
  39584. }
  39585. },
  39586. backNsfw: {
  39587. height: math.unit(5 + 7/12, "feet"),
  39588. weight: math.unit(2, "tons"),
  39589. name: "Back (NSFW)",
  39590. image: {
  39591. source: "./media/characters/erdno/back-nsfw.svg",
  39592. extra: 1202/1146,
  39593. bottom: 17/1219
  39594. }
  39595. },
  39596. frontHyper: {
  39597. height: math.unit(5 + 7/12, "feet"),
  39598. weight: math.unit(2, "tons"),
  39599. name: "Front (Hyper)",
  39600. image: {
  39601. source: "./media/characters/erdno/front-hyper.svg",
  39602. extra: 1298/1136,
  39603. bottom: 35/1333
  39604. }
  39605. },
  39606. },
  39607. [
  39608. {
  39609. name: "Normal",
  39610. height: math.unit(5 + 7/12, "feet"),
  39611. default: true
  39612. },
  39613. {
  39614. name: "Big",
  39615. height: math.unit(5.7, "meters")
  39616. },
  39617. {
  39618. name: "Macro",
  39619. height: math.unit(5.7, "kilometers")
  39620. },
  39621. {
  39622. name: "Megamacro",
  39623. height: math.unit(5.7, "earths")
  39624. },
  39625. ]
  39626. ))
  39627. characterMakers.push(() => makeCharacter(
  39628. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39629. {
  39630. front: {
  39631. height: math.unit(5 + 10/12, "feet"),
  39632. weight: math.unit(150, "lb"),
  39633. name: "Front",
  39634. image: {
  39635. source: "./media/characters/jamie/front.svg",
  39636. extra: 1908/1768,
  39637. bottom: 19/1927
  39638. }
  39639. },
  39640. },
  39641. [
  39642. {
  39643. name: "Minimum",
  39644. height: math.unit(2, "cm")
  39645. },
  39646. {
  39647. name: "Micro",
  39648. height: math.unit(3, "inches")
  39649. },
  39650. {
  39651. name: "Normal",
  39652. height: math.unit(5 + 10/12, "feet"),
  39653. default: true
  39654. },
  39655. {
  39656. name: "Macro",
  39657. height: math.unit(150, "feet")
  39658. },
  39659. {
  39660. name: "Megamacro",
  39661. height: math.unit(10000, "m")
  39662. },
  39663. ]
  39664. ))
  39665. characterMakers.push(() => makeCharacter(
  39666. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39667. {
  39668. front: {
  39669. height: math.unit(2, "meters"),
  39670. weight: math.unit(100, "kg"),
  39671. name: "Front",
  39672. image: {
  39673. source: "./media/characters/shiron/front.svg",
  39674. extra: 2103/1985,
  39675. bottom: 98/2201
  39676. }
  39677. },
  39678. back: {
  39679. height: math.unit(2, "meters"),
  39680. weight: math.unit(100, "kg"),
  39681. name: "Back",
  39682. image: {
  39683. source: "./media/characters/shiron/back.svg",
  39684. extra: 2110/2015,
  39685. bottom: 89/2199
  39686. }
  39687. },
  39688. hand: {
  39689. height: math.unit(0.96, "feet"),
  39690. name: "Hand",
  39691. image: {
  39692. source: "./media/characters/shiron/hand.svg"
  39693. }
  39694. },
  39695. foot: {
  39696. height: math.unit(1.464, "feet"),
  39697. name: "Foot",
  39698. image: {
  39699. source: "./media/characters/shiron/foot.svg"
  39700. }
  39701. },
  39702. },
  39703. [
  39704. {
  39705. name: "Normal",
  39706. height: math.unit(2, "meters")
  39707. },
  39708. {
  39709. name: "Macro",
  39710. height: math.unit(500, "meters"),
  39711. default: true
  39712. },
  39713. {
  39714. name: "Megamacro",
  39715. height: math.unit(20, "km")
  39716. },
  39717. ]
  39718. ))
  39719. characterMakers.push(() => makeCharacter(
  39720. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39721. {
  39722. front: {
  39723. height: math.unit(6, "feet"),
  39724. name: "Front",
  39725. image: {
  39726. source: "./media/characters/sam/front.svg",
  39727. extra: 849/826,
  39728. bottom: 19/868
  39729. }
  39730. },
  39731. },
  39732. [
  39733. {
  39734. name: "Normal",
  39735. height: math.unit(6, "feet"),
  39736. default: true
  39737. },
  39738. ]
  39739. ))
  39740. characterMakers.push(() => makeCharacter(
  39741. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39742. {
  39743. front: {
  39744. height: math.unit(8 + 4/12, "feet"),
  39745. weight: math.unit(122, "kg"),
  39746. name: "Front",
  39747. image: {
  39748. source: "./media/characters/namori-kurogawa/front.svg",
  39749. extra: 1894/1576,
  39750. bottom: 34/1928
  39751. }
  39752. },
  39753. },
  39754. [
  39755. {
  39756. name: "Normal",
  39757. height: math.unit(8 + 4/12, "feet"),
  39758. default: true
  39759. },
  39760. ]
  39761. ))
  39762. characterMakers.push(() => makeCharacter(
  39763. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39764. {
  39765. front: {
  39766. height: math.unit(9, "feet"),
  39767. weight: math.unit(621, "lb"),
  39768. name: "Front",
  39769. image: {
  39770. source: "./media/characters/unmru/front.svg",
  39771. extra: 1853/1747,
  39772. bottom: 73/1926
  39773. }
  39774. },
  39775. side: {
  39776. height: math.unit(9, "feet"),
  39777. weight: math.unit(621, "lb"),
  39778. name: "Side",
  39779. image: {
  39780. source: "./media/characters/unmru/side.svg",
  39781. extra: 1781/1671,
  39782. bottom: 127/1908
  39783. }
  39784. },
  39785. back: {
  39786. height: math.unit(9, "feet"),
  39787. weight: math.unit(621, "lb"),
  39788. name: "Back",
  39789. image: {
  39790. source: "./media/characters/unmru/back.svg",
  39791. extra: 1894/1765,
  39792. bottom: 75/1969
  39793. }
  39794. },
  39795. dick: {
  39796. height: math.unit(3, "feet"),
  39797. weight: math.unit(35, "lb"),
  39798. name: "Dick",
  39799. image: {
  39800. source: "./media/characters/unmru/dick.svg"
  39801. }
  39802. },
  39803. },
  39804. [
  39805. {
  39806. name: "Normal",
  39807. height: math.unit(9, "feet")
  39808. },
  39809. {
  39810. name: "Natural",
  39811. height: math.unit(27, "feet"),
  39812. default: true
  39813. },
  39814. {
  39815. name: "Giant",
  39816. height: math.unit(90, "feet")
  39817. },
  39818. {
  39819. name: "Kaiju",
  39820. height: math.unit(270, "feet")
  39821. },
  39822. {
  39823. name: "Macro",
  39824. height: math.unit(900, "feet")
  39825. },
  39826. {
  39827. name: "Macro+",
  39828. height: math.unit(2700, "feet")
  39829. },
  39830. {
  39831. name: "Megamacro",
  39832. height: math.unit(9000, "feet")
  39833. },
  39834. {
  39835. name: "City-Crushing",
  39836. height: math.unit(27000, "feet")
  39837. },
  39838. {
  39839. name: "Mountain-Mashing",
  39840. height: math.unit(90000, "feet")
  39841. },
  39842. {
  39843. name: "Earth-Eclipsing",
  39844. height: math.unit(2.7e8, "feet")
  39845. },
  39846. {
  39847. name: "Sol-Swallowing",
  39848. height: math.unit(9e10, "feet")
  39849. },
  39850. {
  39851. name: "Majoris-Munching",
  39852. height: math.unit(2.7e13, "feet")
  39853. },
  39854. ]
  39855. ))
  39856. characterMakers.push(() => makeCharacter(
  39857. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39858. {
  39859. front: {
  39860. height: math.unit(1, "inch"),
  39861. name: "Front",
  39862. image: {
  39863. source: "./media/characters/squeaks-mouse/front.svg",
  39864. extra: 352/308,
  39865. bottom: 25/377
  39866. }
  39867. },
  39868. },
  39869. [
  39870. {
  39871. name: "Micro",
  39872. height: math.unit(1, "inch"),
  39873. default: true
  39874. },
  39875. ]
  39876. ))
  39877. characterMakers.push(() => makeCharacter(
  39878. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39879. {
  39880. side: {
  39881. height: math.unit(35, "feet"),
  39882. name: "Side",
  39883. image: {
  39884. source: "./media/characters/sayko/side.svg",
  39885. extra: 1697/1021,
  39886. bottom: 82/1779
  39887. }
  39888. },
  39889. head: {
  39890. height: math.unit(16, "feet"),
  39891. name: "Head",
  39892. image: {
  39893. source: "./media/characters/sayko/head.svg"
  39894. }
  39895. },
  39896. forepaw: {
  39897. height: math.unit(7.85, "feet"),
  39898. name: "Forepaw",
  39899. image: {
  39900. source: "./media/characters/sayko/forepaw.svg"
  39901. }
  39902. },
  39903. hindpaw: {
  39904. height: math.unit(8.8, "feet"),
  39905. name: "Hindpaw",
  39906. image: {
  39907. source: "./media/characters/sayko/hindpaw.svg"
  39908. }
  39909. },
  39910. },
  39911. [
  39912. {
  39913. name: "Normal",
  39914. height: math.unit(35, "feet"),
  39915. default: true
  39916. },
  39917. {
  39918. name: "Colossus",
  39919. height: math.unit(100, "meters")
  39920. },
  39921. {
  39922. name: "\"Small\" Deity",
  39923. height: math.unit(1, "km")
  39924. },
  39925. {
  39926. name: "\"Large\" Deity",
  39927. height: math.unit(15, "km")
  39928. },
  39929. ]
  39930. ))
  39931. characterMakers.push(() => makeCharacter(
  39932. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39933. {
  39934. front: {
  39935. height: math.unit(6, "feet"),
  39936. weight: math.unit(250, "lb"),
  39937. name: "Front",
  39938. image: {
  39939. source: "./media/characters/mukiro/front.svg",
  39940. extra: 1368/1310,
  39941. bottom: 34/1402
  39942. }
  39943. },
  39944. },
  39945. [
  39946. {
  39947. name: "Normal",
  39948. height: math.unit(6, "feet"),
  39949. default: true
  39950. },
  39951. ]
  39952. ))
  39953. characterMakers.push(() => makeCharacter(
  39954. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39955. {
  39956. front: {
  39957. height: math.unit(12 + 4/12, "feet"),
  39958. name: "Front",
  39959. image: {
  39960. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39961. extra: 1346/1311,
  39962. bottom: 65/1411
  39963. }
  39964. },
  39965. },
  39966. [
  39967. {
  39968. name: "Base",
  39969. height: math.unit(12 + 4/12, "feet"),
  39970. default: true
  39971. },
  39972. {
  39973. name: "Macro",
  39974. height: math.unit(150, "feet")
  39975. },
  39976. {
  39977. name: "Mega",
  39978. height: math.unit(2, "miles")
  39979. },
  39980. {
  39981. name: "Demi God",
  39982. height: math.unit(4, "AU")
  39983. },
  39984. {
  39985. name: "God Size",
  39986. height: math.unit(1, "universe")
  39987. },
  39988. ]
  39989. ))
  39990. characterMakers.push(() => makeCharacter(
  39991. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39992. {
  39993. front: {
  39994. height: math.unit(3 + 3/12, "feet"),
  39995. weight: math.unit(88, "lb"),
  39996. name: "Front",
  39997. image: {
  39998. source: "./media/characters/trey/front.svg",
  39999. extra: 1815/1509,
  40000. bottom: 60/1875
  40001. }
  40002. },
  40003. },
  40004. [
  40005. {
  40006. name: "Normal",
  40007. height: math.unit(3 + 3/12, "feet"),
  40008. default: true
  40009. },
  40010. ]
  40011. ))
  40012. characterMakers.push(() => makeCharacter(
  40013. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40014. {
  40015. front: {
  40016. height: math.unit(4, "meters"),
  40017. name: "Front",
  40018. image: {
  40019. source: "./media/characters/adelonda/front.svg",
  40020. extra: 1077/982,
  40021. bottom: 39/1116
  40022. }
  40023. },
  40024. back: {
  40025. height: math.unit(4, "meters"),
  40026. name: "Back",
  40027. image: {
  40028. source: "./media/characters/adelonda/back.svg",
  40029. extra: 1105/1003,
  40030. bottom: 25/1130
  40031. }
  40032. },
  40033. feral: {
  40034. height: math.unit(40/1.5, "meters"),
  40035. name: "Feral",
  40036. image: {
  40037. source: "./media/characters/adelonda/feral.svg",
  40038. extra: 597/271,
  40039. bottom: 387/984
  40040. }
  40041. },
  40042. },
  40043. [
  40044. {
  40045. name: "Normal",
  40046. height: math.unit(4, "meters"),
  40047. default: true
  40048. },
  40049. ]
  40050. ))
  40051. characterMakers.push(() => makeCharacter(
  40052. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40053. {
  40054. front: {
  40055. height: math.unit(8 + 4/12, "feet"),
  40056. weight: math.unit(670, "lb"),
  40057. name: "Front",
  40058. image: {
  40059. source: "./media/characters/acadiel/front.svg",
  40060. extra: 1901/1595,
  40061. bottom: 142/2043
  40062. }
  40063. },
  40064. },
  40065. [
  40066. {
  40067. name: "Normal",
  40068. height: math.unit(8 + 4/12, "feet"),
  40069. default: true
  40070. },
  40071. {
  40072. name: "Macro",
  40073. height: math.unit(200, "feet")
  40074. },
  40075. ]
  40076. ))
  40077. characterMakers.push(() => makeCharacter(
  40078. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40079. {
  40080. front: {
  40081. height: math.unit(6 + 2/12, "feet"),
  40082. weight: math.unit(185, "lb"),
  40083. name: "Front",
  40084. image: {
  40085. source: "./media/characters/kayne-ein/front.svg",
  40086. extra: 1780/1560,
  40087. bottom: 81/1861
  40088. }
  40089. },
  40090. },
  40091. [
  40092. {
  40093. name: "Normal",
  40094. height: math.unit(6 + 2/12, "feet"),
  40095. default: true
  40096. },
  40097. {
  40098. name: "Transformation Stage",
  40099. height: math.unit(15, "feet")
  40100. },
  40101. {
  40102. name: "Macro",
  40103. height: math.unit(150, "feet")
  40104. },
  40105. {
  40106. name: "Earth's Shadow",
  40107. height: math.unit(6200, "miles")
  40108. },
  40109. {
  40110. name: "Universal Demon",
  40111. height: math.unit(28e9, "parsecs")
  40112. },
  40113. {
  40114. name: "Multiverse God",
  40115. height: math.unit(3, "multiverses")
  40116. },
  40117. ]
  40118. ))
  40119. characterMakers.push(() => makeCharacter(
  40120. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40121. {
  40122. front: {
  40123. height: math.unit(5 + 5/12, "feet"),
  40124. name: "Front",
  40125. image: {
  40126. source: "./media/characters/fawn/front.svg",
  40127. extra: 1873/1731,
  40128. bottom: 95/1968
  40129. }
  40130. },
  40131. back: {
  40132. height: math.unit(5 + 5/12, "feet"),
  40133. name: "Back",
  40134. image: {
  40135. source: "./media/characters/fawn/back.svg",
  40136. extra: 1813/1700,
  40137. bottom: 14/1827
  40138. }
  40139. },
  40140. hoof: {
  40141. height: math.unit(1.45, "feet"),
  40142. name: "Hoof",
  40143. image: {
  40144. source: "./media/characters/fawn/hoof.svg"
  40145. }
  40146. },
  40147. },
  40148. [
  40149. {
  40150. name: "Normal",
  40151. height: math.unit(5 + 5/12, "feet"),
  40152. default: true
  40153. },
  40154. ]
  40155. ))
  40156. characterMakers.push(() => makeCharacter(
  40157. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40158. {
  40159. front: {
  40160. height: math.unit(2 + 5/12, "feet"),
  40161. name: "Front",
  40162. image: {
  40163. source: "./media/characters/orion/front.svg",
  40164. extra: 1366/1304,
  40165. bottom: 43/1409
  40166. }
  40167. },
  40168. paw: {
  40169. height: math.unit(0.52, "feet"),
  40170. name: "Paw",
  40171. image: {
  40172. source: "./media/characters/orion/paw.svg"
  40173. }
  40174. },
  40175. },
  40176. [
  40177. {
  40178. name: "Normal",
  40179. height: math.unit(2 + 5/12, "feet"),
  40180. default: true
  40181. },
  40182. ]
  40183. ))
  40184. characterMakers.push(() => makeCharacter(
  40185. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40186. {
  40187. front: {
  40188. height: math.unit(5 + 10/12, "feet"),
  40189. name: "Front",
  40190. image: {
  40191. source: "./media/characters/vera/front.svg",
  40192. extra: 1680/1575,
  40193. bottom: 49/1729
  40194. }
  40195. },
  40196. back: {
  40197. height: math.unit(5 + 10/12, "feet"),
  40198. name: "Back",
  40199. image: {
  40200. source: "./media/characters/vera/back.svg",
  40201. extra: 1700/1588,
  40202. bottom: 18/1718
  40203. }
  40204. },
  40205. arcanine: {
  40206. height: math.unit(6 + 8/12, "feet"),
  40207. name: "Arcanine",
  40208. image: {
  40209. source: "./media/characters/vera/arcanine.svg",
  40210. extra: 1590/1511,
  40211. bottom: 71/1661
  40212. }
  40213. },
  40214. maw: {
  40215. height: math.unit(0.82, "feet"),
  40216. name: "Maw",
  40217. image: {
  40218. source: "./media/characters/vera/maw.svg"
  40219. }
  40220. },
  40221. mawArcanine: {
  40222. height: math.unit(0.97, "feet"),
  40223. name: "Maw (Arcanine)",
  40224. image: {
  40225. source: "./media/characters/vera/maw-arcanine.svg"
  40226. }
  40227. },
  40228. paw: {
  40229. height: math.unit(0.75, "feet"),
  40230. name: "Paw",
  40231. image: {
  40232. source: "./media/characters/vera/paw.svg"
  40233. }
  40234. },
  40235. pawprint: {
  40236. height: math.unit(0.52, "feet"),
  40237. name: "Pawprint",
  40238. image: {
  40239. source: "./media/characters/vera/pawprint.svg"
  40240. }
  40241. },
  40242. },
  40243. [
  40244. {
  40245. name: "Normal",
  40246. height: math.unit(5 + 10/12, "feet"),
  40247. default: true
  40248. },
  40249. {
  40250. name: "Macro",
  40251. height: math.unit(75, "feet")
  40252. },
  40253. ]
  40254. ))
  40255. characterMakers.push(() => makeCharacter(
  40256. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40257. {
  40258. front: {
  40259. height: math.unit(4, "feet"),
  40260. weight: math.unit(40, "lb"),
  40261. name: "Front",
  40262. image: {
  40263. source: "./media/characters/orvan-rabbit/front.svg",
  40264. extra: 1896/1642,
  40265. bottom: 29/1925
  40266. }
  40267. },
  40268. },
  40269. [
  40270. {
  40271. name: "Normal",
  40272. height: math.unit(4, "feet"),
  40273. default: true
  40274. },
  40275. ]
  40276. ))
  40277. characterMakers.push(() => makeCharacter(
  40278. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40279. {
  40280. front: {
  40281. height: math.unit(6, "feet"),
  40282. weight: math.unit(168, "lb"),
  40283. name: "Front",
  40284. image: {
  40285. source: "./media/characters/lisa/front.svg",
  40286. extra: 2065/1867,
  40287. bottom: 46/2111
  40288. }
  40289. },
  40290. back: {
  40291. height: math.unit(6, "feet"),
  40292. weight: math.unit(168, "lb"),
  40293. name: "Back",
  40294. image: {
  40295. source: "./media/characters/lisa/back.svg",
  40296. extra: 1982/1838,
  40297. bottom: 29/2011
  40298. }
  40299. },
  40300. maw: {
  40301. height: math.unit(0.81, "feet"),
  40302. name: "Maw",
  40303. image: {
  40304. source: "./media/characters/lisa/maw.svg"
  40305. }
  40306. },
  40307. paw: {
  40308. height: math.unit(0.9, "feet"),
  40309. name: "Paw",
  40310. image: {
  40311. source: "./media/characters/lisa/paw.svg"
  40312. }
  40313. },
  40314. caribousune: {
  40315. height: math.unit(7 + 2/12, "feet"),
  40316. weight: math.unit(268, "lb"),
  40317. name: "Caribousune",
  40318. image: {
  40319. source: "./media/characters/lisa/caribousune.svg",
  40320. extra: 1843/1633,
  40321. bottom: 29/1872
  40322. }
  40323. },
  40324. frontCaribousune: {
  40325. height: math.unit(7 + 2/12, "feet"),
  40326. weight: math.unit(268, "lb"),
  40327. name: "Front (Caribousune)",
  40328. image: {
  40329. source: "./media/characters/lisa/front-caribousune.svg",
  40330. extra: 1818/1638,
  40331. bottom: 52/1870
  40332. }
  40333. },
  40334. sideCaribousune: {
  40335. height: math.unit(7 + 2/12, "feet"),
  40336. weight: math.unit(268, "lb"),
  40337. name: "Side (Caribousune)",
  40338. image: {
  40339. source: "./media/characters/lisa/side-caribousune.svg",
  40340. extra: 1851/1635,
  40341. bottom: 16/1867
  40342. }
  40343. },
  40344. backCaribousune: {
  40345. height: math.unit(7 + 2/12, "feet"),
  40346. weight: math.unit(268, "lb"),
  40347. name: "Back (Caribousune)",
  40348. image: {
  40349. source: "./media/characters/lisa/back-caribousune.svg",
  40350. extra: 1801/1604,
  40351. bottom: 44/1845
  40352. }
  40353. },
  40354. caribou: {
  40355. height: math.unit(7 + 2/12, "feet"),
  40356. weight: math.unit(268, "lb"),
  40357. name: "Caribou",
  40358. image: {
  40359. source: "./media/characters/lisa/caribou.svg",
  40360. extra: 1843/1633,
  40361. bottom: 29/1872
  40362. }
  40363. },
  40364. frontCaribou: {
  40365. height: math.unit(7 + 2/12, "feet"),
  40366. weight: math.unit(268, "lb"),
  40367. name: "Front (Caribou)",
  40368. image: {
  40369. source: "./media/characters/lisa/front-caribou.svg",
  40370. extra: 1818/1638,
  40371. bottom: 52/1870
  40372. }
  40373. },
  40374. sideCaribou: {
  40375. height: math.unit(7 + 2/12, "feet"),
  40376. weight: math.unit(268, "lb"),
  40377. name: "Side (Caribou)",
  40378. image: {
  40379. source: "./media/characters/lisa/side-caribou.svg",
  40380. extra: 1851/1635,
  40381. bottom: 16/1867
  40382. }
  40383. },
  40384. backCaribou: {
  40385. height: math.unit(7 + 2/12, "feet"),
  40386. weight: math.unit(268, "lb"),
  40387. name: "Back (Caribou)",
  40388. image: {
  40389. source: "./media/characters/lisa/back-caribou.svg",
  40390. extra: 1801/1604,
  40391. bottom: 44/1845
  40392. }
  40393. },
  40394. mawCaribou: {
  40395. height: math.unit(1.45, "feet"),
  40396. name: "Maw (Caribou)",
  40397. image: {
  40398. source: "./media/characters/lisa/maw-caribou.svg"
  40399. }
  40400. },
  40401. mawCaribousune: {
  40402. height: math.unit(1.45, "feet"),
  40403. name: "Maw (Caribousune)",
  40404. image: {
  40405. source: "./media/characters/lisa/maw-caribousune.svg"
  40406. }
  40407. },
  40408. pawCaribousune: {
  40409. height: math.unit(1.61, "feet"),
  40410. name: "Paw (Caribou)",
  40411. image: {
  40412. source: "./media/characters/lisa/paw-caribousune.svg"
  40413. }
  40414. },
  40415. },
  40416. [
  40417. {
  40418. name: "Normal",
  40419. height: math.unit(6, "feet")
  40420. },
  40421. {
  40422. name: "God Size",
  40423. height: math.unit(72, "feet"),
  40424. default: true
  40425. },
  40426. {
  40427. name: "Towering",
  40428. height: math.unit(288, "feet")
  40429. },
  40430. {
  40431. name: "City Size",
  40432. height: math.unit(48384, "feet")
  40433. },
  40434. {
  40435. name: "Continental",
  40436. height: math.unit(4200, "miles")
  40437. },
  40438. {
  40439. name: "Planet Eater",
  40440. height: math.unit(42, "earths")
  40441. },
  40442. {
  40443. name: "Star Swallower",
  40444. height: math.unit(42, "solarradii")
  40445. },
  40446. {
  40447. name: "System Swallower",
  40448. height: math.unit(84000, "AU")
  40449. },
  40450. {
  40451. name: "Galaxy Gobbler",
  40452. height: math.unit(42, "galaxies")
  40453. },
  40454. {
  40455. name: "Universe Devourer",
  40456. height: math.unit(42, "universes")
  40457. },
  40458. {
  40459. name: "Multiverse Muncher",
  40460. height: math.unit(42, "multiverses")
  40461. },
  40462. ]
  40463. ))
  40464. characterMakers.push(() => makeCharacter(
  40465. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40466. {
  40467. front: {
  40468. height: math.unit(36, "feet"),
  40469. name: "Front",
  40470. image: {
  40471. source: "./media/characters/shadow-rat/front.svg",
  40472. extra: 1845/1758,
  40473. bottom: 83/1928
  40474. }
  40475. },
  40476. },
  40477. [
  40478. {
  40479. name: "Macro",
  40480. height: math.unit(36, "feet"),
  40481. default: true
  40482. },
  40483. ]
  40484. ))
  40485. characterMakers.push(() => makeCharacter(
  40486. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40487. {
  40488. side: {
  40489. height: math.unit(8, "feet"),
  40490. weight: math.unit(2630, "lb"),
  40491. name: "Side",
  40492. image: {
  40493. source: "./media/characters/torallia/side.svg",
  40494. extra: 2164/2021,
  40495. bottom: 371/2535
  40496. }
  40497. },
  40498. },
  40499. [
  40500. {
  40501. name: "Mortal Interaction",
  40502. height: math.unit(8, "feet")
  40503. },
  40504. {
  40505. name: "Natural",
  40506. height: math.unit(24, "feet"),
  40507. default: true
  40508. },
  40509. {
  40510. name: "Giant",
  40511. height: math.unit(80, "feet")
  40512. },
  40513. {
  40514. name: "Kaiju",
  40515. height: math.unit(240, "feet")
  40516. },
  40517. {
  40518. name: "Macro",
  40519. height: math.unit(800, "feet")
  40520. },
  40521. {
  40522. name: "Macro+",
  40523. height: math.unit(2400, "feet")
  40524. },
  40525. {
  40526. name: "Macro++",
  40527. height: math.unit(8000, "feet")
  40528. },
  40529. {
  40530. name: "City-Crushing",
  40531. height: math.unit(24000, "feet")
  40532. },
  40533. {
  40534. name: "Mountain-Mashing",
  40535. height: math.unit(80000, "feet")
  40536. },
  40537. {
  40538. name: "District Demolisher",
  40539. height: math.unit(240000, "feet")
  40540. },
  40541. {
  40542. name: "Tri-County Terror",
  40543. height: math.unit(800000, "feet")
  40544. },
  40545. {
  40546. name: "State Smasher",
  40547. height: math.unit(2.4e6, "feet")
  40548. },
  40549. {
  40550. name: "Nation Nemesis",
  40551. height: math.unit(8e6, "feet")
  40552. },
  40553. {
  40554. name: "Continent Cracker",
  40555. height: math.unit(2.4e7, "feet")
  40556. },
  40557. {
  40558. name: "Planet-Pillaging",
  40559. height: math.unit(8e7, "feet")
  40560. },
  40561. {
  40562. name: "Earth-Eclipsing",
  40563. height: math.unit(2.4e8, "feet")
  40564. },
  40565. {
  40566. name: "Jovian-Jostling",
  40567. height: math.unit(8e8, "feet")
  40568. },
  40569. {
  40570. name: "Gas Giant Gulper",
  40571. height: math.unit(2.4e9, "feet")
  40572. },
  40573. {
  40574. name: "Astral Annihilator",
  40575. height: math.unit(8e9, "feet")
  40576. },
  40577. {
  40578. name: "Celestial Conqueror",
  40579. height: math.unit(2.4e10, "feet")
  40580. },
  40581. {
  40582. name: "Sol-Swallowing",
  40583. height: math.unit(8e10, "feet")
  40584. },
  40585. {
  40586. name: "Hunter of the Heavens",
  40587. height: math.unit(2.4e13, "feet")
  40588. },
  40589. ]
  40590. ))
  40591. characterMakers.push(() => makeCharacter(
  40592. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40593. {
  40594. front: {
  40595. height: math.unit(6 + 8/12, "feet"),
  40596. weight: math.unit(250, "kilograms"),
  40597. volume: math.unit(28, "liters"),
  40598. name: "Front",
  40599. image: {
  40600. source: "./media/characters/rebecca-pawlson/front.svg",
  40601. extra: 1737/1596,
  40602. bottom: 107/1844
  40603. }
  40604. },
  40605. back: {
  40606. height: math.unit(6 + 8/12, "feet"),
  40607. weight: math.unit(250, "kilograms"),
  40608. volume: math.unit(28, "liters"),
  40609. name: "Back",
  40610. image: {
  40611. source: "./media/characters/rebecca-pawlson/back.svg",
  40612. extra: 1702/1523,
  40613. bottom: 86/1788
  40614. }
  40615. },
  40616. },
  40617. [
  40618. {
  40619. name: "Normal",
  40620. height: math.unit(6 + 8/12, "feet")
  40621. },
  40622. {
  40623. name: "Mini Macro",
  40624. height: math.unit(10, "feet"),
  40625. default: true
  40626. },
  40627. {
  40628. name: "Macro",
  40629. height: math.unit(100, "feet")
  40630. },
  40631. {
  40632. name: "Mega Macro",
  40633. height: math.unit(2500, "feet")
  40634. },
  40635. {
  40636. name: "Giga Macro",
  40637. height: math.unit(50, "miles")
  40638. },
  40639. ]
  40640. ))
  40641. characterMakers.push(() => makeCharacter(
  40642. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40643. {
  40644. front: {
  40645. height: math.unit(7 + 6/12, "feet"),
  40646. weight: math.unit(600, "lb"),
  40647. name: "Front",
  40648. image: {
  40649. source: "./media/characters/moxie-nova/front.svg",
  40650. extra: 1734/1652,
  40651. bottom: 41/1775
  40652. }
  40653. },
  40654. },
  40655. [
  40656. {
  40657. name: "Normal",
  40658. height: math.unit(7 + 6/12, "feet"),
  40659. default: true
  40660. },
  40661. ]
  40662. ))
  40663. characterMakers.push(() => makeCharacter(
  40664. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40665. {
  40666. goat: {
  40667. height: math.unit(4, "feet"),
  40668. weight: math.unit(180, "lb"),
  40669. name: "Goat",
  40670. image: {
  40671. source: "./media/characters/tiffany/goat.svg",
  40672. extra: 1845/1595,
  40673. bottom: 106/1951
  40674. }
  40675. },
  40676. front: {
  40677. height: math.unit(5, "feet"),
  40678. weight: math.unit(150, "lb"),
  40679. name: "Foxcoon",
  40680. image: {
  40681. source: "./media/characters/tiffany/foxcoon.svg",
  40682. extra: 1941/1845,
  40683. bottom: 58/1999
  40684. }
  40685. },
  40686. },
  40687. [
  40688. {
  40689. name: "Normal",
  40690. height: math.unit(5, "feet"),
  40691. default: true
  40692. },
  40693. ]
  40694. ))
  40695. characterMakers.push(() => makeCharacter(
  40696. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40697. {
  40698. front: {
  40699. height: math.unit(8, "feet"),
  40700. weight: math.unit(300, "lb"),
  40701. name: "Front",
  40702. image: {
  40703. source: "./media/characters/raxinath/front.svg",
  40704. extra: 1407/1309,
  40705. bottom: 39/1446
  40706. }
  40707. },
  40708. back: {
  40709. height: math.unit(8, "feet"),
  40710. weight: math.unit(300, "lb"),
  40711. name: "Back",
  40712. image: {
  40713. source: "./media/characters/raxinath/back.svg",
  40714. extra: 1405/1315,
  40715. bottom: 9/1414
  40716. }
  40717. },
  40718. },
  40719. [
  40720. {
  40721. name: "Speck",
  40722. height: math.unit(0.5, "nm")
  40723. },
  40724. {
  40725. name: "Micro",
  40726. height: math.unit(3, "inches")
  40727. },
  40728. {
  40729. name: "Kobold",
  40730. height: math.unit(3, "feet")
  40731. },
  40732. {
  40733. name: "Normal",
  40734. height: math.unit(8, "feet"),
  40735. default: true
  40736. },
  40737. {
  40738. name: "Giant",
  40739. height: math.unit(50, "feet")
  40740. },
  40741. {
  40742. name: "Macro",
  40743. height: math.unit(1000, "feet")
  40744. },
  40745. {
  40746. name: "Megamacro",
  40747. height: math.unit(1, "mile")
  40748. },
  40749. ]
  40750. ))
  40751. characterMakers.push(() => makeCharacter(
  40752. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40753. {
  40754. front: {
  40755. height: math.unit(10, "feet"),
  40756. weight: math.unit(1442, "lb"),
  40757. name: "Front",
  40758. image: {
  40759. source: "./media/characters/mal-dragon/front.svg",
  40760. extra: 1515/1444,
  40761. bottom: 113/1628
  40762. }
  40763. },
  40764. back: {
  40765. height: math.unit(10, "feet"),
  40766. weight: math.unit(1442, "lb"),
  40767. name: "Back",
  40768. image: {
  40769. source: "./media/characters/mal-dragon/back.svg",
  40770. extra: 1527/1434,
  40771. bottom: 25/1552
  40772. }
  40773. },
  40774. },
  40775. [
  40776. {
  40777. name: "Mortal Interaction",
  40778. height: math.unit(10, "feet"),
  40779. default: true
  40780. },
  40781. {
  40782. name: "Large",
  40783. height: math.unit(30, "feet")
  40784. },
  40785. {
  40786. name: "Kaiju",
  40787. height: math.unit(300, "feet")
  40788. },
  40789. {
  40790. name: "Megamacro",
  40791. height: math.unit(10000, "feet")
  40792. },
  40793. {
  40794. name: "Continent Cracker",
  40795. height: math.unit(30000000, "feet")
  40796. },
  40797. {
  40798. name: "Sol-Swallowing",
  40799. height: math.unit(1e11, "feet")
  40800. },
  40801. {
  40802. name: "Light Universal",
  40803. height: math.unit(5, "universes")
  40804. },
  40805. {
  40806. name: "Universe Atoms",
  40807. height: math.unit(1.829e9, "universes")
  40808. },
  40809. {
  40810. name: "Light Multiversal",
  40811. height: math.unit(5, "multiverses")
  40812. },
  40813. {
  40814. name: "Multiverse Atoms",
  40815. height: math.unit(1.829e9, "multiverses")
  40816. },
  40817. {
  40818. name: "Fabric of Time",
  40819. height: math.unit(1e262, "multiverses")
  40820. },
  40821. ]
  40822. ))
  40823. characterMakers.push(() => makeCharacter(
  40824. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40825. {
  40826. front: {
  40827. height: math.unit(9, "feet"),
  40828. weight: math.unit(1050, "lb"),
  40829. name: "Front",
  40830. image: {
  40831. source: "./media/characters/tabitha/front.svg",
  40832. extra: 2083/1994,
  40833. bottom: 68/2151
  40834. }
  40835. },
  40836. },
  40837. [
  40838. {
  40839. name: "Baseline",
  40840. height: math.unit(9, "feet"),
  40841. default: true
  40842. },
  40843. {
  40844. name: "Giant",
  40845. height: math.unit(90, "feet")
  40846. },
  40847. {
  40848. name: "Macro",
  40849. height: math.unit(900, "feet")
  40850. },
  40851. {
  40852. name: "Megamacro",
  40853. height: math.unit(9000, "feet")
  40854. },
  40855. {
  40856. name: "City-Crushing",
  40857. height: math.unit(27000, "feet")
  40858. },
  40859. {
  40860. name: "Mountain-Mashing",
  40861. height: math.unit(90000, "feet")
  40862. },
  40863. {
  40864. name: "Nation Nemesis",
  40865. height: math.unit(9e6, "feet")
  40866. },
  40867. {
  40868. name: "Continent Cracker",
  40869. height: math.unit(27e6, "feet")
  40870. },
  40871. {
  40872. name: "Earth-Eclipsing",
  40873. height: math.unit(2.7e8, "feet")
  40874. },
  40875. {
  40876. name: "Gas Giant Gulper",
  40877. height: math.unit(2.7e9, "feet")
  40878. },
  40879. {
  40880. name: "Sol-Swallowing",
  40881. height: math.unit(9e10, "feet")
  40882. },
  40883. {
  40884. name: "Galaxy Gulper",
  40885. height: math.unit(9, "galaxies")
  40886. },
  40887. {
  40888. name: "Cosmos Churner",
  40889. height: math.unit(9, "universes")
  40890. },
  40891. ]
  40892. ))
  40893. characterMakers.push(() => makeCharacter(
  40894. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40895. {
  40896. front: {
  40897. height: math.unit(160, "cm"),
  40898. weight: math.unit(55, "kg"),
  40899. name: "Front",
  40900. image: {
  40901. source: "./media/characters/tow/front.svg",
  40902. extra: 1751/1722,
  40903. bottom: 74/1825
  40904. }
  40905. },
  40906. },
  40907. [
  40908. {
  40909. name: "Norm",
  40910. height: math.unit(160, "cm")
  40911. },
  40912. {
  40913. name: "Casual",
  40914. height: math.unit(3200, "m"),
  40915. default: true
  40916. },
  40917. {
  40918. name: "Show-Off",
  40919. height: math.unit(160, "km")
  40920. },
  40921. ]
  40922. ))
  40923. characterMakers.push(() => makeCharacter(
  40924. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40925. {
  40926. front: {
  40927. height: math.unit(7 + 11/12, "feet"),
  40928. weight: math.unit(342.8, "lb"),
  40929. name: "Front",
  40930. image: {
  40931. source: "./media/characters/vivian-orca-dragon/front.svg",
  40932. extra: 1890/1865,
  40933. bottom: 28/1918
  40934. }
  40935. },
  40936. },
  40937. [
  40938. {
  40939. name: "Micro",
  40940. height: math.unit(5, "inches")
  40941. },
  40942. {
  40943. name: "Normal",
  40944. height: math.unit(7 + 11/12, "feet"),
  40945. default: true
  40946. },
  40947. {
  40948. name: "Macro",
  40949. height: math.unit(395 + 7/12, "feet")
  40950. },
  40951. ]
  40952. ))
  40953. characterMakers.push(() => makeCharacter(
  40954. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40955. {
  40956. side: {
  40957. height: math.unit(10, "feet"),
  40958. weight: math.unit(1442, "lb"),
  40959. name: "Side",
  40960. image: {
  40961. source: "./media/characters/lotherakon/side.svg",
  40962. extra: 1604/1497,
  40963. bottom: 89/1693
  40964. }
  40965. },
  40966. },
  40967. [
  40968. {
  40969. name: "Mortal Interaction",
  40970. height: math.unit(10, "feet")
  40971. },
  40972. {
  40973. name: "Large",
  40974. height: math.unit(30, "feet"),
  40975. default: true
  40976. },
  40977. {
  40978. name: "Giant",
  40979. height: math.unit(100, "feet")
  40980. },
  40981. {
  40982. name: "Kaiju",
  40983. height: math.unit(300, "feet")
  40984. },
  40985. {
  40986. name: "Macro",
  40987. height: math.unit(1000, "feet")
  40988. },
  40989. {
  40990. name: "Macro+",
  40991. height: math.unit(3000, "feet")
  40992. },
  40993. {
  40994. name: "Megamacro",
  40995. height: math.unit(10000, "feet")
  40996. },
  40997. {
  40998. name: "City-Crushing",
  40999. height: math.unit(30000, "feet")
  41000. },
  41001. {
  41002. name: "Continent Cracker",
  41003. height: math.unit(30e6, "feet")
  41004. },
  41005. {
  41006. name: "Earth Eclipsing",
  41007. height: math.unit(3e8, "feet")
  41008. },
  41009. {
  41010. name: "Gas Giant Gulper",
  41011. height: math.unit(3e9, "feet")
  41012. },
  41013. {
  41014. name: "Sol-Swallowing",
  41015. height: math.unit(1e11, "feet")
  41016. },
  41017. {
  41018. name: "System Swallower",
  41019. height: math.unit(3e14, "feet")
  41020. },
  41021. {
  41022. name: "Galaxy Gulper",
  41023. height: math.unit(10, "galaxies")
  41024. },
  41025. {
  41026. name: "Light Universal",
  41027. height: math.unit(5, "universes")
  41028. },
  41029. {
  41030. name: "Universe Palm",
  41031. height: math.unit(20, "universes")
  41032. },
  41033. {
  41034. name: "Light Multiversal",
  41035. height: math.unit(5, "multiverses")
  41036. },
  41037. {
  41038. name: "Multiverse Palm",
  41039. height: math.unit(20, "multiverses")
  41040. },
  41041. {
  41042. name: "Inferno Incarnate",
  41043. height: math.unit(1e7, "multiverses")
  41044. },
  41045. ]
  41046. ))
  41047. characterMakers.push(() => makeCharacter(
  41048. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41049. {
  41050. front: {
  41051. height: math.unit(8, "feet"),
  41052. weight: math.unit(1200, "lb"),
  41053. name: "Front",
  41054. image: {
  41055. source: "./media/characters/malithee/front.svg",
  41056. extra: 1675/1640,
  41057. bottom: 162/1837
  41058. }
  41059. },
  41060. },
  41061. [
  41062. {
  41063. name: "Mortal Interaction",
  41064. height: math.unit(8, "feet"),
  41065. default: true
  41066. },
  41067. {
  41068. name: "Large",
  41069. height: math.unit(24, "feet")
  41070. },
  41071. {
  41072. name: "Kaiju",
  41073. height: math.unit(240, "feet")
  41074. },
  41075. {
  41076. name: "Megamacro",
  41077. height: math.unit(8000, "feet")
  41078. },
  41079. {
  41080. name: "Continent Cracker",
  41081. height: math.unit(24e6, "feet")
  41082. },
  41083. {
  41084. name: "Earth-Eclipsing",
  41085. height: math.unit(2.4e8, "feet")
  41086. },
  41087. {
  41088. name: "Sol-Swallowing",
  41089. height: math.unit(8e10, "feet")
  41090. },
  41091. {
  41092. name: "Galaxy Gulper",
  41093. height: math.unit(8, "galaxies")
  41094. },
  41095. {
  41096. name: "Light Universal",
  41097. height: math.unit(4, "universes")
  41098. },
  41099. {
  41100. name: "Universe Atoms",
  41101. height: math.unit(1.829e9, "universes")
  41102. },
  41103. {
  41104. name: "Light Multiversal",
  41105. height: math.unit(4, "multiverses")
  41106. },
  41107. {
  41108. name: "Multiverse Atoms",
  41109. height: math.unit(1.829e9, "multiverses")
  41110. },
  41111. {
  41112. name: "Nigh-Omnipresence",
  41113. height: math.unit(8e261, "multiverses")
  41114. },
  41115. ]
  41116. ))
  41117. characterMakers.push(() => makeCharacter(
  41118. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41119. {
  41120. front: {
  41121. height: math.unit(10, "feet"),
  41122. weight: math.unit(1500, "lb"),
  41123. name: "Front",
  41124. image: {
  41125. source: "./media/characters/miles-thestia/front.svg",
  41126. extra: 1812/1727,
  41127. bottom: 86/1898
  41128. }
  41129. },
  41130. back: {
  41131. height: math.unit(10, "feet"),
  41132. weight: math.unit(1500, "lb"),
  41133. name: "Back",
  41134. image: {
  41135. source: "./media/characters/miles-thestia/back.svg",
  41136. extra: 1799/1690,
  41137. bottom: 47/1846
  41138. }
  41139. },
  41140. frontNsfw: {
  41141. height: math.unit(10, "feet"),
  41142. weight: math.unit(1500, "lb"),
  41143. name: "Front (NSFW)",
  41144. image: {
  41145. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41146. extra: 1812/1727,
  41147. bottom: 86/1898
  41148. }
  41149. },
  41150. },
  41151. [
  41152. {
  41153. name: "Mini-Macro",
  41154. height: math.unit(10, "feet"),
  41155. default: true
  41156. },
  41157. ]
  41158. ))
  41159. characterMakers.push(() => makeCharacter(
  41160. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41161. {
  41162. front: {
  41163. height: math.unit(25, "feet"),
  41164. name: "Front",
  41165. image: {
  41166. source: "./media/characters/titan-s-wulf/front.svg",
  41167. extra: 1560/1484,
  41168. bottom: 76/1636
  41169. }
  41170. },
  41171. },
  41172. [
  41173. {
  41174. name: "Smallest",
  41175. height: math.unit(25, "feet"),
  41176. default: true
  41177. },
  41178. {
  41179. name: "Normal",
  41180. height: math.unit(200, "feet")
  41181. },
  41182. {
  41183. name: "Macro",
  41184. height: math.unit(200000, "feet")
  41185. },
  41186. {
  41187. name: "Multiversal Original",
  41188. height: math.unit(10000, "multiverses")
  41189. },
  41190. ]
  41191. ))
  41192. characterMakers.push(() => makeCharacter(
  41193. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41194. {
  41195. front: {
  41196. height: math.unit(8, "feet"),
  41197. weight: math.unit(553, "lb"),
  41198. name: "Front",
  41199. image: {
  41200. source: "./media/characters/tawendeh/front.svg",
  41201. extra: 2365/2268,
  41202. bottom: 83/2448
  41203. }
  41204. },
  41205. frontClothed: {
  41206. height: math.unit(8, "feet"),
  41207. weight: math.unit(553, "lb"),
  41208. name: "Front (Clothed)",
  41209. image: {
  41210. source: "./media/characters/tawendeh/front-clothed.svg",
  41211. extra: 2365/2268,
  41212. bottom: 83/2448
  41213. }
  41214. },
  41215. back: {
  41216. height: math.unit(8, "feet"),
  41217. weight: math.unit(553, "lb"),
  41218. name: "Back",
  41219. image: {
  41220. source: "./media/characters/tawendeh/back.svg",
  41221. extra: 2397/2294,
  41222. bottom: 42/2439
  41223. }
  41224. },
  41225. },
  41226. [
  41227. {
  41228. name: "Mortal Interaction",
  41229. height: math.unit(8, "feet"),
  41230. default: true
  41231. },
  41232. {
  41233. name: "Giant",
  41234. height: math.unit(80, "feet")
  41235. },
  41236. {
  41237. name: "Macro",
  41238. height: math.unit(800, "feet")
  41239. },
  41240. {
  41241. name: "Megamacro",
  41242. height: math.unit(8000, "feet")
  41243. },
  41244. {
  41245. name: "City-Crushing",
  41246. height: math.unit(24000, "feet")
  41247. },
  41248. {
  41249. name: "Mountain-Mashing",
  41250. height: math.unit(80000, "feet")
  41251. },
  41252. {
  41253. name: "Nation Nemesis",
  41254. height: math.unit(8e6, "feet")
  41255. },
  41256. {
  41257. name: "Continent Cracker",
  41258. height: math.unit(24e6, "feet")
  41259. },
  41260. {
  41261. name: "Earth-Eclipsing",
  41262. height: math.unit(2.4e8, "feet")
  41263. },
  41264. {
  41265. name: "Gas Giant Gulper",
  41266. height: math.unit(2.4e9, "feet")
  41267. },
  41268. {
  41269. name: "Sol-Swallowing",
  41270. height: math.unit(8e10, "feet")
  41271. },
  41272. {
  41273. name: "Galaxy Gulper",
  41274. height: math.unit(8, "galaxies")
  41275. },
  41276. {
  41277. name: "Cosmos Churner",
  41278. height: math.unit(8, "universes")
  41279. },
  41280. {
  41281. name: "Omnipotent Otter",
  41282. height: math.unit(80, "universes")
  41283. },
  41284. ]
  41285. ))
  41286. characterMakers.push(() => makeCharacter(
  41287. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41288. {
  41289. front: {
  41290. height: math.unit(2.6, "meters"),
  41291. weight: math.unit(900, "kg"),
  41292. name: "Front",
  41293. image: {
  41294. source: "./media/characters/neesha/front.svg",
  41295. extra: 1803/1653,
  41296. bottom: 128/1931
  41297. }
  41298. },
  41299. },
  41300. [
  41301. {
  41302. name: "Normal",
  41303. height: math.unit(2.6, "meters"),
  41304. default: true
  41305. },
  41306. {
  41307. name: "Macro",
  41308. height: math.unit(50, "meters")
  41309. },
  41310. ]
  41311. ))
  41312. characterMakers.push(() => makeCharacter(
  41313. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41314. {
  41315. front: {
  41316. height: math.unit(5, "feet"),
  41317. weight: math.unit(185, "lb"),
  41318. name: "Front",
  41319. image: {
  41320. source: "./media/characters/kyera/front.svg",
  41321. extra: 1875/1790,
  41322. bottom: 96/1971
  41323. }
  41324. },
  41325. },
  41326. [
  41327. {
  41328. name: "Normal",
  41329. height: math.unit(5, "feet"),
  41330. default: true
  41331. },
  41332. ]
  41333. ))
  41334. characterMakers.push(() => makeCharacter(
  41335. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41336. {
  41337. front: {
  41338. height: math.unit(7 + 6/12, "feet"),
  41339. weight: math.unit(540, "lb"),
  41340. name: "Front",
  41341. image: {
  41342. source: "./media/characters/yuko/front.svg",
  41343. extra: 1282/1222,
  41344. bottom: 101/1383
  41345. }
  41346. },
  41347. frontClothed: {
  41348. height: math.unit(7 + 6/12, "feet"),
  41349. weight: math.unit(540, "lb"),
  41350. name: "Front (Clothed)",
  41351. image: {
  41352. source: "./media/characters/yuko/front-clothed.svg",
  41353. extra: 1282/1222,
  41354. bottom: 101/1383
  41355. }
  41356. },
  41357. },
  41358. [
  41359. {
  41360. name: "Normal",
  41361. height: math.unit(7 + 6/12, "feet"),
  41362. default: true
  41363. },
  41364. {
  41365. name: "Macro",
  41366. height: math.unit(26 + 9/12, "feet")
  41367. },
  41368. {
  41369. name: "Megamacro",
  41370. height: math.unit(300, "feet")
  41371. },
  41372. {
  41373. name: "Gigamacro",
  41374. height: math.unit(5000, "feet")
  41375. },
  41376. {
  41377. name: "Planetary",
  41378. height: math.unit(10000, "miles")
  41379. },
  41380. ]
  41381. ))
  41382. characterMakers.push(() => makeCharacter(
  41383. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41384. {
  41385. front: {
  41386. height: math.unit(8 + 2/12, "feet"),
  41387. weight: math.unit(600, "lb"),
  41388. name: "Front",
  41389. image: {
  41390. source: "./media/characters/deam-nitrel/front.svg",
  41391. extra: 1308/1234,
  41392. bottom: 125/1433
  41393. }
  41394. },
  41395. },
  41396. [
  41397. {
  41398. name: "Normal",
  41399. height: math.unit(8 + 2/12, "feet"),
  41400. default: true
  41401. },
  41402. ]
  41403. ))
  41404. characterMakers.push(() => makeCharacter(
  41405. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41406. {
  41407. front: {
  41408. height: math.unit(6.1, "feet"),
  41409. weight: math.unit(180, "lb"),
  41410. name: "Front",
  41411. image: {
  41412. source: "./media/characters/skyress/front.svg",
  41413. extra: 1045/915,
  41414. bottom: 28/1073
  41415. }
  41416. },
  41417. maw: {
  41418. height: math.unit(1, "feet"),
  41419. name: "Maw",
  41420. image: {
  41421. source: "./media/characters/skyress/maw.svg"
  41422. }
  41423. },
  41424. },
  41425. [
  41426. {
  41427. name: "Normal",
  41428. height: math.unit(6.1, "feet"),
  41429. default: true
  41430. },
  41431. {
  41432. name: "Macro",
  41433. height: math.unit(200, "feet")
  41434. },
  41435. ]
  41436. ))
  41437. characterMakers.push(() => makeCharacter(
  41438. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41439. {
  41440. front: {
  41441. height: math.unit(4 + 2/12, "feet"),
  41442. weight: math.unit(40, "kg"),
  41443. name: "Front",
  41444. image: {
  41445. source: "./media/characters/amethyst-jones/front.svg",
  41446. extra: 1220/1150,
  41447. bottom: 101/1321
  41448. }
  41449. },
  41450. },
  41451. [
  41452. {
  41453. name: "Normal",
  41454. height: math.unit(4 + 2/12, "feet"),
  41455. default: true
  41456. },
  41457. ]
  41458. ))
  41459. characterMakers.push(() => makeCharacter(
  41460. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41461. {
  41462. front: {
  41463. height: math.unit(1.7, "m"),
  41464. weight: math.unit(135, "lb"),
  41465. name: "Front",
  41466. image: {
  41467. source: "./media/characters/jade/front.svg",
  41468. extra: 1818/1767,
  41469. bottom: 32/1850
  41470. }
  41471. },
  41472. back: {
  41473. height: math.unit(1.7, "m"),
  41474. weight: math.unit(135, "lb"),
  41475. name: "Back",
  41476. image: {
  41477. source: "./media/characters/jade/back.svg",
  41478. extra: 1869/1809,
  41479. bottom: 35/1904
  41480. }
  41481. },
  41482. hand: {
  41483. height: math.unit(0.24, "m"),
  41484. name: "Hand",
  41485. image: {
  41486. source: "./media/characters/jade/hand.svg"
  41487. }
  41488. },
  41489. foot: {
  41490. height: math.unit(0.263, "m"),
  41491. name: "Foot",
  41492. image: {
  41493. source: "./media/characters/jade/foot.svg"
  41494. }
  41495. },
  41496. dick: {
  41497. height: math.unit(0.47, "m"),
  41498. name: "Dick",
  41499. image: {
  41500. source: "./media/characters/jade/dick.svg"
  41501. }
  41502. },
  41503. },
  41504. [
  41505. {
  41506. name: "Micro",
  41507. height: math.unit(22, "cm")
  41508. },
  41509. {
  41510. name: "Normal",
  41511. height: math.unit(1.7, "m"),
  41512. default: true
  41513. },
  41514. {
  41515. name: "Macro",
  41516. height: math.unit(152, "m")
  41517. },
  41518. ]
  41519. ))
  41520. characterMakers.push(() => makeCharacter(
  41521. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41522. {
  41523. front: {
  41524. height: math.unit(100, "miles"),
  41525. weight: math.unit(20000, "tons"),
  41526. name: "Front",
  41527. image: {
  41528. source: "./media/characters/cookie/front.svg",
  41529. extra: 1125/1070,
  41530. bottom: 30/1155
  41531. }
  41532. },
  41533. },
  41534. [
  41535. {
  41536. name: "Big",
  41537. height: math.unit(50, "feet")
  41538. },
  41539. {
  41540. name: "Macro",
  41541. height: math.unit(100, "miles"),
  41542. default: true
  41543. },
  41544. {
  41545. name: "Megamacro",
  41546. height: math.unit(90000, "miles")
  41547. },
  41548. ]
  41549. ))
  41550. characterMakers.push(() => makeCharacter(
  41551. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41552. {
  41553. front: {
  41554. height: math.unit(6, "feet"),
  41555. weight: math.unit(145, "lb"),
  41556. name: "Front",
  41557. image: {
  41558. source: "./media/characters/farzian/front.svg",
  41559. extra: 1902/1693,
  41560. bottom: 108/2010
  41561. }
  41562. },
  41563. },
  41564. [
  41565. {
  41566. name: "Macro",
  41567. height: math.unit(500, "feet"),
  41568. default: true
  41569. },
  41570. ]
  41571. ))
  41572. characterMakers.push(() => makeCharacter(
  41573. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41574. {
  41575. front: {
  41576. height: math.unit(3 + 6/12, "feet"),
  41577. weight: math.unit(50, "lb"),
  41578. name: "Front",
  41579. image: {
  41580. source: "./media/characters/kimberly-tilson/front.svg",
  41581. extra: 1400/1322,
  41582. bottom: 36/1436
  41583. }
  41584. },
  41585. back: {
  41586. height: math.unit(3 + 6/12, "feet"),
  41587. weight: math.unit(50, "lb"),
  41588. name: "Back",
  41589. image: {
  41590. source: "./media/characters/kimberly-tilson/back.svg",
  41591. extra: 1370/1307,
  41592. bottom: 20/1390
  41593. }
  41594. },
  41595. },
  41596. [
  41597. {
  41598. name: "Normal",
  41599. height: math.unit(3 + 6/12, "feet"),
  41600. default: true
  41601. },
  41602. ]
  41603. ))
  41604. characterMakers.push(() => makeCharacter(
  41605. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41606. {
  41607. front: {
  41608. height: math.unit(1148, "feet"),
  41609. weight: math.unit(34057, "lb"),
  41610. name: "Front",
  41611. image: {
  41612. source: "./media/characters/harthos/front.svg",
  41613. extra: 1391/1339,
  41614. bottom: 13/1404
  41615. }
  41616. },
  41617. },
  41618. [
  41619. {
  41620. name: "Macro",
  41621. height: math.unit(1148, "feet"),
  41622. default: true
  41623. },
  41624. ]
  41625. ))
  41626. characterMakers.push(() => makeCharacter(
  41627. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41628. {
  41629. front: {
  41630. height: math.unit(15, "feet"),
  41631. name: "Front",
  41632. image: {
  41633. source: "./media/characters/hypatia/front.svg",
  41634. extra: 1653/1591,
  41635. bottom: 79/1732
  41636. }
  41637. },
  41638. },
  41639. [
  41640. {
  41641. name: "Normal",
  41642. height: math.unit(15, "feet")
  41643. },
  41644. {
  41645. name: "Small",
  41646. height: math.unit(300, "feet")
  41647. },
  41648. {
  41649. name: "Macro",
  41650. height: math.unit(2500, "feet"),
  41651. default: true
  41652. },
  41653. {
  41654. name: "Mega Macro",
  41655. height: math.unit(1500, "miles")
  41656. },
  41657. {
  41658. name: "Giga Macro",
  41659. height: math.unit(1.5e6, "miles")
  41660. },
  41661. ]
  41662. ))
  41663. characterMakers.push(() => makeCharacter(
  41664. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41665. {
  41666. front: {
  41667. height: math.unit(6, "feet"),
  41668. weight: math.unit(200, "lb"),
  41669. name: "Front",
  41670. image: {
  41671. source: "./media/characters/wulver/front.svg",
  41672. extra: 1724/1632,
  41673. bottom: 130/1854
  41674. }
  41675. },
  41676. frontNsfw: {
  41677. height: math.unit(6, "feet"),
  41678. weight: math.unit(200, "lb"),
  41679. name: "Front (NSFW)",
  41680. image: {
  41681. source: "./media/characters/wulver/front-nsfw.svg",
  41682. extra: 1724/1632,
  41683. bottom: 130/1854
  41684. }
  41685. },
  41686. },
  41687. [
  41688. {
  41689. name: "Human-Sized",
  41690. height: math.unit(6, "feet")
  41691. },
  41692. {
  41693. name: "Normal",
  41694. height: math.unit(4, "meters"),
  41695. default: true
  41696. },
  41697. {
  41698. name: "Large",
  41699. height: math.unit(6, "m")
  41700. },
  41701. ]
  41702. ))
  41703. characterMakers.push(() => makeCharacter(
  41704. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41705. {
  41706. front: {
  41707. height: math.unit(7, "feet"),
  41708. name: "Front",
  41709. image: {
  41710. source: "./media/characters/maru/front.svg",
  41711. extra: 1595/1570,
  41712. bottom: 0/1595
  41713. }
  41714. },
  41715. },
  41716. [
  41717. {
  41718. name: "Normal",
  41719. height: math.unit(7, "feet"),
  41720. default: true
  41721. },
  41722. {
  41723. name: "Macro",
  41724. height: math.unit(700, "feet")
  41725. },
  41726. {
  41727. name: "Mega Macro",
  41728. height: math.unit(25, "miles")
  41729. },
  41730. ]
  41731. ))
  41732. characterMakers.push(() => makeCharacter(
  41733. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41734. {
  41735. front: {
  41736. height: math.unit(6, "feet"),
  41737. weight: math.unit(170, "lb"),
  41738. name: "Front",
  41739. image: {
  41740. source: "./media/characters/xenon/front.svg",
  41741. extra: 1376/1305,
  41742. bottom: 56/1432
  41743. }
  41744. },
  41745. back: {
  41746. height: math.unit(6, "feet"),
  41747. weight: math.unit(170, "lb"),
  41748. name: "Back",
  41749. image: {
  41750. source: "./media/characters/xenon/back.svg",
  41751. extra: 1328/1259,
  41752. bottom: 95/1423
  41753. }
  41754. },
  41755. maw: {
  41756. height: math.unit(0.52, "feet"),
  41757. name: "Maw",
  41758. image: {
  41759. source: "./media/characters/xenon/maw.svg"
  41760. }
  41761. },
  41762. handLeft: {
  41763. height: math.unit(0.82 * 169 / 153, "feet"),
  41764. name: "Hand (Left)",
  41765. image: {
  41766. source: "./media/characters/xenon/hand-left.svg"
  41767. }
  41768. },
  41769. handRight: {
  41770. height: math.unit(0.82, "feet"),
  41771. name: "Hand (Right)",
  41772. image: {
  41773. source: "./media/characters/xenon/hand-right.svg"
  41774. }
  41775. },
  41776. footLeft: {
  41777. height: math.unit(1.13, "feet"),
  41778. name: "Foot (Left)",
  41779. image: {
  41780. source: "./media/characters/xenon/foot-left.svg"
  41781. }
  41782. },
  41783. footRight: {
  41784. height: math.unit(1.13 * 194 / 196, "feet"),
  41785. name: "Foot (Right)",
  41786. image: {
  41787. source: "./media/characters/xenon/foot-right.svg"
  41788. }
  41789. },
  41790. },
  41791. [
  41792. {
  41793. name: "Micro",
  41794. height: math.unit(0.8, "inches")
  41795. },
  41796. {
  41797. name: "Normal",
  41798. height: math.unit(6, "feet")
  41799. },
  41800. {
  41801. name: "Macro",
  41802. height: math.unit(50, "feet"),
  41803. default: true
  41804. },
  41805. {
  41806. name: "Macro+",
  41807. height: math.unit(250, "feet")
  41808. },
  41809. {
  41810. name: "Megamacro",
  41811. height: math.unit(1500, "feet")
  41812. },
  41813. ]
  41814. ))
  41815. characterMakers.push(() => makeCharacter(
  41816. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41817. {
  41818. front: {
  41819. height: math.unit(7 + 5/12, "feet"),
  41820. name: "Front",
  41821. image: {
  41822. source: "./media/characters/zane/front.svg",
  41823. extra: 1260/1203,
  41824. bottom: 94/1354
  41825. }
  41826. },
  41827. back: {
  41828. height: math.unit(5.05, "feet"),
  41829. name: "Back",
  41830. image: {
  41831. source: "./media/characters/zane/back.svg",
  41832. extra: 893/829,
  41833. bottom: 30/923
  41834. }
  41835. },
  41836. werewolf: {
  41837. height: math.unit(11, "feet"),
  41838. name: "Werewolf",
  41839. image: {
  41840. source: "./media/characters/zane/werewolf.svg",
  41841. extra: 1383/1323,
  41842. bottom: 89/1472
  41843. }
  41844. },
  41845. foot: {
  41846. height: math.unit(1.46, "feet"),
  41847. name: "Foot",
  41848. image: {
  41849. source: "./media/characters/zane/foot.svg"
  41850. }
  41851. },
  41852. footFront: {
  41853. height: math.unit(0.784, "feet"),
  41854. name: "Foot (Front)",
  41855. image: {
  41856. source: "./media/characters/zane/foot-front.svg"
  41857. }
  41858. },
  41859. dick: {
  41860. height: math.unit(1.95, "feet"),
  41861. name: "Dick",
  41862. image: {
  41863. source: "./media/characters/zane/dick.svg"
  41864. }
  41865. },
  41866. dickWerewolf: {
  41867. height: math.unit(3.77, "feet"),
  41868. name: "Dick (Werewolf)",
  41869. image: {
  41870. source: "./media/characters/zane/dick.svg"
  41871. }
  41872. },
  41873. },
  41874. [
  41875. {
  41876. name: "Normal",
  41877. height: math.unit(7 + 5/12, "feet"),
  41878. default: true
  41879. },
  41880. ]
  41881. ))
  41882. characterMakers.push(() => makeCharacter(
  41883. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41884. {
  41885. front: {
  41886. height: math.unit(6 + 2/12, "feet"),
  41887. weight: math.unit(284, "lb"),
  41888. name: "Front",
  41889. image: {
  41890. source: "./media/characters/benni-desparque/front.svg",
  41891. extra: 1353/1126,
  41892. bottom: 69/1422
  41893. }
  41894. },
  41895. },
  41896. [
  41897. {
  41898. name: "Civilian",
  41899. height: math.unit(6 + 2/12, "feet")
  41900. },
  41901. {
  41902. name: "Normal",
  41903. height: math.unit(98, "feet"),
  41904. default: true
  41905. },
  41906. {
  41907. name: "Kaiju Fighter",
  41908. height: math.unit(268, "feet")
  41909. },
  41910. ]
  41911. ))
  41912. characterMakers.push(() => makeCharacter(
  41913. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41914. {
  41915. front: {
  41916. height: math.unit(5, "feet"),
  41917. weight: math.unit(105, "lb"),
  41918. name: "Front",
  41919. image: {
  41920. source: "./media/characters/maxine/front.svg",
  41921. extra: 1386/1250,
  41922. bottom: 71/1457
  41923. }
  41924. },
  41925. },
  41926. [
  41927. {
  41928. name: "Normal",
  41929. height: math.unit(5, "feet"),
  41930. default: true
  41931. },
  41932. ]
  41933. ))
  41934. characterMakers.push(() => makeCharacter(
  41935. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41936. {
  41937. front: {
  41938. height: math.unit(11 + 7/12, "feet"),
  41939. weight: math.unit(9576, "lb"),
  41940. name: "Front",
  41941. image: {
  41942. source: "./media/characters/scaly/front.svg",
  41943. extra: 888/867,
  41944. bottom: 36/924
  41945. }
  41946. },
  41947. },
  41948. [
  41949. {
  41950. name: "Normal",
  41951. height: math.unit(11 + 7/12, "feet"),
  41952. default: true
  41953. },
  41954. ]
  41955. ))
  41956. characterMakers.push(() => makeCharacter(
  41957. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41958. {
  41959. front: {
  41960. height: math.unit(6 + 3/12, "feet"),
  41961. name: "Front",
  41962. image: {
  41963. source: "./media/characters/saelria/front.svg",
  41964. extra: 1243/1138,
  41965. bottom: 46/1289
  41966. }
  41967. },
  41968. },
  41969. [
  41970. {
  41971. name: "Micro",
  41972. height: math.unit(6, "inches"),
  41973. },
  41974. {
  41975. name: "Normal",
  41976. height: math.unit(6 + 3/12, "feet"),
  41977. default: true
  41978. },
  41979. {
  41980. name: "Macro",
  41981. height: math.unit(25, "feet")
  41982. },
  41983. ]
  41984. ))
  41985. characterMakers.push(() => makeCharacter(
  41986. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41987. {
  41988. front: {
  41989. height: math.unit(80, "meters"),
  41990. weight: math.unit(7000, "tonnes"),
  41991. name: "Front",
  41992. image: {
  41993. source: "./media/characters/tef/front.svg",
  41994. extra: 2036/1991,
  41995. bottom: 54/2090
  41996. }
  41997. },
  41998. back: {
  41999. height: math.unit(80, "meters"),
  42000. weight: math.unit(7000, "tonnes"),
  42001. name: "Back",
  42002. image: {
  42003. source: "./media/characters/tef/back.svg",
  42004. extra: 2036/1991,
  42005. bottom: 54/2090
  42006. }
  42007. },
  42008. },
  42009. [
  42010. {
  42011. name: "Macro",
  42012. height: math.unit(80, "meters"),
  42013. default: true
  42014. },
  42015. ]
  42016. ))
  42017. characterMakers.push(() => makeCharacter(
  42018. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42019. {
  42020. front: {
  42021. height: math.unit(13, "feet"),
  42022. weight: math.unit(6, "tons"),
  42023. name: "Front",
  42024. image: {
  42025. source: "./media/characters/rover/front.svg",
  42026. extra: 1233/1156,
  42027. bottom: 50/1283
  42028. }
  42029. },
  42030. back: {
  42031. height: math.unit(13, "feet"),
  42032. weight: math.unit(6, "tons"),
  42033. name: "Back",
  42034. image: {
  42035. source: "./media/characters/rover/back.svg",
  42036. extra: 1327/1258,
  42037. bottom: 39/1366
  42038. }
  42039. },
  42040. },
  42041. [
  42042. {
  42043. name: "Normal",
  42044. height: math.unit(13, "feet"),
  42045. default: true
  42046. },
  42047. {
  42048. name: "Macro",
  42049. height: math.unit(1300, "feet")
  42050. },
  42051. {
  42052. name: "Megamacro",
  42053. height: math.unit(1300, "miles")
  42054. },
  42055. {
  42056. name: "Gigamacro",
  42057. height: math.unit(1300000, "miles")
  42058. },
  42059. ]
  42060. ))
  42061. characterMakers.push(() => makeCharacter(
  42062. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42063. {
  42064. front: {
  42065. height: math.unit(6, "feet"),
  42066. weight: math.unit(150, "lb"),
  42067. name: "Front",
  42068. image: {
  42069. source: "./media/characters/ariz/front.svg",
  42070. extra: 1401/1346,
  42071. bottom: 5/1406
  42072. }
  42073. },
  42074. },
  42075. [
  42076. {
  42077. name: "Normal",
  42078. height: math.unit(10, "feet"),
  42079. default: true
  42080. },
  42081. ]
  42082. ))
  42083. characterMakers.push(() => makeCharacter(
  42084. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42085. {
  42086. front: {
  42087. height: math.unit(6, "feet"),
  42088. weight: math.unit(140, "lb"),
  42089. name: "Front",
  42090. image: {
  42091. source: "./media/characters/sigrun/front.svg",
  42092. extra: 1418/1359,
  42093. bottom: 27/1445
  42094. }
  42095. },
  42096. },
  42097. [
  42098. {
  42099. name: "Macro",
  42100. height: math.unit(35, "feet"),
  42101. default: true
  42102. },
  42103. ]
  42104. ))
  42105. characterMakers.push(() => makeCharacter(
  42106. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42107. {
  42108. front: {
  42109. height: math.unit(6, "feet"),
  42110. weight: math.unit(150, "lb"),
  42111. name: "Front",
  42112. image: {
  42113. source: "./media/characters/numin/front.svg",
  42114. extra: 1433/1388,
  42115. bottom: 12/1445
  42116. }
  42117. },
  42118. },
  42119. [
  42120. {
  42121. name: "Macro",
  42122. height: math.unit(21.5, "km"),
  42123. default: true
  42124. },
  42125. ]
  42126. ))
  42127. characterMakers.push(() => makeCharacter(
  42128. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42129. {
  42130. front: {
  42131. height: math.unit(6, "feet"),
  42132. weight: math.unit(463, "lb"),
  42133. name: "Front",
  42134. image: {
  42135. source: "./media/characters/melwa/front.svg",
  42136. extra: 1307/1248,
  42137. bottom: 93/1400
  42138. }
  42139. },
  42140. },
  42141. [
  42142. {
  42143. name: "Macro",
  42144. height: math.unit(50, "meters"),
  42145. default: true
  42146. },
  42147. ]
  42148. ))
  42149. characterMakers.push(() => makeCharacter(
  42150. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42151. {
  42152. front: {
  42153. height: math.unit(325, "feet"),
  42154. name: "Front",
  42155. image: {
  42156. source: "./media/characters/zorkaiju/front.svg",
  42157. extra: 1955/1814,
  42158. bottom: 40/1995
  42159. }
  42160. },
  42161. frontExtended: {
  42162. height: math.unit(325, "feet"),
  42163. name: "Front (Extended)",
  42164. image: {
  42165. source: "./media/characters/zorkaiju/front-extended.svg",
  42166. extra: 1955/1814,
  42167. bottom: 40/1995
  42168. }
  42169. },
  42170. side: {
  42171. height: math.unit(325, "feet"),
  42172. name: "Side",
  42173. image: {
  42174. source: "./media/characters/zorkaiju/side.svg",
  42175. extra: 1495/1396,
  42176. bottom: 17/1512
  42177. }
  42178. },
  42179. sideExtended: {
  42180. height: math.unit(325, "feet"),
  42181. name: "Side (Extended)",
  42182. image: {
  42183. source: "./media/characters/zorkaiju/side-extended.svg",
  42184. extra: 1495/1396,
  42185. bottom: 17/1512
  42186. }
  42187. },
  42188. back: {
  42189. height: math.unit(325, "feet"),
  42190. name: "Back",
  42191. image: {
  42192. source: "./media/characters/zorkaiju/back.svg",
  42193. extra: 1959/1821,
  42194. bottom: 31/1990
  42195. }
  42196. },
  42197. backExtended: {
  42198. height: math.unit(325, "feet"),
  42199. name: "Back (Extended)",
  42200. image: {
  42201. source: "./media/characters/zorkaiju/back-extended.svg",
  42202. extra: 1959/1821,
  42203. bottom: 31/1990
  42204. }
  42205. },
  42206. hand: {
  42207. height: math.unit(58.4, "feet"),
  42208. name: "Hand",
  42209. image: {
  42210. source: "./media/characters/zorkaiju/hand.svg"
  42211. }
  42212. },
  42213. handExtended: {
  42214. height: math.unit(61.4, "feet"),
  42215. name: "Hand (Extended)",
  42216. image: {
  42217. source: "./media/characters/zorkaiju/hand-extended.svg"
  42218. }
  42219. },
  42220. foot: {
  42221. height: math.unit(95, "feet"),
  42222. name: "Foot",
  42223. image: {
  42224. source: "./media/characters/zorkaiju/foot.svg"
  42225. }
  42226. },
  42227. leftArm: {
  42228. height: math.unit(59, "feet"),
  42229. name: "Left Arm",
  42230. image: {
  42231. source: "./media/characters/zorkaiju/left-arm.svg"
  42232. }
  42233. },
  42234. rightArm: {
  42235. height: math.unit(59, "feet"),
  42236. name: "Right Arm",
  42237. image: {
  42238. source: "./media/characters/zorkaiju/right-arm.svg"
  42239. }
  42240. },
  42241. leftArmExtended: {
  42242. height: math.unit(59 * 1.033546, "feet"),
  42243. name: "Left Arm (Extended)",
  42244. image: {
  42245. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42246. }
  42247. },
  42248. rightArmExtended: {
  42249. height: math.unit(59 * 1.0496, "feet"),
  42250. name: "Right Arm (Extended)",
  42251. image: {
  42252. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42253. }
  42254. },
  42255. tail: {
  42256. height: math.unit(104, "feet"),
  42257. name: "Tail",
  42258. image: {
  42259. source: "./media/characters/zorkaiju/tail.svg"
  42260. }
  42261. },
  42262. tailExtended: {
  42263. height: math.unit(104, "feet"),
  42264. name: "Tail (Extended)",
  42265. image: {
  42266. source: "./media/characters/zorkaiju/tail-extended.svg"
  42267. }
  42268. },
  42269. tailBottom: {
  42270. height: math.unit(104, "feet"),
  42271. name: "Tail Bottom",
  42272. image: {
  42273. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42274. }
  42275. },
  42276. crystal: {
  42277. height: math.unit(27.54, "feet"),
  42278. name: "Crystal",
  42279. image: {
  42280. source: "./media/characters/zorkaiju/crystal.svg"
  42281. }
  42282. },
  42283. },
  42284. [
  42285. {
  42286. name: "Kaiju",
  42287. height: math.unit(325, "feet"),
  42288. default: true
  42289. },
  42290. ]
  42291. ))
  42292. characterMakers.push(() => makeCharacter(
  42293. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42294. {
  42295. front: {
  42296. height: math.unit(6 + 1/12, "feet"),
  42297. weight: math.unit(115, "lb"),
  42298. name: "Front",
  42299. image: {
  42300. source: "./media/characters/bailey-belfry/front.svg",
  42301. extra: 1240/1121,
  42302. bottom: 101/1341
  42303. }
  42304. },
  42305. },
  42306. [
  42307. {
  42308. name: "Normal",
  42309. height: math.unit(6 + 1/12, "feet"),
  42310. default: true
  42311. },
  42312. ]
  42313. ))
  42314. characterMakers.push(() => makeCharacter(
  42315. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42316. {
  42317. side: {
  42318. height: math.unit(4, "meters"),
  42319. weight: math.unit(250, "kg"),
  42320. name: "Side",
  42321. image: {
  42322. source: "./media/characters/blacky/side.svg",
  42323. extra: 1027/919,
  42324. bottom: 43/1070
  42325. }
  42326. },
  42327. maw: {
  42328. height: math.unit(1, "meters"),
  42329. name: "Maw",
  42330. image: {
  42331. source: "./media/characters/blacky/maw.svg"
  42332. }
  42333. },
  42334. paw: {
  42335. height: math.unit(1, "meters"),
  42336. name: "Paw",
  42337. image: {
  42338. source: "./media/characters/blacky/paw.svg"
  42339. }
  42340. },
  42341. },
  42342. [
  42343. {
  42344. name: "Normal",
  42345. height: math.unit(4, "meters"),
  42346. default: true
  42347. },
  42348. ]
  42349. ))
  42350. characterMakers.push(() => makeCharacter(
  42351. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42352. {
  42353. front: {
  42354. height: math.unit(170, "cm"),
  42355. weight: math.unit(66, "kg"),
  42356. name: "Front",
  42357. image: {
  42358. source: "./media/characters/thux-ei/front.svg",
  42359. extra: 1109/1011,
  42360. bottom: 8/1117
  42361. }
  42362. },
  42363. },
  42364. [
  42365. {
  42366. name: "Normal",
  42367. height: math.unit(170, "cm"),
  42368. default: true
  42369. },
  42370. ]
  42371. ))
  42372. characterMakers.push(() => makeCharacter(
  42373. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42374. {
  42375. front: {
  42376. height: math.unit(5, "feet"),
  42377. weight: math.unit(120, "lb"),
  42378. name: "Front",
  42379. image: {
  42380. source: "./media/characters/roxanne-voltaire/front.svg",
  42381. extra: 1901/1779,
  42382. bottom: 53/1954
  42383. }
  42384. },
  42385. },
  42386. [
  42387. {
  42388. name: "Normal",
  42389. height: math.unit(5, "feet"),
  42390. default: true
  42391. },
  42392. {
  42393. name: "Giant",
  42394. height: math.unit(50, "feet")
  42395. },
  42396. {
  42397. name: "Titan",
  42398. height: math.unit(500, "feet")
  42399. },
  42400. {
  42401. name: "Macro",
  42402. height: math.unit(5000, "feet")
  42403. },
  42404. {
  42405. name: "Megamacro",
  42406. height: math.unit(50000, "feet")
  42407. },
  42408. {
  42409. name: "Gigamacro",
  42410. height: math.unit(500000, "feet")
  42411. },
  42412. {
  42413. name: "Teramacro",
  42414. height: math.unit(5e6, "feet")
  42415. },
  42416. ]
  42417. ))
  42418. characterMakers.push(() => makeCharacter(
  42419. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42420. {
  42421. front: {
  42422. height: math.unit(6 + 2/12, "feet"),
  42423. name: "Front",
  42424. image: {
  42425. source: "./media/characters/squeaks/front.svg",
  42426. extra: 1823/1768,
  42427. bottom: 138/1961
  42428. }
  42429. },
  42430. },
  42431. [
  42432. {
  42433. name: "Micro",
  42434. height: math.unit(0.5, "inches")
  42435. },
  42436. {
  42437. name: "Normal",
  42438. height: math.unit(6 + 2/12, "feet"),
  42439. default: true
  42440. },
  42441. {
  42442. name: "Macro",
  42443. height: math.unit(600, "feet")
  42444. },
  42445. ]
  42446. ))
  42447. characterMakers.push(() => makeCharacter(
  42448. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42449. {
  42450. front: {
  42451. height: math.unit(1.72, "meters"),
  42452. name: "Front",
  42453. image: {
  42454. source: "./media/characters/archinger/front.svg",
  42455. extra: 1861/1675,
  42456. bottom: 125/1986
  42457. }
  42458. },
  42459. back: {
  42460. height: math.unit(1.72, "meters"),
  42461. name: "Back",
  42462. image: {
  42463. source: "./media/characters/archinger/back.svg",
  42464. extra: 1844/1701,
  42465. bottom: 104/1948
  42466. }
  42467. },
  42468. cock: {
  42469. height: math.unit(0.59, "feet"),
  42470. name: "Cock",
  42471. image: {
  42472. source: "./media/characters/archinger/cock.svg"
  42473. }
  42474. },
  42475. },
  42476. [
  42477. {
  42478. name: "Normal",
  42479. height: math.unit(1.72, "meters"),
  42480. default: true
  42481. },
  42482. {
  42483. name: "Macro",
  42484. height: math.unit(84, "meters")
  42485. },
  42486. {
  42487. name: "Macro+",
  42488. height: math.unit(112, "meters")
  42489. },
  42490. {
  42491. name: "Macro++",
  42492. height: math.unit(960, "meters")
  42493. },
  42494. {
  42495. name: "Macro+++",
  42496. height: math.unit(4, "km")
  42497. },
  42498. {
  42499. name: "Macro++++",
  42500. height: math.unit(48, "km")
  42501. },
  42502. {
  42503. name: "Macro+++++",
  42504. height: math.unit(4500, "km")
  42505. },
  42506. ]
  42507. ))
  42508. characterMakers.push(() => makeCharacter(
  42509. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42510. {
  42511. front: {
  42512. height: math.unit(5 + 5/12, "feet"),
  42513. name: "Front",
  42514. image: {
  42515. source: "./media/characters/alsnapz/front.svg",
  42516. extra: 1157/1065,
  42517. bottom: 42/1199
  42518. }
  42519. },
  42520. },
  42521. [
  42522. {
  42523. name: "Normal",
  42524. height: math.unit(5 + 5/12, "feet"),
  42525. default: true
  42526. },
  42527. ]
  42528. ))
  42529. characterMakers.push(() => makeCharacter(
  42530. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42531. {
  42532. side: {
  42533. height: math.unit(3.2, "earths"),
  42534. name: "Side",
  42535. image: {
  42536. source: "./media/characters/mag/side.svg",
  42537. extra: 1331/1008,
  42538. bottom: 52/1383
  42539. }
  42540. },
  42541. wing: {
  42542. height: math.unit(1.94, "earths"),
  42543. name: "Wing",
  42544. image: {
  42545. source: "./media/characters/mag/wing.svg"
  42546. }
  42547. },
  42548. dick: {
  42549. height: math.unit(1.8, "earths"),
  42550. name: "Dick",
  42551. image: {
  42552. source: "./media/characters/mag/dick.svg"
  42553. }
  42554. },
  42555. ass: {
  42556. height: math.unit(1.33, "earths"),
  42557. name: "Ass",
  42558. image: {
  42559. source: "./media/characters/mag/ass.svg"
  42560. }
  42561. },
  42562. head: {
  42563. height: math.unit(1.1, "earths"),
  42564. name: "Head",
  42565. image: {
  42566. source: "./media/characters/mag/head.svg"
  42567. }
  42568. },
  42569. maw: {
  42570. height: math.unit(1.62, "earths"),
  42571. name: "Maw",
  42572. image: {
  42573. source: "./media/characters/mag/maw.svg"
  42574. }
  42575. },
  42576. },
  42577. [
  42578. {
  42579. name: "Small",
  42580. height: math.unit(162, "feet")
  42581. },
  42582. {
  42583. name: "Normal",
  42584. height: math.unit(3.2, "earths"),
  42585. default: true
  42586. },
  42587. ]
  42588. ))
  42589. characterMakers.push(() => makeCharacter(
  42590. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42591. {
  42592. front: {
  42593. height: math.unit(512, "feet"),
  42594. weight: math.unit(63509, "tonnes"),
  42595. name: "Front",
  42596. image: {
  42597. source: "./media/characters/vorrel-harroc/front.svg",
  42598. extra: 1075/1063,
  42599. bottom: 62/1137
  42600. }
  42601. },
  42602. },
  42603. [
  42604. {
  42605. name: "Normal",
  42606. height: math.unit(10, "feet")
  42607. },
  42608. {
  42609. name: "Macro",
  42610. height: math.unit(512, "feet"),
  42611. default: true
  42612. },
  42613. {
  42614. name: "Megamacro",
  42615. height: math.unit(256, "miles")
  42616. },
  42617. {
  42618. name: "Gigamacro",
  42619. height: math.unit(4096, "miles")
  42620. },
  42621. ]
  42622. ))
  42623. characterMakers.push(() => makeCharacter(
  42624. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42625. {
  42626. side: {
  42627. height: math.unit(50, "feet"),
  42628. name: "Side",
  42629. image: {
  42630. source: "./media/characters/froimar/side.svg",
  42631. extra: 855/638,
  42632. bottom: 99/954
  42633. }
  42634. },
  42635. },
  42636. [
  42637. {
  42638. name: "Macro",
  42639. height: math.unit(50, "feet"),
  42640. default: true
  42641. },
  42642. ]
  42643. ))
  42644. characterMakers.push(() => makeCharacter(
  42645. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42646. {
  42647. front: {
  42648. height: math.unit(210, "miles"),
  42649. name: "Front",
  42650. image: {
  42651. source: "./media/characters/timothy/front.svg",
  42652. extra: 1007/943,
  42653. bottom: 62/1069
  42654. }
  42655. },
  42656. frontSkirt: {
  42657. height: math.unit(210, "miles"),
  42658. name: "Front (Skirt)",
  42659. image: {
  42660. source: "./media/characters/timothy/front-skirt.svg",
  42661. extra: 1007/943,
  42662. bottom: 62/1069
  42663. }
  42664. },
  42665. frontCoat: {
  42666. height: math.unit(210, "miles"),
  42667. name: "Front (Coat)",
  42668. image: {
  42669. source: "./media/characters/timothy/front-coat.svg",
  42670. extra: 1007/943,
  42671. bottom: 62/1069
  42672. }
  42673. },
  42674. },
  42675. [
  42676. {
  42677. name: "Macro",
  42678. height: math.unit(210, "miles"),
  42679. default: true
  42680. },
  42681. {
  42682. name: "Megamacro",
  42683. height: math.unit(210000, "miles")
  42684. },
  42685. ]
  42686. ))
  42687. characterMakers.push(() => makeCharacter(
  42688. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42689. {
  42690. front: {
  42691. height: math.unit(188, "feet"),
  42692. name: "Front",
  42693. image: {
  42694. source: "./media/characters/pyotr/front.svg",
  42695. extra: 1912/1826,
  42696. bottom: 18/1930
  42697. }
  42698. },
  42699. },
  42700. [
  42701. {
  42702. name: "Macro",
  42703. height: math.unit(188, "feet"),
  42704. default: true
  42705. },
  42706. {
  42707. name: "Megamacro",
  42708. height: math.unit(8, "miles")
  42709. },
  42710. ]
  42711. ))
  42712. characterMakers.push(() => makeCharacter(
  42713. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42714. {
  42715. side: {
  42716. height: math.unit(10, "feet"),
  42717. weight: math.unit(4500, "lb"),
  42718. name: "Side",
  42719. image: {
  42720. source: "./media/characters/ackart/side.svg",
  42721. extra: 1776/1668,
  42722. bottom: 116/1892
  42723. }
  42724. },
  42725. },
  42726. [
  42727. {
  42728. name: "Normal",
  42729. height: math.unit(10, "feet"),
  42730. default: true
  42731. },
  42732. ]
  42733. ))
  42734. characterMakers.push(() => makeCharacter(
  42735. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42736. {
  42737. side: {
  42738. height: math.unit(21, "feet"),
  42739. name: "Side",
  42740. image: {
  42741. source: "./media/characters/nolow/side.svg",
  42742. extra: 1484/1434,
  42743. bottom: 85/1569
  42744. }
  42745. },
  42746. sideErect: {
  42747. height: math.unit(21, "feet"),
  42748. name: "Side-erect",
  42749. image: {
  42750. source: "./media/characters/nolow/side-erect.svg",
  42751. extra: 1484/1434,
  42752. bottom: 85/1569
  42753. }
  42754. },
  42755. },
  42756. [
  42757. {
  42758. name: "Regular",
  42759. height: math.unit(12, "feet")
  42760. },
  42761. {
  42762. name: "Big Chee",
  42763. height: math.unit(21, "feet"),
  42764. default: true
  42765. },
  42766. ]
  42767. ))
  42768. characterMakers.push(() => makeCharacter(
  42769. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42770. {
  42771. front: {
  42772. height: math.unit(7, "feet"),
  42773. weight: math.unit(250, "lb"),
  42774. name: "Front",
  42775. image: {
  42776. source: "./media/characters/nines/front.svg",
  42777. extra: 1741/1607,
  42778. bottom: 41/1782
  42779. }
  42780. },
  42781. side: {
  42782. height: math.unit(7, "feet"),
  42783. weight: math.unit(250, "lb"),
  42784. name: "Side",
  42785. image: {
  42786. source: "./media/characters/nines/side.svg",
  42787. extra: 1854/1735,
  42788. bottom: 93/1947
  42789. }
  42790. },
  42791. back: {
  42792. height: math.unit(7, "feet"),
  42793. weight: math.unit(250, "lb"),
  42794. name: "Back",
  42795. image: {
  42796. source: "./media/characters/nines/back.svg",
  42797. extra: 1748/1615,
  42798. bottom: 20/1768
  42799. }
  42800. },
  42801. },
  42802. [
  42803. {
  42804. name: "Megamacro",
  42805. height: math.unit(99, "km"),
  42806. default: true
  42807. },
  42808. ]
  42809. ))
  42810. characterMakers.push(() => makeCharacter(
  42811. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42812. {
  42813. front: {
  42814. height: math.unit(5 + 10/12, "feet"),
  42815. weight: math.unit(210, "lb"),
  42816. name: "Front",
  42817. image: {
  42818. source: "./media/characters/zenith/front.svg",
  42819. extra: 1531/1452,
  42820. bottom: 198/1729
  42821. }
  42822. },
  42823. back: {
  42824. height: math.unit(5 + 10/12, "feet"),
  42825. weight: math.unit(210, "lb"),
  42826. name: "Back",
  42827. image: {
  42828. source: "./media/characters/zenith/back.svg",
  42829. extra: 1571/1487,
  42830. bottom: 75/1646
  42831. }
  42832. },
  42833. },
  42834. [
  42835. {
  42836. name: "Normal",
  42837. height: math.unit(5 + 10/12, "feet"),
  42838. default: true
  42839. }
  42840. ]
  42841. ))
  42842. characterMakers.push(() => makeCharacter(
  42843. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42844. {
  42845. front: {
  42846. height: math.unit(4, "feet"),
  42847. weight: math.unit(60, "lb"),
  42848. name: "Front",
  42849. image: {
  42850. source: "./media/characters/jasper/front.svg",
  42851. extra: 1450/1379,
  42852. bottom: 19/1469
  42853. }
  42854. },
  42855. },
  42856. [
  42857. {
  42858. name: "Normal",
  42859. height: math.unit(4, "feet"),
  42860. default: true
  42861. },
  42862. ]
  42863. ))
  42864. characterMakers.push(() => makeCharacter(
  42865. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42866. {
  42867. front: {
  42868. height: math.unit(6 + 5/12, "feet"),
  42869. weight: math.unit(290, "lb"),
  42870. name: "Front",
  42871. image: {
  42872. source: "./media/characters/tiberius-thyben/front.svg",
  42873. extra: 757/739,
  42874. bottom: 39/796
  42875. }
  42876. },
  42877. },
  42878. [
  42879. {
  42880. name: "Micro",
  42881. height: math.unit(1.5, "inches")
  42882. },
  42883. {
  42884. name: "Normal",
  42885. height: math.unit(6 + 5/12, "feet"),
  42886. default: true
  42887. },
  42888. {
  42889. name: "Macro",
  42890. height: math.unit(300, "feet")
  42891. },
  42892. ]
  42893. ))
  42894. characterMakers.push(() => makeCharacter(
  42895. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42896. {
  42897. front: {
  42898. height: math.unit(5 + 6/12, "feet"),
  42899. weight: math.unit(60, "kg"),
  42900. name: "Front",
  42901. image: {
  42902. source: "./media/characters/sabre/front.svg",
  42903. extra: 738/671,
  42904. bottom: 27/765
  42905. }
  42906. },
  42907. },
  42908. [
  42909. {
  42910. name: "Teeny",
  42911. height: math.unit(2, "inches")
  42912. },
  42913. {
  42914. name: "Smol",
  42915. height: math.unit(8, "inches")
  42916. },
  42917. {
  42918. name: "Normal",
  42919. height: math.unit(5 + 6/12, "feet"),
  42920. default: true
  42921. },
  42922. {
  42923. name: "Mini-Macro",
  42924. height: math.unit(15, "feet")
  42925. },
  42926. {
  42927. name: "Macro",
  42928. height: math.unit(50, "feet")
  42929. },
  42930. ]
  42931. ))
  42932. characterMakers.push(() => makeCharacter(
  42933. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42934. {
  42935. front: {
  42936. height: math.unit(6 + 4/12, "feet"),
  42937. weight: math.unit(170, "lb"),
  42938. name: "Front",
  42939. image: {
  42940. source: "./media/characters/charlie/front.svg",
  42941. extra: 1348/1228,
  42942. bottom: 15/1363
  42943. }
  42944. },
  42945. },
  42946. [
  42947. {
  42948. name: "Macro",
  42949. height: math.unit(1700, "meters"),
  42950. default: true
  42951. },
  42952. {
  42953. name: "MegaMacro",
  42954. height: math.unit(20400, "meters")
  42955. },
  42956. ]
  42957. ))
  42958. characterMakers.push(() => makeCharacter(
  42959. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42960. {
  42961. front: {
  42962. height: math.unit(6 + 3/12, "feet"),
  42963. weight: math.unit(185, "lb"),
  42964. name: "Front",
  42965. image: {
  42966. source: "./media/characters/susan-grant/front.svg",
  42967. extra: 1351/1327,
  42968. bottom: 26/1377
  42969. }
  42970. },
  42971. },
  42972. [
  42973. {
  42974. name: "Normal",
  42975. height: math.unit(6 + 3/12, "feet"),
  42976. default: true
  42977. },
  42978. {
  42979. name: "Macro",
  42980. height: math.unit(225, "feet")
  42981. },
  42982. {
  42983. name: "Macro+",
  42984. height: math.unit(900, "feet")
  42985. },
  42986. {
  42987. name: "MegaMacro",
  42988. height: math.unit(14400, "feet")
  42989. },
  42990. ]
  42991. ))
  42992. characterMakers.push(() => makeCharacter(
  42993. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42994. {
  42995. front: {
  42996. height: math.unit(5 + 4/12, "feet"),
  42997. weight: math.unit(110, "lb"),
  42998. name: "Front",
  42999. image: {
  43000. source: "./media/characters/axel-isanov/front.svg",
  43001. extra: 1096/1065,
  43002. bottom: 13/1109
  43003. }
  43004. },
  43005. },
  43006. [
  43007. {
  43008. name: "Normal",
  43009. height: math.unit(5 + 4/12, "feet"),
  43010. default: true
  43011. },
  43012. ]
  43013. ))
  43014. characterMakers.push(() => makeCharacter(
  43015. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43016. {
  43017. front: {
  43018. height: math.unit(9, "feet"),
  43019. weight: math.unit(467, "lb"),
  43020. name: "Front",
  43021. image: {
  43022. source: "./media/characters/necahual/front.svg",
  43023. extra: 920/873,
  43024. bottom: 26/946
  43025. }
  43026. },
  43027. back: {
  43028. height: math.unit(9, "feet"),
  43029. weight: math.unit(467, "lb"),
  43030. name: "Back",
  43031. image: {
  43032. source: "./media/characters/necahual/back.svg",
  43033. extra: 930/884,
  43034. bottom: 16/946
  43035. }
  43036. },
  43037. frontUnderwear: {
  43038. height: math.unit(9, "feet"),
  43039. weight: math.unit(467, "lb"),
  43040. name: "Front (Underwear)",
  43041. image: {
  43042. source: "./media/characters/necahual/front-underwear.svg",
  43043. extra: 920/873,
  43044. bottom: 26/946
  43045. }
  43046. },
  43047. frontDressed: {
  43048. height: math.unit(9, "feet"),
  43049. weight: math.unit(467, "lb"),
  43050. name: "Front (Dressed)",
  43051. image: {
  43052. source: "./media/characters/necahual/front-dressed.svg",
  43053. extra: 920/873,
  43054. bottom: 26/946
  43055. }
  43056. },
  43057. },
  43058. [
  43059. {
  43060. name: "Comprsesed",
  43061. height: math.unit(9, "feet")
  43062. },
  43063. {
  43064. name: "Natural",
  43065. height: math.unit(15, "feet"),
  43066. default: true
  43067. },
  43068. {
  43069. name: "Boosted",
  43070. height: math.unit(50, "feet")
  43071. },
  43072. {
  43073. name: "Boosted+",
  43074. height: math.unit(150, "feet")
  43075. },
  43076. {
  43077. name: "Max",
  43078. height: math.unit(500, "feet")
  43079. },
  43080. ]
  43081. ))
  43082. characterMakers.push(() => makeCharacter(
  43083. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43084. {
  43085. front: {
  43086. height: math.unit(22 + 1/12, "feet"),
  43087. weight: math.unit(3200, "lb"),
  43088. name: "Front",
  43089. image: {
  43090. source: "./media/characters/theo-acacia/front.svg",
  43091. extra: 1796/1741,
  43092. bottom: 83/1879
  43093. }
  43094. },
  43095. frontUnderwear: {
  43096. height: math.unit(22 + 1/12, "feet"),
  43097. weight: math.unit(3200, "lb"),
  43098. name: "Front (Underwear)",
  43099. image: {
  43100. source: "./media/characters/theo-acacia/front-underwear.svg",
  43101. extra: 1796/1741,
  43102. bottom: 83/1879
  43103. }
  43104. },
  43105. frontNude: {
  43106. height: math.unit(22 + 1/12, "feet"),
  43107. weight: math.unit(3200, "lb"),
  43108. name: "Front (Nude)",
  43109. image: {
  43110. source: "./media/characters/theo-acacia/front-nude.svg",
  43111. extra: 1796/1741,
  43112. bottom: 83/1879
  43113. }
  43114. },
  43115. },
  43116. [
  43117. {
  43118. name: "Normal",
  43119. height: math.unit(22 + 1/12, "feet"),
  43120. default: true
  43121. },
  43122. ]
  43123. ))
  43124. characterMakers.push(() => makeCharacter(
  43125. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43126. {
  43127. front: {
  43128. height: math.unit(20, "feet"),
  43129. name: "Front",
  43130. image: {
  43131. source: "./media/characters/astra/front.svg",
  43132. extra: 1850/1714,
  43133. bottom: 106/1956
  43134. }
  43135. },
  43136. frontUndressed: {
  43137. height: math.unit(20, "feet"),
  43138. name: "Front (Undressed)",
  43139. image: {
  43140. source: "./media/characters/astra/front-undressed.svg",
  43141. extra: 1926/1749,
  43142. bottom: 0/1926
  43143. }
  43144. },
  43145. hand: {
  43146. height: math.unit(1.53, "feet"),
  43147. name: "Hand",
  43148. image: {
  43149. source: "./media/characters/astra/hand.svg"
  43150. }
  43151. },
  43152. paw: {
  43153. height: math.unit(1.53, "feet"),
  43154. name: "Paw",
  43155. image: {
  43156. source: "./media/characters/astra/paw.svg"
  43157. }
  43158. },
  43159. },
  43160. [
  43161. {
  43162. name: "Smallest",
  43163. height: math.unit(20, "feet")
  43164. },
  43165. {
  43166. name: "Normal",
  43167. height: math.unit(1e9, "miles"),
  43168. default: true
  43169. },
  43170. {
  43171. name: "Larger",
  43172. height: math.unit(5, "multiverses")
  43173. },
  43174. {
  43175. name: "Largest",
  43176. height: math.unit(1e9, "multiverses")
  43177. },
  43178. ]
  43179. ))
  43180. characterMakers.push(() => makeCharacter(
  43181. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43182. {
  43183. front: {
  43184. height: math.unit(8, "feet"),
  43185. name: "Front",
  43186. image: {
  43187. source: "./media/characters/breanna/front.svg",
  43188. extra: 1912/1632,
  43189. bottom: 33/1945
  43190. }
  43191. },
  43192. },
  43193. [
  43194. {
  43195. name: "Smallest",
  43196. height: math.unit(8, "feet")
  43197. },
  43198. {
  43199. name: "Normal",
  43200. height: math.unit(1, "mile"),
  43201. default: true
  43202. },
  43203. {
  43204. name: "Maximum",
  43205. height: math.unit(1500000000000, "lightyears")
  43206. },
  43207. ]
  43208. ))
  43209. characterMakers.push(() => makeCharacter(
  43210. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43211. {
  43212. front: {
  43213. height: math.unit(5 + 11/12, "feet"),
  43214. weight: math.unit(155, "lb"),
  43215. name: "Front",
  43216. image: {
  43217. source: "./media/characters/cai/front.svg",
  43218. extra: 1823/1702,
  43219. bottom: 32/1855
  43220. }
  43221. },
  43222. back: {
  43223. height: math.unit(5 + 11/12, "feet"),
  43224. weight: math.unit(155, "lb"),
  43225. name: "Back",
  43226. image: {
  43227. source: "./media/characters/cai/back.svg",
  43228. extra: 1809/1708,
  43229. bottom: 31/1840
  43230. }
  43231. },
  43232. },
  43233. [
  43234. {
  43235. name: "Normal",
  43236. height: math.unit(5 + 11/12, "feet"),
  43237. default: true
  43238. },
  43239. {
  43240. name: "Big",
  43241. height: math.unit(15, "feet")
  43242. },
  43243. {
  43244. name: "Macro",
  43245. height: math.unit(200, "feet")
  43246. },
  43247. ]
  43248. ))
  43249. characterMakers.push(() => makeCharacter(
  43250. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43251. {
  43252. front: {
  43253. height: math.unit(5 + 6/12, "feet"),
  43254. weight: math.unit(160, "lb"),
  43255. name: "Front",
  43256. image: {
  43257. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43258. extra: 1227/1174,
  43259. bottom: 37/1264
  43260. }
  43261. },
  43262. },
  43263. [
  43264. {
  43265. name: "Macro",
  43266. height: math.unit(444, "meters"),
  43267. default: true
  43268. },
  43269. ]
  43270. ))
  43271. characterMakers.push(() => makeCharacter(
  43272. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43273. {
  43274. front: {
  43275. height: math.unit(18 + 7/12, "feet"),
  43276. name: "Front",
  43277. image: {
  43278. source: "./media/characters/rex/front.svg",
  43279. extra: 1941/1807,
  43280. bottom: 66/2007
  43281. }
  43282. },
  43283. back: {
  43284. height: math.unit(18 + 7/12, "feet"),
  43285. name: "Back",
  43286. image: {
  43287. source: "./media/characters/rex/back.svg",
  43288. extra: 1937/1822,
  43289. bottom: 42/1979
  43290. }
  43291. },
  43292. boot: {
  43293. height: math.unit(3.45, "feet"),
  43294. name: "Boot",
  43295. image: {
  43296. source: "./media/characters/rex/boot.svg"
  43297. }
  43298. },
  43299. paw: {
  43300. height: math.unit(4.17, "feet"),
  43301. name: "Paw",
  43302. image: {
  43303. source: "./media/characters/rex/paw.svg"
  43304. }
  43305. },
  43306. head: {
  43307. height: math.unit(6.728, "feet"),
  43308. name: "Head",
  43309. image: {
  43310. source: "./media/characters/rex/head.svg"
  43311. }
  43312. },
  43313. },
  43314. [
  43315. {
  43316. name: "Nano",
  43317. height: math.unit(18 + 7/12, "feet")
  43318. },
  43319. {
  43320. name: "Micro",
  43321. height: math.unit(1.5, "megameters")
  43322. },
  43323. {
  43324. name: "Normal",
  43325. height: math.unit(440, "megameters"),
  43326. default: true
  43327. },
  43328. {
  43329. name: "Macro",
  43330. height: math.unit(2.5, "gigameters")
  43331. },
  43332. {
  43333. name: "Gigamacro",
  43334. height: math.unit(2, "galaxies")
  43335. },
  43336. ]
  43337. ))
  43338. characterMakers.push(() => makeCharacter(
  43339. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43340. {
  43341. side: {
  43342. height: math.unit(32, "feet"),
  43343. weight: math.unit(250000, "lb"),
  43344. name: "Side",
  43345. image: {
  43346. source: "./media/characters/silverwing/side.svg",
  43347. extra: 1100/1019,
  43348. bottom: 204/1304
  43349. }
  43350. },
  43351. },
  43352. [
  43353. {
  43354. name: "Normal",
  43355. height: math.unit(32, "feet"),
  43356. default: true
  43357. },
  43358. ]
  43359. ))
  43360. characterMakers.push(() => makeCharacter(
  43361. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43362. {
  43363. front: {
  43364. height: math.unit(6 + 6/12, "feet"),
  43365. weight: math.unit(350, "lb"),
  43366. name: "Front",
  43367. image: {
  43368. source: "./media/characters/tristan-hawthorne/front.svg",
  43369. extra: 1159/1124,
  43370. bottom: 37/1196
  43371. },
  43372. form: "labrador",
  43373. default: true
  43374. },
  43375. skunkFront: {
  43376. height: math.unit(4 + 6/12, "feet"),
  43377. weight: math.unit(120, "lb"),
  43378. name: "Front",
  43379. image: {
  43380. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43381. extra: 1609/1551,
  43382. bottom: 169/1778
  43383. },
  43384. form: "skunk",
  43385. default: true
  43386. },
  43387. },
  43388. [
  43389. {
  43390. name: "Normal",
  43391. height: math.unit(6 + 6/12, "feet"),
  43392. form: "labrador",
  43393. default: true
  43394. },
  43395. {
  43396. name: "Normal",
  43397. height: math.unit(4 + 6/12, "feet"),
  43398. form: "skunk",
  43399. default: true
  43400. },
  43401. ],
  43402. {
  43403. "labrador": {
  43404. name: "Labrador",
  43405. default: true
  43406. },
  43407. "skunk": {
  43408. name: "Skunk"
  43409. }
  43410. }
  43411. ))
  43412. characterMakers.push(() => makeCharacter(
  43413. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43414. {
  43415. front: {
  43416. height: math.unit(5 + 11/12, "feet"),
  43417. weight: math.unit(190, "lb"),
  43418. name: "Front",
  43419. image: {
  43420. source: "./media/characters/mizu/front.svg",
  43421. extra: 1988/1788,
  43422. bottom: 14/2002
  43423. }
  43424. },
  43425. },
  43426. [
  43427. {
  43428. name: "Normal",
  43429. height: math.unit(5 + 11/12, "feet"),
  43430. default: true
  43431. },
  43432. ]
  43433. ))
  43434. characterMakers.push(() => makeCharacter(
  43435. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43436. {
  43437. front: {
  43438. height: math.unit(1.7, "feet"),
  43439. weight: math.unit(50, "lb"),
  43440. name: "Front",
  43441. image: {
  43442. source: "./media/characters/dechroma/front.svg",
  43443. extra: 1095/859,
  43444. bottom: 64/1159
  43445. }
  43446. },
  43447. },
  43448. [
  43449. {
  43450. name: "Normal",
  43451. height: math.unit(1.7, "feet"),
  43452. default: true
  43453. },
  43454. ]
  43455. ))
  43456. characterMakers.push(() => makeCharacter(
  43457. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43458. {
  43459. side: {
  43460. height: math.unit(30, "feet"),
  43461. name: "Side",
  43462. image: {
  43463. source: "./media/characters/veluren-thanazel/side.svg",
  43464. extra: 1611/633,
  43465. bottom: 118/1729
  43466. }
  43467. },
  43468. front: {
  43469. height: math.unit(30, "feet"),
  43470. name: "Front",
  43471. image: {
  43472. source: "./media/characters/veluren-thanazel/front.svg",
  43473. extra: 1486/636,
  43474. bottom: 238/1724
  43475. }
  43476. },
  43477. head: {
  43478. height: math.unit(21.4, "feet"),
  43479. name: "Head",
  43480. image: {
  43481. source: "./media/characters/veluren-thanazel/head.svg"
  43482. }
  43483. },
  43484. genitals: {
  43485. height: math.unit(19.4, "feet"),
  43486. name: "Genitals",
  43487. image: {
  43488. source: "./media/characters/veluren-thanazel/genitals.svg"
  43489. }
  43490. },
  43491. },
  43492. [
  43493. {
  43494. name: "Social",
  43495. height: math.unit(6, "feet")
  43496. },
  43497. {
  43498. name: "Play",
  43499. height: math.unit(12, "feet")
  43500. },
  43501. {
  43502. name: "True",
  43503. height: math.unit(30, "feet"),
  43504. default: true
  43505. },
  43506. ]
  43507. ))
  43508. characterMakers.push(() => makeCharacter(
  43509. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43510. {
  43511. front: {
  43512. height: math.unit(7 + 6/12, "feet"),
  43513. weight: math.unit(500, "kg"),
  43514. name: "Front",
  43515. image: {
  43516. source: "./media/characters/arcturas/front.svg",
  43517. extra: 1700/1500,
  43518. bottom: 145/1845
  43519. }
  43520. },
  43521. },
  43522. [
  43523. {
  43524. name: "Normal",
  43525. height: math.unit(7 + 6/12, "feet"),
  43526. default: true
  43527. },
  43528. ]
  43529. ))
  43530. characterMakers.push(() => makeCharacter(
  43531. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43532. {
  43533. side: {
  43534. height: math.unit(6, "feet"),
  43535. weight: math.unit(2, "tons"),
  43536. name: "Side",
  43537. image: {
  43538. source: "./media/characters/vitaen/side.svg",
  43539. extra: 1157/617,
  43540. bottom: 122/1279
  43541. }
  43542. },
  43543. },
  43544. [
  43545. {
  43546. name: "Normal",
  43547. height: math.unit(6, "feet"),
  43548. default: true
  43549. },
  43550. ]
  43551. ))
  43552. characterMakers.push(() => makeCharacter(
  43553. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43554. {
  43555. front: {
  43556. height: math.unit(19, "feet"),
  43557. name: "Front",
  43558. image: {
  43559. source: "./media/characters/fia-dreamweaver/front.svg",
  43560. extra: 1630/1504,
  43561. bottom: 25/1655
  43562. }
  43563. },
  43564. },
  43565. [
  43566. {
  43567. name: "Normal",
  43568. height: math.unit(19, "feet"),
  43569. default: true
  43570. },
  43571. ]
  43572. ))
  43573. characterMakers.push(() => makeCharacter(
  43574. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43575. {
  43576. front: {
  43577. height: math.unit(5 + 4/12, "feet"),
  43578. name: "Front",
  43579. image: {
  43580. source: "./media/characters/artan/front.svg",
  43581. extra: 1618/1535,
  43582. bottom: 46/1664
  43583. }
  43584. },
  43585. back: {
  43586. height: math.unit(5 + 4/12, "feet"),
  43587. name: "Back",
  43588. image: {
  43589. source: "./media/characters/artan/back.svg",
  43590. extra: 1618/1543,
  43591. bottom: 31/1649
  43592. }
  43593. },
  43594. },
  43595. [
  43596. {
  43597. name: "Normal",
  43598. height: math.unit(5 + 4/12, "feet"),
  43599. default: true
  43600. },
  43601. ]
  43602. ))
  43603. characterMakers.push(() => makeCharacter(
  43604. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43605. {
  43606. side: {
  43607. height: math.unit(182, "cm"),
  43608. weight: math.unit(1000, "lb"),
  43609. name: "Side",
  43610. image: {
  43611. source: "./media/characters/silver-dragon/side.svg",
  43612. extra: 710/287,
  43613. bottom: 88/798
  43614. }
  43615. },
  43616. },
  43617. [
  43618. {
  43619. name: "Normal",
  43620. height: math.unit(182, "cm"),
  43621. default: true
  43622. },
  43623. ]
  43624. ))
  43625. characterMakers.push(() => makeCharacter(
  43626. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43627. {
  43628. side: {
  43629. height: math.unit(6 + 6/12, "feet"),
  43630. weight: math.unit(1.5, "tons"),
  43631. name: "Side",
  43632. image: {
  43633. source: "./media/characters/zephyr/side.svg",
  43634. extra: 1433/586,
  43635. bottom: 109/1542
  43636. }
  43637. },
  43638. },
  43639. [
  43640. {
  43641. name: "Normal",
  43642. height: math.unit(6 + 6/12, "feet"),
  43643. default: true
  43644. },
  43645. ]
  43646. ))
  43647. characterMakers.push(() => makeCharacter(
  43648. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43649. {
  43650. side: {
  43651. height: math.unit(1, "feet"),
  43652. name: "Side",
  43653. image: {
  43654. source: "./media/characters/vixye/side.svg",
  43655. extra: 632/541,
  43656. bottom: 0/632
  43657. }
  43658. },
  43659. },
  43660. [
  43661. {
  43662. name: "Normal",
  43663. height: math.unit(1, "feet"),
  43664. default: true
  43665. },
  43666. {
  43667. name: "True",
  43668. height: math.unit(1e15, "multiverses")
  43669. },
  43670. ]
  43671. ))
  43672. characterMakers.push(() => makeCharacter(
  43673. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43674. {
  43675. front: {
  43676. height: math.unit(8 + 2/12, "feet"),
  43677. weight: math.unit(650, "lb"),
  43678. name: "Front",
  43679. image: {
  43680. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43681. extra: 1174/1137,
  43682. bottom: 82/1256
  43683. }
  43684. },
  43685. back: {
  43686. height: math.unit(8 + 2/12, "feet"),
  43687. weight: math.unit(650, "lb"),
  43688. name: "Back",
  43689. image: {
  43690. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43691. extra: 1204/1157,
  43692. bottom: 46/1250
  43693. }
  43694. },
  43695. },
  43696. [
  43697. {
  43698. name: "Wildform",
  43699. height: math.unit(8 + 2/12, "feet"),
  43700. default: true
  43701. },
  43702. ]
  43703. ))
  43704. characterMakers.push(() => makeCharacter(
  43705. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43706. {
  43707. front: {
  43708. height: math.unit(18, "feet"),
  43709. name: "Front",
  43710. image: {
  43711. source: "./media/characters/cyphin/front.svg",
  43712. extra: 970/886,
  43713. bottom: 42/1012
  43714. }
  43715. },
  43716. back: {
  43717. height: math.unit(18, "feet"),
  43718. name: "Back",
  43719. image: {
  43720. source: "./media/characters/cyphin/back.svg",
  43721. extra: 1009/894,
  43722. bottom: 24/1033
  43723. }
  43724. },
  43725. head: {
  43726. height: math.unit(5.05, "feet"),
  43727. name: "Head",
  43728. image: {
  43729. source: "./media/characters/cyphin/head.svg"
  43730. }
  43731. },
  43732. tailbud: {
  43733. height: math.unit(5, "feet"),
  43734. name: "Tailbud",
  43735. image: {
  43736. source: "./media/characters/cyphin/tailbud.svg"
  43737. }
  43738. },
  43739. },
  43740. [
  43741. ]
  43742. ))
  43743. characterMakers.push(() => makeCharacter(
  43744. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43745. {
  43746. side: {
  43747. height: math.unit(10, "feet"),
  43748. weight: math.unit(6, "tons"),
  43749. name: "Side",
  43750. image: {
  43751. source: "./media/characters/raijin/side.svg",
  43752. extra: 1529/613,
  43753. bottom: 337/1866
  43754. }
  43755. },
  43756. },
  43757. [
  43758. {
  43759. name: "Normal",
  43760. height: math.unit(10, "feet"),
  43761. default: true
  43762. },
  43763. ]
  43764. ))
  43765. characterMakers.push(() => makeCharacter(
  43766. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43767. {
  43768. side: {
  43769. height: math.unit(9, "feet"),
  43770. name: "Side",
  43771. image: {
  43772. source: "./media/characters/nilghais/side.svg",
  43773. extra: 1047/744,
  43774. bottom: 91/1138
  43775. }
  43776. },
  43777. head: {
  43778. height: math.unit(3.14, "feet"),
  43779. name: "Head",
  43780. image: {
  43781. source: "./media/characters/nilghais/head.svg"
  43782. }
  43783. },
  43784. mouth: {
  43785. height: math.unit(4.6, "feet"),
  43786. name: "Mouth",
  43787. image: {
  43788. source: "./media/characters/nilghais/mouth.svg"
  43789. }
  43790. },
  43791. wings: {
  43792. height: math.unit(24, "feet"),
  43793. name: "Wings",
  43794. image: {
  43795. source: "./media/characters/nilghais/wings.svg"
  43796. }
  43797. },
  43798. ass: {
  43799. height: math.unit(6.12, "feet"),
  43800. name: "Ass",
  43801. image: {
  43802. source: "./media/characters/nilghais/ass.svg"
  43803. }
  43804. },
  43805. },
  43806. [
  43807. {
  43808. name: "Normal",
  43809. height: math.unit(9, "feet"),
  43810. default: true
  43811. },
  43812. ]
  43813. ))
  43814. characterMakers.push(() => makeCharacter(
  43815. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43816. {
  43817. regular: {
  43818. height: math.unit(16 + 2/12, "feet"),
  43819. weight: math.unit(2300, "lb"),
  43820. name: "Regular",
  43821. image: {
  43822. source: "./media/characters/zolgar/regular.svg",
  43823. extra: 1246/1004,
  43824. bottom: 124/1370
  43825. }
  43826. },
  43827. boxers: {
  43828. height: math.unit(16 + 2/12, "feet"),
  43829. weight: math.unit(2300, "lb"),
  43830. name: "Boxers",
  43831. image: {
  43832. source: "./media/characters/zolgar/boxers.svg",
  43833. extra: 1246/1004,
  43834. bottom: 124/1370
  43835. }
  43836. },
  43837. armored: {
  43838. height: math.unit(16 + 2/12, "feet"),
  43839. weight: math.unit(2300, "lb"),
  43840. name: "Armored",
  43841. image: {
  43842. source: "./media/characters/zolgar/armored.svg",
  43843. extra: 1246/1004,
  43844. bottom: 124/1370
  43845. }
  43846. },
  43847. goth: {
  43848. height: math.unit(16 + 2/12, "feet"),
  43849. weight: math.unit(2300, "lb"),
  43850. name: "Goth",
  43851. image: {
  43852. source: "./media/characters/zolgar/goth.svg",
  43853. extra: 1246/1004,
  43854. bottom: 124/1370
  43855. }
  43856. },
  43857. },
  43858. [
  43859. {
  43860. name: "Shrunken Down",
  43861. height: math.unit(9 + 2/12, "feet")
  43862. },
  43863. {
  43864. name: "Normal",
  43865. height: math.unit(16 + 2/12, "feet"),
  43866. default: true
  43867. },
  43868. ]
  43869. ))
  43870. characterMakers.push(() => makeCharacter(
  43871. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43872. {
  43873. front: {
  43874. height: math.unit(6, "feet"),
  43875. weight: math.unit(168, "lb"),
  43876. name: "Front",
  43877. image: {
  43878. source: "./media/characters/luca/front.svg",
  43879. extra: 841/667,
  43880. bottom: 102/943
  43881. }
  43882. },
  43883. },
  43884. [
  43885. {
  43886. name: "Normal",
  43887. height: math.unit(6, "feet"),
  43888. default: true
  43889. },
  43890. ]
  43891. ))
  43892. characterMakers.push(() => makeCharacter(
  43893. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43894. {
  43895. side: {
  43896. height: math.unit(7 + 3/12, "feet"),
  43897. weight: math.unit(312, "lb"),
  43898. name: "Side",
  43899. image: {
  43900. source: "./media/characters/zezo/side.svg",
  43901. extra: 1192/1067,
  43902. bottom: 63/1255
  43903. }
  43904. },
  43905. },
  43906. [
  43907. {
  43908. name: "Normal",
  43909. height: math.unit(7 + 3/12, "feet"),
  43910. default: true
  43911. },
  43912. ]
  43913. ))
  43914. characterMakers.push(() => makeCharacter(
  43915. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43916. {
  43917. front: {
  43918. height: math.unit(5 + 5/12, "feet"),
  43919. weight: math.unit(170, "lb"),
  43920. name: "Front",
  43921. image: {
  43922. source: "./media/characters/mayso/front.svg",
  43923. extra: 1215/1108,
  43924. bottom: 16/1231
  43925. }
  43926. },
  43927. },
  43928. [
  43929. {
  43930. name: "Normal",
  43931. height: math.unit(5 + 5/12, "feet"),
  43932. default: true
  43933. },
  43934. ]
  43935. ))
  43936. characterMakers.push(() => makeCharacter(
  43937. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43938. {
  43939. front: {
  43940. height: math.unit(4 + 3/12, "feet"),
  43941. weight: math.unit(80, "lb"),
  43942. name: "Front",
  43943. image: {
  43944. source: "./media/characters/hess/front.svg",
  43945. extra: 1200/1123,
  43946. bottom: 16/1216
  43947. }
  43948. },
  43949. },
  43950. [
  43951. {
  43952. name: "Normal",
  43953. height: math.unit(4 + 3/12, "feet"),
  43954. default: true
  43955. },
  43956. ]
  43957. ))
  43958. characterMakers.push(() => makeCharacter(
  43959. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43960. {
  43961. front: {
  43962. height: math.unit(1.9, "meters"),
  43963. name: "Front",
  43964. image: {
  43965. source: "./media/characters/ashgar/front.svg",
  43966. extra: 1177/1146,
  43967. bottom: 99/1276
  43968. }
  43969. },
  43970. back: {
  43971. height: math.unit(1.9, "meters"),
  43972. name: "Back",
  43973. image: {
  43974. source: "./media/characters/ashgar/back.svg",
  43975. extra: 1201/1183,
  43976. bottom: 53/1254
  43977. }
  43978. },
  43979. feral: {
  43980. height: math.unit(1.4, "meters"),
  43981. name: "Feral",
  43982. image: {
  43983. source: "./media/characters/ashgar/feral.svg",
  43984. extra: 370/345,
  43985. bottom: 45/415
  43986. }
  43987. },
  43988. },
  43989. [
  43990. {
  43991. name: "Normal",
  43992. height: math.unit(1.9, "meters"),
  43993. default: true
  43994. },
  43995. ]
  43996. ))
  43997. characterMakers.push(() => makeCharacter(
  43998. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43999. {
  44000. regular: {
  44001. height: math.unit(6, "feet"),
  44002. weight: math.unit(220, "lb"),
  44003. name: "Regular",
  44004. image: {
  44005. source: "./media/characters/phillip/regular.svg",
  44006. extra: 1373/1277,
  44007. bottom: 75/1448
  44008. }
  44009. },
  44010. dressed: {
  44011. height: math.unit(6, "feet"),
  44012. weight: math.unit(220, "lb"),
  44013. name: "Dressed",
  44014. image: {
  44015. source: "./media/characters/phillip/dressed.svg",
  44016. extra: 1373/1277,
  44017. bottom: 75/1448
  44018. }
  44019. },
  44020. paw: {
  44021. height: math.unit(1.44, "feet"),
  44022. name: "Paw",
  44023. image: {
  44024. source: "./media/characters/phillip/paw.svg"
  44025. }
  44026. },
  44027. },
  44028. [
  44029. {
  44030. name: "Normal",
  44031. height: math.unit(6, "feet"),
  44032. default: true
  44033. },
  44034. ]
  44035. ))
  44036. characterMakers.push(() => makeCharacter(
  44037. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44038. {
  44039. side: {
  44040. height: math.unit(42, "feet"),
  44041. name: "Side",
  44042. image: {
  44043. source: "./media/characters/uvula/side.svg",
  44044. extra: 683/586,
  44045. bottom: 60/743
  44046. }
  44047. },
  44048. front: {
  44049. height: math.unit(42, "feet"),
  44050. name: "Front",
  44051. image: {
  44052. source: "./media/characters/uvula/front.svg",
  44053. extra: 705/613,
  44054. bottom: 54/759
  44055. }
  44056. },
  44057. maw: {
  44058. height: math.unit(23.5, "feet"),
  44059. name: "Maw",
  44060. image: {
  44061. source: "./media/characters/uvula/maw.svg"
  44062. }
  44063. },
  44064. },
  44065. [
  44066. {
  44067. name: "Original Size",
  44068. height: math.unit(14, "inches")
  44069. },
  44070. {
  44071. name: "Human Size",
  44072. height: math.unit(6, "feet")
  44073. },
  44074. {
  44075. name: "Big",
  44076. height: math.unit(42, "feet"),
  44077. default: true
  44078. },
  44079. {
  44080. name: "Bigger",
  44081. height: math.unit(100, "feet")
  44082. },
  44083. ]
  44084. ))
  44085. characterMakers.push(() => makeCharacter(
  44086. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44087. {
  44088. front: {
  44089. height: math.unit(5 + 11/12, "feet"),
  44090. name: "Front",
  44091. image: {
  44092. source: "./media/characters/lannah/front.svg",
  44093. extra: 1208/1113,
  44094. bottom: 97/1305
  44095. }
  44096. },
  44097. },
  44098. [
  44099. {
  44100. name: "Normal",
  44101. height: math.unit(5 + 11/12, "feet"),
  44102. default: true
  44103. },
  44104. ]
  44105. ))
  44106. characterMakers.push(() => makeCharacter(
  44107. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44108. {
  44109. front: {
  44110. height: math.unit(6 + 3/12, "feet"),
  44111. weight: math.unit(3.5, "tons"),
  44112. name: "Front",
  44113. image: {
  44114. source: "./media/characters/emberflame/front.svg",
  44115. extra: 1198/672,
  44116. bottom: 82/1280
  44117. }
  44118. },
  44119. side: {
  44120. height: math.unit(6 + 3/12, "feet"),
  44121. weight: math.unit(3.5, "tons"),
  44122. name: "Side",
  44123. image: {
  44124. source: "./media/characters/emberflame/side.svg",
  44125. extra: 938/527,
  44126. bottom: 56/994
  44127. }
  44128. },
  44129. },
  44130. [
  44131. {
  44132. name: "Normal",
  44133. height: math.unit(6 + 3/12, "feet"),
  44134. default: true
  44135. },
  44136. ]
  44137. ))
  44138. characterMakers.push(() => makeCharacter(
  44139. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44140. {
  44141. side: {
  44142. height: math.unit(17.5, "feet"),
  44143. weight: math.unit(35, "tons"),
  44144. name: "Side",
  44145. image: {
  44146. source: "./media/characters/sophie-ambrose/side.svg",
  44147. extra: 1573/1242,
  44148. bottom: 71/1644
  44149. }
  44150. },
  44151. maw: {
  44152. height: math.unit(7.4, "feet"),
  44153. name: "Maw",
  44154. image: {
  44155. source: "./media/characters/sophie-ambrose/maw.svg"
  44156. }
  44157. },
  44158. },
  44159. [
  44160. {
  44161. name: "Normal",
  44162. height: math.unit(17.5, "feet"),
  44163. default: true
  44164. },
  44165. ]
  44166. ))
  44167. characterMakers.push(() => makeCharacter(
  44168. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44169. {
  44170. front: {
  44171. height: math.unit(280, "feet"),
  44172. weight: math.unit(550, "tons"),
  44173. name: "Front",
  44174. image: {
  44175. source: "./media/characters/king-mugi/front.svg",
  44176. extra: 1102/947,
  44177. bottom: 104/1206
  44178. }
  44179. },
  44180. },
  44181. [
  44182. {
  44183. name: "King Mugi",
  44184. height: math.unit(280, "feet"),
  44185. default: true
  44186. },
  44187. ]
  44188. ))
  44189. characterMakers.push(() => makeCharacter(
  44190. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44191. {
  44192. front: {
  44193. height: math.unit(64, "meters"),
  44194. name: "Front",
  44195. image: {
  44196. source: "./media/characters/nova-fox/front.svg",
  44197. extra: 1310/1246,
  44198. bottom: 65/1375
  44199. }
  44200. },
  44201. },
  44202. [
  44203. {
  44204. name: "Macro",
  44205. height: math.unit(64, "meters"),
  44206. default: true
  44207. },
  44208. ]
  44209. ))
  44210. characterMakers.push(() => makeCharacter(
  44211. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44212. {
  44213. front: {
  44214. height: math.unit(6 + 3/12, "feet"),
  44215. weight: math.unit(170, "lb"),
  44216. name: "Front",
  44217. image: {
  44218. source: "./media/characters/sam-bat/front.svg",
  44219. extra: 1601/1411,
  44220. bottom: 125/1726
  44221. }
  44222. },
  44223. back: {
  44224. height: math.unit(6 + 3/12, "feet"),
  44225. weight: math.unit(170, "lb"),
  44226. name: "Back",
  44227. image: {
  44228. source: "./media/characters/sam-bat/back.svg",
  44229. extra: 1577/1405,
  44230. bottom: 58/1635
  44231. }
  44232. },
  44233. },
  44234. [
  44235. {
  44236. name: "Normal",
  44237. height: math.unit(6 + 3/12, "feet"),
  44238. default: true
  44239. },
  44240. ]
  44241. ))
  44242. characterMakers.push(() => makeCharacter(
  44243. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44244. {
  44245. front: {
  44246. height: math.unit(59, "feet"),
  44247. weight: math.unit(40000, "lb"),
  44248. name: "Front",
  44249. image: {
  44250. source: "./media/characters/inari/front.svg",
  44251. extra: 1884/1350,
  44252. bottom: 95/1979
  44253. }
  44254. },
  44255. },
  44256. [
  44257. {
  44258. name: "Gigantamax",
  44259. height: math.unit(59, "feet"),
  44260. default: true
  44261. },
  44262. ]
  44263. ))
  44264. characterMakers.push(() => makeCharacter(
  44265. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44266. {
  44267. front: {
  44268. height: math.unit(5 + 8/12, "feet"),
  44269. name: "Front",
  44270. image: {
  44271. source: "./media/characters/elizabeth/front.svg",
  44272. extra: 1395/1298,
  44273. bottom: 54/1449
  44274. }
  44275. },
  44276. mouth: {
  44277. height: math.unit(1.97, "feet"),
  44278. name: "Mouth",
  44279. image: {
  44280. source: "./media/characters/elizabeth/mouth.svg"
  44281. }
  44282. },
  44283. foot: {
  44284. height: math.unit(1.17, "feet"),
  44285. name: "Foot",
  44286. image: {
  44287. source: "./media/characters/elizabeth/foot.svg"
  44288. }
  44289. },
  44290. },
  44291. [
  44292. {
  44293. name: "Normal",
  44294. height: math.unit(5 + 8/12, "feet"),
  44295. default: true
  44296. },
  44297. {
  44298. name: "Minimacro",
  44299. height: math.unit(18, "feet")
  44300. },
  44301. {
  44302. name: "Macro",
  44303. height: math.unit(180, "feet")
  44304. },
  44305. ]
  44306. ))
  44307. characterMakers.push(() => makeCharacter(
  44308. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44309. {
  44310. front: {
  44311. height: math.unit(5 + 2/12, "feet"),
  44312. name: "Front",
  44313. image: {
  44314. source: "./media/characters/october-gossamer/front.svg",
  44315. extra: 505/454,
  44316. bottom: 7/512
  44317. }
  44318. },
  44319. back: {
  44320. height: math.unit(5 + 2/12, "feet"),
  44321. name: "Back",
  44322. image: {
  44323. source: "./media/characters/october-gossamer/back.svg",
  44324. extra: 501/454,
  44325. bottom: 11/512
  44326. }
  44327. },
  44328. },
  44329. [
  44330. {
  44331. name: "Normal",
  44332. height: math.unit(5 + 2/12, "feet"),
  44333. default: true
  44334. },
  44335. ]
  44336. ))
  44337. characterMakers.push(() => makeCharacter(
  44338. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44339. {
  44340. front: {
  44341. height: math.unit(5, "feet"),
  44342. name: "Front",
  44343. image: {
  44344. source: "./media/characters/epiglottis/front.svg",
  44345. extra: 923/849,
  44346. bottom: 17/940
  44347. }
  44348. },
  44349. },
  44350. [
  44351. {
  44352. name: "Original Size",
  44353. height: math.unit(10, "inches")
  44354. },
  44355. {
  44356. name: "Human Size",
  44357. height: math.unit(5, "feet"),
  44358. default: true
  44359. },
  44360. {
  44361. name: "Big",
  44362. height: math.unit(25, "feet")
  44363. },
  44364. {
  44365. name: "Bigger",
  44366. height: math.unit(50, "feet")
  44367. },
  44368. {
  44369. name: "oh lawd",
  44370. height: math.unit(75, "feet")
  44371. },
  44372. ]
  44373. ))
  44374. characterMakers.push(() => makeCharacter(
  44375. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44376. {
  44377. front: {
  44378. height: math.unit(2 + 4/12, "feet"),
  44379. weight: math.unit(60, "lb"),
  44380. name: "Front",
  44381. image: {
  44382. source: "./media/characters/lerm/front.svg",
  44383. extra: 796/790,
  44384. bottom: 79/875
  44385. }
  44386. },
  44387. },
  44388. [
  44389. {
  44390. name: "Normal",
  44391. height: math.unit(2 + 4/12, "feet"),
  44392. default: true
  44393. },
  44394. ]
  44395. ))
  44396. characterMakers.push(() => makeCharacter(
  44397. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44398. {
  44399. front: {
  44400. height: math.unit(5.5, "feet"),
  44401. weight: math.unit(130, "lb"),
  44402. name: "Front",
  44403. image: {
  44404. source: "./media/characters/xena-nebadon/front.svg",
  44405. extra: 1828/1730,
  44406. bottom: 79/1907
  44407. }
  44408. },
  44409. },
  44410. [
  44411. {
  44412. name: "Tiny Puppy",
  44413. height: math.unit(3, "inches")
  44414. },
  44415. {
  44416. name: "Normal",
  44417. height: math.unit(5.5, "feet"),
  44418. default: true
  44419. },
  44420. {
  44421. name: "Lotta Lady",
  44422. height: math.unit(12, "feet")
  44423. },
  44424. {
  44425. name: "Pretty Big",
  44426. height: math.unit(100, "feet")
  44427. },
  44428. {
  44429. name: "Big",
  44430. height: math.unit(500, "feet")
  44431. },
  44432. {
  44433. name: "Skyscraper Toys",
  44434. height: math.unit(2500, "feet")
  44435. },
  44436. {
  44437. name: "Plane Catcher",
  44438. height: math.unit(8, "miles")
  44439. },
  44440. {
  44441. name: "Planet Toys",
  44442. height: math.unit(15, "earths")
  44443. },
  44444. {
  44445. name: "Stardust",
  44446. height: math.unit(0.25, "galaxies")
  44447. },
  44448. {
  44449. name: "Snacks",
  44450. height: math.unit(70, "universes")
  44451. },
  44452. ]
  44453. ))
  44454. characterMakers.push(() => makeCharacter(
  44455. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44456. {
  44457. front: {
  44458. height: math.unit(1.6, "meters"),
  44459. weight: math.unit(60, "kg"),
  44460. name: "Front",
  44461. image: {
  44462. source: "./media/characters/bounty/front.svg",
  44463. extra: 1426/1308,
  44464. bottom: 15/1441
  44465. }
  44466. },
  44467. back: {
  44468. height: math.unit(1.6, "meters"),
  44469. weight: math.unit(60, "kg"),
  44470. name: "Back",
  44471. image: {
  44472. source: "./media/characters/bounty/back.svg",
  44473. extra: 1417/1307,
  44474. bottom: 8/1425
  44475. }
  44476. },
  44477. },
  44478. [
  44479. {
  44480. name: "Normal",
  44481. height: math.unit(1.6, "meters"),
  44482. default: true
  44483. },
  44484. {
  44485. name: "Macro",
  44486. height: math.unit(300, "meters")
  44487. },
  44488. ]
  44489. ))
  44490. characterMakers.push(() => makeCharacter(
  44491. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44492. {
  44493. front: {
  44494. height: math.unit(2 + 8/12, "feet"),
  44495. weight: math.unit(15, "lb"),
  44496. name: "Front",
  44497. image: {
  44498. source: "./media/characters/mochi/front.svg",
  44499. extra: 1022/852,
  44500. bottom: 435/1457
  44501. }
  44502. },
  44503. back: {
  44504. height: math.unit(2 + 8/12, "feet"),
  44505. weight: math.unit(15, "lb"),
  44506. name: "Back",
  44507. image: {
  44508. source: "./media/characters/mochi/back.svg",
  44509. extra: 1335/1119,
  44510. bottom: 39/1374
  44511. }
  44512. },
  44513. bird: {
  44514. height: math.unit(2 + 8/12, "feet"),
  44515. weight: math.unit(15, "lb"),
  44516. name: "Bird",
  44517. image: {
  44518. source: "./media/characters/mochi/bird.svg",
  44519. extra: 1251/1113,
  44520. bottom: 178/1429
  44521. }
  44522. },
  44523. kaiju: {
  44524. height: math.unit(154, "feet"),
  44525. weight: math.unit(1e7, "lb"),
  44526. name: "Kaiju",
  44527. image: {
  44528. source: "./media/characters/mochi/kaiju.svg",
  44529. extra: 460/324,
  44530. bottom: 40/500
  44531. }
  44532. },
  44533. head: {
  44534. height: math.unit(1.21, "feet"),
  44535. name: "Head",
  44536. image: {
  44537. source: "./media/characters/mochi/head.svg"
  44538. }
  44539. },
  44540. alternateTail: {
  44541. height: math.unit(2 + 8/12, "feet"),
  44542. weight: math.unit(45, "lb"),
  44543. name: "Alternate Tail",
  44544. image: {
  44545. source: "./media/characters/mochi/alternate-tail.svg",
  44546. extra: 139/76,
  44547. bottom: 45/184
  44548. }
  44549. },
  44550. },
  44551. [
  44552. {
  44553. name: "Micro",
  44554. height: math.unit(2, "inches")
  44555. },
  44556. {
  44557. name: "Normal",
  44558. height: math.unit(2 + 8/12, "feet"),
  44559. default: true
  44560. },
  44561. {
  44562. name: "Macro",
  44563. height: math.unit(106, "feet")
  44564. },
  44565. ]
  44566. ))
  44567. characterMakers.push(() => makeCharacter(
  44568. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44569. {
  44570. front: {
  44571. height: math.unit(5.67, "feet"),
  44572. weight: math.unit(135, "lb"),
  44573. name: "Front",
  44574. image: {
  44575. source: "./media/characters/sarel/front.svg",
  44576. extra: 865/788,
  44577. bottom: 97/962
  44578. }
  44579. },
  44580. back: {
  44581. height: math.unit(5.67, "feet"),
  44582. weight: math.unit(135, "lb"),
  44583. name: "Back",
  44584. image: {
  44585. source: "./media/characters/sarel/back.svg",
  44586. extra: 857/777,
  44587. bottom: 32/889
  44588. }
  44589. },
  44590. chozoan: {
  44591. height: math.unit(5.67, "feet"),
  44592. weight: math.unit(135, "lb"),
  44593. name: "Chozoan",
  44594. image: {
  44595. source: "./media/characters/sarel/chozoan.svg",
  44596. extra: 865/788,
  44597. bottom: 97/962
  44598. }
  44599. },
  44600. current: {
  44601. height: math.unit(5.67, "feet"),
  44602. weight: math.unit(135, "lb"),
  44603. name: "Current",
  44604. image: {
  44605. source: "./media/characters/sarel/current.svg",
  44606. extra: 865/788,
  44607. bottom: 97/962
  44608. }
  44609. },
  44610. head: {
  44611. height: math.unit(1.77, "feet"),
  44612. name: "Head",
  44613. image: {
  44614. source: "./media/characters/sarel/head.svg"
  44615. }
  44616. },
  44617. claws: {
  44618. height: math.unit(1.8, "feet"),
  44619. name: "Claws",
  44620. image: {
  44621. source: "./media/characters/sarel/claws.svg"
  44622. }
  44623. },
  44624. clawsAlt: {
  44625. height: math.unit(1.8, "feet"),
  44626. name: "Claws-alt",
  44627. image: {
  44628. source: "./media/characters/sarel/claws-alt.svg"
  44629. }
  44630. },
  44631. },
  44632. [
  44633. {
  44634. name: "Normal",
  44635. height: math.unit(5.67, "feet"),
  44636. default: true
  44637. },
  44638. ]
  44639. ))
  44640. characterMakers.push(() => makeCharacter(
  44641. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44642. {
  44643. front: {
  44644. height: math.unit(5500, "feet"),
  44645. name: "Front",
  44646. image: {
  44647. source: "./media/characters/alyonia/front.svg",
  44648. extra: 1200/1135,
  44649. bottom: 29/1229
  44650. }
  44651. },
  44652. back: {
  44653. height: math.unit(5500, "feet"),
  44654. name: "Back",
  44655. image: {
  44656. source: "./media/characters/alyonia/back.svg",
  44657. extra: 1205/1138,
  44658. bottom: 10/1215
  44659. }
  44660. },
  44661. },
  44662. [
  44663. {
  44664. name: "Small",
  44665. height: math.unit(10, "feet")
  44666. },
  44667. {
  44668. name: "Macro",
  44669. height: math.unit(500, "feet")
  44670. },
  44671. {
  44672. name: "Mega Macro",
  44673. height: math.unit(5500, "feet"),
  44674. default: true
  44675. },
  44676. {
  44677. name: "Mega Macro+",
  44678. height: math.unit(500000, "feet")
  44679. },
  44680. {
  44681. name: "Giga Macro",
  44682. height: math.unit(3000, "miles")
  44683. },
  44684. {
  44685. name: "Tera Macro",
  44686. height: math.unit(2.8e6, "miles")
  44687. },
  44688. {
  44689. name: "Galactic",
  44690. height: math.unit(120000, "lightyears")
  44691. },
  44692. ]
  44693. ))
  44694. characterMakers.push(() => makeCharacter(
  44695. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44696. {
  44697. werewolf: {
  44698. height: math.unit(8, "feet"),
  44699. weight: math.unit(425, "lb"),
  44700. name: "Werewolf",
  44701. image: {
  44702. source: "./media/characters/autumn/werewolf.svg",
  44703. extra: 2154/2031,
  44704. bottom: 160/2314
  44705. }
  44706. },
  44707. human: {
  44708. height: math.unit(5 + 8/12, "feet"),
  44709. weight: math.unit(150, "lb"),
  44710. name: "Human",
  44711. image: {
  44712. source: "./media/characters/autumn/human.svg",
  44713. extra: 1200/1149,
  44714. bottom: 30/1230
  44715. }
  44716. },
  44717. },
  44718. [
  44719. {
  44720. name: "Normal",
  44721. height: math.unit(8, "feet"),
  44722. default: true
  44723. },
  44724. ]
  44725. ))
  44726. characterMakers.push(() => makeCharacter(
  44727. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44728. {
  44729. front: {
  44730. height: math.unit(8 + 5/12, "feet"),
  44731. weight: math.unit(825, "lb"),
  44732. name: "Front",
  44733. image: {
  44734. source: "./media/characters/cobalt-charizard/front.svg",
  44735. extra: 1268/1155,
  44736. bottom: 122/1390
  44737. }
  44738. },
  44739. side: {
  44740. height: math.unit(8 + 5/12, "feet"),
  44741. weight: math.unit(825, "lb"),
  44742. name: "Side",
  44743. image: {
  44744. source: "./media/characters/cobalt-charizard/side.svg",
  44745. extra: 1348/1257,
  44746. bottom: 58/1406
  44747. }
  44748. },
  44749. gMax: {
  44750. height: math.unit(134 + 11/12, "feet"),
  44751. name: "G-Max",
  44752. image: {
  44753. source: "./media/characters/cobalt-charizard/g-max.svg",
  44754. extra: 1835/1541,
  44755. bottom: 151/1986
  44756. }
  44757. },
  44758. },
  44759. [
  44760. {
  44761. name: "Normal",
  44762. height: math.unit(8 + 5/12, "feet"),
  44763. default: true
  44764. },
  44765. ]
  44766. ))
  44767. characterMakers.push(() => makeCharacter(
  44768. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44769. {
  44770. front: {
  44771. height: math.unit(6 + 3/12, "feet"),
  44772. weight: math.unit(210, "lb"),
  44773. name: "Front",
  44774. image: {
  44775. source: "./media/characters/stella/front.svg",
  44776. extra: 3549/3335,
  44777. bottom: 51/3600
  44778. }
  44779. },
  44780. },
  44781. [
  44782. {
  44783. name: "Normal",
  44784. height: math.unit(6 + 3/12, "feet"),
  44785. default: true
  44786. },
  44787. ]
  44788. ))
  44789. characterMakers.push(() => makeCharacter(
  44790. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44791. {
  44792. front: {
  44793. height: math.unit(5, "feet"),
  44794. weight: math.unit(90, "lb"),
  44795. name: "Front",
  44796. image: {
  44797. source: "./media/characters/riley-bishop/front.svg",
  44798. extra: 1450/1428,
  44799. bottom: 152/1602
  44800. }
  44801. },
  44802. },
  44803. [
  44804. {
  44805. name: "Normal",
  44806. height: math.unit(5, "feet"),
  44807. default: true
  44808. },
  44809. ]
  44810. ))
  44811. characterMakers.push(() => makeCharacter(
  44812. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44813. {
  44814. side: {
  44815. height: math.unit(8 + 2/12, "feet"),
  44816. weight: math.unit(500, "kg"),
  44817. name: "Side",
  44818. image: {
  44819. source: "./media/characters/theo-arcanine/side.svg",
  44820. extra: 1342/1074,
  44821. bottom: 111/1453
  44822. }
  44823. },
  44824. },
  44825. [
  44826. {
  44827. name: "Normal",
  44828. height: math.unit(8 + 2/12, "feet"),
  44829. default: true
  44830. },
  44831. ]
  44832. ))
  44833. characterMakers.push(() => makeCharacter(
  44834. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44835. {
  44836. front: {
  44837. height: math.unit(4, "feet"),
  44838. name: "Front",
  44839. image: {
  44840. source: "./media/characters/kali/front.svg",
  44841. extra: 1921/1357,
  44842. bottom: 70/1991
  44843. }
  44844. },
  44845. },
  44846. [
  44847. {
  44848. name: "Normal",
  44849. height: math.unit(4, "feet"),
  44850. default: true
  44851. },
  44852. {
  44853. name: "Macro",
  44854. height: math.unit(32, "meters")
  44855. },
  44856. {
  44857. name: "Macro+",
  44858. height: math.unit(150, "meters")
  44859. },
  44860. {
  44861. name: "Megamacro",
  44862. height: math.unit(7500, "meters")
  44863. },
  44864. {
  44865. name: "Megamacro+",
  44866. height: math.unit(80, "kilometers")
  44867. },
  44868. ]
  44869. ))
  44870. characterMakers.push(() => makeCharacter(
  44871. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44872. {
  44873. side: {
  44874. height: math.unit(5 + 11/12, "feet"),
  44875. weight: math.unit(236, "lb"),
  44876. name: "Side",
  44877. image: {
  44878. source: "./media/characters/gapp/side.svg",
  44879. extra: 775/340,
  44880. bottom: 58/833
  44881. }
  44882. },
  44883. mouth: {
  44884. height: math.unit(2.98, "feet"),
  44885. name: "Mouth",
  44886. image: {
  44887. source: "./media/characters/gapp/mouth.svg"
  44888. }
  44889. },
  44890. },
  44891. [
  44892. {
  44893. name: "Normal",
  44894. height: math.unit(5 + 1/12, "feet"),
  44895. default: true
  44896. },
  44897. ]
  44898. ))
  44899. characterMakers.push(() => makeCharacter(
  44900. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44901. {
  44902. front: {
  44903. height: math.unit(6, "feet"),
  44904. name: "Front",
  44905. image: {
  44906. source: "./media/characters/persephone/front.svg",
  44907. extra: 1895/1717,
  44908. bottom: 96/1991
  44909. }
  44910. },
  44911. back: {
  44912. height: math.unit(6, "feet"),
  44913. name: "Back",
  44914. image: {
  44915. source: "./media/characters/persephone/back.svg",
  44916. extra: 1868/1679,
  44917. bottom: 26/1894
  44918. }
  44919. },
  44920. casual: {
  44921. height: math.unit(6, "feet"),
  44922. name: "Casual",
  44923. image: {
  44924. source: "./media/characters/persephone/casual.svg",
  44925. extra: 1713/1541,
  44926. bottom: 76/1789
  44927. }
  44928. },
  44929. },
  44930. [
  44931. {
  44932. name: "Human Size",
  44933. height: math.unit(6, "feet")
  44934. },
  44935. {
  44936. name: "Big Steppy",
  44937. height: math.unit(600, "meters"),
  44938. default: true
  44939. },
  44940. {
  44941. name: "Galaxy Brain",
  44942. height: math.unit(1, "zettameter")
  44943. },
  44944. ]
  44945. ))
  44946. characterMakers.push(() => makeCharacter(
  44947. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44948. {
  44949. front: {
  44950. height: math.unit(1.85, "meters"),
  44951. name: "Front",
  44952. image: {
  44953. source: "./media/characters/riley-foxthing/front.svg",
  44954. extra: 1495/1354,
  44955. bottom: 122/1617
  44956. }
  44957. },
  44958. frontAlt: {
  44959. height: math.unit(1.85, "meters"),
  44960. name: "Front (Alt)",
  44961. image: {
  44962. source: "./media/characters/riley-foxthing/front-alt.svg",
  44963. extra: 1572/1389,
  44964. bottom: 116/1688
  44965. }
  44966. },
  44967. },
  44968. [
  44969. {
  44970. name: "Normal Sized",
  44971. height: math.unit(1.85, "meters"),
  44972. default: true
  44973. },
  44974. {
  44975. name: "Quite Sizable",
  44976. height: math.unit(5, "meters")
  44977. },
  44978. {
  44979. name: "Rather Large",
  44980. height: math.unit(20, "meters")
  44981. },
  44982. {
  44983. name: "Macro",
  44984. height: math.unit(450, "meters")
  44985. },
  44986. {
  44987. name: "Giga",
  44988. height: math.unit(5, "km")
  44989. },
  44990. ]
  44991. ))
  44992. characterMakers.push(() => makeCharacter(
  44993. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44994. {
  44995. front: {
  44996. height: math.unit(6, "feet"),
  44997. weight: math.unit(200, "lb"),
  44998. name: "Front",
  44999. image: {
  45000. source: "./media/characters/blizzard/front.svg",
  45001. extra: 1136/990,
  45002. bottom: 136/1272
  45003. }
  45004. },
  45005. back: {
  45006. height: math.unit(6, "feet"),
  45007. weight: math.unit(200, "lb"),
  45008. name: "Back",
  45009. image: {
  45010. source: "./media/characters/blizzard/back.svg",
  45011. extra: 1175/1034,
  45012. bottom: 97/1272
  45013. }
  45014. },
  45015. sitting: {
  45016. height: math.unit(3.725, "feet"),
  45017. weight: math.unit(200, "lb"),
  45018. name: "Sitting",
  45019. image: {
  45020. source: "./media/characters/blizzard/sitting.svg",
  45021. extra: 581/485,
  45022. bottom: 90/671
  45023. }
  45024. },
  45025. frontWizard: {
  45026. height: math.unit(7.9, "feet"),
  45027. weight: math.unit(200, "lb"),
  45028. name: "Front (Wizard)",
  45029. image: {
  45030. source: "./media/characters/blizzard/front-wizard.svg"
  45031. }
  45032. },
  45033. backWizard: {
  45034. height: math.unit(7.9, "feet"),
  45035. weight: math.unit(200, "lb"),
  45036. name: "Back (Wizard)",
  45037. image: {
  45038. source: "./media/characters/blizzard/back-wizard.svg"
  45039. }
  45040. },
  45041. frontNsfw: {
  45042. height: math.unit(6, "feet"),
  45043. weight: math.unit(200, "lb"),
  45044. name: "Front (NSFW)",
  45045. image: {
  45046. source: "./media/characters/blizzard/front-nsfw.svg",
  45047. extra: 1136/990,
  45048. bottom: 136/1272
  45049. }
  45050. },
  45051. backNsfw: {
  45052. height: math.unit(6, "feet"),
  45053. weight: math.unit(200, "lb"),
  45054. name: "Back (NSFW)",
  45055. image: {
  45056. source: "./media/characters/blizzard/back-nsfw.svg",
  45057. extra: 1175/1034,
  45058. bottom: 97/1272
  45059. }
  45060. },
  45061. sittingNsfw: {
  45062. height: math.unit(3.725, "feet"),
  45063. weight: math.unit(200, "lb"),
  45064. name: "Sitting (NSFW)",
  45065. image: {
  45066. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45067. extra: 581/485,
  45068. bottom: 90/671
  45069. }
  45070. },
  45071. wizardFrontNsfw: {
  45072. height: math.unit(7.9, "feet"),
  45073. weight: math.unit(200, "lb"),
  45074. name: "Wizard (Front, NSFW)",
  45075. image: {
  45076. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45077. }
  45078. },
  45079. },
  45080. [
  45081. {
  45082. name: "Normal",
  45083. height: math.unit(6, "feet"),
  45084. default: true
  45085. },
  45086. ]
  45087. ))
  45088. characterMakers.push(() => makeCharacter(
  45089. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45090. {
  45091. front: {
  45092. height: math.unit(5 + 2/12, "feet"),
  45093. name: "Front",
  45094. image: {
  45095. source: "./media/characters/lumi/front.svg",
  45096. extra: 1328/1268,
  45097. bottom: 103/1431
  45098. }
  45099. },
  45100. back: {
  45101. height: math.unit(5 + 2/12, "feet"),
  45102. name: "Back",
  45103. image: {
  45104. source: "./media/characters/lumi/back.svg",
  45105. extra: 1381/1327,
  45106. bottom: 43/1424
  45107. }
  45108. },
  45109. },
  45110. [
  45111. {
  45112. name: "Normal",
  45113. height: math.unit(5 + 2/12, "feet"),
  45114. default: true
  45115. },
  45116. ]
  45117. ))
  45118. characterMakers.push(() => makeCharacter(
  45119. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45120. {
  45121. front: {
  45122. height: math.unit(5 + 9/12, "feet"),
  45123. name: "Front",
  45124. image: {
  45125. source: "./media/characters/aliya-cotton/front.svg",
  45126. extra: 577/564,
  45127. bottom: 29/606
  45128. }
  45129. },
  45130. },
  45131. [
  45132. {
  45133. name: "Normal",
  45134. height: math.unit(5 + 9/12, "feet"),
  45135. default: true
  45136. },
  45137. ]
  45138. ))
  45139. characterMakers.push(() => makeCharacter(
  45140. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45141. {
  45142. front: {
  45143. height: math.unit(2.7, "meters"),
  45144. weight: math.unit(25000, "lb"),
  45145. name: "Front",
  45146. image: {
  45147. source: "./media/characters/noah-luxray/front.svg",
  45148. extra: 1644/825,
  45149. bottom: 339/1983
  45150. }
  45151. },
  45152. side: {
  45153. height: math.unit(2.97, "meters"),
  45154. weight: math.unit(25000, "lb"),
  45155. name: "Side",
  45156. image: {
  45157. source: "./media/characters/noah-luxray/side.svg",
  45158. extra: 1319/650,
  45159. bottom: 163/1482
  45160. }
  45161. },
  45162. dick: {
  45163. height: math.unit(7.4, "feet"),
  45164. weight: math.unit(2500, "lb"),
  45165. name: "Dick",
  45166. image: {
  45167. source: "./media/characters/noah-luxray/dick.svg"
  45168. }
  45169. },
  45170. dickAlt: {
  45171. height: math.unit(10.83, "feet"),
  45172. weight: math.unit(2500, "lb"),
  45173. name: "Dick-alt",
  45174. image: {
  45175. source: "./media/characters/noah-luxray/dick-alt.svg"
  45176. }
  45177. },
  45178. },
  45179. [
  45180. {
  45181. name: "BIG",
  45182. height: math.unit(2.7, "meters"),
  45183. default: true
  45184. },
  45185. ]
  45186. ))
  45187. characterMakers.push(() => makeCharacter(
  45188. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45189. {
  45190. standing: {
  45191. height: math.unit(183, "cm"),
  45192. weight: math.unit(68, "kg"),
  45193. name: "Standing",
  45194. image: {
  45195. source: "./media/characters/arion/standing.svg",
  45196. extra: 1869/1807,
  45197. bottom: 93/1962
  45198. }
  45199. },
  45200. reclining: {
  45201. height: math.unit(70.5, "cm"),
  45202. weight: math.unit(68, "lb"),
  45203. name: "Reclining",
  45204. image: {
  45205. source: "./media/characters/arion/reclining.svg",
  45206. extra: 937/870,
  45207. bottom: 63/1000
  45208. }
  45209. },
  45210. },
  45211. [
  45212. {
  45213. name: "Colossus Size, Low",
  45214. height: math.unit(33, "meters"),
  45215. default: true
  45216. },
  45217. {
  45218. name: "Colossus Size, Mid",
  45219. height: math.unit(52, "meters")
  45220. },
  45221. {
  45222. name: "Colossus Size, High",
  45223. height: math.unit(60, "meters")
  45224. },
  45225. {
  45226. name: "Titan Size, Low",
  45227. height: math.unit(91, "meters"),
  45228. },
  45229. {
  45230. name: "Titan Size, Mid",
  45231. height: math.unit(122, "meters")
  45232. },
  45233. {
  45234. name: "Titan Size, High",
  45235. height: math.unit(162, "meters")
  45236. },
  45237. ]
  45238. ))
  45239. characterMakers.push(() => makeCharacter(
  45240. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45241. {
  45242. front: {
  45243. height: math.unit(53, "meters"),
  45244. name: "Front",
  45245. image: {
  45246. source: "./media/characters/stellar-marbey/front.svg",
  45247. extra: 1913/1805,
  45248. bottom: 92/2005
  45249. }
  45250. },
  45251. back: {
  45252. height: math.unit(53, "meters"),
  45253. name: "Back",
  45254. image: {
  45255. source: "./media/characters/stellar-marbey/back.svg",
  45256. extra: 1960/1851,
  45257. bottom: 28/1988
  45258. }
  45259. },
  45260. mouth: {
  45261. height: math.unit(3.5, "meters"),
  45262. name: "Mouth",
  45263. image: {
  45264. source: "./media/characters/stellar-marbey/mouth.svg"
  45265. }
  45266. },
  45267. },
  45268. [
  45269. {
  45270. name: "Macro",
  45271. height: math.unit(53, "meters"),
  45272. default: true
  45273. },
  45274. ]
  45275. ))
  45276. characterMakers.push(() => makeCharacter(
  45277. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45278. {
  45279. front: {
  45280. height: math.unit(8 + 1/12, "feet"),
  45281. weight: math.unit(233, "lb"),
  45282. name: "Front",
  45283. image: {
  45284. source: "./media/characters/matsu/front.svg",
  45285. extra: 832/772,
  45286. bottom: 40/872
  45287. }
  45288. },
  45289. back: {
  45290. height: math.unit(8 + 1/12, "feet"),
  45291. weight: math.unit(233, "lb"),
  45292. name: "Back",
  45293. image: {
  45294. source: "./media/characters/matsu/back.svg",
  45295. extra: 839/780,
  45296. bottom: 47/886
  45297. }
  45298. },
  45299. },
  45300. [
  45301. {
  45302. name: "Normal",
  45303. height: math.unit(8 + 1/12, "feet"),
  45304. default: true
  45305. },
  45306. ]
  45307. ))
  45308. characterMakers.push(() => makeCharacter(
  45309. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45310. {
  45311. front: {
  45312. height: math.unit(4, "feet"),
  45313. weight: math.unit(148, "lb"),
  45314. name: "Front",
  45315. image: {
  45316. source: "./media/characters/thiz/front.svg",
  45317. extra: 1913/1748,
  45318. bottom: 62/1975
  45319. }
  45320. },
  45321. },
  45322. [
  45323. {
  45324. name: "Normal",
  45325. height: math.unit(4, "feet"),
  45326. default: true
  45327. },
  45328. ]
  45329. ))
  45330. characterMakers.push(() => makeCharacter(
  45331. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45332. {
  45333. front: {
  45334. height: math.unit(7 + 6/12, "feet"),
  45335. weight: math.unit(267, "lb"),
  45336. name: "Front",
  45337. image: {
  45338. source: "./media/characters/marcel/front.svg",
  45339. extra: 1221/1096,
  45340. bottom: 76/1297
  45341. }
  45342. },
  45343. },
  45344. [
  45345. {
  45346. name: "Normal",
  45347. height: math.unit(7 + 6/12, "feet"),
  45348. default: true
  45349. },
  45350. ]
  45351. ))
  45352. characterMakers.push(() => makeCharacter(
  45353. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45354. {
  45355. side: {
  45356. height: math.unit(42, "meters"),
  45357. name: "Side",
  45358. image: {
  45359. source: "./media/characters/flake/side.svg",
  45360. extra: 1525/1306,
  45361. bottom: 209/1734
  45362. }
  45363. },
  45364. },
  45365. [
  45366. {
  45367. name: "Normal",
  45368. height: math.unit(42, "meters"),
  45369. default: true
  45370. },
  45371. ]
  45372. ))
  45373. characterMakers.push(() => makeCharacter(
  45374. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45375. {
  45376. dressed: {
  45377. height: math.unit(6 + 4/12, "feet"),
  45378. weight: math.unit(520, "lb"),
  45379. name: "Dressed",
  45380. image: {
  45381. source: "./media/characters/someonne/dressed.svg",
  45382. extra: 1020/1010,
  45383. bottom: 178/1198
  45384. }
  45385. },
  45386. undressed: {
  45387. height: math.unit(6 + 4/12, "feet"),
  45388. weight: math.unit(520, "lb"),
  45389. name: "Undressed",
  45390. image: {
  45391. source: "./media/characters/someonne/undressed.svg",
  45392. extra: 1019/1014,
  45393. bottom: 169/1188
  45394. }
  45395. },
  45396. },
  45397. [
  45398. {
  45399. name: "Normal",
  45400. height: math.unit(6 + 4/12, "feet"),
  45401. default: true
  45402. },
  45403. ]
  45404. ))
  45405. characterMakers.push(() => makeCharacter(
  45406. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45407. {
  45408. front: {
  45409. height: math.unit(3, "feet"),
  45410. weight: math.unit(30, "lb"),
  45411. name: "Front",
  45412. image: {
  45413. source: "./media/characters/till/front.svg",
  45414. extra: 892/823,
  45415. bottom: 55/947
  45416. }
  45417. },
  45418. },
  45419. [
  45420. {
  45421. name: "Normal",
  45422. height: math.unit(3, "feet"),
  45423. default: true
  45424. },
  45425. ]
  45426. ))
  45427. characterMakers.push(() => makeCharacter(
  45428. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45429. {
  45430. front: {
  45431. height: math.unit(9 + 8/12, "feet"),
  45432. weight: math.unit(800, "lb"),
  45433. name: "Front",
  45434. image: {
  45435. source: "./media/characters/sydney-heki/front.svg",
  45436. extra: 1360/1300,
  45437. bottom: 22/1382
  45438. }
  45439. },
  45440. back: {
  45441. height: math.unit(9 + 8/12, "feet"),
  45442. weight: math.unit(800, "lb"),
  45443. name: "Back",
  45444. image: {
  45445. source: "./media/characters/sydney-heki/back.svg",
  45446. extra: 1356/1293,
  45447. bottom: 12/1368
  45448. }
  45449. },
  45450. frontDressed: {
  45451. height: math.unit(9 + 8/12, "feet"),
  45452. weight: math.unit(800, "lb"),
  45453. name: "Front-dressed",
  45454. image: {
  45455. source: "./media/characters/sydney-heki/front-dressed.svg",
  45456. extra: 1360/1300,
  45457. bottom: 22/1382
  45458. }
  45459. },
  45460. },
  45461. [
  45462. {
  45463. name: "Normal",
  45464. height: math.unit(9 + 8/12, "feet"),
  45465. default: true
  45466. },
  45467. {
  45468. name: "Macro",
  45469. height: math.unit(500, "feet")
  45470. },
  45471. {
  45472. name: "Megamacro",
  45473. height: math.unit(3.6, "miles")
  45474. },
  45475. ]
  45476. ))
  45477. characterMakers.push(() => makeCharacter(
  45478. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45479. {
  45480. front: {
  45481. height: math.unit(200, "cm"),
  45482. weight: math.unit(250, "lb"),
  45483. name: "Front",
  45484. image: {
  45485. source: "./media/characters/fowler-karlsson/front.svg",
  45486. extra: 897/845,
  45487. bottom: 123/1020
  45488. }
  45489. },
  45490. back: {
  45491. height: math.unit(200, "cm"),
  45492. weight: math.unit(250, "lb"),
  45493. name: "Back",
  45494. image: {
  45495. source: "./media/characters/fowler-karlsson/back.svg",
  45496. extra: 999/944,
  45497. bottom: 26/1025
  45498. }
  45499. },
  45500. dick: {
  45501. height: math.unit(1.92, "feet"),
  45502. weight: math.unit(150, "lb"),
  45503. name: "Dick",
  45504. image: {
  45505. source: "./media/characters/fowler-karlsson/dick.svg"
  45506. }
  45507. },
  45508. },
  45509. [
  45510. {
  45511. name: "Normal",
  45512. height: math.unit(200, "cm"),
  45513. default: true
  45514. },
  45515. {
  45516. name: "Smaller Macro",
  45517. height: math.unit(90, "m")
  45518. },
  45519. {
  45520. name: "Macro",
  45521. height: math.unit(150, "m")
  45522. },
  45523. {
  45524. name: "Bigger Macro",
  45525. height: math.unit(300, "m")
  45526. },
  45527. ]
  45528. ))
  45529. characterMakers.push(() => makeCharacter(
  45530. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45531. {
  45532. side: {
  45533. height: math.unit(8 + 2/12, "feet"),
  45534. weight: math.unit(1, "tonne"),
  45535. name: "Side",
  45536. image: {
  45537. source: "./media/characters/rylide/side.svg",
  45538. extra: 1318/1034,
  45539. bottom: 106/1424
  45540. }
  45541. },
  45542. sitting: {
  45543. height: math.unit(303, "cm"),
  45544. weight: math.unit(1, "tonne"),
  45545. name: "Sitting",
  45546. image: {
  45547. source: "./media/characters/rylide/sitting.svg",
  45548. extra: 1303/1103,
  45549. bottom: 36/1339
  45550. }
  45551. },
  45552. },
  45553. [
  45554. {
  45555. name: "Normal",
  45556. height: math.unit(8 + 2/12, "feet"),
  45557. default: true
  45558. },
  45559. ]
  45560. ))
  45561. characterMakers.push(() => makeCharacter(
  45562. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45563. {
  45564. front: {
  45565. height: math.unit(5 + 10/12, "feet"),
  45566. weight: math.unit(160, "lb"),
  45567. name: "Front",
  45568. image: {
  45569. source: "./media/characters/pudask/front.svg",
  45570. extra: 1616/1590,
  45571. bottom: 161/1777
  45572. }
  45573. },
  45574. },
  45575. [
  45576. {
  45577. name: "Ferret Height",
  45578. height: math.unit(2 + 5/12, "feet")
  45579. },
  45580. {
  45581. name: "Canon Height",
  45582. height: math.unit(5 + 10/12, "feet"),
  45583. default: true
  45584. },
  45585. ]
  45586. ))
  45587. characterMakers.push(() => makeCharacter(
  45588. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45589. {
  45590. front: {
  45591. height: math.unit(3 + 6/12, "feet"),
  45592. weight: math.unit(60, "lb"),
  45593. name: "Front",
  45594. image: {
  45595. source: "./media/characters/ramita/front.svg",
  45596. extra: 1402/1232,
  45597. bottom: 62/1464
  45598. }
  45599. },
  45600. dressed: {
  45601. height: math.unit(3 + 6/12, "feet"),
  45602. weight: math.unit(60, "lb"),
  45603. name: "Dressed",
  45604. image: {
  45605. source: "./media/characters/ramita/dressed.svg",
  45606. extra: 1534/1249,
  45607. bottom: 50/1584
  45608. }
  45609. },
  45610. },
  45611. [
  45612. {
  45613. name: "Normal",
  45614. height: math.unit(3 + 6/12, "feet"),
  45615. default: true
  45616. },
  45617. ]
  45618. ))
  45619. characterMakers.push(() => makeCharacter(
  45620. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45621. {
  45622. front: {
  45623. height: math.unit(8, "feet"),
  45624. name: "Front",
  45625. image: {
  45626. source: "./media/characters/ark/front.svg",
  45627. extra: 772/693,
  45628. bottom: 45/817
  45629. }
  45630. },
  45631. },
  45632. [
  45633. {
  45634. name: "Normal",
  45635. height: math.unit(8, "feet"),
  45636. default: true
  45637. },
  45638. ]
  45639. ))
  45640. characterMakers.push(() => makeCharacter(
  45641. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45642. {
  45643. front: {
  45644. height: math.unit(6, "feet"),
  45645. weight: math.unit(250, "lb"),
  45646. volume: math.unit(5/8, "gallons"),
  45647. name: "Front",
  45648. image: {
  45649. source: "./media/characters/ludwig-horn/front.svg",
  45650. extra: 1782/1635,
  45651. bottom: 96/1878
  45652. }
  45653. },
  45654. back: {
  45655. height: math.unit(6, "feet"),
  45656. weight: math.unit(250, "lb"),
  45657. volume: math.unit(5/8, "gallons"),
  45658. name: "Back",
  45659. image: {
  45660. source: "./media/characters/ludwig-horn/back.svg",
  45661. extra: 1874/1729,
  45662. bottom: 27/1901
  45663. }
  45664. },
  45665. dick: {
  45666. height: math.unit(1.05, "feet"),
  45667. weight: math.unit(15, "lb"),
  45668. volume: math.unit(5/8, "gallons"),
  45669. name: "Dick",
  45670. image: {
  45671. source: "./media/characters/ludwig-horn/dick.svg"
  45672. }
  45673. },
  45674. },
  45675. [
  45676. {
  45677. name: "Small",
  45678. height: math.unit(6, "feet")
  45679. },
  45680. {
  45681. name: "Typical",
  45682. height: math.unit(12, "feet"),
  45683. default: true
  45684. },
  45685. {
  45686. name: "Building",
  45687. height: math.unit(80, "feet")
  45688. },
  45689. {
  45690. name: "Town",
  45691. height: math.unit(800, "feet")
  45692. },
  45693. {
  45694. name: "Kingdom",
  45695. height: math.unit(80000, "feet")
  45696. },
  45697. {
  45698. name: "Planet",
  45699. height: math.unit(8000000, "feet")
  45700. },
  45701. {
  45702. name: "Universe",
  45703. height: math.unit(8000000000, "feet")
  45704. },
  45705. {
  45706. name: "Transcended",
  45707. height: math.unit(8e27, "feet")
  45708. },
  45709. ]
  45710. ))
  45711. characterMakers.push(() => makeCharacter(
  45712. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45713. {
  45714. front: {
  45715. height: math.unit(5, "feet"),
  45716. weight: math.unit(50, "kg"),
  45717. name: "Front",
  45718. image: {
  45719. source: "./media/characters/biot-avery/front.svg",
  45720. extra: 1295/1232,
  45721. bottom: 86/1381
  45722. }
  45723. },
  45724. },
  45725. [
  45726. {
  45727. name: "Normal",
  45728. height: math.unit(5, "feet"),
  45729. default: true
  45730. },
  45731. ]
  45732. ))
  45733. characterMakers.push(() => makeCharacter(
  45734. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45735. {
  45736. front: {
  45737. height: math.unit(6, "feet"),
  45738. name: "Front",
  45739. image: {
  45740. source: "./media/characters/kitsune-kiro/front.svg",
  45741. extra: 1270/1158,
  45742. bottom: 42/1312
  45743. }
  45744. },
  45745. frontAlt: {
  45746. height: math.unit(6, "feet"),
  45747. name: "Front-alt",
  45748. image: {
  45749. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45750. extra: 1130/1081,
  45751. bottom: 36/1166
  45752. }
  45753. },
  45754. },
  45755. [
  45756. {
  45757. name: "Smol",
  45758. height: math.unit(3, "feet")
  45759. },
  45760. {
  45761. name: "Normal",
  45762. height: math.unit(6, "feet"),
  45763. default: true
  45764. },
  45765. ]
  45766. ))
  45767. characterMakers.push(() => makeCharacter(
  45768. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45769. {
  45770. front: {
  45771. height: math.unit(6, "feet"),
  45772. weight: math.unit(125, "lb"),
  45773. name: "Front",
  45774. image: {
  45775. source: "./media/characters/jack-thatcher/front.svg",
  45776. extra: 1474/1370,
  45777. bottom: 26/1500
  45778. }
  45779. },
  45780. back: {
  45781. height: math.unit(6, "feet"),
  45782. weight: math.unit(125, "lb"),
  45783. name: "Back",
  45784. image: {
  45785. source: "./media/characters/jack-thatcher/back.svg",
  45786. extra: 1489/1384,
  45787. bottom: 18/1507
  45788. }
  45789. },
  45790. },
  45791. [
  45792. {
  45793. name: "Normal",
  45794. height: math.unit(6, "feet"),
  45795. default: true
  45796. },
  45797. {
  45798. name: "Macro",
  45799. height: math.unit(75, "feet")
  45800. },
  45801. {
  45802. name: "Macro-er",
  45803. height: math.unit(250, "feet")
  45804. },
  45805. ]
  45806. ))
  45807. characterMakers.push(() => makeCharacter(
  45808. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45809. {
  45810. front: {
  45811. height: math.unit(7, "feet"),
  45812. weight: math.unit(110, "kg"),
  45813. name: "Front",
  45814. image: {
  45815. source: "./media/characters/max-hyper/front.svg",
  45816. extra: 1969/1881,
  45817. bottom: 49/2018
  45818. }
  45819. },
  45820. },
  45821. [
  45822. {
  45823. name: "Normal",
  45824. height: math.unit(7, "feet"),
  45825. default: true
  45826. },
  45827. ]
  45828. ))
  45829. characterMakers.push(() => makeCharacter(
  45830. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45831. {
  45832. front: {
  45833. height: math.unit(5 + 5/12, "feet"),
  45834. weight: math.unit(160, "lb"),
  45835. name: "Front",
  45836. image: {
  45837. source: "./media/characters/spook/front.svg",
  45838. extra: 794/791,
  45839. bottom: 54/848
  45840. }
  45841. },
  45842. back: {
  45843. height: math.unit(5 + 5/12, "feet"),
  45844. weight: math.unit(160, "lb"),
  45845. name: "Back",
  45846. image: {
  45847. source: "./media/characters/spook/back.svg",
  45848. extra: 812/798,
  45849. bottom: 32/844
  45850. }
  45851. },
  45852. },
  45853. [
  45854. {
  45855. name: "Normal",
  45856. height: math.unit(5 + 5/12, "feet"),
  45857. default: true
  45858. },
  45859. ]
  45860. ))
  45861. characterMakers.push(() => makeCharacter(
  45862. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45863. {
  45864. front: {
  45865. height: math.unit(18, "feet"),
  45866. name: "Front",
  45867. image: {
  45868. source: "./media/characters/xeaduulix/front.svg",
  45869. extra: 1380/1166,
  45870. bottom: 110/1490
  45871. }
  45872. },
  45873. back: {
  45874. height: math.unit(18, "feet"),
  45875. name: "Back",
  45876. image: {
  45877. source: "./media/characters/xeaduulix/back.svg",
  45878. extra: 1592/1170,
  45879. bottom: 128/1720
  45880. }
  45881. },
  45882. frontNsfw: {
  45883. height: math.unit(18, "feet"),
  45884. name: "Front (NSFW)",
  45885. image: {
  45886. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45887. extra: 1380/1166,
  45888. bottom: 110/1490
  45889. }
  45890. },
  45891. backNsfw: {
  45892. height: math.unit(18, "feet"),
  45893. name: "Back (NSFW)",
  45894. image: {
  45895. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45896. extra: 1592/1170,
  45897. bottom: 128/1720
  45898. }
  45899. },
  45900. },
  45901. [
  45902. {
  45903. name: "Normal",
  45904. height: math.unit(18, "feet"),
  45905. default: true
  45906. },
  45907. ]
  45908. ))
  45909. characterMakers.push(() => makeCharacter(
  45910. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45911. {
  45912. spreadWings: {
  45913. height: math.unit(20, "feet"),
  45914. name: "Spread Wings",
  45915. image: {
  45916. source: "./media/characters/fledge/spread-wings.svg",
  45917. extra: 693/635,
  45918. bottom: 26/719
  45919. }
  45920. },
  45921. front: {
  45922. height: math.unit(20, "feet"),
  45923. name: "Front",
  45924. image: {
  45925. source: "./media/characters/fledge/front.svg",
  45926. extra: 684/637,
  45927. bottom: 18/702
  45928. }
  45929. },
  45930. frontAlt: {
  45931. height: math.unit(20, "feet"),
  45932. name: "Front (Alt)",
  45933. image: {
  45934. source: "./media/characters/fledge/front-alt.svg",
  45935. extra: 708/664,
  45936. bottom: 13/721
  45937. }
  45938. },
  45939. back: {
  45940. height: math.unit(20, "feet"),
  45941. name: "Back",
  45942. image: {
  45943. source: "./media/characters/fledge/back.svg",
  45944. extra: 718/634,
  45945. bottom: 22/740
  45946. }
  45947. },
  45948. head: {
  45949. height: math.unit(5.55, "feet"),
  45950. name: "Head",
  45951. image: {
  45952. source: "./media/characters/fledge/head.svg"
  45953. }
  45954. },
  45955. headAlt: {
  45956. height: math.unit(5.1, "feet"),
  45957. name: "Head (Alt)",
  45958. image: {
  45959. source: "./media/characters/fledge/head-alt.svg"
  45960. }
  45961. },
  45962. },
  45963. [
  45964. {
  45965. name: "Small",
  45966. height: math.unit(6 + 2/12, "feet")
  45967. },
  45968. {
  45969. name: "Big",
  45970. height: math.unit(20, "feet"),
  45971. default: true
  45972. },
  45973. {
  45974. name: "Giant",
  45975. height: math.unit(100, "feet")
  45976. },
  45977. {
  45978. name: "Macro",
  45979. height: math.unit(200, "feet")
  45980. },
  45981. ]
  45982. ))
  45983. characterMakers.push(() => makeCharacter(
  45984. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45985. {
  45986. front: {
  45987. height: math.unit(1, "meter"),
  45988. name: "Front",
  45989. image: {
  45990. source: "./media/characters/atlas-morenai/front.svg",
  45991. extra: 1275/1043,
  45992. bottom: 19/1294
  45993. }
  45994. },
  45995. back: {
  45996. height: math.unit(1, "meter"),
  45997. name: "Back",
  45998. image: {
  45999. source: "./media/characters/atlas-morenai/back.svg",
  46000. extra: 1141/1001,
  46001. bottom: 25/1166
  46002. }
  46003. },
  46004. },
  46005. [
  46006. {
  46007. name: "Normal",
  46008. height: math.unit(1, "meter"),
  46009. default: true
  46010. },
  46011. {
  46012. name: "Magic-Infused",
  46013. height: math.unit(5, "meters")
  46014. },
  46015. ]
  46016. ))
  46017. characterMakers.push(() => makeCharacter(
  46018. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46019. {
  46020. front: {
  46021. height: math.unit(5, "meters"),
  46022. name: "Front",
  46023. image: {
  46024. source: "./media/characters/cintia/front.svg",
  46025. extra: 1312/1228,
  46026. bottom: 38/1350
  46027. }
  46028. },
  46029. back: {
  46030. height: math.unit(5, "meters"),
  46031. name: "Back",
  46032. image: {
  46033. source: "./media/characters/cintia/back.svg",
  46034. extra: 1260/1166,
  46035. bottom: 98/1358
  46036. }
  46037. },
  46038. frontDick: {
  46039. height: math.unit(5, "meters"),
  46040. name: "Front (Dick)",
  46041. image: {
  46042. source: "./media/characters/cintia/front-dick.svg",
  46043. extra: 1312/1228,
  46044. bottom: 38/1350
  46045. }
  46046. },
  46047. backDick: {
  46048. height: math.unit(5, "meters"),
  46049. name: "Back (Dick)",
  46050. image: {
  46051. source: "./media/characters/cintia/back-dick.svg",
  46052. extra: 1260/1166,
  46053. bottom: 98/1358
  46054. }
  46055. },
  46056. bust: {
  46057. height: math.unit(1.97, "meters"),
  46058. name: "Bust",
  46059. image: {
  46060. source: "./media/characters/cintia/bust.svg",
  46061. extra: 617/565,
  46062. bottom: 0/617
  46063. }
  46064. },
  46065. },
  46066. [
  46067. {
  46068. name: "Normal",
  46069. height: math.unit(5, "meters"),
  46070. default: true
  46071. },
  46072. ]
  46073. ))
  46074. characterMakers.push(() => makeCharacter(
  46075. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46076. {
  46077. side: {
  46078. height: math.unit(100, "feet"),
  46079. name: "Side",
  46080. image: {
  46081. source: "./media/characters/denora/side.svg",
  46082. extra: 875/803,
  46083. bottom: 9/884
  46084. }
  46085. },
  46086. },
  46087. [
  46088. {
  46089. name: "Standard",
  46090. height: math.unit(100, "feet"),
  46091. default: true
  46092. },
  46093. {
  46094. name: "Grand",
  46095. height: math.unit(1000, "feet")
  46096. },
  46097. {
  46098. name: "Conquering",
  46099. height: math.unit(10000, "feet")
  46100. },
  46101. ]
  46102. ))
  46103. characterMakers.push(() => makeCharacter(
  46104. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46105. {
  46106. dressed: {
  46107. height: math.unit(8 + 5/12, "feet"),
  46108. weight: math.unit(700, "lb"),
  46109. name: "Dressed",
  46110. image: {
  46111. source: "./media/characters/kiva/dressed.svg",
  46112. extra: 1102/1055,
  46113. bottom: 60/1162
  46114. }
  46115. },
  46116. nude: {
  46117. height: math.unit(8 + 5/12, "feet"),
  46118. weight: math.unit(700, "lb"),
  46119. name: "Nude",
  46120. image: {
  46121. source: "./media/characters/kiva/nude.svg",
  46122. extra: 1102/1055,
  46123. bottom: 60/1162
  46124. }
  46125. },
  46126. },
  46127. [
  46128. {
  46129. name: "Base Height",
  46130. height: math.unit(8 + 5/12, "feet"),
  46131. default: true
  46132. },
  46133. {
  46134. name: "Macro",
  46135. height: math.unit(100, "feet")
  46136. },
  46137. {
  46138. name: "Max",
  46139. height: math.unit(3280, "feet")
  46140. },
  46141. ]
  46142. ))
  46143. characterMakers.push(() => makeCharacter(
  46144. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46145. {
  46146. front: {
  46147. height: math.unit(6 + 8/12, "feet"),
  46148. weight: math.unit(250, "lb"),
  46149. name: "Front",
  46150. image: {
  46151. source: "./media/characters/ztragon/front.svg",
  46152. extra: 1825/1684,
  46153. bottom: 98/1923
  46154. }
  46155. },
  46156. },
  46157. [
  46158. {
  46159. name: "Normal",
  46160. height: math.unit(6 + 8/12, "feet"),
  46161. default: true
  46162. },
  46163. {
  46164. name: "Macro",
  46165. height: math.unit(80, "feet")
  46166. },
  46167. ]
  46168. ))
  46169. characterMakers.push(() => makeCharacter(
  46170. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46171. {
  46172. front: {
  46173. height: math.unit(10.4, "feet"),
  46174. weight: math.unit(2, "tons"),
  46175. name: "Front",
  46176. image: {
  46177. source: "./media/characters/yesenia/front.svg",
  46178. extra: 1479/1474,
  46179. bottom: 233/1712
  46180. }
  46181. },
  46182. },
  46183. [
  46184. {
  46185. name: "Normal",
  46186. height: math.unit(10.4, "feet"),
  46187. default: true
  46188. },
  46189. ]
  46190. ))
  46191. characterMakers.push(() => makeCharacter(
  46192. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46193. {
  46194. normal: {
  46195. height: math.unit(6 + 1/12, "feet"),
  46196. weight: math.unit(180, "lb"),
  46197. name: "Normal",
  46198. image: {
  46199. source: "./media/characters/leanne-lycheborne/normal.svg",
  46200. extra: 1748/1660,
  46201. bottom: 98/1846
  46202. }
  46203. },
  46204. were: {
  46205. height: math.unit(12, "feet"),
  46206. weight: math.unit(1600, "lb"),
  46207. name: "Were",
  46208. image: {
  46209. source: "./media/characters/leanne-lycheborne/were.svg",
  46210. extra: 1485/1432,
  46211. bottom: 66/1551
  46212. }
  46213. },
  46214. },
  46215. [
  46216. {
  46217. name: "Normal",
  46218. height: math.unit(6 + 1/12, "feet"),
  46219. default: true
  46220. },
  46221. ]
  46222. ))
  46223. characterMakers.push(() => makeCharacter(
  46224. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46225. {
  46226. side: {
  46227. height: math.unit(13, "feet"),
  46228. name: "Side",
  46229. image: {
  46230. source: "./media/characters/kira-tyler/side.svg",
  46231. extra: 693/393,
  46232. bottom: 58/751
  46233. }
  46234. },
  46235. },
  46236. [
  46237. {
  46238. name: "Normal",
  46239. height: math.unit(13, "feet"),
  46240. default: true
  46241. },
  46242. ]
  46243. ))
  46244. characterMakers.push(() => makeCharacter(
  46245. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46246. {
  46247. front: {
  46248. height: math.unit(10.3, "feet"),
  46249. weight: math.unit(150, "lb"),
  46250. name: "Front",
  46251. image: {
  46252. source: "./media/characters/blaze/front.svg",
  46253. extra: 1378/1286,
  46254. bottom: 172/1550
  46255. }
  46256. },
  46257. },
  46258. [
  46259. {
  46260. name: "Normal",
  46261. height: math.unit(10.3, "feet"),
  46262. default: true
  46263. },
  46264. ]
  46265. ))
  46266. characterMakers.push(() => makeCharacter(
  46267. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46268. {
  46269. side: {
  46270. height: math.unit(2, "meters"),
  46271. weight: math.unit(400, "kg"),
  46272. name: "Side",
  46273. image: {
  46274. source: "./media/characters/anu/side.svg",
  46275. extra: 506/394,
  46276. bottom: 18/524
  46277. }
  46278. },
  46279. },
  46280. [
  46281. {
  46282. name: "Humanoid",
  46283. height: math.unit(2, "meters")
  46284. },
  46285. {
  46286. name: "Normal",
  46287. height: math.unit(5, "meters"),
  46288. default: true
  46289. },
  46290. ]
  46291. ))
  46292. characterMakers.push(() => makeCharacter(
  46293. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46294. {
  46295. front: {
  46296. height: math.unit(5 + 5/12, "feet"),
  46297. weight: math.unit(170, "lb"),
  46298. name: "Front",
  46299. image: {
  46300. source: "./media/characters/synx-the-lynx/front.svg",
  46301. extra: 1893/1745,
  46302. bottom: 17/1910
  46303. }
  46304. },
  46305. side: {
  46306. height: math.unit(5 + 5/12, "feet"),
  46307. weight: math.unit(170, "lb"),
  46308. name: "Side",
  46309. image: {
  46310. source: "./media/characters/synx-the-lynx/side.svg",
  46311. extra: 1884/1740,
  46312. bottom: 39/1923
  46313. }
  46314. },
  46315. back: {
  46316. height: math.unit(5 + 5/12, "feet"),
  46317. weight: math.unit(170, "lb"),
  46318. name: "Back",
  46319. image: {
  46320. source: "./media/characters/synx-the-lynx/back.svg",
  46321. extra: 1903/1755,
  46322. bottom: 14/1917
  46323. }
  46324. },
  46325. },
  46326. [
  46327. {
  46328. name: "Normal",
  46329. height: math.unit(5 + 5/12, "feet"),
  46330. default: true
  46331. },
  46332. ]
  46333. ))
  46334. characterMakers.push(() => makeCharacter(
  46335. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46336. {
  46337. back: {
  46338. height: math.unit(15, "feet"),
  46339. name: "Back",
  46340. image: {
  46341. source: "./media/characters/nadezda-fex/back.svg",
  46342. extra: 1695/1481,
  46343. bottom: 25/1720
  46344. }
  46345. },
  46346. },
  46347. [
  46348. {
  46349. name: "Normal",
  46350. height: math.unit(15, "feet"),
  46351. default: true
  46352. },
  46353. {
  46354. name: "Macro",
  46355. height: math.unit(2.5, "miles")
  46356. },
  46357. {
  46358. name: "Goddess",
  46359. height: math.unit(2, "multiverses")
  46360. },
  46361. ]
  46362. ))
  46363. characterMakers.push(() => makeCharacter(
  46364. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46365. {
  46366. front: {
  46367. height: math.unit(216, "cm"),
  46368. name: "Front",
  46369. image: {
  46370. source: "./media/characters/lev/front.svg",
  46371. extra: 1728/1670,
  46372. bottom: 82/1810
  46373. }
  46374. },
  46375. back: {
  46376. height: math.unit(216, "cm"),
  46377. name: "Back",
  46378. image: {
  46379. source: "./media/characters/lev/back.svg",
  46380. extra: 1738/1675,
  46381. bottom: 24/1762
  46382. }
  46383. },
  46384. dressed: {
  46385. height: math.unit(216, "cm"),
  46386. name: "Dressed",
  46387. image: {
  46388. source: "./media/characters/lev/dressed.svg",
  46389. extra: 1397/1351,
  46390. bottom: 73/1470
  46391. }
  46392. },
  46393. head: {
  46394. height: math.unit(0.51, "meter"),
  46395. name: "Head",
  46396. image: {
  46397. source: "./media/characters/lev/head.svg"
  46398. }
  46399. },
  46400. },
  46401. [
  46402. {
  46403. name: "Normal",
  46404. height: math.unit(216, "cm"),
  46405. default: true
  46406. },
  46407. {
  46408. name: "Relatively Macro",
  46409. height: math.unit(80, "meters")
  46410. },
  46411. {
  46412. name: "Megamacro",
  46413. height: math.unit(21600, "meters")
  46414. },
  46415. {
  46416. name: "Megamacro+",
  46417. height: math.unit(64800, "meters")
  46418. },
  46419. ]
  46420. ))
  46421. characterMakers.push(() => makeCharacter(
  46422. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46423. {
  46424. front: {
  46425. height: math.unit(2, "meters"),
  46426. weight: math.unit(80, "kg"),
  46427. name: "Front",
  46428. image: {
  46429. source: "./media/characters/moka/front.svg",
  46430. extra: 1337/1255,
  46431. bottom: 58/1395
  46432. }
  46433. },
  46434. },
  46435. [
  46436. {
  46437. name: "Micro",
  46438. height: math.unit(15, "cm")
  46439. },
  46440. {
  46441. name: "Normal",
  46442. height: math.unit(2, "meters"),
  46443. default: true
  46444. },
  46445. {
  46446. name: "Macro",
  46447. height: math.unit(20, "meters"),
  46448. },
  46449. ]
  46450. ))
  46451. characterMakers.push(() => makeCharacter(
  46452. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46453. {
  46454. front: {
  46455. height: math.unit(9, "feet"),
  46456. weight: math.unit(240, "lb"),
  46457. name: "Front",
  46458. image: {
  46459. source: "./media/characters/kuzco/front.svg",
  46460. extra: 1593/1487,
  46461. bottom: 32/1625
  46462. }
  46463. },
  46464. side: {
  46465. height: math.unit(9, "feet"),
  46466. weight: math.unit(240, "lb"),
  46467. name: "Side",
  46468. image: {
  46469. source: "./media/characters/kuzco/side.svg",
  46470. extra: 1575/1485,
  46471. bottom: 30/1605
  46472. }
  46473. },
  46474. back: {
  46475. height: math.unit(9, "feet"),
  46476. weight: math.unit(240, "lb"),
  46477. name: "Back",
  46478. image: {
  46479. source: "./media/characters/kuzco/back.svg",
  46480. extra: 1603/1514,
  46481. bottom: 14/1617
  46482. }
  46483. },
  46484. },
  46485. [
  46486. {
  46487. name: "Normal",
  46488. height: math.unit(9, "feet"),
  46489. default: true
  46490. },
  46491. ]
  46492. ))
  46493. characterMakers.push(() => makeCharacter(
  46494. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46495. {
  46496. side: {
  46497. height: math.unit(2, "meters"),
  46498. weight: math.unit(300, "kg"),
  46499. name: "Side",
  46500. image: {
  46501. source: "./media/characters/ceruleus/side.svg",
  46502. extra: 1068/974,
  46503. bottom: 126/1194
  46504. }
  46505. },
  46506. },
  46507. [
  46508. {
  46509. name: "Normal",
  46510. height: math.unit(16, "meters"),
  46511. default: true
  46512. },
  46513. ]
  46514. ))
  46515. characterMakers.push(() => makeCharacter(
  46516. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46517. {
  46518. front: {
  46519. height: math.unit(9, "feet"),
  46520. weight: math.unit(500, "kg"),
  46521. name: "Front",
  46522. image: {
  46523. source: "./media/characters/acouya/front.svg",
  46524. extra: 1660/1473,
  46525. bottom: 28/1688
  46526. }
  46527. },
  46528. },
  46529. [
  46530. {
  46531. name: "Normal",
  46532. height: math.unit(9, "feet"),
  46533. default: true
  46534. },
  46535. ]
  46536. ))
  46537. characterMakers.push(() => makeCharacter(
  46538. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46539. {
  46540. front: {
  46541. height: math.unit(5 + 6/12, "feet"),
  46542. weight: math.unit(195, "lb"),
  46543. name: "Front",
  46544. image: {
  46545. source: "./media/characters/vant/front.svg",
  46546. extra: 1396/1320,
  46547. bottom: 20/1416
  46548. }
  46549. },
  46550. back: {
  46551. height: math.unit(5 + 6/12, "feet"),
  46552. weight: math.unit(195, "lb"),
  46553. name: "Back",
  46554. image: {
  46555. source: "./media/characters/vant/back.svg",
  46556. extra: 1396/1320,
  46557. bottom: 20/1416
  46558. }
  46559. },
  46560. maw: {
  46561. height: math.unit(0.75, "feet"),
  46562. name: "Maw",
  46563. image: {
  46564. source: "./media/characters/vant/maw.svg"
  46565. }
  46566. },
  46567. paw: {
  46568. height: math.unit(1.07, "feet"),
  46569. name: "Paw",
  46570. image: {
  46571. source: "./media/characters/vant/paw.svg"
  46572. }
  46573. },
  46574. },
  46575. [
  46576. {
  46577. name: "Micro",
  46578. height: math.unit(0.25, "inches")
  46579. },
  46580. {
  46581. name: "Normal",
  46582. height: math.unit(5 + 6/12, "feet"),
  46583. default: true
  46584. },
  46585. {
  46586. name: "Macro",
  46587. height: math.unit(75, "feet")
  46588. },
  46589. ]
  46590. ))
  46591. characterMakers.push(() => makeCharacter(
  46592. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46593. {
  46594. front: {
  46595. height: math.unit(30, "meters"),
  46596. weight: math.unit(363, "tons"),
  46597. name: "Front",
  46598. image: {
  46599. source: "./media/characters/ahra/front.svg",
  46600. extra: 1914/1814,
  46601. bottom: 46/1960
  46602. }
  46603. },
  46604. },
  46605. [
  46606. {
  46607. name: "Macro",
  46608. height: math.unit(30, "meters"),
  46609. default: true
  46610. },
  46611. ]
  46612. ))
  46613. characterMakers.push(() => makeCharacter(
  46614. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46615. {
  46616. undressed: {
  46617. height: math.unit(2, "m"),
  46618. weight: math.unit(250, "kg"),
  46619. name: "Undressed",
  46620. image: {
  46621. source: "./media/characters/coriander/undressed.svg",
  46622. extra: 1757/1606,
  46623. bottom: 107/1864
  46624. }
  46625. },
  46626. dressed: {
  46627. height: math.unit(2, "m"),
  46628. weight: math.unit(250, "kg"),
  46629. name: "Dressed",
  46630. image: {
  46631. source: "./media/characters/coriander/dressed.svg",
  46632. extra: 1757/1606,
  46633. bottom: 107/1864
  46634. }
  46635. },
  46636. },
  46637. [
  46638. {
  46639. name: "Normal",
  46640. height: math.unit(4, "meters"),
  46641. default: true
  46642. },
  46643. {
  46644. name: "XL",
  46645. height: math.unit(6, "meters")
  46646. },
  46647. {
  46648. name: "XXL",
  46649. height: math.unit(8, "meters")
  46650. },
  46651. ]
  46652. ))
  46653. characterMakers.push(() => makeCharacter(
  46654. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46655. {
  46656. front: {
  46657. height: math.unit(6, "feet"),
  46658. name: "Front",
  46659. image: {
  46660. source: "./media/characters/syrinx/front.svg",
  46661. extra: 1557/1259,
  46662. bottom: 171/1728
  46663. }
  46664. },
  46665. },
  46666. [
  46667. {
  46668. name: "Normal",
  46669. height: math.unit(6 + 3/12, "feet"),
  46670. default: true
  46671. },
  46672. ]
  46673. ))
  46674. characterMakers.push(() => makeCharacter(
  46675. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46676. {
  46677. front: {
  46678. height: math.unit(11 + 6/12, "feet"),
  46679. weight: math.unit(1.5, "tons"),
  46680. name: "Front",
  46681. image: {
  46682. source: "./media/characters/bor/front.svg",
  46683. extra: 1189/1109,
  46684. bottom: 170/1359
  46685. }
  46686. },
  46687. },
  46688. [
  46689. {
  46690. name: "Normal",
  46691. height: math.unit(11 + 6/12, "feet"),
  46692. default: true
  46693. },
  46694. {
  46695. name: "Macro",
  46696. height: math.unit(32 + 9/12, "feet")
  46697. },
  46698. ]
  46699. ))
  46700. characterMakers.push(() => makeCharacter(
  46701. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46702. {
  46703. anthro: {
  46704. height: math.unit(9, "feet"),
  46705. weight: math.unit(2076, "lb"),
  46706. name: "Anthro",
  46707. image: {
  46708. source: "./media/characters/abacus/anthro.svg",
  46709. extra: 1540/1494,
  46710. bottom: 233/1773
  46711. }
  46712. },
  46713. pigeon: {
  46714. height: math.unit(1, "feet"),
  46715. name: "Pigeon",
  46716. image: {
  46717. source: "./media/characters/abacus/pigeon.svg",
  46718. extra: 528/525,
  46719. bottom: 46/574
  46720. }
  46721. },
  46722. },
  46723. [
  46724. {
  46725. name: "Normal",
  46726. height: math.unit(9, "feet"),
  46727. default: true
  46728. },
  46729. ]
  46730. ))
  46731. characterMakers.push(() => makeCharacter(
  46732. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46733. {
  46734. side: {
  46735. height: math.unit(6, "feet"),
  46736. name: "Side",
  46737. image: {
  46738. source: "./media/characters/delkhan/side.svg",
  46739. extra: 1884/1786,
  46740. bottom: 308/2192
  46741. }
  46742. },
  46743. head: {
  46744. height: math.unit(3.38, "feet"),
  46745. name: "Head",
  46746. image: {
  46747. source: "./media/characters/delkhan/head.svg"
  46748. }
  46749. },
  46750. },
  46751. [
  46752. {
  46753. name: "Normal",
  46754. height: math.unit(72, "feet"),
  46755. default: true
  46756. },
  46757. {
  46758. name: "Giant",
  46759. height: math.unit(172, "feet")
  46760. },
  46761. ]
  46762. ))
  46763. characterMakers.push(() => makeCharacter(
  46764. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46765. {
  46766. standing: {
  46767. height: math.unit(6, "feet"),
  46768. name: "Standing",
  46769. image: {
  46770. source: "./media/characters/euchidat/standing.svg",
  46771. extra: 1612/1553,
  46772. bottom: 116/1728
  46773. }
  46774. },
  46775. leaning: {
  46776. height: math.unit(6, "feet"),
  46777. name: "Leaning",
  46778. image: {
  46779. source: "./media/characters/euchidat/leaning.svg",
  46780. extra: 1719/1674,
  46781. bottom: 27/1746
  46782. }
  46783. },
  46784. },
  46785. [
  46786. {
  46787. name: "Normal",
  46788. height: math.unit(175, "feet"),
  46789. default: true
  46790. },
  46791. {
  46792. name: "Megamacro",
  46793. height: math.unit(190, "miles")
  46794. },
  46795. {
  46796. name: "Gigamacro",
  46797. height: math.unit(190000, "miles")
  46798. },
  46799. ]
  46800. ))
  46801. characterMakers.push(() => makeCharacter(
  46802. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46803. {
  46804. front: {
  46805. height: math.unit(6, "feet"),
  46806. weight: math.unit(150, "lb"),
  46807. name: "Front",
  46808. image: {
  46809. source: "./media/characters/rebecca-stack/front.svg",
  46810. extra: 1256/1201,
  46811. bottom: 18/1274
  46812. }
  46813. },
  46814. },
  46815. [
  46816. {
  46817. name: "Normal",
  46818. height: math.unit(5 + 8/12, "feet"),
  46819. default: true
  46820. },
  46821. {
  46822. name: "Demolitionist",
  46823. height: math.unit(200, "feet")
  46824. },
  46825. {
  46826. name: "Out of Control",
  46827. height: math.unit(2, "miles")
  46828. },
  46829. {
  46830. name: "Giga",
  46831. height: math.unit(7200, "miles")
  46832. },
  46833. ]
  46834. ))
  46835. characterMakers.push(() => makeCharacter(
  46836. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46837. {
  46838. front: {
  46839. height: math.unit(6, "feet"),
  46840. weight: math.unit(150, "lb"),
  46841. name: "Front",
  46842. image: {
  46843. source: "./media/characters/jenny-cartwright/front.svg",
  46844. extra: 1384/1376,
  46845. bottom: 58/1442
  46846. }
  46847. },
  46848. },
  46849. [
  46850. {
  46851. name: "Normal",
  46852. height: math.unit(6 + 7/12, "feet"),
  46853. default: true
  46854. },
  46855. {
  46856. name: "Librarian",
  46857. height: math.unit(55, "feet")
  46858. },
  46859. {
  46860. name: "Sightseer",
  46861. height: math.unit(50, "miles")
  46862. },
  46863. {
  46864. name: "Giga",
  46865. height: math.unit(30000, "miles")
  46866. },
  46867. ]
  46868. ))
  46869. characterMakers.push(() => makeCharacter(
  46870. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46871. {
  46872. nude: {
  46873. height: math.unit(8, "feet"),
  46874. weight: math.unit(225, "lb"),
  46875. name: "Nude",
  46876. image: {
  46877. source: "./media/characters/marvy/nude.svg",
  46878. extra: 1900/1683,
  46879. bottom: 89/1989
  46880. }
  46881. },
  46882. dressed: {
  46883. height: math.unit(8, "feet"),
  46884. weight: math.unit(225, "lb"),
  46885. name: "Dressed",
  46886. image: {
  46887. source: "./media/characters/marvy/dressed.svg",
  46888. extra: 1900/1683,
  46889. bottom: 89/1989
  46890. }
  46891. },
  46892. head: {
  46893. height: math.unit(2.85, "feet"),
  46894. name: "Head",
  46895. image: {
  46896. source: "./media/characters/marvy/head.svg"
  46897. }
  46898. },
  46899. },
  46900. [
  46901. {
  46902. name: "Normal",
  46903. height: math.unit(8, "feet"),
  46904. default: true
  46905. },
  46906. ]
  46907. ))
  46908. characterMakers.push(() => makeCharacter(
  46909. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46910. {
  46911. front: {
  46912. height: math.unit(8, "feet"),
  46913. weight: math.unit(250, "lb"),
  46914. name: "Front",
  46915. image: {
  46916. source: "./media/characters/leah/front.svg",
  46917. extra: 1257/1149,
  46918. bottom: 109/1366
  46919. }
  46920. },
  46921. },
  46922. [
  46923. {
  46924. name: "Normal",
  46925. height: math.unit(8, "feet"),
  46926. default: true
  46927. },
  46928. {
  46929. name: "Minimacro",
  46930. height: math.unit(40, "feet")
  46931. },
  46932. {
  46933. name: "Macro",
  46934. height: math.unit(124, "feet")
  46935. },
  46936. {
  46937. name: "Megamacro",
  46938. height: math.unit(850, "feet")
  46939. },
  46940. ]
  46941. ))
  46942. characterMakers.push(() => makeCharacter(
  46943. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46944. {
  46945. side: {
  46946. height: math.unit(13 + 6/12, "feet"),
  46947. weight: math.unit(3200, "lb"),
  46948. name: "Side",
  46949. image: {
  46950. source: "./media/characters/alvir/side.svg",
  46951. extra: 896/589,
  46952. bottom: 26/922
  46953. }
  46954. },
  46955. },
  46956. [
  46957. {
  46958. name: "Normal",
  46959. height: math.unit(13 + 6/12, "feet"),
  46960. default: true
  46961. },
  46962. ]
  46963. ))
  46964. characterMakers.push(() => makeCharacter(
  46965. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46966. {
  46967. front: {
  46968. height: math.unit(5 + 4/12, "feet"),
  46969. weight: math.unit(236, "lb"),
  46970. name: "Front",
  46971. image: {
  46972. source: "./media/characters/zaina-khalil/front.svg",
  46973. extra: 1533/1485,
  46974. bottom: 94/1627
  46975. }
  46976. },
  46977. side: {
  46978. height: math.unit(5 + 4/12, "feet"),
  46979. weight: math.unit(236, "lb"),
  46980. name: "Side",
  46981. image: {
  46982. source: "./media/characters/zaina-khalil/side.svg",
  46983. extra: 1537/1498,
  46984. bottom: 66/1603
  46985. }
  46986. },
  46987. back: {
  46988. height: math.unit(5 + 4/12, "feet"),
  46989. weight: math.unit(236, "lb"),
  46990. name: "Back",
  46991. image: {
  46992. source: "./media/characters/zaina-khalil/back.svg",
  46993. extra: 1546/1494,
  46994. bottom: 89/1635
  46995. }
  46996. },
  46997. },
  46998. [
  46999. {
  47000. name: "Normal",
  47001. height: math.unit(5 + 4/12, "feet"),
  47002. default: true
  47003. },
  47004. ]
  47005. ))
  47006. characterMakers.push(() => makeCharacter(
  47007. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47008. {
  47009. side: {
  47010. height: math.unit(12, "feet"),
  47011. weight: math.unit(4000, "lb"),
  47012. name: "Side",
  47013. image: {
  47014. source: "./media/characters/terry/side.svg",
  47015. extra: 1518/1439,
  47016. bottom: 149/1667
  47017. }
  47018. },
  47019. },
  47020. [
  47021. {
  47022. name: "Normal",
  47023. height: math.unit(12, "feet"),
  47024. default: true
  47025. },
  47026. ]
  47027. ))
  47028. characterMakers.push(() => makeCharacter(
  47029. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47030. {
  47031. front: {
  47032. height: math.unit(12, "feet"),
  47033. weight: math.unit(1500, "lb"),
  47034. name: "Front",
  47035. image: {
  47036. source: "./media/characters/kahea/front.svg",
  47037. extra: 1722/1617,
  47038. bottom: 179/1901
  47039. }
  47040. },
  47041. },
  47042. [
  47043. {
  47044. name: "Normal",
  47045. height: math.unit(12, "feet"),
  47046. default: true
  47047. },
  47048. ]
  47049. ))
  47050. characterMakers.push(() => makeCharacter(
  47051. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47052. {
  47053. demonFront: {
  47054. height: math.unit(36, "feet"),
  47055. name: "Front",
  47056. image: {
  47057. source: "./media/characters/alex-xuria/demon-front.svg",
  47058. extra: 1705/1673,
  47059. bottom: 198/1903
  47060. },
  47061. form: "demon",
  47062. default: true
  47063. },
  47064. demonBack: {
  47065. height: math.unit(36, "feet"),
  47066. name: "Back",
  47067. image: {
  47068. source: "./media/characters/alex-xuria/demon-back.svg",
  47069. extra: 1725/1693,
  47070. bottom: 70/1795
  47071. },
  47072. form: "demon"
  47073. },
  47074. demonHead: {
  47075. height: math.unit(2.14, "meters"),
  47076. name: "Head",
  47077. image: {
  47078. source: "./media/characters/alex-xuria/demon-head.svg"
  47079. },
  47080. form: "demon"
  47081. },
  47082. demonHand: {
  47083. height: math.unit(1.61, "meters"),
  47084. name: "Hand",
  47085. image: {
  47086. source: "./media/characters/alex-xuria/demon-hand.svg"
  47087. },
  47088. form: "demon"
  47089. },
  47090. demonPaw: {
  47091. height: math.unit(1.35, "meters"),
  47092. name: "Paw",
  47093. image: {
  47094. source: "./media/characters/alex-xuria/demon-paw.svg"
  47095. },
  47096. form: "demon"
  47097. },
  47098. demonFoot: {
  47099. height: math.unit(2.2, "meters"),
  47100. name: "Foot",
  47101. image: {
  47102. source: "./media/characters/alex-xuria/demon-foot.svg"
  47103. },
  47104. form: "demon"
  47105. },
  47106. demonCock: {
  47107. height: math.unit(1.74, "meters"),
  47108. name: "Cock",
  47109. image: {
  47110. source: "./media/characters/alex-xuria/demon-cock.svg"
  47111. },
  47112. form: "demon"
  47113. },
  47114. demonTailClosed: {
  47115. height: math.unit(1.47, "meters"),
  47116. name: "Tail (Closed)",
  47117. image: {
  47118. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47119. },
  47120. form: "demon"
  47121. },
  47122. demonTailOpen: {
  47123. height: math.unit(2.85, "meters"),
  47124. name: "Tail (Open)",
  47125. image: {
  47126. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47127. },
  47128. form: "demon"
  47129. },
  47130. incubusFront: {
  47131. height: math.unit(12, "feet"),
  47132. name: "Front",
  47133. image: {
  47134. source: "./media/characters/alex-xuria/incubus-front.svg",
  47135. extra: 1754/1677,
  47136. bottom: 125/1879
  47137. },
  47138. form: "incubus",
  47139. default: true
  47140. },
  47141. incubusBack: {
  47142. height: math.unit(12, "feet"),
  47143. name: "Back",
  47144. image: {
  47145. source: "./media/characters/alex-xuria/incubus-back.svg",
  47146. extra: 1702/1647,
  47147. bottom: 30/1732
  47148. },
  47149. form: "incubus"
  47150. },
  47151. incubusHead: {
  47152. height: math.unit(3.45, "feet"),
  47153. name: "Head",
  47154. image: {
  47155. source: "./media/characters/alex-xuria/incubus-head.svg"
  47156. },
  47157. form: "incubus"
  47158. },
  47159. rabbitFront: {
  47160. height: math.unit(6, "feet"),
  47161. name: "Front",
  47162. image: {
  47163. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47164. extra: 1369/1349,
  47165. bottom: 45/1414
  47166. },
  47167. form: "rabbit",
  47168. default: true
  47169. },
  47170. rabbitSide: {
  47171. height: math.unit(6, "feet"),
  47172. name: "Side",
  47173. image: {
  47174. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47175. extra: 1370/1356,
  47176. bottom: 37/1407
  47177. },
  47178. form: "rabbit"
  47179. },
  47180. rabbitBack: {
  47181. height: math.unit(6, "feet"),
  47182. name: "Back",
  47183. image: {
  47184. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47185. extra: 1375/1358,
  47186. bottom: 43/1418
  47187. },
  47188. form: "rabbit"
  47189. },
  47190. },
  47191. [
  47192. {
  47193. name: "Normal",
  47194. height: math.unit(6, "feet"),
  47195. default: true,
  47196. form: "rabbit"
  47197. },
  47198. {
  47199. name: "Incubus",
  47200. height: math.unit(12, "feet"),
  47201. default: true,
  47202. form: "incubus"
  47203. },
  47204. {
  47205. name: "Demon",
  47206. height: math.unit(36, "feet"),
  47207. default: true,
  47208. form: "demon"
  47209. }
  47210. ],
  47211. {
  47212. "demon": {
  47213. name: "Demon",
  47214. default: true
  47215. },
  47216. "incubus": {
  47217. name: "Incubus",
  47218. },
  47219. "rabbit": {
  47220. name: "Rabbit"
  47221. }
  47222. }
  47223. ))
  47224. characterMakers.push(() => makeCharacter(
  47225. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47226. {
  47227. front: {
  47228. height: math.unit(7 + 5/12, "feet"),
  47229. weight: math.unit(510, "lb"),
  47230. name: "Front",
  47231. image: {
  47232. source: "./media/characters/syrup/front.svg",
  47233. extra: 932/916,
  47234. bottom: 26/958
  47235. }
  47236. },
  47237. },
  47238. [
  47239. {
  47240. name: "Normal",
  47241. height: math.unit(7 + 5/12, "feet"),
  47242. default: true
  47243. },
  47244. {
  47245. name: "Big",
  47246. height: math.unit(50, "feet")
  47247. },
  47248. {
  47249. name: "Macro",
  47250. height: math.unit(300, "feet")
  47251. },
  47252. {
  47253. name: "Megamacro",
  47254. height: math.unit(1, "mile")
  47255. },
  47256. ]
  47257. ))
  47258. characterMakers.push(() => makeCharacter(
  47259. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47260. {
  47261. front: {
  47262. height: math.unit(6 + 9/12, "feet"),
  47263. name: "Front",
  47264. image: {
  47265. source: "./media/characters/zeimne/front.svg",
  47266. extra: 1969/1806,
  47267. bottom: 53/2022
  47268. }
  47269. },
  47270. },
  47271. [
  47272. {
  47273. name: "Normal",
  47274. height: math.unit(6 + 9/12, "feet"),
  47275. default: true
  47276. },
  47277. {
  47278. name: "Giant",
  47279. height: math.unit(550, "feet")
  47280. },
  47281. {
  47282. name: "Mega",
  47283. height: math.unit(3, "miles")
  47284. },
  47285. {
  47286. name: "Giga",
  47287. height: math.unit(250, "miles")
  47288. },
  47289. {
  47290. name: "Tera",
  47291. height: math.unit(1, "AU")
  47292. },
  47293. ]
  47294. ))
  47295. characterMakers.push(() => makeCharacter(
  47296. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47297. {
  47298. front: {
  47299. height: math.unit(5 + 2/12, "feet"),
  47300. name: "Front",
  47301. image: {
  47302. source: "./media/characters/grar/front.svg",
  47303. extra: 1331/1119,
  47304. bottom: 60/1391
  47305. }
  47306. },
  47307. back: {
  47308. height: math.unit(5 + 2/12, "feet"),
  47309. name: "Back",
  47310. image: {
  47311. source: "./media/characters/grar/back.svg",
  47312. extra: 1385/1169,
  47313. bottom: 23/1408
  47314. }
  47315. },
  47316. },
  47317. [
  47318. {
  47319. name: "Normal",
  47320. height: math.unit(5 + 2/12, "feet"),
  47321. default: true
  47322. },
  47323. ]
  47324. ))
  47325. characterMakers.push(() => makeCharacter(
  47326. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47327. {
  47328. front: {
  47329. height: math.unit(13 + 7/12, "feet"),
  47330. weight: math.unit(2200, "lb"),
  47331. name: "Front",
  47332. image: {
  47333. source: "./media/characters/endraya/front.svg",
  47334. extra: 1289/1215,
  47335. bottom: 50/1339
  47336. }
  47337. },
  47338. nude: {
  47339. height: math.unit(13 + 7/12, "feet"),
  47340. weight: math.unit(2200, "lb"),
  47341. name: "Nude",
  47342. image: {
  47343. source: "./media/characters/endraya/nude.svg",
  47344. extra: 1247/1171,
  47345. bottom: 40/1287
  47346. }
  47347. },
  47348. head: {
  47349. height: math.unit(2.6, "feet"),
  47350. name: "Head",
  47351. image: {
  47352. source: "./media/characters/endraya/head.svg"
  47353. }
  47354. },
  47355. slit: {
  47356. height: math.unit(3.4, "feet"),
  47357. name: "Slit",
  47358. image: {
  47359. source: "./media/characters/endraya/slit.svg"
  47360. }
  47361. },
  47362. },
  47363. [
  47364. {
  47365. name: "Normal",
  47366. height: math.unit(13 + 7/12, "feet"),
  47367. default: true
  47368. },
  47369. {
  47370. name: "Macro",
  47371. height: math.unit(200, "feet")
  47372. },
  47373. ]
  47374. ))
  47375. characterMakers.push(() => makeCharacter(
  47376. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47377. {
  47378. front: {
  47379. height: math.unit(1.81, "meters"),
  47380. weight: math.unit(69, "kg"),
  47381. name: "Front",
  47382. image: {
  47383. source: "./media/characters/rodryana/front.svg",
  47384. extra: 2002/1921,
  47385. bottom: 53/2055
  47386. }
  47387. },
  47388. back: {
  47389. height: math.unit(1.81, "meters"),
  47390. weight: math.unit(69, "kg"),
  47391. name: "Back",
  47392. image: {
  47393. source: "./media/characters/rodryana/back.svg",
  47394. extra: 1993/1926,
  47395. bottom: 48/2041
  47396. }
  47397. },
  47398. maw: {
  47399. height: math.unit(0.19769417475, "meters"),
  47400. name: "Maw",
  47401. image: {
  47402. source: "./media/characters/rodryana/maw.svg"
  47403. }
  47404. },
  47405. slit: {
  47406. height: math.unit(0.31631067961, "meters"),
  47407. name: "Slit",
  47408. image: {
  47409. source: "./media/characters/rodryana/slit.svg"
  47410. }
  47411. },
  47412. },
  47413. [
  47414. {
  47415. name: "Normal",
  47416. height: math.unit(1.81, "meters")
  47417. },
  47418. {
  47419. name: "Mini Macro",
  47420. height: math.unit(181, "meters")
  47421. },
  47422. {
  47423. name: "Macro",
  47424. height: math.unit(452, "meters"),
  47425. default: true
  47426. },
  47427. {
  47428. name: "Mega Macro",
  47429. height: math.unit(1.375, "km")
  47430. },
  47431. {
  47432. name: "Giga Macro",
  47433. height: math.unit(13.575, "km")
  47434. },
  47435. ]
  47436. ))
  47437. characterMakers.push(() => makeCharacter(
  47438. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47439. {
  47440. front: {
  47441. height: math.unit(6, "feet"),
  47442. weight: math.unit(1000, "lb"),
  47443. name: "Front",
  47444. image: {
  47445. source: "./media/characters/asaya/front.svg",
  47446. extra: 1460/1200,
  47447. bottom: 71/1531
  47448. }
  47449. },
  47450. },
  47451. [
  47452. {
  47453. name: "Normal",
  47454. height: math.unit(8, "km"),
  47455. default: true
  47456. },
  47457. ]
  47458. ))
  47459. characterMakers.push(() => makeCharacter(
  47460. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47461. {
  47462. front: {
  47463. height: math.unit(3.5, "meters"),
  47464. name: "Front",
  47465. image: {
  47466. source: "./media/characters/sarzu-and-israz/front.svg",
  47467. extra: 1570/1558,
  47468. bottom: 150/1720
  47469. },
  47470. },
  47471. back: {
  47472. height: math.unit(3.5, "meters"),
  47473. name: "Back",
  47474. image: {
  47475. source: "./media/characters/sarzu-and-israz/back.svg",
  47476. extra: 1523/1509,
  47477. bottom: 132/1655
  47478. },
  47479. },
  47480. frontFemale: {
  47481. height: math.unit(3.5, "meters"),
  47482. name: "Front (Female)",
  47483. image: {
  47484. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47485. extra: 1570/1558,
  47486. bottom: 150/1720
  47487. },
  47488. },
  47489. frontHerm: {
  47490. height: math.unit(3.5, "meters"),
  47491. name: "Front (Herm)",
  47492. image: {
  47493. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47494. extra: 1570/1558,
  47495. bottom: 150/1720
  47496. },
  47497. },
  47498. },
  47499. [
  47500. {
  47501. name: "Normal",
  47502. height: math.unit(3.5, "meters"),
  47503. default: true,
  47504. },
  47505. {
  47506. name: "Macro",
  47507. height: math.unit(65.5, "meters"),
  47508. },
  47509. ],
  47510. ))
  47511. characterMakers.push(() => makeCharacter(
  47512. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47513. {
  47514. front: {
  47515. height: math.unit(6, "feet"),
  47516. weight: math.unit(250, "lb"),
  47517. name: "Front",
  47518. image: {
  47519. source: "./media/characters/zenimma/front.svg",
  47520. extra: 1346/1320,
  47521. bottom: 58/1404
  47522. }
  47523. },
  47524. back: {
  47525. height: math.unit(6, "feet"),
  47526. weight: math.unit(250, "lb"),
  47527. name: "Back",
  47528. image: {
  47529. source: "./media/characters/zenimma/back.svg",
  47530. extra: 1324/1308,
  47531. bottom: 44/1368
  47532. }
  47533. },
  47534. dick: {
  47535. height: math.unit(1.44, "feet"),
  47536. name: "Dick",
  47537. image: {
  47538. source: "./media/characters/zenimma/dick.svg"
  47539. }
  47540. },
  47541. },
  47542. [
  47543. {
  47544. name: "Canon Height",
  47545. height: math.unit(66, "miles"),
  47546. default: true
  47547. },
  47548. ]
  47549. ))
  47550. characterMakers.push(() => makeCharacter(
  47551. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47552. {
  47553. nude: {
  47554. height: math.unit(6, "feet"),
  47555. weight: math.unit(150, "lb"),
  47556. name: "Nude",
  47557. image: {
  47558. source: "./media/characters/shavon/nude.svg",
  47559. extra: 1242/1096,
  47560. bottom: 98/1340
  47561. }
  47562. },
  47563. dressed: {
  47564. height: math.unit(6, "feet"),
  47565. weight: math.unit(150, "lb"),
  47566. name: "Dressed",
  47567. image: {
  47568. source: "./media/characters/shavon/dressed.svg",
  47569. extra: 1242/1096,
  47570. bottom: 98/1340
  47571. }
  47572. },
  47573. },
  47574. [
  47575. {
  47576. name: "Macro",
  47577. height: math.unit(255, "feet"),
  47578. default: true
  47579. },
  47580. ]
  47581. ))
  47582. characterMakers.push(() => makeCharacter(
  47583. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47584. {
  47585. front: {
  47586. height: math.unit(6, "feet"),
  47587. name: "Front",
  47588. image: {
  47589. source: "./media/characters/steph/front.svg",
  47590. extra: 1430/1330,
  47591. bottom: 54/1484
  47592. }
  47593. },
  47594. },
  47595. [
  47596. {
  47597. name: "Normal",
  47598. height: math.unit(6, "feet"),
  47599. default: true
  47600. },
  47601. ]
  47602. ))
  47603. characterMakers.push(() => makeCharacter(
  47604. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47605. {
  47606. front: {
  47607. height: math.unit(9, "feet"),
  47608. weight: math.unit(400, "lb"),
  47609. name: "Front",
  47610. image: {
  47611. source: "./media/characters/kil'aman/front.svg",
  47612. extra: 1210/1159,
  47613. bottom: 109/1319
  47614. }
  47615. },
  47616. head: {
  47617. height: math.unit(2.14, "feet"),
  47618. name: "Head",
  47619. image: {
  47620. source: "./media/characters/kil'aman/head.svg"
  47621. }
  47622. },
  47623. maw: {
  47624. height: math.unit(1.21, "feet"),
  47625. name: "Maw",
  47626. image: {
  47627. source: "./media/characters/kil'aman/maw.svg"
  47628. }
  47629. },
  47630. foot: {
  47631. height: math.unit(1.7, "feet"),
  47632. name: "Foot",
  47633. image: {
  47634. source: "./media/characters/kil'aman/foot.svg"
  47635. }
  47636. },
  47637. dick: {
  47638. height: math.unit(2.1, "feet"),
  47639. name: "Dick",
  47640. image: {
  47641. source: "./media/characters/kil'aman/dick.svg"
  47642. }
  47643. },
  47644. },
  47645. [
  47646. {
  47647. name: "Normal",
  47648. height: math.unit(9, "feet")
  47649. },
  47650. {
  47651. name: "Canon Height",
  47652. height: math.unit(10, "miles"),
  47653. default: true
  47654. },
  47655. {
  47656. name: "Maximum",
  47657. height: math.unit(6e9, "miles")
  47658. },
  47659. ]
  47660. ))
  47661. characterMakers.push(() => makeCharacter(
  47662. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47663. {
  47664. front: {
  47665. height: math.unit(90, "feet"),
  47666. weight: math.unit(675000, "lb"),
  47667. name: "Front",
  47668. image: {
  47669. source: "./media/characters/qadan/front.svg",
  47670. extra: 1012/1004,
  47671. bottom: 78/1090
  47672. }
  47673. },
  47674. back: {
  47675. height: math.unit(90, "feet"),
  47676. weight: math.unit(675000, "lb"),
  47677. name: "Back",
  47678. image: {
  47679. source: "./media/characters/qadan/back.svg",
  47680. extra: 1042/1031,
  47681. bottom: 55/1097
  47682. }
  47683. },
  47684. armored: {
  47685. height: math.unit(90, "feet"),
  47686. weight: math.unit(675000, "lb"),
  47687. name: "Armored",
  47688. image: {
  47689. source: "./media/characters/qadan/armored.svg",
  47690. extra: 1047/1037,
  47691. bottom: 48/1095
  47692. }
  47693. },
  47694. },
  47695. [
  47696. {
  47697. name: "Normal",
  47698. height: math.unit(90, "feet"),
  47699. default: true
  47700. },
  47701. ]
  47702. ))
  47703. characterMakers.push(() => makeCharacter(
  47704. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47705. {
  47706. front: {
  47707. height: math.unit(6, "feet"),
  47708. weight: math.unit(225, "lb"),
  47709. name: "Front",
  47710. image: {
  47711. source: "./media/characters/brooke/front.svg",
  47712. extra: 1050/1010,
  47713. bottom: 66/1116
  47714. }
  47715. },
  47716. back: {
  47717. height: math.unit(6, "feet"),
  47718. weight: math.unit(225, "lb"),
  47719. name: "Back",
  47720. image: {
  47721. source: "./media/characters/brooke/back.svg",
  47722. extra: 1053/1013,
  47723. bottom: 41/1094
  47724. }
  47725. },
  47726. dressed: {
  47727. height: math.unit(6, "feet"),
  47728. weight: math.unit(225, "lb"),
  47729. name: "Dressed",
  47730. image: {
  47731. source: "./media/characters/brooke/dressed.svg",
  47732. extra: 1050/1010,
  47733. bottom: 66/1116
  47734. }
  47735. },
  47736. },
  47737. [
  47738. {
  47739. name: "Canon Height",
  47740. height: math.unit(500, "miles"),
  47741. default: true
  47742. },
  47743. ]
  47744. ))
  47745. characterMakers.push(() => makeCharacter(
  47746. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47747. {
  47748. front: {
  47749. height: math.unit(6 + 2/12, "feet"),
  47750. weight: math.unit(210, "lb"),
  47751. name: "Front",
  47752. image: {
  47753. source: "./media/characters/wubs/front.svg",
  47754. extra: 1345/1325,
  47755. bottom: 70/1415
  47756. }
  47757. },
  47758. back: {
  47759. height: math.unit(6 + 2/12, "feet"),
  47760. weight: math.unit(210, "lb"),
  47761. name: "Back",
  47762. image: {
  47763. source: "./media/characters/wubs/back.svg",
  47764. extra: 1296/1275,
  47765. bottom: 58/1354
  47766. }
  47767. },
  47768. },
  47769. [
  47770. {
  47771. name: "Normal",
  47772. height: math.unit(6 + 2/12, "feet"),
  47773. default: true
  47774. },
  47775. {
  47776. name: "Macro",
  47777. height: math.unit(1000, "feet")
  47778. },
  47779. {
  47780. name: "Megamacro",
  47781. height: math.unit(1, "mile")
  47782. },
  47783. ]
  47784. ))
  47785. characterMakers.push(() => makeCharacter(
  47786. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47787. {
  47788. front: {
  47789. height: math.unit(4, "feet"),
  47790. weight: math.unit(120, "lb"),
  47791. name: "Front",
  47792. image: {
  47793. source: "./media/characters/blue/front.svg",
  47794. extra: 1636/1525,
  47795. bottom: 43/1679
  47796. }
  47797. },
  47798. back: {
  47799. height: math.unit(4, "feet"),
  47800. weight: math.unit(120, "lb"),
  47801. name: "Back",
  47802. image: {
  47803. source: "./media/characters/blue/back.svg",
  47804. extra: 1660/1560,
  47805. bottom: 57/1717
  47806. }
  47807. },
  47808. paws: {
  47809. height: math.unit(0.826, "feet"),
  47810. name: "Paws",
  47811. image: {
  47812. source: "./media/characters/blue/paws.svg"
  47813. }
  47814. },
  47815. },
  47816. [
  47817. {
  47818. name: "Micro",
  47819. height: math.unit(3, "inches")
  47820. },
  47821. {
  47822. name: "Normal",
  47823. height: math.unit(4, "feet"),
  47824. default: true
  47825. },
  47826. {
  47827. name: "Femenine Form",
  47828. height: math.unit(14, "feet")
  47829. },
  47830. {
  47831. name: "Werebat Form",
  47832. height: math.unit(18, "feet")
  47833. },
  47834. ]
  47835. ))
  47836. characterMakers.push(() => makeCharacter(
  47837. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47838. {
  47839. female: {
  47840. height: math.unit(7 + 4/12, "feet"),
  47841. weight: math.unit(243, "lb"),
  47842. name: "Female",
  47843. image: {
  47844. source: "./media/characters/kaya/female.svg",
  47845. extra: 975/898,
  47846. bottom: 34/1009
  47847. }
  47848. },
  47849. herm: {
  47850. height: math.unit(7 + 4/12, "feet"),
  47851. weight: math.unit(243, "lb"),
  47852. name: "Herm",
  47853. image: {
  47854. source: "./media/characters/kaya/herm.svg",
  47855. extra: 975/898,
  47856. bottom: 34/1009
  47857. }
  47858. },
  47859. },
  47860. [
  47861. {
  47862. name: "Normal",
  47863. height: math.unit(7 + 4/12, "feet"),
  47864. default: true
  47865. },
  47866. ]
  47867. ))
  47868. characterMakers.push(() => makeCharacter(
  47869. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47870. {
  47871. female: {
  47872. height: math.unit(9 + 4/12, "feet"),
  47873. weight: math.unit(398, "lb"),
  47874. name: "Female",
  47875. image: {
  47876. source: "./media/characters/kassandra/female.svg",
  47877. extra: 908/839,
  47878. bottom: 61/969
  47879. }
  47880. },
  47881. intersex: {
  47882. height: math.unit(9 + 4/12, "feet"),
  47883. weight: math.unit(398, "lb"),
  47884. name: "Intersex",
  47885. image: {
  47886. source: "./media/characters/kassandra/intersex.svg",
  47887. extra: 908/839,
  47888. bottom: 61/969
  47889. }
  47890. },
  47891. },
  47892. [
  47893. {
  47894. name: "Normal",
  47895. height: math.unit(9 + 4/12, "feet"),
  47896. default: true
  47897. },
  47898. ]
  47899. ))
  47900. characterMakers.push(() => makeCharacter(
  47901. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47902. {
  47903. front: {
  47904. height: math.unit(3, "meters"),
  47905. name: "Front",
  47906. image: {
  47907. source: "./media/characters/amy/front.svg",
  47908. extra: 1380/1343,
  47909. bottom: 70/1450
  47910. }
  47911. },
  47912. back: {
  47913. height: math.unit(3, "meters"),
  47914. name: "Back",
  47915. image: {
  47916. source: "./media/characters/amy/back.svg",
  47917. extra: 1380/1347,
  47918. bottom: 66/1446
  47919. }
  47920. },
  47921. },
  47922. [
  47923. {
  47924. name: "Normal",
  47925. height: math.unit(3, "meters"),
  47926. default: true
  47927. },
  47928. ]
  47929. ))
  47930. characterMakers.push(() => makeCharacter(
  47931. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47932. {
  47933. side: {
  47934. height: math.unit(47, "cm"),
  47935. weight: math.unit(10.8, "kg"),
  47936. name: "Side",
  47937. image: {
  47938. source: "./media/characters/alphaschakal/side.svg",
  47939. extra: 1058/568,
  47940. bottom: 62/1120
  47941. }
  47942. },
  47943. back: {
  47944. height: math.unit(78, "cm"),
  47945. weight: math.unit(10.8, "kg"),
  47946. name: "Back",
  47947. image: {
  47948. source: "./media/characters/alphaschakal/back.svg",
  47949. extra: 1102/942,
  47950. bottom: 185/1287
  47951. }
  47952. },
  47953. head: {
  47954. height: math.unit(28, "cm"),
  47955. name: "Head",
  47956. image: {
  47957. source: "./media/characters/alphaschakal/head.svg",
  47958. extra: 696/508,
  47959. bottom: 0/696
  47960. }
  47961. },
  47962. paw: {
  47963. height: math.unit(16, "cm"),
  47964. name: "Paw",
  47965. image: {
  47966. source: "./media/characters/alphaschakal/paw.svg"
  47967. }
  47968. },
  47969. },
  47970. [
  47971. {
  47972. name: "Normal",
  47973. height: math.unit(47, "cm"),
  47974. default: true
  47975. },
  47976. {
  47977. name: "Macro",
  47978. height: math.unit(340, "cm")
  47979. },
  47980. ]
  47981. ))
  47982. characterMakers.push(() => makeCharacter(
  47983. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47984. {
  47985. front: {
  47986. height: math.unit(36, "earths"),
  47987. name: "Front",
  47988. image: {
  47989. source: "./media/characters/ecobyss/front.svg",
  47990. extra: 1282/1215,
  47991. bottom: 11/1293
  47992. }
  47993. },
  47994. back: {
  47995. height: math.unit(36, "earths"),
  47996. name: "Back",
  47997. image: {
  47998. source: "./media/characters/ecobyss/back.svg",
  47999. extra: 1291/1222,
  48000. bottom: 8/1299
  48001. }
  48002. },
  48003. },
  48004. [
  48005. {
  48006. name: "Normal",
  48007. height: math.unit(36, "earths"),
  48008. default: true
  48009. },
  48010. ]
  48011. ))
  48012. characterMakers.push(() => makeCharacter(
  48013. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48014. {
  48015. front: {
  48016. height: math.unit(12, "feet"),
  48017. name: "Front",
  48018. image: {
  48019. source: "./media/characters/vasuk/front.svg",
  48020. extra: 1326/1207,
  48021. bottom: 64/1390
  48022. }
  48023. },
  48024. },
  48025. [
  48026. {
  48027. name: "Normal",
  48028. height: math.unit(12, "feet"),
  48029. default: true
  48030. },
  48031. ]
  48032. ))
  48033. characterMakers.push(() => makeCharacter(
  48034. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48035. {
  48036. side: {
  48037. height: math.unit(100, "feet"),
  48038. name: "Side",
  48039. image: {
  48040. source: "./media/characters/linneaus/side.svg",
  48041. extra: 987/807,
  48042. bottom: 47/1034
  48043. }
  48044. },
  48045. },
  48046. [
  48047. {
  48048. name: "Macro",
  48049. height: math.unit(100, "feet"),
  48050. default: true
  48051. },
  48052. ]
  48053. ))
  48054. characterMakers.push(() => makeCharacter(
  48055. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48056. {
  48057. front: {
  48058. height: math.unit(8, "feet"),
  48059. weight: math.unit(1200, "lb"),
  48060. name: "Front",
  48061. image: {
  48062. source: "./media/characters/nyterious-daligdig/front.svg",
  48063. extra: 1284/1094,
  48064. bottom: 84/1368
  48065. }
  48066. },
  48067. back: {
  48068. height: math.unit(8, "feet"),
  48069. weight: math.unit(1200, "lb"),
  48070. name: "Back",
  48071. image: {
  48072. source: "./media/characters/nyterious-daligdig/back.svg",
  48073. extra: 1301/1121,
  48074. bottom: 129/1430
  48075. }
  48076. },
  48077. mouth: {
  48078. height: math.unit(1.464, "feet"),
  48079. name: "Mouth",
  48080. image: {
  48081. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48082. }
  48083. },
  48084. },
  48085. [
  48086. {
  48087. name: "Small",
  48088. height: math.unit(8, "feet"),
  48089. default: true
  48090. },
  48091. {
  48092. name: "Normal",
  48093. height: math.unit(15, "feet")
  48094. },
  48095. {
  48096. name: "Macro",
  48097. height: math.unit(90, "feet")
  48098. },
  48099. ]
  48100. ))
  48101. characterMakers.push(() => makeCharacter(
  48102. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48103. {
  48104. front: {
  48105. height: math.unit(7 + 4/12, "feet"),
  48106. weight: math.unit(252, "lb"),
  48107. name: "Front",
  48108. image: {
  48109. source: "./media/characters/bandel/front.svg",
  48110. extra: 1946/1775,
  48111. bottom: 26/1972
  48112. }
  48113. },
  48114. back: {
  48115. height: math.unit(7 + 4/12, "feet"),
  48116. weight: math.unit(252, "lb"),
  48117. name: "Back",
  48118. image: {
  48119. source: "./media/characters/bandel/back.svg",
  48120. extra: 1940/1770,
  48121. bottom: 25/1965
  48122. }
  48123. },
  48124. maw: {
  48125. height: math.unit(2.15, "feet"),
  48126. name: "Maw",
  48127. image: {
  48128. source: "./media/characters/bandel/maw.svg"
  48129. }
  48130. },
  48131. stomach: {
  48132. height: math.unit(1.95, "feet"),
  48133. name: "Stomach",
  48134. image: {
  48135. source: "./media/characters/bandel/stomach.svg"
  48136. }
  48137. },
  48138. },
  48139. [
  48140. {
  48141. name: "Normal",
  48142. height: math.unit(7 + 4/12, "feet"),
  48143. default: true
  48144. },
  48145. ]
  48146. ))
  48147. characterMakers.push(() => makeCharacter(
  48148. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48149. {
  48150. front: {
  48151. height: math.unit(10 + 5/12, "feet"),
  48152. weight: math.unit(773.5, "kg"),
  48153. name: "Front",
  48154. image: {
  48155. source: "./media/characters/zed/front.svg",
  48156. extra: 987/941,
  48157. bottom: 52/1039
  48158. }
  48159. },
  48160. },
  48161. [
  48162. {
  48163. name: "Short",
  48164. height: math.unit(5 + 4/12, "feet")
  48165. },
  48166. {
  48167. name: "Average",
  48168. height: math.unit(10 + 5/12, "feet"),
  48169. default: true
  48170. },
  48171. {
  48172. name: "Mini-Macro",
  48173. height: math.unit(24 + 9/12, "feet")
  48174. },
  48175. {
  48176. name: "Macro",
  48177. height: math.unit(249, "feet")
  48178. },
  48179. {
  48180. name: "Mega-Macro",
  48181. height: math.unit(12490, "feet")
  48182. },
  48183. {
  48184. name: "Giga-Macro",
  48185. height: math.unit(24.9, "miles")
  48186. },
  48187. {
  48188. name: "Tera-Macro",
  48189. height: math.unit(24900, "miles")
  48190. },
  48191. {
  48192. name: "Cosmic Scale",
  48193. height: math.unit(38.9, "lightyears")
  48194. },
  48195. {
  48196. name: "Universal Scale",
  48197. height: math.unit(138e12, "lightyears")
  48198. },
  48199. ]
  48200. ))
  48201. characterMakers.push(() => makeCharacter(
  48202. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48203. {
  48204. front: {
  48205. height: math.unit(1561, "inches"),
  48206. name: "Front",
  48207. image: {
  48208. source: "./media/characters/ivan/front.svg",
  48209. extra: 1126/1071,
  48210. bottom: 26/1152
  48211. }
  48212. },
  48213. back: {
  48214. height: math.unit(1561, "inches"),
  48215. name: "Back",
  48216. image: {
  48217. source: "./media/characters/ivan/back.svg",
  48218. extra: 1134/1079,
  48219. bottom: 30/1164
  48220. }
  48221. },
  48222. },
  48223. [
  48224. {
  48225. name: "Normal",
  48226. height: math.unit(1561, "inches"),
  48227. default: true
  48228. },
  48229. ]
  48230. ))
  48231. characterMakers.push(() => makeCharacter(
  48232. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48233. {
  48234. front: {
  48235. height: math.unit(5 + 7/12, "feet"),
  48236. weight: math.unit(150, "lb"),
  48237. name: "Front",
  48238. image: {
  48239. source: "./media/characters/robin-arctic-hare/front.svg",
  48240. extra: 1148/974,
  48241. bottom: 20/1168
  48242. }
  48243. },
  48244. },
  48245. [
  48246. {
  48247. name: "Normal",
  48248. height: math.unit(5 + 7/12, "feet"),
  48249. default: true
  48250. },
  48251. ]
  48252. ))
  48253. characterMakers.push(() => makeCharacter(
  48254. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48255. {
  48256. side: {
  48257. height: math.unit(5, "feet"),
  48258. name: "Side",
  48259. image: {
  48260. source: "./media/characters/birch/side.svg",
  48261. extra: 985/796,
  48262. bottom: 111/1096
  48263. }
  48264. },
  48265. },
  48266. [
  48267. {
  48268. name: "Normal",
  48269. height: math.unit(5, "feet"),
  48270. default: true
  48271. },
  48272. ]
  48273. ))
  48274. characterMakers.push(() => makeCharacter(
  48275. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48276. {
  48277. front: {
  48278. height: math.unit(4, "feet"),
  48279. name: "Front",
  48280. image: {
  48281. source: "./media/characters/rasp/front.svg",
  48282. extra: 561/478,
  48283. bottom: 74/635
  48284. }
  48285. },
  48286. },
  48287. [
  48288. {
  48289. name: "Normal",
  48290. height: math.unit(4, "feet"),
  48291. default: true
  48292. },
  48293. ]
  48294. ))
  48295. characterMakers.push(() => makeCharacter(
  48296. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48297. {
  48298. front: {
  48299. height: math.unit(4 + 6/12, "feet"),
  48300. name: "Front",
  48301. image: {
  48302. source: "./media/characters/agatha/front.svg",
  48303. extra: 947/933,
  48304. bottom: 42/989
  48305. }
  48306. },
  48307. back: {
  48308. height: math.unit(4 + 6/12, "feet"),
  48309. name: "Back",
  48310. image: {
  48311. source: "./media/characters/agatha/back.svg",
  48312. extra: 935/922,
  48313. bottom: 48/983
  48314. }
  48315. },
  48316. },
  48317. [
  48318. {
  48319. name: "Normal",
  48320. height: math.unit(4 + 6 /12, "feet"),
  48321. default: true
  48322. },
  48323. {
  48324. name: "Max Size",
  48325. height: math.unit(500, "feet")
  48326. },
  48327. ]
  48328. ))
  48329. characterMakers.push(() => makeCharacter(
  48330. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48331. {
  48332. side: {
  48333. height: math.unit(30, "feet"),
  48334. name: "Side",
  48335. image: {
  48336. source: "./media/characters/roggy/side.svg",
  48337. extra: 909/643,
  48338. bottom: 63/972
  48339. }
  48340. },
  48341. lounging: {
  48342. height: math.unit(20, "feet"),
  48343. name: "Lounging",
  48344. image: {
  48345. source: "./media/characters/roggy/lounging.svg",
  48346. extra: 643/479,
  48347. bottom: 145/788
  48348. }
  48349. },
  48350. handpaw: {
  48351. height: math.unit(13.1, "feet"),
  48352. name: "Handpaw",
  48353. image: {
  48354. source: "./media/characters/roggy/handpaw.svg"
  48355. }
  48356. },
  48357. footpaw: {
  48358. height: math.unit(15.8, "feet"),
  48359. name: "Footpaw",
  48360. image: {
  48361. source: "./media/characters/roggy/footpaw.svg"
  48362. }
  48363. },
  48364. },
  48365. [
  48366. {
  48367. name: "Menacing",
  48368. height: math.unit(30, "feet"),
  48369. default: true
  48370. },
  48371. ]
  48372. ))
  48373. characterMakers.push(() => makeCharacter(
  48374. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48375. {
  48376. front: {
  48377. height: math.unit(5 + 7/12, "feet"),
  48378. weight: math.unit(135, "lb"),
  48379. name: "Front",
  48380. image: {
  48381. source: "./media/characters/naomi/front.svg",
  48382. extra: 1209/1154,
  48383. bottom: 129/1338
  48384. }
  48385. },
  48386. back: {
  48387. height: math.unit(5 + 7/12, "feet"),
  48388. weight: math.unit(135, "lb"),
  48389. name: "Back",
  48390. image: {
  48391. source: "./media/characters/naomi/back.svg",
  48392. extra: 1252/1190,
  48393. bottom: 23/1275
  48394. }
  48395. },
  48396. },
  48397. [
  48398. {
  48399. name: "Normal",
  48400. height: math.unit(5 + 7 /12, "feet"),
  48401. default: true
  48402. },
  48403. ]
  48404. ))
  48405. characterMakers.push(() => makeCharacter(
  48406. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48407. {
  48408. side: {
  48409. height: math.unit(35, "meters"),
  48410. name: "Side",
  48411. image: {
  48412. source: "./media/characters/kimpi/side.svg",
  48413. extra: 419/382,
  48414. bottom: 63/482
  48415. }
  48416. },
  48417. hand: {
  48418. height: math.unit(8.96, "meters"),
  48419. name: "Hand",
  48420. image: {
  48421. source: "./media/characters/kimpi/hand.svg"
  48422. }
  48423. },
  48424. },
  48425. [
  48426. {
  48427. name: "Normal",
  48428. height: math.unit(35, "meters"),
  48429. default: true
  48430. },
  48431. ]
  48432. ))
  48433. characterMakers.push(() => makeCharacter(
  48434. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48435. {
  48436. front: {
  48437. height: math.unit(4 + 4/12, "feet"),
  48438. name: "Front",
  48439. image: {
  48440. source: "./media/characters/pepper-purrloin/front.svg",
  48441. extra: 1141/1024,
  48442. bottom: 21/1162
  48443. }
  48444. },
  48445. },
  48446. [
  48447. {
  48448. name: "Normal",
  48449. height: math.unit(4 + 4/12, "feet"),
  48450. default: true
  48451. },
  48452. ]
  48453. ))
  48454. characterMakers.push(() => makeCharacter(
  48455. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48456. {
  48457. front: {
  48458. height: math.unit(6 + 2/12, "feet"),
  48459. name: "Front",
  48460. image: {
  48461. source: "./media/characters/raphael/front.svg",
  48462. extra: 1101/962,
  48463. bottom: 59/1160
  48464. }
  48465. },
  48466. },
  48467. [
  48468. {
  48469. name: "Normal",
  48470. height: math.unit(6 + 2/12, "feet"),
  48471. default: true
  48472. },
  48473. ]
  48474. ))
  48475. characterMakers.push(() => makeCharacter(
  48476. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48477. {
  48478. front: {
  48479. height: math.unit(6, "feet"),
  48480. weight: math.unit(150, "lb"),
  48481. name: "Front",
  48482. image: {
  48483. source: "./media/characters/victor-williams/front.svg",
  48484. extra: 1894/1825,
  48485. bottom: 67/1961
  48486. }
  48487. },
  48488. },
  48489. [
  48490. {
  48491. name: "Normal",
  48492. height: math.unit(6, "feet"),
  48493. default: true
  48494. },
  48495. ]
  48496. ))
  48497. characterMakers.push(() => makeCharacter(
  48498. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48499. {
  48500. front: {
  48501. height: math.unit(5 + 8/12, "feet"),
  48502. weight: math.unit(150, "lb"),
  48503. name: "Front",
  48504. image: {
  48505. source: "./media/characters/rachel/front.svg",
  48506. extra: 1902/1787,
  48507. bottom: 46/1948
  48508. }
  48509. },
  48510. },
  48511. [
  48512. {
  48513. name: "Base Height",
  48514. height: math.unit(5 + 8/12, "feet"),
  48515. default: true
  48516. },
  48517. {
  48518. name: "Macro",
  48519. height: math.unit(200, "feet")
  48520. },
  48521. {
  48522. name: "Mega Macro",
  48523. height: math.unit(1, "mile")
  48524. },
  48525. {
  48526. name: "Giga Macro",
  48527. height: math.unit(1500, "miles")
  48528. },
  48529. {
  48530. name: "Tera Macro",
  48531. height: math.unit(8000, "miles")
  48532. },
  48533. {
  48534. name: "Tera Macro+",
  48535. height: math.unit(2e5, "miles")
  48536. },
  48537. ]
  48538. ))
  48539. characterMakers.push(() => makeCharacter(
  48540. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48541. {
  48542. front: {
  48543. height: math.unit(6.5, "feet"),
  48544. name: "Front",
  48545. image: {
  48546. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48547. extra: 860/819,
  48548. bottom: 307/1167
  48549. }
  48550. },
  48551. back: {
  48552. height: math.unit(6.5, "feet"),
  48553. name: "Back",
  48554. image: {
  48555. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48556. extra: 880/837,
  48557. bottom: 395/1275
  48558. }
  48559. },
  48560. sleeping: {
  48561. height: math.unit(2.79, "feet"),
  48562. name: "Sleeping",
  48563. image: {
  48564. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48565. extra: 465/383,
  48566. bottom: 263/728
  48567. }
  48568. },
  48569. maw: {
  48570. height: math.unit(2.52, "feet"),
  48571. name: "Maw",
  48572. image: {
  48573. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48574. }
  48575. },
  48576. },
  48577. [
  48578. {
  48579. name: "Normal",
  48580. height: math.unit(6.5, "feet"),
  48581. default: true
  48582. },
  48583. ]
  48584. ))
  48585. characterMakers.push(() => makeCharacter(
  48586. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48587. {
  48588. front: {
  48589. height: math.unit(5, "feet"),
  48590. name: "Front",
  48591. image: {
  48592. source: "./media/characters/nova-nerium/front.svg",
  48593. extra: 1548/1392,
  48594. bottom: 374/1922
  48595. }
  48596. },
  48597. back: {
  48598. height: math.unit(5, "feet"),
  48599. name: "Back",
  48600. image: {
  48601. source: "./media/characters/nova-nerium/back.svg",
  48602. extra: 1658/1468,
  48603. bottom: 257/1915
  48604. }
  48605. },
  48606. },
  48607. [
  48608. {
  48609. name: "Normal",
  48610. height: math.unit(5, "feet"),
  48611. default: true
  48612. },
  48613. ]
  48614. ))
  48615. characterMakers.push(() => makeCharacter(
  48616. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48617. {
  48618. front: {
  48619. height: math.unit(5 + 4/12, "feet"),
  48620. name: "Front",
  48621. image: {
  48622. source: "./media/characters/ashe-pyriph/front.svg",
  48623. extra: 1935/1747,
  48624. bottom: 60/1995
  48625. }
  48626. },
  48627. },
  48628. [
  48629. {
  48630. name: "Normal",
  48631. height: math.unit(5 + 4/12, "feet"),
  48632. default: true
  48633. },
  48634. ]
  48635. ))
  48636. characterMakers.push(() => makeCharacter(
  48637. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48638. {
  48639. front: {
  48640. height: math.unit(8.7, "feet"),
  48641. name: "Front",
  48642. image: {
  48643. source: "./media/characters/flicker-wisp/front.svg",
  48644. extra: 1835/1613,
  48645. bottom: 449/2284
  48646. }
  48647. },
  48648. side: {
  48649. height: math.unit(8.7, "feet"),
  48650. name: "Side",
  48651. image: {
  48652. source: "./media/characters/flicker-wisp/side.svg",
  48653. extra: 1841/1642,
  48654. bottom: 336/2177
  48655. },
  48656. default: true
  48657. },
  48658. maw: {
  48659. height: math.unit(3.35, "feet"),
  48660. name: "Maw",
  48661. image: {
  48662. source: "./media/characters/flicker-wisp/maw.svg",
  48663. extra: 2338/1506,
  48664. bottom: 0/2338
  48665. }
  48666. },
  48667. ovipositor: {
  48668. height: math.unit(4.95, "feet"),
  48669. name: "Ovipositor",
  48670. image: {
  48671. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48672. }
  48673. },
  48674. egg: {
  48675. height: math.unit(0.385, "feet"),
  48676. weight: math.unit(2, "lb"),
  48677. name: "Egg",
  48678. image: {
  48679. source: "./media/characters/flicker-wisp/egg.svg"
  48680. }
  48681. },
  48682. },
  48683. [
  48684. {
  48685. name: "Normal",
  48686. height: math.unit(8.7, "feet"),
  48687. default: true
  48688. },
  48689. ]
  48690. ))
  48691. characterMakers.push(() => makeCharacter(
  48692. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48693. {
  48694. side: {
  48695. height: math.unit(11, "feet"),
  48696. name: "Side",
  48697. image: {
  48698. source: "./media/characters/faefnul/side.svg",
  48699. extra: 1100/1007,
  48700. bottom: 0/1100
  48701. }
  48702. },
  48703. },
  48704. [
  48705. {
  48706. name: "Normal",
  48707. height: math.unit(11, "feet"),
  48708. default: true
  48709. },
  48710. ]
  48711. ))
  48712. characterMakers.push(() => makeCharacter(
  48713. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48714. {
  48715. front: {
  48716. height: math.unit(6 + 2/12, "feet"),
  48717. name: "Front",
  48718. image: {
  48719. source: "./media/characters/shady/front.svg",
  48720. extra: 502/461,
  48721. bottom: 9/511
  48722. }
  48723. },
  48724. kneeling: {
  48725. height: math.unit(4.6, "feet"),
  48726. name: "Kneeling",
  48727. image: {
  48728. source: "./media/characters/shady/kneeling.svg",
  48729. extra: 1328/1219,
  48730. bottom: 117/1445
  48731. }
  48732. },
  48733. maw: {
  48734. height: math.unit(2, "feet"),
  48735. name: "Maw",
  48736. image: {
  48737. source: "./media/characters/shady/maw.svg"
  48738. }
  48739. },
  48740. },
  48741. [
  48742. {
  48743. name: "Nano",
  48744. height: math.unit(1, "mm")
  48745. },
  48746. {
  48747. name: "Micro",
  48748. height: math.unit(12, "mm")
  48749. },
  48750. {
  48751. name: "Tiny",
  48752. height: math.unit(3, "inches")
  48753. },
  48754. {
  48755. name: "Normal",
  48756. height: math.unit(6 + 2/12, "feet"),
  48757. default: true
  48758. },
  48759. {
  48760. name: "Big",
  48761. height: math.unit(15, "feet")
  48762. },
  48763. {
  48764. name: "Macro",
  48765. height: math.unit(150, "feet")
  48766. },
  48767. {
  48768. name: "Titanic",
  48769. height: math.unit(500, "feet")
  48770. },
  48771. ]
  48772. ))
  48773. characterMakers.push(() => makeCharacter(
  48774. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48775. {
  48776. front: {
  48777. height: math.unit(12, "feet"),
  48778. name: "Front",
  48779. image: {
  48780. source: "./media/characters/fenrir/front.svg",
  48781. extra: 968/875,
  48782. bottom: 22/990
  48783. }
  48784. },
  48785. },
  48786. [
  48787. {
  48788. name: "Big",
  48789. height: math.unit(12, "feet"),
  48790. default: true
  48791. },
  48792. ]
  48793. ))
  48794. characterMakers.push(() => makeCharacter(
  48795. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48796. {
  48797. front: {
  48798. height: math.unit(5 + 4/12, "feet"),
  48799. name: "Front",
  48800. image: {
  48801. source: "./media/characters/makar/front.svg",
  48802. extra: 1181/1112,
  48803. bottom: 78/1259
  48804. }
  48805. },
  48806. },
  48807. [
  48808. {
  48809. name: "Normal",
  48810. height: math.unit(5 + 4/12, "feet"),
  48811. default: true
  48812. },
  48813. ]
  48814. ))
  48815. characterMakers.push(() => makeCharacter(
  48816. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48817. {
  48818. front: {
  48819. height: math.unit(5 + 7/12, "feet"),
  48820. name: "Front",
  48821. image: {
  48822. source: "./media/characters/callow/front.svg",
  48823. extra: 1482/1304,
  48824. bottom: 23/1505
  48825. }
  48826. },
  48827. back: {
  48828. height: math.unit(5 + 7/12, "feet"),
  48829. name: "Back",
  48830. image: {
  48831. source: "./media/characters/callow/back.svg",
  48832. extra: 1484/1296,
  48833. bottom: 25/1509
  48834. }
  48835. },
  48836. },
  48837. [
  48838. {
  48839. name: "Micro",
  48840. height: math.unit(3, "inches"),
  48841. default: true
  48842. },
  48843. {
  48844. name: "Normal",
  48845. height: math.unit(5 + 7/12, "feet")
  48846. },
  48847. ]
  48848. ))
  48849. characterMakers.push(() => makeCharacter(
  48850. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48851. {
  48852. front: {
  48853. height: math.unit(6 + 2/12, "feet"),
  48854. name: "Front",
  48855. image: {
  48856. source: "./media/characters/natel/front.svg",
  48857. extra: 1833/1692,
  48858. bottom: 166/1999
  48859. }
  48860. },
  48861. },
  48862. [
  48863. {
  48864. name: "Normal",
  48865. height: math.unit(6 + 2/12, "feet"),
  48866. default: true
  48867. },
  48868. ]
  48869. ))
  48870. characterMakers.push(() => makeCharacter(
  48871. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48872. {
  48873. front: {
  48874. height: math.unit(1.75, "meters"),
  48875. name: "Front",
  48876. image: {
  48877. source: "./media/characters/misu/front.svg",
  48878. extra: 1690/1558,
  48879. bottom: 234/1924
  48880. }
  48881. },
  48882. back: {
  48883. height: math.unit(1.75, "meters"),
  48884. name: "Back",
  48885. image: {
  48886. source: "./media/characters/misu/back.svg",
  48887. extra: 1762/1618,
  48888. bottom: 146/1908
  48889. }
  48890. },
  48891. frontNude: {
  48892. height: math.unit(1.75, "meters"),
  48893. name: "Front (Nude)",
  48894. image: {
  48895. source: "./media/characters/misu/front-nude.svg",
  48896. extra: 1690/1558,
  48897. bottom: 234/1924
  48898. }
  48899. },
  48900. backNude: {
  48901. height: math.unit(1.75, "meters"),
  48902. name: "Back (Nude)",
  48903. image: {
  48904. source: "./media/characters/misu/back-nude.svg",
  48905. extra: 1762/1618,
  48906. bottom: 146/1908
  48907. }
  48908. },
  48909. frontErect: {
  48910. height: math.unit(1.75, "meters"),
  48911. name: "Front (Erect)",
  48912. image: {
  48913. source: "./media/characters/misu/front-erect.svg",
  48914. extra: 1690/1558,
  48915. bottom: 234/1924
  48916. }
  48917. },
  48918. maw: {
  48919. height: math.unit(0.47, "meters"),
  48920. name: "Maw",
  48921. image: {
  48922. source: "./media/characters/misu/maw.svg"
  48923. }
  48924. },
  48925. head: {
  48926. height: math.unit(0.35, "meters"),
  48927. name: "Head",
  48928. image: {
  48929. source: "./media/characters/misu/head.svg"
  48930. }
  48931. },
  48932. rear: {
  48933. height: math.unit(0.47, "meters"),
  48934. name: "Rear",
  48935. image: {
  48936. source: "./media/characters/misu/rear.svg"
  48937. }
  48938. },
  48939. },
  48940. [
  48941. {
  48942. name: "Normal",
  48943. height: math.unit(1.75, "meters")
  48944. },
  48945. {
  48946. name: "Not good for the people",
  48947. height: math.unit(42, "meters")
  48948. },
  48949. {
  48950. name: "Not good for the neighborhood",
  48951. height: math.unit(135, "meters")
  48952. },
  48953. {
  48954. name: "Bit bigger problem",
  48955. height: math.unit(380, "meters"),
  48956. default: true
  48957. },
  48958. {
  48959. name: "Not good for the city",
  48960. height: math.unit(1.5, "km")
  48961. },
  48962. {
  48963. name: "Not good for the county",
  48964. height: math.unit(5.5, "km")
  48965. },
  48966. {
  48967. name: "Not good for the state",
  48968. height: math.unit(25, "km")
  48969. },
  48970. {
  48971. name: "Not good for the country",
  48972. height: math.unit(125, "km")
  48973. },
  48974. {
  48975. name: "Not good for the continent",
  48976. height: math.unit(2100, "km")
  48977. },
  48978. {
  48979. name: "Not good for the planet",
  48980. height: math.unit(35000, "km")
  48981. },
  48982. {
  48983. name: "Just no",
  48984. height: math.unit(8.5e18, "km")
  48985. },
  48986. ]
  48987. ))
  48988. characterMakers.push(() => makeCharacter(
  48989. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48990. {
  48991. front: {
  48992. height: math.unit(6.5, "feet"),
  48993. name: "Front",
  48994. image: {
  48995. source: "./media/characters/poppy/front.svg",
  48996. extra: 1878/1812,
  48997. bottom: 43/1921
  48998. }
  48999. },
  49000. feet: {
  49001. height: math.unit(1.06, "feet"),
  49002. name: "Feet",
  49003. image: {
  49004. source: "./media/characters/poppy/feet.svg",
  49005. extra: 1083/1083,
  49006. bottom: 87/1170
  49007. }
  49008. },
  49009. },
  49010. [
  49011. {
  49012. name: "Human",
  49013. height: math.unit(6.5, "feet")
  49014. },
  49015. {
  49016. name: "Default",
  49017. height: math.unit(300, "feet"),
  49018. default: true
  49019. },
  49020. {
  49021. name: "Huge",
  49022. height: math.unit(850, "feet")
  49023. },
  49024. {
  49025. name: "Mega",
  49026. height: math.unit(8000, "feet")
  49027. },
  49028. {
  49029. name: "Giga",
  49030. height: math.unit(300, "miles")
  49031. },
  49032. ]
  49033. ))
  49034. characterMakers.push(() => makeCharacter(
  49035. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49036. {
  49037. bipedal: {
  49038. height: math.unit(7, "feet"),
  49039. name: "Bipedal",
  49040. image: {
  49041. source: "./media/characters/zener/bipedal.svg",
  49042. extra: 874/805,
  49043. bottom: 109/983
  49044. }
  49045. },
  49046. quadrupedal: {
  49047. height: math.unit(4.64, "feet"),
  49048. name: "Quadrupedal",
  49049. image: {
  49050. source: "./media/characters/zener/quadrupedal.svg",
  49051. extra: 638/507,
  49052. bottom: 190/828
  49053. }
  49054. },
  49055. cock: {
  49056. height: math.unit(18, "inches"),
  49057. name: "Cock",
  49058. image: {
  49059. source: "./media/characters/zener/cock.svg"
  49060. }
  49061. },
  49062. },
  49063. [
  49064. {
  49065. name: "Normal",
  49066. height: math.unit(7, "feet"),
  49067. default: true
  49068. },
  49069. ]
  49070. ))
  49071. characterMakers.push(() => makeCharacter(
  49072. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49073. {
  49074. nude: {
  49075. height: math.unit(5 + 6/12, "feet"),
  49076. name: "Nude",
  49077. image: {
  49078. source: "./media/characters/charlie-dog/nude.svg",
  49079. extra: 768/734,
  49080. bottom: 26/794
  49081. }
  49082. },
  49083. dressed: {
  49084. height: math.unit(5 + 6/12, "feet"),
  49085. name: "Dressed",
  49086. image: {
  49087. source: "./media/characters/charlie-dog/dressed.svg",
  49088. extra: 768/734,
  49089. bottom: 26/794
  49090. }
  49091. },
  49092. },
  49093. [
  49094. {
  49095. name: "Normal",
  49096. height: math.unit(5 + 6/12, "feet"),
  49097. default: true
  49098. },
  49099. ]
  49100. ))
  49101. characterMakers.push(() => makeCharacter(
  49102. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49103. {
  49104. front: {
  49105. height: math.unit(6 + 4/12, "feet"),
  49106. name: "Front",
  49107. image: {
  49108. source: "./media/characters/ir'istrasz/front.svg",
  49109. extra: 1014/977,
  49110. bottom: 65/1079
  49111. }
  49112. },
  49113. back: {
  49114. height: math.unit(6 + 4/12, "feet"),
  49115. name: "Back",
  49116. image: {
  49117. source: "./media/characters/ir'istrasz/back.svg",
  49118. extra: 1024/992,
  49119. bottom: 34/1058
  49120. }
  49121. },
  49122. },
  49123. [
  49124. {
  49125. name: "Normal",
  49126. height: math.unit(6 + 4/12, "feet"),
  49127. default: true
  49128. },
  49129. ]
  49130. ))
  49131. characterMakers.push(() => makeCharacter(
  49132. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49133. {
  49134. front: {
  49135. height: math.unit(5 + 8/12, "feet"),
  49136. name: "Front",
  49137. image: {
  49138. source: "./media/characters/dee-ditto/front.svg",
  49139. extra: 1874/1785,
  49140. bottom: 68/1942
  49141. }
  49142. },
  49143. back: {
  49144. height: math.unit(5 + 8/12, "feet"),
  49145. name: "Back",
  49146. image: {
  49147. source: "./media/characters/dee-ditto/back.svg",
  49148. extra: 1870/1783,
  49149. bottom: 77/1947
  49150. }
  49151. },
  49152. },
  49153. [
  49154. {
  49155. name: "Normal",
  49156. height: math.unit(5 + 8/12, "feet"),
  49157. default: true
  49158. },
  49159. ]
  49160. ))
  49161. characterMakers.push(() => makeCharacter(
  49162. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49163. {
  49164. front: {
  49165. height: math.unit(7 + 6/12, "feet"),
  49166. name: "Front",
  49167. image: {
  49168. source: "./media/characters/fey/front.svg",
  49169. extra: 995/979,
  49170. bottom: 30/1025
  49171. }
  49172. },
  49173. back: {
  49174. height: math.unit(7 + 6/12, "feet"),
  49175. name: "Back",
  49176. image: {
  49177. source: "./media/characters/fey/back.svg",
  49178. extra: 1079/1008,
  49179. bottom: 5/1084
  49180. }
  49181. },
  49182. dressed: {
  49183. height: math.unit(7 + 6/12, "feet"),
  49184. name: "Dressed",
  49185. image: {
  49186. source: "./media/characters/fey/dressed.svg",
  49187. extra: 995/979,
  49188. bottom: 30/1025
  49189. }
  49190. },
  49191. },
  49192. [
  49193. {
  49194. name: "Normal",
  49195. height: math.unit(7 + 6/12, "feet"),
  49196. default: true
  49197. },
  49198. ]
  49199. ))
  49200. characterMakers.push(() => makeCharacter(
  49201. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49202. {
  49203. standing: {
  49204. height: math.unit(17, "feet"),
  49205. name: "Standing",
  49206. image: {
  49207. source: "./media/characters/aster/standing.svg",
  49208. extra: 1798/1598,
  49209. bottom: 117/1915
  49210. }
  49211. },
  49212. },
  49213. [
  49214. {
  49215. name: "Normal",
  49216. height: math.unit(17, "feet"),
  49217. default: true
  49218. },
  49219. {
  49220. name: "Homewrecker",
  49221. height: math.unit(95, "feet")
  49222. },
  49223. {
  49224. name: "Planet Devourer",
  49225. height: math.unit(1008000, "miles")
  49226. },
  49227. ]
  49228. ))
  49229. characterMakers.push(() => makeCharacter(
  49230. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49231. {
  49232. front: {
  49233. height: math.unit(6 + 5/12, "feet"),
  49234. weight: math.unit(265, "lb"),
  49235. name: "Front",
  49236. image: {
  49237. source: "./media/characters/devon-childs/front.svg",
  49238. extra: 1795/1721,
  49239. bottom: 41/1836
  49240. }
  49241. },
  49242. side: {
  49243. height: math.unit(6 + 5/12, "feet"),
  49244. weight: math.unit(265, "lb"),
  49245. name: "Side",
  49246. image: {
  49247. source: "./media/characters/devon-childs/side.svg",
  49248. extra: 1812/1738,
  49249. bottom: 30/1842
  49250. }
  49251. },
  49252. back: {
  49253. height: math.unit(6 + 5/12, "feet"),
  49254. weight: math.unit(265, "lb"),
  49255. name: "Back",
  49256. image: {
  49257. source: "./media/characters/devon-childs/back.svg",
  49258. extra: 1808/1735,
  49259. bottom: 23/1831
  49260. }
  49261. },
  49262. hand: {
  49263. height: math.unit(1.464, "feet"),
  49264. name: "Hand",
  49265. image: {
  49266. source: "./media/characters/devon-childs/hand.svg"
  49267. }
  49268. },
  49269. foot: {
  49270. height: math.unit(1.6, "feet"),
  49271. name: "Foot",
  49272. image: {
  49273. source: "./media/characters/devon-childs/foot.svg"
  49274. }
  49275. },
  49276. },
  49277. [
  49278. {
  49279. name: "Micro",
  49280. height: math.unit(7, "cm")
  49281. },
  49282. {
  49283. name: "Normal",
  49284. height: math.unit(6 + 5/12, "feet"),
  49285. default: true
  49286. },
  49287. {
  49288. name: "Macro",
  49289. height: math.unit(154, "feet")
  49290. },
  49291. ]
  49292. ))
  49293. characterMakers.push(() => makeCharacter(
  49294. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49295. {
  49296. front: {
  49297. height: math.unit(6, "feet"),
  49298. weight: math.unit(180, "lb"),
  49299. name: "Front",
  49300. image: {
  49301. source: "./media/characters/lydemox-vir/front.svg",
  49302. extra: 1632/1435,
  49303. bottom: 58/1690
  49304. }
  49305. },
  49306. frontSFW: {
  49307. height: math.unit(6, "feet"),
  49308. weight: math.unit(180, "lb"),
  49309. name: "Front (SFW)",
  49310. image: {
  49311. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49312. extra: 1632/1435,
  49313. bottom: 58/1690
  49314. }
  49315. },
  49316. back: {
  49317. height: math.unit(6, "feet"),
  49318. weight: math.unit(180, "lb"),
  49319. name: "Back",
  49320. image: {
  49321. source: "./media/characters/lydemox-vir/back.svg",
  49322. extra: 1593/1408,
  49323. bottom: 31/1624
  49324. }
  49325. },
  49326. paw: {
  49327. height: math.unit(1.85, "feet"),
  49328. name: "Paw",
  49329. image: {
  49330. source: "./media/characters/lydemox-vir/paw.svg"
  49331. }
  49332. },
  49333. dick: {
  49334. height: math.unit(1.8, "feet"),
  49335. name: "Dick",
  49336. image: {
  49337. source: "./media/characters/lydemox-vir/dick.svg"
  49338. }
  49339. },
  49340. },
  49341. [
  49342. {
  49343. name: "Macro",
  49344. height: math.unit(100, "feet"),
  49345. default: true
  49346. },
  49347. {
  49348. name: "Teramacro",
  49349. height: math.unit(1, "earth")
  49350. },
  49351. {
  49352. name: "Planetary",
  49353. height: math.unit(20, "earths")
  49354. },
  49355. ]
  49356. ))
  49357. characterMakers.push(() => makeCharacter(
  49358. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49359. {
  49360. front: {
  49361. height: math.unit(15 + 8/12, "feet"),
  49362. weight: math.unit(1237, "kg"),
  49363. name: "Front",
  49364. image: {
  49365. source: "./media/characters/mia/front.svg",
  49366. extra: 1573/1446,
  49367. bottom: 58/1631
  49368. }
  49369. },
  49370. },
  49371. [
  49372. {
  49373. name: "Small",
  49374. height: math.unit(9 + 5/12, "feet")
  49375. },
  49376. {
  49377. name: "Normal",
  49378. height: math.unit(15 + 8/12, "feet"),
  49379. default: true
  49380. },
  49381. ]
  49382. ))
  49383. characterMakers.push(() => makeCharacter(
  49384. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49385. {
  49386. front: {
  49387. height: math.unit(10 + 6/12, "feet"),
  49388. weight: math.unit(1.3, "tons"),
  49389. name: "Front",
  49390. image: {
  49391. source: "./media/characters/mr-graves/front.svg",
  49392. extra: 1779/1695,
  49393. bottom: 198/1977
  49394. }
  49395. },
  49396. },
  49397. [
  49398. {
  49399. name: "Normal",
  49400. height: math.unit(10 + 6 /12, "feet"),
  49401. default: true
  49402. },
  49403. ]
  49404. ))
  49405. characterMakers.push(() => makeCharacter(
  49406. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49407. {
  49408. dressedFront: {
  49409. height: math.unit(5 + 8/12, "feet"),
  49410. weight: math.unit(125, "lb"),
  49411. name: "Dressed (Front)",
  49412. image: {
  49413. source: "./media/characters/jess/dressed-front.svg",
  49414. extra: 1176/1152,
  49415. bottom: 42/1218
  49416. }
  49417. },
  49418. dressedSide: {
  49419. height: math.unit(5 + 8/12, "feet"),
  49420. weight: math.unit(125, "lb"),
  49421. name: "Dressed (Side)",
  49422. image: {
  49423. source: "./media/characters/jess/dressed-side.svg",
  49424. extra: 1204/1190,
  49425. bottom: 6/1210
  49426. }
  49427. },
  49428. nudeFront: {
  49429. height: math.unit(5 + 8/12, "feet"),
  49430. weight: math.unit(125, "lb"),
  49431. name: "Nude (Front)",
  49432. image: {
  49433. source: "./media/characters/jess/nude-front.svg",
  49434. extra: 1176/1152,
  49435. bottom: 42/1218
  49436. }
  49437. },
  49438. nudeSide: {
  49439. height: math.unit(5 + 8/12, "feet"),
  49440. weight: math.unit(125, "lb"),
  49441. name: "Nude (Side)",
  49442. image: {
  49443. source: "./media/characters/jess/nude-side.svg",
  49444. extra: 1204/1190,
  49445. bottom: 6/1210
  49446. }
  49447. },
  49448. organsFront: {
  49449. height: math.unit(2.83799342105, "feet"),
  49450. name: "Organs (Front)",
  49451. image: {
  49452. source: "./media/characters/jess/organs-front.svg"
  49453. }
  49454. },
  49455. organsSide: {
  49456. height: math.unit(2.64225290474, "feet"),
  49457. name: "Organs (Side)",
  49458. image: {
  49459. source: "./media/characters/jess/organs-side.svg"
  49460. }
  49461. },
  49462. digestiveTractFront: {
  49463. height: math.unit(2.8106580871, "feet"),
  49464. name: "Digestive Tract (Front)",
  49465. image: {
  49466. source: "./media/characters/jess/digestive-tract-front.svg"
  49467. }
  49468. },
  49469. digestiveTractSide: {
  49470. height: math.unit(2.54365045014, "feet"),
  49471. name: "Digestive Tract (Side)",
  49472. image: {
  49473. source: "./media/characters/jess/digestive-tract-side.svg"
  49474. }
  49475. },
  49476. respiratorySystemFront: {
  49477. height: math.unit(1.11196233456, "feet"),
  49478. name: "Respiratory System (Front)",
  49479. image: {
  49480. source: "./media/characters/jess/respiratory-system-front.svg"
  49481. }
  49482. },
  49483. respiratorySystemSide: {
  49484. height: math.unit(0.89327966297, "feet"),
  49485. name: "Respiratory System (Side)",
  49486. image: {
  49487. source: "./media/characters/jess/respiratory-system-side.svg"
  49488. }
  49489. },
  49490. urinaryTractFront: {
  49491. height: math.unit(1.16126356186, "feet"),
  49492. name: "Urinary Tract (Front)",
  49493. image: {
  49494. source: "./media/characters/jess/urinary-tract-front.svg"
  49495. }
  49496. },
  49497. urinaryTractSide: {
  49498. height: math.unit(1.20910039627, "feet"),
  49499. name: "Urinary Tract (Side)",
  49500. image: {
  49501. source: "./media/characters/jess/urinary-tract-side.svg"
  49502. }
  49503. },
  49504. reproductiveOrgansFront: {
  49505. height: math.unit(0.48422591566, "feet"),
  49506. name: "Reproductive Organs (Front)",
  49507. image: {
  49508. source: "./media/characters/jess/reproductive-organs-front.svg"
  49509. }
  49510. },
  49511. reproductiveOrgansSide: {
  49512. height: math.unit(0.61553314481, "feet"),
  49513. name: "Reproductive Organs (Side)",
  49514. image: {
  49515. source: "./media/characters/jess/reproductive-organs-side.svg"
  49516. }
  49517. },
  49518. breastsFront: {
  49519. height: math.unit(0.47690395121, "feet"),
  49520. name: "Breasts (Front)",
  49521. image: {
  49522. source: "./media/characters/jess/breasts-front.svg"
  49523. }
  49524. },
  49525. breastsSide: {
  49526. height: math.unit(0.30556998307, "feet"),
  49527. name: "Breasts (Side)",
  49528. image: {
  49529. source: "./media/characters/jess/breasts-side.svg"
  49530. }
  49531. },
  49532. heartFront: {
  49533. height: math.unit(0.53011022622, "feet"),
  49534. name: "Heart (Front)",
  49535. image: {
  49536. source: "./media/characters/jess/heart-front.svg"
  49537. }
  49538. },
  49539. heartSide: {
  49540. height: math.unit(0.51790695213, "feet"),
  49541. name: "Heart (Side)",
  49542. image: {
  49543. source: "./media/characters/jess/heart-side.svg"
  49544. }
  49545. },
  49546. earsAndNoseFront: {
  49547. height: math.unit(0.29385483995, "feet"),
  49548. name: "Ears and Nose (Front)",
  49549. image: {
  49550. source: "./media/characters/jess/ears-and-nose-front.svg"
  49551. }
  49552. },
  49553. earsAndNoseSide: {
  49554. height: math.unit(0.18109658741, "feet"),
  49555. name: "Ears and Nose (Side)",
  49556. image: {
  49557. source: "./media/characters/jess/ears-and-nose-side.svg"
  49558. }
  49559. },
  49560. },
  49561. [
  49562. {
  49563. name: "Normal",
  49564. height: math.unit(5 + 8/12, "feet"),
  49565. default: true
  49566. },
  49567. ]
  49568. ))
  49569. characterMakers.push(() => makeCharacter(
  49570. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49571. {
  49572. front: {
  49573. height: math.unit(6, "feet"),
  49574. weight: math.unit(6.64467e-7, "grams"),
  49575. name: "Front",
  49576. image: {
  49577. source: "./media/characters/wimpering/front.svg",
  49578. extra: 597/587,
  49579. bottom: 34/631
  49580. }
  49581. },
  49582. },
  49583. [
  49584. {
  49585. name: "Micro",
  49586. height: math.unit(0.4, "mm"),
  49587. default: true
  49588. },
  49589. ]
  49590. ))
  49591. characterMakers.push(() => makeCharacter(
  49592. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49593. {
  49594. front: {
  49595. height: math.unit(5 + 2/12, "feet"),
  49596. weight: math.unit(110, "lb"),
  49597. name: "Front",
  49598. image: {
  49599. source: "./media/characters/keltre/front.svg",
  49600. extra: 1099/1057,
  49601. bottom: 22/1121
  49602. }
  49603. },
  49604. back: {
  49605. height: math.unit(5 + 2/12, "feet"),
  49606. weight: math.unit(110, "lb"),
  49607. name: "Back",
  49608. image: {
  49609. source: "./media/characters/keltre/back.svg",
  49610. extra: 1095/1053,
  49611. bottom: 17/1112
  49612. }
  49613. },
  49614. dressed: {
  49615. height: math.unit(5 + 2/12, "feet"),
  49616. weight: math.unit(110, "lb"),
  49617. name: "Dressed",
  49618. image: {
  49619. source: "./media/characters/keltre/dressed.svg",
  49620. extra: 1099/1057,
  49621. bottom: 22/1121
  49622. }
  49623. },
  49624. winter: {
  49625. height: math.unit(5 + 2/12, "feet"),
  49626. weight: math.unit(110, "lb"),
  49627. name: "Winter",
  49628. image: {
  49629. source: "./media/characters/keltre/winter.svg",
  49630. extra: 1099/1057,
  49631. bottom: 22/1121
  49632. }
  49633. },
  49634. head: {
  49635. height: math.unit(1.61 * 0.86, "feet"),
  49636. name: "Head",
  49637. image: {
  49638. source: "./media/characters/keltre/head.svg",
  49639. extra: 534/421,
  49640. bottom: 0/534
  49641. }
  49642. },
  49643. hand: {
  49644. height: math.unit(1.3 * 0.86, "feet"),
  49645. name: "Hand",
  49646. image: {
  49647. source: "./media/characters/keltre/hand.svg"
  49648. }
  49649. },
  49650. foot: {
  49651. height: math.unit(1.8 * 0.86, "feet"),
  49652. name: "Foot",
  49653. image: {
  49654. source: "./media/characters/keltre/foot.svg"
  49655. }
  49656. },
  49657. },
  49658. [
  49659. {
  49660. name: "Fine",
  49661. height: math.unit(1, "inch")
  49662. },
  49663. {
  49664. name: "Dimnutive",
  49665. height: math.unit(4, "inches")
  49666. },
  49667. {
  49668. name: "Tiny",
  49669. height: math.unit(1, "foot")
  49670. },
  49671. {
  49672. name: "Small",
  49673. height: math.unit(3, "feet")
  49674. },
  49675. {
  49676. name: "Normal",
  49677. height: math.unit(5 + 2/12, "feet"),
  49678. default: true
  49679. },
  49680. ]
  49681. ))
  49682. characterMakers.push(() => makeCharacter(
  49683. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49684. {
  49685. front: {
  49686. height: math.unit(6 + 2/12, "feet"),
  49687. name: "Front",
  49688. image: {
  49689. source: "./media/characters/nox/front.svg",
  49690. extra: 1917/1830,
  49691. bottom: 74/1991
  49692. }
  49693. },
  49694. back: {
  49695. height: math.unit(6 + 2/12, "feet"),
  49696. name: "Back",
  49697. image: {
  49698. source: "./media/characters/nox/back.svg",
  49699. extra: 1896/1815,
  49700. bottom: 21/1917
  49701. }
  49702. },
  49703. head: {
  49704. height: math.unit(1.1, "feet"),
  49705. name: "Head",
  49706. image: {
  49707. source: "./media/characters/nox/head.svg",
  49708. extra: 874/704,
  49709. bottom: 0/874
  49710. }
  49711. },
  49712. tattoo: {
  49713. height: math.unit(0.729, "feet"),
  49714. name: "Tattoo",
  49715. image: {
  49716. source: "./media/characters/nox/tattoo.svg"
  49717. }
  49718. },
  49719. },
  49720. [
  49721. {
  49722. name: "Normal",
  49723. height: math.unit(6 + 2/12, "feet")
  49724. },
  49725. {
  49726. name: "Gigamacro",
  49727. height: math.unit(2, "earths"),
  49728. default: true
  49729. },
  49730. {
  49731. name: "Cosmic",
  49732. height: math.unit(867, "yottameters")
  49733. },
  49734. ]
  49735. ))
  49736. characterMakers.push(() => makeCharacter(
  49737. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49738. {
  49739. front: {
  49740. height: math.unit(6, "feet"),
  49741. weight: math.unit(150, "lb"),
  49742. name: "Front",
  49743. image: {
  49744. source: "./media/characters/caspian/front.svg",
  49745. extra: 1443/1359,
  49746. bottom: 0/1443
  49747. }
  49748. },
  49749. back: {
  49750. height: math.unit(6, "feet"),
  49751. weight: math.unit(150, "lb"),
  49752. name: "Back",
  49753. image: {
  49754. source: "./media/characters/caspian/back.svg",
  49755. extra: 1379/1309,
  49756. bottom: 0/1379
  49757. }
  49758. },
  49759. head: {
  49760. height: math.unit(0.9, "feet"),
  49761. name: "Head",
  49762. image: {
  49763. source: "./media/characters/caspian/head.svg",
  49764. extra: 692/492,
  49765. bottom: 0/692
  49766. }
  49767. },
  49768. headAlt: {
  49769. height: math.unit(0.95, "feet"),
  49770. name: "Head (Alt)",
  49771. image: {
  49772. source: "./media/characters/caspian/head-alt.svg",
  49773. extra: 668/508,
  49774. bottom: 0/668
  49775. }
  49776. },
  49777. hand: {
  49778. height: math.unit(0.8, "feet"),
  49779. name: "Hand",
  49780. image: {
  49781. source: "./media/characters/caspian/hand.svg"
  49782. }
  49783. },
  49784. paw: {
  49785. height: math.unit(0.95, "feet"),
  49786. name: "Paw",
  49787. image: {
  49788. source: "./media/characters/caspian/paw.svg"
  49789. }
  49790. },
  49791. },
  49792. [
  49793. {
  49794. name: "Normal",
  49795. height: math.unit(162, "feet"),
  49796. default: true
  49797. },
  49798. ]
  49799. ))
  49800. characterMakers.push(() => makeCharacter(
  49801. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49802. {
  49803. front: {
  49804. height: math.unit(6, "feet"),
  49805. name: "Front",
  49806. image: {
  49807. source: "./media/characters/myra-aisling/front.svg",
  49808. extra: 1268/1166,
  49809. bottom: 73/1341
  49810. }
  49811. },
  49812. back: {
  49813. height: math.unit(6, "feet"),
  49814. name: "Back",
  49815. image: {
  49816. source: "./media/characters/myra-aisling/back.svg",
  49817. extra: 1249/1149,
  49818. bottom: 79/1328
  49819. }
  49820. },
  49821. dressed: {
  49822. height: math.unit(6, "feet"),
  49823. name: "Dressed",
  49824. image: {
  49825. source: "./media/characters/myra-aisling/dressed.svg",
  49826. extra: 1290/1189,
  49827. bottom: 47/1337
  49828. }
  49829. },
  49830. hand: {
  49831. height: math.unit(1.1, "feet"),
  49832. name: "Hand",
  49833. image: {
  49834. source: "./media/characters/myra-aisling/hand.svg"
  49835. }
  49836. },
  49837. paw: {
  49838. height: math.unit(1.23, "feet"),
  49839. name: "Paw",
  49840. image: {
  49841. source: "./media/characters/myra-aisling/paw.svg"
  49842. }
  49843. },
  49844. },
  49845. [
  49846. {
  49847. name: "Normal",
  49848. height: math.unit(160, "feet"),
  49849. default: true
  49850. },
  49851. ]
  49852. ))
  49853. characterMakers.push(() => makeCharacter(
  49854. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49855. {
  49856. front: {
  49857. height: math.unit(6, "feet"),
  49858. name: "Front",
  49859. image: {
  49860. source: "./media/characters/tenley-sidero/front.svg",
  49861. extra: 1365/1276,
  49862. bottom: 47/1412
  49863. }
  49864. },
  49865. back: {
  49866. height: math.unit(6, "feet"),
  49867. name: "Back",
  49868. image: {
  49869. source: "./media/characters/tenley-sidero/back.svg",
  49870. extra: 1383/1283,
  49871. bottom: 35/1418
  49872. }
  49873. },
  49874. dressed: {
  49875. height: math.unit(6, "feet"),
  49876. name: "Dressed",
  49877. image: {
  49878. source: "./media/characters/tenley-sidero/dressed.svg",
  49879. extra: 1364/1275,
  49880. bottom: 42/1406
  49881. }
  49882. },
  49883. head: {
  49884. height: math.unit(1.47, "feet"),
  49885. name: "Head",
  49886. image: {
  49887. source: "./media/characters/tenley-sidero/head.svg",
  49888. extra: 610/490,
  49889. bottom: 0/610
  49890. }
  49891. },
  49892. },
  49893. [
  49894. {
  49895. name: "Normal",
  49896. height: math.unit(154, "feet"),
  49897. default: true
  49898. },
  49899. ]
  49900. ))
  49901. characterMakers.push(() => makeCharacter(
  49902. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49903. {
  49904. front: {
  49905. height: math.unit(5, "inches"),
  49906. name: "Front",
  49907. image: {
  49908. source: "./media/characters/mallory/front.svg",
  49909. extra: 1919/1678,
  49910. bottom: 29/1948
  49911. }
  49912. },
  49913. hand: {
  49914. height: math.unit(0.73, "inches"),
  49915. name: "Hand",
  49916. image: {
  49917. source: "./media/characters/mallory/hand.svg"
  49918. }
  49919. },
  49920. paw: {
  49921. height: math.unit(0.68, "inches"),
  49922. name: "Paw",
  49923. image: {
  49924. source: "./media/characters/mallory/paw.svg"
  49925. }
  49926. },
  49927. },
  49928. [
  49929. {
  49930. name: "Small",
  49931. height: math.unit(5, "inches"),
  49932. default: true
  49933. },
  49934. ]
  49935. ))
  49936. characterMakers.push(() => makeCharacter(
  49937. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49938. {
  49939. naked: {
  49940. height: math.unit(6, "feet"),
  49941. name: "Naked",
  49942. image: {
  49943. source: "./media/characters/mab/naked.svg",
  49944. extra: 1855/1757,
  49945. bottom: 208/2063
  49946. }
  49947. },
  49948. outside: {
  49949. height: math.unit(6, "feet"),
  49950. name: "Outside",
  49951. image: {
  49952. source: "./media/characters/mab/outside.svg",
  49953. extra: 1855/1757,
  49954. bottom: 208/2063
  49955. }
  49956. },
  49957. party: {
  49958. height: math.unit(6, "feet"),
  49959. name: "Party",
  49960. image: {
  49961. source: "./media/characters/mab/party.svg",
  49962. extra: 1855/1757,
  49963. bottom: 208/2063
  49964. }
  49965. },
  49966. },
  49967. [
  49968. {
  49969. name: "Normal",
  49970. height: math.unit(165, "feet"),
  49971. default: true
  49972. },
  49973. ]
  49974. ))
  49975. characterMakers.push(() => makeCharacter(
  49976. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49977. {
  49978. feral: {
  49979. height: math.unit(12, "feet"),
  49980. weight: math.unit(20000, "lb"),
  49981. name: "Side",
  49982. image: {
  49983. source: "./media/characters/winter/feral.svg",
  49984. extra: 1286/943,
  49985. bottom: 112/1398
  49986. },
  49987. form: "feral",
  49988. default: true
  49989. },
  49990. feralNsfw: {
  49991. height: math.unit(12, "feet"),
  49992. weight: math.unit(20000, "lb"),
  49993. name: "Side (NSFW)",
  49994. image: {
  49995. source: "./media/characters/winter/feral-nsfw.svg",
  49996. extra: 1286/943,
  49997. bottom: 112/1398
  49998. },
  49999. form: "feral"
  50000. },
  50001. dick: {
  50002. height: math.unit(3.79, "feet"),
  50003. name: "Dick",
  50004. image: {
  50005. source: "./media/characters/winter/dick.svg"
  50006. },
  50007. form: "feral"
  50008. },
  50009. anthro: {
  50010. height: math.unit(12, "feet"),
  50011. weight: math.unit(10, "tons"),
  50012. name: "Anthro",
  50013. image: {
  50014. source: "./media/characters/winter/anthro.svg",
  50015. extra: 1701/1553,
  50016. bottom: 64/1765
  50017. },
  50018. form: "anthro",
  50019. default: true
  50020. },
  50021. },
  50022. [
  50023. {
  50024. name: "Big",
  50025. height: math.unit(12, "feet"),
  50026. default: true,
  50027. form: "feral"
  50028. },
  50029. {
  50030. name: "Big",
  50031. height: math.unit(12, "feet"),
  50032. default: true,
  50033. form: "anthro"
  50034. },
  50035. ],
  50036. {
  50037. "feral": {
  50038. name: "Feral",
  50039. default: true
  50040. },
  50041. "anthro": {
  50042. name: "Anthro"
  50043. }
  50044. }
  50045. ))
  50046. characterMakers.push(() => makeCharacter(
  50047. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50048. {
  50049. front: {
  50050. height: math.unit(4.1, "inches"),
  50051. name: "Front",
  50052. image: {
  50053. source: "./media/characters/alto/front.svg",
  50054. extra: 736/627,
  50055. bottom: 90/826
  50056. }
  50057. },
  50058. },
  50059. [
  50060. {
  50061. name: "Normal",
  50062. height: math.unit(4.1, "inches"),
  50063. default: true
  50064. },
  50065. ]
  50066. ))
  50067. characterMakers.push(() => makeCharacter(
  50068. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50069. {
  50070. sitting: {
  50071. height: math.unit(3, "feet"),
  50072. name: "Sitting",
  50073. image: {
  50074. source: "./media/characters/ratstrid-v/sitting.svg",
  50075. extra: 355/310,
  50076. bottom: 136/491
  50077. }
  50078. },
  50079. },
  50080. [
  50081. {
  50082. name: "Normal",
  50083. height: math.unit(3, "feet"),
  50084. default: true
  50085. },
  50086. ]
  50087. ))
  50088. characterMakers.push(() => makeCharacter(
  50089. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50090. {
  50091. back: {
  50092. height: math.unit(6, "feet"),
  50093. weight: math.unit(350, "lb"),
  50094. name: "Back",
  50095. image: {
  50096. source: "./media/characters/siz/back.svg",
  50097. extra: 1449/1274,
  50098. bottom: 13/1462
  50099. }
  50100. },
  50101. },
  50102. [
  50103. {
  50104. name: "Over-Overcompressed",
  50105. height: math.unit(8, "feet")
  50106. },
  50107. {
  50108. name: "Overcompressed",
  50109. height: math.unit(32, "feet")
  50110. },
  50111. {
  50112. name: "Compressed",
  50113. height: math.unit(128, "feet"),
  50114. default: true
  50115. },
  50116. {
  50117. name: "Half-Compressed",
  50118. height: math.unit(512, "feet")
  50119. },
  50120. {
  50121. name: "Quarter-Compressed",
  50122. height: math.unit(2048, "feet")
  50123. },
  50124. {
  50125. name: "Uncompressed?",
  50126. height: math.unit(8192, "feet")
  50127. },
  50128. ]
  50129. ))
  50130. characterMakers.push(() => makeCharacter(
  50131. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50132. {
  50133. front: {
  50134. height: math.unit(5 + 9/12, "feet"),
  50135. weight: math.unit(150, "lb"),
  50136. name: "Front",
  50137. image: {
  50138. source: "./media/characters/ven/front.svg",
  50139. extra: 1372/1320,
  50140. bottom: 73/1445
  50141. }
  50142. },
  50143. side: {
  50144. height: math.unit(5 + 9/12, "feet"),
  50145. weight: math.unit(1150, "lb"),
  50146. name: "Side",
  50147. image: {
  50148. source: "./media/characters/ven/side.svg",
  50149. extra: 1119/1070,
  50150. bottom: 42/1161
  50151. },
  50152. default: true
  50153. },
  50154. },
  50155. [
  50156. {
  50157. name: "Normal",
  50158. height: math.unit(5 + 9/12, "feet"),
  50159. default: true
  50160. },
  50161. ]
  50162. ))
  50163. characterMakers.push(() => makeCharacter(
  50164. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50165. {
  50166. front: {
  50167. height: math.unit(12, "feet"),
  50168. weight: math.unit(1000, "kg"),
  50169. name: "Front",
  50170. image: {
  50171. source: "./media/characters/maple/front.svg",
  50172. extra: 1193/1081,
  50173. bottom: 22/1215
  50174. }
  50175. },
  50176. },
  50177. [
  50178. {
  50179. name: "Compressed",
  50180. height: math.unit(7, "feet")
  50181. },
  50182. {
  50183. name: "Normal",
  50184. height: math.unit(12, "feet"),
  50185. default: true
  50186. },
  50187. ]
  50188. ))
  50189. characterMakers.push(() => makeCharacter(
  50190. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50191. {
  50192. front: {
  50193. height: math.unit(9, "feet"),
  50194. weight: math.unit(1500, "lb"),
  50195. name: "Front",
  50196. image: {
  50197. source: "./media/characters/nora/front.svg",
  50198. extra: 1348/1286,
  50199. bottom: 218/1566
  50200. }
  50201. },
  50202. erect: {
  50203. height: math.unit(9, "feet"),
  50204. weight: math.unit(11500, "lb"),
  50205. name: "Erect",
  50206. image: {
  50207. source: "./media/characters/nora/erect.svg",
  50208. extra: 1488/1433,
  50209. bottom: 133/1621
  50210. }
  50211. },
  50212. },
  50213. [
  50214. {
  50215. name: "Normal",
  50216. height: math.unit(9, "feet"),
  50217. default: true
  50218. },
  50219. ]
  50220. ))
  50221. characterMakers.push(() => makeCharacter(
  50222. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50223. {
  50224. front: {
  50225. height: math.unit(25, "feet"),
  50226. weight: math.unit(27500, "lb"),
  50227. name: "Front",
  50228. image: {
  50229. source: "./media/characters/north-caudin/front.svg",
  50230. extra: 1184/1082,
  50231. bottom: 23/1207
  50232. }
  50233. },
  50234. },
  50235. [
  50236. {
  50237. name: "Compressed",
  50238. height: math.unit(10, "feet")
  50239. },
  50240. {
  50241. name: "Normal",
  50242. height: math.unit(25, "feet"),
  50243. default: true
  50244. },
  50245. ]
  50246. ))
  50247. characterMakers.push(() => makeCharacter(
  50248. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50249. {
  50250. front: {
  50251. height: math.unit(9, "feet"),
  50252. weight: math.unit(1250, "lb"),
  50253. name: "Front",
  50254. image: {
  50255. source: "./media/characters/merrian/front.svg",
  50256. extra: 2393/2304,
  50257. bottom: 40/2433
  50258. }
  50259. },
  50260. },
  50261. [
  50262. {
  50263. name: "Normal",
  50264. height: math.unit(9, "feet"),
  50265. default: true
  50266. },
  50267. ]
  50268. ))
  50269. characterMakers.push(() => makeCharacter(
  50270. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50271. {
  50272. front: {
  50273. height: math.unit(9, "feet"),
  50274. weight: math.unit(1000, "lb"),
  50275. name: "Front",
  50276. image: {
  50277. source: "./media/characters/hazel/front.svg",
  50278. extra: 2351/2298,
  50279. bottom: 38/2389
  50280. }
  50281. },
  50282. },
  50283. [
  50284. {
  50285. name: "Normal",
  50286. height: math.unit(9, "feet"),
  50287. default: true
  50288. },
  50289. ]
  50290. ))
  50291. characterMakers.push(() => makeCharacter(
  50292. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50293. {
  50294. front: {
  50295. height: math.unit(13, "feet"),
  50296. weight: math.unit(3200, "lb"),
  50297. name: "Front",
  50298. image: {
  50299. source: "./media/characters/emma/front.svg",
  50300. extra: 2263/2029,
  50301. bottom: 68/2331
  50302. }
  50303. },
  50304. },
  50305. [
  50306. {
  50307. name: "Normal",
  50308. height: math.unit(13, "feet"),
  50309. default: true
  50310. },
  50311. ]
  50312. ))
  50313. characterMakers.push(() => makeCharacter(
  50314. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50315. {
  50316. front: {
  50317. height: math.unit(11 + 9/12, "feet"),
  50318. weight: math.unit(2500, "lb"),
  50319. name: "Front",
  50320. image: {
  50321. source: "./media/characters/ilumina/front.svg",
  50322. extra: 2248/2209,
  50323. bottom: 164/2412
  50324. }
  50325. },
  50326. },
  50327. [
  50328. {
  50329. name: "Normal",
  50330. height: math.unit(11 + 9/12, "feet"),
  50331. default: true
  50332. },
  50333. ]
  50334. ))
  50335. characterMakers.push(() => makeCharacter(
  50336. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50337. {
  50338. front: {
  50339. height: math.unit(8 + 10/12, "feet"),
  50340. weight: math.unit(1350, "lb"),
  50341. name: "Front",
  50342. image: {
  50343. source: "./media/characters/moonshine/front.svg",
  50344. extra: 2395/2288,
  50345. bottom: 40/2435
  50346. }
  50347. },
  50348. },
  50349. [
  50350. {
  50351. name: "Normal",
  50352. height: math.unit(8 + 10/12, "feet"),
  50353. default: true
  50354. },
  50355. ]
  50356. ))
  50357. characterMakers.push(() => makeCharacter(
  50358. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50359. {
  50360. front: {
  50361. height: math.unit(14, "feet"),
  50362. weight: math.unit(3400, "lb"),
  50363. name: "Front",
  50364. image: {
  50365. source: "./media/characters/aletia/front.svg",
  50366. extra: 1185/1052,
  50367. bottom: 21/1206
  50368. }
  50369. },
  50370. },
  50371. [
  50372. {
  50373. name: "Compressed",
  50374. height: math.unit(8, "feet")
  50375. },
  50376. {
  50377. name: "Normal",
  50378. height: math.unit(14, "feet"),
  50379. default: true
  50380. },
  50381. ]
  50382. ))
  50383. characterMakers.push(() => makeCharacter(
  50384. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50385. {
  50386. front: {
  50387. height: math.unit(17, "feet"),
  50388. weight: math.unit(6500, "lb"),
  50389. name: "Front",
  50390. image: {
  50391. source: "./media/characters/deidra/front.svg",
  50392. extra: 1201/1081,
  50393. bottom: 16/1217
  50394. }
  50395. },
  50396. },
  50397. [
  50398. {
  50399. name: "Compressed",
  50400. height: math.unit(9 + 6/12, "feet")
  50401. },
  50402. {
  50403. name: "Normal",
  50404. height: math.unit(17, "feet"),
  50405. default: true
  50406. },
  50407. ]
  50408. ))
  50409. characterMakers.push(() => makeCharacter(
  50410. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50411. {
  50412. front: {
  50413. height: math.unit(7 + 4/12, "feet"),
  50414. weight: math.unit(280, "lb"),
  50415. name: "Front",
  50416. image: {
  50417. source: "./media/characters/freki-yrmori/front.svg",
  50418. extra: 1286/1182,
  50419. bottom: 29/1315
  50420. }
  50421. },
  50422. maw: {
  50423. height: math.unit(0.9, "feet"),
  50424. name: "Maw",
  50425. image: {
  50426. source: "./media/characters/freki-yrmori/maw.svg"
  50427. }
  50428. },
  50429. },
  50430. [
  50431. {
  50432. name: "Normal",
  50433. height: math.unit(7 + 4/12, "feet"),
  50434. default: true
  50435. },
  50436. {
  50437. name: "Macro",
  50438. height: math.unit(38.5, "meters")
  50439. },
  50440. ]
  50441. ))
  50442. characterMakers.push(() => makeCharacter(
  50443. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50444. {
  50445. side: {
  50446. height: math.unit(47.2, "meters"),
  50447. weight: math.unit(10000, "tons"),
  50448. name: "Side",
  50449. image: {
  50450. source: "./media/characters/aetherios/side.svg",
  50451. extra: 2363/642,
  50452. bottom: 221/2584
  50453. }
  50454. },
  50455. top: {
  50456. height: math.unit(240, "meters"),
  50457. weight: math.unit(10000, "tons"),
  50458. name: "Top",
  50459. image: {
  50460. source: "./media/characters/aetherios/top.svg"
  50461. }
  50462. },
  50463. bottom: {
  50464. height: math.unit(240, "meters"),
  50465. weight: math.unit(10000, "tons"),
  50466. name: "Bottom",
  50467. image: {
  50468. source: "./media/characters/aetherios/bottom.svg"
  50469. }
  50470. },
  50471. head: {
  50472. height: math.unit(38.6, "meters"),
  50473. name: "Head",
  50474. image: {
  50475. source: "./media/characters/aetherios/head.svg",
  50476. extra: 1335/1112,
  50477. bottom: 0/1335
  50478. }
  50479. },
  50480. front: {
  50481. height: math.unit(29, "meters"),
  50482. name: "Front",
  50483. image: {
  50484. source: "./media/characters/aetherios/front.svg",
  50485. extra: 1266/953,
  50486. bottom: 158/1424
  50487. }
  50488. },
  50489. maw: {
  50490. height: math.unit(16.37, "meters"),
  50491. name: "Maw",
  50492. image: {
  50493. source: "./media/characters/aetherios/maw.svg",
  50494. extra: 748/637,
  50495. bottom: 0/748
  50496. },
  50497. extraAttributes: {
  50498. preyCapacity: {
  50499. name: "Capacity",
  50500. power: 3,
  50501. type: "volume",
  50502. base: math.unit(1000, "people")
  50503. },
  50504. tongueSize: {
  50505. name: "Tongue Size",
  50506. power: 2,
  50507. type: "area",
  50508. base: math.unit(21, "m^2")
  50509. }
  50510. }
  50511. },
  50512. forepaw: {
  50513. height: math.unit(18, "meters"),
  50514. name: "Forepaw",
  50515. image: {
  50516. source: "./media/characters/aetherios/forepaw.svg"
  50517. }
  50518. },
  50519. hindpaw: {
  50520. height: math.unit(23, "meters"),
  50521. name: "Hindpaw",
  50522. image: {
  50523. source: "./media/characters/aetherios/hindpaw.svg"
  50524. }
  50525. },
  50526. genitals: {
  50527. height: math.unit(42, "meters"),
  50528. name: "Genitals",
  50529. image: {
  50530. source: "./media/characters/aetherios/genitals.svg"
  50531. }
  50532. },
  50533. },
  50534. [
  50535. {
  50536. name: "Normal",
  50537. height: math.unit(47.2, "meters"),
  50538. default: true
  50539. },
  50540. {
  50541. name: "Macro",
  50542. height: math.unit(160, "meters")
  50543. },
  50544. {
  50545. name: "Mega",
  50546. height: math.unit(1.87, "km")
  50547. },
  50548. {
  50549. name: "Giga",
  50550. height: math.unit(40000, "km")
  50551. },
  50552. {
  50553. name: "Stellar",
  50554. height: math.unit(158000000, "km")
  50555. },
  50556. {
  50557. name: "Cosmic",
  50558. height: math.unit(9.46e12, "km")
  50559. },
  50560. ]
  50561. ))
  50562. characterMakers.push(() => makeCharacter(
  50563. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50564. {
  50565. front: {
  50566. height: math.unit(5 + 4/12, "feet"),
  50567. weight: math.unit(80, "lb"),
  50568. name: "Front",
  50569. image: {
  50570. source: "./media/characters/mizu-gieeg/front.svg",
  50571. extra: 850/709,
  50572. bottom: 52/902
  50573. }
  50574. },
  50575. back: {
  50576. height: math.unit(5 + 4/12, "feet"),
  50577. weight: math.unit(80, "lb"),
  50578. name: "Back",
  50579. image: {
  50580. source: "./media/characters/mizu-gieeg/back.svg",
  50581. extra: 882/745,
  50582. bottom: 25/907
  50583. }
  50584. },
  50585. },
  50586. [
  50587. {
  50588. name: "Normal",
  50589. height: math.unit(5 + 4/12, "feet"),
  50590. default: true
  50591. },
  50592. ]
  50593. ))
  50594. characterMakers.push(() => makeCharacter(
  50595. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50596. {
  50597. front: {
  50598. height: math.unit(6, "feet"),
  50599. name: "Front",
  50600. image: {
  50601. source: "./media/characters/roselle-st-papier/front.svg",
  50602. extra: 1430/1280,
  50603. bottom: 37/1467
  50604. }
  50605. },
  50606. back: {
  50607. height: math.unit(6, "feet"),
  50608. name: "Back",
  50609. image: {
  50610. source: "./media/characters/roselle-st-papier/back.svg",
  50611. extra: 1491/1296,
  50612. bottom: 23/1514
  50613. }
  50614. },
  50615. ear: {
  50616. height: math.unit(1.26, "feet"),
  50617. name: "Ear",
  50618. image: {
  50619. source: "./media/characters/roselle-st-papier/ear.svg"
  50620. }
  50621. },
  50622. },
  50623. [
  50624. {
  50625. name: "Normal",
  50626. height: math.unit(150, "feet"),
  50627. default: true
  50628. },
  50629. ]
  50630. ))
  50631. characterMakers.push(() => makeCharacter(
  50632. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50633. {
  50634. front: {
  50635. height: math.unit(1, "inches"),
  50636. name: "Front",
  50637. image: {
  50638. source: "./media/characters/valargent/front.svg",
  50639. extra: 1825/1694,
  50640. bottom: 62/1887
  50641. }
  50642. },
  50643. back: {
  50644. height: math.unit(1, "inches"),
  50645. name: "Back",
  50646. image: {
  50647. source: "./media/characters/valargent/back.svg",
  50648. extra: 1775/1682,
  50649. bottom: 88/1863
  50650. }
  50651. },
  50652. },
  50653. [
  50654. {
  50655. name: "Micro",
  50656. height: math.unit(1, "inch"),
  50657. default: true
  50658. },
  50659. ]
  50660. ))
  50661. characterMakers.push(() => makeCharacter(
  50662. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50663. {
  50664. front: {
  50665. height: math.unit(3.4, "meters"),
  50666. name: "Front",
  50667. image: {
  50668. source: "./media/characters/zarina/front.svg",
  50669. extra: 1733/1425,
  50670. bottom: 93/1826
  50671. }
  50672. },
  50673. squatting: {
  50674. height: math.unit(2.14, "meters"),
  50675. name: "Squatting",
  50676. image: {
  50677. source: "./media/characters/zarina/squatting.svg",
  50678. extra: 1073/788,
  50679. bottom: 63/1136
  50680. }
  50681. },
  50682. back: {
  50683. height: math.unit(2.14, "meters"),
  50684. name: "Back",
  50685. image: {
  50686. source: "./media/characters/zarina/back.svg",
  50687. extra: 1128/885,
  50688. bottom: 0/1128
  50689. }
  50690. },
  50691. },
  50692. [
  50693. {
  50694. name: "Normal",
  50695. height: math.unit(3.4, "meters"),
  50696. default: true
  50697. },
  50698. {
  50699. name: "Big",
  50700. height: math.unit(5, "meters")
  50701. },
  50702. {
  50703. name: "Macro",
  50704. height: math.unit(110, "meters")
  50705. },
  50706. ]
  50707. ))
  50708. characterMakers.push(() => makeCharacter(
  50709. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50710. {
  50711. front: {
  50712. height: math.unit(7, "feet"),
  50713. name: "Front",
  50714. image: {
  50715. source: "./media/characters/ventus-astro-fox/front.svg",
  50716. extra: 1792/1623,
  50717. bottom: 28/1820
  50718. }
  50719. },
  50720. back: {
  50721. height: math.unit(7, "feet"),
  50722. name: "Back",
  50723. image: {
  50724. source: "./media/characters/ventus-astro-fox/back.svg",
  50725. extra: 1789/1620,
  50726. bottom: 31/1820
  50727. }
  50728. },
  50729. outfit: {
  50730. height: math.unit(7, "feet"),
  50731. name: "Outfit",
  50732. image: {
  50733. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50734. extra: 1054/925,
  50735. bottom: 15/1069
  50736. }
  50737. },
  50738. head: {
  50739. height: math.unit(1.12, "feet"),
  50740. name: "Head",
  50741. image: {
  50742. source: "./media/characters/ventus-astro-fox/head.svg",
  50743. extra: 866/504,
  50744. bottom: 0/866
  50745. }
  50746. },
  50747. hand: {
  50748. height: math.unit(1, "feet"),
  50749. name: "Hand",
  50750. image: {
  50751. source: "./media/characters/ventus-astro-fox/hand.svg"
  50752. }
  50753. },
  50754. paw: {
  50755. height: math.unit(1.5, "feet"),
  50756. name: "Paw",
  50757. image: {
  50758. source: "./media/characters/ventus-astro-fox/paw.svg"
  50759. }
  50760. },
  50761. },
  50762. [
  50763. {
  50764. name: "Normal",
  50765. height: math.unit(7, "feet"),
  50766. default: true
  50767. },
  50768. {
  50769. name: "Macro",
  50770. height: math.unit(200, "feet")
  50771. },
  50772. {
  50773. name: "Cosmic",
  50774. height: math.unit(3, "universes")
  50775. },
  50776. ]
  50777. ))
  50778. characterMakers.push(() => makeCharacter(
  50779. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50780. {
  50781. front: {
  50782. height: math.unit(3, "meters"),
  50783. weight: math.unit(7000, "lb"),
  50784. name: "Front",
  50785. image: {
  50786. source: "./media/characters/core-t/front.svg",
  50787. extra: 5729/4941,
  50788. bottom: 1129/6858
  50789. }
  50790. },
  50791. },
  50792. [
  50793. {
  50794. name: "Big",
  50795. height: math.unit(3, "meters"),
  50796. default: true
  50797. },
  50798. ]
  50799. ))
  50800. characterMakers.push(() => makeCharacter(
  50801. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50802. {
  50803. normal: {
  50804. height: math.unit(6 + 6/12, "feet"),
  50805. weight: math.unit(275, "lb"),
  50806. name: "Front",
  50807. image: {
  50808. source: "./media/characters/cadbunny/normal.svg",
  50809. extra: 1129/947,
  50810. bottom: 93/1222
  50811. },
  50812. default: true,
  50813. form: "normal"
  50814. },
  50815. gigantamax: {
  50816. height: math.unit(26, "feet"),
  50817. weight: math.unit(16000, "lb"),
  50818. name: "Front",
  50819. image: {
  50820. source: "./media/characters/cadbunny/gigantamax.svg",
  50821. extra: 1133/944,
  50822. bottom: 90/1223
  50823. },
  50824. default: true,
  50825. form: "gigantamax"
  50826. },
  50827. },
  50828. [
  50829. {
  50830. name: "Normal",
  50831. height: math.unit(6 + 6/12, "feet"),
  50832. default: true,
  50833. form: "normal"
  50834. },
  50835. {
  50836. name: "Small",
  50837. height: math.unit(26, "feet"),
  50838. default: true,
  50839. form: "gigantamax"
  50840. },
  50841. {
  50842. name: "Large",
  50843. height: math.unit(78, "feet"),
  50844. form: "gigantamax"
  50845. },
  50846. ],
  50847. {
  50848. "normal": {
  50849. name: "Normal",
  50850. default: true
  50851. },
  50852. "gigantamax": {
  50853. name: "Gigantamax"
  50854. }
  50855. }
  50856. ))
  50857. characterMakers.push(() => makeCharacter(
  50858. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50859. {
  50860. anthroFront: {
  50861. height: math.unit(8, "feet"),
  50862. weight: math.unit(300, "lb"),
  50863. name: "Front",
  50864. image: {
  50865. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50866. extra: 1272/1176,
  50867. bottom: 53/1325
  50868. },
  50869. form: "anthro",
  50870. default: true
  50871. },
  50872. feralSide: {
  50873. height: math.unit(4, "feet"),
  50874. weight: math.unit(250, "lb"),
  50875. name: "Side",
  50876. image: {
  50877. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50878. extra: 731/621,
  50879. bottom: 0/731
  50880. },
  50881. form: "feral",
  50882. default: true
  50883. },
  50884. },
  50885. [
  50886. {
  50887. name: "Regular",
  50888. height: math.unit(8, "feet"),
  50889. form: "anthro"
  50890. },
  50891. {
  50892. name: "Macro",
  50893. height: math.unit(250, "feet"),
  50894. form: "anthro",
  50895. default: true
  50896. },
  50897. {
  50898. name: "Regular",
  50899. height: math.unit(4, "feet"),
  50900. form: "feral"
  50901. },
  50902. {
  50903. name: "Macro",
  50904. height: math.unit(125, "feet"),
  50905. form: "feral",
  50906. default: true
  50907. },
  50908. ],
  50909. {
  50910. "anthro": {
  50911. name: "Anthro",
  50912. default: true
  50913. },
  50914. "feral": {
  50915. name: "Feral",
  50916. },
  50917. }
  50918. ))
  50919. characterMakers.push(() => makeCharacter(
  50920. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50921. {
  50922. front: {
  50923. height: math.unit(11 + 10/12, "feet"),
  50924. weight: math.unit(1587, "kg"),
  50925. name: "Front",
  50926. image: {
  50927. source: "./media/characters/maple-javira-dragon/front.svg",
  50928. extra: 1136/744,
  50929. bottom: 73/1209
  50930. }
  50931. },
  50932. side: {
  50933. height: math.unit(11 + 10/12, "feet"),
  50934. weight: math.unit(1587, "kg"),
  50935. name: "Side",
  50936. image: {
  50937. source: "./media/characters/maple-javira-dragon/side.svg",
  50938. extra: 712/505,
  50939. bottom: 17/729
  50940. }
  50941. },
  50942. head: {
  50943. height: math.unit(8.05, "feet"),
  50944. name: "Head",
  50945. image: {
  50946. source: "./media/characters/maple-javira-dragon/head.svg",
  50947. extra: 1420/1344,
  50948. bottom: 0/1420
  50949. }
  50950. },
  50951. },
  50952. [
  50953. {
  50954. name: "Normal",
  50955. height: math.unit(11 + 10/12, "feet"),
  50956. default: true
  50957. },
  50958. ]
  50959. ))
  50960. characterMakers.push(() => makeCharacter(
  50961. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50962. {
  50963. front: {
  50964. height: math.unit(117, "cm"),
  50965. weight: math.unit(50, "kg"),
  50966. name: "Front",
  50967. image: {
  50968. source: "./media/characters/sonia-wyverntail/front.svg",
  50969. extra: 708/592,
  50970. bottom: 25/733
  50971. }
  50972. },
  50973. },
  50974. [
  50975. {
  50976. name: "Normal",
  50977. height: math.unit(117, "cm"),
  50978. default: true
  50979. },
  50980. ]
  50981. ))
  50982. characterMakers.push(() => makeCharacter(
  50983. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50984. {
  50985. front: {
  50986. height: math.unit(6 + 5/12, "feet"),
  50987. name: "Front",
  50988. image: {
  50989. source: "./media/characters/micah/front.svg",
  50990. extra: 1758/1546,
  50991. bottom: 214/1972
  50992. }
  50993. },
  50994. },
  50995. [
  50996. {
  50997. name: "Normal",
  50998. height: math.unit(6 + 5/12, "feet"),
  50999. default: true
  51000. },
  51001. ]
  51002. ))
  51003. characterMakers.push(() => makeCharacter(
  51004. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  51005. {
  51006. front: {
  51007. height: math.unit(5 + 10/12, "feet"),
  51008. weight: math.unit(220, "lb"),
  51009. name: "Front",
  51010. image: {
  51011. source: "./media/characters/zarya/front.svg",
  51012. extra: 593/572,
  51013. bottom: 50/643
  51014. }
  51015. },
  51016. back: {
  51017. height: math.unit(5 + 10/12, "feet"),
  51018. weight: math.unit(220, "lb"),
  51019. name: "Back",
  51020. image: {
  51021. source: "./media/characters/zarya/back.svg",
  51022. extra: 603/582,
  51023. bottom: 38/641
  51024. }
  51025. },
  51026. },
  51027. [
  51028. {
  51029. name: "Normal",
  51030. height: math.unit(5 + 10/12, "feet"),
  51031. default: true
  51032. },
  51033. ]
  51034. ))
  51035. characterMakers.push(() => makeCharacter(
  51036. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51037. {
  51038. front: {
  51039. height: math.unit(7.5, "feet"),
  51040. name: "Front",
  51041. image: {
  51042. source: "./media/characters/sven-hatisson/front.svg",
  51043. extra: 917/857,
  51044. bottom: 42/959
  51045. }
  51046. },
  51047. back: {
  51048. height: math.unit(7.5, "feet"),
  51049. name: "Back",
  51050. image: {
  51051. source: "./media/characters/sven-hatisson/back.svg",
  51052. extra: 903/856,
  51053. bottom: 15/918
  51054. }
  51055. },
  51056. },
  51057. [
  51058. {
  51059. name: "Base Height",
  51060. height: math.unit(7.5, "feet")
  51061. },
  51062. {
  51063. name: "Usual Height",
  51064. height: math.unit(13.5, "feet"),
  51065. default: true
  51066. },
  51067. {
  51068. name: "Smaller Macro",
  51069. height: math.unit(85, "feet")
  51070. },
  51071. {
  51072. name: "Moderate Macro",
  51073. height: math.unit(320, "feet")
  51074. },
  51075. {
  51076. name: "Large Macro",
  51077. height: math.unit(1000, "feet")
  51078. },
  51079. {
  51080. name: "Largest Size",
  51081. height: math.unit(2, "miles")
  51082. },
  51083. ]
  51084. ))
  51085. characterMakers.push(() => makeCharacter(
  51086. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51087. {
  51088. side: {
  51089. height: math.unit(1.8, "meters"),
  51090. weight: math.unit(275, "kg"),
  51091. name: "Side",
  51092. image: {
  51093. source: "./media/characters/terra/side.svg",
  51094. extra: 1273/1147,
  51095. bottom: 0/1273
  51096. }
  51097. },
  51098. },
  51099. [
  51100. {
  51101. name: "Normal",
  51102. height: math.unit(16.2, "meters"),
  51103. default: true
  51104. },
  51105. ]
  51106. ))
  51107. characterMakers.push(() => makeCharacter(
  51108. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51109. {
  51110. borzoiFront: {
  51111. height: math.unit(6 + 9/12, "feet"),
  51112. name: "Front",
  51113. image: {
  51114. source: "./media/characters/rae/borzoi-front.svg",
  51115. extra: 1161/1098,
  51116. bottom: 31/1192
  51117. },
  51118. form: "borzoi",
  51119. default: true
  51120. },
  51121. werewolfFront: {
  51122. height: math.unit(8 + 7/12, "feet"),
  51123. name: "Front",
  51124. image: {
  51125. source: "./media/characters/rae/werewolf-front.svg",
  51126. extra: 1411/1334,
  51127. bottom: 127/1538
  51128. },
  51129. form: "werewolf",
  51130. default: true
  51131. },
  51132. },
  51133. [
  51134. {
  51135. name: "Normal",
  51136. height: math.unit(6 + 9/12, "feet"),
  51137. default: true,
  51138. form: "borzoi"
  51139. },
  51140. {
  51141. name: "Normal",
  51142. height: math.unit(8 + 7/12, "feet"),
  51143. default: true,
  51144. form: "werewolf"
  51145. },
  51146. ],
  51147. {
  51148. "borzoi": {
  51149. name: "Borzoi",
  51150. default: true
  51151. },
  51152. "werewolf": {
  51153. name: "Werewolf",
  51154. },
  51155. }
  51156. ))
  51157. characterMakers.push(() => makeCharacter(
  51158. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51159. {
  51160. front: {
  51161. height: math.unit(8 + 7/12, "feet"),
  51162. weight: math.unit(482, "lb"),
  51163. name: "Front",
  51164. image: {
  51165. source: "./media/characters/kit/front.svg",
  51166. extra: 1247/1103,
  51167. bottom: 41/1288
  51168. }
  51169. },
  51170. back: {
  51171. height: math.unit(8 + 7/12, "feet"),
  51172. weight: math.unit(482, "lb"),
  51173. name: "Back",
  51174. image: {
  51175. source: "./media/characters/kit/back.svg",
  51176. extra: 1252/1123,
  51177. bottom: 21/1273
  51178. }
  51179. },
  51180. paw: {
  51181. height: math.unit(1.46, "feet"),
  51182. name: "Paw",
  51183. image: {
  51184. source: "./media/characters/kit/paw.svg"
  51185. }
  51186. },
  51187. },
  51188. [
  51189. {
  51190. name: "Normal",
  51191. height: math.unit(2.61, "meters"),
  51192. default: true
  51193. },
  51194. {
  51195. name: "\"Tall\"",
  51196. height: math.unit(8.21, "meters")
  51197. },
  51198. {
  51199. name: "Tall",
  51200. height: math.unit(19.6, "meters")
  51201. },
  51202. {
  51203. name: "Very Tall",
  51204. height: math.unit(57.91, "meters")
  51205. },
  51206. {
  51207. name: "Semi-Macro",
  51208. height: math.unit(138.64, "meters")
  51209. },
  51210. {
  51211. name: "Macro",
  51212. height: math.unit(831.99, "meters")
  51213. },
  51214. {
  51215. name: "EX-Macro",
  51216. height: math.unit(96451121, "meters")
  51217. },
  51218. {
  51219. name: "S1-Omnipotent",
  51220. height: math.unit(4.42074e+9, "meters")
  51221. },
  51222. {
  51223. name: "S2-Omnipotent",
  51224. height: math.unit(9.42074e+17, "meters")
  51225. },
  51226. {
  51227. name: "Omnipotent",
  51228. height: math.unit(4.23112e+24, "meters")
  51229. },
  51230. {
  51231. name: "Hypergod",
  51232. height: math.unit(5.05176e+27, "meters")
  51233. },
  51234. {
  51235. name: "Hypergod-EX",
  51236. height: math.unit(9.45532e+49, "meters")
  51237. },
  51238. {
  51239. name: "Hypergod-SP",
  51240. height: math.unit(9.45532e+195, "meters")
  51241. },
  51242. ]
  51243. ))
  51244. characterMakers.push(() => makeCharacter(
  51245. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51246. {
  51247. side: {
  51248. height: math.unit(0.6, "meters"),
  51249. weight: math.unit(24, "kg"),
  51250. name: "Side",
  51251. image: {
  51252. source: "./media/characters/celeste/side.svg",
  51253. extra: 810/517,
  51254. bottom: 53/863
  51255. }
  51256. },
  51257. },
  51258. [
  51259. {
  51260. name: "Velociraptor",
  51261. height: math.unit(0.6, "meters"),
  51262. default: true
  51263. },
  51264. {
  51265. name: "Utahraptor",
  51266. height: math.unit(1.8, "meters")
  51267. },
  51268. {
  51269. name: "Gallimimus",
  51270. height: math.unit(4.0, "meters")
  51271. },
  51272. {
  51273. name: "Large",
  51274. height: math.unit(20, "meters")
  51275. },
  51276. {
  51277. name: "Planetary",
  51278. height: math.unit(50, "megameters")
  51279. },
  51280. {
  51281. name: "Stellar",
  51282. height: math.unit(1.5, "gigameters")
  51283. },
  51284. {
  51285. name: "Galactic",
  51286. height: math.unit(100, "exameters")
  51287. },
  51288. ]
  51289. ))
  51290. characterMakers.push(() => makeCharacter(
  51291. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51292. {
  51293. front: {
  51294. height: math.unit(6, "feet"),
  51295. weight: math.unit(210, "lb"),
  51296. name: "Front",
  51297. image: {
  51298. source: "./media/characters/glacia/front.svg",
  51299. extra: 958/901,
  51300. bottom: 45/1003
  51301. }
  51302. },
  51303. },
  51304. [
  51305. {
  51306. name: "Macro",
  51307. height: math.unit(1000, "meters"),
  51308. default: true
  51309. },
  51310. ]
  51311. ))
  51312. characterMakers.push(() => makeCharacter(
  51313. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51314. {
  51315. front: {
  51316. height: math.unit(4, "meters"),
  51317. name: "Front",
  51318. image: {
  51319. source: "./media/characters/giri/front.svg",
  51320. extra: 966/894,
  51321. bottom: 21/987
  51322. }
  51323. },
  51324. },
  51325. [
  51326. {
  51327. name: "Normal",
  51328. height: math.unit(4, "meters"),
  51329. default: true
  51330. },
  51331. ]
  51332. ))
  51333. characterMakers.push(() => makeCharacter(
  51334. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51335. {
  51336. back: {
  51337. height: math.unit(4, "feet"),
  51338. weight: math.unit(37, "lb"),
  51339. name: "Back",
  51340. image: {
  51341. source: "./media/characters/tin/back.svg",
  51342. extra: 845/780,
  51343. bottom: 28/873
  51344. }
  51345. },
  51346. },
  51347. [
  51348. {
  51349. name: "Normal",
  51350. height: math.unit(4, "feet"),
  51351. default: true
  51352. },
  51353. ]
  51354. ))
  51355. characterMakers.push(() => makeCharacter(
  51356. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51357. {
  51358. front: {
  51359. height: math.unit(25, "feet"),
  51360. name: "Front",
  51361. image: {
  51362. source: "./media/characters/cadenza-vivace/front.svg",
  51363. extra: 1842/1578,
  51364. bottom: 30/1872
  51365. }
  51366. },
  51367. },
  51368. [
  51369. {
  51370. name: "Macro",
  51371. height: math.unit(25, "feet"),
  51372. default: true
  51373. },
  51374. ]
  51375. ))
  51376. characterMakers.push(() => makeCharacter(
  51377. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51378. {
  51379. front: {
  51380. height: math.unit(10, "feet"),
  51381. weight: math.unit(625, "kg"),
  51382. name: "Front",
  51383. image: {
  51384. source: "./media/characters/zain/front.svg",
  51385. extra: 1682/1498,
  51386. bottom: 223/1905
  51387. }
  51388. },
  51389. back: {
  51390. height: math.unit(10, "feet"),
  51391. weight: math.unit(625, "kg"),
  51392. name: "Back",
  51393. image: {
  51394. source: "./media/characters/zain/back.svg",
  51395. extra: 1814/1657,
  51396. bottom: 152/1966
  51397. }
  51398. },
  51399. head: {
  51400. height: math.unit(10, "feet"),
  51401. weight: math.unit(625, "kg"),
  51402. name: "Head",
  51403. image: {
  51404. source: "./media/characters/zain/head.svg",
  51405. extra: 1059/762,
  51406. bottom: 0/1059
  51407. }
  51408. },
  51409. },
  51410. [
  51411. {
  51412. name: "Normal",
  51413. height: math.unit(10, "feet"),
  51414. default: true
  51415. },
  51416. ]
  51417. ))
  51418. characterMakers.push(() => makeCharacter(
  51419. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51420. {
  51421. front: {
  51422. height: math.unit(6 + 5/12, "feet"),
  51423. weight: math.unit(750, "lb"),
  51424. name: "Front",
  51425. image: {
  51426. source: "./media/characters/ruchex/front.svg",
  51427. extra: 877/820,
  51428. bottom: 17/894
  51429. },
  51430. extraAttributes: {
  51431. "width": {
  51432. name: "Width",
  51433. power: 1,
  51434. type: "length",
  51435. base: math.unit(4.757, "feet")
  51436. },
  51437. }
  51438. },
  51439. },
  51440. [
  51441. {
  51442. name: "Normal",
  51443. height: math.unit(6 + 5/12, "feet"),
  51444. default: true
  51445. },
  51446. ]
  51447. ))
  51448. characterMakers.push(() => makeCharacter(
  51449. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51450. {
  51451. dressedFront: {
  51452. height: math.unit(191, "cm"),
  51453. weight: math.unit(80, "kg"),
  51454. name: "Front",
  51455. image: {
  51456. source: "./media/characters/buster/dressed-front.svg",
  51457. extra: 1022/973,
  51458. bottom: 69/1091
  51459. }
  51460. },
  51461. dressedBack: {
  51462. height: math.unit(191, "cm"),
  51463. weight: math.unit(80, "kg"),
  51464. name: "Back",
  51465. image: {
  51466. source: "./media/characters/buster/dressed-back.svg",
  51467. extra: 1018/970,
  51468. bottom: 55/1073
  51469. }
  51470. },
  51471. nudeFront: {
  51472. height: math.unit(191, "cm"),
  51473. weight: math.unit(80, "kg"),
  51474. name: "Front (Nude)",
  51475. image: {
  51476. source: "./media/characters/buster/nude-front.svg",
  51477. extra: 1022/973,
  51478. bottom: 69/1091
  51479. }
  51480. },
  51481. nudeBack: {
  51482. height: math.unit(191, "cm"),
  51483. weight: math.unit(80, "kg"),
  51484. name: "Back (Nude)",
  51485. image: {
  51486. source: "./media/characters/buster/nude-back.svg",
  51487. extra: 1018/970,
  51488. bottom: 55/1073
  51489. }
  51490. },
  51491. dick: {
  51492. height: math.unit(2.59, "feet"),
  51493. name: "Dick",
  51494. image: {
  51495. source: "./media/characters/buster/dick.svg"
  51496. }
  51497. },
  51498. ass: {
  51499. height: math.unit(1.2, "feet"),
  51500. name: "Ass",
  51501. image: {
  51502. source: "./media/characters/buster/ass.svg"
  51503. }
  51504. },
  51505. },
  51506. [
  51507. {
  51508. name: "Normal",
  51509. height: math.unit(191, "cm"),
  51510. default: true
  51511. },
  51512. ]
  51513. ))
  51514. characterMakers.push(() => makeCharacter(
  51515. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51516. {
  51517. side: {
  51518. height: math.unit(8.1, "feet"),
  51519. weight: math.unit(3500, "lb"),
  51520. name: "Side",
  51521. image: {
  51522. source: "./media/characters/sonya/side.svg",
  51523. extra: 1730/1317,
  51524. bottom: 86/1816
  51525. }
  51526. },
  51527. },
  51528. [
  51529. {
  51530. name: "Normal",
  51531. height: math.unit(8.1, "feet"),
  51532. default: true
  51533. },
  51534. ]
  51535. ))
  51536. characterMakers.push(() => makeCharacter(
  51537. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51538. {
  51539. front: {
  51540. height: math.unit(6, "feet"),
  51541. weight: math.unit(150, "lb"),
  51542. name: "Front",
  51543. image: {
  51544. source: "./media/characters/cadence-andrysiak/front.svg",
  51545. extra: 1164/1121,
  51546. bottom: 60/1224
  51547. }
  51548. },
  51549. back: {
  51550. height: math.unit(6, "feet"),
  51551. weight: math.unit(150, "lb"),
  51552. name: "Back",
  51553. image: {
  51554. source: "./media/characters/cadence-andrysiak/back.svg",
  51555. extra: 1200/1165,
  51556. bottom: 9/1209
  51557. }
  51558. },
  51559. dressed: {
  51560. height: math.unit(6, "feet"),
  51561. weight: math.unit(150, "lb"),
  51562. name: "Dressed",
  51563. image: {
  51564. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51565. extra: 1164/1121,
  51566. bottom: 60/1224
  51567. }
  51568. },
  51569. },
  51570. [
  51571. {
  51572. name: "Micro",
  51573. height: math.unit(1, "mm")
  51574. },
  51575. {
  51576. name: "Normal",
  51577. height: math.unit(6, "feet"),
  51578. default: true
  51579. },
  51580. ]
  51581. ))
  51582. characterMakers.push(() => makeCharacter(
  51583. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51584. {
  51585. front: {
  51586. height: math.unit(60, "inches"),
  51587. weight: math.unit(16, "lb"),
  51588. preyCapacity: math.unit(80, "liters"),
  51589. name: "Front",
  51590. image: {
  51591. source: "./media/characters/penny-lynx/front.svg",
  51592. extra: 1959/1769,
  51593. bottom: 49/2008
  51594. }
  51595. },
  51596. },
  51597. [
  51598. {
  51599. name: "Nokia",
  51600. height: math.unit(2, "inches")
  51601. },
  51602. {
  51603. name: "Desktop",
  51604. height: math.unit(24, "inches")
  51605. },
  51606. {
  51607. name: "TV",
  51608. height: math.unit(60, "inches")
  51609. },
  51610. {
  51611. name: "Jumbotron",
  51612. height: math.unit(12, "feet")
  51613. },
  51614. {
  51615. name: "Billboard",
  51616. height: math.unit(48, "feet"),
  51617. default: true
  51618. },
  51619. {
  51620. name: "IMAX",
  51621. height: math.unit(96, "feet")
  51622. },
  51623. {
  51624. name: "SINGULARITY",
  51625. height: math.unit(864938, "miles")
  51626. },
  51627. ]
  51628. ))
  51629. characterMakers.push(() => makeCharacter(
  51630. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51631. {
  51632. front: {
  51633. height: math.unit(5 + 4/12, "feet"),
  51634. weight: math.unit(230, "lb"),
  51635. name: "Front",
  51636. image: {
  51637. source: "./media/characters/sukebe/front.svg",
  51638. extra: 2130/2038,
  51639. bottom: 90/2220
  51640. }
  51641. },
  51642. back: {
  51643. height: math.unit(3.48, "feet"),
  51644. weight: math.unit(230, "lb"),
  51645. name: "Back",
  51646. image: {
  51647. source: "./media/characters/sukebe/back.svg",
  51648. extra: 1670/1604,
  51649. bottom: 0/1670
  51650. }
  51651. },
  51652. },
  51653. [
  51654. {
  51655. name: "Normal",
  51656. height: math.unit(5 + 4/12, "feet"),
  51657. default: true
  51658. },
  51659. ]
  51660. ))
  51661. characterMakers.push(() => makeCharacter(
  51662. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51663. {
  51664. front: {
  51665. height: math.unit(6, "feet"),
  51666. name: "Front",
  51667. image: {
  51668. source: "./media/characters/nylla/front.svg",
  51669. extra: 1868/1699,
  51670. bottom: 97/1965
  51671. }
  51672. },
  51673. back: {
  51674. height: math.unit(6, "feet"),
  51675. name: "Back",
  51676. image: {
  51677. source: "./media/characters/nylla/back.svg",
  51678. extra: 1889/1712,
  51679. bottom: 93/1982
  51680. }
  51681. },
  51682. frontNsfw: {
  51683. height: math.unit(6, "feet"),
  51684. name: "Front (NSFW)",
  51685. image: {
  51686. source: "./media/characters/nylla/front-nsfw.svg",
  51687. extra: 1868/1699,
  51688. bottom: 97/1965
  51689. },
  51690. extraAttributes: {
  51691. "dickLength": {
  51692. name: "Dick Length",
  51693. power: 1,
  51694. type: "length",
  51695. base: math.unit(1.4, "feet")
  51696. },
  51697. "cumVolume": {
  51698. name: "Cum Volume",
  51699. power: 3,
  51700. type: "volume",
  51701. base: math.unit(100, "mL")
  51702. },
  51703. }
  51704. },
  51705. backNsfw: {
  51706. height: math.unit(6, "feet"),
  51707. name: "Back (NSFW)",
  51708. image: {
  51709. source: "./media/characters/nylla/back-nsfw.svg",
  51710. extra: 1889/1712,
  51711. bottom: 93/1982
  51712. }
  51713. },
  51714. maw: {
  51715. height: math.unit(2.10, "feet"),
  51716. name: "Maw",
  51717. image: {
  51718. source: "./media/characters/nylla/maw.svg"
  51719. }
  51720. },
  51721. paws: {
  51722. height: math.unit(2.06, "feet"),
  51723. name: "Paws",
  51724. image: {
  51725. source: "./media/characters/nylla/paws.svg"
  51726. }
  51727. },
  51728. muzzle: {
  51729. height: math.unit(0.61, "feet"),
  51730. name: "Muzzle",
  51731. image: {
  51732. source: "./media/characters/nylla/muzzle.svg"
  51733. }
  51734. },
  51735. sheath: {
  51736. height: math.unit(1.305, "feet"),
  51737. name: "Sheath",
  51738. image: {
  51739. source: "./media/characters/nylla/sheath.svg"
  51740. }
  51741. },
  51742. },
  51743. [
  51744. {
  51745. name: "Micro",
  51746. height: math.unit(7.5, "inches")
  51747. },
  51748. {
  51749. name: "Normal",
  51750. height: math.unit(7, "feet"),
  51751. default: true
  51752. },
  51753. {
  51754. name: "Macro",
  51755. height: math.unit(60, "feet")
  51756. },
  51757. {
  51758. name: "Mega",
  51759. height: math.unit(200, "feet")
  51760. },
  51761. ]
  51762. ))
  51763. characterMakers.push(() => makeCharacter(
  51764. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51765. {
  51766. front: {
  51767. height: math.unit(10, "feet"),
  51768. weight: math.unit(2300, "lb"),
  51769. name: "Front",
  51770. image: {
  51771. source: "./media/characters/hunt3r/front.svg",
  51772. extra: 1909/1742,
  51773. bottom: 46/1955
  51774. }
  51775. },
  51776. },
  51777. [
  51778. {
  51779. name: "Normal",
  51780. height: math.unit(10, "feet"),
  51781. default: true
  51782. },
  51783. ]
  51784. ))
  51785. characterMakers.push(() => makeCharacter(
  51786. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51787. {
  51788. dressed: {
  51789. height: math.unit(11, "feet"),
  51790. weight: math.unit(18500, "lb"),
  51791. preyCapacity: math.unit(9, "people"),
  51792. name: "Dressed",
  51793. image: {
  51794. source: "./media/characters/cylphis/dressed.svg",
  51795. extra: 1028/1003,
  51796. bottom: 75/1103
  51797. },
  51798. },
  51799. undressed: {
  51800. height: math.unit(11, "feet"),
  51801. weight: math.unit(18500, "lb"),
  51802. preyCapacity: math.unit(9, "people"),
  51803. name: "Undressed",
  51804. image: {
  51805. source: "./media/characters/cylphis/undressed.svg",
  51806. extra: 1028/1003,
  51807. bottom: 75/1103
  51808. }
  51809. },
  51810. full: {
  51811. height: math.unit(11, "feet"),
  51812. weight: math.unit(18500 + 150*9, "lb"),
  51813. preyCapacity: math.unit(9, "people"),
  51814. name: "Full",
  51815. image: {
  51816. source: "./media/characters/cylphis/full.svg",
  51817. extra: 1028/1003,
  51818. bottom: 75/1103
  51819. }
  51820. },
  51821. },
  51822. [
  51823. {
  51824. name: "Small",
  51825. height: math.unit(8, "feet")
  51826. },
  51827. {
  51828. name: "Normal",
  51829. height: math.unit(11, "feet"),
  51830. default: true
  51831. },
  51832. ]
  51833. ))
  51834. characterMakers.push(() => makeCharacter(
  51835. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51836. {
  51837. front: {
  51838. height: math.unit(2 + 7/12, "feet"),
  51839. name: "Front",
  51840. image: {
  51841. source: "./media/characters/orishan/front.svg",
  51842. extra: 1058/1023,
  51843. bottom: 23/1081
  51844. }
  51845. },
  51846. back: {
  51847. height: math.unit(2 + 7/12, "feet"),
  51848. name: "Back",
  51849. image: {
  51850. source: "./media/characters/orishan/back.svg",
  51851. extra: 1058/1023,
  51852. bottom: 23/1081
  51853. }
  51854. },
  51855. },
  51856. [
  51857. {
  51858. name: "Micro",
  51859. height: math.unit(2, "cm")
  51860. },
  51861. {
  51862. name: "Normal",
  51863. height: math.unit(2 + 7/12, "feet"),
  51864. default: true
  51865. },
  51866. ]
  51867. ))
  51868. characterMakers.push(() => makeCharacter(
  51869. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51870. {
  51871. front: {
  51872. height: math.unit(3, "meters"),
  51873. weight: math.unit(508, "kg"),
  51874. name: "Front",
  51875. image: {
  51876. source: "./media/characters/seranis/front.svg",
  51877. extra: 1478/1454,
  51878. bottom: 41/1519
  51879. }
  51880. },
  51881. },
  51882. [
  51883. {
  51884. name: "Normal",
  51885. height: math.unit(3, "meters"),
  51886. default: true
  51887. },
  51888. {
  51889. name: "Macro",
  51890. height: math.unit(108, "meters")
  51891. },
  51892. {
  51893. name: "Megamacro",
  51894. height: math.unit(1250, "meters")
  51895. },
  51896. ]
  51897. ))
  51898. characterMakers.push(() => makeCharacter(
  51899. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51900. {
  51901. undressed: {
  51902. height: math.unit(5 + 3/12, "feet"),
  51903. name: "Undressed",
  51904. image: {
  51905. source: "./media/characters/ankou/undressed.svg",
  51906. extra: 1301/1213,
  51907. bottom: 87/1388
  51908. }
  51909. },
  51910. dressed: {
  51911. height: math.unit(5 + 3/12, "feet"),
  51912. name: "Dressed",
  51913. image: {
  51914. source: "./media/characters/ankou/dressed.svg",
  51915. extra: 1301/1213,
  51916. bottom: 87/1388
  51917. }
  51918. },
  51919. head: {
  51920. height: math.unit(1.61, "feet"),
  51921. name: "Head",
  51922. image: {
  51923. source: "./media/characters/ankou/head.svg"
  51924. }
  51925. },
  51926. },
  51927. [
  51928. {
  51929. name: "Normal",
  51930. height: math.unit(5 + 3/12, "feet"),
  51931. default: true
  51932. },
  51933. ]
  51934. ))
  51935. characterMakers.push(() => makeCharacter(
  51936. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51937. {
  51938. side: {
  51939. height: math.unit(6 + 3/12, "feet"),
  51940. weight: math.unit(200, "kg"),
  51941. name: "Side",
  51942. image: {
  51943. source: "./media/characters/juniper-skunktaur/side.svg",
  51944. extra: 1574/1229,
  51945. bottom: 38/1612
  51946. }
  51947. },
  51948. front: {
  51949. height: math.unit(6 + 3/12, "feet"),
  51950. weight: math.unit(200, "kg"),
  51951. name: "Front",
  51952. image: {
  51953. source: "./media/characters/juniper-skunktaur/front.svg",
  51954. extra: 1337/1278,
  51955. bottom: 22/1359
  51956. }
  51957. },
  51958. back: {
  51959. height: math.unit(6 + 3/12, "feet"),
  51960. weight: math.unit(200, "kg"),
  51961. name: "Back",
  51962. image: {
  51963. source: "./media/characters/juniper-skunktaur/back.svg",
  51964. extra: 1618/1273,
  51965. bottom: 13/1631
  51966. }
  51967. },
  51968. top: {
  51969. height: math.unit(2.62, "feet"),
  51970. weight: math.unit(200, "kg"),
  51971. name: "Top",
  51972. image: {
  51973. source: "./media/characters/juniper-skunktaur/top.svg"
  51974. }
  51975. },
  51976. },
  51977. [
  51978. {
  51979. name: "Normal",
  51980. height: math.unit(6 + 3/12, "feet"),
  51981. default: true
  51982. },
  51983. ]
  51984. ))
  51985. characterMakers.push(() => makeCharacter(
  51986. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51987. {
  51988. front: {
  51989. height: math.unit(20.5, "feet"),
  51990. name: "Front",
  51991. image: {
  51992. source: "./media/characters/rei/front.svg",
  51993. extra: 1349/1195,
  51994. bottom: 31/1380
  51995. }
  51996. },
  51997. back: {
  51998. height: math.unit(20.5, "feet"),
  51999. name: "Back",
  52000. image: {
  52001. source: "./media/characters/rei/back.svg",
  52002. extra: 1358/1204,
  52003. bottom: 22/1380
  52004. }
  52005. },
  52006. pawsDigi: {
  52007. height: math.unit(3.45, "feet"),
  52008. name: "Paws (Digi)",
  52009. image: {
  52010. source: "./media/characters/rei/paws-digi.svg"
  52011. }
  52012. },
  52013. pawsPlanti: {
  52014. height: math.unit(3.45, "feet"),
  52015. name: "Paws (Planti)",
  52016. image: {
  52017. source: "./media/characters/rei/paws-planti.svg"
  52018. }
  52019. },
  52020. },
  52021. [
  52022. {
  52023. name: "Normal",
  52024. height: math.unit(20.5, "feet"),
  52025. default: true
  52026. },
  52027. ]
  52028. ))
  52029. characterMakers.push(() => makeCharacter(
  52030. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52031. {
  52032. front: {
  52033. height: math.unit(5 + 11/12, "feet"),
  52034. name: "Front",
  52035. image: {
  52036. source: "./media/characters/carina/front.svg",
  52037. extra: 1720/1449,
  52038. bottom: 14/1734
  52039. }
  52040. },
  52041. back: {
  52042. height: math.unit(5 + 11/12, "feet"),
  52043. name: "Back",
  52044. image: {
  52045. source: "./media/characters/carina/back.svg",
  52046. extra: 1493/1445,
  52047. bottom: 17/1510
  52048. }
  52049. },
  52050. paw: {
  52051. height: math.unit(0.92, "feet"),
  52052. name: "Paw",
  52053. image: {
  52054. source: "./media/characters/carina/paw.svg"
  52055. }
  52056. },
  52057. },
  52058. [
  52059. {
  52060. name: "Normal",
  52061. height: math.unit(5 + 11/12, "feet"),
  52062. default: true
  52063. },
  52064. ]
  52065. ))
  52066. characterMakers.push(() => makeCharacter(
  52067. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52068. {
  52069. front: {
  52070. height: math.unit(4.88, "meters"),
  52071. name: "Front",
  52072. image: {
  52073. source: "./media/characters/maya/front.svg",
  52074. extra: 1222/1145,
  52075. bottom: 57/1279
  52076. }
  52077. },
  52078. },
  52079. [
  52080. {
  52081. name: "Normal",
  52082. height: math.unit(4.88, "meters"),
  52083. default: true
  52084. },
  52085. {
  52086. name: "Macro",
  52087. height: math.unit(38.1, "meters")
  52088. },
  52089. {
  52090. name: "Macro+",
  52091. height: math.unit(152.4, "meters")
  52092. },
  52093. {
  52094. name: "Macro++",
  52095. height: math.unit(16.09, "km")
  52096. },
  52097. {
  52098. name: "Mega-macro",
  52099. height: math.unit(700, "megameters")
  52100. },
  52101. ]
  52102. ))
  52103. characterMakers.push(() => makeCharacter(
  52104. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52105. {
  52106. front: {
  52107. height: math.unit(6 + 2/12, "feet"),
  52108. weight: math.unit(500, "lb"),
  52109. preyCapacity: math.unit(4, "people"),
  52110. name: "Front",
  52111. image: {
  52112. source: "./media/characters/yepir/front.svg"
  52113. }
  52114. },
  52115. side: {
  52116. height: math.unit(6 + 2/12, "feet"),
  52117. weight: math.unit(500, "lb"),
  52118. preyCapacity: math.unit(4, "people"),
  52119. name: "Side",
  52120. image: {
  52121. source: "./media/characters/yepir/side.svg"
  52122. }
  52123. },
  52124. paw: {
  52125. height: math.unit(1.05, "feet"),
  52126. name: "Paw",
  52127. image: {
  52128. source: "./media/characters/yepir/paw.svg"
  52129. }
  52130. },
  52131. },
  52132. [
  52133. {
  52134. name: "Normal",
  52135. height: math.unit(6 + 2/12, "feet"),
  52136. default: true
  52137. },
  52138. ]
  52139. ))
  52140. characterMakers.push(() => makeCharacter(
  52141. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52142. {
  52143. front: {
  52144. height: math.unit(5 + 4/12, "feet"),
  52145. name: "Front",
  52146. image: {
  52147. source: "./media/characters/russec/front.svg",
  52148. extra: 1926/1626,
  52149. bottom: 72/1998
  52150. }
  52151. },
  52152. back: {
  52153. height: math.unit(5 + 4/12, "feet"),
  52154. name: "Back",
  52155. image: {
  52156. source: "./media/characters/russec/back.svg",
  52157. extra: 1910/1591,
  52158. bottom: 48/1958
  52159. }
  52160. },
  52161. },
  52162. [
  52163. {
  52164. name: "Small",
  52165. height: math.unit(5 + 4/12, "feet")
  52166. },
  52167. {
  52168. name: "Normal",
  52169. height: math.unit(72, "feet"),
  52170. default: true
  52171. },
  52172. ]
  52173. ))
  52174. characterMakers.push(() => makeCharacter(
  52175. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52176. {
  52177. side: {
  52178. height: math.unit(12, "feet"),
  52179. name: "Side",
  52180. image: {
  52181. source: "./media/characters/cianus/side.svg",
  52182. extra: 808/526,
  52183. bottom: 61/869
  52184. }
  52185. },
  52186. },
  52187. [
  52188. {
  52189. name: "Normal",
  52190. height: math.unit(12, "feet"),
  52191. default: true
  52192. },
  52193. ]
  52194. ))
  52195. characterMakers.push(() => makeCharacter(
  52196. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52197. {
  52198. front: {
  52199. height: math.unit(9 + 6/12, "feet"),
  52200. weight: math.unit(300, "lb"),
  52201. name: "Front",
  52202. image: {
  52203. source: "./media/characters/ahab/front.svg",
  52204. extra: 1897/1868,
  52205. bottom: 121/2018
  52206. }
  52207. },
  52208. frontNsfw: {
  52209. height: math.unit(9 + 6/12, "feet"),
  52210. weight: math.unit(300, "lb"),
  52211. name: "Front-nsfw",
  52212. image: {
  52213. source: "./media/characters/ahab/front-nsfw.svg",
  52214. extra: 1897/1868,
  52215. bottom: 121/2018
  52216. }
  52217. },
  52218. },
  52219. [
  52220. {
  52221. name: "Normal",
  52222. height: math.unit(9 + 6/12, "feet")
  52223. },
  52224. {
  52225. name: "Macro",
  52226. height: math.unit(657, "feet"),
  52227. default: true
  52228. },
  52229. ]
  52230. ))
  52231. characterMakers.push(() => makeCharacter(
  52232. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52233. {
  52234. front: {
  52235. height: math.unit(2.69, "meters"),
  52236. weight: math.unit(132, "kg"),
  52237. name: "Front",
  52238. image: {
  52239. source: "./media/characters/aarkus/front.svg",
  52240. extra: 1400/1231,
  52241. bottom: 34/1434
  52242. }
  52243. },
  52244. back: {
  52245. height: math.unit(2.69, "meters"),
  52246. weight: math.unit(132, "kg"),
  52247. name: "Back",
  52248. image: {
  52249. source: "./media/characters/aarkus/back.svg",
  52250. extra: 1381/1218,
  52251. bottom: 30/1411
  52252. }
  52253. },
  52254. frontNsfw: {
  52255. height: math.unit(2.69, "meters"),
  52256. weight: math.unit(132, "kg"),
  52257. name: "Front (NSFW)",
  52258. image: {
  52259. source: "./media/characters/aarkus/front-nsfw.svg",
  52260. extra: 1400/1231,
  52261. bottom: 34/1434
  52262. }
  52263. },
  52264. foot: {
  52265. height: math.unit(1.45, "feet"),
  52266. name: "Foot",
  52267. image: {
  52268. source: "./media/characters/aarkus/foot.svg"
  52269. }
  52270. },
  52271. head: {
  52272. height: math.unit(2.85, "feet"),
  52273. name: "Head",
  52274. image: {
  52275. source: "./media/characters/aarkus/head.svg"
  52276. }
  52277. },
  52278. headAlt: {
  52279. height: math.unit(3.07, "feet"),
  52280. name: "Head (Alt)",
  52281. image: {
  52282. source: "./media/characters/aarkus/head-alt.svg"
  52283. }
  52284. },
  52285. mouth: {
  52286. height: math.unit(1.25, "feet"),
  52287. name: "Mouth",
  52288. image: {
  52289. source: "./media/characters/aarkus/mouth.svg"
  52290. }
  52291. },
  52292. dick: {
  52293. height: math.unit(1.77, "feet"),
  52294. name: "Dick",
  52295. image: {
  52296. source: "./media/characters/aarkus/dick.svg"
  52297. }
  52298. },
  52299. },
  52300. [
  52301. {
  52302. name: "Normal",
  52303. height: math.unit(2.69, "meters"),
  52304. default: true
  52305. },
  52306. {
  52307. name: "Macro",
  52308. height: math.unit(269, "meters")
  52309. },
  52310. {
  52311. name: "Macro+",
  52312. height: math.unit(672.5, "meters")
  52313. },
  52314. {
  52315. name: "Megamacro",
  52316. height: math.unit(2.017, "km")
  52317. },
  52318. ]
  52319. ))
  52320. characterMakers.push(() => makeCharacter(
  52321. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52322. {
  52323. front: {
  52324. height: math.unit(23.47, "cm"),
  52325. weight: math.unit(600, "grams"),
  52326. name: "Front",
  52327. image: {
  52328. source: "./media/characters/diode/front.svg",
  52329. extra: 1778/1396,
  52330. bottom: 95/1873
  52331. }
  52332. },
  52333. side: {
  52334. height: math.unit(23.47, "cm"),
  52335. weight: math.unit(600, "grams"),
  52336. name: "Side",
  52337. image: {
  52338. source: "./media/characters/diode/side.svg",
  52339. extra: 1831/1404,
  52340. bottom: 86/1917
  52341. }
  52342. },
  52343. wings: {
  52344. height: math.unit(0.683, "feet"),
  52345. name: "Wings",
  52346. image: {
  52347. source: "./media/characters/diode/wings.svg"
  52348. }
  52349. },
  52350. },
  52351. [
  52352. {
  52353. name: "Normal",
  52354. height: math.unit(23.47, "cm"),
  52355. default: true
  52356. },
  52357. ]
  52358. ))
  52359. characterMakers.push(() => makeCharacter(
  52360. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52361. {
  52362. front: {
  52363. height: math.unit(6 + 3/12, "feet"),
  52364. weight: math.unit(250, "lb"),
  52365. name: "Front",
  52366. image: {
  52367. source: "./media/characters/reika/front.svg",
  52368. extra: 1120/1078,
  52369. bottom: 86/1206
  52370. }
  52371. },
  52372. },
  52373. [
  52374. {
  52375. name: "Normal",
  52376. height: math.unit(6 + 3/12, "feet"),
  52377. default: true
  52378. },
  52379. ]
  52380. ))
  52381. characterMakers.push(() => makeCharacter(
  52382. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52383. {
  52384. front: {
  52385. height: math.unit(16 + 8/12, "feet"),
  52386. weight: math.unit(9000, "lb"),
  52387. name: "Front",
  52388. image: {
  52389. source: "./media/characters/lokuto-takama/front.svg",
  52390. extra: 1774/1632,
  52391. bottom: 147/1921
  52392. },
  52393. extraAttributes: {
  52394. "bustWidth": {
  52395. name: "Bust Width",
  52396. power: 1,
  52397. type: "length",
  52398. base: math.unit(2.4, "meters")
  52399. },
  52400. "breastWeight": {
  52401. name: "Breast Weight",
  52402. power: 3,
  52403. type: "mass",
  52404. base: math.unit(1000, "kg")
  52405. },
  52406. }
  52407. },
  52408. },
  52409. [
  52410. {
  52411. name: "Normal",
  52412. height: math.unit(16 + 8/12, "feet"),
  52413. default: true
  52414. },
  52415. ]
  52416. ))
  52417. characterMakers.push(() => makeCharacter(
  52418. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52419. {
  52420. front: {
  52421. height: math.unit(10, "cm"),
  52422. weight: math.unit(850, "grams"),
  52423. name: "Front",
  52424. image: {
  52425. source: "./media/characters/owak-bone/front.svg",
  52426. extra: 1965/1801,
  52427. bottom: 31/1996
  52428. }
  52429. },
  52430. },
  52431. [
  52432. {
  52433. name: "Normal",
  52434. height: math.unit(10, "cm"),
  52435. default: true
  52436. },
  52437. ]
  52438. ))
  52439. characterMakers.push(() => makeCharacter(
  52440. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52441. {
  52442. front: {
  52443. height: math.unit(2 + 6/12, "feet"),
  52444. weight: math.unit(9, "lb"),
  52445. name: "Front",
  52446. image: {
  52447. source: "./media/characters/muffin/front.svg",
  52448. extra: 1220/1195,
  52449. bottom: 84/1304
  52450. }
  52451. },
  52452. },
  52453. [
  52454. {
  52455. name: "Normal",
  52456. height: math.unit(2 + 6/12, "feet"),
  52457. default: true
  52458. },
  52459. ]
  52460. ))
  52461. characterMakers.push(() => makeCharacter(
  52462. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52463. {
  52464. front: {
  52465. height: math.unit(7, "feet"),
  52466. name: "Front",
  52467. image: {
  52468. source: "./media/characters/chimera/front.svg",
  52469. extra: 1752/1614,
  52470. bottom: 68/1820
  52471. }
  52472. },
  52473. },
  52474. [
  52475. {
  52476. name: "Normal",
  52477. height: math.unit(7, "feet")
  52478. },
  52479. {
  52480. name: "Gigamacro",
  52481. height: math.unit(2.9, "gigameters"),
  52482. default: true
  52483. },
  52484. {
  52485. name: "Universal",
  52486. height: math.unit(1.56e26, "yottameters")
  52487. },
  52488. ]
  52489. ))
  52490. characterMakers.push(() => makeCharacter(
  52491. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52492. {
  52493. front: {
  52494. height: math.unit(3, "feet"),
  52495. weight: math.unit(20, "lb"),
  52496. name: "Front",
  52497. image: {
  52498. source: "./media/characters/kit-fennec-fox/front.svg",
  52499. extra: 1027/932,
  52500. bottom: 16/1043
  52501. }
  52502. },
  52503. back: {
  52504. height: math.unit(3, "feet"),
  52505. weight: math.unit(20, "lb"),
  52506. name: "Back",
  52507. image: {
  52508. source: "./media/characters/kit-fennec-fox/back.svg",
  52509. extra: 1027/932,
  52510. bottom: 16/1043
  52511. }
  52512. },
  52513. },
  52514. [
  52515. {
  52516. name: "Normal",
  52517. height: math.unit(3, "feet"),
  52518. default: true
  52519. },
  52520. ]
  52521. ))
  52522. characterMakers.push(() => makeCharacter(
  52523. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52524. {
  52525. front: {
  52526. height: math.unit(167, "cm"),
  52527. name: "Front",
  52528. image: {
  52529. source: "./media/characters/blue-otter/front.svg",
  52530. extra: 1951/1920,
  52531. bottom: 31/1982
  52532. }
  52533. },
  52534. },
  52535. [
  52536. {
  52537. name: "Otter-Sized",
  52538. height: math.unit(100, "cm")
  52539. },
  52540. {
  52541. name: "Normal",
  52542. height: math.unit(167, "cm"),
  52543. default: true
  52544. },
  52545. ]
  52546. ))
  52547. characterMakers.push(() => makeCharacter(
  52548. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52549. {
  52550. front: {
  52551. height: math.unit(4 + 4/12, "feet"),
  52552. name: "Front",
  52553. image: {
  52554. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52555. extra: 1072/1067,
  52556. bottom: 117/1189
  52557. }
  52558. },
  52559. back: {
  52560. height: math.unit(4 + 4/12, "feet"),
  52561. name: "Back",
  52562. image: {
  52563. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52564. extra: 1135/1129,
  52565. bottom: 57/1192
  52566. }
  52567. },
  52568. head: {
  52569. height: math.unit(1.77, "feet"),
  52570. name: "Head",
  52571. image: {
  52572. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52573. }
  52574. },
  52575. },
  52576. [
  52577. {
  52578. name: "Normal",
  52579. height: math.unit(4 + 4/12, "feet"),
  52580. default: true
  52581. },
  52582. ]
  52583. ))
  52584. characterMakers.push(() => makeCharacter(
  52585. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52586. {
  52587. front: {
  52588. height: math.unit(2, "inches"),
  52589. name: "Front",
  52590. image: {
  52591. source: "./media/characters/carley-hartford/front.svg",
  52592. extra: 1035/988,
  52593. bottom: 23/1058
  52594. }
  52595. },
  52596. back: {
  52597. height: math.unit(2, "inches"),
  52598. name: "Back",
  52599. image: {
  52600. source: "./media/characters/carley-hartford/back.svg",
  52601. extra: 1035/988,
  52602. bottom: 23/1058
  52603. }
  52604. },
  52605. dressed: {
  52606. height: math.unit(2, "inches"),
  52607. name: "Dressed",
  52608. image: {
  52609. source: "./media/characters/carley-hartford/dressed.svg",
  52610. extra: 651/620,
  52611. bottom: 0/651
  52612. }
  52613. },
  52614. },
  52615. [
  52616. {
  52617. name: "Micro",
  52618. height: math.unit(2, "inches"),
  52619. default: true
  52620. },
  52621. {
  52622. name: "Macro",
  52623. height: math.unit(6 + 3/12, "feet")
  52624. },
  52625. ]
  52626. ))
  52627. characterMakers.push(() => makeCharacter(
  52628. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52629. {
  52630. front: {
  52631. height: math.unit(2 + 3/12, "feet"),
  52632. weight: math.unit(15 + 7/16, "lb"),
  52633. name: "Front",
  52634. image: {
  52635. source: "./media/characters/duke/front.svg",
  52636. extra: 910/815,
  52637. bottom: 30/940
  52638. }
  52639. },
  52640. },
  52641. [
  52642. {
  52643. name: "Normal",
  52644. height: math.unit(2 + 3/12, "feet"),
  52645. default: true
  52646. },
  52647. ]
  52648. ))
  52649. characterMakers.push(() => makeCharacter(
  52650. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52651. {
  52652. front: {
  52653. height: math.unit(5 + 4/12, "feet"),
  52654. weight: math.unit(156, "lb"),
  52655. name: "Front",
  52656. image: {
  52657. source: "./media/characters/dein/front.svg",
  52658. extra: 855/815,
  52659. bottom: 48/903
  52660. }
  52661. },
  52662. side: {
  52663. height: math.unit(5 + 4/12, "feet"),
  52664. weight: math.unit(156, "lb"),
  52665. name: "side",
  52666. image: {
  52667. source: "./media/characters/dein/side.svg",
  52668. extra: 846/803,
  52669. bottom: 25/871
  52670. }
  52671. },
  52672. maw: {
  52673. height: math.unit(1.45, "feet"),
  52674. name: "Maw",
  52675. image: {
  52676. source: "./media/characters/dein/maw.svg"
  52677. }
  52678. },
  52679. },
  52680. [
  52681. {
  52682. name: "Ferret Sized",
  52683. height: math.unit(2 + 5/12, "feet")
  52684. },
  52685. {
  52686. name: "Normal",
  52687. height: math.unit(5 + 4/12, "feet"),
  52688. default: true
  52689. },
  52690. ]
  52691. ))
  52692. characterMakers.push(() => makeCharacter(
  52693. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52694. {
  52695. front: {
  52696. height: math.unit(84 + 8/12, "feet"),
  52697. weight: math.unit(942180, "lb"),
  52698. name: "Front",
  52699. image: {
  52700. source: "./media/characters/daurine-arima/front.svg",
  52701. extra: 1989/1782,
  52702. bottom: 37/2026
  52703. }
  52704. },
  52705. side: {
  52706. height: math.unit(84 + 8/12, "feet"),
  52707. weight: math.unit(942180, "lb"),
  52708. name: "Side",
  52709. image: {
  52710. source: "./media/characters/daurine-arima/side.svg",
  52711. extra: 1997/1790,
  52712. bottom: 21/2018
  52713. }
  52714. },
  52715. back: {
  52716. height: math.unit(84 + 8/12, "feet"),
  52717. weight: math.unit(942180, "lb"),
  52718. name: "Back",
  52719. image: {
  52720. source: "./media/characters/daurine-arima/back.svg",
  52721. extra: 1992/1800,
  52722. bottom: 12/2004
  52723. }
  52724. },
  52725. head: {
  52726. height: math.unit(15.5, "feet"),
  52727. name: "Head",
  52728. image: {
  52729. source: "./media/characters/daurine-arima/head.svg"
  52730. }
  52731. },
  52732. headAlt: {
  52733. height: math.unit(19.19, "feet"),
  52734. name: "Head (Alt)",
  52735. image: {
  52736. source: "./media/characters/daurine-arima/head-alt.svg"
  52737. }
  52738. },
  52739. },
  52740. [
  52741. {
  52742. name: "Minimum height",
  52743. height: math.unit(8 + 10/12, "feet")
  52744. },
  52745. {
  52746. name: "Comfort height",
  52747. height: math.unit(19 + 6 /12, "feet")
  52748. },
  52749. {
  52750. name: "\"Normal\" height",
  52751. height: math.unit(28 + 10/12, "feet")
  52752. },
  52753. {
  52754. name: "Base height",
  52755. height: math.unit(84 + 8/12, "feet"),
  52756. default: true
  52757. },
  52758. {
  52759. name: "Mini-macro",
  52760. height: math.unit(2360, "feet")
  52761. },
  52762. {
  52763. name: "Macro",
  52764. height: math.unit(10, "miles")
  52765. },
  52766. {
  52767. name: "Goddess",
  52768. height: math.unit(9.99e40, "yottameters")
  52769. },
  52770. ]
  52771. ))
  52772. characterMakers.push(() => makeCharacter(
  52773. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52774. {
  52775. front: {
  52776. height: math.unit(2.3, "meters"),
  52777. name: "Front",
  52778. image: {
  52779. source: "./media/characters/cilenomon/front.svg",
  52780. extra: 1963/1778,
  52781. bottom: 54/2017
  52782. }
  52783. },
  52784. },
  52785. [
  52786. {
  52787. name: "Normal",
  52788. height: math.unit(2.3, "meters"),
  52789. default: true
  52790. },
  52791. {
  52792. name: "Big",
  52793. height: math.unit(5, "meters")
  52794. },
  52795. {
  52796. name: "Macro",
  52797. height: math.unit(30, "meters")
  52798. },
  52799. {
  52800. name: "True",
  52801. height: math.unit(1, "universe")
  52802. },
  52803. ]
  52804. ))
  52805. characterMakers.push(() => makeCharacter(
  52806. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52807. {
  52808. front: {
  52809. height: math.unit(5, "feet"),
  52810. name: "Front",
  52811. image: {
  52812. source: "./media/characters/sen-mink/front.svg",
  52813. extra: 1727/1675,
  52814. bottom: 35/1762
  52815. }
  52816. },
  52817. },
  52818. [
  52819. {
  52820. name: "Normal",
  52821. height: math.unit(5, "feet"),
  52822. default: true
  52823. },
  52824. ]
  52825. ))
  52826. characterMakers.push(() => makeCharacter(
  52827. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52828. {
  52829. front: {
  52830. height: math.unit(5.42999, "feet"),
  52831. weight: math.unit(100, "lb"),
  52832. name: "Front",
  52833. image: {
  52834. source: "./media/characters/ophois/front.svg",
  52835. extra: 1429/1286,
  52836. bottom: 60/1489
  52837. }
  52838. },
  52839. },
  52840. [
  52841. {
  52842. name: "Normal",
  52843. height: math.unit(5.42999, "feet"),
  52844. default: true
  52845. },
  52846. ]
  52847. ))
  52848. characterMakers.push(() => makeCharacter(
  52849. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52850. {
  52851. front: {
  52852. height: math.unit(2, "meters"),
  52853. name: "Front",
  52854. image: {
  52855. source: "./media/characters/riley/front.svg",
  52856. extra: 1779/1754,
  52857. bottom: 139/1918
  52858. }
  52859. },
  52860. },
  52861. [
  52862. {
  52863. name: "Normal",
  52864. height: math.unit(2, "meters"),
  52865. default: true
  52866. },
  52867. ]
  52868. ))
  52869. characterMakers.push(() => makeCharacter(
  52870. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  52871. {
  52872. front: {
  52873. height: math.unit(6 + 2/12, "feet"),
  52874. weight: math.unit(195, "lb"),
  52875. preyCapacity: math.unit(6, "people"),
  52876. name: "Front",
  52877. image: {
  52878. source: "./media/characters/shuken-flash/front.svg",
  52879. extra: 1905/1739,
  52880. bottom: 65/1970
  52881. }
  52882. },
  52883. back: {
  52884. height: math.unit(6 + 2/12, "feet"),
  52885. weight: math.unit(195, "lb"),
  52886. preyCapacity: math.unit(6, "people"),
  52887. name: "Back",
  52888. image: {
  52889. source: "./media/characters/shuken-flash/back.svg",
  52890. extra: 1912/1751,
  52891. bottom: 13/1925
  52892. }
  52893. },
  52894. },
  52895. [
  52896. {
  52897. name: "Normal",
  52898. height: math.unit(6 + 2/12, "feet"),
  52899. default: true
  52900. },
  52901. ]
  52902. ))
  52903. characterMakers.push(() => makeCharacter(
  52904. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  52905. {
  52906. front: {
  52907. height: math.unit(5 + 9/12, "feet"),
  52908. weight: math.unit(150, "lb"),
  52909. name: "Front",
  52910. image: {
  52911. source: "./media/characters/plat/front.svg",
  52912. extra: 1816/1703,
  52913. bottom: 43/1859
  52914. }
  52915. },
  52916. side: {
  52917. height: math.unit(5 + 9/12, "feet"),
  52918. weight: math.unit(300, "lb"),
  52919. name: "Side",
  52920. image: {
  52921. source: "./media/characters/plat/side.svg",
  52922. extra: 1824/1699,
  52923. bottom: 18/1842
  52924. }
  52925. },
  52926. },
  52927. [
  52928. {
  52929. name: "Normal",
  52930. height: math.unit(5 + 9/12, "feet"),
  52931. default: true
  52932. },
  52933. ]
  52934. ))
  52935. characterMakers.push(() => makeCharacter(
  52936. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  52937. {
  52938. front: {
  52939. height: math.unit(9, "feet"),
  52940. weight: math.unit(1800, "lb"),
  52941. name: "Front",
  52942. image: {
  52943. source: "./media/characters/elaine/front.svg",
  52944. extra: 1833/1354,
  52945. bottom: 25/1858
  52946. }
  52947. },
  52948. back: {
  52949. height: math.unit(8.8, "feet"),
  52950. weight: math.unit(1800, "lb"),
  52951. name: "Back",
  52952. image: {
  52953. source: "./media/characters/elaine/back.svg",
  52954. extra: 1641/1233,
  52955. bottom: 53/1694
  52956. }
  52957. },
  52958. },
  52959. [
  52960. {
  52961. name: "Normal",
  52962. height: math.unit(9, "feet"),
  52963. default: true
  52964. },
  52965. ]
  52966. ))
  52967. characterMakers.push(() => makeCharacter(
  52968. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  52969. {
  52970. front: {
  52971. height: math.unit(17 + 9/12, "feet"),
  52972. weight: math.unit(8000, "lb"),
  52973. name: "Front",
  52974. image: {
  52975. source: "./media/characters/vera-raven/front.svg",
  52976. extra: 1457/1412,
  52977. bottom: 121/1578
  52978. }
  52979. },
  52980. side: {
  52981. height: math.unit(17 + 9/12, "feet"),
  52982. weight: math.unit(8000, "lb"),
  52983. name: "Side",
  52984. image: {
  52985. source: "./media/characters/vera-raven/side.svg",
  52986. extra: 1510/1464,
  52987. bottom: 54/1564
  52988. }
  52989. },
  52990. },
  52991. [
  52992. {
  52993. name: "Normal",
  52994. height: math.unit(17 + 9/12, "feet"),
  52995. default: true
  52996. },
  52997. ]
  52998. ))
  52999. characterMakers.push(() => makeCharacter(
  53000. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53001. {
  53002. dressed: {
  53003. height: math.unit(6 + 9/12, "feet"),
  53004. name: "Dressed",
  53005. image: {
  53006. source: "./media/characters/nakisha/dressed.svg",
  53007. extra: 1909/1757,
  53008. bottom: 48/1957
  53009. }
  53010. },
  53011. nude: {
  53012. height: math.unit(6 + 9/12, "feet"),
  53013. name: "Nude",
  53014. image: {
  53015. source: "./media/characters/nakisha/nude.svg",
  53016. extra: 1917/1765,
  53017. bottom: 34/1951
  53018. }
  53019. },
  53020. },
  53021. [
  53022. {
  53023. name: "Normal",
  53024. height: math.unit(6 + 9/12, "feet"),
  53025. default: true
  53026. },
  53027. ]
  53028. ))
  53029. characterMakers.push(() => makeCharacter(
  53030. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53031. {
  53032. front: {
  53033. height: math.unit(87, "meters"),
  53034. name: "Front",
  53035. image: {
  53036. source: "./media/characters/serafin/front.svg",
  53037. extra: 1919/1776,
  53038. bottom: 65/1984
  53039. }
  53040. },
  53041. },
  53042. [
  53043. {
  53044. name: "Normal",
  53045. height: math.unit(87, "meters"),
  53046. default: true
  53047. },
  53048. ]
  53049. ))
  53050. characterMakers.push(() => makeCharacter(
  53051. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53052. {
  53053. front: {
  53054. height: math.unit(6, "feet"),
  53055. weight: math.unit(200, "lb"),
  53056. name: "Front",
  53057. image: {
  53058. source: "./media/characters/poptart/front.svg",
  53059. extra: 615/583,
  53060. bottom: 23/638
  53061. }
  53062. },
  53063. back: {
  53064. height: math.unit(6, "feet"),
  53065. weight: math.unit(200, "lb"),
  53066. name: "Back",
  53067. image: {
  53068. source: "./media/characters/poptart/back.svg",
  53069. extra: 617/584,
  53070. bottom: 22/639
  53071. }
  53072. },
  53073. frontNsfw: {
  53074. height: math.unit(6, "feet"),
  53075. weight: math.unit(200, "lb"),
  53076. name: "Front (NSFW)",
  53077. image: {
  53078. source: "./media/characters/poptart/front-nsfw.svg",
  53079. extra: 615/583,
  53080. bottom: 23/638
  53081. }
  53082. },
  53083. backNsfw: {
  53084. height: math.unit(6, "feet"),
  53085. weight: math.unit(200, "lb"),
  53086. name: "Back (NSFW)",
  53087. image: {
  53088. source: "./media/characters/poptart/back-nsfw.svg",
  53089. extra: 617/584,
  53090. bottom: 22/639
  53091. }
  53092. },
  53093. hand: {
  53094. height: math.unit(1.14, "feet"),
  53095. name: "Hand",
  53096. image: {
  53097. source: "./media/characters/poptart/hand.svg"
  53098. }
  53099. },
  53100. foot: {
  53101. height: math.unit(1.5, "feet"),
  53102. name: "Foot",
  53103. image: {
  53104. source: "./media/characters/poptart/foot.svg"
  53105. }
  53106. },
  53107. },
  53108. [
  53109. {
  53110. name: "Normal",
  53111. height: math.unit(6, "feet"),
  53112. default: true
  53113. },
  53114. {
  53115. name: "Grande",
  53116. height: math.unit(350, "feet")
  53117. },
  53118. {
  53119. name: "Massif",
  53120. height: math.unit(967, "feet")
  53121. },
  53122. ]
  53123. ))
  53124. characterMakers.push(() => makeCharacter(
  53125. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53126. {
  53127. hyenaSide: {
  53128. height: math.unit(120, "cm"),
  53129. weight: math.unit(120, "lb"),
  53130. name: "Side",
  53131. image: {
  53132. source: "./media/characters/trance/hyena-side.svg",
  53133. extra: 998/904,
  53134. bottom: 76/1074
  53135. }
  53136. },
  53137. },
  53138. [
  53139. {
  53140. name: "Normal",
  53141. height: math.unit(120, "cm"),
  53142. default: true
  53143. },
  53144. {
  53145. name: "Dire",
  53146. height: math.unit(230, "cm")
  53147. },
  53148. {
  53149. name: "Macro",
  53150. height: math.unit(37, "feet")
  53151. },
  53152. ]
  53153. ))
  53154. characterMakers.push(() => makeCharacter(
  53155. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53156. {
  53157. front: {
  53158. height: math.unit(6 + 3/12, "feet"),
  53159. name: "Front",
  53160. image: {
  53161. source: "./media/characters/michael-berretta/front.svg",
  53162. extra: 515/494,
  53163. bottom: 20/535
  53164. }
  53165. },
  53166. back: {
  53167. height: math.unit(6 + 3/12, "feet"),
  53168. name: "Back",
  53169. image: {
  53170. source: "./media/characters/michael-berretta/back.svg",
  53171. extra: 520/497,
  53172. bottom: 21/541
  53173. }
  53174. },
  53175. frontNsfw: {
  53176. height: math.unit(6 + 3/12, "feet"),
  53177. name: "Front (NSFW)",
  53178. image: {
  53179. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53180. extra: 515/494,
  53181. bottom: 20/535
  53182. }
  53183. },
  53184. dick: {
  53185. height: math.unit(1, "feet"),
  53186. name: "Dick",
  53187. image: {
  53188. source: "./media/characters/michael-berretta/dick.svg"
  53189. }
  53190. },
  53191. },
  53192. [
  53193. {
  53194. name: "Normal",
  53195. height: math.unit(6 + 3/12, "feet"),
  53196. default: true
  53197. },
  53198. {
  53199. name: "Big",
  53200. height: math.unit(12, "feet")
  53201. },
  53202. {
  53203. name: "Macro",
  53204. height: math.unit(187.5, "feet")
  53205. },
  53206. ]
  53207. ))
  53208. characterMakers.push(() => makeCharacter(
  53209. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53210. {
  53211. front: {
  53212. height: math.unit(9 + 9/12, "feet"),
  53213. weight: math.unit(1244, "lb"),
  53214. name: "Front",
  53215. image: {
  53216. source: "./media/characters/stella-edgecomb/front.svg",
  53217. extra: 1835/1706,
  53218. bottom: 49/1884
  53219. }
  53220. },
  53221. pen: {
  53222. height: math.unit(0.95, "feet"),
  53223. name: "Pen",
  53224. image: {
  53225. source: "./media/characters/stella-edgecomb/pen.svg"
  53226. }
  53227. },
  53228. },
  53229. [
  53230. {
  53231. name: "Cozy Bear",
  53232. height: math.unit(0.5, "inches")
  53233. },
  53234. {
  53235. name: "Normal",
  53236. height: math.unit(9 + 9/12, "feet"),
  53237. default: true
  53238. },
  53239. {
  53240. name: "Giga Bear",
  53241. height: math.unit(1, "mile")
  53242. },
  53243. {
  53244. name: "Great Bear",
  53245. height: math.unit(53, "miles")
  53246. },
  53247. {
  53248. name: "Goddess Bear",
  53249. height: math.unit(40000, "miles")
  53250. },
  53251. {
  53252. name: "Sun Bear",
  53253. height: math.unit(900000, "miles")
  53254. },
  53255. ]
  53256. ))
  53257. characterMakers.push(() => makeCharacter(
  53258. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53259. {
  53260. anthroFront: {
  53261. height: math.unit(556, "cm"),
  53262. weight: math.unit(2650, "kg"),
  53263. preyCapacity: math.unit(3, "people"),
  53264. name: "Front",
  53265. image: {
  53266. source: "./media/characters/ash´iika/front.svg",
  53267. extra: 710/673,
  53268. bottom: 15/725
  53269. },
  53270. form: "anthro",
  53271. default: true
  53272. },
  53273. anthroSide: {
  53274. height: math.unit(556, "cm"),
  53275. weight: math.unit(2650, "kg"),
  53276. preyCapacity: math.unit(3, "people"),
  53277. name: "Side",
  53278. image: {
  53279. source: "./media/characters/ash´iika/side.svg",
  53280. extra: 696/676,
  53281. bottom: 13/709
  53282. },
  53283. form: "anthro"
  53284. },
  53285. anthroDressed: {
  53286. height: math.unit(556, "cm"),
  53287. weight: math.unit(2650, "kg"),
  53288. preyCapacity: math.unit(3, "people"),
  53289. name: "Dressed",
  53290. image: {
  53291. source: "./media/characters/ash´iika/dressed.svg",
  53292. extra: 710/673,
  53293. bottom: 15/725
  53294. },
  53295. form: "anthro"
  53296. },
  53297. anthroHead: {
  53298. height: math.unit(3.5, "feet"),
  53299. name: "Head",
  53300. image: {
  53301. source: "./media/characters/ash´iika/head.svg",
  53302. extra: 348/291,
  53303. bottom: 45/393
  53304. },
  53305. form: "anthro"
  53306. },
  53307. feralSide: {
  53308. height: math.unit(870, "cm"),
  53309. weight: math.unit(17500, "kg"),
  53310. preyCapacity: math.unit(15, "people"),
  53311. name: "Side",
  53312. image: {
  53313. source: "./media/characters/ash´iika/feral.svg",
  53314. extra: 595/199,
  53315. bottom: 7/602
  53316. },
  53317. form: "feral",
  53318. default: true,
  53319. },
  53320. },
  53321. [
  53322. {
  53323. name: "Normal",
  53324. height: math.unit(556, "cm"),
  53325. default: true,
  53326. form: "anthro"
  53327. },
  53328. {
  53329. name: "Macro",
  53330. height: math.unit(88, "meters"),
  53331. form: "anthro"
  53332. },
  53333. {
  53334. name: "Normal",
  53335. height: math.unit(870, "cm"),
  53336. default: true,
  53337. form: "feral"
  53338. },
  53339. {
  53340. name: "Large",
  53341. height: math.unit(25, "meters"),
  53342. form: "feral"
  53343. },
  53344. ],
  53345. {
  53346. "anthro": {
  53347. name: "Anthro",
  53348. default: true
  53349. },
  53350. "feral": {
  53351. name: "Feral",
  53352. },
  53353. }
  53354. ))
  53355. characterMakers.push(() => makeCharacter(
  53356. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53357. {
  53358. front: {
  53359. height: math.unit(10, "feet"),
  53360. weight: math.unit(800, "lb"),
  53361. name: "Front",
  53362. image: {
  53363. source: "./media/characters/yen/front.svg",
  53364. extra: 443/411,
  53365. bottom: 6/449
  53366. }
  53367. },
  53368. sleeping: {
  53369. height: math.unit(10, "feet"),
  53370. weight: math.unit(800, "lb"),
  53371. name: "Sleeping",
  53372. image: {
  53373. source: "./media/characters/yen/sleeping.svg",
  53374. extra: 470/422,
  53375. bottom: 0/470
  53376. }
  53377. },
  53378. head: {
  53379. height: math.unit(2.2, "feet"),
  53380. name: "Head",
  53381. image: {
  53382. source: "./media/characters/yen/head.svg"
  53383. }
  53384. },
  53385. headAlt: {
  53386. height: math.unit(2.1, "feet"),
  53387. name: "Head (Alt)",
  53388. image: {
  53389. source: "./media/characters/yen/head-alt.svg"
  53390. }
  53391. },
  53392. },
  53393. [
  53394. {
  53395. name: "Normal",
  53396. height: math.unit(10, "feet"),
  53397. default: true
  53398. },
  53399. ]
  53400. ))
  53401. characterMakers.push(() => makeCharacter(
  53402. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53403. {
  53404. front: {
  53405. height: math.unit(12, "feet"),
  53406. name: "Front",
  53407. image: {
  53408. source: "./media/characters/citra/front.svg",
  53409. extra: 1950/1710,
  53410. bottom: 47/1997
  53411. }
  53412. },
  53413. },
  53414. [
  53415. {
  53416. name: "Normal",
  53417. height: math.unit(12, "feet"),
  53418. default: true
  53419. },
  53420. ]
  53421. ))
  53422. characterMakers.push(() => makeCharacter(
  53423. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53424. {
  53425. side: {
  53426. height: math.unit(7 + 10/12, "feet"),
  53427. name: "Side",
  53428. image: {
  53429. source: "./media/characters/sholstim/side.svg",
  53430. extra: 786/682,
  53431. bottom: 40/826
  53432. }
  53433. },
  53434. },
  53435. [
  53436. {
  53437. name: "Normal",
  53438. height: math.unit(7 + 10/12, "feet"),
  53439. default: true
  53440. },
  53441. ]
  53442. ))
  53443. characterMakers.push(() => makeCharacter(
  53444. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53445. {
  53446. front: {
  53447. height: math.unit(3.10, "meters"),
  53448. name: "Front",
  53449. image: {
  53450. source: "./media/characters/aggyn/front.svg",
  53451. extra: 1188/963,
  53452. bottom: 24/1212
  53453. }
  53454. },
  53455. },
  53456. [
  53457. {
  53458. name: "Normal",
  53459. height: math.unit(3.10, "meters"),
  53460. default: true
  53461. },
  53462. ]
  53463. ))
  53464. characterMakers.push(() => makeCharacter(
  53465. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53466. {
  53467. front: {
  53468. height: math.unit(7 + 5/12, "feet"),
  53469. weight: math.unit(687, "lb"),
  53470. name: "Front",
  53471. image: {
  53472. source: "./media/characters/alsandair-hergenroether/front.svg",
  53473. extra: 1251/1186,
  53474. bottom: 75/1326
  53475. }
  53476. },
  53477. back: {
  53478. height: math.unit(7 + 5/12, "feet"),
  53479. weight: math.unit(687, "lb"),
  53480. name: "Back",
  53481. image: {
  53482. source: "./media/characters/alsandair-hergenroether/back.svg",
  53483. extra: 1290/1229,
  53484. bottom: 17/1307
  53485. }
  53486. },
  53487. },
  53488. [
  53489. {
  53490. name: "Max Compression",
  53491. height: math.unit(7 + 5/12, "feet"),
  53492. default: true
  53493. },
  53494. {
  53495. name: "\"Normal\"",
  53496. height: math.unit(2, "universes")
  53497. },
  53498. ]
  53499. ))
  53500. characterMakers.push(() => makeCharacter(
  53501. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53502. {
  53503. front: {
  53504. height: math.unit(4 + 1/12, "feet"),
  53505. weight: math.unit(92, "lb"),
  53506. name: "Front",
  53507. image: {
  53508. source: "./media/characters/ie/front.svg",
  53509. extra: 1585/1352,
  53510. bottom: 91/1676
  53511. }
  53512. },
  53513. },
  53514. [
  53515. {
  53516. name: "Normal",
  53517. height: math.unit(4 + 1/12, "feet"),
  53518. default: true
  53519. },
  53520. ]
  53521. ))
  53522. characterMakers.push(() => makeCharacter(
  53523. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53524. {
  53525. anthro: {
  53526. height: math.unit(6, "feet"),
  53527. weight: math.unit(150, "lb"),
  53528. name: "Front",
  53529. image: {
  53530. source: "./media/characters/willow/anthro.svg",
  53531. extra: 1073/986,
  53532. bottom: 34/1107
  53533. },
  53534. form: "anthro",
  53535. default: true
  53536. },
  53537. taur: {
  53538. height: math.unit(6, "feet"),
  53539. weight: math.unit(150, "lb"),
  53540. name: "Side",
  53541. image: {
  53542. source: "./media/characters/willow/taur.svg",
  53543. extra: 647/512,
  53544. bottom: 136/783
  53545. },
  53546. form: "taur",
  53547. default: true
  53548. },
  53549. },
  53550. [
  53551. {
  53552. name: "Humanoid",
  53553. height: math.unit(2.7, "meters"),
  53554. form: "anthro"
  53555. },
  53556. {
  53557. name: "Normal",
  53558. height: math.unit(9, "meters"),
  53559. form: "anthro",
  53560. default: true
  53561. },
  53562. {
  53563. name: "Humanoid",
  53564. height: math.unit(2.1, "meters"),
  53565. form: "taur"
  53566. },
  53567. {
  53568. name: "Normal",
  53569. height: math.unit(7, "meters"),
  53570. form: "taur",
  53571. default: true
  53572. },
  53573. ],
  53574. {
  53575. "anthro": {
  53576. name: "Anthro",
  53577. default: true
  53578. },
  53579. "taur": {
  53580. name: "Taur",
  53581. },
  53582. }
  53583. ))
  53584. characterMakers.push(() => makeCharacter(
  53585. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53586. {
  53587. front: {
  53588. height: math.unit(2 + 5/12, "feet"),
  53589. name: "Front",
  53590. image: {
  53591. source: "./media/characters/kyan/front.svg",
  53592. extra: 460/334,
  53593. bottom: 23/483
  53594. },
  53595. extraAttributes: {
  53596. "toeLength": {
  53597. name: "Toe Length",
  53598. power: 1,
  53599. type: "length",
  53600. base: math.unit(7, "cm")
  53601. },
  53602. "toeclawLength": {
  53603. name: "Toeclaw Length",
  53604. power: 1,
  53605. type: "length",
  53606. base: math.unit(4.7, "cm")
  53607. },
  53608. "earHeight": {
  53609. name: "Ear Height",
  53610. power: 1,
  53611. type: "length",
  53612. base: math.unit(14.1, "cm")
  53613. },
  53614. }
  53615. },
  53616. paws: {
  53617. height: math.unit(0.45, "feet"),
  53618. name: "Paws",
  53619. image: {
  53620. source: "./media/characters/kyan/paws.svg",
  53621. extra: 581/581,
  53622. bottom: 114/695
  53623. }
  53624. },
  53625. },
  53626. [
  53627. {
  53628. name: "Normal",
  53629. height: math.unit(2 + 5/12, "feet"),
  53630. default: true
  53631. },
  53632. ]
  53633. ))
  53634. characterMakers.push(() => makeCharacter(
  53635. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53636. {
  53637. front: {
  53638. height: math.unit(2 + 2/3, "feet"),
  53639. name: "Front",
  53640. image: {
  53641. source: "./media/characters/xazzon/front.svg",
  53642. extra: 1109/984,
  53643. bottom: 42/1151
  53644. }
  53645. },
  53646. back: {
  53647. height: math.unit(2 + 2/3, "feet"),
  53648. name: "Back",
  53649. image: {
  53650. source: "./media/characters/xazzon/back.svg",
  53651. extra: 1095/971,
  53652. bottom: 23/1118
  53653. }
  53654. },
  53655. },
  53656. [
  53657. {
  53658. name: "Normal",
  53659. height: math.unit(2 + 2/3, "feet"),
  53660. default: true
  53661. },
  53662. ]
  53663. ))
  53664. characterMakers.push(() => makeCharacter(
  53665. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53666. {
  53667. dressed: {
  53668. height: math.unit(5 + 7/12, "feet"),
  53669. weight: math.unit(173, "lb"),
  53670. name: "Dressed",
  53671. image: {
  53672. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53673. extra: 3262/2862,
  53674. bottom: 188/3450
  53675. }
  53676. },
  53677. undressed: {
  53678. height: math.unit(5 + 7/12, "feet"),
  53679. weight: math.unit(173, "lb"),
  53680. name: "Undressed",
  53681. image: {
  53682. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53683. extra: 3262/2862,
  53684. bottom: 188/3450
  53685. }
  53686. },
  53687. },
  53688. [
  53689. {
  53690. name: "The void",
  53691. height: math.unit(7.29193e-34, "angstroms")
  53692. },
  53693. {
  53694. name: "Uh-Oh.",
  53695. height: math.unit(5.734e-7, "angstroms")
  53696. },
  53697. {
  53698. name: "Pico",
  53699. height: math.unit(0.876, "angstroms")
  53700. },
  53701. {
  53702. name: "Nano",
  53703. height: math.unit(0.000134200, "mm")
  53704. },
  53705. {
  53706. name: "Micro",
  53707. height: math.unit(0.0673020, "mm")
  53708. },
  53709. {
  53710. name: "Tiny",
  53711. height: math.unit(2.4, "mm")
  53712. },
  53713. {
  53714. name: "Actual Normal",
  53715. height: math.unit(3, "inches"),
  53716. default: true
  53717. },
  53718. {
  53719. name: "Normal",
  53720. height: math.unit(5 + 8/12, "feet")
  53721. },
  53722. {
  53723. name: "Giant",
  53724. height: math.unit(12, "feet")
  53725. },
  53726. {
  53727. name: "City Ruler",
  53728. height: math.unit(270, "meters")
  53729. },
  53730. {
  53731. name: "Giga",
  53732. height: math.unit(1117.6, "km")
  53733. },
  53734. {
  53735. name: "All-Powerful Queen",
  53736. height: math.unit(70.8, "gigameters")
  53737. },
  53738. {
  53739. name: "'Goddess'",
  53740. height: math.unit(600, "yottameters")
  53741. },
  53742. {
  53743. name: "Biggest!",
  53744. height: math.unit(4.23e5, "yottameters")
  53745. },
  53746. ]
  53747. ))
  53748. characterMakers.push(() => makeCharacter(
  53749. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53750. {
  53751. front: {
  53752. height: math.unit(8, "feet"),
  53753. weight: math.unit(300, "lb"),
  53754. name: "Front",
  53755. image: {
  53756. source: "./media/characters/khyla-shadowsong/front.svg",
  53757. extra: 861/798,
  53758. bottom: 32/893
  53759. }
  53760. },
  53761. side: {
  53762. height: math.unit(8, "feet"),
  53763. weight: math.unit(300, "lb"),
  53764. name: "Side",
  53765. image: {
  53766. source: "./media/characters/khyla-shadowsong/side.svg",
  53767. extra: 790/750,
  53768. bottom: 87/877
  53769. }
  53770. },
  53771. back: {
  53772. height: math.unit(8, "feet"),
  53773. weight: math.unit(300, "lb"),
  53774. name: "Back",
  53775. image: {
  53776. source: "./media/characters/khyla-shadowsong/back.svg",
  53777. extra: 855/808,
  53778. bottom: 14/869
  53779. }
  53780. },
  53781. head: {
  53782. height: math.unit(2.7, "feet"),
  53783. name: "Head",
  53784. image: {
  53785. source: "./media/characters/khyla-shadowsong/head.svg"
  53786. }
  53787. },
  53788. },
  53789. [
  53790. {
  53791. name: "Micro",
  53792. height: math.unit(6, "inches")
  53793. },
  53794. {
  53795. name: "Normal",
  53796. height: math.unit(8, "feet"),
  53797. default: true
  53798. },
  53799. ]
  53800. ))
  53801. characterMakers.push(() => makeCharacter(
  53802. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53803. {
  53804. hyperFront: {
  53805. height: math.unit(9 + 4/12, "feet"),
  53806. weight: math.unit(2000, "lb"),
  53807. name: "Front",
  53808. image: {
  53809. source: "./media/characters/tiden/hyper-front.svg",
  53810. extra: 400/382,
  53811. bottom: 6/406
  53812. },
  53813. form: "hyper",
  53814. },
  53815. regularFront: {
  53816. height: math.unit(7 + 10/12, "feet"),
  53817. weight: math.unit(470, "lb"),
  53818. name: "Front",
  53819. image: {
  53820. source: "./media/characters/tiden/regular-front.svg",
  53821. extra: 468/442,
  53822. bottom: 6/474
  53823. },
  53824. form: "regular",
  53825. },
  53826. },
  53827. [
  53828. {
  53829. name: "Normal",
  53830. height: math.unit(9 + 4/12, "feet"),
  53831. default: true,
  53832. form: "hyper"
  53833. },
  53834. {
  53835. name: "Normal",
  53836. height: math.unit(7 + 10/12, "feet"),
  53837. default: true,
  53838. form: "regular"
  53839. },
  53840. ],
  53841. {
  53842. "hyper": {
  53843. name: "Hyper",
  53844. default: true
  53845. },
  53846. "regular": {
  53847. name: "Regular",
  53848. },
  53849. }
  53850. ))
  53851. characterMakers.push(() => makeCharacter(
  53852. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  53853. {
  53854. side: {
  53855. height: math.unit(6, "feet"),
  53856. weight: math.unit(150, "lb"),
  53857. name: "Side",
  53858. image: {
  53859. source: "./media/characters/jason-crowe/side.svg",
  53860. extra: 1771/766,
  53861. bottom: 219/1990
  53862. }
  53863. },
  53864. },
  53865. [
  53866. {
  53867. name: "Pocket Gryphon",
  53868. height: math.unit(6, "cm")
  53869. },
  53870. {
  53871. name: "Raven",
  53872. height: math.unit(60, "cm")
  53873. },
  53874. {
  53875. name: "Normal",
  53876. height: math.unit(1, "meter"),
  53877. default: true
  53878. },
  53879. ]
  53880. ))
  53881. characterMakers.push(() => makeCharacter(
  53882. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  53883. {
  53884. front: {
  53885. height: math.unit(9 + 6/12, "feet"),
  53886. weight: math.unit(1100, "lb"),
  53887. name: "Front",
  53888. image: {
  53889. source: "./media/characters/django/front.svg",
  53890. extra: 1231/1136,
  53891. bottom: 34/1265
  53892. }
  53893. },
  53894. side: {
  53895. height: math.unit(9 + 6/12, "feet"),
  53896. weight: math.unit(1100, "lb"),
  53897. name: "Side",
  53898. image: {
  53899. source: "./media/characters/django/side.svg",
  53900. extra: 1267/1174,
  53901. bottom: 9/1276
  53902. }
  53903. },
  53904. },
  53905. [
  53906. {
  53907. name: "Normal",
  53908. height: math.unit(9 + 6/12, "feet"),
  53909. default: true
  53910. },
  53911. {
  53912. name: "Macro 1",
  53913. height: math.unit(50, "feet")
  53914. },
  53915. {
  53916. name: "Macro 2",
  53917. height: math.unit(500, "feet")
  53918. },
  53919. {
  53920. name: "Mega Macro",
  53921. height: math.unit(5300, "feet")
  53922. },
  53923. ]
  53924. ))
  53925. characterMakers.push(() => makeCharacter(
  53926. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  53927. {
  53928. frontSfw: {
  53929. height: math.unit(120, "cm"),
  53930. weight: math.unit(15, "kg"),
  53931. name: "Front (SFW)",
  53932. image: {
  53933. source: "./media/characters/eri/front-sfw.svg",
  53934. extra: 1014/939,
  53935. bottom: 37/1051
  53936. },
  53937. form: "moth",
  53938. },
  53939. frontNsfw: {
  53940. height: math.unit(120, "cm"),
  53941. weight: math.unit(15, "kg"),
  53942. name: "Front (NSFW)",
  53943. image: {
  53944. source: "./media/characters/eri/front-nsfw.svg",
  53945. extra: 1014/939,
  53946. bottom: 37/1051
  53947. },
  53948. form: "moth",
  53949. default: true
  53950. },
  53951. egg: {
  53952. height: math.unit(10, "cm"),
  53953. name: "Egg",
  53954. image: {
  53955. source: "./media/characters/eri/egg.svg"
  53956. },
  53957. form: "egg",
  53958. default: true
  53959. },
  53960. },
  53961. [
  53962. {
  53963. name: "Normal",
  53964. height: math.unit(120, "cm"),
  53965. default: true,
  53966. form: "moth"
  53967. },
  53968. {
  53969. name: "Normal",
  53970. height: math.unit(10, "cm"),
  53971. default: true,
  53972. form: "egg"
  53973. },
  53974. ],
  53975. {
  53976. "moth": {
  53977. name: "Moth",
  53978. default: true
  53979. },
  53980. "egg": {
  53981. name: "Egg",
  53982. },
  53983. }
  53984. ))
  53985. characterMakers.push(() => makeCharacter(
  53986. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  53987. {
  53988. front: {
  53989. height: math.unit(200, "feet"),
  53990. name: "Front",
  53991. image: {
  53992. source: "./media/characters/bishop-dowser/front.svg",
  53993. extra: 933/868,
  53994. bottom: 106/1039
  53995. }
  53996. },
  53997. },
  53998. [
  53999. {
  54000. name: "Giant",
  54001. height: math.unit(200, "feet"),
  54002. default: true
  54003. },
  54004. ]
  54005. ))
  54006. characterMakers.push(() => makeCharacter(
  54007. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54008. {
  54009. front: {
  54010. height: math.unit(2, "meters"),
  54011. preyCapacity: math.unit(3, "people"),
  54012. name: "Front",
  54013. image: {
  54014. source: "./media/characters/fryra/front.svg",
  54015. extra: 1025/948,
  54016. bottom: 30/1055
  54017. },
  54018. extraAttributes: {
  54019. "breastVolume": {
  54020. name: "Breast Volume",
  54021. power: 3,
  54022. type: "volume",
  54023. base: math.unit(8, "liters")
  54024. },
  54025. }
  54026. },
  54027. back: {
  54028. height: math.unit(2, "meters"),
  54029. preyCapacity: math.unit(3, "people"),
  54030. name: "Back",
  54031. image: {
  54032. source: "./media/characters/fryra/back.svg",
  54033. extra: 993/938,
  54034. bottom: 38/1031
  54035. },
  54036. extraAttributes: {
  54037. "breastVolume": {
  54038. name: "Breast Volume",
  54039. power: 3,
  54040. type: "volume",
  54041. base: math.unit(8, "liters")
  54042. },
  54043. }
  54044. },
  54045. head: {
  54046. height: math.unit(1.33, "feet"),
  54047. name: "Head",
  54048. image: {
  54049. source: "./media/characters/fryra/head.svg"
  54050. }
  54051. },
  54052. maw: {
  54053. height: math.unit(0.56, "feet"),
  54054. name: "Maw",
  54055. image: {
  54056. source: "./media/characters/fryra/maw.svg"
  54057. }
  54058. },
  54059. },
  54060. [
  54061. {
  54062. name: "Micro",
  54063. height: math.unit(5, "cm")
  54064. },
  54065. {
  54066. name: "Normal",
  54067. height: math.unit(2, "meters"),
  54068. default: true
  54069. },
  54070. {
  54071. name: "Small Macro",
  54072. height: math.unit(8, "meters")
  54073. },
  54074. {
  54075. name: "Macro",
  54076. height: math.unit(50, "meters")
  54077. },
  54078. {
  54079. name: "Megamacro",
  54080. height: math.unit(1, "km")
  54081. },
  54082. {
  54083. name: "Planetary",
  54084. height: math.unit(300000, "km")
  54085. },
  54086. {
  54087. name: "Universal",
  54088. height: math.unit(250, "lightyears")
  54089. },
  54090. {
  54091. name: "Fabric of Reality",
  54092. height: math.unit(1000, "multiverses")
  54093. },
  54094. ]
  54095. ))
  54096. characterMakers.push(() => makeCharacter(
  54097. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54098. {
  54099. frontDressed: {
  54100. height: math.unit(6 + 2/12, "feet"),
  54101. name: "Front (Dressed)",
  54102. image: {
  54103. source: "./media/characters/fiera/front-dressed.svg",
  54104. extra: 1883/1793,
  54105. bottom: 70/1953
  54106. }
  54107. },
  54108. backDressed: {
  54109. height: math.unit(6 + 2/12, "feet"),
  54110. name: "Back (Dressed)",
  54111. image: {
  54112. source: "./media/characters/fiera/back-dressed.svg",
  54113. extra: 1847/1780,
  54114. bottom: 70/1917
  54115. }
  54116. },
  54117. frontNude: {
  54118. height: math.unit(6 + 2/12, "feet"),
  54119. name: "Front (Nude)",
  54120. image: {
  54121. source: "./media/characters/fiera/front-nude.svg",
  54122. extra: 1875/1785,
  54123. bottom: 66/1941
  54124. }
  54125. },
  54126. backNude: {
  54127. height: math.unit(6 + 2/12, "feet"),
  54128. name: "Back (Nude)",
  54129. image: {
  54130. source: "./media/characters/fiera/back-nude.svg",
  54131. extra: 1855/1788,
  54132. bottom: 44/1899
  54133. }
  54134. },
  54135. maw: {
  54136. height: math.unit(1.3, "feet"),
  54137. name: "Maw",
  54138. image: {
  54139. source: "./media/characters/fiera/maw.svg"
  54140. }
  54141. },
  54142. paw: {
  54143. height: math.unit(1, "feet"),
  54144. name: "Paw",
  54145. image: {
  54146. source: "./media/characters/fiera/paw.svg"
  54147. }
  54148. },
  54149. shoe: {
  54150. height: math.unit(1.05, "feet"),
  54151. name: "Shoe",
  54152. image: {
  54153. source: "./media/characters/fiera/shoe.svg"
  54154. }
  54155. },
  54156. },
  54157. [
  54158. {
  54159. name: "Normal",
  54160. height: math.unit(6 + 2/12, "feet"),
  54161. default: true
  54162. },
  54163. {
  54164. name: "Size Difference",
  54165. height: math.unit(13, "feet")
  54166. },
  54167. {
  54168. name: "Macro",
  54169. height: math.unit(60, "feet")
  54170. },
  54171. {
  54172. name: "Mega Macro",
  54173. height: math.unit(200, "feet")
  54174. },
  54175. ]
  54176. ))
  54177. characterMakers.push(() => makeCharacter(
  54178. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54179. {
  54180. back: {
  54181. height: math.unit(6, "feet"),
  54182. name: "Back",
  54183. image: {
  54184. source: "./media/characters/flare/back.svg",
  54185. extra: 1883/1765,
  54186. bottom: 32/1915
  54187. }
  54188. },
  54189. },
  54190. [
  54191. {
  54192. name: "Normal",
  54193. height: math.unit(6 + 2/12, "feet"),
  54194. default: true
  54195. },
  54196. {
  54197. name: "Size Difference",
  54198. height: math.unit(13, "feet")
  54199. },
  54200. {
  54201. name: "Macro",
  54202. height: math.unit(60, "feet")
  54203. },
  54204. {
  54205. name: "Macro 2",
  54206. height: math.unit(100, "feet")
  54207. },
  54208. {
  54209. name: "Mega Macro",
  54210. height: math.unit(200, "feet")
  54211. },
  54212. ]
  54213. ))
  54214. characterMakers.push(() => makeCharacter(
  54215. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54216. {
  54217. front: {
  54218. height: math.unit(2.2, "m"),
  54219. weight: math.unit(300, "kg"),
  54220. name: "Front",
  54221. image: {
  54222. source: "./media/characters/hanna/front.svg",
  54223. extra: 1696/1502,
  54224. bottom: 206/1902
  54225. }
  54226. },
  54227. },
  54228. [
  54229. {
  54230. name: "Humanoid",
  54231. height: math.unit(2.2, "meters")
  54232. },
  54233. {
  54234. name: "Normal",
  54235. height: math.unit(4.8, "meters"),
  54236. default: true
  54237. },
  54238. ]
  54239. ))
  54240. characterMakers.push(() => makeCharacter(
  54241. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54242. {
  54243. front: {
  54244. height: math.unit(2.8, "meters"),
  54245. name: "Front",
  54246. image: {
  54247. source: "./media/characters/argo/front.svg",
  54248. extra: 731/518,
  54249. bottom: 84/815
  54250. }
  54251. },
  54252. },
  54253. [
  54254. {
  54255. name: "Normal",
  54256. height: math.unit(3, "meters"),
  54257. default: true
  54258. },
  54259. ]
  54260. ))
  54261. characterMakers.push(() => makeCharacter(
  54262. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54263. {
  54264. side: {
  54265. height: math.unit(3.8, "meters"),
  54266. name: "Side",
  54267. image: {
  54268. source: "./media/characters/sybil/side.svg",
  54269. extra: 382/361,
  54270. bottom: 25/407
  54271. }
  54272. },
  54273. },
  54274. [
  54275. {
  54276. name: "Normal",
  54277. height: math.unit(3.8, "meters"),
  54278. default: true
  54279. },
  54280. ]
  54281. ))
  54282. characterMakers.push(() => makeCharacter(
  54283. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54284. {
  54285. side: {
  54286. height: math.unit(6, "meters"),
  54287. name: "Side",
  54288. image: {
  54289. source: "./media/characters/plum/side.svg",
  54290. extra: 858/755,
  54291. bottom: 45/903
  54292. },
  54293. form: "taur",
  54294. default: true
  54295. },
  54296. back: {
  54297. height: math.unit(6.3, "meters"),
  54298. name: "Back",
  54299. image: {
  54300. source: "./media/characters/plum/back.svg",
  54301. extra: 887/813,
  54302. bottom: 32/919
  54303. },
  54304. form: "taur",
  54305. },
  54306. feral: {
  54307. height: math.unit(5.5, "meter"),
  54308. name: "Front",
  54309. image: {
  54310. source: "./media/characters/plum/feral.svg",
  54311. extra: 568/403,
  54312. bottom: 51/619
  54313. },
  54314. form: "feral",
  54315. default: true
  54316. },
  54317. head: {
  54318. height: math.unit(1.46, "meter"),
  54319. name: "Head",
  54320. image: {
  54321. source: "./media/characters/plum/head.svg"
  54322. },
  54323. form: "taur"
  54324. },
  54325. tailTop: {
  54326. height: math.unit(5.6, "meter"),
  54327. name: "Tail (Top)",
  54328. image: {
  54329. source: "./media/characters/plum/tail-top.svg"
  54330. },
  54331. form: "taur",
  54332. },
  54333. tailBottom: {
  54334. height: math.unit(5.6, "meter"),
  54335. name: "Tail (Bottom)",
  54336. image: {
  54337. source: "./media/characters/plum/tail-bottom.svg"
  54338. },
  54339. form: "taur",
  54340. },
  54341. feralHead: {
  54342. height: math.unit(2.56549521, "meter"),
  54343. name: "Head",
  54344. image: {
  54345. source: "./media/characters/plum/head.svg"
  54346. },
  54347. form: "feral"
  54348. },
  54349. feralTailTop: {
  54350. height: math.unit(5.44728435, "meter"),
  54351. name: "Tail (Top)",
  54352. image: {
  54353. source: "./media/characters/plum/tail-top.svg"
  54354. },
  54355. form: "feral",
  54356. },
  54357. feralTailBottom: {
  54358. height: math.unit(5.44728435, "meter"),
  54359. name: "Tail (Bottom)",
  54360. image: {
  54361. source: "./media/characters/plum/tail-bottom.svg"
  54362. },
  54363. form: "feral",
  54364. },
  54365. },
  54366. [
  54367. {
  54368. name: "Normal",
  54369. height: math.unit(6, "meters"),
  54370. default: true,
  54371. form: "taur"
  54372. },
  54373. {
  54374. name: "Normal",
  54375. height: math.unit(5.5, "meters"),
  54376. default: true,
  54377. form: "feral"
  54378. },
  54379. ],
  54380. {
  54381. "taur": {
  54382. name: "Taur",
  54383. default: true
  54384. },
  54385. "feral": {
  54386. name: "Feral",
  54387. },
  54388. }
  54389. ))
  54390. characterMakers.push(() => makeCharacter(
  54391. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54392. {
  54393. front: {
  54394. height: math.unit(6, "feet"),
  54395. weight: math.unit(115, "lb"),
  54396. name: "Front",
  54397. image: {
  54398. source: "./media/characters/celeste-kitsune/front.svg",
  54399. extra: 393/366,
  54400. bottom: 7/400
  54401. }
  54402. },
  54403. side: {
  54404. height: math.unit(6, "feet"),
  54405. weight: math.unit(115, "lb"),
  54406. name: "Side",
  54407. image: {
  54408. source: "./media/characters/celeste-kitsune/side.svg",
  54409. extra: 818/765,
  54410. bottom: 40/858
  54411. }
  54412. },
  54413. },
  54414. [
  54415. {
  54416. name: "Megamacro",
  54417. height: math.unit(1500, "miles"),
  54418. default: true
  54419. },
  54420. ]
  54421. ))
  54422. characterMakers.push(() => makeCharacter(
  54423. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54424. {
  54425. front: {
  54426. height: math.unit(8, "meters"),
  54427. name: "Front",
  54428. image: {
  54429. source: "./media/characters/io/front.svg",
  54430. extra: 865/722,
  54431. bottom: 58/923
  54432. }
  54433. },
  54434. back: {
  54435. height: math.unit(8, "meters"),
  54436. name: "Back",
  54437. image: {
  54438. source: "./media/characters/io/back.svg",
  54439. extra: 920/776,
  54440. bottom: 42/962
  54441. }
  54442. },
  54443. head: {
  54444. height: math.unit(5.09, "meters"),
  54445. name: "Head",
  54446. image: {
  54447. source: "./media/characters/io/head.svg"
  54448. }
  54449. },
  54450. hand: {
  54451. height: math.unit(1.6, "meters"),
  54452. name: "Hand",
  54453. image: {
  54454. source: "./media/characters/io/hand.svg"
  54455. }
  54456. },
  54457. foot: {
  54458. height: math.unit(2.4, "meters"),
  54459. name: "Foot",
  54460. image: {
  54461. source: "./media/characters/io/foot.svg"
  54462. }
  54463. },
  54464. },
  54465. [
  54466. {
  54467. name: "Normal",
  54468. height: math.unit(8, "meters"),
  54469. default: true
  54470. },
  54471. ]
  54472. ))
  54473. characterMakers.push(() => makeCharacter(
  54474. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54475. {
  54476. side: {
  54477. height: math.unit(6 + 3/12, "feet"),
  54478. weight: math.unit(225, "lb"),
  54479. name: "Side",
  54480. image: {
  54481. source: "./media/characters/silas/side.svg",
  54482. extra: 703/653,
  54483. bottom: 23/726
  54484. },
  54485. extraAttributes: {
  54486. "pawLength": {
  54487. name: "Paw Length",
  54488. power: 1,
  54489. type: "length",
  54490. base: math.unit(12, "inches")
  54491. },
  54492. "pawWidth": {
  54493. name: "Paw Width",
  54494. power: 1,
  54495. type: "length",
  54496. base: math.unit(4.5, "inches")
  54497. },
  54498. "pawArea": {
  54499. name: "Paw Area",
  54500. power: 2,
  54501. type: "area",
  54502. base: math.unit(12 * 4.5, "inches^2")
  54503. },
  54504. }
  54505. },
  54506. },
  54507. [
  54508. {
  54509. name: "Normal",
  54510. height: math.unit(6 + 3/12, "feet"),
  54511. default: true
  54512. },
  54513. ]
  54514. ))
  54515. characterMakers.push(() => makeCharacter(
  54516. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54517. {
  54518. back: {
  54519. height: math.unit(1.6, "meters"),
  54520. weight: math.unit(150, "lb"),
  54521. name: "Back",
  54522. image: {
  54523. source: "./media/characters/zari/back.svg",
  54524. extra: 424/411,
  54525. bottom: 32/456
  54526. },
  54527. extraAttributes: {
  54528. "bladderCapacity": {
  54529. name: "Bladder Size",
  54530. power: 3,
  54531. type: "volume",
  54532. base: math.unit(500, "mL")
  54533. },
  54534. "bladderFlow": {
  54535. name: "Flow Rate",
  54536. power: 3,
  54537. type: "volume",
  54538. base: math.unit(25, "mL")
  54539. },
  54540. }
  54541. },
  54542. },
  54543. [
  54544. {
  54545. name: "Normal",
  54546. height: math.unit(1.6, "meters"),
  54547. default: true
  54548. },
  54549. ]
  54550. ))
  54551. characterMakers.push(() => makeCharacter(
  54552. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54553. {
  54554. front: {
  54555. height: math.unit(25, "feet"),
  54556. weight: math.unit(5, "tons"),
  54557. name: "Front",
  54558. image: {
  54559. source: "./media/characters/charlie-human/front.svg",
  54560. extra: 1870/1740,
  54561. bottom: 102/1972
  54562. },
  54563. extraAttributes: {
  54564. "dickLength": {
  54565. name: "Dick Length",
  54566. power: 1,
  54567. type: "length",
  54568. base: math.unit(9, "feet")
  54569. },
  54570. }
  54571. },
  54572. back: {
  54573. height: math.unit(25, "feet"),
  54574. weight: math.unit(5, "tons"),
  54575. name: "Back",
  54576. image: {
  54577. source: "./media/characters/charlie-human/back.svg",
  54578. extra: 1858/1733,
  54579. bottom: 105/1963
  54580. },
  54581. extraAttributes: {
  54582. "dickLength": {
  54583. name: "Dick Length",
  54584. power: 1,
  54585. type: "length",
  54586. base: math.unit(9, "feet")
  54587. },
  54588. }
  54589. },
  54590. },
  54591. [
  54592. {
  54593. name: "\"Normal\"",
  54594. height: math.unit(6 + 4/12, "feet")
  54595. },
  54596. {
  54597. name: "Big",
  54598. height: math.unit(25, "feet"),
  54599. default: true
  54600. },
  54601. ]
  54602. ))
  54603. //characters
  54604. function makeCharacters() {
  54605. const results = [];
  54606. characterMakers.forEach(character => {
  54607. results.push(character());
  54608. });
  54609. return results;
  54610. }