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.
 
 
 

55793 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: 3400 / 3000
  6124. }
  6125. },
  6126. jumping: {
  6127. height: math.unit(6, "feet"),
  6128. weight: math.unit(160, "lbs"),
  6129. name: "Jumping",
  6130. image: {
  6131. source: "./media/characters/prince/jump.svg",
  6132. extra: 2555 / 2134
  6133. }
  6134. },
  6135. },
  6136. [
  6137. {
  6138. name: "Normal",
  6139. height: math.unit(7.75, "feet"),
  6140. default: true
  6141. },
  6142. {
  6143. name: "Not cute",
  6144. height: math.unit(17, "feet")
  6145. },
  6146. {
  6147. name: "I said NOT",
  6148. height: math.unit(91, "feet")
  6149. },
  6150. {
  6151. name: "Please stop",
  6152. height: math.unit(560, "feet")
  6153. },
  6154. {
  6155. name: "What have you done",
  6156. height: math.unit(2200, "feet")
  6157. },
  6158. {
  6159. name: "Deer God",
  6160. height: math.unit(3.6, "miles")
  6161. },
  6162. ]
  6163. ))
  6164. characterMakers.push(() => makeCharacter(
  6165. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6166. {
  6167. standing: {
  6168. height: math.unit(6, "feet"),
  6169. weight: math.unit(300, "lbs"),
  6170. name: "Standing",
  6171. image: {
  6172. source: "./media/characters/psymon/standing.svg",
  6173. extra: 1888 / 1810,
  6174. bottom: 0.05
  6175. }
  6176. },
  6177. slithering: {
  6178. height: math.unit(6, "feet"),
  6179. weight: math.unit(300, "lbs"),
  6180. name: "Slithering",
  6181. image: {
  6182. source: "./media/characters/psymon/slithering.svg",
  6183. extra: 1330 / 1224
  6184. }
  6185. },
  6186. slitheringAlt: {
  6187. height: math.unit(6, "feet"),
  6188. weight: math.unit(300, "lbs"),
  6189. name: "Slithering (Alt)",
  6190. image: {
  6191. source: "./media/characters/psymon/slithering-alt.svg",
  6192. extra: 1330 / 1224
  6193. }
  6194. },
  6195. },
  6196. [
  6197. {
  6198. name: "Normal",
  6199. height: math.unit(11.25, "feet"),
  6200. default: true
  6201. },
  6202. {
  6203. name: "Large",
  6204. height: math.unit(27, "feet")
  6205. },
  6206. {
  6207. name: "Giant",
  6208. height: math.unit(87, "feet")
  6209. },
  6210. {
  6211. name: "Macro",
  6212. height: math.unit(365, "feet")
  6213. },
  6214. {
  6215. name: "Megamacro",
  6216. height: math.unit(3, "miles")
  6217. },
  6218. {
  6219. name: "World Serpent",
  6220. height: math.unit(8000, "miles")
  6221. },
  6222. ]
  6223. ))
  6224. characterMakers.push(() => makeCharacter(
  6225. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6226. {
  6227. front: {
  6228. height: math.unit(6, "feet"),
  6229. weight: math.unit(180, "lbs"),
  6230. name: "Front",
  6231. image: {
  6232. source: "./media/characters/daimos/front.svg",
  6233. extra: 4160 / 3897,
  6234. bottom: 0.021
  6235. }
  6236. }
  6237. },
  6238. [
  6239. {
  6240. name: "Normal",
  6241. height: math.unit(8, "feet"),
  6242. default: true
  6243. },
  6244. {
  6245. name: "Big Dog",
  6246. height: math.unit(22, "feet")
  6247. },
  6248. {
  6249. name: "Macro",
  6250. height: math.unit(127, "feet")
  6251. },
  6252. {
  6253. name: "Megamacro",
  6254. height: math.unit(3600, "feet")
  6255. },
  6256. ]
  6257. ))
  6258. characterMakers.push(() => makeCharacter(
  6259. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6260. {
  6261. side: {
  6262. height: math.unit(6, "feet"),
  6263. weight: math.unit(180, "lbs"),
  6264. name: "Side",
  6265. image: {
  6266. source: "./media/characters/blake/side.svg",
  6267. extra: 1212 / 1120,
  6268. bottom: 0.05
  6269. }
  6270. },
  6271. crouched: {
  6272. height: math.unit(6 * 0.57, "feet"),
  6273. weight: math.unit(180, "lbs"),
  6274. name: "Crouched",
  6275. image: {
  6276. source: "./media/characters/blake/crouched.svg",
  6277. extra: 840 / 587,
  6278. bottom: 0.04
  6279. }
  6280. },
  6281. bent: {
  6282. height: math.unit(6 * 0.75, "feet"),
  6283. weight: math.unit(180, "lbs"),
  6284. name: "Bent",
  6285. image: {
  6286. source: "./media/characters/blake/bent.svg",
  6287. extra: 592 / 544,
  6288. bottom: 0.035
  6289. }
  6290. },
  6291. },
  6292. [
  6293. {
  6294. name: "Normal",
  6295. height: math.unit(8 + 1 / 6, "feet"),
  6296. default: true
  6297. },
  6298. {
  6299. name: "Big Backside",
  6300. height: math.unit(37, "feet")
  6301. },
  6302. {
  6303. name: "Subway Shredder",
  6304. height: math.unit(72, "feet")
  6305. },
  6306. {
  6307. name: "City Carver",
  6308. height: math.unit(1675, "feet")
  6309. },
  6310. {
  6311. name: "Tectonic Tweaker",
  6312. height: math.unit(2300, "miles")
  6313. },
  6314. ]
  6315. ))
  6316. characterMakers.push(() => makeCharacter(
  6317. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6318. {
  6319. front: {
  6320. height: math.unit(6, "feet"),
  6321. weight: math.unit(180, "lbs"),
  6322. name: "Front",
  6323. image: {
  6324. source: "./media/characters/guisetto/front.svg",
  6325. extra: 856 / 817,
  6326. bottom: 0.06
  6327. }
  6328. },
  6329. airborne: {
  6330. height: math.unit(6, "feet"),
  6331. weight: math.unit(180, "lbs"),
  6332. name: "Airborne",
  6333. image: {
  6334. source: "./media/characters/guisetto/airborne.svg",
  6335. extra: 584 / 525
  6336. }
  6337. },
  6338. },
  6339. [
  6340. {
  6341. name: "Normal",
  6342. height: math.unit(10 + 11 / 12, "feet"),
  6343. default: true
  6344. },
  6345. {
  6346. name: "Large",
  6347. height: math.unit(35, "feet")
  6348. },
  6349. {
  6350. name: "Macro",
  6351. height: math.unit(475, "feet")
  6352. },
  6353. ]
  6354. ))
  6355. characterMakers.push(() => makeCharacter(
  6356. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6357. {
  6358. front: {
  6359. height: math.unit(6, "feet"),
  6360. weight: math.unit(180, "lbs"),
  6361. name: "Front",
  6362. image: {
  6363. source: "./media/characters/luxor/front.svg",
  6364. extra: 2940 / 2152
  6365. }
  6366. },
  6367. back: {
  6368. height: math.unit(6, "feet"),
  6369. weight: math.unit(180, "lbs"),
  6370. name: "Back",
  6371. image: {
  6372. source: "./media/characters/luxor/back.svg",
  6373. extra: 1083 / 960
  6374. }
  6375. },
  6376. },
  6377. [
  6378. {
  6379. name: "Normal",
  6380. height: math.unit(5 + 5 / 6, "feet"),
  6381. default: true
  6382. },
  6383. {
  6384. name: "Lamp",
  6385. height: math.unit(50, "feet")
  6386. },
  6387. {
  6388. name: "Lämp",
  6389. height: math.unit(300, "feet")
  6390. },
  6391. {
  6392. name: "The sun is a lamp",
  6393. height: math.unit(250000, "miles")
  6394. },
  6395. ]
  6396. ))
  6397. characterMakers.push(() => makeCharacter(
  6398. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6399. {
  6400. front: {
  6401. height: math.unit(6, "feet"),
  6402. weight: math.unit(50, "lbs"),
  6403. name: "Front",
  6404. image: {
  6405. source: "./media/characters/huoyan/front.svg"
  6406. }
  6407. },
  6408. side: {
  6409. height: math.unit(6, "feet"),
  6410. weight: math.unit(180, "lbs"),
  6411. name: "Side",
  6412. image: {
  6413. source: "./media/characters/huoyan/side.svg"
  6414. }
  6415. },
  6416. },
  6417. [
  6418. {
  6419. name: "Chef",
  6420. height: math.unit(9, "feet")
  6421. },
  6422. {
  6423. name: "Normal",
  6424. height: math.unit(65, "feet"),
  6425. default: true
  6426. },
  6427. {
  6428. name: "Macro",
  6429. height: math.unit(780, "feet")
  6430. },
  6431. {
  6432. name: "Flaming Mountain",
  6433. height: math.unit(4.8, "miles")
  6434. },
  6435. {
  6436. name: "Celestial",
  6437. height: math.unit(765000, "miles")
  6438. },
  6439. ]
  6440. ))
  6441. characterMakers.push(() => makeCharacter(
  6442. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6443. {
  6444. front: {
  6445. height: math.unit(5 + 3 / 4, "feet"),
  6446. weight: math.unit(120, "lbs"),
  6447. name: "Front",
  6448. image: {
  6449. source: "./media/characters/tails/front.svg"
  6450. }
  6451. }
  6452. },
  6453. [
  6454. {
  6455. name: "Normal",
  6456. height: math.unit(5 + 3 / 4, "feet"),
  6457. default: true
  6458. }
  6459. ]
  6460. ))
  6461. characterMakers.push(() => makeCharacter(
  6462. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6463. {
  6464. front: {
  6465. height: math.unit(4, "feet"),
  6466. weight: math.unit(50, "lbs"),
  6467. name: "Front",
  6468. image: {
  6469. source: "./media/characters/rainy/front.svg"
  6470. }
  6471. }
  6472. },
  6473. [
  6474. {
  6475. name: "Macro",
  6476. height: math.unit(800, "feet"),
  6477. default: true
  6478. }
  6479. ]
  6480. ))
  6481. characterMakers.push(() => makeCharacter(
  6482. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6483. {
  6484. front: {
  6485. height: math.unit(6, "feet"),
  6486. weight: math.unit(150, "lbs"),
  6487. name: "Front",
  6488. image: {
  6489. source: "./media/characters/rainier/front.svg"
  6490. }
  6491. }
  6492. },
  6493. [
  6494. {
  6495. name: "Micro",
  6496. height: math.unit(2, "mm"),
  6497. default: true
  6498. }
  6499. ]
  6500. ))
  6501. characterMakers.push(() => makeCharacter(
  6502. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6503. {
  6504. front: {
  6505. height: math.unit(8 + 4/12, "feet"),
  6506. weight: math.unit(450, "kilograms"),
  6507. volume: math.unit(5, "cups"),
  6508. name: "Front",
  6509. image: {
  6510. source: "./media/characters/andy-renard/front.svg",
  6511. extra: 1839/1726,
  6512. bottom: 134/1973
  6513. }
  6514. },
  6515. back: {
  6516. height: math.unit(8 + 4/12, "feet"),
  6517. weight: math.unit(450, "kilograms"),
  6518. volume: math.unit(5, "cups"),
  6519. name: "Back",
  6520. image: {
  6521. source: "./media/characters/andy-renard/back.svg",
  6522. extra: 1838/1710,
  6523. bottom: 105/1943
  6524. }
  6525. },
  6526. },
  6527. [
  6528. {
  6529. name: "Tall",
  6530. height: math.unit(8 + 4/12, "feet")
  6531. },
  6532. {
  6533. name: "Mini Macro",
  6534. height: math.unit(15, "feet"),
  6535. default: true
  6536. },
  6537. {
  6538. name: "Macro",
  6539. height: math.unit(100, "feet")
  6540. },
  6541. {
  6542. name: "Mega Macro",
  6543. height: math.unit(1000, "feet")
  6544. },
  6545. {
  6546. name: "Giga Macro",
  6547. height: math.unit(10, "miles")
  6548. },
  6549. {
  6550. name: "God Macro",
  6551. height: math.unit(1, "multiverse")
  6552. },
  6553. ]
  6554. ))
  6555. characterMakers.push(() => makeCharacter(
  6556. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6557. {
  6558. front: {
  6559. height: math.unit(6, "feet"),
  6560. weight: math.unit(210, "lbs"),
  6561. name: "Front",
  6562. image: {
  6563. source: "./media/characters/cimmaron/front-sfw.svg",
  6564. extra: 701 / 676,
  6565. bottom: 0.046
  6566. }
  6567. },
  6568. back: {
  6569. height: math.unit(6, "feet"),
  6570. weight: math.unit(210, "lbs"),
  6571. name: "Back",
  6572. image: {
  6573. source: "./media/characters/cimmaron/back-sfw.svg",
  6574. extra: 701 / 676,
  6575. bottom: 0.046
  6576. }
  6577. },
  6578. frontNsfw: {
  6579. height: math.unit(6, "feet"),
  6580. weight: math.unit(210, "lbs"),
  6581. name: "Front (NSFW)",
  6582. image: {
  6583. source: "./media/characters/cimmaron/front-nsfw.svg",
  6584. extra: 701 / 676,
  6585. bottom: 0.046
  6586. }
  6587. },
  6588. backNsfw: {
  6589. height: math.unit(6, "feet"),
  6590. weight: math.unit(210, "lbs"),
  6591. name: "Back (NSFW)",
  6592. image: {
  6593. source: "./media/characters/cimmaron/back-nsfw.svg",
  6594. extra: 701 / 676,
  6595. bottom: 0.046
  6596. }
  6597. },
  6598. dick: {
  6599. height: math.unit(1.714, "feet"),
  6600. name: "Dick",
  6601. image: {
  6602. source: "./media/characters/cimmaron/dick.svg"
  6603. }
  6604. },
  6605. },
  6606. [
  6607. {
  6608. name: "Normal",
  6609. height: math.unit(6, "feet"),
  6610. default: true
  6611. },
  6612. {
  6613. name: "Macro Mayor",
  6614. height: math.unit(350, "meters")
  6615. },
  6616. ]
  6617. ))
  6618. characterMakers.push(() => makeCharacter(
  6619. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6620. {
  6621. front: {
  6622. height: math.unit(6, "feet"),
  6623. weight: math.unit(200, "lbs"),
  6624. name: "Front",
  6625. image: {
  6626. source: "./media/characters/akari/front.svg",
  6627. extra: 962 / 901,
  6628. bottom: 0.04
  6629. }
  6630. }
  6631. },
  6632. [
  6633. {
  6634. name: "Micro",
  6635. height: math.unit(5, "inches"),
  6636. default: true
  6637. },
  6638. {
  6639. name: "Normal",
  6640. height: math.unit(7, "feet")
  6641. },
  6642. ]
  6643. ))
  6644. characterMakers.push(() => makeCharacter(
  6645. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6646. {
  6647. front: {
  6648. height: math.unit(6, "feet"),
  6649. weight: math.unit(140, "lbs"),
  6650. name: "Front",
  6651. image: {
  6652. source: "./media/characters/cynosura/front.svg",
  6653. extra: 437/410,
  6654. bottom: 9/446
  6655. }
  6656. },
  6657. back: {
  6658. height: math.unit(6, "feet"),
  6659. weight: math.unit(140, "lbs"),
  6660. name: "Back",
  6661. image: {
  6662. source: "./media/characters/cynosura/back.svg",
  6663. extra: 1304/1160,
  6664. bottom: 71/1375
  6665. }
  6666. },
  6667. },
  6668. [
  6669. {
  6670. name: "Micro",
  6671. height: math.unit(4, "inches")
  6672. },
  6673. {
  6674. name: "Normal",
  6675. height: math.unit(5.75, "feet"),
  6676. default: true
  6677. },
  6678. {
  6679. name: "Tall",
  6680. height: math.unit(10, "feet")
  6681. },
  6682. {
  6683. name: "Big",
  6684. height: math.unit(20, "feet")
  6685. },
  6686. {
  6687. name: "Macro",
  6688. height: math.unit(50, "feet")
  6689. },
  6690. ]
  6691. ))
  6692. characterMakers.push(() => makeCharacter(
  6693. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6694. {
  6695. front: {
  6696. height: math.unit(13 + 2/12, "feet"),
  6697. weight: math.unit(800, "kg"),
  6698. name: "Front",
  6699. image: {
  6700. source: "./media/characters/gin/front.svg",
  6701. extra: 1312/1191,
  6702. bottom: 45/1357
  6703. }
  6704. },
  6705. mouth: {
  6706. height: math.unit(2.39 * 1.8, "feet"),
  6707. name: "Mouth",
  6708. image: {
  6709. source: "./media/characters/gin/mouth.svg"
  6710. }
  6711. },
  6712. hand: {
  6713. height: math.unit(1.57 * 2.19, "feet"),
  6714. name: "Hand",
  6715. image: {
  6716. source: "./media/characters/gin/hand.svg"
  6717. }
  6718. },
  6719. foot: {
  6720. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6721. name: "Foot",
  6722. image: {
  6723. source: "./media/characters/gin/foot.svg"
  6724. }
  6725. },
  6726. sole: {
  6727. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6728. name: "Sole",
  6729. image: {
  6730. source: "./media/characters/gin/sole.svg"
  6731. }
  6732. },
  6733. },
  6734. [
  6735. {
  6736. name: "Very Small",
  6737. height: math.unit(13 + 2 / 12, "feet")
  6738. },
  6739. {
  6740. name: "Micro",
  6741. height: math.unit(600, "miles")
  6742. },
  6743. {
  6744. name: "Regular",
  6745. height: math.unit(20, "earths"),
  6746. default: true
  6747. },
  6748. {
  6749. name: "Macro",
  6750. height: math.unit(2.2, "solarradii")
  6751. },
  6752. {
  6753. name: "Teramacro",
  6754. height: math.unit(1.2, "galaxies")
  6755. },
  6756. {
  6757. name: "Omegamacro",
  6758. height: math.unit(200, "universes")
  6759. },
  6760. ]
  6761. ))
  6762. characterMakers.push(() => makeCharacter(
  6763. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6764. {
  6765. front: {
  6766. height: math.unit(6 + 1 / 6, "feet"),
  6767. weight: math.unit(178, "lbs"),
  6768. name: "Front",
  6769. image: {
  6770. source: "./media/characters/guy/front.svg"
  6771. }
  6772. }
  6773. },
  6774. [
  6775. {
  6776. name: "Normal",
  6777. height: math.unit(6 + 1 / 6, "feet"),
  6778. default: true
  6779. },
  6780. {
  6781. name: "Large",
  6782. height: math.unit(25 + 7 / 12, "feet")
  6783. },
  6784. {
  6785. name: "Macro",
  6786. height: math.unit(60 + 9 / 12, "feet")
  6787. },
  6788. {
  6789. name: "Macro+",
  6790. height: math.unit(246, "feet")
  6791. },
  6792. {
  6793. name: "Macro++",
  6794. height: math.unit(878, "feet")
  6795. }
  6796. ]
  6797. ))
  6798. characterMakers.push(() => makeCharacter(
  6799. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6800. {
  6801. front: {
  6802. height: math.unit(9, "feet"),
  6803. weight: math.unit(800, "lbs"),
  6804. name: "Front",
  6805. image: {
  6806. source: "./media/characters/tiberius/front.svg",
  6807. extra: 2295 / 2071
  6808. }
  6809. },
  6810. back: {
  6811. height: math.unit(9, "feet"),
  6812. weight: math.unit(800, "lbs"),
  6813. name: "Back",
  6814. image: {
  6815. source: "./media/characters/tiberius/back.svg",
  6816. extra: 2373 / 2160
  6817. }
  6818. },
  6819. },
  6820. [
  6821. {
  6822. name: "Normal",
  6823. height: math.unit(9, "feet"),
  6824. default: true
  6825. }
  6826. ]
  6827. ))
  6828. characterMakers.push(() => makeCharacter(
  6829. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6830. {
  6831. front: {
  6832. height: math.unit(6, "feet"),
  6833. weight: math.unit(600, "lbs"),
  6834. name: "Front",
  6835. image: {
  6836. source: "./media/characters/surgo/front.svg",
  6837. extra: 3591 / 2227
  6838. }
  6839. },
  6840. back: {
  6841. height: math.unit(6, "feet"),
  6842. weight: math.unit(600, "lbs"),
  6843. name: "Back",
  6844. image: {
  6845. source: "./media/characters/surgo/back.svg",
  6846. extra: 3557 / 2228
  6847. }
  6848. },
  6849. laying: {
  6850. height: math.unit(6 * 0.85, "feet"),
  6851. weight: math.unit(600, "lbs"),
  6852. name: "Laying",
  6853. image: {
  6854. source: "./media/characters/surgo/laying.svg"
  6855. }
  6856. },
  6857. },
  6858. [
  6859. {
  6860. name: "Normal",
  6861. height: math.unit(6, "feet"),
  6862. default: true
  6863. }
  6864. ]
  6865. ))
  6866. characterMakers.push(() => makeCharacter(
  6867. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6868. {
  6869. side: {
  6870. height: math.unit(6, "feet"),
  6871. weight: math.unit(150, "lbs"),
  6872. name: "Side",
  6873. image: {
  6874. source: "./media/characters/cibus/side.svg",
  6875. extra: 800 / 400
  6876. }
  6877. },
  6878. },
  6879. [
  6880. {
  6881. name: "Normal",
  6882. height: math.unit(6, "feet"),
  6883. default: true
  6884. }
  6885. ]
  6886. ))
  6887. characterMakers.push(() => makeCharacter(
  6888. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6889. {
  6890. front: {
  6891. height: math.unit(6, "feet"),
  6892. weight: math.unit(240, "lbs"),
  6893. name: "Front",
  6894. image: {
  6895. source: "./media/characters/nibbles/front.svg"
  6896. }
  6897. },
  6898. side: {
  6899. height: math.unit(6, "feet"),
  6900. weight: math.unit(240, "lbs"),
  6901. name: "Side",
  6902. image: {
  6903. source: "./media/characters/nibbles/side.svg"
  6904. }
  6905. },
  6906. },
  6907. [
  6908. {
  6909. name: "Normal",
  6910. height: math.unit(9, "feet"),
  6911. default: true
  6912. }
  6913. ]
  6914. ))
  6915. characterMakers.push(() => makeCharacter(
  6916. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6917. {
  6918. side: {
  6919. height: math.unit(5 + 1 / 6, "feet"),
  6920. weight: math.unit(130, "lbs"),
  6921. name: "Side",
  6922. image: {
  6923. source: "./media/characters/rikky/side.svg",
  6924. extra: 851 / 801
  6925. }
  6926. },
  6927. },
  6928. [
  6929. {
  6930. name: "Normal",
  6931. height: math.unit(5 + 1 / 6, "feet")
  6932. },
  6933. {
  6934. name: "Macro",
  6935. height: math.unit(152, "feet"),
  6936. default: true
  6937. },
  6938. {
  6939. name: "Megamacro",
  6940. height: math.unit(7, "miles")
  6941. }
  6942. ]
  6943. ))
  6944. characterMakers.push(() => makeCharacter(
  6945. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6946. {
  6947. side: {
  6948. height: math.unit(370, "cm"),
  6949. weight: math.unit(350, "lbs"),
  6950. name: "Side",
  6951. image: {
  6952. source: "./media/characters/malfressa/side.svg"
  6953. }
  6954. },
  6955. walking: {
  6956. height: math.unit(370, "cm"),
  6957. weight: math.unit(350, "lbs"),
  6958. name: "Walking",
  6959. image: {
  6960. source: "./media/characters/malfressa/walking.svg"
  6961. }
  6962. },
  6963. feral: {
  6964. height: math.unit(2500, "cm"),
  6965. weight: math.unit(100000, "lbs"),
  6966. name: "Feral",
  6967. image: {
  6968. source: "./media/characters/malfressa/feral.svg",
  6969. extra: 2108 / 837,
  6970. bottom: 0.02
  6971. }
  6972. },
  6973. },
  6974. [
  6975. {
  6976. name: "Normal",
  6977. height: math.unit(370, "cm")
  6978. },
  6979. {
  6980. name: "Macro",
  6981. height: math.unit(300, "meters"),
  6982. default: true
  6983. }
  6984. ]
  6985. ))
  6986. characterMakers.push(() => makeCharacter(
  6987. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6988. {
  6989. front: {
  6990. height: math.unit(6, "feet"),
  6991. weight: math.unit(60, "kg"),
  6992. name: "Front",
  6993. image: {
  6994. source: "./media/characters/jaro/front.svg",
  6995. extra: 845/817,
  6996. bottom: 45/890
  6997. }
  6998. },
  6999. back: {
  7000. height: math.unit(6, "feet"),
  7001. weight: math.unit(60, "kg"),
  7002. name: "Back",
  7003. image: {
  7004. source: "./media/characters/jaro/back.svg",
  7005. extra: 847/817,
  7006. bottom: 34/881
  7007. }
  7008. },
  7009. },
  7010. [
  7011. {
  7012. name: "Micro",
  7013. height: math.unit(7, "inches")
  7014. },
  7015. {
  7016. name: "Normal",
  7017. height: math.unit(5.5, "feet"),
  7018. default: true
  7019. },
  7020. {
  7021. name: "Minimacro",
  7022. height: math.unit(20, "feet")
  7023. },
  7024. {
  7025. name: "Macro",
  7026. height: math.unit(200, "meters")
  7027. }
  7028. ]
  7029. ))
  7030. characterMakers.push(() => makeCharacter(
  7031. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7032. {
  7033. front: {
  7034. height: math.unit(6, "feet"),
  7035. weight: math.unit(195, "lb"),
  7036. name: "Front",
  7037. image: {
  7038. source: "./media/characters/rogue/front.svg"
  7039. }
  7040. },
  7041. },
  7042. [
  7043. {
  7044. name: "Macro",
  7045. height: math.unit(90, "feet"),
  7046. default: true
  7047. },
  7048. ]
  7049. ))
  7050. characterMakers.push(() => makeCharacter(
  7051. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7052. {
  7053. standing: {
  7054. height: math.unit(5 + 8 / 12, "feet"),
  7055. weight: math.unit(140, "lb"),
  7056. name: "Standing",
  7057. image: {
  7058. source: "./media/characters/piper/standing.svg",
  7059. extra: 1440/1284,
  7060. bottom: 66/1506
  7061. }
  7062. },
  7063. running: {
  7064. height: math.unit(5 + 8 / 12, "feet"),
  7065. weight: math.unit(140, "lb"),
  7066. name: "Running",
  7067. image: {
  7068. source: "./media/characters/piper/running.svg",
  7069. extra: 3948/3655,
  7070. bottom: 0/3948
  7071. }
  7072. },
  7073. sole: {
  7074. height: math.unit(0.81, "feet"),
  7075. weight: math.unit(2, "kg"),
  7076. name: "Sole",
  7077. image: {
  7078. source: "./media/characters/piper/sole.svg"
  7079. }
  7080. },
  7081. nipple: {
  7082. height: math.unit(0.25, "feet"),
  7083. weight: math.unit(1.5, "lb"),
  7084. name: "Nipple",
  7085. image: {
  7086. source: "./media/characters/piper/nipple.svg"
  7087. }
  7088. },
  7089. head: {
  7090. height: math.unit(1.1, "feet"),
  7091. name: "Head",
  7092. image: {
  7093. source: "./media/characters/piper/head.svg"
  7094. }
  7095. },
  7096. },
  7097. [
  7098. {
  7099. name: "Micro",
  7100. height: math.unit(2, "inches")
  7101. },
  7102. {
  7103. name: "Normal",
  7104. height: math.unit(5 + 8 / 12, "feet")
  7105. },
  7106. {
  7107. name: "Macro",
  7108. height: math.unit(250, "feet"),
  7109. default: true
  7110. },
  7111. {
  7112. name: "Megamacro",
  7113. height: math.unit(7, "miles")
  7114. },
  7115. ]
  7116. ))
  7117. characterMakers.push(() => makeCharacter(
  7118. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7119. {
  7120. front: {
  7121. height: math.unit(6, "feet"),
  7122. weight: math.unit(220, "lb"),
  7123. name: "Front",
  7124. image: {
  7125. source: "./media/characters/gemini/front.svg"
  7126. }
  7127. },
  7128. back: {
  7129. height: math.unit(6, "feet"),
  7130. weight: math.unit(220, "lb"),
  7131. name: "Back",
  7132. image: {
  7133. source: "./media/characters/gemini/back.svg"
  7134. }
  7135. },
  7136. kneeling: {
  7137. height: math.unit(6 / 1.5, "feet"),
  7138. weight: math.unit(220, "lb"),
  7139. name: "Kneeling",
  7140. image: {
  7141. source: "./media/characters/gemini/kneeling.svg",
  7142. bottom: 0.02
  7143. }
  7144. },
  7145. },
  7146. [
  7147. {
  7148. name: "Macro",
  7149. height: math.unit(300, "meters"),
  7150. default: true
  7151. },
  7152. {
  7153. name: "Megamacro",
  7154. height: math.unit(6900, "meters")
  7155. },
  7156. ]
  7157. ))
  7158. characterMakers.push(() => makeCharacter(
  7159. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7160. {
  7161. anthro: {
  7162. height: math.unit(2.35, "meters"),
  7163. weight: math.unit(73, "kg"),
  7164. name: "Anthro",
  7165. image: {
  7166. source: "./media/characters/alicia/anthro.svg",
  7167. extra: 2571 / 2385,
  7168. bottom: 75 / 2648
  7169. }
  7170. },
  7171. paw: {
  7172. height: math.unit(1.32, "feet"),
  7173. name: "Paw",
  7174. image: {
  7175. source: "./media/characters/alicia/paw.svg"
  7176. }
  7177. },
  7178. feral: {
  7179. height: math.unit(1.69, "meters"),
  7180. weight: math.unit(73, "kg"),
  7181. name: "Feral",
  7182. image: {
  7183. source: "./media/characters/alicia/feral.svg",
  7184. extra: 2123 / 1715,
  7185. bottom: 222 / 2349
  7186. }
  7187. },
  7188. },
  7189. [
  7190. {
  7191. name: "Normal",
  7192. height: math.unit(2.35, "meters")
  7193. },
  7194. {
  7195. name: "Macro",
  7196. height: math.unit(60, "meters"),
  7197. default: true
  7198. },
  7199. {
  7200. name: "Megamacro",
  7201. height: math.unit(10000, "kilometers")
  7202. },
  7203. ]
  7204. ))
  7205. characterMakers.push(() => makeCharacter(
  7206. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7207. {
  7208. front: {
  7209. height: math.unit(7, "feet"),
  7210. weight: math.unit(250, "lbs"),
  7211. name: "Front",
  7212. image: {
  7213. source: "./media/characters/archy/front.svg"
  7214. }
  7215. }
  7216. },
  7217. [
  7218. {
  7219. name: "Micro",
  7220. height: math.unit(1, "inch")
  7221. },
  7222. {
  7223. name: "Shorty",
  7224. height: math.unit(5, "feet")
  7225. },
  7226. {
  7227. name: "Normal",
  7228. height: math.unit(7, "feet")
  7229. },
  7230. {
  7231. name: "Macro",
  7232. height: math.unit(600, "meters"),
  7233. default: true
  7234. },
  7235. {
  7236. name: "Megamacro",
  7237. height: math.unit(1, "mile")
  7238. },
  7239. ]
  7240. ))
  7241. characterMakers.push(() => makeCharacter(
  7242. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7243. {
  7244. front: {
  7245. height: math.unit(1.65, "meters"),
  7246. weight: math.unit(74, "kg"),
  7247. name: "Front",
  7248. image: {
  7249. source: "./media/characters/berri/front.svg",
  7250. extra: 857 / 837,
  7251. bottom: 18 / 877
  7252. }
  7253. },
  7254. bum: {
  7255. height: math.unit(1.46, "feet"),
  7256. name: "Bum",
  7257. image: {
  7258. source: "./media/characters/berri/bum.svg"
  7259. }
  7260. },
  7261. mouth: {
  7262. height: math.unit(0.44, "feet"),
  7263. name: "Mouth",
  7264. image: {
  7265. source: "./media/characters/berri/mouth.svg"
  7266. }
  7267. },
  7268. paw: {
  7269. height: math.unit(0.826, "feet"),
  7270. name: "Paw",
  7271. image: {
  7272. source: "./media/characters/berri/paw.svg"
  7273. }
  7274. },
  7275. },
  7276. [
  7277. {
  7278. name: "Normal",
  7279. height: math.unit(1.65, "meters")
  7280. },
  7281. {
  7282. name: "Macro",
  7283. height: math.unit(60, "m"),
  7284. default: true
  7285. },
  7286. {
  7287. name: "Megamacro",
  7288. height: math.unit(9.213, "km")
  7289. },
  7290. {
  7291. name: "Planet Eater",
  7292. height: math.unit(489, "megameters")
  7293. },
  7294. {
  7295. name: "Teramacro",
  7296. height: math.unit(2471635000000, "meters")
  7297. },
  7298. {
  7299. name: "Examacro",
  7300. height: math.unit(8.0624e+26, "meters")
  7301. }
  7302. ]
  7303. ))
  7304. characterMakers.push(() => makeCharacter(
  7305. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7306. {
  7307. front: {
  7308. height: math.unit(1.72, "meters"),
  7309. weight: math.unit(68, "kg"),
  7310. name: "Front",
  7311. image: {
  7312. source: "./media/characters/lexi/front.svg"
  7313. }
  7314. }
  7315. },
  7316. [
  7317. {
  7318. name: "Very Smol",
  7319. height: math.unit(10, "mm")
  7320. },
  7321. {
  7322. name: "Micro",
  7323. height: math.unit(6.8, "cm"),
  7324. default: true
  7325. },
  7326. {
  7327. name: "Normal",
  7328. height: math.unit(1.72, "m")
  7329. }
  7330. ]
  7331. ))
  7332. characterMakers.push(() => makeCharacter(
  7333. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7334. {
  7335. front: {
  7336. height: math.unit(1.69, "meters"),
  7337. weight: math.unit(68, "kg"),
  7338. name: "Front",
  7339. image: {
  7340. source: "./media/characters/martin/front.svg",
  7341. extra: 596 / 581
  7342. }
  7343. }
  7344. },
  7345. [
  7346. {
  7347. name: "Micro",
  7348. height: math.unit(6.85, "cm"),
  7349. default: true
  7350. },
  7351. {
  7352. name: "Normal",
  7353. height: math.unit(1.69, "m")
  7354. }
  7355. ]
  7356. ))
  7357. characterMakers.push(() => makeCharacter(
  7358. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7359. {
  7360. front: {
  7361. height: math.unit(1.69, "meters"),
  7362. weight: math.unit(68, "kg"),
  7363. name: "Front",
  7364. image: {
  7365. source: "./media/characters/juno/front.svg"
  7366. }
  7367. }
  7368. },
  7369. [
  7370. {
  7371. name: "Micro",
  7372. height: math.unit(7, "cm")
  7373. },
  7374. {
  7375. name: "Normal",
  7376. height: math.unit(1.89, "m")
  7377. },
  7378. {
  7379. name: "Macro",
  7380. height: math.unit(353, "meters"),
  7381. default: true
  7382. }
  7383. ]
  7384. ))
  7385. characterMakers.push(() => makeCharacter(
  7386. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7387. {
  7388. front: {
  7389. height: math.unit(1.93, "meters"),
  7390. weight: math.unit(83, "kg"),
  7391. name: "Front",
  7392. image: {
  7393. source: "./media/characters/samantha/front.svg"
  7394. }
  7395. },
  7396. frontClothed: {
  7397. height: math.unit(1.93, "meters"),
  7398. weight: math.unit(83, "kg"),
  7399. name: "Front (Clothed)",
  7400. image: {
  7401. source: "./media/characters/samantha/front-clothed.svg"
  7402. }
  7403. },
  7404. back: {
  7405. height: math.unit(1.93, "meters"),
  7406. weight: math.unit(83, "kg"),
  7407. name: "Back",
  7408. image: {
  7409. source: "./media/characters/samantha/back.svg"
  7410. }
  7411. },
  7412. },
  7413. [
  7414. {
  7415. name: "Normal",
  7416. height: math.unit(1.93, "m")
  7417. },
  7418. {
  7419. name: "Macro",
  7420. height: math.unit(74, "meters"),
  7421. default: true
  7422. },
  7423. {
  7424. name: "Macro+",
  7425. height: math.unit(223, "meters"),
  7426. },
  7427. {
  7428. name: "Megamacro",
  7429. height: math.unit(8381, "meters"),
  7430. },
  7431. {
  7432. name: "Megamacro+",
  7433. height: math.unit(12000, "kilometers")
  7434. },
  7435. ]
  7436. ))
  7437. characterMakers.push(() => makeCharacter(
  7438. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7439. {
  7440. front: {
  7441. height: math.unit(1.92, "meters"),
  7442. weight: math.unit(80, "kg"),
  7443. name: "Front",
  7444. image: {
  7445. source: "./media/characters/dr-clay/front.svg"
  7446. }
  7447. },
  7448. frontClothed: {
  7449. height: math.unit(1.92, "meters"),
  7450. weight: math.unit(80, "kg"),
  7451. name: "Front (Clothed)",
  7452. image: {
  7453. source: "./media/characters/dr-clay/front-clothed.svg"
  7454. }
  7455. }
  7456. },
  7457. [
  7458. {
  7459. name: "Normal",
  7460. height: math.unit(1.92, "m")
  7461. },
  7462. {
  7463. name: "Macro",
  7464. height: math.unit(214, "meters"),
  7465. default: true
  7466. },
  7467. {
  7468. name: "Macro+",
  7469. height: math.unit(12.237, "meters"),
  7470. },
  7471. {
  7472. name: "Megamacro",
  7473. height: math.unit(557, "megameters"),
  7474. },
  7475. {
  7476. name: "Unimaginable",
  7477. height: math.unit(120e9, "lightyears")
  7478. },
  7479. ]
  7480. ))
  7481. characterMakers.push(() => makeCharacter(
  7482. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7483. {
  7484. front: {
  7485. height: math.unit(2, "meters"),
  7486. weight: math.unit(80, "kg"),
  7487. name: "Front",
  7488. image: {
  7489. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7490. }
  7491. }
  7492. },
  7493. [
  7494. {
  7495. name: "Teramacro",
  7496. height: math.unit(500000, "lightyears"),
  7497. default: true
  7498. },
  7499. ]
  7500. ))
  7501. characterMakers.push(() => makeCharacter(
  7502. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7503. {
  7504. crux: {
  7505. height: math.unit(2, "meters"),
  7506. weight: math.unit(150, "kg"),
  7507. name: "Crux",
  7508. image: {
  7509. source: "./media/characters/vemus/crux.svg",
  7510. extra: 1074/936,
  7511. bottom: 23/1097
  7512. }
  7513. },
  7514. skunkTanuki: {
  7515. height: math.unit(2, "meters"),
  7516. weight: math.unit(150, "kg"),
  7517. name: "Skunk-Tanuki",
  7518. image: {
  7519. source: "./media/characters/vemus/skunk-tanuki.svg",
  7520. extra: 926/893,
  7521. bottom: 20/946
  7522. }
  7523. },
  7524. },
  7525. [
  7526. {
  7527. name: "Normal",
  7528. height: math.unit(4, "meters"),
  7529. default: true
  7530. },
  7531. {
  7532. name: "Big",
  7533. height: math.unit(8, "meters")
  7534. },
  7535. {
  7536. name: "Macro",
  7537. height: math.unit(100, "meters")
  7538. },
  7539. {
  7540. name: "Macro+",
  7541. height: math.unit(1500, "meters")
  7542. },
  7543. {
  7544. name: "Stellar",
  7545. height: math.unit(14e8, "meters")
  7546. },
  7547. ]
  7548. ))
  7549. characterMakers.push(() => makeCharacter(
  7550. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7551. {
  7552. front: {
  7553. height: math.unit(2, "meters"),
  7554. weight: math.unit(70, "kg"),
  7555. name: "Front",
  7556. image: {
  7557. source: "./media/characters/beherit/front.svg",
  7558. extra: 1234/1109,
  7559. bottom: 55/1289
  7560. }
  7561. }
  7562. },
  7563. [
  7564. {
  7565. name: "Normal",
  7566. height: math.unit(6, "feet")
  7567. },
  7568. {
  7569. name: "Lorg",
  7570. height: math.unit(25, "feet"),
  7571. default: true
  7572. },
  7573. {
  7574. name: "Lorger",
  7575. height: math.unit(75, "feet")
  7576. },
  7577. {
  7578. name: "Macro",
  7579. height: math.unit(200, "meters")
  7580. },
  7581. ]
  7582. ))
  7583. characterMakers.push(() => makeCharacter(
  7584. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7585. {
  7586. front: {
  7587. height: math.unit(2, "meters"),
  7588. weight: math.unit(150, "kg"),
  7589. name: "Front",
  7590. image: {
  7591. source: "./media/characters/everett/front.svg",
  7592. extra: 1017/866,
  7593. bottom: 86/1103
  7594. }
  7595. },
  7596. paw: {
  7597. height: math.unit(2 / 3.6, "meters"),
  7598. name: "Paw",
  7599. image: {
  7600. source: "./media/characters/everett/paw.svg"
  7601. }
  7602. },
  7603. },
  7604. [
  7605. {
  7606. name: "Normal",
  7607. height: math.unit(15, "feet"),
  7608. default: true
  7609. },
  7610. {
  7611. name: "Lorg",
  7612. height: math.unit(70, "feet"),
  7613. default: true
  7614. },
  7615. {
  7616. name: "Lorger",
  7617. height: math.unit(250, "feet")
  7618. },
  7619. {
  7620. name: "Macro",
  7621. height: math.unit(500, "meters")
  7622. },
  7623. ]
  7624. ))
  7625. characterMakers.push(() => makeCharacter(
  7626. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7627. {
  7628. front: {
  7629. height: math.unit(2, "meters"),
  7630. weight: math.unit(86, "kg"),
  7631. name: "Front",
  7632. image: {
  7633. source: "./media/characters/rose/front.svg",
  7634. extra: 1785/1636,
  7635. bottom: 30/1815
  7636. },
  7637. form: "liom",
  7638. default: true
  7639. },
  7640. frontSporty: {
  7641. height: math.unit(2, "meters"),
  7642. weight: math.unit(86, "kg"),
  7643. name: "Front (Sporty)",
  7644. image: {
  7645. source: "./media/characters/rose/front-sporty.svg",
  7646. extra: 350/335,
  7647. bottom: 10/360
  7648. },
  7649. form: "liom"
  7650. },
  7651. frontAlt: {
  7652. height: math.unit(1.6, "meters"),
  7653. weight: math.unit(86, "kg"),
  7654. name: "Front (Alt)",
  7655. image: {
  7656. source: "./media/characters/rose/front-alt.svg",
  7657. extra: 299/283,
  7658. bottom: 3/302
  7659. },
  7660. form: "liom"
  7661. },
  7662. plush: {
  7663. height: math.unit(2, "meters"),
  7664. weight: math.unit(86/3, "kg"),
  7665. name: "Plush",
  7666. image: {
  7667. source: "./media/characters/rose/plush.svg",
  7668. extra: 361/337,
  7669. bottom: 11/372
  7670. },
  7671. form: "plush",
  7672. default: true
  7673. },
  7674. faeStanding: {
  7675. height: math.unit(10, "cm"),
  7676. weight: math.unit(10, "grams"),
  7677. name: "Standing",
  7678. image: {
  7679. source: "./media/characters/rose/fae-standing.svg",
  7680. extra: 1189/1060,
  7681. bottom: 27/1216
  7682. },
  7683. form: "fae",
  7684. default: true
  7685. },
  7686. faeSitting: {
  7687. height: math.unit(5, "cm"),
  7688. weight: math.unit(10, "grams"),
  7689. name: "Sitting",
  7690. image: {
  7691. source: "./media/characters/rose/fae-sitting.svg",
  7692. extra: 737/577,
  7693. bottom: 356/1093
  7694. },
  7695. form: "fae"
  7696. },
  7697. faePaw: {
  7698. height: math.unit(1.35, "cm"),
  7699. name: "Paw",
  7700. image: {
  7701. source: "./media/characters/rose/fae-paw.svg"
  7702. },
  7703. form: "fae"
  7704. },
  7705. },
  7706. [
  7707. {
  7708. name: "True Micro",
  7709. height: math.unit(9, "cm"),
  7710. form: "liom"
  7711. },
  7712. {
  7713. name: "Micro",
  7714. height: math.unit(16, "cm"),
  7715. form: "liom"
  7716. },
  7717. {
  7718. name: "Normal",
  7719. height: math.unit(1.85, "meters"),
  7720. default: true,
  7721. form: "liom"
  7722. },
  7723. {
  7724. name: "Mini-Macro",
  7725. height: math.unit(5, "meters"),
  7726. form: "liom"
  7727. },
  7728. {
  7729. name: "Macro",
  7730. height: math.unit(15, "meters"),
  7731. form: "liom"
  7732. },
  7733. {
  7734. name: "True Macro",
  7735. height: math.unit(40, "meters"),
  7736. form: "liom"
  7737. },
  7738. {
  7739. name: "City Scale",
  7740. height: math.unit(1, "km"),
  7741. form: "liom"
  7742. },
  7743. {
  7744. name: "Plushie",
  7745. height: math.unit(9, "cm"),
  7746. form: "plush",
  7747. default: true
  7748. },
  7749. {
  7750. name: "Fae",
  7751. height: math.unit(10, "cm"),
  7752. form: "fae",
  7753. default: true
  7754. },
  7755. ],
  7756. {
  7757. "liom": {
  7758. name: "Liom"
  7759. },
  7760. "plush": {
  7761. name: "Plush"
  7762. },
  7763. "fae": {
  7764. name: "Fae Fox",
  7765. default: true
  7766. }
  7767. }
  7768. ))
  7769. characterMakers.push(() => makeCharacter(
  7770. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7771. {
  7772. front: {
  7773. height: math.unit(2, "meters"),
  7774. weight: math.unit(350, "lbs"),
  7775. name: "Front",
  7776. image: {
  7777. source: "./media/characters/regal/front.svg"
  7778. }
  7779. },
  7780. back: {
  7781. height: math.unit(2, "meters"),
  7782. weight: math.unit(350, "lbs"),
  7783. name: "Back",
  7784. image: {
  7785. source: "./media/characters/regal/back.svg"
  7786. }
  7787. },
  7788. },
  7789. [
  7790. {
  7791. name: "Macro",
  7792. height: math.unit(350, "feet"),
  7793. default: true
  7794. }
  7795. ]
  7796. ))
  7797. characterMakers.push(() => makeCharacter(
  7798. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7799. {
  7800. front: {
  7801. height: math.unit(4 + 11 / 12, "feet"),
  7802. weight: math.unit(100, "lbs"),
  7803. name: "Front",
  7804. image: {
  7805. source: "./media/characters/opal/front.svg"
  7806. }
  7807. },
  7808. frontAlt: {
  7809. height: math.unit(4 + 11 / 12, "feet"),
  7810. weight: math.unit(100, "lbs"),
  7811. name: "Front (Alt)",
  7812. image: {
  7813. source: "./media/characters/opal/front-alt.svg"
  7814. }
  7815. },
  7816. },
  7817. [
  7818. {
  7819. name: "Small",
  7820. height: math.unit(4 + 11 / 12, "feet")
  7821. },
  7822. {
  7823. name: "Normal",
  7824. height: math.unit(20, "feet"),
  7825. default: true
  7826. },
  7827. {
  7828. name: "Macro",
  7829. height: math.unit(120, "feet")
  7830. },
  7831. {
  7832. name: "Megamacro",
  7833. height: math.unit(80, "miles")
  7834. },
  7835. {
  7836. name: "True Size",
  7837. height: math.unit(100000, "lightyears")
  7838. },
  7839. ]
  7840. ))
  7841. characterMakers.push(() => makeCharacter(
  7842. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7843. {
  7844. front: {
  7845. height: math.unit(6, "feet"),
  7846. weight: math.unit(200, "lbs"),
  7847. name: "Front",
  7848. image: {
  7849. source: "./media/characters/vector-wuff/front.svg"
  7850. }
  7851. }
  7852. },
  7853. [
  7854. {
  7855. name: "Normal",
  7856. height: math.unit(2.8, "meters")
  7857. },
  7858. {
  7859. name: "Macro",
  7860. height: math.unit(450, "meters"),
  7861. default: true
  7862. },
  7863. {
  7864. name: "Megamacro",
  7865. height: math.unit(15, "kilometers")
  7866. }
  7867. ]
  7868. ))
  7869. characterMakers.push(() => makeCharacter(
  7870. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7871. {
  7872. front: {
  7873. height: math.unit(6, "feet"),
  7874. weight: math.unit(256, "lbs"),
  7875. name: "Front",
  7876. image: {
  7877. source: "./media/characters/dannik/front.svg"
  7878. }
  7879. }
  7880. },
  7881. [
  7882. {
  7883. name: "Macro",
  7884. height: math.unit(69.57, "meters"),
  7885. default: true
  7886. },
  7887. ]
  7888. ))
  7889. characterMakers.push(() => makeCharacter(
  7890. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7891. {
  7892. front: {
  7893. height: math.unit(6, "feet"),
  7894. weight: math.unit(120, "lbs"),
  7895. name: "Front",
  7896. image: {
  7897. source: "./media/characters/azura-saharah/front.svg"
  7898. }
  7899. },
  7900. back: {
  7901. height: math.unit(6, "feet"),
  7902. weight: math.unit(120, "lbs"),
  7903. name: "Back",
  7904. image: {
  7905. source: "./media/characters/azura-saharah/back.svg"
  7906. }
  7907. },
  7908. },
  7909. [
  7910. {
  7911. name: "Macro",
  7912. height: math.unit(100, "feet"),
  7913. default: true
  7914. },
  7915. ]
  7916. ))
  7917. characterMakers.push(() => makeCharacter(
  7918. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7919. {
  7920. side: {
  7921. height: math.unit(5 + 4 / 12, "feet"),
  7922. weight: math.unit(163, "lbs"),
  7923. name: "Side",
  7924. image: {
  7925. source: "./media/characters/kennedy/side.svg"
  7926. }
  7927. }
  7928. },
  7929. [
  7930. {
  7931. name: "Standard Doggo",
  7932. height: math.unit(5 + 4 / 12, "feet")
  7933. },
  7934. {
  7935. name: "Big Doggo",
  7936. height: math.unit(25 + 3 / 12, "feet"),
  7937. default: true
  7938. },
  7939. ]
  7940. ))
  7941. characterMakers.push(() => makeCharacter(
  7942. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7943. {
  7944. front: {
  7945. height: math.unit(5 + 5/12, "feet"),
  7946. weight: math.unit(100, "lbs"),
  7947. name: "Front",
  7948. image: {
  7949. source: "./media/characters/odios-de-lunar/front.svg",
  7950. extra: 1468/1323,
  7951. bottom: 22/1490
  7952. }
  7953. }
  7954. },
  7955. [
  7956. {
  7957. name: "Micro",
  7958. height: math.unit(3, "inches")
  7959. },
  7960. {
  7961. name: "Normal",
  7962. height: math.unit(5.5, "feet"),
  7963. default: true
  7964. },
  7965. {
  7966. name: "Macro",
  7967. height: math.unit(100, "feet")
  7968. },
  7969. ]
  7970. ))
  7971. characterMakers.push(() => makeCharacter(
  7972. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7973. {
  7974. back: {
  7975. height: math.unit(6, "feet"),
  7976. weight: math.unit(220, "lbs"),
  7977. name: "Back",
  7978. image: {
  7979. source: "./media/characters/mandake/back.svg"
  7980. }
  7981. }
  7982. },
  7983. [
  7984. {
  7985. name: "Normal",
  7986. height: math.unit(7, "feet"),
  7987. default: true
  7988. },
  7989. {
  7990. name: "Macro",
  7991. height: math.unit(78, "feet")
  7992. },
  7993. {
  7994. name: "Macro+",
  7995. height: math.unit(300, "meters")
  7996. },
  7997. {
  7998. name: "Macro++",
  7999. height: math.unit(2400, "feet")
  8000. },
  8001. {
  8002. name: "Megamacro",
  8003. height: math.unit(5167, "meters")
  8004. },
  8005. {
  8006. name: "Gigamacro",
  8007. height: math.unit(41769, "miles")
  8008. },
  8009. ]
  8010. ))
  8011. characterMakers.push(() => makeCharacter(
  8012. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8013. {
  8014. front: {
  8015. height: math.unit(6, "feet"),
  8016. weight: math.unit(120, "lbs"),
  8017. name: "Front",
  8018. image: {
  8019. source: "./media/characters/yozey/front.svg"
  8020. }
  8021. },
  8022. frontAlt: {
  8023. height: math.unit(6, "feet"),
  8024. weight: math.unit(120, "lbs"),
  8025. name: "Front (Alt)",
  8026. image: {
  8027. source: "./media/characters/yozey/front-alt.svg"
  8028. }
  8029. },
  8030. side: {
  8031. height: math.unit(6, "feet"),
  8032. weight: math.unit(120, "lbs"),
  8033. name: "Side",
  8034. image: {
  8035. source: "./media/characters/yozey/side.svg"
  8036. }
  8037. },
  8038. },
  8039. [
  8040. {
  8041. name: "Micro",
  8042. height: math.unit(3, "inches"),
  8043. default: true
  8044. },
  8045. {
  8046. name: "Normal",
  8047. height: math.unit(6, "feet")
  8048. }
  8049. ]
  8050. ))
  8051. characterMakers.push(() => makeCharacter(
  8052. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8053. {
  8054. front: {
  8055. height: math.unit(6, "feet"),
  8056. weight: math.unit(103, "lbs"),
  8057. name: "Front",
  8058. image: {
  8059. source: "./media/characters/valeska-voss/front.svg"
  8060. }
  8061. }
  8062. },
  8063. [
  8064. {
  8065. name: "Mini-Sized Sub",
  8066. height: math.unit(3.1, "inches")
  8067. },
  8068. {
  8069. name: "Mid-Sized Sub",
  8070. height: math.unit(6.2, "inches")
  8071. },
  8072. {
  8073. name: "Full-Sized Sub",
  8074. height: math.unit(9.3, "inches")
  8075. },
  8076. {
  8077. name: "Normal",
  8078. height: math.unit(5 + 2 / 12, "foot"),
  8079. default: true
  8080. },
  8081. ]
  8082. ))
  8083. characterMakers.push(() => makeCharacter(
  8084. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8085. {
  8086. front: {
  8087. height: math.unit(6, "feet"),
  8088. weight: math.unit(160, "lbs"),
  8089. name: "Front",
  8090. image: {
  8091. source: "./media/characters/gene-zeta/front.svg",
  8092. extra: 3006 / 2826,
  8093. bottom: 182 / 3188
  8094. }
  8095. }
  8096. },
  8097. [
  8098. {
  8099. name: "Micro",
  8100. height: math.unit(6, "inches")
  8101. },
  8102. {
  8103. name: "Normal",
  8104. height: math.unit(5 + 11 / 12, "foot"),
  8105. default: true
  8106. },
  8107. {
  8108. name: "Macro",
  8109. height: math.unit(140, "feet")
  8110. },
  8111. {
  8112. name: "Supercharged",
  8113. height: math.unit(2500, "feet")
  8114. },
  8115. ]
  8116. ))
  8117. characterMakers.push(() => makeCharacter(
  8118. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8119. {
  8120. front: {
  8121. height: math.unit(6, "feet"),
  8122. weight: math.unit(350, "lbs"),
  8123. name: "Front",
  8124. image: {
  8125. source: "./media/characters/razinox/front.svg",
  8126. extra: 1686 / 1548,
  8127. bottom: 28.2 / 1868
  8128. }
  8129. },
  8130. back: {
  8131. height: math.unit(6, "feet"),
  8132. weight: math.unit(350, "lbs"),
  8133. name: "Back",
  8134. image: {
  8135. source: "./media/characters/razinox/back.svg",
  8136. extra: 1660 / 1590,
  8137. bottom: 15 / 1665
  8138. }
  8139. },
  8140. },
  8141. [
  8142. {
  8143. name: "Normal",
  8144. height: math.unit(10 + 8 / 12, "foot")
  8145. },
  8146. {
  8147. name: "Minimacro",
  8148. height: math.unit(15, "foot")
  8149. },
  8150. {
  8151. name: "Macro",
  8152. height: math.unit(60, "foot"),
  8153. default: true
  8154. },
  8155. {
  8156. name: "Megamacro",
  8157. height: math.unit(5, "miles")
  8158. },
  8159. {
  8160. name: "Gigamacro",
  8161. height: math.unit(6000, "miles")
  8162. },
  8163. ]
  8164. ))
  8165. characterMakers.push(() => makeCharacter(
  8166. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8167. {
  8168. front: {
  8169. height: math.unit(6, "feet"),
  8170. weight: math.unit(150, "lbs"),
  8171. name: "Front",
  8172. image: {
  8173. source: "./media/characters/cobalt/front.svg"
  8174. }
  8175. }
  8176. },
  8177. [
  8178. {
  8179. name: "Normal",
  8180. height: math.unit(8 + 1 / 12, "foot")
  8181. },
  8182. {
  8183. name: "Macro",
  8184. height: math.unit(111, "foot"),
  8185. default: true
  8186. },
  8187. {
  8188. name: "Supracosmic",
  8189. height: math.unit(1e42, "feet")
  8190. },
  8191. ]
  8192. ))
  8193. characterMakers.push(() => makeCharacter(
  8194. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8195. {
  8196. front: {
  8197. height: math.unit(5, "inches"),
  8198. name: "Front",
  8199. image: {
  8200. source: "./media/characters/amanda/front.svg",
  8201. extra: 926/791,
  8202. bottom: 38/964
  8203. }
  8204. },
  8205. back: {
  8206. height: math.unit(5, "inches"),
  8207. name: "Back",
  8208. image: {
  8209. source: "./media/characters/amanda/back.svg",
  8210. extra: 909/805,
  8211. bottom: 43/952
  8212. }
  8213. },
  8214. },
  8215. [
  8216. {
  8217. name: "Micro",
  8218. height: math.unit(5, "inches"),
  8219. default: true
  8220. },
  8221. ]
  8222. ))
  8223. characterMakers.push(() => makeCharacter(
  8224. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8225. {
  8226. front: {
  8227. height: math.unit(2.75, "meters"),
  8228. weight: math.unit(1200, "lb"),
  8229. name: "Front",
  8230. image: {
  8231. source: "./media/characters/teal/front.svg",
  8232. extra: 2463 / 2320,
  8233. bottom: 166 / 2629
  8234. }
  8235. },
  8236. back: {
  8237. height: math.unit(2.75, "meters"),
  8238. weight: math.unit(1200, "lb"),
  8239. name: "Back",
  8240. image: {
  8241. source: "./media/characters/teal/back.svg",
  8242. extra: 2580 / 2489,
  8243. bottom: 151 / 2731
  8244. }
  8245. },
  8246. sitting: {
  8247. height: math.unit(1.9, "meters"),
  8248. weight: math.unit(1200, "lb"),
  8249. name: "Sitting",
  8250. image: {
  8251. source: "./media/characters/teal/sitting.svg",
  8252. extra: 623 / 590,
  8253. bottom: 121 / 744
  8254. }
  8255. },
  8256. standing: {
  8257. height: math.unit(2.75, "meters"),
  8258. weight: math.unit(1200, "lb"),
  8259. name: "Standing",
  8260. image: {
  8261. source: "./media/characters/teal/standing.svg",
  8262. extra: 923 / 893,
  8263. bottom: 60 / 983
  8264. }
  8265. },
  8266. stretching: {
  8267. height: math.unit(3.65, "meters"),
  8268. weight: math.unit(1200, "lb"),
  8269. name: "Stretching",
  8270. image: {
  8271. source: "./media/characters/teal/stretching.svg",
  8272. extra: 1276 / 1244,
  8273. bottom: 0 / 1276
  8274. }
  8275. },
  8276. legged: {
  8277. height: math.unit(1.3, "meters"),
  8278. weight: math.unit(100, "lb"),
  8279. name: "Legged",
  8280. image: {
  8281. source: "./media/characters/teal/legged.svg",
  8282. extra: 462 / 437,
  8283. bottom: 24 / 486
  8284. }
  8285. },
  8286. naga: {
  8287. height: math.unit(5.4, "meters"),
  8288. weight: math.unit(4000, "lb"),
  8289. name: "Naga",
  8290. image: {
  8291. source: "./media/characters/teal/naga.svg",
  8292. extra: 1902 / 1858,
  8293. bottom: 0 / 1902
  8294. }
  8295. },
  8296. hand: {
  8297. height: math.unit(0.52, "meters"),
  8298. name: "Hand",
  8299. image: {
  8300. source: "./media/characters/teal/hand.svg"
  8301. }
  8302. },
  8303. maw: {
  8304. height: math.unit(0.43, "meters"),
  8305. name: "Maw",
  8306. image: {
  8307. source: "./media/characters/teal/maw.svg"
  8308. }
  8309. },
  8310. slit: {
  8311. height: math.unit(0.25, "meters"),
  8312. name: "Slit",
  8313. image: {
  8314. source: "./media/characters/teal/slit.svg"
  8315. }
  8316. },
  8317. },
  8318. [
  8319. {
  8320. name: "Normal",
  8321. height: math.unit(2.75, "meters"),
  8322. default: true
  8323. },
  8324. {
  8325. name: "Macro",
  8326. height: math.unit(300, "feet")
  8327. },
  8328. {
  8329. name: "Macro+",
  8330. height: math.unit(2000, "feet")
  8331. },
  8332. ]
  8333. ))
  8334. characterMakers.push(() => makeCharacter(
  8335. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8336. {
  8337. frontCat: {
  8338. height: math.unit(6, "feet"),
  8339. weight: math.unit(180, "lbs"),
  8340. name: "Front (Cat)",
  8341. image: {
  8342. source: "./media/characters/ravin-amulet/front-cat.svg"
  8343. }
  8344. },
  8345. frontCatAlt: {
  8346. height: math.unit(6, "feet"),
  8347. weight: math.unit(180, "lbs"),
  8348. name: "Front (Alt, Cat)",
  8349. image: {
  8350. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8351. }
  8352. },
  8353. frontWerewolf: {
  8354. height: math.unit(6 * 1.2, "feet"),
  8355. weight: math.unit(225, "lbs"),
  8356. name: "Front (Werewolf)",
  8357. image: {
  8358. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8359. }
  8360. },
  8361. backWerewolf: {
  8362. height: math.unit(6 * 1.2, "feet"),
  8363. weight: math.unit(225, "lbs"),
  8364. name: "Back (Werewolf)",
  8365. image: {
  8366. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8367. }
  8368. },
  8369. },
  8370. [
  8371. {
  8372. name: "Nano",
  8373. height: math.unit(1, "micrometer")
  8374. },
  8375. {
  8376. name: "Micro",
  8377. height: math.unit(1, "inch")
  8378. },
  8379. {
  8380. name: "Normal",
  8381. height: math.unit(6, "feet"),
  8382. default: true
  8383. },
  8384. {
  8385. name: "Macro",
  8386. height: math.unit(60, "feet")
  8387. }
  8388. ]
  8389. ))
  8390. characterMakers.push(() => makeCharacter(
  8391. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8392. {
  8393. front: {
  8394. height: math.unit(6, "feet"),
  8395. weight: math.unit(165, "lbs"),
  8396. name: "Front",
  8397. image: {
  8398. source: "./media/characters/fluoresce/front.svg"
  8399. }
  8400. }
  8401. },
  8402. [
  8403. {
  8404. name: "Micro",
  8405. height: math.unit(6, "cm")
  8406. },
  8407. {
  8408. name: "Normal",
  8409. height: math.unit(5 + 7 / 12, "feet"),
  8410. default: true
  8411. },
  8412. {
  8413. name: "Macro",
  8414. height: math.unit(56, "feet")
  8415. },
  8416. {
  8417. name: "Megamacro",
  8418. height: math.unit(1.9, "miles")
  8419. },
  8420. ]
  8421. ))
  8422. characterMakers.push(() => makeCharacter(
  8423. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8424. {
  8425. front: {
  8426. height: math.unit(9 + 6 / 12, "feet"),
  8427. weight: math.unit(523, "lbs"),
  8428. name: "Side",
  8429. image: {
  8430. source: "./media/characters/aurora/side.svg",
  8431. extra: 474/393,
  8432. bottom: 5/479
  8433. }
  8434. }
  8435. },
  8436. [
  8437. {
  8438. name: "Normal",
  8439. height: math.unit(9 + 6 / 12, "feet")
  8440. },
  8441. {
  8442. name: "Macro",
  8443. height: math.unit(96, "feet"),
  8444. default: true
  8445. },
  8446. {
  8447. name: "Macro+",
  8448. height: math.unit(243, "feet")
  8449. },
  8450. ]
  8451. ))
  8452. characterMakers.push(() => makeCharacter(
  8453. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8454. {
  8455. front: {
  8456. height: math.unit(194, "cm"),
  8457. weight: math.unit(90, "kg"),
  8458. name: "Front",
  8459. image: {
  8460. source: "./media/characters/ranek/front.svg",
  8461. extra: 1862/1791,
  8462. bottom: 80/1942
  8463. }
  8464. },
  8465. back: {
  8466. height: math.unit(194, "cm"),
  8467. weight: math.unit(90, "kg"),
  8468. name: "Back",
  8469. image: {
  8470. source: "./media/characters/ranek/back.svg",
  8471. extra: 1853/1787,
  8472. bottom: 74/1927
  8473. }
  8474. },
  8475. feral: {
  8476. height: math.unit(30, "cm"),
  8477. weight: math.unit(1.6, "lbs"),
  8478. name: "Feral",
  8479. image: {
  8480. source: "./media/characters/ranek/feral.svg",
  8481. extra: 990/631,
  8482. bottom: 29/1019
  8483. }
  8484. },
  8485. },
  8486. [
  8487. {
  8488. name: "Normal",
  8489. height: math.unit(194, "cm"),
  8490. default: true
  8491. },
  8492. {
  8493. name: "Macro",
  8494. height: math.unit(100, "meters")
  8495. },
  8496. ]
  8497. ))
  8498. characterMakers.push(() => makeCharacter(
  8499. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8500. {
  8501. front: {
  8502. height: math.unit(5 + 6 / 12, "feet"),
  8503. weight: math.unit(153, "lbs"),
  8504. name: "Front",
  8505. image: {
  8506. source: "./media/characters/andrew-cooper/front.svg"
  8507. }
  8508. },
  8509. },
  8510. [
  8511. {
  8512. name: "Nano",
  8513. height: math.unit(1, "mm")
  8514. },
  8515. {
  8516. name: "Micro",
  8517. height: math.unit(2, "inches")
  8518. },
  8519. {
  8520. name: "Normal",
  8521. height: math.unit(5 + 6 / 12, "feet"),
  8522. default: true
  8523. }
  8524. ]
  8525. ))
  8526. characterMakers.push(() => makeCharacter(
  8527. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8528. {
  8529. front: {
  8530. height: math.unit(6, "feet"),
  8531. weight: math.unit(180, "lbs"),
  8532. name: "Front",
  8533. image: {
  8534. source: "./media/characters/akane-sato/front.svg",
  8535. extra: 1219 / 1140
  8536. }
  8537. },
  8538. back: {
  8539. height: math.unit(6, "feet"),
  8540. weight: math.unit(180, "lbs"),
  8541. name: "Back",
  8542. image: {
  8543. source: "./media/characters/akane-sato/back.svg",
  8544. extra: 1219 / 1170
  8545. }
  8546. },
  8547. },
  8548. [
  8549. {
  8550. name: "Normal",
  8551. height: math.unit(2.5, "meters")
  8552. },
  8553. {
  8554. name: "Macro",
  8555. height: math.unit(250, "meters"),
  8556. default: true
  8557. },
  8558. {
  8559. name: "Megamacro",
  8560. height: math.unit(25, "km")
  8561. },
  8562. ]
  8563. ))
  8564. characterMakers.push(() => makeCharacter(
  8565. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8566. {
  8567. front: {
  8568. height: math.unit(6, "feet"),
  8569. weight: math.unit(65, "kg"),
  8570. name: "Front",
  8571. image: {
  8572. source: "./media/characters/rook/front.svg",
  8573. extra: 960 / 950
  8574. }
  8575. }
  8576. },
  8577. [
  8578. {
  8579. name: "Normal",
  8580. height: math.unit(8.8, "feet")
  8581. },
  8582. {
  8583. name: "Macro",
  8584. height: math.unit(88, "feet"),
  8585. default: true
  8586. },
  8587. {
  8588. name: "Megamacro",
  8589. height: math.unit(8, "miles")
  8590. },
  8591. ]
  8592. ))
  8593. characterMakers.push(() => makeCharacter(
  8594. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8595. {
  8596. front: {
  8597. height: math.unit(12 + 2 / 12, "feet"),
  8598. weight: math.unit(808, "lbs"),
  8599. name: "Front",
  8600. image: {
  8601. source: "./media/characters/prodigy/front.svg"
  8602. }
  8603. }
  8604. },
  8605. [
  8606. {
  8607. name: "Normal",
  8608. height: math.unit(12 + 2 / 12, "feet"),
  8609. default: true
  8610. },
  8611. {
  8612. name: "Macro",
  8613. height: math.unit(143, "feet")
  8614. },
  8615. {
  8616. name: "Macro+",
  8617. height: math.unit(400, "feet")
  8618. },
  8619. ]
  8620. ))
  8621. characterMakers.push(() => makeCharacter(
  8622. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8623. {
  8624. front: {
  8625. height: math.unit(6, "feet"),
  8626. weight: math.unit(225, "lbs"),
  8627. name: "Front",
  8628. image: {
  8629. source: "./media/characters/daniel/front.svg"
  8630. }
  8631. },
  8632. leaning: {
  8633. height: math.unit(6, "feet"),
  8634. weight: math.unit(225, "lbs"),
  8635. name: "Leaning",
  8636. image: {
  8637. source: "./media/characters/daniel/leaning.svg"
  8638. }
  8639. },
  8640. },
  8641. [
  8642. {
  8643. name: "Macro",
  8644. height: math.unit(1000, "feet"),
  8645. default: true
  8646. },
  8647. ]
  8648. ))
  8649. characterMakers.push(() => makeCharacter(
  8650. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8651. {
  8652. front: {
  8653. height: math.unit(6, "feet"),
  8654. weight: math.unit(88, "lbs"),
  8655. name: "Front",
  8656. image: {
  8657. source: "./media/characters/chiros/front.svg",
  8658. extra: 306 / 226
  8659. }
  8660. },
  8661. side: {
  8662. height: math.unit(6, "feet"),
  8663. weight: math.unit(88, "lbs"),
  8664. name: "Side",
  8665. image: {
  8666. source: "./media/characters/chiros/side.svg",
  8667. extra: 306 / 226
  8668. }
  8669. },
  8670. },
  8671. [
  8672. {
  8673. name: "Normal",
  8674. height: math.unit(6, "cm"),
  8675. default: true
  8676. },
  8677. ]
  8678. ))
  8679. characterMakers.push(() => makeCharacter(
  8680. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8681. {
  8682. front: {
  8683. height: math.unit(6, "feet"),
  8684. weight: math.unit(100, "lbs"),
  8685. name: "Front",
  8686. image: {
  8687. source: "./media/characters/selka/front.svg",
  8688. extra: 947 / 887
  8689. }
  8690. }
  8691. },
  8692. [
  8693. {
  8694. name: "Normal",
  8695. height: math.unit(5, "cm"),
  8696. default: true
  8697. },
  8698. ]
  8699. ))
  8700. characterMakers.push(() => makeCharacter(
  8701. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8702. {
  8703. front: {
  8704. height: math.unit(8 + 3 / 12, "feet"),
  8705. weight: math.unit(424, "lbs"),
  8706. name: "Front",
  8707. image: {
  8708. source: "./media/characters/verin/front.svg",
  8709. extra: 1845 / 1550
  8710. }
  8711. },
  8712. frontArmored: {
  8713. height: math.unit(8 + 3 / 12, "feet"),
  8714. weight: math.unit(424, "lbs"),
  8715. name: "Front (Armored)",
  8716. image: {
  8717. source: "./media/characters/verin/front-armor.svg",
  8718. extra: 1845 / 1550,
  8719. bottom: 0.01
  8720. }
  8721. },
  8722. back: {
  8723. height: math.unit(8 + 3 / 12, "feet"),
  8724. weight: math.unit(424, "lbs"),
  8725. name: "Back",
  8726. image: {
  8727. source: "./media/characters/verin/back.svg",
  8728. bottom: 0.1,
  8729. extra: 1
  8730. }
  8731. },
  8732. foot: {
  8733. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8734. name: "Foot",
  8735. image: {
  8736. source: "./media/characters/verin/foot.svg"
  8737. }
  8738. },
  8739. },
  8740. [
  8741. {
  8742. name: "Normal",
  8743. height: math.unit(8 + 3 / 12, "feet")
  8744. },
  8745. {
  8746. name: "Minimacro",
  8747. height: math.unit(21, "feet"),
  8748. default: true
  8749. },
  8750. {
  8751. name: "Macro",
  8752. height: math.unit(626, "feet")
  8753. },
  8754. ]
  8755. ))
  8756. characterMakers.push(() => makeCharacter(
  8757. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8758. {
  8759. front: {
  8760. height: math.unit(2.718, "meters"),
  8761. weight: math.unit(150, "lbs"),
  8762. name: "Front",
  8763. image: {
  8764. source: "./media/characters/sovrim-terraquian/front.svg",
  8765. extra: 1752/1689,
  8766. bottom: 36/1788
  8767. }
  8768. },
  8769. back: {
  8770. height: math.unit(2.718, "meters"),
  8771. weight: math.unit(150, "lbs"),
  8772. name: "Back",
  8773. image: {
  8774. source: "./media/characters/sovrim-terraquian/back.svg",
  8775. extra: 1698/1657,
  8776. bottom: 58/1756
  8777. }
  8778. },
  8779. tongue: {
  8780. height: math.unit(2.865, "feet"),
  8781. name: "Tongue",
  8782. image: {
  8783. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8784. }
  8785. },
  8786. hand: {
  8787. height: math.unit(1.61, "feet"),
  8788. name: "Hand",
  8789. image: {
  8790. source: "./media/characters/sovrim-terraquian/hand.svg"
  8791. }
  8792. },
  8793. foot: {
  8794. height: math.unit(1.05, "feet"),
  8795. name: "Foot",
  8796. image: {
  8797. source: "./media/characters/sovrim-terraquian/foot.svg"
  8798. }
  8799. },
  8800. footAlt: {
  8801. height: math.unit(0.88, "feet"),
  8802. name: "Foot (Alt)",
  8803. image: {
  8804. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8805. }
  8806. },
  8807. },
  8808. [
  8809. {
  8810. name: "Micro",
  8811. height: math.unit(2, "inches")
  8812. },
  8813. {
  8814. name: "Small",
  8815. height: math.unit(1, "meter")
  8816. },
  8817. {
  8818. name: "Normal",
  8819. height: math.unit(Math.E, "meters"),
  8820. default: true
  8821. },
  8822. {
  8823. name: "Macro",
  8824. height: math.unit(20, "meters")
  8825. },
  8826. {
  8827. name: "Macro+",
  8828. height: math.unit(400, "meters")
  8829. },
  8830. ]
  8831. ))
  8832. characterMakers.push(() => makeCharacter(
  8833. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8834. {
  8835. front: {
  8836. height: math.unit(7, "feet"),
  8837. weight: math.unit(489, "lbs"),
  8838. name: "Front",
  8839. image: {
  8840. source: "./media/characters/reece-silvermane/front.svg",
  8841. bottom: 0.02,
  8842. extra: 1
  8843. }
  8844. },
  8845. },
  8846. [
  8847. {
  8848. name: "Macro",
  8849. height: math.unit(1.5, "miles"),
  8850. default: true
  8851. },
  8852. ]
  8853. ))
  8854. characterMakers.push(() => makeCharacter(
  8855. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8856. {
  8857. front: {
  8858. height: math.unit(6, "feet"),
  8859. weight: math.unit(78, "kg"),
  8860. name: "Front",
  8861. image: {
  8862. source: "./media/characters/kane/front.svg",
  8863. extra: 978 / 899
  8864. }
  8865. },
  8866. },
  8867. [
  8868. {
  8869. name: "Normal",
  8870. height: math.unit(2.1, "m"),
  8871. },
  8872. {
  8873. name: "Macro",
  8874. height: math.unit(1, "km"),
  8875. default: true
  8876. },
  8877. ]
  8878. ))
  8879. characterMakers.push(() => makeCharacter(
  8880. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8881. {
  8882. front: {
  8883. height: math.unit(6, "feet"),
  8884. weight: math.unit(200, "kg"),
  8885. name: "Front",
  8886. image: {
  8887. source: "./media/characters/tegon/front.svg",
  8888. bottom: 0.01,
  8889. extra: 1
  8890. }
  8891. },
  8892. },
  8893. [
  8894. {
  8895. name: "Micro",
  8896. height: math.unit(1, "inch")
  8897. },
  8898. {
  8899. name: "Normal",
  8900. height: math.unit(6 + 3 / 12, "feet"),
  8901. default: true
  8902. },
  8903. {
  8904. name: "Macro",
  8905. height: math.unit(300, "feet")
  8906. },
  8907. {
  8908. name: "Megamacro",
  8909. height: math.unit(69, "miles")
  8910. },
  8911. ]
  8912. ))
  8913. characterMakers.push(() => makeCharacter(
  8914. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8915. {
  8916. side: {
  8917. height: math.unit(6, "feet"),
  8918. weight: math.unit(2304, "lbs"),
  8919. name: "Side",
  8920. image: {
  8921. source: "./media/characters/arcturax/side.svg",
  8922. extra: 790 / 376,
  8923. bottom: 0.01
  8924. }
  8925. },
  8926. },
  8927. [
  8928. {
  8929. name: "Micro",
  8930. height: math.unit(2, "inch")
  8931. },
  8932. {
  8933. name: "Normal",
  8934. height: math.unit(6, "feet")
  8935. },
  8936. {
  8937. name: "Macro",
  8938. height: math.unit(39, "feet"),
  8939. default: true
  8940. },
  8941. {
  8942. name: "Megamacro",
  8943. height: math.unit(7, "miles")
  8944. },
  8945. ]
  8946. ))
  8947. characterMakers.push(() => makeCharacter(
  8948. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8949. {
  8950. front: {
  8951. height: math.unit(6, "feet"),
  8952. weight: math.unit(50, "lbs"),
  8953. name: "Front",
  8954. image: {
  8955. source: "./media/characters/sentri/front.svg",
  8956. extra: 1750 / 1570,
  8957. bottom: 0.025
  8958. }
  8959. },
  8960. frontAlt: {
  8961. height: math.unit(6, "feet"),
  8962. weight: math.unit(50, "lbs"),
  8963. name: "Front (Alt)",
  8964. image: {
  8965. source: "./media/characters/sentri/front-alt.svg",
  8966. extra: 1750 / 1570,
  8967. bottom: 0.025
  8968. }
  8969. },
  8970. },
  8971. [
  8972. {
  8973. name: "Normal",
  8974. height: math.unit(15, "feet"),
  8975. default: true
  8976. },
  8977. {
  8978. name: "Macro",
  8979. height: math.unit(2500, "feet")
  8980. }
  8981. ]
  8982. ))
  8983. characterMakers.push(() => makeCharacter(
  8984. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8985. {
  8986. front: {
  8987. height: math.unit(5 + 8 / 12, "feet"),
  8988. weight: math.unit(130, "lbs"),
  8989. name: "Front",
  8990. image: {
  8991. source: "./media/characters/corvin/front.svg",
  8992. extra: 1803 / 1629
  8993. }
  8994. },
  8995. frontShirt: {
  8996. height: math.unit(5 + 8 / 12, "feet"),
  8997. weight: math.unit(130, "lbs"),
  8998. name: "Front (Shirt)",
  8999. image: {
  9000. source: "./media/characters/corvin/front-shirt.svg",
  9001. extra: 1803 / 1629
  9002. }
  9003. },
  9004. frontPoncho: {
  9005. height: math.unit(5 + 8 / 12, "feet"),
  9006. weight: math.unit(130, "lbs"),
  9007. name: "Front (Poncho)",
  9008. image: {
  9009. source: "./media/characters/corvin/front-poncho.svg",
  9010. extra: 1803 / 1629
  9011. }
  9012. },
  9013. side: {
  9014. height: math.unit(5 + 8 / 12, "feet"),
  9015. weight: math.unit(130, "lbs"),
  9016. name: "Side",
  9017. image: {
  9018. source: "./media/characters/corvin/side.svg",
  9019. extra: 1012 / 945
  9020. }
  9021. },
  9022. back: {
  9023. height: math.unit(5 + 8 / 12, "feet"),
  9024. weight: math.unit(130, "lbs"),
  9025. name: "Back",
  9026. image: {
  9027. source: "./media/characters/corvin/back.svg",
  9028. extra: 1803 / 1629
  9029. }
  9030. },
  9031. },
  9032. [
  9033. {
  9034. name: "Micro",
  9035. height: math.unit(3, "inches")
  9036. },
  9037. {
  9038. name: "Normal",
  9039. height: math.unit(5 + 8 / 12, "feet")
  9040. },
  9041. {
  9042. name: "Macro",
  9043. height: math.unit(300, "feet"),
  9044. default: true
  9045. },
  9046. {
  9047. name: "Megamacro",
  9048. height: math.unit(500, "miles")
  9049. }
  9050. ]
  9051. ))
  9052. characterMakers.push(() => makeCharacter(
  9053. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9054. {
  9055. front: {
  9056. height: math.unit(6, "feet"),
  9057. weight: math.unit(135, "lbs"),
  9058. name: "Front",
  9059. image: {
  9060. source: "./media/characters/q/front.svg",
  9061. extra: 854 / 752,
  9062. bottom: 0.005
  9063. }
  9064. },
  9065. back: {
  9066. height: math.unit(6, "feet"),
  9067. weight: math.unit(130, "lbs"),
  9068. name: "Back",
  9069. image: {
  9070. source: "./media/characters/q/back.svg",
  9071. extra: 854 / 752
  9072. }
  9073. },
  9074. },
  9075. [
  9076. {
  9077. name: "Macro",
  9078. height: math.unit(90, "feet"),
  9079. default: true
  9080. },
  9081. {
  9082. name: "Extra Macro",
  9083. height: math.unit(300, "feet"),
  9084. },
  9085. {
  9086. name: "BIG WALF",
  9087. height: math.unit(750, "feet"),
  9088. },
  9089. ]
  9090. ))
  9091. characterMakers.push(() => makeCharacter(
  9092. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9093. {
  9094. front: {
  9095. height: math.unit(3, "feet"),
  9096. weight: math.unit(28, "lbs"),
  9097. name: "Front",
  9098. image: {
  9099. source: "./media/characters/citrine/front.svg"
  9100. }
  9101. }
  9102. },
  9103. [
  9104. {
  9105. name: "Normal",
  9106. height: math.unit(3, "feet"),
  9107. default: true
  9108. }
  9109. ]
  9110. ))
  9111. characterMakers.push(() => makeCharacter(
  9112. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9113. {
  9114. front: {
  9115. height: math.unit(14, "feet"),
  9116. weight: math.unit(1450, "kg"),
  9117. preyCapacity: math.unit(15, "people"),
  9118. name: "Front",
  9119. image: {
  9120. source: "./media/characters/aura-starwind/front.svg",
  9121. extra: 1440/1327,
  9122. bottom: 11/1451
  9123. }
  9124. },
  9125. side: {
  9126. height: math.unit(14, "feet"),
  9127. weight: math.unit(1450, "kg"),
  9128. preyCapacity: math.unit(15, "people"),
  9129. name: "Side",
  9130. image: {
  9131. source: "./media/characters/aura-starwind/side.svg",
  9132. extra: 1654 / 1497
  9133. }
  9134. },
  9135. taur: {
  9136. height: math.unit(18, "feet"),
  9137. weight: math.unit(5500, "kg"),
  9138. preyCapacity: math.unit(50, "people"),
  9139. name: "Taur",
  9140. image: {
  9141. source: "./media/characters/aura-starwind/taur.svg",
  9142. extra: 1760 / 1650
  9143. }
  9144. },
  9145. feral: {
  9146. height: math.unit(46, "feet"),
  9147. weight: math.unit(25000, "kg"),
  9148. preyCapacity: math.unit(120, "people"),
  9149. name: "Feral",
  9150. image: {
  9151. source: "./media/characters/aura-starwind/feral.svg"
  9152. }
  9153. },
  9154. },
  9155. [
  9156. {
  9157. name: "Normal",
  9158. height: math.unit(14, "feet"),
  9159. default: true
  9160. },
  9161. {
  9162. name: "Macro",
  9163. height: math.unit(50, "meters")
  9164. },
  9165. {
  9166. name: "Megamacro",
  9167. height: math.unit(5000, "meters")
  9168. },
  9169. {
  9170. name: "Gigamacro",
  9171. height: math.unit(100000, "kilometers")
  9172. },
  9173. ]
  9174. ))
  9175. characterMakers.push(() => makeCharacter(
  9176. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9177. {
  9178. front: {
  9179. height: math.unit(2 + 7 / 12, "feet"),
  9180. weight: math.unit(32, "lbs"),
  9181. name: "Front",
  9182. image: {
  9183. source: "./media/characters/rivet/front.svg",
  9184. extra: 1716 / 1658,
  9185. bottom: 0.03
  9186. }
  9187. },
  9188. foot: {
  9189. height: math.unit(0.551, "feet"),
  9190. name: "Rivet's Foot",
  9191. image: {
  9192. source: "./media/characters/rivet/foot.svg"
  9193. },
  9194. rename: true
  9195. }
  9196. },
  9197. [
  9198. {
  9199. name: "Micro",
  9200. height: math.unit(1.5, "inches"),
  9201. },
  9202. {
  9203. name: "Normal",
  9204. height: math.unit(2 + 7 / 12, "feet"),
  9205. default: true
  9206. },
  9207. {
  9208. name: "Macro",
  9209. height: math.unit(85, "feet")
  9210. },
  9211. {
  9212. name: "Megamacro",
  9213. height: math.unit(2.2, "km")
  9214. }
  9215. ]
  9216. ))
  9217. characterMakers.push(() => makeCharacter(
  9218. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9219. {
  9220. front: {
  9221. height: math.unit(5 + 9 / 12, "feet"),
  9222. weight: math.unit(150, "lbs"),
  9223. name: "Front",
  9224. image: {
  9225. source: "./media/characters/coffee/front.svg",
  9226. extra: 946/880,
  9227. bottom: 66/1012
  9228. }
  9229. },
  9230. foot: {
  9231. height: math.unit(1.29, "feet"),
  9232. name: "Foot",
  9233. image: {
  9234. source: "./media/characters/coffee/foot.svg"
  9235. }
  9236. },
  9237. },
  9238. [
  9239. {
  9240. name: "Micro",
  9241. height: math.unit(2, "inches"),
  9242. },
  9243. {
  9244. name: "Normal",
  9245. height: math.unit(5 + 9 / 12, "feet"),
  9246. default: true
  9247. },
  9248. {
  9249. name: "Macro",
  9250. height: math.unit(800, "feet")
  9251. },
  9252. {
  9253. name: "Megamacro",
  9254. height: math.unit(25, "miles")
  9255. }
  9256. ]
  9257. ))
  9258. characterMakers.push(() => makeCharacter(
  9259. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9260. {
  9261. front: {
  9262. height: math.unit(6, "feet"),
  9263. weight: math.unit(200, "lbs"),
  9264. name: "Front",
  9265. image: {
  9266. source: "./media/characters/chari-gal/front.svg",
  9267. extra: 1568 / 1385,
  9268. bottom: 0.047
  9269. }
  9270. },
  9271. gigantamax: {
  9272. height: math.unit(6 * 16, "feet"),
  9273. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9274. name: "Gigantamax",
  9275. image: {
  9276. source: "./media/characters/chari-gal/gigantamax.svg",
  9277. extra: 1124 / 888,
  9278. bottom: 0.03
  9279. }
  9280. },
  9281. },
  9282. [
  9283. {
  9284. name: "Normal",
  9285. height: math.unit(5 + 7 / 12, "feet")
  9286. },
  9287. {
  9288. name: "Macro",
  9289. height: math.unit(200, "feet"),
  9290. default: true
  9291. }
  9292. ]
  9293. ))
  9294. characterMakers.push(() => makeCharacter(
  9295. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9296. {
  9297. front: {
  9298. height: math.unit(6, "feet"),
  9299. weight: math.unit(150, "lbs"),
  9300. name: "Front",
  9301. image: {
  9302. source: "./media/characters/nova/front.svg",
  9303. extra: 5000 / 4722,
  9304. bottom: 0.02
  9305. }
  9306. }
  9307. },
  9308. [
  9309. {
  9310. name: "Micro-",
  9311. height: math.unit(0.8, "inches")
  9312. },
  9313. {
  9314. name: "Micro",
  9315. height: math.unit(2, "inches"),
  9316. default: true
  9317. },
  9318. ]
  9319. ))
  9320. characterMakers.push(() => makeCharacter(
  9321. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9322. {
  9323. koboldFront: {
  9324. height: math.unit(3 + 1 / 12, "feet"),
  9325. weight: math.unit(21.7, "lbs"),
  9326. name: "Front",
  9327. image: {
  9328. source: "./media/characters/argent/kobold-front.svg",
  9329. extra: 1471 / 1331,
  9330. bottom: 100.8 / 1575.5
  9331. },
  9332. form: "kobold",
  9333. default: true
  9334. },
  9335. dragonFront: {
  9336. height: math.unit(75, "inches"),
  9337. name: "Front",
  9338. image: {
  9339. source: "./media/characters/argent/dragon-front.svg",
  9340. extra: 1389/1248,
  9341. bottom: 54/1443
  9342. },
  9343. form: "dragon",
  9344. },
  9345. dragonBack: {
  9346. height: math.unit(75, "inches"),
  9347. name: "Back",
  9348. image: {
  9349. source: "./media/characters/argent/dragon-back.svg",
  9350. extra: 1399/1271,
  9351. bottom: 23/1422
  9352. },
  9353. form: "dragon",
  9354. },
  9355. dragonDressed: {
  9356. height: math.unit(75, "inches"),
  9357. name: "Dressed",
  9358. image: {
  9359. source: "./media/characters/argent/dragon-dressed.svg",
  9360. extra: 1350/1215,
  9361. bottom: 26/1376
  9362. },
  9363. form: "dragon"
  9364. },
  9365. dragonHead: {
  9366. height: math.unit(23.5, "inches"),
  9367. name: "Head",
  9368. image: {
  9369. source: "./media/characters/argent/dragon-head.svg"
  9370. },
  9371. form: "dragon",
  9372. },
  9373. },
  9374. [
  9375. {
  9376. name: "Micro",
  9377. height: math.unit(2, "inches"),
  9378. form: "kobold",
  9379. },
  9380. {
  9381. name: "Normal",
  9382. height: math.unit(3 + 1 / 12, "feet"),
  9383. form: "kobold",
  9384. default: true
  9385. },
  9386. {
  9387. name: "Macro",
  9388. height: math.unit(120, "feet"),
  9389. form: "kobold",
  9390. },
  9391. {
  9392. name: "Speck",
  9393. height: math.unit(1, "mm"),
  9394. form: "dragon",
  9395. },
  9396. {
  9397. name: "Tiny",
  9398. height: math.unit(1, "cm"),
  9399. form: "dragon",
  9400. },
  9401. {
  9402. name: "Micro",
  9403. height: math.unit(5, "cm"),
  9404. form: "dragon",
  9405. },
  9406. {
  9407. name: "Normal",
  9408. height: math.unit(75, "inches"),
  9409. form: "dragon",
  9410. default: true
  9411. },
  9412. {
  9413. name: "Extra Tall",
  9414. height: math.unit(9, "feet"),
  9415. form: "dragon",
  9416. },
  9417. {
  9418. name: "Inconvenient",
  9419. height: math.unit(5, "meters"),
  9420. form: "dragon",
  9421. },
  9422. {
  9423. name: "Macro",
  9424. height: math.unit(70, "meters"),
  9425. form: "dragon",
  9426. },
  9427. {
  9428. name: "Macro+",
  9429. height: math.unit(250, "meters"),
  9430. form: "dragon",
  9431. },
  9432. {
  9433. name: "Megamacro",
  9434. height: math.unit(20, "km"),
  9435. form: "dragon",
  9436. },
  9437. {
  9438. name: "Mountainous",
  9439. height: math.unit(100, "km"),
  9440. form: "dragon",
  9441. },
  9442. {
  9443. name: "Continental",
  9444. height: math.unit(2, "megameters"),
  9445. form: "dragon",
  9446. },
  9447. {
  9448. name: "Too Big",
  9449. height: math.unit(900, "megameters"),
  9450. form: "dragon",
  9451. },
  9452. ],
  9453. {
  9454. "kobold": {
  9455. name: "Kobold",
  9456. default: true
  9457. },
  9458. "dragon": {
  9459. name: "Dragon",
  9460. },
  9461. }
  9462. ))
  9463. characterMakers.push(() => makeCharacter(
  9464. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9465. {
  9466. lamp: {
  9467. height: math.unit(7 * 1559 / 989, "feet"),
  9468. name: "Magic Lamp",
  9469. image: {
  9470. source: "./media/characters/mira-al-cul/lamp.svg",
  9471. extra: 1617 / 1559
  9472. }
  9473. },
  9474. front: {
  9475. height: math.unit(7, "feet"),
  9476. name: "Front",
  9477. image: {
  9478. source: "./media/characters/mira-al-cul/front.svg",
  9479. extra: 1044 / 990
  9480. }
  9481. },
  9482. },
  9483. [
  9484. {
  9485. name: "Heavily Restricted",
  9486. height: math.unit(7 * 1559 / 989, "feet")
  9487. },
  9488. {
  9489. name: "Freshly Freed",
  9490. height: math.unit(50 * 1559 / 989, "feet")
  9491. },
  9492. {
  9493. name: "World Encompassing",
  9494. height: math.unit(10000 * 1559 / 989, "miles")
  9495. },
  9496. {
  9497. name: "Galactic",
  9498. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9499. },
  9500. {
  9501. name: "Palmed Universe",
  9502. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9503. default: true
  9504. },
  9505. {
  9506. name: "Multiversal Matriarch",
  9507. height: math.unit(8.87e10, "yottameters")
  9508. },
  9509. {
  9510. name: "Void Mother",
  9511. height: math.unit(3.14e110, "yottaparsecs")
  9512. },
  9513. {
  9514. name: "Toying with Transcendence",
  9515. height: math.unit(1e307, "meters")
  9516. },
  9517. ]
  9518. ))
  9519. characterMakers.push(() => makeCharacter(
  9520. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9521. {
  9522. front: {
  9523. height: math.unit(17 + 1 / 12, "feet"),
  9524. weight: math.unit(476.2 * 5, "lbs"),
  9525. name: "Front",
  9526. image: {
  9527. source: "./media/characters/kuro-shi-uchū/front.svg",
  9528. extra: 2329 / 1835,
  9529. bottom: 0.02
  9530. }
  9531. },
  9532. },
  9533. [
  9534. {
  9535. name: "Micro",
  9536. height: math.unit(2, "inches")
  9537. },
  9538. {
  9539. name: "Normal",
  9540. height: math.unit(12, "meters")
  9541. },
  9542. {
  9543. name: "Planetary",
  9544. height: math.unit(0.00929, "AU"),
  9545. default: true
  9546. },
  9547. {
  9548. name: "Universal",
  9549. height: math.unit(20, "gigaparsecs")
  9550. },
  9551. ]
  9552. ))
  9553. characterMakers.push(() => makeCharacter(
  9554. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9555. {
  9556. front: {
  9557. height: math.unit(5 + 2 / 12, "feet"),
  9558. weight: math.unit(120, "lbs"),
  9559. name: "Front",
  9560. image: {
  9561. source: "./media/characters/katherine/front.svg",
  9562. extra: 2075 / 1969
  9563. }
  9564. },
  9565. dress: {
  9566. height: math.unit(5 + 2 / 12, "feet"),
  9567. weight: math.unit(120, "lbs"),
  9568. name: "Dress",
  9569. image: {
  9570. source: "./media/characters/katherine/dress.svg",
  9571. extra: 2258 / 2064
  9572. }
  9573. },
  9574. },
  9575. [
  9576. {
  9577. name: "Micro",
  9578. height: math.unit(1, "inches"),
  9579. default: true
  9580. },
  9581. {
  9582. name: "Normal",
  9583. height: math.unit(5 + 2 / 12, "feet")
  9584. },
  9585. {
  9586. name: "Macro",
  9587. height: math.unit(100, "meters")
  9588. },
  9589. {
  9590. name: "Megamacro",
  9591. height: math.unit(80, "miles")
  9592. },
  9593. ]
  9594. ))
  9595. characterMakers.push(() => makeCharacter(
  9596. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9597. {
  9598. front: {
  9599. height: math.unit(7 + 8 / 12, "feet"),
  9600. weight: math.unit(250, "lbs"),
  9601. name: "Front",
  9602. image: {
  9603. source: "./media/characters/yevis/front.svg",
  9604. extra: 1938 / 1755
  9605. }
  9606. }
  9607. },
  9608. [
  9609. {
  9610. name: "Mortal",
  9611. height: math.unit(7 + 8 / 12, "feet")
  9612. },
  9613. {
  9614. name: "Battle",
  9615. height: math.unit(25 + 11 / 12, "feet")
  9616. },
  9617. {
  9618. name: "Wrath",
  9619. height: math.unit(1654 + 11 / 12, "feet")
  9620. },
  9621. {
  9622. name: "Planet Destroyer",
  9623. height: math.unit(12000, "miles")
  9624. },
  9625. {
  9626. name: "Galaxy Conqueror",
  9627. height: math.unit(1.45, "zettameters"),
  9628. default: true
  9629. },
  9630. {
  9631. name: "Universal War",
  9632. height: math.unit(184, "gigaparsecs")
  9633. },
  9634. {
  9635. name: "Eternity War",
  9636. height: math.unit(1.98e55, "yottaparsecs")
  9637. },
  9638. ]
  9639. ))
  9640. characterMakers.push(() => makeCharacter(
  9641. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9642. {
  9643. front: {
  9644. height: math.unit(5 + 8 / 12, "feet"),
  9645. weight: math.unit(63, "kg"),
  9646. name: "Front",
  9647. image: {
  9648. source: "./media/characters/xavier/front.svg",
  9649. extra: 944 / 883
  9650. }
  9651. },
  9652. frontStretch: {
  9653. height: math.unit(5 + 8 / 12, "feet"),
  9654. weight: math.unit(63, "kg"),
  9655. name: "Stretching",
  9656. image: {
  9657. source: "./media/characters/xavier/front-stretch.svg",
  9658. extra: 962 / 820
  9659. }
  9660. },
  9661. },
  9662. [
  9663. {
  9664. name: "Normal",
  9665. height: math.unit(5 + 8 / 12, "feet")
  9666. },
  9667. {
  9668. name: "Macro",
  9669. height: math.unit(100, "meters"),
  9670. default: true
  9671. },
  9672. {
  9673. name: "McLargeHuge",
  9674. height: math.unit(10, "miles")
  9675. },
  9676. ]
  9677. ))
  9678. characterMakers.push(() => makeCharacter(
  9679. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9680. {
  9681. front: {
  9682. height: math.unit(5 + 5 / 12, "feet"),
  9683. weight: math.unit(150, "lb"),
  9684. name: "Front",
  9685. image: {
  9686. source: "./media/characters/joshii/front.svg",
  9687. extra: 765 / 653,
  9688. bottom: 51 / 816
  9689. }
  9690. },
  9691. foot: {
  9692. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9693. name: "Foot",
  9694. image: {
  9695. source: "./media/characters/joshii/foot.svg"
  9696. }
  9697. },
  9698. },
  9699. [
  9700. {
  9701. name: "Micro",
  9702. height: math.unit(2, "inches")
  9703. },
  9704. {
  9705. name: "Normal",
  9706. height: math.unit(5 + 5 / 12, "feet")
  9707. },
  9708. {
  9709. name: "Macro",
  9710. height: math.unit(785, "feet"),
  9711. default: true
  9712. },
  9713. {
  9714. name: "Megamacro",
  9715. height: math.unit(24.5, "miles")
  9716. },
  9717. ]
  9718. ))
  9719. characterMakers.push(() => makeCharacter(
  9720. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9721. {
  9722. front: {
  9723. height: math.unit(6, "feet"),
  9724. weight: math.unit(150, "lb"),
  9725. name: "Front",
  9726. image: {
  9727. source: "./media/characters/goddess-elizabeth/front.svg",
  9728. extra: 1800 / 1525,
  9729. bottom: 0.005
  9730. }
  9731. },
  9732. foot: {
  9733. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9734. name: "Foot",
  9735. image: {
  9736. source: "./media/characters/goddess-elizabeth/foot.svg"
  9737. }
  9738. },
  9739. mouth: {
  9740. height: math.unit(6, "feet"),
  9741. name: "Mouth",
  9742. image: {
  9743. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9744. }
  9745. },
  9746. },
  9747. [
  9748. {
  9749. name: "Micro",
  9750. height: math.unit(12, "feet")
  9751. },
  9752. {
  9753. name: "Normal",
  9754. height: math.unit(80, "miles"),
  9755. default: true
  9756. },
  9757. {
  9758. name: "Macro",
  9759. height: math.unit(15000, "parsecs")
  9760. },
  9761. ]
  9762. ))
  9763. characterMakers.push(() => makeCharacter(
  9764. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9765. {
  9766. front: {
  9767. height: math.unit(5 + 9 / 12, "feet"),
  9768. weight: math.unit(144, "lb"),
  9769. name: "Front",
  9770. image: {
  9771. source: "./media/characters/kara/front.svg"
  9772. }
  9773. },
  9774. feet: {
  9775. height: math.unit(6 / 6.765, "feet"),
  9776. name: "Kara's Feet",
  9777. rename: true,
  9778. image: {
  9779. source: "./media/characters/kara/feet.svg"
  9780. }
  9781. },
  9782. },
  9783. [
  9784. {
  9785. name: "Normal",
  9786. height: math.unit(5 + 9 / 12, "feet")
  9787. },
  9788. {
  9789. name: "Macro",
  9790. height: math.unit(174, "feet"),
  9791. default: true
  9792. },
  9793. ]
  9794. ))
  9795. characterMakers.push(() => makeCharacter(
  9796. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9797. {
  9798. front: {
  9799. height: math.unit(18, "feet"),
  9800. weight: math.unit(4050, "lb"),
  9801. name: "Front",
  9802. image: {
  9803. source: "./media/characters/tyrone/front.svg",
  9804. extra: 2405 / 2270,
  9805. bottom: 182 / 2587
  9806. }
  9807. },
  9808. },
  9809. [
  9810. {
  9811. name: "Normal",
  9812. height: math.unit(18, "feet"),
  9813. default: true
  9814. },
  9815. {
  9816. name: "Macro",
  9817. height: math.unit(300, "feet")
  9818. },
  9819. {
  9820. name: "Megamacro",
  9821. height: math.unit(15, "km")
  9822. },
  9823. {
  9824. name: "Gigamacro",
  9825. height: math.unit(500, "km")
  9826. },
  9827. {
  9828. name: "Teramacro",
  9829. height: math.unit(0.5, "gigameters")
  9830. },
  9831. {
  9832. name: "Omnimacro",
  9833. height: math.unit(1e252, "yottauniverse")
  9834. },
  9835. ]
  9836. ))
  9837. characterMakers.push(() => makeCharacter(
  9838. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9839. {
  9840. front: {
  9841. height: math.unit(7 + 8 / 12, "feet"),
  9842. weight: math.unit(120, "lb"),
  9843. name: "Front",
  9844. image: {
  9845. source: "./media/characters/danny/front.svg",
  9846. extra: 1490 / 1350
  9847. }
  9848. },
  9849. back: {
  9850. height: math.unit(7 + 8 / 12, "feet"),
  9851. weight: math.unit(120, "lb"),
  9852. name: "Back",
  9853. image: {
  9854. source: "./media/characters/danny/back.svg",
  9855. extra: 1490 / 1350
  9856. }
  9857. },
  9858. },
  9859. [
  9860. {
  9861. name: "Normal",
  9862. height: math.unit(7 + 8 / 12, "feet"),
  9863. default: true
  9864. },
  9865. ]
  9866. ))
  9867. characterMakers.push(() => makeCharacter(
  9868. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9869. {
  9870. front: {
  9871. height: math.unit(3.5, "inches"),
  9872. weight: math.unit(19, "grams"),
  9873. name: "Front",
  9874. image: {
  9875. source: "./media/characters/mallow/front.svg",
  9876. extra: 471 / 431
  9877. }
  9878. },
  9879. back: {
  9880. height: math.unit(3.5, "inches"),
  9881. weight: math.unit(19, "grams"),
  9882. name: "Back",
  9883. image: {
  9884. source: "./media/characters/mallow/back.svg",
  9885. extra: 471 / 431
  9886. }
  9887. },
  9888. },
  9889. [
  9890. {
  9891. name: "Normal",
  9892. height: math.unit(3.5, "inches"),
  9893. default: true
  9894. },
  9895. ]
  9896. ))
  9897. characterMakers.push(() => makeCharacter(
  9898. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9899. {
  9900. front: {
  9901. height: math.unit(9, "feet"),
  9902. weight: math.unit(230, "kg"),
  9903. name: "Front",
  9904. image: {
  9905. source: "./media/characters/starry-aqua/front.svg"
  9906. }
  9907. },
  9908. back: {
  9909. height: math.unit(9, "feet"),
  9910. weight: math.unit(230, "kg"),
  9911. name: "Back",
  9912. image: {
  9913. source: "./media/characters/starry-aqua/back.svg"
  9914. }
  9915. },
  9916. hand: {
  9917. height: math.unit(9 * 0.1168, "feet"),
  9918. name: "Hand",
  9919. image: {
  9920. source: "./media/characters/starry-aqua/hand.svg"
  9921. }
  9922. },
  9923. foot: {
  9924. height: math.unit(9 * 0.18, "feet"),
  9925. name: "Foot",
  9926. image: {
  9927. source: "./media/characters/starry-aqua/foot.svg"
  9928. }
  9929. }
  9930. },
  9931. [
  9932. {
  9933. name: "Micro",
  9934. height: math.unit(3, "inches")
  9935. },
  9936. {
  9937. name: "Normal",
  9938. height: math.unit(9, "feet")
  9939. },
  9940. {
  9941. name: "Macro",
  9942. height: math.unit(300, "feet"),
  9943. default: true
  9944. },
  9945. {
  9946. name: "Megamacro",
  9947. height: math.unit(3200, "feet")
  9948. }
  9949. ]
  9950. ))
  9951. characterMakers.push(() => makeCharacter(
  9952. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9953. {
  9954. front: {
  9955. height: math.unit(15, "feet"),
  9956. weight: math.unit(5026, "lb"),
  9957. name: "Front",
  9958. image: {
  9959. source: "./media/characters/luka-towers/front.svg",
  9960. extra: 1269/1133,
  9961. bottom: 51/1320
  9962. }
  9963. },
  9964. },
  9965. [
  9966. {
  9967. name: "Normal",
  9968. height: math.unit(15, "feet"),
  9969. default: true
  9970. },
  9971. {
  9972. name: "Minimacro",
  9973. height: math.unit(25, "feet")
  9974. },
  9975. {
  9976. name: "Macro",
  9977. height: math.unit(320, "feet")
  9978. },
  9979. {
  9980. name: "Megamacro",
  9981. height: math.unit(35000, "feet")
  9982. },
  9983. {
  9984. name: "Gigamacro",
  9985. height: math.unit(4000, "miles")
  9986. },
  9987. {
  9988. name: "Teramacro",
  9989. height: math.unit(15000, "miles")
  9990. },
  9991. ]
  9992. ))
  9993. characterMakers.push(() => makeCharacter(
  9994. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9995. {
  9996. front: {
  9997. height: math.unit(6, "feet"),
  9998. weight: math.unit(150, "lb"),
  9999. name: "Front",
  10000. image: {
  10001. source: "./media/characters/natalie-nightring/front.svg",
  10002. extra: 1,
  10003. bottom: 0.06
  10004. }
  10005. },
  10006. },
  10007. [
  10008. {
  10009. name: "Uh Oh",
  10010. height: math.unit(0.1, "mm")
  10011. },
  10012. {
  10013. name: "Small",
  10014. height: math.unit(3, "inches")
  10015. },
  10016. {
  10017. name: "Human Scale",
  10018. height: math.unit(6, "feet")
  10019. },
  10020. {
  10021. name: "Librarian",
  10022. height: math.unit(50, "feet"),
  10023. default: true
  10024. },
  10025. {
  10026. name: "Immense",
  10027. height: math.unit(200, "miles")
  10028. },
  10029. ]
  10030. ))
  10031. characterMakers.push(() => makeCharacter(
  10032. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10033. {
  10034. front: {
  10035. height: math.unit(6, "feet"),
  10036. weight: math.unit(180, "lbs"),
  10037. name: "Front",
  10038. image: {
  10039. source: "./media/characters/danni-rosie/front.svg",
  10040. extra: 1260 / 1128,
  10041. bottom: 0.022
  10042. }
  10043. },
  10044. },
  10045. [
  10046. {
  10047. name: "Micro",
  10048. height: math.unit(2, "inches"),
  10049. default: true
  10050. },
  10051. ]
  10052. ))
  10053. characterMakers.push(() => makeCharacter(
  10054. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10055. {
  10056. front: {
  10057. height: math.unit(5 + 9 / 12, "feet"),
  10058. weight: math.unit(220, "lb"),
  10059. name: "Front",
  10060. image: {
  10061. source: "./media/characters/samantha-kruse/front.svg",
  10062. extra: (985 / 935),
  10063. bottom: 0.03
  10064. }
  10065. },
  10066. frontUndressed: {
  10067. height: math.unit(5 + 9 / 12, "feet"),
  10068. weight: math.unit(220, "lb"),
  10069. name: "Front (Undressed)",
  10070. image: {
  10071. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10072. extra: (973 / 923),
  10073. bottom: 0.025
  10074. }
  10075. },
  10076. fat: {
  10077. height: math.unit(5 + 9 / 12, "feet"),
  10078. weight: math.unit(900, "lb"),
  10079. name: "Front (Fat)",
  10080. image: {
  10081. source: "./media/characters/samantha-kruse/fat.svg",
  10082. extra: 2688 / 2561
  10083. }
  10084. },
  10085. },
  10086. [
  10087. {
  10088. name: "Normal",
  10089. height: math.unit(5 + 9 / 12, "feet"),
  10090. default: true
  10091. }
  10092. ]
  10093. ))
  10094. characterMakers.push(() => makeCharacter(
  10095. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10096. {
  10097. back: {
  10098. height: math.unit(5 + 4 / 12, "feet"),
  10099. weight: math.unit(4963, "lb"),
  10100. name: "Back",
  10101. image: {
  10102. source: "./media/characters/amelia-rosie/back.svg",
  10103. extra: 1113 / 963,
  10104. bottom: 0.01
  10105. }
  10106. },
  10107. },
  10108. [
  10109. {
  10110. name: "Level 0",
  10111. height: math.unit(5 + 4 / 12, "feet")
  10112. },
  10113. {
  10114. name: "Level 1",
  10115. height: math.unit(164597, "feet"),
  10116. default: true
  10117. },
  10118. {
  10119. name: "Level 2",
  10120. height: math.unit(956243, "miles")
  10121. },
  10122. {
  10123. name: "Level 3",
  10124. height: math.unit(29421709423, "miles")
  10125. },
  10126. {
  10127. name: "Level 4",
  10128. height: math.unit(154, "lightyears")
  10129. },
  10130. {
  10131. name: "Level 5",
  10132. height: math.unit(4738272, "lightyears")
  10133. },
  10134. {
  10135. name: "Level 6",
  10136. height: math.unit(145787152896, "lightyears")
  10137. },
  10138. ]
  10139. ))
  10140. characterMakers.push(() => makeCharacter(
  10141. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10142. {
  10143. front: {
  10144. height: math.unit(5 + 11 / 12, "feet"),
  10145. weight: math.unit(65, "kg"),
  10146. name: "Front",
  10147. image: {
  10148. source: "./media/characters/rook-kitara/front.svg",
  10149. extra: 1347 / 1274,
  10150. bottom: 0.005
  10151. }
  10152. },
  10153. },
  10154. [
  10155. {
  10156. name: "Totally Unfair",
  10157. height: math.unit(1.8, "mm")
  10158. },
  10159. {
  10160. name: "Lap Rookie",
  10161. height: math.unit(1.4, "feet")
  10162. },
  10163. {
  10164. name: "Normal",
  10165. height: math.unit(5 + 11 / 12, "feet"),
  10166. default: true
  10167. },
  10168. {
  10169. name: "How Did This Happen",
  10170. height: math.unit(80, "miles")
  10171. }
  10172. ]
  10173. ))
  10174. characterMakers.push(() => makeCharacter(
  10175. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10176. {
  10177. front: {
  10178. height: math.unit(7, "feet"),
  10179. weight: math.unit(300, "lb"),
  10180. name: "Front",
  10181. image: {
  10182. source: "./media/characters/pisces/front.svg",
  10183. extra: 2255 / 2115,
  10184. bottom: 0.03
  10185. }
  10186. },
  10187. back: {
  10188. height: math.unit(7, "feet"),
  10189. weight: math.unit(300, "lb"),
  10190. name: "Back",
  10191. image: {
  10192. source: "./media/characters/pisces/back.svg",
  10193. extra: 2146 / 2055,
  10194. bottom: 0.04
  10195. }
  10196. },
  10197. },
  10198. [
  10199. {
  10200. name: "Normal",
  10201. height: math.unit(7, "feet"),
  10202. default: true
  10203. },
  10204. {
  10205. name: "Swimming Pool",
  10206. height: math.unit(12.2, "meters")
  10207. },
  10208. {
  10209. name: "Olympic Swimming Pool",
  10210. height: math.unit(56.3, "meters")
  10211. },
  10212. {
  10213. name: "Lake Superior",
  10214. height: math.unit(93900, "meters")
  10215. },
  10216. {
  10217. name: "Mediterranean Sea",
  10218. height: math.unit(644457, "meters")
  10219. },
  10220. {
  10221. name: "World's Oceans",
  10222. height: math.unit(4567491, "meters")
  10223. },
  10224. ]
  10225. ))
  10226. characterMakers.push(() => makeCharacter(
  10227. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10228. {
  10229. front: {
  10230. height: math.unit(2.3, "meters"),
  10231. weight: math.unit(120, "kg"),
  10232. name: "Front",
  10233. image: {
  10234. source: "./media/characters/zelas/front.svg"
  10235. }
  10236. },
  10237. side: {
  10238. height: math.unit(2.3, "meters"),
  10239. weight: math.unit(120, "kg"),
  10240. name: "Side",
  10241. image: {
  10242. source: "./media/characters/zelas/side.svg"
  10243. }
  10244. },
  10245. back: {
  10246. height: math.unit(2.3, "meters"),
  10247. weight: math.unit(120, "kg"),
  10248. name: "Back",
  10249. image: {
  10250. source: "./media/characters/zelas/back.svg"
  10251. }
  10252. },
  10253. foot: {
  10254. height: math.unit(1.116, "feet"),
  10255. name: "Foot",
  10256. image: {
  10257. source: "./media/characters/zelas/foot.svg"
  10258. }
  10259. },
  10260. },
  10261. [
  10262. {
  10263. name: "Normal",
  10264. height: math.unit(2.3, "meters")
  10265. },
  10266. {
  10267. name: "Macro",
  10268. height: math.unit(30, "meters"),
  10269. default: true
  10270. },
  10271. ]
  10272. ))
  10273. characterMakers.push(() => makeCharacter(
  10274. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10275. {
  10276. front: {
  10277. height: math.unit(1, "inch"),
  10278. weight: math.unit(0.21, "grams"),
  10279. name: "Front",
  10280. image: {
  10281. source: "./media/characters/talbot/front.svg",
  10282. extra: 594 / 544
  10283. }
  10284. },
  10285. },
  10286. [
  10287. {
  10288. name: "Micro",
  10289. height: math.unit(1, "inch"),
  10290. default: true
  10291. },
  10292. ]
  10293. ))
  10294. characterMakers.push(() => makeCharacter(
  10295. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10296. {
  10297. front: {
  10298. height: math.unit(3 + 3 / 12, "feet"),
  10299. weight: math.unit(51.8, "lb"),
  10300. name: "Front",
  10301. image: {
  10302. source: "./media/characters/fliss/front.svg",
  10303. extra: 840 / 640
  10304. }
  10305. },
  10306. },
  10307. [
  10308. {
  10309. name: "Teeny Tiny",
  10310. height: math.unit(1, "mm")
  10311. },
  10312. {
  10313. name: "Small",
  10314. height: math.unit(1, "inch"),
  10315. default: true
  10316. },
  10317. {
  10318. name: "Standard Sylveon",
  10319. height: math.unit(3 + 3 / 12, "feet")
  10320. },
  10321. {
  10322. name: "Large Nuisance",
  10323. height: math.unit(33, "feet")
  10324. },
  10325. {
  10326. name: "City Filler",
  10327. height: math.unit(3000, "feet")
  10328. },
  10329. {
  10330. name: "New Horizon",
  10331. height: math.unit(6000, "miles")
  10332. },
  10333. ]
  10334. ))
  10335. characterMakers.push(() => makeCharacter(
  10336. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10337. {
  10338. front: {
  10339. height: math.unit(5, "cm"),
  10340. weight: math.unit(1.94, "g"),
  10341. name: "Front",
  10342. image: {
  10343. source: "./media/characters/fleta/front.svg",
  10344. extra: 835 / 803
  10345. }
  10346. },
  10347. back: {
  10348. height: math.unit(5, "cm"),
  10349. weight: math.unit(1.94, "g"),
  10350. name: "Back",
  10351. image: {
  10352. source: "./media/characters/fleta/back.svg",
  10353. extra: 835 / 803
  10354. }
  10355. },
  10356. },
  10357. [
  10358. {
  10359. name: "Micro",
  10360. height: math.unit(5, "cm"),
  10361. default: true
  10362. },
  10363. ]
  10364. ))
  10365. characterMakers.push(() => makeCharacter(
  10366. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10367. {
  10368. front: {
  10369. height: math.unit(6, "feet"),
  10370. weight: math.unit(225, "lb"),
  10371. name: "Front",
  10372. image: {
  10373. source: "./media/characters/dominic/front.svg",
  10374. extra: 1770 / 1620,
  10375. bottom: 0.025
  10376. }
  10377. },
  10378. back: {
  10379. height: math.unit(6, "feet"),
  10380. weight: math.unit(225, "lb"),
  10381. name: "Back",
  10382. image: {
  10383. source: "./media/characters/dominic/back.svg",
  10384. extra: 1745 / 1620,
  10385. bottom: 0.065
  10386. }
  10387. },
  10388. },
  10389. [
  10390. {
  10391. name: "Nano",
  10392. height: math.unit(0.1, "mm")
  10393. },
  10394. {
  10395. name: "Micro-",
  10396. height: math.unit(1, "mm")
  10397. },
  10398. {
  10399. name: "Micro",
  10400. height: math.unit(4, "inches")
  10401. },
  10402. {
  10403. name: "Normal",
  10404. height: math.unit(6 + 4 / 12, "feet"),
  10405. default: true
  10406. },
  10407. {
  10408. name: "Macro",
  10409. height: math.unit(115, "feet")
  10410. },
  10411. {
  10412. name: "Macro+",
  10413. height: math.unit(955, "feet")
  10414. },
  10415. {
  10416. name: "Megamacro",
  10417. height: math.unit(8990, "feet")
  10418. },
  10419. {
  10420. name: "Gigmacro",
  10421. height: math.unit(9310, "miles")
  10422. },
  10423. {
  10424. name: "Teramacro",
  10425. height: math.unit(1567005010, "miles")
  10426. },
  10427. {
  10428. name: "Examacro",
  10429. height: math.unit(1425, "parsecs")
  10430. },
  10431. ]
  10432. ))
  10433. characterMakers.push(() => makeCharacter(
  10434. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10435. {
  10436. front: {
  10437. height: math.unit(400, "feet"),
  10438. weight: math.unit(44444444, "lb"),
  10439. name: "Front",
  10440. image: {
  10441. source: "./media/characters/major-colonel/front.svg"
  10442. }
  10443. },
  10444. back: {
  10445. height: math.unit(400, "feet"),
  10446. weight: math.unit(44444444, "lb"),
  10447. name: "Back",
  10448. image: {
  10449. source: "./media/characters/major-colonel/back.svg"
  10450. }
  10451. },
  10452. },
  10453. [
  10454. {
  10455. name: "Macro",
  10456. height: math.unit(400, "feet"),
  10457. default: true
  10458. },
  10459. ]
  10460. ))
  10461. characterMakers.push(() => makeCharacter(
  10462. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10463. {
  10464. catFront: {
  10465. height: math.unit(6, "feet"),
  10466. weight: math.unit(120, "lb"),
  10467. name: "Front (Cat Side)",
  10468. image: {
  10469. source: "./media/characters/axel-lycan/cat-front.svg",
  10470. extra: 430 / 402,
  10471. bottom: 43 / 472.35
  10472. }
  10473. },
  10474. catBack: {
  10475. height: math.unit(6, "feet"),
  10476. weight: math.unit(120, "lb"),
  10477. name: "Back (Cat Side)",
  10478. image: {
  10479. source: "./media/characters/axel-lycan/cat-back.svg",
  10480. extra: 447 / 419,
  10481. bottom: 23.3 / 469
  10482. }
  10483. },
  10484. wolfFront: {
  10485. height: math.unit(6, "feet"),
  10486. weight: math.unit(120, "lb"),
  10487. name: "Front (Wolf Side)",
  10488. image: {
  10489. source: "./media/characters/axel-lycan/wolf-front.svg",
  10490. extra: 485 / 456,
  10491. bottom: 19 / 504
  10492. }
  10493. },
  10494. wolfBack: {
  10495. height: math.unit(6, "feet"),
  10496. weight: math.unit(120, "lb"),
  10497. name: "Back (Wolf Side)",
  10498. image: {
  10499. source: "./media/characters/axel-lycan/wolf-back.svg",
  10500. extra: 475 / 438,
  10501. bottom: 39.2 / 514
  10502. }
  10503. },
  10504. },
  10505. [
  10506. {
  10507. name: "Macro",
  10508. height: math.unit(1, "km"),
  10509. default: true
  10510. },
  10511. ]
  10512. ))
  10513. characterMakers.push(() => makeCharacter(
  10514. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10515. {
  10516. front: {
  10517. height: math.unit(5 + 9 / 12, "feet"),
  10518. weight: math.unit(175, "lb"),
  10519. name: "Front",
  10520. image: {
  10521. source: "./media/characters/vanrel-hyena/front.svg",
  10522. extra: 1086 / 1010,
  10523. bottom: 0.04
  10524. }
  10525. },
  10526. },
  10527. [
  10528. {
  10529. name: "Normal",
  10530. height: math.unit(5 + 9 / 12, "feet"),
  10531. default: true
  10532. },
  10533. ]
  10534. ))
  10535. characterMakers.push(() => makeCharacter(
  10536. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10537. {
  10538. front: {
  10539. height: math.unit(6, "feet"),
  10540. weight: math.unit(103, "lb"),
  10541. name: "Front",
  10542. image: {
  10543. source: "./media/characters/abbott-absol/front.svg",
  10544. extra: 2010 / 1842
  10545. }
  10546. },
  10547. },
  10548. [
  10549. {
  10550. name: "Megamicro",
  10551. height: math.unit(0.1, "mm")
  10552. },
  10553. {
  10554. name: "Micro",
  10555. height: math.unit(1, "inch")
  10556. },
  10557. {
  10558. name: "Normal",
  10559. height: math.unit(6, "feet"),
  10560. default: true
  10561. },
  10562. ]
  10563. ))
  10564. characterMakers.push(() => makeCharacter(
  10565. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10566. {
  10567. front: {
  10568. height: math.unit(6, "feet"),
  10569. weight: math.unit(264, "lb"),
  10570. name: "Front",
  10571. image: {
  10572. source: "./media/characters/hector/front.svg",
  10573. extra: 2280 / 2130,
  10574. bottom: 0.07
  10575. }
  10576. },
  10577. },
  10578. [
  10579. {
  10580. name: "Normal",
  10581. height: math.unit(12.25, "foot"),
  10582. default: true
  10583. },
  10584. {
  10585. name: "Macro",
  10586. height: math.unit(160, "feet")
  10587. },
  10588. ]
  10589. ))
  10590. characterMakers.push(() => makeCharacter(
  10591. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10592. {
  10593. front: {
  10594. height: math.unit(6, "feet"),
  10595. weight: math.unit(150, "lb"),
  10596. name: "Front",
  10597. image: {
  10598. source: "./media/characters/sal/front.svg",
  10599. extra: 1846 / 1699,
  10600. bottom: 0.04
  10601. }
  10602. },
  10603. },
  10604. [
  10605. {
  10606. name: "Megamacro",
  10607. height: math.unit(10, "miles"),
  10608. default: true
  10609. },
  10610. ]
  10611. ))
  10612. characterMakers.push(() => makeCharacter(
  10613. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10614. {
  10615. front: {
  10616. height: math.unit(3, "meters"),
  10617. weight: math.unit(450, "kg"),
  10618. name: "front",
  10619. image: {
  10620. source: "./media/characters/ranger/front.svg",
  10621. extra: 2401 / 2243,
  10622. bottom: 0.05
  10623. }
  10624. },
  10625. },
  10626. [
  10627. {
  10628. name: "Normal",
  10629. height: math.unit(3, "meters"),
  10630. default: true
  10631. },
  10632. ]
  10633. ))
  10634. characterMakers.push(() => makeCharacter(
  10635. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10636. {
  10637. front: {
  10638. height: math.unit(14, "feet"),
  10639. weight: math.unit(800, "kg"),
  10640. name: "Front",
  10641. image: {
  10642. source: "./media/characters/theresa/front.svg",
  10643. extra: 3575 / 3346,
  10644. bottom: 0.03
  10645. }
  10646. },
  10647. },
  10648. [
  10649. {
  10650. name: "Normal",
  10651. height: math.unit(14, "feet"),
  10652. default: true
  10653. },
  10654. ]
  10655. ))
  10656. characterMakers.push(() => makeCharacter(
  10657. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10658. {
  10659. front: {
  10660. height: math.unit(6, "feet"),
  10661. weight: math.unit(3, "kg"),
  10662. name: "Front",
  10663. image: {
  10664. source: "./media/characters/ine/front.svg",
  10665. extra: 678 / 539,
  10666. bottom: 0.023
  10667. }
  10668. },
  10669. },
  10670. [
  10671. {
  10672. name: "Normal",
  10673. height: math.unit(2.265, "feet"),
  10674. default: true
  10675. },
  10676. ]
  10677. ))
  10678. characterMakers.push(() => makeCharacter(
  10679. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10680. {
  10681. front: {
  10682. height: math.unit(5, "feet"),
  10683. weight: math.unit(30, "kg"),
  10684. name: "Front",
  10685. image: {
  10686. source: "./media/characters/vial/front.svg",
  10687. extra: 1365 / 1277,
  10688. bottom: 0.04
  10689. }
  10690. },
  10691. },
  10692. [
  10693. {
  10694. name: "Normal",
  10695. height: math.unit(5, "feet"),
  10696. default: true
  10697. },
  10698. ]
  10699. ))
  10700. characterMakers.push(() => makeCharacter(
  10701. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10702. {
  10703. side: {
  10704. height: math.unit(3.4, "meters"),
  10705. weight: math.unit(1000, "lb"),
  10706. name: "Side",
  10707. image: {
  10708. source: "./media/characters/rovoska/side.svg",
  10709. extra: 4403 / 1515
  10710. }
  10711. },
  10712. },
  10713. [
  10714. {
  10715. name: "Normal",
  10716. height: math.unit(3.4, "meters"),
  10717. default: true
  10718. },
  10719. ]
  10720. ))
  10721. characterMakers.push(() => makeCharacter(
  10722. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10723. {
  10724. front: {
  10725. height: math.unit(8, "feet"),
  10726. weight: math.unit(315, "lb"),
  10727. name: "Front",
  10728. image: {
  10729. source: "./media/characters/gunner-rotthbauer/front.svg"
  10730. }
  10731. },
  10732. back: {
  10733. height: math.unit(8, "feet"),
  10734. weight: math.unit(315, "lb"),
  10735. name: "Back",
  10736. image: {
  10737. source: "./media/characters/gunner-rotthbauer/back.svg"
  10738. }
  10739. },
  10740. },
  10741. [
  10742. {
  10743. name: "Micro",
  10744. height: math.unit(3.5, "inches")
  10745. },
  10746. {
  10747. name: "Normal",
  10748. height: math.unit(8, "feet"),
  10749. default: true
  10750. },
  10751. {
  10752. name: "Macro",
  10753. height: math.unit(250, "feet")
  10754. },
  10755. {
  10756. name: "Megamacro",
  10757. height: math.unit(1, "AU")
  10758. },
  10759. ]
  10760. ))
  10761. characterMakers.push(() => makeCharacter(
  10762. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10763. {
  10764. front: {
  10765. height: math.unit(5 + 5 / 12, "feet"),
  10766. weight: math.unit(140, "lb"),
  10767. name: "Front",
  10768. image: {
  10769. source: "./media/characters/allatia/front.svg",
  10770. extra: 1227 / 1180,
  10771. bottom: 0.027
  10772. }
  10773. },
  10774. },
  10775. [
  10776. {
  10777. name: "Normal",
  10778. height: math.unit(5 + 5 / 12, "feet")
  10779. },
  10780. {
  10781. name: "Macro",
  10782. height: math.unit(250, "feet"),
  10783. default: true
  10784. },
  10785. {
  10786. name: "Megamacro",
  10787. height: math.unit(8, "miles")
  10788. }
  10789. ]
  10790. ))
  10791. characterMakers.push(() => makeCharacter(
  10792. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10793. {
  10794. front: {
  10795. height: math.unit(6, "feet"),
  10796. weight: math.unit(120, "lb"),
  10797. name: "Front",
  10798. image: {
  10799. source: "./media/characters/tene/front.svg",
  10800. extra: 814/750,
  10801. bottom: 36/850
  10802. }
  10803. },
  10804. stomping: {
  10805. height: math.unit(2.025, "meters"),
  10806. weight: math.unit(120, "lb"),
  10807. name: "Stomping",
  10808. image: {
  10809. source: "./media/characters/tene/stomping.svg",
  10810. extra: 885/821,
  10811. bottom: 15/900
  10812. }
  10813. },
  10814. sitting: {
  10815. height: math.unit(1, "meter"),
  10816. weight: math.unit(120, "lb"),
  10817. name: "Sitting",
  10818. image: {
  10819. source: "./media/characters/tene/sitting.svg",
  10820. extra: 396/366,
  10821. bottom: 79/475
  10822. }
  10823. },
  10824. smiling: {
  10825. height: math.unit(1.2, "feet"),
  10826. name: "Smiling",
  10827. image: {
  10828. source: "./media/characters/tene/smiling.svg",
  10829. extra: 1364/1071,
  10830. bottom: 0/1364
  10831. }
  10832. },
  10833. smug: {
  10834. height: math.unit(1.3, "feet"),
  10835. name: "Smug",
  10836. image: {
  10837. source: "./media/characters/tene/smug.svg",
  10838. extra: 1323/1082,
  10839. bottom: 0/1323
  10840. }
  10841. },
  10842. feral: {
  10843. height: math.unit(3.9, "feet"),
  10844. weight: math.unit(250, "lb"),
  10845. name: "Feral",
  10846. image: {
  10847. source: "./media/characters/tene/feral.svg",
  10848. extra: 717 / 458,
  10849. bottom: 0.179
  10850. }
  10851. },
  10852. },
  10853. [
  10854. {
  10855. name: "Normal",
  10856. height: math.unit(6, "feet")
  10857. },
  10858. {
  10859. name: "Macro",
  10860. height: math.unit(300, "feet"),
  10861. default: true
  10862. },
  10863. {
  10864. name: "Megamacro",
  10865. height: math.unit(5, "miles")
  10866. },
  10867. ]
  10868. ))
  10869. characterMakers.push(() => makeCharacter(
  10870. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10871. {
  10872. side: {
  10873. height: math.unit(6, "feet"),
  10874. name: "Side",
  10875. image: {
  10876. source: "./media/characters/evander/side.svg",
  10877. extra: 877 / 477
  10878. }
  10879. },
  10880. },
  10881. [
  10882. {
  10883. name: "Normal",
  10884. height: math.unit(0.83, "meters"),
  10885. default: true
  10886. },
  10887. ]
  10888. ))
  10889. characterMakers.push(() => makeCharacter(
  10890. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10891. {
  10892. front: {
  10893. height: math.unit(12, "feet"),
  10894. weight: math.unit(1000, "lb"),
  10895. name: "Front",
  10896. image: {
  10897. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10898. extra: 1762 / 1611
  10899. }
  10900. },
  10901. back: {
  10902. height: math.unit(12, "feet"),
  10903. weight: math.unit(1000, "lb"),
  10904. name: "Back",
  10905. image: {
  10906. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10907. extra: 1762 / 1611
  10908. }
  10909. },
  10910. },
  10911. [
  10912. {
  10913. name: "Normal",
  10914. height: math.unit(12, "feet"),
  10915. default: true
  10916. },
  10917. {
  10918. name: "Kaiju",
  10919. height: math.unit(150, "feet")
  10920. },
  10921. ]
  10922. ))
  10923. characterMakers.push(() => makeCharacter(
  10924. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10925. {
  10926. front: {
  10927. height: math.unit(6, "feet"),
  10928. weight: math.unit(150, "lb"),
  10929. name: "Front",
  10930. image: {
  10931. source: "./media/characters/zero-alurus/front.svg"
  10932. }
  10933. },
  10934. back: {
  10935. height: math.unit(6, "feet"),
  10936. weight: math.unit(150, "lb"),
  10937. name: "Back",
  10938. image: {
  10939. source: "./media/characters/zero-alurus/back.svg"
  10940. }
  10941. },
  10942. },
  10943. [
  10944. {
  10945. name: "Normal",
  10946. height: math.unit(5 + 10 / 12, "feet")
  10947. },
  10948. {
  10949. name: "Macro",
  10950. height: math.unit(60, "feet"),
  10951. default: true
  10952. },
  10953. {
  10954. name: "Macro+",
  10955. height: math.unit(450, "feet")
  10956. },
  10957. ]
  10958. ))
  10959. characterMakers.push(() => makeCharacter(
  10960. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10961. {
  10962. front: {
  10963. height: math.unit(6, "feet"),
  10964. weight: math.unit(200, "lb"),
  10965. name: "Front",
  10966. image: {
  10967. source: "./media/characters/mega-shi/front.svg",
  10968. extra: 1279 / 1250,
  10969. bottom: 0.02
  10970. }
  10971. },
  10972. back: {
  10973. height: math.unit(6, "feet"),
  10974. weight: math.unit(200, "lb"),
  10975. name: "Back",
  10976. image: {
  10977. source: "./media/characters/mega-shi/back.svg",
  10978. extra: 1279 / 1250,
  10979. bottom: 0.02
  10980. }
  10981. },
  10982. },
  10983. [
  10984. {
  10985. name: "Micro",
  10986. height: math.unit(16 + 6 / 12, "feet")
  10987. },
  10988. {
  10989. name: "Third Dimension",
  10990. height: math.unit(40, "meters")
  10991. },
  10992. {
  10993. name: "Normal",
  10994. height: math.unit(660, "feet"),
  10995. default: true
  10996. },
  10997. {
  10998. name: "Megamacro",
  10999. height: math.unit(10, "miles")
  11000. },
  11001. {
  11002. name: "Planetary Launch",
  11003. height: math.unit(500, "miles")
  11004. },
  11005. {
  11006. name: "Interstellar",
  11007. height: math.unit(1e9, "miles")
  11008. },
  11009. {
  11010. name: "Leaving the Universe",
  11011. height: math.unit(1, "gigaparsec")
  11012. },
  11013. {
  11014. name: "Travelling Universes",
  11015. height: math.unit(30e15, "parsecs")
  11016. },
  11017. ]
  11018. ))
  11019. characterMakers.push(() => makeCharacter(
  11020. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11021. {
  11022. front: {
  11023. height: math.unit(5 + 4/12, "feet"),
  11024. weight: math.unit(120, "lb"),
  11025. name: "Front",
  11026. image: {
  11027. source: "./media/characters/odyssey/front.svg",
  11028. extra: 1747/1571,
  11029. bottom: 47/1794
  11030. }
  11031. },
  11032. side: {
  11033. height: math.unit(5.1, "feet"),
  11034. weight: math.unit(120, "lb"),
  11035. name: "Side",
  11036. image: {
  11037. source: "./media/characters/odyssey/side.svg",
  11038. extra: 1847/1619,
  11039. bottom: 47/1894
  11040. }
  11041. },
  11042. lounging: {
  11043. height: math.unit(1.464, "feet"),
  11044. weight: math.unit(120, "lb"),
  11045. name: "Lounging",
  11046. image: {
  11047. source: "./media/characters/odyssey/lounging.svg",
  11048. extra: 1235/837,
  11049. bottom: 551/1786
  11050. }
  11051. },
  11052. },
  11053. [
  11054. {
  11055. name: "Normal",
  11056. height: math.unit(5 + 4 / 12, "feet")
  11057. },
  11058. {
  11059. name: "Macro",
  11060. height: math.unit(1, "km")
  11061. },
  11062. {
  11063. name: "Megamacro",
  11064. height: math.unit(3000, "km")
  11065. },
  11066. {
  11067. name: "Gigamacro",
  11068. height: math.unit(1, "AU"),
  11069. default: true
  11070. },
  11071. {
  11072. name: "Omniversal",
  11073. height: math.unit(100e14, "lightyears")
  11074. },
  11075. ]
  11076. ))
  11077. characterMakers.push(() => makeCharacter(
  11078. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11079. {
  11080. front: {
  11081. height: math.unit(6, "feet"),
  11082. weight: math.unit(300, "lb"),
  11083. name: "Front",
  11084. image: {
  11085. source: "./media/characters/mekuto/front.svg",
  11086. extra: 921 / 832,
  11087. bottom: 0.03
  11088. }
  11089. },
  11090. hand: {
  11091. height: math.unit(6 / 10.24, "feet"),
  11092. name: "Hand",
  11093. image: {
  11094. source: "./media/characters/mekuto/hand.svg"
  11095. }
  11096. },
  11097. foot: {
  11098. height: math.unit(6 / 5.05, "feet"),
  11099. name: "Foot",
  11100. image: {
  11101. source: "./media/characters/mekuto/foot.svg"
  11102. }
  11103. },
  11104. },
  11105. [
  11106. {
  11107. name: "Minimicro",
  11108. height: math.unit(0.2, "inches")
  11109. },
  11110. {
  11111. name: "Micro",
  11112. height: math.unit(1.5, "inches")
  11113. },
  11114. {
  11115. name: "Normal",
  11116. height: math.unit(5 + 11 / 12, "feet"),
  11117. default: true
  11118. },
  11119. {
  11120. name: "Minimacro",
  11121. height: math.unit(17 + 9 / 12, "feet")
  11122. },
  11123. {
  11124. name: "Macro",
  11125. height: math.unit(177.5, "feet")
  11126. },
  11127. {
  11128. name: "Megamacro",
  11129. height: math.unit(152, "miles")
  11130. },
  11131. ]
  11132. ))
  11133. characterMakers.push(() => makeCharacter(
  11134. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11135. {
  11136. front: {
  11137. height: math.unit(6.5, "inches"),
  11138. weight: math.unit(13, "oz"),
  11139. name: "Front",
  11140. image: {
  11141. source: "./media/characters/dafydd-tomos/front.svg",
  11142. extra: 2990 / 2603,
  11143. bottom: 0.03
  11144. }
  11145. },
  11146. },
  11147. [
  11148. {
  11149. name: "Micro",
  11150. height: math.unit(6.5, "inches"),
  11151. default: true
  11152. },
  11153. ]
  11154. ))
  11155. characterMakers.push(() => makeCharacter(
  11156. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11157. {
  11158. front: {
  11159. height: math.unit(6, "feet"),
  11160. weight: math.unit(150, "lb"),
  11161. name: "Front",
  11162. image: {
  11163. source: "./media/characters/splinter/front.svg",
  11164. extra: 2990 / 2882,
  11165. bottom: 0.04
  11166. }
  11167. },
  11168. back: {
  11169. height: math.unit(6, "feet"),
  11170. weight: math.unit(150, "lb"),
  11171. name: "Back",
  11172. image: {
  11173. source: "./media/characters/splinter/back.svg",
  11174. extra: 2990 / 2882,
  11175. bottom: 0.04
  11176. }
  11177. },
  11178. },
  11179. [
  11180. {
  11181. name: "Normal",
  11182. height: math.unit(6, "feet")
  11183. },
  11184. {
  11185. name: "Macro",
  11186. height: math.unit(230, "meters"),
  11187. default: true
  11188. },
  11189. ]
  11190. ))
  11191. characterMakers.push(() => makeCharacter(
  11192. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11193. {
  11194. front: {
  11195. height: math.unit(4 + 10 / 12, "feet"),
  11196. weight: math.unit(480, "lb"),
  11197. name: "Front",
  11198. image: {
  11199. source: "./media/characters/snow-gabumon/front.svg",
  11200. extra: 1140 / 963,
  11201. bottom: 0.058
  11202. }
  11203. },
  11204. back: {
  11205. height: math.unit(4 + 10 / 12, "feet"),
  11206. weight: math.unit(480, "lb"),
  11207. name: "Back",
  11208. image: {
  11209. source: "./media/characters/snow-gabumon/back.svg",
  11210. extra: 1115 / 962,
  11211. bottom: 0.041
  11212. }
  11213. },
  11214. frontUndresed: {
  11215. height: math.unit(4 + 10 / 12, "feet"),
  11216. weight: math.unit(480, "lb"),
  11217. name: "Front (Undressed)",
  11218. image: {
  11219. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11220. extra: 1061 / 960,
  11221. bottom: 0.045
  11222. }
  11223. },
  11224. },
  11225. [
  11226. {
  11227. name: "Micro",
  11228. height: math.unit(1, "inch")
  11229. },
  11230. {
  11231. name: "Normal",
  11232. height: math.unit(4 + 10 / 12, "feet"),
  11233. default: true
  11234. },
  11235. {
  11236. name: "Macro",
  11237. height: math.unit(200, "feet")
  11238. },
  11239. {
  11240. name: "Megamacro",
  11241. height: math.unit(120, "miles")
  11242. },
  11243. {
  11244. name: "Gigamacro",
  11245. height: math.unit(9800, "miles")
  11246. },
  11247. ]
  11248. ))
  11249. characterMakers.push(() => makeCharacter(
  11250. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11251. {
  11252. front: {
  11253. height: math.unit(1.7, "meters"),
  11254. weight: math.unit(140, "lb"),
  11255. name: "Front",
  11256. image: {
  11257. source: "./media/characters/moody/front.svg",
  11258. extra: 3226 / 3007,
  11259. bottom: 0.087
  11260. }
  11261. },
  11262. },
  11263. [
  11264. {
  11265. name: "Micro",
  11266. height: math.unit(1, "mm")
  11267. },
  11268. {
  11269. name: "Normal",
  11270. height: math.unit(1.7, "meters"),
  11271. default: true
  11272. },
  11273. {
  11274. name: "Macro",
  11275. height: math.unit(80, "meters")
  11276. },
  11277. {
  11278. name: "Macro+",
  11279. height: math.unit(500, "meters")
  11280. },
  11281. ]
  11282. ))
  11283. characterMakers.push(() => makeCharacter(
  11284. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11285. {
  11286. front: {
  11287. height: math.unit(6, "feet"),
  11288. weight: math.unit(150, "lb"),
  11289. name: "Front",
  11290. image: {
  11291. source: "./media/characters/zyas/front.svg",
  11292. extra: 1180 / 1120,
  11293. bottom: 0.045
  11294. }
  11295. },
  11296. },
  11297. [
  11298. {
  11299. name: "Normal",
  11300. height: math.unit(10, "feet"),
  11301. default: true
  11302. },
  11303. {
  11304. name: "Macro",
  11305. height: math.unit(500, "feet")
  11306. },
  11307. {
  11308. name: "Megamacro",
  11309. height: math.unit(5, "miles")
  11310. },
  11311. {
  11312. name: "Teramacro",
  11313. height: math.unit(150000, "miles")
  11314. },
  11315. ]
  11316. ))
  11317. characterMakers.push(() => makeCharacter(
  11318. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11319. {
  11320. front: {
  11321. height: math.unit(6, "feet"),
  11322. weight: math.unit(150, "lb"),
  11323. name: "Front",
  11324. image: {
  11325. source: "./media/characters/cuon/front.svg",
  11326. extra: 1390 / 1320,
  11327. bottom: 0.008
  11328. }
  11329. },
  11330. },
  11331. [
  11332. {
  11333. name: "Micro",
  11334. height: math.unit(3, "inches")
  11335. },
  11336. {
  11337. name: "Normal",
  11338. height: math.unit(18 + 9 / 12, "feet"),
  11339. default: true
  11340. },
  11341. {
  11342. name: "Macro",
  11343. height: math.unit(360, "feet")
  11344. },
  11345. {
  11346. name: "Megamacro",
  11347. height: math.unit(360, "miles")
  11348. },
  11349. ]
  11350. ))
  11351. characterMakers.push(() => makeCharacter(
  11352. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11353. {
  11354. front: {
  11355. height: math.unit(2.4, "meters"),
  11356. weight: math.unit(70, "kg"),
  11357. name: "Front",
  11358. image: {
  11359. source: "./media/characters/nyanuxk/front.svg",
  11360. extra: 1172 / 1084,
  11361. bottom: 0.065
  11362. }
  11363. },
  11364. side: {
  11365. height: math.unit(2.4, "meters"),
  11366. weight: math.unit(70, "kg"),
  11367. name: "Side",
  11368. image: {
  11369. source: "./media/characters/nyanuxk/side.svg",
  11370. extra: 1190 / 1132,
  11371. bottom: 0.007
  11372. }
  11373. },
  11374. back: {
  11375. height: math.unit(2.4, "meters"),
  11376. weight: math.unit(70, "kg"),
  11377. name: "Back",
  11378. image: {
  11379. source: "./media/characters/nyanuxk/back.svg",
  11380. extra: 1200 / 1141,
  11381. bottom: 0.015
  11382. }
  11383. },
  11384. foot: {
  11385. height: math.unit(0.52, "meters"),
  11386. name: "Foot",
  11387. image: {
  11388. source: "./media/characters/nyanuxk/foot.svg"
  11389. }
  11390. },
  11391. },
  11392. [
  11393. {
  11394. name: "Micro",
  11395. height: math.unit(2, "cm")
  11396. },
  11397. {
  11398. name: "Normal",
  11399. height: math.unit(2.4, "meters"),
  11400. default: true
  11401. },
  11402. {
  11403. name: "Smaller Macro",
  11404. height: math.unit(120, "meters")
  11405. },
  11406. {
  11407. name: "Bigger Macro",
  11408. height: math.unit(1.2, "km")
  11409. },
  11410. {
  11411. name: "Megamacro",
  11412. height: math.unit(15, "kilometers")
  11413. },
  11414. {
  11415. name: "Gigamacro",
  11416. height: math.unit(2000, "km")
  11417. },
  11418. {
  11419. name: "Teramacro",
  11420. height: math.unit(500000, "km")
  11421. },
  11422. ]
  11423. ))
  11424. characterMakers.push(() => makeCharacter(
  11425. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11426. {
  11427. side: {
  11428. height: math.unit(6, "feet"),
  11429. name: "Side",
  11430. image: {
  11431. source: "./media/characters/ailbhe/side.svg",
  11432. extra: 757 / 464,
  11433. bottom: 0.041
  11434. }
  11435. },
  11436. },
  11437. [
  11438. {
  11439. name: "Normal",
  11440. height: math.unit(1.07, "meters"),
  11441. default: true
  11442. },
  11443. ]
  11444. ))
  11445. characterMakers.push(() => makeCharacter(
  11446. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11447. {
  11448. front: {
  11449. height: math.unit(6, "feet"),
  11450. weight: math.unit(120, "kg"),
  11451. name: "Front",
  11452. image: {
  11453. source: "./media/characters/zevulfius/front.svg",
  11454. extra: 965 / 903
  11455. }
  11456. },
  11457. side: {
  11458. height: math.unit(6, "feet"),
  11459. weight: math.unit(120, "kg"),
  11460. name: "Side",
  11461. image: {
  11462. source: "./media/characters/zevulfius/side.svg",
  11463. extra: 939 / 900
  11464. }
  11465. },
  11466. back: {
  11467. height: math.unit(6, "feet"),
  11468. weight: math.unit(120, "kg"),
  11469. name: "Back",
  11470. image: {
  11471. source: "./media/characters/zevulfius/back.svg",
  11472. extra: 918 / 854,
  11473. bottom: 0.005
  11474. }
  11475. },
  11476. foot: {
  11477. height: math.unit(6 / 3.72, "feet"),
  11478. name: "Foot",
  11479. image: {
  11480. source: "./media/characters/zevulfius/foot.svg"
  11481. }
  11482. },
  11483. },
  11484. [
  11485. {
  11486. name: "Macro",
  11487. height: math.unit(750, "meters")
  11488. },
  11489. {
  11490. name: "Megamacro",
  11491. height: math.unit(20, "km"),
  11492. default: true
  11493. },
  11494. {
  11495. name: "Gigamacro",
  11496. height: math.unit(2000, "km")
  11497. },
  11498. {
  11499. name: "Teramacro",
  11500. height: math.unit(250000, "km")
  11501. },
  11502. ]
  11503. ))
  11504. characterMakers.push(() => makeCharacter(
  11505. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11506. {
  11507. front: {
  11508. height: math.unit(100, "feet"),
  11509. weight: math.unit(350, "kg"),
  11510. name: "Front",
  11511. image: {
  11512. source: "./media/characters/rikes/front.svg",
  11513. extra: 1565 / 1483,
  11514. bottom: 0.017
  11515. }
  11516. },
  11517. },
  11518. [
  11519. {
  11520. name: "Macro",
  11521. height: math.unit(100, "feet"),
  11522. default: true
  11523. },
  11524. ]
  11525. ))
  11526. characterMakers.push(() => makeCharacter(
  11527. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11528. {
  11529. front: {
  11530. height: math.unit(8, "feet"),
  11531. weight: math.unit(356, "lb"),
  11532. name: "Front",
  11533. image: {
  11534. source: "./media/characters/adam-silver-mane/front.svg",
  11535. extra: 1036/937,
  11536. bottom: 63/1099
  11537. }
  11538. },
  11539. side: {
  11540. height: math.unit(8, "feet"),
  11541. weight: math.unit(356, "lb"),
  11542. name: "Side",
  11543. image: {
  11544. source: "./media/characters/adam-silver-mane/side.svg",
  11545. extra: 997/901,
  11546. bottom: 59/1056
  11547. }
  11548. },
  11549. frontNsfw: {
  11550. height: math.unit(8, "feet"),
  11551. weight: math.unit(356, "lb"),
  11552. name: "Front (NSFW)",
  11553. image: {
  11554. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11555. extra: 1036/937,
  11556. bottom: 63/1099
  11557. }
  11558. },
  11559. sideNsfw: {
  11560. height: math.unit(8, "feet"),
  11561. weight: math.unit(356, "lb"),
  11562. name: "Side (NSFW)",
  11563. image: {
  11564. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11565. extra: 997/901,
  11566. bottom: 59/1056
  11567. }
  11568. },
  11569. dick: {
  11570. height: math.unit(2.1, "feet"),
  11571. name: "Dick",
  11572. image: {
  11573. source: "./media/characters/adam-silver-mane/dick.svg"
  11574. }
  11575. },
  11576. taur: {
  11577. height: math.unit(16, "feet"),
  11578. weight: math.unit(1500, "kg"),
  11579. name: "Taur",
  11580. image: {
  11581. source: "./media/characters/adam-silver-mane/taur.svg",
  11582. extra: 1713 / 1571,
  11583. bottom: 0.01
  11584. }
  11585. },
  11586. },
  11587. [
  11588. {
  11589. name: "Normal",
  11590. height: math.unit(8, "feet")
  11591. },
  11592. {
  11593. name: "Minimacro",
  11594. height: math.unit(80, "feet")
  11595. },
  11596. {
  11597. name: "MDA",
  11598. height: math.unit(80, "meters")
  11599. },
  11600. {
  11601. name: "Macro",
  11602. height: math.unit(800, "feet"),
  11603. default: true
  11604. },
  11605. {
  11606. name: "Megamacro",
  11607. height: math.unit(8000, "feet")
  11608. },
  11609. {
  11610. name: "Gigamacro",
  11611. height: math.unit(800, "miles")
  11612. },
  11613. {
  11614. name: "Teramacro",
  11615. height: math.unit(80000, "miles")
  11616. },
  11617. {
  11618. name: "Celestial",
  11619. height: math.unit(8e6, "miles")
  11620. },
  11621. {
  11622. name: "Star Dragon",
  11623. height: math.unit(800000, "parsecs")
  11624. },
  11625. {
  11626. name: "Godly",
  11627. height: math.unit(800, "teraparsecs")
  11628. },
  11629. ]
  11630. ))
  11631. characterMakers.push(() => makeCharacter(
  11632. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11633. {
  11634. front: {
  11635. height: math.unit(6, "feet"),
  11636. weight: math.unit(150, "lb"),
  11637. name: "Front",
  11638. image: {
  11639. source: "./media/characters/ky'owin/front.svg",
  11640. extra: 3888 / 3068,
  11641. bottom: 0.015
  11642. }
  11643. },
  11644. },
  11645. [
  11646. {
  11647. name: "Normal",
  11648. height: math.unit(6 + 8 / 12, "feet")
  11649. },
  11650. {
  11651. name: "Large",
  11652. height: math.unit(68, "feet")
  11653. },
  11654. {
  11655. name: "Macro",
  11656. height: math.unit(132, "feet")
  11657. },
  11658. {
  11659. name: "Macro+",
  11660. height: math.unit(340, "feet")
  11661. },
  11662. {
  11663. name: "Macro++",
  11664. height: math.unit(680, "feet"),
  11665. default: true
  11666. },
  11667. {
  11668. name: "Megamacro",
  11669. height: math.unit(1, "mile")
  11670. },
  11671. {
  11672. name: "Megamacro+",
  11673. height: math.unit(10, "miles")
  11674. },
  11675. ]
  11676. ))
  11677. characterMakers.push(() => makeCharacter(
  11678. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11679. {
  11680. front: {
  11681. height: math.unit(4, "feet"),
  11682. weight: math.unit(50, "lb"),
  11683. name: "Front",
  11684. image: {
  11685. source: "./media/characters/mal/front.svg",
  11686. extra: 785 / 724,
  11687. bottom: 0.07
  11688. }
  11689. },
  11690. },
  11691. [
  11692. {
  11693. name: "Micro",
  11694. height: math.unit(4, "inches")
  11695. },
  11696. {
  11697. name: "Normal",
  11698. height: math.unit(4, "feet"),
  11699. default: true
  11700. },
  11701. {
  11702. name: "Macro",
  11703. height: math.unit(200, "feet")
  11704. },
  11705. ]
  11706. ))
  11707. characterMakers.push(() => makeCharacter(
  11708. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11709. {
  11710. front: {
  11711. height: math.unit(6, "feet"),
  11712. weight: math.unit(150, "lb"),
  11713. name: "Front",
  11714. image: {
  11715. source: "./media/characters/jordan-deware/front.svg",
  11716. extra: 1191 / 1012
  11717. }
  11718. },
  11719. },
  11720. [
  11721. {
  11722. name: "Nano",
  11723. height: math.unit(0.01, "mm")
  11724. },
  11725. {
  11726. name: "Minimicro",
  11727. height: math.unit(1, "mm")
  11728. },
  11729. {
  11730. name: "Micro",
  11731. height: math.unit(0.5, "inches")
  11732. },
  11733. {
  11734. name: "Normal",
  11735. height: math.unit(4, "feet"),
  11736. default: true
  11737. },
  11738. {
  11739. name: "Minimacro",
  11740. height: math.unit(40, "meters")
  11741. },
  11742. {
  11743. name: "Small Macro",
  11744. height: math.unit(400, "meters")
  11745. },
  11746. {
  11747. name: "Macro",
  11748. height: math.unit(4, "miles")
  11749. },
  11750. {
  11751. name: "Megamacro",
  11752. height: math.unit(40, "miles")
  11753. },
  11754. {
  11755. name: "Megamacro+",
  11756. height: math.unit(400, "miles")
  11757. },
  11758. {
  11759. name: "Gigamacro",
  11760. height: math.unit(400000, "miles")
  11761. },
  11762. ]
  11763. ))
  11764. characterMakers.push(() => makeCharacter(
  11765. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11766. {
  11767. side: {
  11768. height: math.unit(6, "feet"),
  11769. weight: math.unit(150, "lb"),
  11770. name: "Side",
  11771. image: {
  11772. source: "./media/characters/kimiko/side.svg",
  11773. extra: 600 / 358
  11774. }
  11775. },
  11776. },
  11777. [
  11778. {
  11779. name: "Normal",
  11780. height: math.unit(15, "feet"),
  11781. default: true
  11782. },
  11783. {
  11784. name: "Macro",
  11785. height: math.unit(220, "feet")
  11786. },
  11787. {
  11788. name: "Macro+",
  11789. height: math.unit(1450, "feet")
  11790. },
  11791. {
  11792. name: "Megamacro",
  11793. height: math.unit(11500, "feet")
  11794. },
  11795. {
  11796. name: "Gigamacro",
  11797. height: math.unit(9500, "miles")
  11798. },
  11799. {
  11800. name: "Teramacro",
  11801. height: math.unit(2208005005, "miles")
  11802. },
  11803. {
  11804. name: "Examacro",
  11805. height: math.unit(2750, "parsecs")
  11806. },
  11807. {
  11808. name: "Zettamacro",
  11809. height: math.unit(101500, "parsecs")
  11810. },
  11811. ]
  11812. ))
  11813. characterMakers.push(() => makeCharacter(
  11814. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11815. {
  11816. front: {
  11817. height: math.unit(6, "feet"),
  11818. weight: math.unit(70, "kg"),
  11819. name: "Front",
  11820. image: {
  11821. source: "./media/characters/andrew-sleepy/front.svg"
  11822. }
  11823. },
  11824. side: {
  11825. height: math.unit(6, "feet"),
  11826. weight: math.unit(70, "kg"),
  11827. name: "Side",
  11828. image: {
  11829. source: "./media/characters/andrew-sleepy/side.svg"
  11830. }
  11831. },
  11832. },
  11833. [
  11834. {
  11835. name: "Micro",
  11836. height: math.unit(1, "mm"),
  11837. default: true
  11838. },
  11839. ]
  11840. ))
  11841. characterMakers.push(() => makeCharacter(
  11842. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11843. {
  11844. front: {
  11845. height: math.unit(6, "feet"),
  11846. weight: math.unit(150, "lb"),
  11847. name: "Front",
  11848. image: {
  11849. source: "./media/characters/judio/front.svg",
  11850. extra: 1258 / 1110
  11851. }
  11852. },
  11853. },
  11854. [
  11855. {
  11856. name: "Normal",
  11857. height: math.unit(5 + 6 / 12, "feet")
  11858. },
  11859. {
  11860. name: "Macro",
  11861. height: math.unit(1000, "feet"),
  11862. default: true
  11863. },
  11864. {
  11865. name: "Megamacro",
  11866. height: math.unit(10, "miles")
  11867. },
  11868. ]
  11869. ))
  11870. characterMakers.push(() => makeCharacter(
  11871. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11872. {
  11873. frontDressed: {
  11874. height: math.unit(6, "feet"),
  11875. weight: math.unit(68, "kg"),
  11876. name: "Front (Dressed)",
  11877. image: {
  11878. source: "./media/characters/nomaxice/front-dressed.svg",
  11879. extra: 1137/824,
  11880. bottom: 74/1211
  11881. }
  11882. },
  11883. frontShorts: {
  11884. height: math.unit(6, "feet"),
  11885. weight: math.unit(68, "kg"),
  11886. name: "Front (Shorts)",
  11887. image: {
  11888. source: "./media/characters/nomaxice/front-shorts.svg",
  11889. extra: 1137/824,
  11890. bottom: 74/1211
  11891. }
  11892. },
  11893. back: {
  11894. height: math.unit(6, "feet"),
  11895. weight: math.unit(68, "kg"),
  11896. name: "Back",
  11897. image: {
  11898. source: "./media/characters/nomaxice/back.svg",
  11899. extra: 822/786,
  11900. bottom: 39/861
  11901. }
  11902. },
  11903. hand: {
  11904. height: math.unit(0.565, "feet"),
  11905. name: "Hand",
  11906. image: {
  11907. source: "./media/characters/nomaxice/hand.svg"
  11908. }
  11909. },
  11910. foot: {
  11911. height: math.unit(1, "feet"),
  11912. name: "Foot",
  11913. image: {
  11914. source: "./media/characters/nomaxice/foot.svg"
  11915. }
  11916. },
  11917. },
  11918. [
  11919. {
  11920. name: "Micro",
  11921. height: math.unit(8, "cm")
  11922. },
  11923. {
  11924. name: "Norm",
  11925. height: math.unit(1.82, "m")
  11926. },
  11927. {
  11928. name: "Norm+",
  11929. height: math.unit(8.8, "feet"),
  11930. default: true
  11931. },
  11932. {
  11933. name: "Big",
  11934. height: math.unit(8, "meters")
  11935. },
  11936. {
  11937. name: "Macro",
  11938. height: math.unit(18, "meters")
  11939. },
  11940. {
  11941. name: "Macro+",
  11942. height: math.unit(88, "meters")
  11943. },
  11944. ]
  11945. ))
  11946. characterMakers.push(() => makeCharacter(
  11947. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11948. {
  11949. front: {
  11950. height: math.unit(12, "feet"),
  11951. weight: math.unit(1.5, "tons"),
  11952. name: "Front",
  11953. image: {
  11954. source: "./media/characters/dydros/front.svg",
  11955. extra: 863 / 800,
  11956. bottom: 0.015
  11957. }
  11958. },
  11959. back: {
  11960. height: math.unit(12, "feet"),
  11961. weight: math.unit(1.5, "tons"),
  11962. name: "Back",
  11963. image: {
  11964. source: "./media/characters/dydros/back.svg",
  11965. extra: 900 / 843,
  11966. bottom: 0.005
  11967. }
  11968. },
  11969. },
  11970. [
  11971. {
  11972. name: "Normal",
  11973. height: math.unit(12, "feet"),
  11974. default: true
  11975. },
  11976. ]
  11977. ))
  11978. characterMakers.push(() => makeCharacter(
  11979. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11980. {
  11981. front: {
  11982. height: math.unit(6, "feet"),
  11983. weight: math.unit(100, "kg"),
  11984. name: "Front",
  11985. image: {
  11986. source: "./media/characters/riggi/front.svg",
  11987. extra: 5787 / 5303
  11988. }
  11989. },
  11990. hyper: {
  11991. height: math.unit(6 * 5 / 3, "feet"),
  11992. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11993. name: "Hyper",
  11994. image: {
  11995. source: "./media/characters/riggi/hyper.svg",
  11996. extra: 3595 / 3485
  11997. }
  11998. },
  11999. },
  12000. [
  12001. {
  12002. name: "Small Macro",
  12003. height: math.unit(50, "feet")
  12004. },
  12005. {
  12006. name: "Default",
  12007. height: math.unit(200, "feet"),
  12008. default: true
  12009. },
  12010. {
  12011. name: "Loom",
  12012. height: math.unit(10000, "feet")
  12013. },
  12014. {
  12015. name: "Cruising Altitude",
  12016. height: math.unit(30000, "feet")
  12017. },
  12018. {
  12019. name: "Megamacro",
  12020. height: math.unit(100, "miles")
  12021. },
  12022. {
  12023. name: "Continent Sized",
  12024. height: math.unit(2800, "miles")
  12025. },
  12026. {
  12027. name: "Earth Sized",
  12028. height: math.unit(8000, "miles")
  12029. },
  12030. ]
  12031. ))
  12032. characterMakers.push(() => makeCharacter(
  12033. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12034. {
  12035. front: {
  12036. height: math.unit(6, "feet"),
  12037. weight: math.unit(250, "lb"),
  12038. name: "Front",
  12039. image: {
  12040. source: "./media/characters/alexi/front.svg",
  12041. extra: 3483 / 3291,
  12042. bottom: 0.04
  12043. }
  12044. },
  12045. back: {
  12046. height: math.unit(6, "feet"),
  12047. weight: math.unit(250, "lb"),
  12048. name: "Back",
  12049. image: {
  12050. source: "./media/characters/alexi/back.svg",
  12051. extra: 3533 / 3356,
  12052. bottom: 0.021
  12053. }
  12054. },
  12055. frontTransforming: {
  12056. height: math.unit(8.58, "feet"),
  12057. weight: math.unit(1300, "lb"),
  12058. name: "Transforming",
  12059. image: {
  12060. source: "./media/characters/alexi/front-transforming.svg",
  12061. extra: 437 / 409,
  12062. bottom: 19 / 458.66
  12063. }
  12064. },
  12065. frontTransformed: {
  12066. height: math.unit(12.5, "feet"),
  12067. weight: math.unit(4000, "lb"),
  12068. name: "Transformed",
  12069. image: {
  12070. source: "./media/characters/alexi/front-transformed.svg",
  12071. extra: 639 / 614,
  12072. bottom: 30.55 / 671
  12073. }
  12074. },
  12075. },
  12076. [
  12077. {
  12078. name: "Normal",
  12079. height: math.unit(14, "feet"),
  12080. default: true
  12081. },
  12082. {
  12083. name: "Minimacro",
  12084. height: math.unit(30, "meters")
  12085. },
  12086. {
  12087. name: "Macro",
  12088. height: math.unit(500, "meters")
  12089. },
  12090. {
  12091. name: "Megamacro",
  12092. height: math.unit(9000, "km")
  12093. },
  12094. {
  12095. name: "Teramacro",
  12096. height: math.unit(384000, "km")
  12097. },
  12098. ]
  12099. ))
  12100. characterMakers.push(() => makeCharacter(
  12101. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12102. {
  12103. front: {
  12104. height: math.unit(6, "feet"),
  12105. weight: math.unit(150, "lb"),
  12106. name: "Front",
  12107. image: {
  12108. source: "./media/characters/kayroo/front.svg",
  12109. extra: 1153 / 1038,
  12110. bottom: 0.06
  12111. }
  12112. },
  12113. foot: {
  12114. height: math.unit(6, "feet"),
  12115. weight: math.unit(150, "lb"),
  12116. name: "Foot",
  12117. image: {
  12118. source: "./media/characters/kayroo/foot.svg"
  12119. }
  12120. },
  12121. },
  12122. [
  12123. {
  12124. name: "Normal",
  12125. height: math.unit(8, "feet"),
  12126. default: true
  12127. },
  12128. {
  12129. name: "Minimacro",
  12130. height: math.unit(250, "feet")
  12131. },
  12132. {
  12133. name: "Macro",
  12134. height: math.unit(2800, "feet")
  12135. },
  12136. {
  12137. name: "Megamacro",
  12138. height: math.unit(5200, "feet")
  12139. },
  12140. {
  12141. name: "Gigamacro",
  12142. height: math.unit(27000, "feet")
  12143. },
  12144. {
  12145. name: "Omega",
  12146. height: math.unit(45000, "feet")
  12147. },
  12148. ]
  12149. ))
  12150. characterMakers.push(() => makeCharacter(
  12151. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12152. {
  12153. front: {
  12154. height: math.unit(18, "feet"),
  12155. weight: math.unit(5800, "lb"),
  12156. name: "Front",
  12157. image: {
  12158. source: "./media/characters/rhys/front.svg",
  12159. extra: 3386 / 3090,
  12160. bottom: 0.07
  12161. }
  12162. },
  12163. },
  12164. [
  12165. {
  12166. name: "Normal",
  12167. height: math.unit(18, "feet"),
  12168. default: true
  12169. },
  12170. {
  12171. name: "Working Size",
  12172. height: math.unit(200, "feet")
  12173. },
  12174. {
  12175. name: "Demolition Size",
  12176. height: math.unit(2000, "feet")
  12177. },
  12178. {
  12179. name: "Maximum Licensed Size",
  12180. height: math.unit(5, "miles")
  12181. },
  12182. {
  12183. name: "Maximum Observed Size",
  12184. height: math.unit(10, "yottameters")
  12185. },
  12186. ]
  12187. ))
  12188. characterMakers.push(() => makeCharacter(
  12189. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12190. {
  12191. front: {
  12192. height: math.unit(6, "feet"),
  12193. weight: math.unit(250, "lb"),
  12194. name: "Front",
  12195. image: {
  12196. source: "./media/characters/toto/front.svg",
  12197. extra: 527 / 479,
  12198. bottom: 0.05
  12199. }
  12200. },
  12201. },
  12202. [
  12203. {
  12204. name: "Micro",
  12205. height: math.unit(3, "feet")
  12206. },
  12207. {
  12208. name: "Normal",
  12209. height: math.unit(10, "feet")
  12210. },
  12211. {
  12212. name: "Macro",
  12213. height: math.unit(150, "feet"),
  12214. default: true
  12215. },
  12216. {
  12217. name: "Megamacro",
  12218. height: math.unit(1200, "feet")
  12219. },
  12220. ]
  12221. ))
  12222. characterMakers.push(() => makeCharacter(
  12223. { name: "King", species: ["lion"], tags: ["anthro"] },
  12224. {
  12225. back: {
  12226. height: math.unit(6, "feet"),
  12227. weight: math.unit(150, "lb"),
  12228. name: "Back",
  12229. image: {
  12230. source: "./media/characters/king/back.svg"
  12231. }
  12232. },
  12233. },
  12234. [
  12235. {
  12236. name: "Micro",
  12237. height: math.unit(2, "inches")
  12238. },
  12239. {
  12240. name: "Normal",
  12241. height: math.unit(8, "feet")
  12242. },
  12243. {
  12244. name: "Macro",
  12245. height: math.unit(200, "feet"),
  12246. default: true
  12247. },
  12248. {
  12249. name: "Megamacro",
  12250. height: math.unit(50, "miles")
  12251. },
  12252. ]
  12253. ))
  12254. characterMakers.push(() => makeCharacter(
  12255. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12256. {
  12257. front: {
  12258. height: math.unit(11, "feet"),
  12259. weight: math.unit(1400, "lb"),
  12260. name: "Front",
  12261. image: {
  12262. source: "./media/characters/cordite/front.svg",
  12263. extra: 1919/1827,
  12264. bottom: 40/1959
  12265. }
  12266. },
  12267. side: {
  12268. height: math.unit(11, "feet"),
  12269. weight: math.unit(1400, "lb"),
  12270. name: "Side",
  12271. image: {
  12272. source: "./media/characters/cordite/side.svg",
  12273. extra: 1908/1793,
  12274. bottom: 38/1946
  12275. }
  12276. },
  12277. back: {
  12278. height: math.unit(11, "feet"),
  12279. weight: math.unit(1400, "lb"),
  12280. name: "Back",
  12281. image: {
  12282. source: "./media/characters/cordite/back.svg",
  12283. extra: 1938/1837,
  12284. bottom: 10/1948
  12285. }
  12286. },
  12287. feral: {
  12288. height: math.unit(2, "feet"),
  12289. weight: math.unit(90, "lb"),
  12290. name: "Feral",
  12291. image: {
  12292. source: "./media/characters/cordite/feral.svg",
  12293. extra: 1260 / 755,
  12294. bottom: 0.05
  12295. }
  12296. },
  12297. },
  12298. [
  12299. {
  12300. name: "Normal",
  12301. height: math.unit(11, "feet"),
  12302. default: true
  12303. },
  12304. ]
  12305. ))
  12306. characterMakers.push(() => makeCharacter(
  12307. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12308. {
  12309. front: {
  12310. height: math.unit(6, "feet"),
  12311. weight: math.unit(150, "lb"),
  12312. name: "Front",
  12313. image: {
  12314. source: "./media/characters/pianostrong/front.svg",
  12315. extra: 6577 / 6254,
  12316. bottom: 0.02
  12317. }
  12318. },
  12319. side: {
  12320. height: math.unit(6, "feet"),
  12321. weight: math.unit(150, "lb"),
  12322. name: "Side",
  12323. image: {
  12324. source: "./media/characters/pianostrong/side.svg",
  12325. extra: 6106 / 5730
  12326. }
  12327. },
  12328. back: {
  12329. height: math.unit(6, "feet"),
  12330. weight: math.unit(150, "lb"),
  12331. name: "Back",
  12332. image: {
  12333. source: "./media/characters/pianostrong/back.svg",
  12334. extra: 6085 / 5733,
  12335. bottom: 0.01
  12336. }
  12337. },
  12338. },
  12339. [
  12340. {
  12341. name: "Macro",
  12342. height: math.unit(100, "feet")
  12343. },
  12344. {
  12345. name: "Macro+",
  12346. height: math.unit(300, "feet"),
  12347. default: true
  12348. },
  12349. {
  12350. name: "Macro++",
  12351. height: math.unit(1000, "feet")
  12352. },
  12353. ]
  12354. ))
  12355. characterMakers.push(() => makeCharacter(
  12356. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12357. {
  12358. front: {
  12359. height: math.unit(6, "feet"),
  12360. weight: math.unit(150, "lb"),
  12361. name: "Front",
  12362. image: {
  12363. source: "./media/characters/kona/front.svg",
  12364. extra: 2960 / 2629,
  12365. bottom: 0.005
  12366. }
  12367. },
  12368. },
  12369. [
  12370. {
  12371. name: "Normal",
  12372. height: math.unit(11 + 8 / 12, "feet")
  12373. },
  12374. {
  12375. name: "Macro",
  12376. height: math.unit(850, "feet"),
  12377. default: true
  12378. },
  12379. {
  12380. name: "Macro+",
  12381. height: math.unit(1.5, "km"),
  12382. default: true
  12383. },
  12384. {
  12385. name: "Megamacro",
  12386. height: math.unit(80, "miles")
  12387. },
  12388. {
  12389. name: "Gigamacro",
  12390. height: math.unit(3500, "miles")
  12391. },
  12392. ]
  12393. ))
  12394. characterMakers.push(() => makeCharacter(
  12395. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12396. {
  12397. side: {
  12398. height: math.unit(1.9, "meters"),
  12399. weight: math.unit(326, "kg"),
  12400. name: "Side",
  12401. image: {
  12402. source: "./media/characters/levi/side.svg",
  12403. extra: 1704 / 1334,
  12404. bottom: 0.02
  12405. }
  12406. },
  12407. },
  12408. [
  12409. {
  12410. name: "Normal",
  12411. height: math.unit(1.9, "meters"),
  12412. default: true
  12413. },
  12414. {
  12415. name: "Macro",
  12416. height: math.unit(20, "meters")
  12417. },
  12418. {
  12419. name: "Macro+",
  12420. height: math.unit(200, "meters")
  12421. },
  12422. {
  12423. name: "Megamacro",
  12424. height: math.unit(2, "km")
  12425. },
  12426. {
  12427. name: "Megamacro+",
  12428. height: math.unit(20, "km")
  12429. },
  12430. {
  12431. name: "Gigamacro",
  12432. height: math.unit(2500, "km")
  12433. },
  12434. {
  12435. name: "Gigamacro+",
  12436. height: math.unit(120000, "km")
  12437. },
  12438. {
  12439. name: "Teramacro",
  12440. height: math.unit(7.77e6, "km")
  12441. },
  12442. ]
  12443. ))
  12444. characterMakers.push(() => makeCharacter(
  12445. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12446. {
  12447. front: {
  12448. height: math.unit(6 + 4/12, "feet"),
  12449. weight: math.unit(190, "lb"),
  12450. name: "Front",
  12451. image: {
  12452. source: "./media/characters/bmc/front.svg",
  12453. extra: 1626/1472,
  12454. bottom: 79/1705
  12455. }
  12456. },
  12457. back: {
  12458. height: math.unit(6 + 4/12, "feet"),
  12459. weight: math.unit(190, "lb"),
  12460. name: "Back",
  12461. image: {
  12462. source: "./media/characters/bmc/back.svg",
  12463. extra: 1640/1479,
  12464. bottom: 45/1685
  12465. }
  12466. },
  12467. frontArmor: {
  12468. height: math.unit(6 + 4/12, "feet"),
  12469. weight: math.unit(190, "lb"),
  12470. name: "Front-armor",
  12471. image: {
  12472. source: "./media/characters/bmc/front-armor.svg",
  12473. extra: 1538/1468,
  12474. bottom: 79/1617
  12475. }
  12476. },
  12477. },
  12478. [
  12479. {
  12480. name: "Human-sized",
  12481. height: math.unit(6 + 4 / 12, "feet")
  12482. },
  12483. {
  12484. name: "Interactive Size",
  12485. height: math.unit(25, "feet")
  12486. },
  12487. {
  12488. name: "Small",
  12489. height: math.unit(250, "feet")
  12490. },
  12491. {
  12492. name: "Normal",
  12493. height: math.unit(1250, "feet"),
  12494. default: true
  12495. },
  12496. {
  12497. name: "Good Day",
  12498. height: math.unit(88, "miles")
  12499. },
  12500. {
  12501. name: "Largest Measured Size",
  12502. height: math.unit(105.960, "galaxies")
  12503. },
  12504. ]
  12505. ))
  12506. characterMakers.push(() => makeCharacter(
  12507. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12508. {
  12509. front: {
  12510. height: math.unit(20, "feet"),
  12511. weight: math.unit(2016, "kg"),
  12512. name: "Front",
  12513. image: {
  12514. source: "./media/characters/sven-the-kaiju/front.svg",
  12515. extra: 1277/1250,
  12516. bottom: 35/1312
  12517. }
  12518. },
  12519. mouth: {
  12520. height: math.unit(1.85, "feet"),
  12521. name: "Mouth",
  12522. image: {
  12523. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12524. }
  12525. },
  12526. },
  12527. [
  12528. {
  12529. name: "Fairy",
  12530. height: math.unit(6, "inches")
  12531. },
  12532. {
  12533. name: "Normal",
  12534. height: math.unit(20, "feet"),
  12535. default: true
  12536. },
  12537. {
  12538. name: "Rampage",
  12539. height: math.unit(200, "feet")
  12540. },
  12541. {
  12542. name: "Archfey Forest Guardian",
  12543. height: math.unit(1, "mile")
  12544. },
  12545. ]
  12546. ))
  12547. characterMakers.push(() => makeCharacter(
  12548. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12549. {
  12550. front: {
  12551. height: math.unit(4, "meters"),
  12552. weight: math.unit(2, "tons"),
  12553. name: "Front",
  12554. image: {
  12555. source: "./media/characters/marik/front.svg",
  12556. extra: 1057 / 1003,
  12557. bottom: 0.08
  12558. }
  12559. },
  12560. },
  12561. [
  12562. {
  12563. name: "Normal",
  12564. height: math.unit(4, "meters"),
  12565. default: true
  12566. },
  12567. {
  12568. name: "Macro",
  12569. height: math.unit(20, "meters")
  12570. },
  12571. {
  12572. name: "Megamacro",
  12573. height: math.unit(50, "km")
  12574. },
  12575. {
  12576. name: "Gigamacro",
  12577. height: math.unit(100, "km")
  12578. },
  12579. {
  12580. name: "Alpha Macro",
  12581. height: math.unit(7.88e7, "yottameters")
  12582. },
  12583. ]
  12584. ))
  12585. characterMakers.push(() => makeCharacter(
  12586. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12587. {
  12588. front: {
  12589. height: math.unit(6, "feet"),
  12590. weight: math.unit(110, "lb"),
  12591. name: "Front",
  12592. image: {
  12593. source: "./media/characters/mel/front.svg",
  12594. extra: 736 / 617,
  12595. bottom: 0.017
  12596. }
  12597. },
  12598. },
  12599. [
  12600. {
  12601. name: "Pico",
  12602. height: math.unit(3, "pm")
  12603. },
  12604. {
  12605. name: "Nano",
  12606. height: math.unit(3, "nm")
  12607. },
  12608. {
  12609. name: "Micro",
  12610. height: math.unit(0.3, "mm"),
  12611. default: true
  12612. },
  12613. {
  12614. name: "Micro+",
  12615. height: math.unit(3, "mm")
  12616. },
  12617. {
  12618. name: "Normal",
  12619. height: math.unit(5 + 10.5 / 12, "feet")
  12620. },
  12621. ]
  12622. ))
  12623. characterMakers.push(() => makeCharacter(
  12624. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12625. {
  12626. kaiju: {
  12627. height: math.unit(1.75, "meters"),
  12628. weight: math.unit(55, "kg"),
  12629. name: "Kaiju",
  12630. image: {
  12631. source: "./media/characters/lykonous/kaiju.svg",
  12632. extra: 1055 / 946,
  12633. bottom: 0.135
  12634. }
  12635. },
  12636. },
  12637. [
  12638. {
  12639. name: "Normal",
  12640. height: math.unit(2.5, "meters"),
  12641. default: true
  12642. },
  12643. {
  12644. name: "Kaiju Dragon",
  12645. height: math.unit(60, "meters")
  12646. },
  12647. {
  12648. name: "Mega Kaiju",
  12649. height: math.unit(120, "km")
  12650. },
  12651. {
  12652. name: "Giga Kaiju",
  12653. height: math.unit(200, "megameters")
  12654. },
  12655. {
  12656. name: "Terra Kaiju",
  12657. height: math.unit(400, "gigameters")
  12658. },
  12659. {
  12660. name: "Kaiju Dragon God",
  12661. height: math.unit(13000, "exaparsecs")
  12662. },
  12663. ]
  12664. ))
  12665. characterMakers.push(() => makeCharacter(
  12666. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12667. {
  12668. front: {
  12669. height: math.unit(6, "feet"),
  12670. weight: math.unit(150, "lb"),
  12671. name: "Front",
  12672. image: {
  12673. source: "./media/characters/blü/front.svg",
  12674. extra: 1883 / 1564,
  12675. bottom: 0.031
  12676. }
  12677. },
  12678. },
  12679. [
  12680. {
  12681. name: "Normal",
  12682. height: math.unit(13, "feet"),
  12683. default: true
  12684. },
  12685. {
  12686. name: "Big Boi",
  12687. height: math.unit(150, "meters")
  12688. },
  12689. {
  12690. name: "Mini Stomper",
  12691. height: math.unit(300, "meters")
  12692. },
  12693. {
  12694. name: "Macro",
  12695. height: math.unit(1000, "meters")
  12696. },
  12697. {
  12698. name: "Megamacro",
  12699. height: math.unit(11000, "meters")
  12700. },
  12701. {
  12702. name: "Gigamacro",
  12703. height: math.unit(11000, "km")
  12704. },
  12705. {
  12706. name: "Teramacro",
  12707. height: math.unit(420000, "km")
  12708. },
  12709. {
  12710. name: "Examacro",
  12711. height: math.unit(120, "parsecs")
  12712. },
  12713. {
  12714. name: "God Tho",
  12715. height: math.unit(98000000000, "parsecs")
  12716. },
  12717. ]
  12718. ))
  12719. characterMakers.push(() => makeCharacter(
  12720. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12721. {
  12722. taurFront: {
  12723. height: math.unit(6, "feet"),
  12724. weight: math.unit(200, "lb"),
  12725. name: "Taur (Front)",
  12726. image: {
  12727. source: "./media/characters/scales/taur-front.svg",
  12728. extra: 1,
  12729. bottom: 0.05
  12730. }
  12731. },
  12732. taurBack: {
  12733. height: math.unit(6, "feet"),
  12734. weight: math.unit(200, "lb"),
  12735. name: "Taur (Back)",
  12736. image: {
  12737. source: "./media/characters/scales/taur-back.svg",
  12738. extra: 1,
  12739. bottom: 0.08
  12740. }
  12741. },
  12742. anthro: {
  12743. height: math.unit(6 * 7 / 12, "feet"),
  12744. weight: math.unit(100, "lb"),
  12745. name: "Anthro",
  12746. image: {
  12747. source: "./media/characters/scales/anthro.svg",
  12748. extra: 1,
  12749. bottom: 0.06
  12750. }
  12751. },
  12752. },
  12753. [
  12754. {
  12755. name: "Normal",
  12756. height: math.unit(12, "feet"),
  12757. default: true
  12758. },
  12759. ]
  12760. ))
  12761. characterMakers.push(() => makeCharacter(
  12762. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12763. {
  12764. front: {
  12765. height: math.unit(6, "feet"),
  12766. weight: math.unit(150, "lb"),
  12767. name: "Front",
  12768. image: {
  12769. source: "./media/characters/koragos/front.svg",
  12770. extra: 841 / 794,
  12771. bottom: 0.035
  12772. }
  12773. },
  12774. back: {
  12775. height: math.unit(6, "feet"),
  12776. weight: math.unit(150, "lb"),
  12777. name: "Back",
  12778. image: {
  12779. source: "./media/characters/koragos/back.svg",
  12780. extra: 841 / 810,
  12781. bottom: 0.022
  12782. }
  12783. },
  12784. },
  12785. [
  12786. {
  12787. name: "Normal",
  12788. height: math.unit(6 + 11 / 12, "feet"),
  12789. default: true
  12790. },
  12791. {
  12792. name: "Macro",
  12793. height: math.unit(490, "feet")
  12794. },
  12795. {
  12796. name: "Megamacro",
  12797. height: math.unit(10, "miles")
  12798. },
  12799. {
  12800. name: "Gigamacro",
  12801. height: math.unit(50, "miles")
  12802. },
  12803. ]
  12804. ))
  12805. characterMakers.push(() => makeCharacter(
  12806. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12807. {
  12808. front: {
  12809. height: math.unit(6, "feet"),
  12810. weight: math.unit(250, "lb"),
  12811. name: "Front",
  12812. image: {
  12813. source: "./media/characters/xylrem/front.svg",
  12814. extra: 3323 / 3050,
  12815. bottom: 0.065
  12816. }
  12817. },
  12818. },
  12819. [
  12820. {
  12821. name: "Micro",
  12822. height: math.unit(4, "feet")
  12823. },
  12824. {
  12825. name: "Normal",
  12826. height: math.unit(16, "feet"),
  12827. default: true
  12828. },
  12829. {
  12830. name: "Macro",
  12831. height: math.unit(2720, "feet")
  12832. },
  12833. {
  12834. name: "Megamacro",
  12835. height: math.unit(25000, "miles")
  12836. },
  12837. ]
  12838. ))
  12839. characterMakers.push(() => makeCharacter(
  12840. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12841. {
  12842. front: {
  12843. height: math.unit(8, "feet"),
  12844. weight: math.unit(250, "kg"),
  12845. name: "Front",
  12846. image: {
  12847. source: "./media/characters/ikideru/front.svg",
  12848. extra: 930 / 870,
  12849. bottom: 0.087
  12850. }
  12851. },
  12852. back: {
  12853. height: math.unit(8, "feet"),
  12854. weight: math.unit(250, "kg"),
  12855. name: "Back",
  12856. image: {
  12857. source: "./media/characters/ikideru/back.svg",
  12858. extra: 919 / 852,
  12859. bottom: 0.055
  12860. }
  12861. },
  12862. },
  12863. [
  12864. {
  12865. name: "Rare",
  12866. height: math.unit(8, "feet"),
  12867. default: true
  12868. },
  12869. {
  12870. name: "Playful Loom",
  12871. height: math.unit(80, "feet")
  12872. },
  12873. {
  12874. name: "City Leaner",
  12875. height: math.unit(230, "feet")
  12876. },
  12877. {
  12878. name: "Megamacro",
  12879. height: math.unit(2500, "feet")
  12880. },
  12881. {
  12882. name: "Gigamacro",
  12883. height: math.unit(26400, "feet")
  12884. },
  12885. {
  12886. name: "Tectonic Shifter",
  12887. height: math.unit(1.7, "megameters")
  12888. },
  12889. {
  12890. name: "Planet Carer",
  12891. height: math.unit(21, "megameters")
  12892. },
  12893. {
  12894. name: "God",
  12895. height: math.unit(11157.22, "parsecs")
  12896. },
  12897. ]
  12898. ))
  12899. characterMakers.push(() => makeCharacter(
  12900. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12901. {
  12902. front: {
  12903. height: math.unit(6, "feet"),
  12904. weight: math.unit(120, "lb"),
  12905. name: "Front",
  12906. image: {
  12907. source: "./media/characters/neo/front.svg"
  12908. }
  12909. },
  12910. },
  12911. [
  12912. {
  12913. name: "Micro",
  12914. height: math.unit(2, "inches"),
  12915. default: true
  12916. },
  12917. {
  12918. name: "Human Size",
  12919. height: math.unit(5 + 8 / 12, "feet")
  12920. },
  12921. ]
  12922. ))
  12923. characterMakers.push(() => makeCharacter(
  12924. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12925. {
  12926. front: {
  12927. height: math.unit(13 + 10 / 12, "feet"),
  12928. weight: math.unit(5320, "lb"),
  12929. name: "Front",
  12930. image: {
  12931. source: "./media/characters/chauncey-chantz/front.svg",
  12932. extra: 1587 / 1435,
  12933. bottom: 0.02
  12934. }
  12935. },
  12936. },
  12937. [
  12938. {
  12939. name: "Normal",
  12940. height: math.unit(13 + 10 / 12, "feet"),
  12941. default: true
  12942. },
  12943. {
  12944. name: "Macro",
  12945. height: math.unit(45, "feet")
  12946. },
  12947. {
  12948. name: "Megamacro",
  12949. height: math.unit(250, "miles")
  12950. },
  12951. {
  12952. name: "Planetary",
  12953. height: math.unit(10000, "miles")
  12954. },
  12955. {
  12956. name: "Galactic",
  12957. height: math.unit(40000, "parsecs")
  12958. },
  12959. {
  12960. name: "Universal",
  12961. height: math.unit(1, "yottameter")
  12962. },
  12963. ]
  12964. ))
  12965. characterMakers.push(() => makeCharacter(
  12966. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12967. {
  12968. front: {
  12969. height: math.unit(6, "feet"),
  12970. weight: math.unit(150, "lb"),
  12971. name: "Front",
  12972. image: {
  12973. source: "./media/characters/epifox/front.svg",
  12974. extra: 1,
  12975. bottom: 0.075
  12976. }
  12977. },
  12978. },
  12979. [
  12980. {
  12981. name: "Micro",
  12982. height: math.unit(6, "inches")
  12983. },
  12984. {
  12985. name: "Normal",
  12986. height: math.unit(12, "feet"),
  12987. default: true
  12988. },
  12989. {
  12990. name: "Macro",
  12991. height: math.unit(3810, "feet")
  12992. },
  12993. {
  12994. name: "Megamacro",
  12995. height: math.unit(500, "miles")
  12996. },
  12997. ]
  12998. ))
  12999. characterMakers.push(() => makeCharacter(
  13000. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13001. {
  13002. front: {
  13003. height: math.unit(1.8796, "m"),
  13004. weight: math.unit(230, "lb"),
  13005. name: "Front",
  13006. image: {
  13007. source: "./media/characters/colin-t/front.svg",
  13008. extra: 1272 / 1193,
  13009. bottom: 0.07
  13010. }
  13011. },
  13012. },
  13013. [
  13014. {
  13015. name: "Micro",
  13016. height: math.unit(0.571, "meters")
  13017. },
  13018. {
  13019. name: "Normal",
  13020. height: math.unit(1.8796, "meters"),
  13021. default: true
  13022. },
  13023. {
  13024. name: "Tall",
  13025. height: math.unit(4, "meters")
  13026. },
  13027. {
  13028. name: "Macro",
  13029. height: math.unit(67.241, "meters")
  13030. },
  13031. {
  13032. name: "Megamacro",
  13033. height: math.unit(371.856, "meters")
  13034. },
  13035. {
  13036. name: "Planetary",
  13037. height: math.unit(12631.5689, "km")
  13038. },
  13039. ]
  13040. ))
  13041. characterMakers.push(() => makeCharacter(
  13042. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13043. {
  13044. front: {
  13045. height: math.unit(1.85, "meters"),
  13046. weight: math.unit(80, "kg"),
  13047. name: "Front",
  13048. image: {
  13049. source: "./media/characters/matvei/front.svg",
  13050. extra: 614 / 594,
  13051. bottom: 0.01
  13052. }
  13053. },
  13054. },
  13055. [
  13056. {
  13057. name: "Normal",
  13058. height: math.unit(1.85, "meters"),
  13059. default: true
  13060. },
  13061. ]
  13062. ))
  13063. characterMakers.push(() => makeCharacter(
  13064. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13065. {
  13066. front: {
  13067. height: math.unit(5 + 9 / 12, "feet"),
  13068. weight: math.unit(70, "lb"),
  13069. name: "Front",
  13070. image: {
  13071. source: "./media/characters/quincy/front.svg",
  13072. extra: 3041 / 2751
  13073. }
  13074. },
  13075. back: {
  13076. height: math.unit(5 + 9 / 12, "feet"),
  13077. weight: math.unit(70, "lb"),
  13078. name: "Back",
  13079. image: {
  13080. source: "./media/characters/quincy/back.svg",
  13081. extra: 3041 / 2751
  13082. }
  13083. },
  13084. flying: {
  13085. height: math.unit(5 + 4 / 12, "feet"),
  13086. weight: math.unit(70, "lb"),
  13087. name: "Flying",
  13088. image: {
  13089. source: "./media/characters/quincy/flying.svg",
  13090. extra: 1044 / 930
  13091. }
  13092. },
  13093. },
  13094. [
  13095. {
  13096. name: "Micro",
  13097. height: math.unit(3, "cm")
  13098. },
  13099. {
  13100. name: "Normal",
  13101. height: math.unit(5 + 9 / 12, "feet")
  13102. },
  13103. {
  13104. name: "Macro",
  13105. height: math.unit(200, "meters"),
  13106. default: true
  13107. },
  13108. {
  13109. name: "Megamacro",
  13110. height: math.unit(1000, "meters")
  13111. },
  13112. ]
  13113. ))
  13114. characterMakers.push(() => makeCharacter(
  13115. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13116. {
  13117. front: {
  13118. height: math.unit(3 + 11/12, "feet"),
  13119. weight: math.unit(50, "lb"),
  13120. name: "Front",
  13121. image: {
  13122. source: "./media/characters/vanrel/front.svg",
  13123. extra: 1104/949,
  13124. bottom: 52/1156
  13125. }
  13126. },
  13127. back: {
  13128. height: math.unit(3 + 11/12, "feet"),
  13129. weight: math.unit(50, "lb"),
  13130. name: "Back",
  13131. image: {
  13132. source: "./media/characters/vanrel/back.svg",
  13133. extra: 1119/976,
  13134. bottom: 37/1156
  13135. }
  13136. },
  13137. tome: {
  13138. height: math.unit(1.35, "feet"),
  13139. weight: math.unit(10, "lb"),
  13140. name: "Vanrel's Tome",
  13141. rename: true,
  13142. image: {
  13143. source: "./media/characters/vanrel/tome.svg"
  13144. }
  13145. },
  13146. beans: {
  13147. height: math.unit(0.89, "feet"),
  13148. name: "Beans",
  13149. image: {
  13150. source: "./media/characters/vanrel/beans.svg"
  13151. }
  13152. },
  13153. },
  13154. [
  13155. {
  13156. name: "Normal",
  13157. height: math.unit(3 + 11/12, "feet"),
  13158. default: true
  13159. },
  13160. ]
  13161. ))
  13162. characterMakers.push(() => makeCharacter(
  13163. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13164. {
  13165. front: {
  13166. height: math.unit(7 + 5 / 12, "feet"),
  13167. name: "Front",
  13168. image: {
  13169. source: "./media/characters/kuiper-vanrel/front.svg",
  13170. extra: 1219/1169,
  13171. bottom: 69/1288
  13172. }
  13173. },
  13174. back: {
  13175. height: math.unit(7 + 5 / 12, "feet"),
  13176. name: "Back",
  13177. image: {
  13178. source: "./media/characters/kuiper-vanrel/back.svg",
  13179. extra: 1236/1193,
  13180. bottom: 27/1263
  13181. }
  13182. },
  13183. foot: {
  13184. height: math.unit(0.55, "meters"),
  13185. name: "Foot",
  13186. image: {
  13187. source: "./media/characters/kuiper-vanrel/foot.svg",
  13188. }
  13189. },
  13190. battle: {
  13191. height: math.unit(6.824, "feet"),
  13192. name: "Battle",
  13193. image: {
  13194. source: "./media/characters/kuiper-vanrel/battle.svg",
  13195. extra: 1466 / 1327,
  13196. bottom: 29 / 1492.5
  13197. }
  13198. },
  13199. meerkui: {
  13200. height: math.unit(18, "inches"),
  13201. name: "Meerkui",
  13202. image: {
  13203. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13204. extra: 1354/1289,
  13205. bottom: 69/1423
  13206. }
  13207. },
  13208. },
  13209. [
  13210. {
  13211. name: "Normal",
  13212. height: math.unit(7 + 5 / 12, "feet"),
  13213. default: true
  13214. },
  13215. ]
  13216. ))
  13217. characterMakers.push(() => makeCharacter(
  13218. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13219. {
  13220. front: {
  13221. height: math.unit(8 + 5 / 12, "feet"),
  13222. name: "Front",
  13223. image: {
  13224. source: "./media/characters/keset-vanrel/front.svg",
  13225. extra: 1231/1148,
  13226. bottom: 82/1313
  13227. }
  13228. },
  13229. back: {
  13230. height: math.unit(8 + 5 / 12, "feet"),
  13231. name: "Back",
  13232. image: {
  13233. source: "./media/characters/keset-vanrel/back.svg",
  13234. extra: 1240/1174,
  13235. bottom: 33/1273
  13236. }
  13237. },
  13238. hand: {
  13239. height: math.unit(0.6, "meters"),
  13240. name: "Hand",
  13241. image: {
  13242. source: "./media/characters/keset-vanrel/hand.svg"
  13243. }
  13244. },
  13245. foot: {
  13246. height: math.unit(0.94978, "meters"),
  13247. name: "Foot",
  13248. image: {
  13249. source: "./media/characters/keset-vanrel/foot.svg"
  13250. }
  13251. },
  13252. battle: {
  13253. height: math.unit(7.408, "feet"),
  13254. name: "Battle",
  13255. image: {
  13256. source: "./media/characters/keset-vanrel/battle.svg",
  13257. extra: 1890 / 1386,
  13258. bottom: 73.28 / 1970
  13259. }
  13260. },
  13261. },
  13262. [
  13263. {
  13264. name: "Normal",
  13265. height: math.unit(8 + 5 / 12, "feet"),
  13266. default: true
  13267. },
  13268. ]
  13269. ))
  13270. characterMakers.push(() => makeCharacter(
  13271. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13272. {
  13273. front: {
  13274. height: math.unit(6, "feet"),
  13275. weight: math.unit(150, "lb"),
  13276. name: "Front",
  13277. image: {
  13278. source: "./media/characters/neos/front.svg",
  13279. extra: 1696 / 992,
  13280. bottom: 0.14
  13281. }
  13282. },
  13283. },
  13284. [
  13285. {
  13286. name: "Normal",
  13287. height: math.unit(54, "cm"),
  13288. default: true
  13289. },
  13290. {
  13291. name: "Macro",
  13292. height: math.unit(100, "m")
  13293. },
  13294. {
  13295. name: "Megamacro",
  13296. height: math.unit(10, "km")
  13297. },
  13298. {
  13299. name: "Megamacro+",
  13300. height: math.unit(100, "km")
  13301. },
  13302. {
  13303. name: "Gigamacro",
  13304. height: math.unit(100, "Mm")
  13305. },
  13306. {
  13307. name: "Teramacro",
  13308. height: math.unit(100, "Gm")
  13309. },
  13310. {
  13311. name: "Examacro",
  13312. height: math.unit(100, "Em")
  13313. },
  13314. {
  13315. name: "Godly",
  13316. height: math.unit(10000, "Ym")
  13317. },
  13318. {
  13319. name: "Beyond Godly",
  13320. height: math.unit(25, "multiverses")
  13321. },
  13322. ]
  13323. ))
  13324. characterMakers.push(() => makeCharacter(
  13325. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13326. {
  13327. feminine: {
  13328. height: math.unit(5, "feet"),
  13329. weight: math.unit(100, "lb"),
  13330. name: "Feminine",
  13331. image: {
  13332. source: "./media/characters/sammy-mouse/feminine.svg",
  13333. extra: 2526 / 2425,
  13334. bottom: 0.123
  13335. }
  13336. },
  13337. masculine: {
  13338. height: math.unit(5, "feet"),
  13339. weight: math.unit(100, "lb"),
  13340. name: "Masculine",
  13341. image: {
  13342. source: "./media/characters/sammy-mouse/masculine.svg",
  13343. extra: 2526 / 2425,
  13344. bottom: 0.123
  13345. }
  13346. },
  13347. },
  13348. [
  13349. {
  13350. name: "Micro",
  13351. height: math.unit(5, "inches")
  13352. },
  13353. {
  13354. name: "Normal",
  13355. height: math.unit(5, "feet"),
  13356. default: true
  13357. },
  13358. {
  13359. name: "Macro",
  13360. height: math.unit(60, "feet")
  13361. },
  13362. ]
  13363. ))
  13364. characterMakers.push(() => makeCharacter(
  13365. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13366. {
  13367. front: {
  13368. height: math.unit(4, "feet"),
  13369. weight: math.unit(50, "lb"),
  13370. name: "Front",
  13371. image: {
  13372. source: "./media/characters/kole/front.svg",
  13373. extra: 1423 / 1303,
  13374. bottom: 0.025
  13375. }
  13376. },
  13377. back: {
  13378. height: math.unit(4, "feet"),
  13379. weight: math.unit(50, "lb"),
  13380. name: "Back",
  13381. image: {
  13382. source: "./media/characters/kole/back.svg",
  13383. extra: 1426 / 1280,
  13384. bottom: 0.02
  13385. }
  13386. },
  13387. },
  13388. [
  13389. {
  13390. name: "Normal",
  13391. height: math.unit(4, "feet"),
  13392. default: true
  13393. },
  13394. ]
  13395. ))
  13396. characterMakers.push(() => makeCharacter(
  13397. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13398. {
  13399. front: {
  13400. height: math.unit(2.5, "feet"),
  13401. weight: math.unit(32, "lb"),
  13402. name: "Front",
  13403. image: {
  13404. source: "./media/characters/rufran/front.svg",
  13405. extra: 1313/885,
  13406. bottom: 94/1407
  13407. }
  13408. },
  13409. side: {
  13410. height: math.unit(2.5, "feet"),
  13411. weight: math.unit(32, "lb"),
  13412. name: "Side",
  13413. image: {
  13414. source: "./media/characters/rufran/side.svg",
  13415. extra: 1109/852,
  13416. bottom: 118/1227
  13417. }
  13418. },
  13419. back: {
  13420. height: math.unit(2.5, "feet"),
  13421. weight: math.unit(32, "lb"),
  13422. name: "Back",
  13423. image: {
  13424. source: "./media/characters/rufran/back.svg",
  13425. extra: 1280/878,
  13426. bottom: 131/1411
  13427. }
  13428. },
  13429. mouth: {
  13430. height: math.unit(1.13, "feet"),
  13431. name: "Mouth",
  13432. image: {
  13433. source: "./media/characters/rufran/mouth.svg"
  13434. }
  13435. },
  13436. foot: {
  13437. height: math.unit(1.33, "feet"),
  13438. name: "Foot",
  13439. image: {
  13440. source: "./media/characters/rufran/foot.svg"
  13441. }
  13442. },
  13443. koboldFront: {
  13444. height: math.unit(2 + 6 / 12, "feet"),
  13445. weight: math.unit(20, "lb"),
  13446. name: "Front (Kobold)",
  13447. image: {
  13448. source: "./media/characters/rufran/kobold-front.svg",
  13449. extra: 2041 / 1839,
  13450. bottom: 0.055
  13451. }
  13452. },
  13453. koboldBack: {
  13454. height: math.unit(2 + 6 / 12, "feet"),
  13455. weight: math.unit(20, "lb"),
  13456. name: "Back (Kobold)",
  13457. image: {
  13458. source: "./media/characters/rufran/kobold-back.svg",
  13459. extra: 2054 / 1839,
  13460. bottom: 0.01
  13461. }
  13462. },
  13463. koboldHand: {
  13464. height: math.unit(0.2166, "meters"),
  13465. name: "Hand (Kobold)",
  13466. image: {
  13467. source: "./media/characters/rufran/kobold-hand.svg"
  13468. }
  13469. },
  13470. koboldFoot: {
  13471. height: math.unit(0.185, "meters"),
  13472. name: "Foot (Kobold)",
  13473. image: {
  13474. source: "./media/characters/rufran/kobold-foot.svg"
  13475. }
  13476. },
  13477. },
  13478. [
  13479. {
  13480. name: "Micro",
  13481. height: math.unit(1, "inch")
  13482. },
  13483. {
  13484. name: "Normal",
  13485. height: math.unit(2 + 6 / 12, "feet"),
  13486. default: true
  13487. },
  13488. {
  13489. name: "Big",
  13490. height: math.unit(60, "feet")
  13491. },
  13492. {
  13493. name: "Macro",
  13494. height: math.unit(325, "feet")
  13495. },
  13496. ]
  13497. ))
  13498. characterMakers.push(() => makeCharacter(
  13499. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13500. {
  13501. front: {
  13502. height: math.unit(0.3, "meters"),
  13503. weight: math.unit(3.5, "kg"),
  13504. name: "Front",
  13505. image: {
  13506. source: "./media/characters/chip/front.svg",
  13507. extra: 748 / 674
  13508. }
  13509. },
  13510. },
  13511. [
  13512. {
  13513. name: "Micro",
  13514. height: math.unit(1, "inch"),
  13515. default: true
  13516. },
  13517. ]
  13518. ))
  13519. characterMakers.push(() => makeCharacter(
  13520. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13521. {
  13522. side: {
  13523. height: math.unit(2.3, "meters"),
  13524. weight: math.unit(3500, "lb"),
  13525. name: "Side",
  13526. image: {
  13527. source: "./media/characters/torvid/side.svg",
  13528. extra: 1972 / 722,
  13529. bottom: 0.035
  13530. }
  13531. },
  13532. },
  13533. [
  13534. {
  13535. name: "Normal",
  13536. height: math.unit(2.3, "meters"),
  13537. default: true
  13538. },
  13539. ]
  13540. ))
  13541. characterMakers.push(() => makeCharacter(
  13542. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13543. {
  13544. front: {
  13545. height: math.unit(2, "meters"),
  13546. weight: math.unit(150.5, "kg"),
  13547. name: "Front",
  13548. image: {
  13549. source: "./media/characters/susan/front.svg",
  13550. extra: 693 / 635,
  13551. bottom: 0.05
  13552. }
  13553. },
  13554. },
  13555. [
  13556. {
  13557. name: "Megamacro",
  13558. height: math.unit(505, "miles"),
  13559. default: true
  13560. },
  13561. ]
  13562. ))
  13563. characterMakers.push(() => makeCharacter(
  13564. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13565. {
  13566. front: {
  13567. height: math.unit(6, "feet"),
  13568. weight: math.unit(150, "lb"),
  13569. name: "Front",
  13570. image: {
  13571. source: "./media/characters/raindrops/front.svg",
  13572. extra: 2655 / 2461,
  13573. bottom: 49 / 2705
  13574. }
  13575. },
  13576. back: {
  13577. height: math.unit(6, "feet"),
  13578. weight: math.unit(150, "lb"),
  13579. name: "Back",
  13580. image: {
  13581. source: "./media/characters/raindrops/back.svg",
  13582. extra: 2574 / 2400,
  13583. bottom: 65 / 2634
  13584. }
  13585. },
  13586. },
  13587. [
  13588. {
  13589. name: "Micro",
  13590. height: math.unit(6, "inches")
  13591. },
  13592. {
  13593. name: "Normal",
  13594. height: math.unit(6 + 2 / 12, "feet")
  13595. },
  13596. {
  13597. name: "Macro",
  13598. height: math.unit(131, "feet"),
  13599. default: true
  13600. },
  13601. {
  13602. name: "Megamacro",
  13603. height: math.unit(15, "miles")
  13604. },
  13605. {
  13606. name: "Gigamacro",
  13607. height: math.unit(4000, "miles")
  13608. },
  13609. {
  13610. name: "Teramacro",
  13611. height: math.unit(315000, "miles")
  13612. },
  13613. ]
  13614. ))
  13615. characterMakers.push(() => makeCharacter(
  13616. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13617. {
  13618. front: {
  13619. height: math.unit(2.794, "meters"),
  13620. weight: math.unit(325, "kg"),
  13621. name: "Front",
  13622. image: {
  13623. source: "./media/characters/tezwa/front.svg",
  13624. extra: 2083 / 1906,
  13625. bottom: 0.031
  13626. }
  13627. },
  13628. foot: {
  13629. height: math.unit(0.687, "meters"),
  13630. name: "Foot",
  13631. image: {
  13632. source: "./media/characters/tezwa/foot.svg"
  13633. }
  13634. },
  13635. },
  13636. [
  13637. {
  13638. name: "Normal",
  13639. height: math.unit(9 + 2 / 12, "feet"),
  13640. default: true
  13641. },
  13642. ]
  13643. ))
  13644. characterMakers.push(() => makeCharacter(
  13645. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13646. {
  13647. front: {
  13648. height: math.unit(58, "feet"),
  13649. weight: math.unit(89000, "lb"),
  13650. name: "Front",
  13651. image: {
  13652. source: "./media/characters/typhus/front.svg",
  13653. extra: 816 / 800,
  13654. bottom: 0.065
  13655. }
  13656. },
  13657. },
  13658. [
  13659. {
  13660. name: "Macro",
  13661. height: math.unit(58, "feet"),
  13662. default: true
  13663. },
  13664. ]
  13665. ))
  13666. characterMakers.push(() => makeCharacter(
  13667. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13668. {
  13669. front: {
  13670. height: math.unit(12, "feet"),
  13671. weight: math.unit(6, "tonnes"),
  13672. name: "Front",
  13673. image: {
  13674. source: "./media/characters/lyra-von-wulf/front.svg",
  13675. extra: 1,
  13676. bottom: 0.10
  13677. }
  13678. },
  13679. frontMecha: {
  13680. height: math.unit(12, "feet"),
  13681. weight: math.unit(12, "tonnes"),
  13682. name: "Front (Mecha)",
  13683. image: {
  13684. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13685. extra: 1,
  13686. bottom: 0.042
  13687. }
  13688. },
  13689. maw: {
  13690. height: math.unit(2.2, "feet"),
  13691. name: "Maw",
  13692. image: {
  13693. source: "./media/characters/lyra-von-wulf/maw.svg"
  13694. }
  13695. },
  13696. },
  13697. [
  13698. {
  13699. name: "Normal",
  13700. height: math.unit(12, "feet"),
  13701. default: true
  13702. },
  13703. {
  13704. name: "Classic",
  13705. height: math.unit(50, "feet")
  13706. },
  13707. {
  13708. name: "Macro",
  13709. height: math.unit(500, "feet")
  13710. },
  13711. {
  13712. name: "Megamacro",
  13713. height: math.unit(1, "mile")
  13714. },
  13715. {
  13716. name: "Gigamacro",
  13717. height: math.unit(400, "miles")
  13718. },
  13719. {
  13720. name: "Teramacro",
  13721. height: math.unit(22000, "miles")
  13722. },
  13723. {
  13724. name: "Solarmacro",
  13725. height: math.unit(8600000, "miles")
  13726. },
  13727. {
  13728. name: "Galactic",
  13729. height: math.unit(1057000, "lightyears")
  13730. },
  13731. ]
  13732. ))
  13733. characterMakers.push(() => makeCharacter(
  13734. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13735. {
  13736. front: {
  13737. height: math.unit(6 + 10 / 12, "feet"),
  13738. weight: math.unit(150, "lb"),
  13739. name: "Front",
  13740. image: {
  13741. source: "./media/characters/dixon/front.svg",
  13742. extra: 3361 / 3209,
  13743. bottom: 0.01
  13744. }
  13745. },
  13746. },
  13747. [
  13748. {
  13749. name: "Normal",
  13750. height: math.unit(6 + 10 / 12, "feet"),
  13751. default: true
  13752. },
  13753. {
  13754. name: "Big",
  13755. height: math.unit(12, "meters")
  13756. },
  13757. {
  13758. name: "Macro",
  13759. height: math.unit(500, "meters")
  13760. },
  13761. {
  13762. name: "Megamacro",
  13763. height: math.unit(2, "km")
  13764. },
  13765. ]
  13766. ))
  13767. characterMakers.push(() => makeCharacter(
  13768. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13769. {
  13770. front: {
  13771. height: math.unit(185, "cm"),
  13772. weight: math.unit(68, "kg"),
  13773. name: "Front",
  13774. image: {
  13775. source: "./media/characters/kauko/front.svg",
  13776. extra: 1455 / 1421,
  13777. bottom: 0.03
  13778. }
  13779. },
  13780. back: {
  13781. height: math.unit(185, "cm"),
  13782. weight: math.unit(68, "kg"),
  13783. name: "Back",
  13784. image: {
  13785. source: "./media/characters/kauko/back.svg",
  13786. extra: 1455 / 1421,
  13787. bottom: 0.004
  13788. }
  13789. },
  13790. },
  13791. [
  13792. {
  13793. name: "Normal",
  13794. height: math.unit(185, "cm"),
  13795. default: true
  13796. },
  13797. ]
  13798. ))
  13799. characterMakers.push(() => makeCharacter(
  13800. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13801. {
  13802. front: {
  13803. height: math.unit(6, "feet"),
  13804. weight: math.unit(150, "kg"),
  13805. name: "Front",
  13806. image: {
  13807. source: "./media/characters/varg/front.svg",
  13808. extra: 1108 / 1018,
  13809. bottom: 0.0375
  13810. }
  13811. },
  13812. },
  13813. [
  13814. {
  13815. name: "Normal",
  13816. height: math.unit(5, "meters")
  13817. },
  13818. {
  13819. name: "Macro",
  13820. height: math.unit(200, "meters")
  13821. },
  13822. {
  13823. name: "Megamacro",
  13824. height: math.unit(20, "kilometers")
  13825. },
  13826. {
  13827. name: "True Size",
  13828. height: math.unit(211, "km"),
  13829. default: true
  13830. },
  13831. {
  13832. name: "Gigamacro",
  13833. height: math.unit(1000, "km")
  13834. },
  13835. {
  13836. name: "Gigamacro+",
  13837. height: math.unit(8000, "km")
  13838. },
  13839. {
  13840. name: "Teramacro",
  13841. height: math.unit(1000000, "km")
  13842. },
  13843. ]
  13844. ))
  13845. characterMakers.push(() => makeCharacter(
  13846. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13847. {
  13848. front: {
  13849. height: math.unit(7 + 7 / 12, "feet"),
  13850. weight: math.unit(267, "lb"),
  13851. name: "Front",
  13852. image: {
  13853. source: "./media/characters/dayza/front.svg",
  13854. extra: 1262 / 1200,
  13855. bottom: 0.035
  13856. }
  13857. },
  13858. side: {
  13859. height: math.unit(7 + 7 / 12, "feet"),
  13860. weight: math.unit(267, "lb"),
  13861. name: "Side",
  13862. image: {
  13863. source: "./media/characters/dayza/side.svg",
  13864. extra: 1295 / 1245,
  13865. bottom: 0.05
  13866. }
  13867. },
  13868. back: {
  13869. height: math.unit(7 + 7 / 12, "feet"),
  13870. weight: math.unit(267, "lb"),
  13871. name: "Back",
  13872. image: {
  13873. source: "./media/characters/dayza/back.svg",
  13874. extra: 1241 / 1170
  13875. }
  13876. },
  13877. },
  13878. [
  13879. {
  13880. name: "Normal",
  13881. height: math.unit(7 + 7 / 12, "feet"),
  13882. default: true
  13883. },
  13884. {
  13885. name: "Macro",
  13886. height: math.unit(155, "feet")
  13887. },
  13888. ]
  13889. ))
  13890. characterMakers.push(() => makeCharacter(
  13891. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13892. {
  13893. front: {
  13894. height: math.unit(6 + 5 / 12, "feet"),
  13895. weight: math.unit(160, "lb"),
  13896. name: "Front",
  13897. image: {
  13898. source: "./media/characters/xanthos/front.svg",
  13899. extra: 1,
  13900. bottom: 0.04
  13901. }
  13902. },
  13903. back: {
  13904. height: math.unit(6 + 5 / 12, "feet"),
  13905. weight: math.unit(160, "lb"),
  13906. name: "Back",
  13907. image: {
  13908. source: "./media/characters/xanthos/back.svg",
  13909. extra: 1,
  13910. bottom: 0.03
  13911. }
  13912. },
  13913. hand: {
  13914. height: math.unit(0.928, "feet"),
  13915. name: "Hand",
  13916. image: {
  13917. source: "./media/characters/xanthos/hand.svg"
  13918. }
  13919. },
  13920. foot: {
  13921. height: math.unit(1.286, "feet"),
  13922. name: "Foot",
  13923. image: {
  13924. source: "./media/characters/xanthos/foot.svg"
  13925. }
  13926. },
  13927. },
  13928. [
  13929. {
  13930. name: "Normal",
  13931. height: math.unit(6 + 5 / 12, "feet"),
  13932. default: true
  13933. },
  13934. {
  13935. name: "Normal+",
  13936. height: math.unit(6, "meters")
  13937. },
  13938. {
  13939. name: "Macro",
  13940. height: math.unit(40, "feet")
  13941. },
  13942. {
  13943. name: "Macro+",
  13944. height: math.unit(200, "meters")
  13945. },
  13946. {
  13947. name: "Megamacro",
  13948. height: math.unit(20, "km")
  13949. },
  13950. {
  13951. name: "Megamacro+",
  13952. height: math.unit(100, "km")
  13953. },
  13954. {
  13955. name: "Gigamacro",
  13956. height: math.unit(200, "megameters")
  13957. },
  13958. {
  13959. name: "Gigamacro+",
  13960. height: math.unit(1.5, "gigameters")
  13961. },
  13962. ]
  13963. ))
  13964. characterMakers.push(() => makeCharacter(
  13965. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13966. {
  13967. front: {
  13968. height: math.unit(6 + 3 / 12, "feet"),
  13969. weight: math.unit(215, "lb"),
  13970. name: "Front",
  13971. image: {
  13972. source: "./media/characters/grynn/front.svg",
  13973. extra: 4627 / 4209,
  13974. bottom: 0.047
  13975. }
  13976. },
  13977. },
  13978. [
  13979. {
  13980. name: "Micro",
  13981. height: math.unit(6, "inches")
  13982. },
  13983. {
  13984. name: "Normal",
  13985. height: math.unit(6 + 3 / 12, "feet"),
  13986. default: true
  13987. },
  13988. {
  13989. name: "Big",
  13990. height: math.unit(104, "feet")
  13991. },
  13992. {
  13993. name: "Macro",
  13994. height: math.unit(944, "feet")
  13995. },
  13996. {
  13997. name: "Macro+",
  13998. height: math.unit(9480, "feet")
  13999. },
  14000. {
  14001. name: "Megamacro",
  14002. height: math.unit(78752, "feet")
  14003. },
  14004. {
  14005. name: "Megamacro+",
  14006. height: math.unit(630128, "feet")
  14007. },
  14008. {
  14009. name: "Megamacro++",
  14010. height: math.unit(3150695, "feet")
  14011. },
  14012. ]
  14013. ))
  14014. characterMakers.push(() => makeCharacter(
  14015. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14016. {
  14017. front: {
  14018. height: math.unit(7 + 5 / 12, "feet"),
  14019. weight: math.unit(450, "lb"),
  14020. name: "Front",
  14021. image: {
  14022. source: "./media/characters/mocha-aura/front.svg",
  14023. extra: 1907 / 1817,
  14024. bottom: 0.04
  14025. }
  14026. },
  14027. back: {
  14028. height: math.unit(7 + 5 / 12, "feet"),
  14029. weight: math.unit(450, "lb"),
  14030. name: "Back",
  14031. image: {
  14032. source: "./media/characters/mocha-aura/back.svg",
  14033. extra: 1900 / 1825,
  14034. bottom: 0.045
  14035. }
  14036. },
  14037. },
  14038. [
  14039. {
  14040. name: "Nano",
  14041. height: math.unit(1, "nm")
  14042. },
  14043. {
  14044. name: "Megamicro",
  14045. height: math.unit(1, "mm")
  14046. },
  14047. {
  14048. name: "Micro",
  14049. height: math.unit(3, "inches")
  14050. },
  14051. {
  14052. name: "Normal",
  14053. height: math.unit(7 + 5 / 12, "feet"),
  14054. default: true
  14055. },
  14056. {
  14057. name: "Macro",
  14058. height: math.unit(30, "feet")
  14059. },
  14060. {
  14061. name: "Megamacro",
  14062. height: math.unit(3500, "feet")
  14063. },
  14064. {
  14065. name: "Teramacro",
  14066. height: math.unit(500000, "miles")
  14067. },
  14068. {
  14069. name: "Petamacro",
  14070. height: math.unit(50000000000000000, "parsecs")
  14071. },
  14072. ]
  14073. ))
  14074. characterMakers.push(() => makeCharacter(
  14075. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14076. {
  14077. front: {
  14078. height: math.unit(6, "feet"),
  14079. weight: math.unit(150, "lb"),
  14080. name: "Front",
  14081. image: {
  14082. source: "./media/characters/ilisha-devya/front.svg",
  14083. extra: 1053/1049,
  14084. bottom: 270/1323
  14085. }
  14086. },
  14087. back: {
  14088. height: math.unit(6, "feet"),
  14089. weight: math.unit(150, "lb"),
  14090. name: "Back",
  14091. image: {
  14092. source: "./media/characters/ilisha-devya/back.svg",
  14093. extra: 1131/1128,
  14094. bottom: 39/1170
  14095. }
  14096. },
  14097. },
  14098. [
  14099. {
  14100. name: "Macro",
  14101. height: math.unit(500, "feet"),
  14102. default: true
  14103. },
  14104. {
  14105. name: "Megamacro",
  14106. height: math.unit(10, "miles")
  14107. },
  14108. {
  14109. name: "Gigamacro",
  14110. height: math.unit(100000, "miles")
  14111. },
  14112. {
  14113. name: "Examacro",
  14114. height: math.unit(1e9, "lightyears")
  14115. },
  14116. {
  14117. name: "Omniversal",
  14118. height: math.unit(1e33, "lightyears")
  14119. },
  14120. {
  14121. name: "Beyond Infinite",
  14122. height: math.unit(1e100, "lightyears")
  14123. },
  14124. ]
  14125. ))
  14126. characterMakers.push(() => makeCharacter(
  14127. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14128. {
  14129. Side: {
  14130. height: math.unit(6, "feet"),
  14131. weight: math.unit(150, "lb"),
  14132. name: "Side",
  14133. image: {
  14134. source: "./media/characters/mira/side.svg",
  14135. extra: 900 / 799,
  14136. bottom: 0.02
  14137. }
  14138. },
  14139. },
  14140. [
  14141. {
  14142. name: "Human Size",
  14143. height: math.unit(6, "feet")
  14144. },
  14145. {
  14146. name: "Macro",
  14147. height: math.unit(100, "feet"),
  14148. default: true
  14149. },
  14150. {
  14151. name: "Megamacro",
  14152. height: math.unit(10, "miles")
  14153. },
  14154. {
  14155. name: "Gigamacro",
  14156. height: math.unit(25000, "miles")
  14157. },
  14158. {
  14159. name: "Teramacro",
  14160. height: math.unit(300, "AU")
  14161. },
  14162. {
  14163. name: "Full Size",
  14164. height: math.unit(4.5e10, "lightyears")
  14165. },
  14166. ]
  14167. ))
  14168. characterMakers.push(() => makeCharacter(
  14169. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14170. {
  14171. front: {
  14172. height: math.unit(6, "feet"),
  14173. weight: math.unit(150, "lb"),
  14174. name: "Front",
  14175. image: {
  14176. source: "./media/characters/holly/front.svg",
  14177. extra: 639 / 606
  14178. }
  14179. },
  14180. back: {
  14181. height: math.unit(6, "feet"),
  14182. weight: math.unit(150, "lb"),
  14183. name: "Back",
  14184. image: {
  14185. source: "./media/characters/holly/back.svg",
  14186. extra: 623 / 598
  14187. }
  14188. },
  14189. frontWorking: {
  14190. height: math.unit(6, "feet"),
  14191. weight: math.unit(150, "lb"),
  14192. name: "Front (Working)",
  14193. image: {
  14194. source: "./media/characters/holly/front-working.svg",
  14195. extra: 607 / 577,
  14196. bottom: 0.048
  14197. }
  14198. },
  14199. },
  14200. [
  14201. {
  14202. name: "Normal",
  14203. height: math.unit(12 + 3 / 12, "feet"),
  14204. default: true
  14205. },
  14206. ]
  14207. ))
  14208. characterMakers.push(() => makeCharacter(
  14209. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14210. {
  14211. front: {
  14212. height: math.unit(6, "feet"),
  14213. weight: math.unit(150, "lb"),
  14214. name: "Front",
  14215. image: {
  14216. source: "./media/characters/porter/front.svg",
  14217. extra: 1,
  14218. bottom: 0.01
  14219. }
  14220. },
  14221. frontRobes: {
  14222. height: math.unit(6, "feet"),
  14223. weight: math.unit(150, "lb"),
  14224. name: "Front (Robes)",
  14225. image: {
  14226. source: "./media/characters/porter/front-robes.svg",
  14227. extra: 1.01,
  14228. bottom: 0.01
  14229. }
  14230. },
  14231. },
  14232. [
  14233. {
  14234. name: "Normal",
  14235. height: math.unit(11 + 9 / 12, "feet"),
  14236. default: true
  14237. },
  14238. ]
  14239. ))
  14240. characterMakers.push(() => makeCharacter(
  14241. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14242. {
  14243. legendary: {
  14244. height: math.unit(6, "feet"),
  14245. weight: math.unit(150, "lb"),
  14246. name: "Legendary",
  14247. image: {
  14248. source: "./media/characters/lucy/legendary.svg",
  14249. extra: 1355 / 1100,
  14250. bottom: 0.045
  14251. }
  14252. },
  14253. },
  14254. [
  14255. {
  14256. name: "Legendary",
  14257. height: math.unit(86882 * 2, "miles"),
  14258. default: true
  14259. },
  14260. ]
  14261. ))
  14262. characterMakers.push(() => makeCharacter(
  14263. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14264. {
  14265. front: {
  14266. height: math.unit(6, "feet"),
  14267. weight: math.unit(150, "lb"),
  14268. name: "Front",
  14269. image: {
  14270. source: "./media/characters/drusilla/front.svg",
  14271. extra: 678 / 635,
  14272. bottom: 0.03
  14273. }
  14274. },
  14275. back: {
  14276. height: math.unit(6, "feet"),
  14277. weight: math.unit(150, "lb"),
  14278. name: "Back",
  14279. image: {
  14280. source: "./media/characters/drusilla/back.svg",
  14281. extra: 678 / 635,
  14282. bottom: 0.005
  14283. }
  14284. },
  14285. },
  14286. [
  14287. {
  14288. name: "Macro",
  14289. height: math.unit(100, "feet")
  14290. },
  14291. {
  14292. name: "Canon Height",
  14293. height: math.unit(2000, "feet"),
  14294. default: true
  14295. },
  14296. ]
  14297. ))
  14298. characterMakers.push(() => makeCharacter(
  14299. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14300. {
  14301. front: {
  14302. height: math.unit(6, "feet"),
  14303. weight: math.unit(180, "lb"),
  14304. name: "Front",
  14305. image: {
  14306. source: "./media/characters/renard-thatch/front.svg",
  14307. extra: 2411 / 2275,
  14308. bottom: 0.01
  14309. }
  14310. },
  14311. frontPosing: {
  14312. height: math.unit(6, "feet"),
  14313. weight: math.unit(180, "lb"),
  14314. name: "Front (Posing)",
  14315. image: {
  14316. source: "./media/characters/renard-thatch/front-posing.svg",
  14317. extra: 2381 / 2261,
  14318. bottom: 0.01
  14319. }
  14320. },
  14321. back: {
  14322. height: math.unit(6, "feet"),
  14323. weight: math.unit(180, "lb"),
  14324. name: "Back",
  14325. image: {
  14326. source: "./media/characters/renard-thatch/back.svg",
  14327. extra: 2428 / 2288
  14328. }
  14329. },
  14330. },
  14331. [
  14332. {
  14333. name: "Micro",
  14334. height: math.unit(3, "inches")
  14335. },
  14336. {
  14337. name: "Default",
  14338. height: math.unit(6, "feet"),
  14339. default: true
  14340. },
  14341. {
  14342. name: "Macro",
  14343. height: math.unit(75, "feet")
  14344. },
  14345. ]
  14346. ))
  14347. characterMakers.push(() => makeCharacter(
  14348. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14349. {
  14350. front: {
  14351. height: math.unit(1450, "feet"),
  14352. weight: math.unit(1.21e6, "tons"),
  14353. name: "Front",
  14354. image: {
  14355. source: "./media/characters/sekvra/front.svg",
  14356. extra: 1193/1190,
  14357. bottom: 78/1271
  14358. }
  14359. },
  14360. side: {
  14361. height: math.unit(1450, "feet"),
  14362. weight: math.unit(1.21e6, "tons"),
  14363. name: "Side",
  14364. image: {
  14365. source: "./media/characters/sekvra/side.svg",
  14366. extra: 1193/1190,
  14367. bottom: 52/1245
  14368. }
  14369. },
  14370. back: {
  14371. height: math.unit(1450, "feet"),
  14372. weight: math.unit(1.21e6, "tons"),
  14373. name: "Back",
  14374. image: {
  14375. source: "./media/characters/sekvra/back.svg",
  14376. extra: 1219/1216,
  14377. bottom: 21/1240
  14378. }
  14379. },
  14380. frontClothed: {
  14381. height: math.unit(1450, "feet"),
  14382. weight: math.unit(1.21e6, "tons"),
  14383. name: "Front (Clothed)",
  14384. image: {
  14385. source: "./media/characters/sekvra/front-clothed.svg",
  14386. extra: 1192/1189,
  14387. bottom: 79/1271
  14388. }
  14389. },
  14390. },
  14391. [
  14392. {
  14393. name: "Macro",
  14394. height: math.unit(1450, "feet"),
  14395. default: true
  14396. },
  14397. {
  14398. name: "Megamacro",
  14399. height: math.unit(15000, "feet")
  14400. },
  14401. ]
  14402. ))
  14403. characterMakers.push(() => makeCharacter(
  14404. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14405. {
  14406. front: {
  14407. height: math.unit(6, "feet"),
  14408. weight: math.unit(150, "lb"),
  14409. name: "Front",
  14410. image: {
  14411. source: "./media/characters/carmine/front.svg",
  14412. extra: 1,
  14413. bottom: 0.035
  14414. }
  14415. },
  14416. frontArmor: {
  14417. height: math.unit(6, "feet"),
  14418. weight: math.unit(150, "lb"),
  14419. name: "Front (Armor)",
  14420. image: {
  14421. source: "./media/characters/carmine/front-armor.svg",
  14422. extra: 1,
  14423. bottom: 0.035
  14424. }
  14425. },
  14426. },
  14427. [
  14428. {
  14429. name: "Large",
  14430. height: math.unit(1, "mile")
  14431. },
  14432. {
  14433. name: "Huge",
  14434. height: math.unit(40, "miles"),
  14435. default: true
  14436. },
  14437. {
  14438. name: "Colossal",
  14439. height: math.unit(2500, "miles")
  14440. },
  14441. ]
  14442. ))
  14443. characterMakers.push(() => makeCharacter(
  14444. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14445. {
  14446. front: {
  14447. height: math.unit(6, "feet"),
  14448. weight: math.unit(150, "lb"),
  14449. name: "Front",
  14450. image: {
  14451. source: "./media/characters/elyssia/front.svg",
  14452. extra: 2201 / 2035,
  14453. bottom: 0.05
  14454. }
  14455. },
  14456. frontClothed: {
  14457. height: math.unit(6, "feet"),
  14458. weight: math.unit(150, "lb"),
  14459. name: "Front (Clothed)",
  14460. image: {
  14461. source: "./media/characters/elyssia/front-clothed.svg",
  14462. extra: 2201 / 2035,
  14463. bottom: 0.05
  14464. }
  14465. },
  14466. back: {
  14467. height: math.unit(6, "feet"),
  14468. weight: math.unit(150, "lb"),
  14469. name: "Back",
  14470. image: {
  14471. source: "./media/characters/elyssia/back.svg",
  14472. extra: 2201 / 2035,
  14473. bottom: 0.013
  14474. }
  14475. },
  14476. },
  14477. [
  14478. {
  14479. name: "Smaller",
  14480. height: math.unit(150, "feet")
  14481. },
  14482. {
  14483. name: "Standard",
  14484. height: math.unit(1400, "feet"),
  14485. default: true
  14486. },
  14487. {
  14488. name: "Distracted",
  14489. height: math.unit(15000, "feet")
  14490. },
  14491. ]
  14492. ))
  14493. characterMakers.push(() => makeCharacter(
  14494. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14495. {
  14496. front: {
  14497. height: math.unit(7 + 4/12, "feet"),
  14498. weight: math.unit(690, "lb"),
  14499. name: "Front",
  14500. image: {
  14501. source: "./media/characters/geno-maxwell/front.svg",
  14502. extra: 984/856,
  14503. bottom: 87/1071
  14504. }
  14505. },
  14506. back: {
  14507. height: math.unit(7 + 4/12, "feet"),
  14508. weight: math.unit(690, "lb"),
  14509. name: "Back",
  14510. image: {
  14511. source: "./media/characters/geno-maxwell/back.svg",
  14512. extra: 981/854,
  14513. bottom: 57/1038
  14514. }
  14515. },
  14516. frontCostume: {
  14517. height: math.unit(7 + 4/12, "feet"),
  14518. weight: math.unit(690, "lb"),
  14519. name: "Front (Costume)",
  14520. image: {
  14521. source: "./media/characters/geno-maxwell/front-costume.svg",
  14522. extra: 984/856,
  14523. bottom: 87/1071
  14524. }
  14525. },
  14526. backcostume: {
  14527. height: math.unit(7 + 4/12, "feet"),
  14528. weight: math.unit(690, "lb"),
  14529. name: "Back (Costume)",
  14530. image: {
  14531. source: "./media/characters/geno-maxwell/back-costume.svg",
  14532. extra: 981/854,
  14533. bottom: 57/1038
  14534. }
  14535. },
  14536. },
  14537. [
  14538. {
  14539. name: "Micro",
  14540. height: math.unit(3, "inches")
  14541. },
  14542. {
  14543. name: "Normal",
  14544. height: math.unit(7 + 4 / 12, "feet"),
  14545. default: true
  14546. },
  14547. {
  14548. name: "Macro",
  14549. height: math.unit(220, "feet")
  14550. },
  14551. {
  14552. name: "Megamacro",
  14553. height: math.unit(11, "miles")
  14554. },
  14555. ]
  14556. ))
  14557. characterMakers.push(() => makeCharacter(
  14558. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14559. {
  14560. front: {
  14561. height: math.unit(7 + 4/12, "feet"),
  14562. weight: math.unit(750, "lb"),
  14563. name: "Front",
  14564. image: {
  14565. source: "./media/characters/regena-maxwell/front.svg",
  14566. extra: 984/856,
  14567. bottom: 87/1071
  14568. }
  14569. },
  14570. back: {
  14571. height: math.unit(7 + 4/12, "feet"),
  14572. weight: math.unit(750, "lb"),
  14573. name: "Back",
  14574. image: {
  14575. source: "./media/characters/regena-maxwell/back.svg",
  14576. extra: 981/854,
  14577. bottom: 57/1038
  14578. }
  14579. },
  14580. frontCostume: {
  14581. height: math.unit(7 + 4/12, "feet"),
  14582. weight: math.unit(750, "lb"),
  14583. name: "Front (Costume)",
  14584. image: {
  14585. source: "./media/characters/regena-maxwell/front-costume.svg",
  14586. extra: 984/856,
  14587. bottom: 87/1071
  14588. }
  14589. },
  14590. backcostume: {
  14591. height: math.unit(7 + 4/12, "feet"),
  14592. weight: math.unit(750, "lb"),
  14593. name: "Back (Costume)",
  14594. image: {
  14595. source: "./media/characters/regena-maxwell/back-costume.svg",
  14596. extra: 981/854,
  14597. bottom: 57/1038
  14598. }
  14599. },
  14600. },
  14601. [
  14602. {
  14603. name: "Normal",
  14604. height: math.unit(7 + 4 / 12, "feet"),
  14605. default: true
  14606. },
  14607. {
  14608. name: "Macro",
  14609. height: math.unit(220, "feet")
  14610. },
  14611. {
  14612. name: "Megamacro",
  14613. height: math.unit(11, "miles")
  14614. },
  14615. ]
  14616. ))
  14617. characterMakers.push(() => makeCharacter(
  14618. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14619. {
  14620. front: {
  14621. height: math.unit(6, "feet"),
  14622. weight: math.unit(150, "lb"),
  14623. name: "Front",
  14624. image: {
  14625. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14626. extra: 860 / 690,
  14627. bottom: 0.03
  14628. }
  14629. },
  14630. },
  14631. [
  14632. {
  14633. name: "Normal",
  14634. height: math.unit(1.7, "meters"),
  14635. default: true
  14636. },
  14637. ]
  14638. ))
  14639. characterMakers.push(() => makeCharacter(
  14640. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14641. {
  14642. front: {
  14643. height: math.unit(6, "feet"),
  14644. weight: math.unit(150, "lb"),
  14645. name: "Front",
  14646. image: {
  14647. source: "./media/characters/quilly/front.svg",
  14648. extra: 890 / 776
  14649. }
  14650. },
  14651. },
  14652. [
  14653. {
  14654. name: "Gigamacro",
  14655. height: math.unit(404090, "miles"),
  14656. default: true
  14657. },
  14658. ]
  14659. ))
  14660. characterMakers.push(() => makeCharacter(
  14661. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14662. {
  14663. front: {
  14664. height: math.unit(7 + 8 / 12, "feet"),
  14665. weight: math.unit(350, "lb"),
  14666. name: "Front",
  14667. image: {
  14668. source: "./media/characters/tempest/front.svg",
  14669. extra: 1175 / 1086,
  14670. bottom: 0.02
  14671. }
  14672. },
  14673. },
  14674. [
  14675. {
  14676. name: "Normal",
  14677. height: math.unit(7 + 8 / 12, "feet"),
  14678. default: true
  14679. },
  14680. ]
  14681. ))
  14682. characterMakers.push(() => makeCharacter(
  14683. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14684. {
  14685. side: {
  14686. height: math.unit(4 + 5 / 12, "feet"),
  14687. weight: math.unit(80, "lb"),
  14688. name: "Side",
  14689. image: {
  14690. source: "./media/characters/rodger/side.svg",
  14691. extra: 1235 / 1118
  14692. }
  14693. },
  14694. },
  14695. [
  14696. {
  14697. name: "Micro",
  14698. height: math.unit(1, "inch")
  14699. },
  14700. {
  14701. name: "Normal",
  14702. height: math.unit(4 + 5 / 12, "feet"),
  14703. default: true
  14704. },
  14705. {
  14706. name: "Macro",
  14707. height: math.unit(120, "feet")
  14708. },
  14709. ]
  14710. ))
  14711. characterMakers.push(() => makeCharacter(
  14712. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14713. {
  14714. front: {
  14715. height: math.unit(6, "feet"),
  14716. weight: math.unit(150, "lb"),
  14717. name: "Front",
  14718. image: {
  14719. source: "./media/characters/danyel/front.svg",
  14720. extra: 1185 / 1123,
  14721. bottom: 0.05
  14722. }
  14723. },
  14724. },
  14725. [
  14726. {
  14727. name: "Shrunken",
  14728. height: math.unit(0.5, "mm")
  14729. },
  14730. {
  14731. name: "Micro",
  14732. height: math.unit(1, "mm"),
  14733. default: true
  14734. },
  14735. {
  14736. name: "Upsized",
  14737. height: math.unit(5 + 5 / 12, "feet")
  14738. },
  14739. ]
  14740. ))
  14741. characterMakers.push(() => makeCharacter(
  14742. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14743. {
  14744. front: {
  14745. height: math.unit(5 + 6 / 12, "feet"),
  14746. weight: math.unit(200, "lb"),
  14747. name: "Front",
  14748. image: {
  14749. source: "./media/characters/vivian-bijoux/front.svg",
  14750. extra: 1217/1209,
  14751. bottom: 76/1293
  14752. }
  14753. },
  14754. back: {
  14755. height: math.unit(5 + 6 / 12, "feet"),
  14756. weight: math.unit(200, "lb"),
  14757. name: "Back",
  14758. image: {
  14759. source: "./media/characters/vivian-bijoux/back.svg",
  14760. extra: 1214/1208,
  14761. bottom: 51/1265
  14762. }
  14763. },
  14764. dressed: {
  14765. height: math.unit(5 + 6 / 12, "feet"),
  14766. weight: math.unit(200, "lb"),
  14767. name: "Dressed",
  14768. image: {
  14769. source: "./media/characters/vivian-bijoux/dressed.svg",
  14770. extra: 1217/1209,
  14771. bottom: 76/1293
  14772. }
  14773. },
  14774. },
  14775. [
  14776. {
  14777. name: "Normal",
  14778. height: math.unit(5 + 6 / 12, "feet"),
  14779. default: true
  14780. },
  14781. {
  14782. name: "Bad Dream",
  14783. height: math.unit(500, "feet")
  14784. },
  14785. {
  14786. name: "Nightmare",
  14787. height: math.unit(500, "miles")
  14788. },
  14789. ]
  14790. ))
  14791. characterMakers.push(() => makeCharacter(
  14792. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14793. {
  14794. front: {
  14795. height: math.unit(6 + 1 / 12, "feet"),
  14796. weight: math.unit(260, "lb"),
  14797. name: "Front",
  14798. image: {
  14799. source: "./media/characters/zeta/front.svg",
  14800. extra: 1968 / 1889,
  14801. bottom: 0.06
  14802. }
  14803. },
  14804. back: {
  14805. height: math.unit(6 + 1 / 12, "feet"),
  14806. weight: math.unit(260, "lb"),
  14807. name: "Back",
  14808. image: {
  14809. source: "./media/characters/zeta/back.svg",
  14810. extra: 1944 / 1858,
  14811. bottom: 0.03
  14812. }
  14813. },
  14814. hand: {
  14815. height: math.unit(1.112, "feet"),
  14816. name: "Hand",
  14817. image: {
  14818. source: "./media/characters/zeta/hand.svg"
  14819. }
  14820. },
  14821. foot: {
  14822. height: math.unit(1.48, "feet"),
  14823. name: "Foot",
  14824. image: {
  14825. source: "./media/characters/zeta/foot.svg"
  14826. }
  14827. },
  14828. },
  14829. [
  14830. {
  14831. name: "Micro",
  14832. height: math.unit(6, "inches")
  14833. },
  14834. {
  14835. name: "Normal",
  14836. height: math.unit(6 + 1 / 12, "feet"),
  14837. default: true
  14838. },
  14839. {
  14840. name: "Macro",
  14841. height: math.unit(20, "feet")
  14842. },
  14843. ]
  14844. ))
  14845. characterMakers.push(() => makeCharacter(
  14846. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14847. {
  14848. front: {
  14849. height: math.unit(6, "feet"),
  14850. weight: math.unit(150, "lb"),
  14851. name: "Front",
  14852. image: {
  14853. source: "./media/characters/jamie-larsen/front.svg",
  14854. extra: 962 / 933,
  14855. bottom: 0.02
  14856. }
  14857. },
  14858. back: {
  14859. height: math.unit(6, "feet"),
  14860. weight: math.unit(150, "lb"),
  14861. name: "Back",
  14862. image: {
  14863. source: "./media/characters/jamie-larsen/back.svg",
  14864. extra: 997 / 946
  14865. }
  14866. },
  14867. },
  14868. [
  14869. {
  14870. name: "Macro",
  14871. height: math.unit(28 + 7 / 12, "feet"),
  14872. default: true
  14873. },
  14874. {
  14875. name: "Macro+",
  14876. height: math.unit(180, "feet")
  14877. },
  14878. {
  14879. name: "Megamacro",
  14880. height: math.unit(10, "miles")
  14881. },
  14882. {
  14883. name: "Gigamacro",
  14884. height: math.unit(200000, "miles")
  14885. },
  14886. ]
  14887. ))
  14888. characterMakers.push(() => makeCharacter(
  14889. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14890. {
  14891. front: {
  14892. height: math.unit(6, "feet"),
  14893. weight: math.unit(120, "lb"),
  14894. name: "Front",
  14895. image: {
  14896. source: "./media/characters/vance/front.svg",
  14897. extra: 1980 / 1890,
  14898. bottom: 0.09
  14899. }
  14900. },
  14901. back: {
  14902. height: math.unit(6, "feet"),
  14903. weight: math.unit(120, "lb"),
  14904. name: "Back",
  14905. image: {
  14906. source: "./media/characters/vance/back.svg",
  14907. extra: 2081 / 1994,
  14908. bottom: 0.014
  14909. }
  14910. },
  14911. hand: {
  14912. height: math.unit(0.88, "feet"),
  14913. name: "Hand",
  14914. image: {
  14915. source: "./media/characters/vance/hand.svg"
  14916. }
  14917. },
  14918. foot: {
  14919. height: math.unit(0.64, "feet"),
  14920. name: "Foot",
  14921. image: {
  14922. source: "./media/characters/vance/foot.svg"
  14923. }
  14924. },
  14925. },
  14926. [
  14927. {
  14928. name: "Small",
  14929. height: math.unit(90, "feet"),
  14930. default: true
  14931. },
  14932. {
  14933. name: "Macro",
  14934. height: math.unit(100, "meters")
  14935. },
  14936. {
  14937. name: "Megamacro",
  14938. height: math.unit(15, "miles")
  14939. },
  14940. ]
  14941. ))
  14942. characterMakers.push(() => makeCharacter(
  14943. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14944. {
  14945. front: {
  14946. height: math.unit(6, "feet"),
  14947. weight: math.unit(180, "lb"),
  14948. name: "Front",
  14949. image: {
  14950. source: "./media/characters/xochitl/front.svg",
  14951. extra: 2297 / 2261,
  14952. bottom: 0.065
  14953. }
  14954. },
  14955. back: {
  14956. height: math.unit(6, "feet"),
  14957. weight: math.unit(180, "lb"),
  14958. name: "Back",
  14959. image: {
  14960. source: "./media/characters/xochitl/back.svg",
  14961. extra: 2386 / 2354,
  14962. bottom: 0.01
  14963. }
  14964. },
  14965. foot: {
  14966. height: math.unit(6 / 5 * 1.15, "feet"),
  14967. weight: math.unit(150, "lb"),
  14968. name: "Foot",
  14969. image: {
  14970. source: "./media/characters/xochitl/foot.svg"
  14971. }
  14972. },
  14973. },
  14974. [
  14975. {
  14976. name: "Macro",
  14977. height: math.unit(80, "feet")
  14978. },
  14979. {
  14980. name: "Macro+",
  14981. height: math.unit(400, "feet"),
  14982. default: true
  14983. },
  14984. {
  14985. name: "Gigamacro",
  14986. height: math.unit(80000, "miles")
  14987. },
  14988. {
  14989. name: "Gigamacro+",
  14990. height: math.unit(400000, "miles")
  14991. },
  14992. {
  14993. name: "Teramacro",
  14994. height: math.unit(300, "AU")
  14995. },
  14996. ]
  14997. ))
  14998. characterMakers.push(() => makeCharacter(
  14999. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15000. {
  15001. front: {
  15002. height: math.unit(6, "feet"),
  15003. weight: math.unit(150, "lb"),
  15004. name: "Front",
  15005. image: {
  15006. source: "./media/characters/vincent/front.svg",
  15007. extra: 1130 / 1080,
  15008. bottom: 0.055
  15009. }
  15010. },
  15011. beak: {
  15012. height: math.unit(6 * 0.1, "feet"),
  15013. name: "Beak",
  15014. image: {
  15015. source: "./media/characters/vincent/beak.svg"
  15016. }
  15017. },
  15018. hand: {
  15019. height: math.unit(6 * 0.85, "feet"),
  15020. weight: math.unit(150, "lb"),
  15021. name: "Hand",
  15022. image: {
  15023. source: "./media/characters/vincent/hand.svg"
  15024. }
  15025. },
  15026. foot: {
  15027. height: math.unit(6 * 0.19, "feet"),
  15028. weight: math.unit(150, "lb"),
  15029. name: "Foot",
  15030. image: {
  15031. source: "./media/characters/vincent/foot.svg"
  15032. }
  15033. },
  15034. },
  15035. [
  15036. {
  15037. name: "Base",
  15038. height: math.unit(6 + 5 / 12, "feet"),
  15039. default: true
  15040. },
  15041. {
  15042. name: "Macro",
  15043. height: math.unit(300, "feet")
  15044. },
  15045. {
  15046. name: "Megamacro",
  15047. height: math.unit(2, "miles")
  15048. },
  15049. {
  15050. name: "Gigamacro",
  15051. height: math.unit(1000, "miles")
  15052. },
  15053. ]
  15054. ))
  15055. characterMakers.push(() => makeCharacter(
  15056. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15057. {
  15058. front: {
  15059. height: math.unit(2, "meters"),
  15060. weight: math.unit(500, "kg"),
  15061. name: "Front",
  15062. image: {
  15063. source: "./media/characters/coatl/front.svg",
  15064. extra: 3948 / 3500,
  15065. bottom: 0.082
  15066. }
  15067. },
  15068. },
  15069. [
  15070. {
  15071. name: "Normal",
  15072. height: math.unit(4, "meters")
  15073. },
  15074. {
  15075. name: "Macro",
  15076. height: math.unit(100, "meters"),
  15077. default: true
  15078. },
  15079. {
  15080. name: "Macro+",
  15081. height: math.unit(300, "meters")
  15082. },
  15083. {
  15084. name: "Megamacro",
  15085. height: math.unit(3, "gigameters")
  15086. },
  15087. {
  15088. name: "Megamacro+",
  15089. height: math.unit(300, "terameters")
  15090. },
  15091. {
  15092. name: "Megamacro++",
  15093. height: math.unit(3, "lightyears")
  15094. },
  15095. ]
  15096. ))
  15097. characterMakers.push(() => makeCharacter(
  15098. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15099. {
  15100. front: {
  15101. height: math.unit(6, "feet"),
  15102. weight: math.unit(50, "kg"),
  15103. name: "front",
  15104. image: {
  15105. source: "./media/characters/shiroryu/front.svg",
  15106. extra: 1990 / 1935
  15107. }
  15108. },
  15109. },
  15110. [
  15111. {
  15112. name: "Mortal Mingling",
  15113. height: math.unit(3, "meters")
  15114. },
  15115. {
  15116. name: "Kaiju-ish",
  15117. height: math.unit(250, "meters")
  15118. },
  15119. {
  15120. name: "Somewhat Godly",
  15121. height: math.unit(400, "km"),
  15122. default: true
  15123. },
  15124. {
  15125. name: "Planetary",
  15126. height: math.unit(300, "megameters")
  15127. },
  15128. {
  15129. name: "Galaxy-dwarfing",
  15130. height: math.unit(450, "kiloparsecs")
  15131. },
  15132. {
  15133. name: "Universe Eater",
  15134. height: math.unit(150, "gigaparsecs")
  15135. },
  15136. {
  15137. name: "Almost Immeasurable",
  15138. height: math.unit(1.3e266, "yottaparsecs")
  15139. },
  15140. ]
  15141. ))
  15142. characterMakers.push(() => makeCharacter(
  15143. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15144. {
  15145. front: {
  15146. height: math.unit(6, "feet"),
  15147. weight: math.unit(150, "lb"),
  15148. name: "Front",
  15149. image: {
  15150. source: "./media/characters/umeko/front.svg",
  15151. extra: 1,
  15152. bottom: 0.019
  15153. }
  15154. },
  15155. frontArmored: {
  15156. height: math.unit(6, "feet"),
  15157. weight: math.unit(150, "lb"),
  15158. name: "Front (Armored)",
  15159. image: {
  15160. source: "./media/characters/umeko/front-armored.svg",
  15161. extra: 1,
  15162. bottom: 0.021
  15163. }
  15164. },
  15165. },
  15166. [
  15167. {
  15168. name: "Macro",
  15169. height: math.unit(220, "feet"),
  15170. default: true
  15171. },
  15172. {
  15173. name: "Guardian Dragon",
  15174. height: math.unit(50, "miles")
  15175. },
  15176. {
  15177. name: "Cosmic",
  15178. height: math.unit(800000, "miles")
  15179. },
  15180. ]
  15181. ))
  15182. characterMakers.push(() => makeCharacter(
  15183. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15184. {
  15185. front: {
  15186. height: math.unit(6, "feet"),
  15187. weight: math.unit(150, "lb"),
  15188. name: "Front",
  15189. image: {
  15190. source: "./media/characters/cassidy/front.svg",
  15191. extra: 810/808,
  15192. bottom: 41/851
  15193. }
  15194. },
  15195. },
  15196. [
  15197. {
  15198. name: "Canon Height",
  15199. height: math.unit(120, "feet"),
  15200. default: true
  15201. },
  15202. {
  15203. name: "Macro+",
  15204. height: math.unit(400, "feet")
  15205. },
  15206. {
  15207. name: "Macro++",
  15208. height: math.unit(4000, "feet")
  15209. },
  15210. {
  15211. name: "Megamacro",
  15212. height: math.unit(3, "miles")
  15213. },
  15214. ]
  15215. ))
  15216. characterMakers.push(() => makeCharacter(
  15217. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15218. {
  15219. front: {
  15220. height: math.unit(6, "feet"),
  15221. weight: math.unit(150, "lb"),
  15222. name: "Front",
  15223. image: {
  15224. source: "./media/characters/isaac/front.svg",
  15225. extra: 896 / 815,
  15226. bottom: 0.11
  15227. }
  15228. },
  15229. },
  15230. [
  15231. {
  15232. name: "Human Size",
  15233. height: math.unit(8, "feet"),
  15234. default: true
  15235. },
  15236. {
  15237. name: "Macro",
  15238. height: math.unit(400, "feet")
  15239. },
  15240. {
  15241. name: "Megamacro",
  15242. height: math.unit(50, "miles")
  15243. },
  15244. {
  15245. name: "Canon Height",
  15246. height: math.unit(200, "AU")
  15247. },
  15248. ]
  15249. ))
  15250. characterMakers.push(() => makeCharacter(
  15251. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15252. {
  15253. front: {
  15254. height: math.unit(6, "feet"),
  15255. weight: math.unit(72, "kg"),
  15256. name: "Front",
  15257. image: {
  15258. source: "./media/characters/sleekit/front.svg",
  15259. extra: 4693 / 4487,
  15260. bottom: 0.012
  15261. }
  15262. },
  15263. },
  15264. [
  15265. {
  15266. name: "Minimum Height",
  15267. height: math.unit(10, "meters")
  15268. },
  15269. {
  15270. name: "Smaller",
  15271. height: math.unit(25, "meters")
  15272. },
  15273. {
  15274. name: "Larger",
  15275. height: math.unit(38, "meters"),
  15276. default: true
  15277. },
  15278. {
  15279. name: "Maximum height",
  15280. height: math.unit(100, "meters")
  15281. },
  15282. ]
  15283. ))
  15284. characterMakers.push(() => makeCharacter(
  15285. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15286. {
  15287. front: {
  15288. height: math.unit(6, "feet"),
  15289. weight: math.unit(150, "lb"),
  15290. name: "Front",
  15291. image: {
  15292. source: "./media/characters/nillia/front.svg",
  15293. extra: 2195 / 2037,
  15294. bottom: 0.005
  15295. }
  15296. },
  15297. back: {
  15298. height: math.unit(6, "feet"),
  15299. weight: math.unit(150, "lb"),
  15300. name: "Back",
  15301. image: {
  15302. source: "./media/characters/nillia/back.svg",
  15303. extra: 2195 / 2037,
  15304. bottom: 0.005
  15305. }
  15306. },
  15307. },
  15308. [
  15309. {
  15310. name: "Canon Height",
  15311. height: math.unit(489, "feet"),
  15312. default: true
  15313. }
  15314. ]
  15315. ))
  15316. characterMakers.push(() => makeCharacter(
  15317. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15318. {
  15319. front: {
  15320. height: math.unit(6, "feet"),
  15321. weight: math.unit(150, "lb"),
  15322. name: "Front",
  15323. image: {
  15324. source: "./media/characters/mesmyriza/front.svg",
  15325. extra: 2067 / 1784,
  15326. bottom: 0.035
  15327. }
  15328. },
  15329. foot: {
  15330. height: math.unit(6 / (250 / 35), "feet"),
  15331. name: "Foot",
  15332. image: {
  15333. source: "./media/characters/mesmyriza/foot.svg"
  15334. }
  15335. },
  15336. },
  15337. [
  15338. {
  15339. name: "Macro",
  15340. height: math.unit(457, "meters"),
  15341. default: true
  15342. },
  15343. {
  15344. name: "Megamacro",
  15345. height: math.unit(8, "megameters")
  15346. },
  15347. ]
  15348. ))
  15349. characterMakers.push(() => makeCharacter(
  15350. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15351. {
  15352. front: {
  15353. height: math.unit(6, "feet"),
  15354. weight: math.unit(250, "lb"),
  15355. name: "Front",
  15356. image: {
  15357. source: "./media/characters/saudade/front.svg",
  15358. extra: 1172 / 1139,
  15359. bottom: 0.035
  15360. }
  15361. },
  15362. },
  15363. [
  15364. {
  15365. name: "Micro",
  15366. height: math.unit(3, "inches")
  15367. },
  15368. {
  15369. name: "Normal",
  15370. height: math.unit(6, "feet"),
  15371. default: true
  15372. },
  15373. {
  15374. name: "Macro",
  15375. height: math.unit(50, "feet")
  15376. },
  15377. {
  15378. name: "Megamacro",
  15379. height: math.unit(2800, "feet")
  15380. },
  15381. ]
  15382. ))
  15383. characterMakers.push(() => makeCharacter(
  15384. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15385. {
  15386. front: {
  15387. height: math.unit(5 + 4 / 12, "feet"),
  15388. weight: math.unit(100, "lb"),
  15389. name: "Front",
  15390. image: {
  15391. source: "./media/characters/keireer/front.svg",
  15392. extra: 716 / 666,
  15393. bottom: 0.05
  15394. }
  15395. },
  15396. },
  15397. [
  15398. {
  15399. name: "Normal",
  15400. height: math.unit(5 + 4 / 12, "feet"),
  15401. default: true
  15402. },
  15403. ]
  15404. ))
  15405. characterMakers.push(() => makeCharacter(
  15406. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15407. {
  15408. front: {
  15409. height: math.unit(5.5, "feet"),
  15410. weight: math.unit(90, "kg"),
  15411. name: "Front",
  15412. image: {
  15413. source: "./media/characters/mirja/front.svg",
  15414. extra: 1452/1262,
  15415. bottom: 67/1519
  15416. }
  15417. },
  15418. frontDressed: {
  15419. height: math.unit(5.5, "feet"),
  15420. weight: math.unit(90, "lb"),
  15421. name: "Front (Dressed)",
  15422. image: {
  15423. source: "./media/characters/mirja/dressed.svg",
  15424. extra: 1452/1262,
  15425. bottom: 67/1519
  15426. }
  15427. },
  15428. back: {
  15429. height: math.unit(6, "feet"),
  15430. weight: math.unit(90, "lb"),
  15431. name: "Back",
  15432. image: {
  15433. source: "./media/characters/mirja/back.svg",
  15434. extra: 1892/1795,
  15435. bottom: 48/1940
  15436. }
  15437. },
  15438. maw: {
  15439. height: math.unit(1.312, "feet"),
  15440. name: "Maw",
  15441. image: {
  15442. source: "./media/characters/mirja/maw.svg"
  15443. }
  15444. },
  15445. paw: {
  15446. height: math.unit(1.15, "feet"),
  15447. name: "Paw",
  15448. image: {
  15449. source: "./media/characters/mirja/paw.svg"
  15450. }
  15451. },
  15452. },
  15453. [
  15454. {
  15455. name: "\"Incognito\"",
  15456. height: math.unit(3, "meters")
  15457. },
  15458. {
  15459. name: "Strolling Size",
  15460. height: math.unit(15, "km")
  15461. },
  15462. {
  15463. name: "Larger Strolling Size",
  15464. height: math.unit(400, "km")
  15465. },
  15466. {
  15467. name: "Preferred Size",
  15468. height: math.unit(5000, "km"),
  15469. default: true
  15470. },
  15471. {
  15472. name: "True Size",
  15473. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15474. },
  15475. ]
  15476. ))
  15477. characterMakers.push(() => makeCharacter(
  15478. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15479. {
  15480. front: {
  15481. height: math.unit(15, "feet"),
  15482. weight: math.unit(880, "kg"),
  15483. name: "Front",
  15484. image: {
  15485. source: "./media/characters/nightraver/front.svg",
  15486. extra: 2444 / 2160,
  15487. bottom: 0.027
  15488. }
  15489. },
  15490. back: {
  15491. height: math.unit(15, "feet"),
  15492. weight: math.unit(880, "kg"),
  15493. name: "Back",
  15494. image: {
  15495. source: "./media/characters/nightraver/back.svg",
  15496. extra: 2309 / 2180,
  15497. bottom: 0.005
  15498. }
  15499. },
  15500. sole: {
  15501. height: math.unit(2.878, "feet"),
  15502. name: "Sole",
  15503. image: {
  15504. source: "./media/characters/nightraver/sole.svg"
  15505. }
  15506. },
  15507. foot: {
  15508. height: math.unit(2.285, "feet"),
  15509. name: "Foot",
  15510. image: {
  15511. source: "./media/characters/nightraver/foot.svg"
  15512. }
  15513. },
  15514. maw: {
  15515. height: math.unit(2.67, "feet"),
  15516. name: "Maw",
  15517. image: {
  15518. source: "./media/characters/nightraver/maw.svg"
  15519. }
  15520. },
  15521. },
  15522. [
  15523. {
  15524. name: "Micro",
  15525. height: math.unit(1, "cm")
  15526. },
  15527. {
  15528. name: "Normal",
  15529. height: math.unit(15, "feet"),
  15530. default: true
  15531. },
  15532. {
  15533. name: "Macro",
  15534. height: math.unit(300, "feet")
  15535. },
  15536. {
  15537. name: "Megamacro",
  15538. height: math.unit(300, "miles")
  15539. },
  15540. {
  15541. name: "Gigamacro",
  15542. height: math.unit(10000, "miles")
  15543. },
  15544. ]
  15545. ))
  15546. characterMakers.push(() => makeCharacter(
  15547. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15548. {
  15549. side: {
  15550. height: math.unit(2, "inches"),
  15551. weight: math.unit(5, "grams"),
  15552. name: "Side",
  15553. image: {
  15554. source: "./media/characters/arc/side.svg"
  15555. }
  15556. },
  15557. },
  15558. [
  15559. {
  15560. name: "Micro",
  15561. height: math.unit(2, "inches"),
  15562. default: true
  15563. },
  15564. ]
  15565. ))
  15566. characterMakers.push(() => makeCharacter(
  15567. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15568. {
  15569. front: {
  15570. height: math.unit(1.1938, "meters"),
  15571. weight: math.unit(54, "kg"),
  15572. name: "Front",
  15573. image: {
  15574. source: "./media/characters/nebula-shahar/front.svg",
  15575. extra: 1642 / 1436,
  15576. bottom: 0.06
  15577. }
  15578. },
  15579. },
  15580. [
  15581. {
  15582. name: "Megamicro",
  15583. height: math.unit(0.3, "mm")
  15584. },
  15585. {
  15586. name: "Micro",
  15587. height: math.unit(3, "cm")
  15588. },
  15589. {
  15590. name: "Normal",
  15591. height: math.unit(138, "cm"),
  15592. default: true
  15593. },
  15594. {
  15595. name: "Macro",
  15596. height: math.unit(30, "m")
  15597. },
  15598. ]
  15599. ))
  15600. characterMakers.push(() => makeCharacter(
  15601. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15602. {
  15603. front: {
  15604. height: math.unit(5.24, "feet"),
  15605. weight: math.unit(150, "lb"),
  15606. name: "Front",
  15607. image: {
  15608. source: "./media/characters/shayla/front.svg",
  15609. extra: 1512 / 1414,
  15610. bottom: 0.01
  15611. }
  15612. },
  15613. back: {
  15614. height: math.unit(5.24, "feet"),
  15615. weight: math.unit(150, "lb"),
  15616. name: "Back",
  15617. image: {
  15618. source: "./media/characters/shayla/back.svg",
  15619. extra: 1512 / 1414
  15620. }
  15621. },
  15622. hand: {
  15623. height: math.unit(0.7781496062992126, "feet"),
  15624. name: "Hand",
  15625. image: {
  15626. source: "./media/characters/shayla/hand.svg"
  15627. }
  15628. },
  15629. foot: {
  15630. height: math.unit(1.4206036745406823, "feet"),
  15631. name: "Foot",
  15632. image: {
  15633. source: "./media/characters/shayla/foot.svg"
  15634. }
  15635. },
  15636. },
  15637. [
  15638. {
  15639. name: "Micro",
  15640. height: math.unit(0.32, "feet")
  15641. },
  15642. {
  15643. name: "Normal",
  15644. height: math.unit(5.24, "feet"),
  15645. default: true
  15646. },
  15647. {
  15648. name: "Macro",
  15649. height: math.unit(492.12, "feet")
  15650. },
  15651. {
  15652. name: "Megamacro",
  15653. height: math.unit(186.41, "miles")
  15654. },
  15655. ]
  15656. ))
  15657. characterMakers.push(() => makeCharacter(
  15658. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15659. {
  15660. front: {
  15661. height: math.unit(2.2, "m"),
  15662. weight: math.unit(120, "kg"),
  15663. name: "Front",
  15664. image: {
  15665. source: "./media/characters/pia-jr/front.svg",
  15666. extra: 1000 / 970,
  15667. bottom: 0.035
  15668. }
  15669. },
  15670. hand: {
  15671. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15672. name: "Hand",
  15673. image: {
  15674. source: "./media/characters/pia-jr/hand.svg"
  15675. }
  15676. },
  15677. paw: {
  15678. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15679. name: "Paw",
  15680. image: {
  15681. source: "./media/characters/pia-jr/paw.svg"
  15682. }
  15683. },
  15684. },
  15685. [
  15686. {
  15687. name: "Micro",
  15688. height: math.unit(1.2, "cm")
  15689. },
  15690. {
  15691. name: "Normal",
  15692. height: math.unit(2.2, "m"),
  15693. default: true
  15694. },
  15695. {
  15696. name: "Macro",
  15697. height: math.unit(180, "m")
  15698. },
  15699. {
  15700. name: "Megamacro",
  15701. height: math.unit(420, "km")
  15702. },
  15703. ]
  15704. ))
  15705. characterMakers.push(() => makeCharacter(
  15706. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15707. {
  15708. front: {
  15709. height: math.unit(2, "m"),
  15710. weight: math.unit(115, "kg"),
  15711. name: "Front",
  15712. image: {
  15713. source: "./media/characters/pia-sr/front.svg",
  15714. extra: 760 / 730,
  15715. bottom: 0.015
  15716. }
  15717. },
  15718. back: {
  15719. height: math.unit(2, "m"),
  15720. weight: math.unit(115, "kg"),
  15721. name: "Back",
  15722. image: {
  15723. source: "./media/characters/pia-sr/back.svg",
  15724. extra: 760 / 730,
  15725. bottom: 0.01
  15726. }
  15727. },
  15728. hand: {
  15729. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15730. name: "Hand",
  15731. image: {
  15732. source: "./media/characters/pia-sr/hand.svg"
  15733. }
  15734. },
  15735. foot: {
  15736. height: math.unit(1.83, "feet"),
  15737. name: "Foot",
  15738. image: {
  15739. source: "./media/characters/pia-sr/foot.svg"
  15740. }
  15741. },
  15742. },
  15743. [
  15744. {
  15745. name: "Micro",
  15746. height: math.unit(88, "mm")
  15747. },
  15748. {
  15749. name: "Normal",
  15750. height: math.unit(2, "m"),
  15751. default: true
  15752. },
  15753. {
  15754. name: "Macro",
  15755. height: math.unit(200, "m")
  15756. },
  15757. {
  15758. name: "Megamacro",
  15759. height: math.unit(420, "km")
  15760. },
  15761. ]
  15762. ))
  15763. characterMakers.push(() => makeCharacter(
  15764. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15765. {
  15766. front: {
  15767. height: math.unit(8 + 2 / 12, "feet"),
  15768. weight: math.unit(300, "lb"),
  15769. name: "Front",
  15770. image: {
  15771. source: "./media/characters/kibibyte/front.svg",
  15772. extra: 2221 / 2098,
  15773. bottom: 0.04
  15774. }
  15775. },
  15776. },
  15777. [
  15778. {
  15779. name: "Normal",
  15780. height: math.unit(8 + 2 / 12, "feet"),
  15781. default: true
  15782. },
  15783. {
  15784. name: "Socialable Macro",
  15785. height: math.unit(50, "feet")
  15786. },
  15787. {
  15788. name: "Macro",
  15789. height: math.unit(300, "feet")
  15790. },
  15791. {
  15792. name: "Megamacro",
  15793. height: math.unit(500, "miles")
  15794. },
  15795. ]
  15796. ))
  15797. characterMakers.push(() => makeCharacter(
  15798. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15799. {
  15800. front: {
  15801. height: math.unit(6, "feet"),
  15802. weight: math.unit(150, "lb"),
  15803. name: "Front",
  15804. image: {
  15805. source: "./media/characters/felix/front.svg",
  15806. extra: 762 / 722,
  15807. bottom: 0.02
  15808. }
  15809. },
  15810. frontClothed: {
  15811. height: math.unit(6, "feet"),
  15812. weight: math.unit(150, "lb"),
  15813. name: "Front (Clothed)",
  15814. image: {
  15815. source: "./media/characters/felix/front-clothed.svg",
  15816. extra: 762 / 722,
  15817. bottom: 0.02
  15818. }
  15819. },
  15820. },
  15821. [
  15822. {
  15823. name: "Normal",
  15824. height: math.unit(6 + 8 / 12, "feet"),
  15825. default: true
  15826. },
  15827. {
  15828. name: "Macro",
  15829. height: math.unit(2600, "feet")
  15830. },
  15831. {
  15832. name: "Megamacro",
  15833. height: math.unit(450, "miles")
  15834. },
  15835. ]
  15836. ))
  15837. characterMakers.push(() => makeCharacter(
  15838. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15839. {
  15840. front: {
  15841. height: math.unit(6 + 1 / 12, "feet"),
  15842. weight: math.unit(250, "lb"),
  15843. name: "Front",
  15844. image: {
  15845. source: "./media/characters/tobo/front.svg",
  15846. extra: 608 / 586,
  15847. bottom: 0.023
  15848. }
  15849. },
  15850. back: {
  15851. height: math.unit(6 + 1 / 12, "feet"),
  15852. weight: math.unit(250, "lb"),
  15853. name: "Back",
  15854. image: {
  15855. source: "./media/characters/tobo/back.svg",
  15856. extra: 608 / 586
  15857. }
  15858. },
  15859. },
  15860. [
  15861. {
  15862. name: "Nano",
  15863. height: math.unit(2, "nm")
  15864. },
  15865. {
  15866. name: "Megamicro",
  15867. height: math.unit(0.1, "mm")
  15868. },
  15869. {
  15870. name: "Micro",
  15871. height: math.unit(1, "inch"),
  15872. default: true
  15873. },
  15874. {
  15875. name: "Human-sized",
  15876. height: math.unit(6 + 1 / 12, "feet")
  15877. },
  15878. {
  15879. name: "Macro",
  15880. height: math.unit(250, "feet")
  15881. },
  15882. {
  15883. name: "Megamacro",
  15884. height: math.unit(75, "miles")
  15885. },
  15886. {
  15887. name: "Texas-sized",
  15888. height: math.unit(750, "miles")
  15889. },
  15890. {
  15891. name: "Teramacro",
  15892. height: math.unit(50000, "miles")
  15893. },
  15894. ]
  15895. ))
  15896. characterMakers.push(() => makeCharacter(
  15897. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15898. {
  15899. front: {
  15900. height: math.unit(6, "feet"),
  15901. weight: math.unit(269, "lb"),
  15902. name: "Front",
  15903. image: {
  15904. source: "./media/characters/danny-kapowsky/front.svg",
  15905. extra: 766 / 736,
  15906. bottom: 0.044
  15907. }
  15908. },
  15909. back: {
  15910. height: math.unit(6, "feet"),
  15911. weight: math.unit(269, "lb"),
  15912. name: "Back",
  15913. image: {
  15914. source: "./media/characters/danny-kapowsky/back.svg",
  15915. extra: 797 / 760,
  15916. bottom: 0.025
  15917. }
  15918. },
  15919. },
  15920. [
  15921. {
  15922. name: "Macro",
  15923. height: math.unit(150, "feet"),
  15924. default: true
  15925. },
  15926. {
  15927. name: "Macro+",
  15928. height: math.unit(200, "feet")
  15929. },
  15930. {
  15931. name: "Macro++",
  15932. height: math.unit(300, "feet")
  15933. },
  15934. {
  15935. name: "Macro+++",
  15936. height: math.unit(400, "feet")
  15937. },
  15938. ]
  15939. ))
  15940. characterMakers.push(() => makeCharacter(
  15941. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15942. {
  15943. side: {
  15944. height: math.unit(6, "feet"),
  15945. weight: math.unit(170, "lb"),
  15946. name: "Side",
  15947. image: {
  15948. source: "./media/characters/finn/side.svg",
  15949. extra: 1953 / 1807,
  15950. bottom: 0.057
  15951. }
  15952. },
  15953. },
  15954. [
  15955. {
  15956. name: "Megamacro",
  15957. height: math.unit(14445, "feet"),
  15958. default: true
  15959. },
  15960. ]
  15961. ))
  15962. characterMakers.push(() => makeCharacter(
  15963. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15964. {
  15965. front: {
  15966. height: math.unit(5 + 6 / 12, "feet"),
  15967. weight: math.unit(125, "lb"),
  15968. name: "Front",
  15969. image: {
  15970. source: "./media/characters/roy/front.svg",
  15971. extra: 1,
  15972. bottom: 0.11
  15973. }
  15974. },
  15975. },
  15976. [
  15977. {
  15978. name: "Micro",
  15979. height: math.unit(3, "inches"),
  15980. default: true
  15981. },
  15982. {
  15983. name: "Normal",
  15984. height: math.unit(5 + 6 / 12, "feet")
  15985. },
  15986. {
  15987. name: "Lesser Macro",
  15988. height: math.unit(60, "feet")
  15989. },
  15990. {
  15991. name: "Greater Macro",
  15992. height: math.unit(120, "feet")
  15993. },
  15994. ]
  15995. ))
  15996. characterMakers.push(() => makeCharacter(
  15997. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15998. {
  15999. front: {
  16000. height: math.unit(6, "feet"),
  16001. weight: math.unit(100, "lb"),
  16002. name: "Front",
  16003. image: {
  16004. source: "./media/characters/aevsivs/front.svg",
  16005. extra: 1,
  16006. bottom: 0.03
  16007. }
  16008. },
  16009. back: {
  16010. height: math.unit(6, "feet"),
  16011. weight: math.unit(100, "lb"),
  16012. name: "Back",
  16013. image: {
  16014. source: "./media/characters/aevsivs/back.svg"
  16015. }
  16016. },
  16017. },
  16018. [
  16019. {
  16020. name: "Micro",
  16021. height: math.unit(2, "inches"),
  16022. default: true
  16023. },
  16024. {
  16025. name: "Normal",
  16026. height: math.unit(5, "feet")
  16027. },
  16028. ]
  16029. ))
  16030. characterMakers.push(() => makeCharacter(
  16031. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16032. {
  16033. front: {
  16034. height: math.unit(5 + 7 / 12, "feet"),
  16035. weight: math.unit(159, "lb"),
  16036. name: "Front",
  16037. image: {
  16038. source: "./media/characters/hildegard/front.svg",
  16039. extra: 289 / 269,
  16040. bottom: 7.63 / 297.8
  16041. }
  16042. },
  16043. back: {
  16044. height: math.unit(5 + 7 / 12, "feet"),
  16045. weight: math.unit(159, "lb"),
  16046. name: "Back",
  16047. image: {
  16048. source: "./media/characters/hildegard/back.svg",
  16049. extra: 280 / 260,
  16050. bottom: 2.3 / 282
  16051. }
  16052. },
  16053. },
  16054. [
  16055. {
  16056. name: "Normal",
  16057. height: math.unit(5 + 7 / 12, "feet"),
  16058. default: true
  16059. },
  16060. ]
  16061. ))
  16062. characterMakers.push(() => makeCharacter(
  16063. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16064. {
  16065. bernard: {
  16066. height: math.unit(2 + 7 / 12, "feet"),
  16067. weight: math.unit(66, "lb"),
  16068. name: "Bernard",
  16069. rename: true,
  16070. image: {
  16071. source: "./media/characters/bernard-wilder/bernard.svg",
  16072. extra: 192 / 128,
  16073. bottom: 0.05
  16074. }
  16075. },
  16076. wilder: {
  16077. height: math.unit(5 + 8 / 12, "feet"),
  16078. weight: math.unit(143, "lb"),
  16079. name: "Wilder",
  16080. rename: true,
  16081. image: {
  16082. source: "./media/characters/bernard-wilder/wilder.svg",
  16083. extra: 361 / 312,
  16084. bottom: 0.02
  16085. }
  16086. },
  16087. },
  16088. [
  16089. {
  16090. name: "Normal",
  16091. height: math.unit(2 + 7 / 12, "feet"),
  16092. default: true
  16093. },
  16094. ]
  16095. ))
  16096. characterMakers.push(() => makeCharacter(
  16097. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16098. {
  16099. anthro: {
  16100. height: math.unit(6 + 1 / 12, "feet"),
  16101. weight: math.unit(155, "lb"),
  16102. name: "Anthro",
  16103. image: {
  16104. source: "./media/characters/hearth/anthro.svg",
  16105. extra: 1178/1136,
  16106. bottom: 28/1206
  16107. }
  16108. },
  16109. feral: {
  16110. height: math.unit(3.78, "feet"),
  16111. weight: math.unit(35, "kg"),
  16112. name: "Feral",
  16113. image: {
  16114. source: "./media/characters/hearth/feral.svg",
  16115. extra: 153 / 135,
  16116. bottom: 0.03
  16117. }
  16118. },
  16119. },
  16120. [
  16121. {
  16122. name: "Normal",
  16123. height: math.unit(6 + 1 / 12, "feet"),
  16124. default: true
  16125. },
  16126. ]
  16127. ))
  16128. characterMakers.push(() => makeCharacter(
  16129. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16130. {
  16131. front: {
  16132. height: math.unit(6, "feet"),
  16133. weight: math.unit(182, "lb"),
  16134. name: "Front",
  16135. image: {
  16136. source: "./media/characters/ingrid/front.svg",
  16137. extra: 294 / 268,
  16138. bottom: 0.027
  16139. }
  16140. },
  16141. },
  16142. [
  16143. {
  16144. name: "Normal",
  16145. height: math.unit(6, "feet"),
  16146. default: true
  16147. },
  16148. ]
  16149. ))
  16150. characterMakers.push(() => makeCharacter(
  16151. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16152. {
  16153. eevee: {
  16154. height: math.unit(2 + 10 / 12, "feet"),
  16155. weight: math.unit(86, "lb"),
  16156. name: "Malgam",
  16157. image: {
  16158. source: "./media/characters/malgam/eevee.svg",
  16159. extra: 952/784,
  16160. bottom: 38/990
  16161. }
  16162. },
  16163. sylveon: {
  16164. height: math.unit(4, "feet"),
  16165. weight: math.unit(101, "lb"),
  16166. name: "Future Malgam",
  16167. rename: true,
  16168. image: {
  16169. source: "./media/characters/malgam/sylveon.svg",
  16170. extra: 371 / 325,
  16171. bottom: 0.015
  16172. }
  16173. },
  16174. gigantamax: {
  16175. height: math.unit(50, "feet"),
  16176. name: "Gigantamax Malgam",
  16177. rename: true,
  16178. image: {
  16179. source: "./media/characters/malgam/gigantamax.svg"
  16180. }
  16181. },
  16182. },
  16183. [
  16184. {
  16185. name: "Normal",
  16186. height: math.unit(2 + 10 / 12, "feet"),
  16187. default: true
  16188. },
  16189. ]
  16190. ))
  16191. characterMakers.push(() => makeCharacter(
  16192. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16193. {
  16194. front: {
  16195. height: math.unit(5 + 11 / 12, "feet"),
  16196. weight: math.unit(188, "lb"),
  16197. name: "Front",
  16198. image: {
  16199. source: "./media/characters/fleur/front.svg",
  16200. extra: 309 / 283,
  16201. bottom: 0.007
  16202. }
  16203. },
  16204. },
  16205. [
  16206. {
  16207. name: "Normal",
  16208. height: math.unit(5 + 11 / 12, "feet"),
  16209. default: true
  16210. },
  16211. ]
  16212. ))
  16213. characterMakers.push(() => makeCharacter(
  16214. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16215. {
  16216. front: {
  16217. height: math.unit(5 + 4 / 12, "feet"),
  16218. weight: math.unit(122, "lb"),
  16219. name: "Front",
  16220. image: {
  16221. source: "./media/characters/jude/front.svg",
  16222. extra: 288 / 273,
  16223. bottom: 0.03
  16224. }
  16225. },
  16226. },
  16227. [
  16228. {
  16229. name: "Normal",
  16230. height: math.unit(5 + 4 / 12, "feet"),
  16231. default: true
  16232. },
  16233. ]
  16234. ))
  16235. characterMakers.push(() => makeCharacter(
  16236. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16237. {
  16238. front: {
  16239. height: math.unit(5 + 11 / 12, "feet"),
  16240. weight: math.unit(190, "lb"),
  16241. name: "Front",
  16242. image: {
  16243. source: "./media/characters/seara/front.svg",
  16244. extra: 1,
  16245. bottom: 0.05
  16246. }
  16247. },
  16248. },
  16249. [
  16250. {
  16251. name: "Normal",
  16252. height: math.unit(5 + 11 / 12, "feet"),
  16253. default: true
  16254. },
  16255. ]
  16256. ))
  16257. characterMakers.push(() => makeCharacter(
  16258. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16259. {
  16260. front: {
  16261. height: math.unit(16 + 5 / 12, "feet"),
  16262. weight: math.unit(524, "lb"),
  16263. name: "Front",
  16264. image: {
  16265. source: "./media/characters/caspian-lugia/front.svg",
  16266. extra: 1,
  16267. bottom: 0.04
  16268. }
  16269. },
  16270. },
  16271. [
  16272. {
  16273. name: "Normal",
  16274. height: math.unit(16 + 5 / 12, "feet"),
  16275. default: true
  16276. },
  16277. ]
  16278. ))
  16279. characterMakers.push(() => makeCharacter(
  16280. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16281. {
  16282. front: {
  16283. height: math.unit(5 + 7 / 12, "feet"),
  16284. weight: math.unit(170, "lb"),
  16285. name: "Front",
  16286. image: {
  16287. source: "./media/characters/mika/front.svg",
  16288. extra: 1,
  16289. bottom: 0.016
  16290. }
  16291. },
  16292. },
  16293. [
  16294. {
  16295. name: "Normal",
  16296. height: math.unit(5 + 7 / 12, "feet"),
  16297. default: true
  16298. },
  16299. ]
  16300. ))
  16301. characterMakers.push(() => makeCharacter(
  16302. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16303. {
  16304. front: {
  16305. height: math.unit(6 + 2 / 12, "feet"),
  16306. weight: math.unit(268, "lb"),
  16307. name: "Front",
  16308. image: {
  16309. source: "./media/characters/sol/front.svg",
  16310. extra: 247 / 231,
  16311. bottom: 0.05
  16312. }
  16313. },
  16314. },
  16315. [
  16316. {
  16317. name: "Normal",
  16318. height: math.unit(6 + 2 / 12, "feet"),
  16319. default: true
  16320. },
  16321. ]
  16322. ))
  16323. characterMakers.push(() => makeCharacter(
  16324. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16325. {
  16326. buizel: {
  16327. height: math.unit(2 + 5 / 12, "feet"),
  16328. weight: math.unit(87, "lb"),
  16329. name: "Front",
  16330. image: {
  16331. source: "./media/characters/umiko/buizel.svg",
  16332. extra: 172 / 157,
  16333. bottom: 0.01
  16334. },
  16335. form: "buizel",
  16336. default: true
  16337. },
  16338. floatzel: {
  16339. height: math.unit(5 + 9 / 12, "feet"),
  16340. weight: math.unit(250, "lb"),
  16341. name: "Front",
  16342. image: {
  16343. source: "./media/characters/umiko/floatzel.svg",
  16344. extra: 1076/1006,
  16345. bottom: 15/1091
  16346. },
  16347. form: "floatzel",
  16348. default: true
  16349. },
  16350. },
  16351. [
  16352. {
  16353. name: "Normal",
  16354. height: math.unit(2 + 5 / 12, "feet"),
  16355. form: "buizel",
  16356. default: true
  16357. },
  16358. {
  16359. name: "Normal",
  16360. height: math.unit(5 + 9 / 12, "feet"),
  16361. form: "floatzel",
  16362. default: true
  16363. },
  16364. ],
  16365. {
  16366. "buizel": {
  16367. name: "Buizel"
  16368. },
  16369. "floatzel": {
  16370. name: "Floatzel",
  16371. default: true
  16372. }
  16373. }
  16374. ))
  16375. characterMakers.push(() => makeCharacter(
  16376. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16377. {
  16378. front: {
  16379. height: math.unit(6 + 2 / 12, "feet"),
  16380. weight: math.unit(146, "lb"),
  16381. name: "Front",
  16382. image: {
  16383. source: "./media/characters/iliac/front.svg",
  16384. extra: 389 / 365,
  16385. bottom: 0.035
  16386. }
  16387. },
  16388. },
  16389. [
  16390. {
  16391. name: "Normal",
  16392. height: math.unit(6 + 2 / 12, "feet"),
  16393. default: true
  16394. },
  16395. ]
  16396. ))
  16397. characterMakers.push(() => makeCharacter(
  16398. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16399. {
  16400. front: {
  16401. height: math.unit(6, "feet"),
  16402. weight: math.unit(170, "lb"),
  16403. name: "Front",
  16404. image: {
  16405. source: "./media/characters/topaz/front.svg",
  16406. extra: 317 / 303,
  16407. bottom: 0.055
  16408. }
  16409. },
  16410. },
  16411. [
  16412. {
  16413. name: "Normal",
  16414. height: math.unit(6, "feet"),
  16415. default: true
  16416. },
  16417. ]
  16418. ))
  16419. characterMakers.push(() => makeCharacter(
  16420. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16421. {
  16422. front: {
  16423. height: math.unit(5 + 11 / 12, "feet"),
  16424. weight: math.unit(144, "lb"),
  16425. name: "Front",
  16426. image: {
  16427. source: "./media/characters/gabriel/front.svg",
  16428. extra: 285 / 262,
  16429. bottom: 0.004
  16430. }
  16431. },
  16432. },
  16433. [
  16434. {
  16435. name: "Normal",
  16436. height: math.unit(5 + 11 / 12, "feet"),
  16437. default: true
  16438. },
  16439. ]
  16440. ))
  16441. characterMakers.push(() => makeCharacter(
  16442. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16443. {
  16444. side: {
  16445. height: math.unit(6 + 5 / 12, "feet"),
  16446. weight: math.unit(300, "lb"),
  16447. name: "Side",
  16448. image: {
  16449. source: "./media/characters/tempest-suicune/side.svg",
  16450. extra: 195 / 154,
  16451. bottom: 0.04
  16452. }
  16453. },
  16454. },
  16455. [
  16456. {
  16457. name: "Normal",
  16458. height: math.unit(6 + 5 / 12, "feet"),
  16459. default: true
  16460. },
  16461. ]
  16462. ))
  16463. characterMakers.push(() => makeCharacter(
  16464. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16465. {
  16466. front: {
  16467. height: math.unit(7 + 2 / 12, "feet"),
  16468. weight: math.unit(322, "lb"),
  16469. name: "Front",
  16470. image: {
  16471. source: "./media/characters/vulcan/front.svg",
  16472. extra: 154 / 147,
  16473. bottom: 0.04
  16474. }
  16475. },
  16476. },
  16477. [
  16478. {
  16479. name: "Normal",
  16480. height: math.unit(7 + 2 / 12, "feet"),
  16481. default: true
  16482. },
  16483. ]
  16484. ))
  16485. characterMakers.push(() => makeCharacter(
  16486. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16487. {
  16488. front: {
  16489. height: math.unit(5 + 10 / 12, "feet"),
  16490. weight: math.unit(264, "lb"),
  16491. name: "Front",
  16492. image: {
  16493. source: "./media/characters/gault/front.svg",
  16494. extra: 161 / 140,
  16495. bottom: 0.028
  16496. }
  16497. },
  16498. },
  16499. [
  16500. {
  16501. name: "Normal",
  16502. height: math.unit(5 + 10 / 12, "feet"),
  16503. default: true
  16504. },
  16505. ]
  16506. ))
  16507. characterMakers.push(() => makeCharacter(
  16508. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16509. {
  16510. front: {
  16511. height: math.unit(6, "feet"),
  16512. weight: math.unit(150, "lb"),
  16513. name: "Front",
  16514. image: {
  16515. source: "./media/characters/shard/front.svg",
  16516. extra: 273 / 238,
  16517. bottom: 0.02
  16518. }
  16519. },
  16520. },
  16521. [
  16522. {
  16523. name: "Normal",
  16524. height: math.unit(3 + 6 / 12, "feet"),
  16525. default: true
  16526. },
  16527. ]
  16528. ))
  16529. characterMakers.push(() => makeCharacter(
  16530. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16531. {
  16532. front: {
  16533. height: math.unit(5 + 11 / 12, "feet"),
  16534. weight: math.unit(146, "lb"),
  16535. name: "Front",
  16536. image: {
  16537. source: "./media/characters/ashe/front.svg",
  16538. extra: 400 / 373,
  16539. bottom: 0.01
  16540. }
  16541. },
  16542. },
  16543. [
  16544. {
  16545. name: "Normal",
  16546. height: math.unit(5 + 11 / 12, "feet"),
  16547. default: true
  16548. },
  16549. ]
  16550. ))
  16551. characterMakers.push(() => makeCharacter(
  16552. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16553. {
  16554. front: {
  16555. height: math.unit(5 + 5 / 12, "feet"),
  16556. weight: math.unit(135, "lb"),
  16557. name: "Front",
  16558. image: {
  16559. source: "./media/characters/beatrix/front.svg",
  16560. extra: 392 / 379,
  16561. bottom: 0.01
  16562. }
  16563. },
  16564. },
  16565. [
  16566. {
  16567. name: "Normal",
  16568. height: math.unit(6, "feet"),
  16569. default: true
  16570. },
  16571. ]
  16572. ))
  16573. characterMakers.push(() => makeCharacter(
  16574. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16575. {
  16576. front: {
  16577. height: math.unit(6 + 2/12, "feet"),
  16578. weight: math.unit(135, "lb"),
  16579. name: "Front",
  16580. image: {
  16581. source: "./media/characters/ignatius/front.svg",
  16582. extra: 1380/1259,
  16583. bottom: 27/1407
  16584. }
  16585. },
  16586. },
  16587. [
  16588. {
  16589. name: "Normal",
  16590. height: math.unit(6 + 2/12, "feet"),
  16591. default: true
  16592. },
  16593. ]
  16594. ))
  16595. characterMakers.push(() => makeCharacter(
  16596. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16597. {
  16598. front: {
  16599. height: math.unit(6 + 2 / 12, "feet"),
  16600. weight: math.unit(138, "lb"),
  16601. name: "Front",
  16602. image: {
  16603. source: "./media/characters/mei-li/front.svg",
  16604. extra: 237 / 229,
  16605. bottom: 0.03
  16606. }
  16607. },
  16608. },
  16609. [
  16610. {
  16611. name: "Normal",
  16612. height: math.unit(6 + 2 / 12, "feet"),
  16613. default: true
  16614. },
  16615. ]
  16616. ))
  16617. characterMakers.push(() => makeCharacter(
  16618. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16619. {
  16620. front: {
  16621. height: math.unit(2 + 4 / 12, "feet"),
  16622. weight: math.unit(62, "lb"),
  16623. name: "Front",
  16624. image: {
  16625. source: "./media/characters/puru/front.svg",
  16626. extra: 206 / 149,
  16627. bottom: 0.06
  16628. }
  16629. },
  16630. },
  16631. [
  16632. {
  16633. name: "Normal",
  16634. height: math.unit(2 + 4 / 12, "feet"),
  16635. default: true
  16636. },
  16637. ]
  16638. ))
  16639. characterMakers.push(() => makeCharacter(
  16640. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16641. {
  16642. anthro: {
  16643. height: math.unit(5 + 8/12, "feet"),
  16644. weight: math.unit(200, "lb"),
  16645. energyNeed: math.unit(2000, "kcal"),
  16646. name: "Anthro",
  16647. image: {
  16648. source: "./media/characters/kee/anthro.svg",
  16649. extra: 3251/3184,
  16650. bottom: 250/3501
  16651. }
  16652. },
  16653. taur: {
  16654. height: math.unit(11, "feet"),
  16655. weight: math.unit(500, "lb"),
  16656. energyNeed: math.unit(5000, "kcal"),
  16657. name: "Taur",
  16658. image: {
  16659. source: "./media/characters/kee/taur.svg",
  16660. extra: 1362/1320,
  16661. bottom: 83/1445
  16662. }
  16663. },
  16664. },
  16665. [
  16666. {
  16667. name: "Normal",
  16668. height: math.unit(5 + 8/12, "feet"),
  16669. default: true
  16670. },
  16671. {
  16672. name: "Macro",
  16673. height: math.unit(35, "feet")
  16674. },
  16675. ]
  16676. ))
  16677. characterMakers.push(() => makeCharacter(
  16678. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16679. {
  16680. anthro: {
  16681. height: math.unit(7, "feet"),
  16682. weight: math.unit(190, "lb"),
  16683. name: "Anthro",
  16684. image: {
  16685. source: "./media/characters/cobalt-dracha/anthro.svg",
  16686. extra: 231 / 225,
  16687. bottom: 0.04
  16688. }
  16689. },
  16690. feral: {
  16691. height: math.unit(9 + 7 / 12, "feet"),
  16692. weight: math.unit(294, "lb"),
  16693. name: "Feral",
  16694. image: {
  16695. source: "./media/characters/cobalt-dracha/feral.svg",
  16696. extra: 692 / 633,
  16697. bottom: 0.05
  16698. }
  16699. },
  16700. },
  16701. [
  16702. {
  16703. name: "Normal",
  16704. height: math.unit(7, "feet"),
  16705. default: true
  16706. },
  16707. ]
  16708. ))
  16709. characterMakers.push(() => makeCharacter(
  16710. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16711. {
  16712. fallen: {
  16713. height: math.unit(11 + 8 / 12, "feet"),
  16714. weight: math.unit(485, "lb"),
  16715. name: "Java (Fallen)",
  16716. rename: true,
  16717. image: {
  16718. source: "./media/characters/java/fallen.svg",
  16719. extra: 226 / 208,
  16720. bottom: 0.005
  16721. }
  16722. },
  16723. godkin: {
  16724. height: math.unit(10 + 6 / 12, "feet"),
  16725. weight: math.unit(328, "lb"),
  16726. name: "Java (Godkin)",
  16727. rename: true,
  16728. image: {
  16729. source: "./media/characters/java/godkin.svg",
  16730. extra: 1104/1068,
  16731. bottom: 36/1140
  16732. }
  16733. },
  16734. },
  16735. [
  16736. {
  16737. name: "Normal",
  16738. height: math.unit(11 + 8 / 12, "feet"),
  16739. default: true
  16740. },
  16741. ]
  16742. ))
  16743. characterMakers.push(() => makeCharacter(
  16744. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16745. {
  16746. front: {
  16747. height: math.unit(5 + 9 / 12, "feet"),
  16748. weight: math.unit(170, "lb"),
  16749. name: "Front",
  16750. image: {
  16751. source: "./media/characters/purna/front.svg",
  16752. extra: 239 / 229,
  16753. bottom: 0.01
  16754. }
  16755. },
  16756. },
  16757. [
  16758. {
  16759. name: "Normal",
  16760. height: math.unit(5 + 9 / 12, "feet"),
  16761. default: true
  16762. },
  16763. ]
  16764. ))
  16765. characterMakers.push(() => makeCharacter(
  16766. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16767. {
  16768. front: {
  16769. height: math.unit(5 + 9 / 12, "feet"),
  16770. weight: math.unit(142, "lb"),
  16771. name: "Front",
  16772. image: {
  16773. source: "./media/characters/kuva/front.svg",
  16774. extra: 281 / 271,
  16775. bottom: 0.006
  16776. }
  16777. },
  16778. },
  16779. [
  16780. {
  16781. name: "Normal",
  16782. height: math.unit(5 + 9 / 12, "feet"),
  16783. default: true
  16784. },
  16785. ]
  16786. ))
  16787. characterMakers.push(() => makeCharacter(
  16788. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16789. {
  16790. anthro: {
  16791. height: math.unit(9 + 2 / 12, "feet"),
  16792. weight: math.unit(270, "lb"),
  16793. name: "Anthro",
  16794. image: {
  16795. source: "./media/characters/embra/anthro.svg",
  16796. extra: 200 / 187,
  16797. bottom: 0.02
  16798. }
  16799. },
  16800. feral: {
  16801. height: math.unit(18 + 8 / 12, "feet"),
  16802. weight: math.unit(576, "lb"),
  16803. name: "Feral",
  16804. image: {
  16805. source: "./media/characters/embra/feral.svg",
  16806. extra: 152 / 137,
  16807. bottom: 0.037
  16808. }
  16809. },
  16810. },
  16811. [
  16812. {
  16813. name: "Normal",
  16814. height: math.unit(9 + 2 / 12, "feet"),
  16815. default: true
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16821. {
  16822. anthro: {
  16823. height: math.unit(10 + 9 / 12, "feet"),
  16824. weight: math.unit(224, "lb"),
  16825. name: "Anthro",
  16826. image: {
  16827. source: "./media/characters/grottos/anthro.svg",
  16828. extra: 350 / 332,
  16829. bottom: 0.045
  16830. }
  16831. },
  16832. feral: {
  16833. height: math.unit(20 + 7 / 12, "feet"),
  16834. weight: math.unit(629, "lb"),
  16835. name: "Feral",
  16836. image: {
  16837. source: "./media/characters/grottos/feral.svg",
  16838. extra: 207 / 190,
  16839. bottom: 0.05
  16840. }
  16841. },
  16842. },
  16843. [
  16844. {
  16845. name: "Normal",
  16846. height: math.unit(10 + 9 / 12, "feet"),
  16847. default: true
  16848. },
  16849. ]
  16850. ))
  16851. characterMakers.push(() => makeCharacter(
  16852. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16853. {
  16854. anthro: {
  16855. height: math.unit(9 + 6 / 12, "feet"),
  16856. weight: math.unit(298, "lb"),
  16857. name: "Anthro",
  16858. image: {
  16859. source: "./media/characters/frifna/anthro.svg",
  16860. extra: 282 / 269,
  16861. bottom: 0.015
  16862. }
  16863. },
  16864. feral: {
  16865. height: math.unit(16 + 2 / 12, "feet"),
  16866. weight: math.unit(624, "lb"),
  16867. name: "Feral",
  16868. image: {
  16869. source: "./media/characters/frifna/feral.svg"
  16870. }
  16871. },
  16872. },
  16873. [
  16874. {
  16875. name: "Normal",
  16876. height: math.unit(9 + 6 / 12, "feet"),
  16877. default: true
  16878. },
  16879. ]
  16880. ))
  16881. characterMakers.push(() => makeCharacter(
  16882. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16883. {
  16884. front: {
  16885. height: math.unit(6 + 2 / 12, "feet"),
  16886. weight: math.unit(168, "lb"),
  16887. name: "Front",
  16888. image: {
  16889. source: "./media/characters/elise/front.svg",
  16890. extra: 276 / 271
  16891. }
  16892. },
  16893. },
  16894. [
  16895. {
  16896. name: "Normal",
  16897. height: math.unit(6 + 2 / 12, "feet"),
  16898. default: true
  16899. },
  16900. ]
  16901. ))
  16902. characterMakers.push(() => makeCharacter(
  16903. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16904. {
  16905. front: {
  16906. height: math.unit(5 + 10 / 12, "feet"),
  16907. weight: math.unit(210, "lb"),
  16908. name: "Front",
  16909. image: {
  16910. source: "./media/characters/glade/front.svg",
  16911. extra: 258 / 247,
  16912. bottom: 0.008
  16913. }
  16914. },
  16915. },
  16916. [
  16917. {
  16918. name: "Normal",
  16919. height: math.unit(5 + 10 / 12, "feet"),
  16920. default: true
  16921. },
  16922. ]
  16923. ))
  16924. characterMakers.push(() => makeCharacter(
  16925. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16926. {
  16927. front: {
  16928. height: math.unit(5 + 10 / 12, "feet"),
  16929. weight: math.unit(129, "lb"),
  16930. name: "Front",
  16931. image: {
  16932. source: "./media/characters/rina/front.svg",
  16933. extra: 266 / 255,
  16934. bottom: 0.005
  16935. }
  16936. },
  16937. },
  16938. [
  16939. {
  16940. name: "Normal",
  16941. height: math.unit(5 + 10 / 12, "feet"),
  16942. default: true
  16943. },
  16944. ]
  16945. ))
  16946. characterMakers.push(() => makeCharacter(
  16947. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16948. {
  16949. front: {
  16950. height: math.unit(6 + 1 / 12, "feet"),
  16951. weight: math.unit(192, "lb"),
  16952. name: "Front",
  16953. image: {
  16954. source: "./media/characters/veronica/front.svg",
  16955. extra: 319 / 309,
  16956. bottom: 0.005
  16957. }
  16958. },
  16959. },
  16960. [
  16961. {
  16962. name: "Normal",
  16963. height: math.unit(6 + 1 / 12, "feet"),
  16964. default: true
  16965. },
  16966. ]
  16967. ))
  16968. characterMakers.push(() => makeCharacter(
  16969. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16970. {
  16971. front: {
  16972. height: math.unit(9 + 3 / 12, "feet"),
  16973. weight: math.unit(1100, "lb"),
  16974. name: "Front",
  16975. image: {
  16976. source: "./media/characters/braxton/front.svg",
  16977. extra: 1057 / 984,
  16978. bottom: 0.05
  16979. }
  16980. },
  16981. },
  16982. [
  16983. {
  16984. name: "Normal",
  16985. height: math.unit(9 + 3 / 12, "feet")
  16986. },
  16987. {
  16988. name: "Giant",
  16989. height: math.unit(300, "feet"),
  16990. default: true
  16991. },
  16992. {
  16993. name: "Macro",
  16994. height: math.unit(700, "feet")
  16995. },
  16996. {
  16997. name: "Megamacro",
  16998. height: math.unit(6000, "feet")
  16999. },
  17000. ]
  17001. ))
  17002. characterMakers.push(() => makeCharacter(
  17003. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17004. {
  17005. front: {
  17006. height: math.unit(6 + 7 / 12, "feet"),
  17007. weight: math.unit(150, "lb"),
  17008. name: "Front",
  17009. image: {
  17010. source: "./media/characters/blue-feyonics/front.svg",
  17011. extra: 1403 / 1306,
  17012. bottom: 0.047
  17013. }
  17014. },
  17015. },
  17016. [
  17017. {
  17018. name: "Normal",
  17019. height: math.unit(6 + 7 / 12, "feet"),
  17020. default: true
  17021. },
  17022. ]
  17023. ))
  17024. characterMakers.push(() => makeCharacter(
  17025. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17026. {
  17027. front: {
  17028. height: math.unit(1.8, "meters"),
  17029. weight: math.unit(60, "kg"),
  17030. name: "Front",
  17031. image: {
  17032. source: "./media/characters/maxwell/front.svg",
  17033. extra: 2060 / 1873
  17034. }
  17035. },
  17036. },
  17037. [
  17038. {
  17039. name: "Micro",
  17040. height: math.unit(1, "mm")
  17041. },
  17042. {
  17043. name: "Normal",
  17044. height: math.unit(1.8, "meter"),
  17045. default: true
  17046. },
  17047. {
  17048. name: "Macro",
  17049. height: math.unit(30, "meters")
  17050. },
  17051. {
  17052. name: "Megamacro",
  17053. height: math.unit(10, "km")
  17054. },
  17055. ]
  17056. ))
  17057. characterMakers.push(() => makeCharacter(
  17058. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17059. {
  17060. front: {
  17061. height: math.unit(6, "feet"),
  17062. weight: math.unit(150, "lb"),
  17063. name: "Front",
  17064. image: {
  17065. source: "./media/characters/jack/front.svg",
  17066. extra: 1754 / 1640,
  17067. bottom: 0.01
  17068. }
  17069. },
  17070. },
  17071. [
  17072. {
  17073. name: "Normal",
  17074. height: math.unit(80000, "feet"),
  17075. default: true
  17076. },
  17077. {
  17078. name: "Max size",
  17079. height: math.unit(10, "lightyears")
  17080. },
  17081. ]
  17082. ))
  17083. characterMakers.push(() => makeCharacter(
  17084. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17085. {
  17086. urban: {
  17087. height: math.unit(5, "feet"),
  17088. weight: math.unit(240, "lb"),
  17089. name: "Urban",
  17090. image: {
  17091. source: "./media/characters/cafat/urban.svg",
  17092. extra: 1223/1126,
  17093. bottom: 205/1428
  17094. }
  17095. },
  17096. summer: {
  17097. height: math.unit(5, "feet"),
  17098. weight: math.unit(240, "lb"),
  17099. name: "Summer",
  17100. image: {
  17101. source: "./media/characters/cafat/summer.svg",
  17102. extra: 1223/1126,
  17103. bottom: 205/1428
  17104. }
  17105. },
  17106. winter: {
  17107. height: math.unit(5, "feet"),
  17108. weight: math.unit(240, "lb"),
  17109. name: "Winter",
  17110. image: {
  17111. source: "./media/characters/cafat/winter.svg",
  17112. extra: 1223/1126,
  17113. bottom: 205/1428
  17114. }
  17115. },
  17116. lingerie: {
  17117. height: math.unit(5, "feet"),
  17118. weight: math.unit(240, "lb"),
  17119. name: "Lingerie",
  17120. image: {
  17121. source: "./media/characters/cafat/lingerie.svg",
  17122. extra: 1223/1126,
  17123. bottom: 205/1428
  17124. }
  17125. },
  17126. upright: {
  17127. height: math.unit(6.3, "feet"),
  17128. weight: math.unit(240, "lb"),
  17129. name: "Upright",
  17130. image: {
  17131. source: "./media/characters/cafat/upright.svg",
  17132. bottom: 0.01
  17133. }
  17134. },
  17135. uprightFull: {
  17136. height: math.unit(6.3, "feet"),
  17137. weight: math.unit(240, "lb"),
  17138. name: "Upright (Full)",
  17139. image: {
  17140. source: "./media/characters/cafat/upright-full.svg",
  17141. bottom: 0.01
  17142. }
  17143. },
  17144. },
  17145. [
  17146. {
  17147. name: "Small",
  17148. height: math.unit(5, "feet"),
  17149. default: true
  17150. },
  17151. {
  17152. name: "Large",
  17153. height: math.unit(13, "feet")
  17154. },
  17155. ]
  17156. ))
  17157. characterMakers.push(() => makeCharacter(
  17158. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17159. {
  17160. front: {
  17161. height: math.unit(6, "feet"),
  17162. weight: math.unit(150, "lb"),
  17163. name: "Front",
  17164. image: {
  17165. source: "./media/characters/verin-raharra/front.svg",
  17166. extra: 5019 / 4835,
  17167. bottom: 0.023
  17168. }
  17169. },
  17170. },
  17171. [
  17172. {
  17173. name: "Normal",
  17174. height: math.unit(7 + 5 / 12, "feet"),
  17175. default: true
  17176. },
  17177. {
  17178. name: "Upsized",
  17179. height: math.unit(20, "feet")
  17180. },
  17181. ]
  17182. ))
  17183. characterMakers.push(() => makeCharacter(
  17184. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17185. {
  17186. front: {
  17187. height: math.unit(7, "feet"),
  17188. weight: math.unit(230, "lb"),
  17189. name: "Front",
  17190. image: {
  17191. source: "./media/characters/nakata/front.svg",
  17192. extra: 1.005,
  17193. bottom: 0.01
  17194. }
  17195. },
  17196. },
  17197. [
  17198. {
  17199. name: "Normal",
  17200. height: math.unit(7, "feet"),
  17201. default: true
  17202. },
  17203. {
  17204. name: "Big",
  17205. height: math.unit(14, "feet")
  17206. },
  17207. {
  17208. name: "Macro",
  17209. height: math.unit(400, "feet")
  17210. },
  17211. ]
  17212. ))
  17213. characterMakers.push(() => makeCharacter(
  17214. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17215. {
  17216. front: {
  17217. height: math.unit(4.91, "feet"),
  17218. weight: math.unit(100, "lb"),
  17219. name: "Front",
  17220. image: {
  17221. source: "./media/characters/lily/front.svg",
  17222. extra: 1585 / 1415,
  17223. bottom: 0.02
  17224. }
  17225. },
  17226. },
  17227. [
  17228. {
  17229. name: "Normal",
  17230. height: math.unit(4.91, "feet"),
  17231. default: true
  17232. },
  17233. ]
  17234. ))
  17235. characterMakers.push(() => makeCharacter(
  17236. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17237. {
  17238. laying: {
  17239. height: math.unit(4 + 4 / 12, "feet"),
  17240. weight: math.unit(600, "lb"),
  17241. name: "Laying",
  17242. image: {
  17243. source: "./media/characters/sheila/laying.svg",
  17244. extra: 1333 / 1265,
  17245. bottom: 0.16
  17246. }
  17247. },
  17248. },
  17249. [
  17250. {
  17251. name: "Normal",
  17252. height: math.unit(4 + 4 / 12, "feet"),
  17253. default: true
  17254. },
  17255. ]
  17256. ))
  17257. characterMakers.push(() => makeCharacter(
  17258. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17259. {
  17260. front: {
  17261. height: math.unit(6, "feet"),
  17262. weight: math.unit(190, "lb"),
  17263. name: "Front",
  17264. image: {
  17265. source: "./media/characters/sax/front.svg",
  17266. extra: 1187 / 973,
  17267. bottom: 0.042
  17268. }
  17269. },
  17270. },
  17271. [
  17272. {
  17273. name: "Micro",
  17274. height: math.unit(4, "inches"),
  17275. default: true
  17276. },
  17277. ]
  17278. ))
  17279. characterMakers.push(() => makeCharacter(
  17280. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17281. {
  17282. front: {
  17283. height: math.unit(6, "feet"),
  17284. weight: math.unit(150, "lb"),
  17285. name: "Front",
  17286. image: {
  17287. source: "./media/characters/pandora/front.svg",
  17288. extra: 2720 / 2556,
  17289. bottom: 0.015
  17290. }
  17291. },
  17292. back: {
  17293. height: math.unit(6, "feet"),
  17294. weight: math.unit(150, "lb"),
  17295. name: "Back",
  17296. image: {
  17297. source: "./media/characters/pandora/back.svg",
  17298. extra: 2720 / 2556,
  17299. bottom: 0.01
  17300. }
  17301. },
  17302. beans: {
  17303. height: math.unit(6 / 8, "feet"),
  17304. name: "Beans",
  17305. image: {
  17306. source: "./media/characters/pandora/beans.svg"
  17307. }
  17308. },
  17309. collar: {
  17310. height: math.unit(0.31, "feet"),
  17311. name: "Collar",
  17312. image: {
  17313. source: "./media/characters/pandora/collar.svg"
  17314. }
  17315. },
  17316. skirt: {
  17317. height: math.unit(6, "feet"),
  17318. weight: math.unit(150, "lb"),
  17319. name: "Skirt",
  17320. image: {
  17321. source: "./media/characters/pandora/skirt.svg",
  17322. extra: 1622 / 1525,
  17323. bottom: 0.015
  17324. }
  17325. },
  17326. hoodie: {
  17327. height: math.unit(6, "feet"),
  17328. weight: math.unit(150, "lb"),
  17329. name: "Hoodie",
  17330. image: {
  17331. source: "./media/characters/pandora/hoodie.svg",
  17332. extra: 1622 / 1525,
  17333. bottom: 0.015
  17334. }
  17335. },
  17336. casual: {
  17337. height: math.unit(6, "feet"),
  17338. weight: math.unit(150, "lb"),
  17339. name: "Casual",
  17340. image: {
  17341. source: "./media/characters/pandora/casual.svg",
  17342. extra: 1622 / 1525,
  17343. bottom: 0.015
  17344. }
  17345. },
  17346. },
  17347. [
  17348. {
  17349. name: "Normal",
  17350. height: math.unit(6, "feet")
  17351. },
  17352. {
  17353. name: "Big Steppy",
  17354. height: math.unit(1, "km"),
  17355. default: true
  17356. },
  17357. {
  17358. name: "Galactic Steppy",
  17359. height: math.unit(2, "gigameters")
  17360. },
  17361. ]
  17362. ))
  17363. characterMakers.push(() => makeCharacter(
  17364. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17365. {
  17366. side: {
  17367. height: math.unit(10, "feet"),
  17368. weight: math.unit(800, "kg"),
  17369. name: "Side",
  17370. image: {
  17371. source: "./media/characters/venio-darcony/side.svg",
  17372. extra: 1373 / 1003,
  17373. bottom: 0.037
  17374. }
  17375. },
  17376. front: {
  17377. height: math.unit(19, "feet"),
  17378. weight: math.unit(800, "kg"),
  17379. name: "Front",
  17380. image: {
  17381. source: "./media/characters/venio-darcony/front.svg"
  17382. }
  17383. },
  17384. back: {
  17385. height: math.unit(19, "feet"),
  17386. weight: math.unit(800, "kg"),
  17387. name: "Back",
  17388. image: {
  17389. source: "./media/characters/venio-darcony/back.svg"
  17390. }
  17391. },
  17392. sideNsfw: {
  17393. height: math.unit(10, "feet"),
  17394. weight: math.unit(800, "kg"),
  17395. name: "Side (NSFW)",
  17396. image: {
  17397. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17398. extra: 1373 / 1003,
  17399. bottom: 0.037
  17400. }
  17401. },
  17402. frontNsfw: {
  17403. height: math.unit(19, "feet"),
  17404. weight: math.unit(800, "kg"),
  17405. name: "Front (NSFW)",
  17406. image: {
  17407. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17408. }
  17409. },
  17410. backNsfw: {
  17411. height: math.unit(19, "feet"),
  17412. weight: math.unit(800, "kg"),
  17413. name: "Back (NSFW)",
  17414. image: {
  17415. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17416. }
  17417. },
  17418. sideArmored: {
  17419. height: math.unit(10, "feet"),
  17420. weight: math.unit(800, "kg"),
  17421. name: "Side (Armored)",
  17422. image: {
  17423. source: "./media/characters/venio-darcony/side-armored.svg",
  17424. extra: 1373 / 1003,
  17425. bottom: 0.037
  17426. }
  17427. },
  17428. frontArmored: {
  17429. height: math.unit(19, "feet"),
  17430. weight: math.unit(900, "kg"),
  17431. name: "Front (Armored)",
  17432. image: {
  17433. source: "./media/characters/venio-darcony/front-armored.svg"
  17434. }
  17435. },
  17436. backArmored: {
  17437. height: math.unit(19, "feet"),
  17438. weight: math.unit(900, "kg"),
  17439. name: "Back (Armored)",
  17440. image: {
  17441. source: "./media/characters/venio-darcony/back-armored.svg"
  17442. }
  17443. },
  17444. sword: {
  17445. height: math.unit(10, "feet"),
  17446. weight: math.unit(50, "lb"),
  17447. name: "Sword",
  17448. image: {
  17449. source: "./media/characters/venio-darcony/sword.svg"
  17450. }
  17451. },
  17452. },
  17453. [
  17454. {
  17455. name: "Normal",
  17456. height: math.unit(10, "feet")
  17457. },
  17458. {
  17459. name: "Macro",
  17460. height: math.unit(130, "feet"),
  17461. default: true
  17462. },
  17463. {
  17464. name: "Macro+",
  17465. height: math.unit(240, "feet")
  17466. },
  17467. ]
  17468. ))
  17469. characterMakers.push(() => makeCharacter(
  17470. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17471. {
  17472. front: {
  17473. height: math.unit(6, "feet"),
  17474. weight: math.unit(150, "lb"),
  17475. name: "Front",
  17476. image: {
  17477. source: "./media/characters/veski/front.svg",
  17478. extra: 1299 / 1225,
  17479. bottom: 0.04
  17480. }
  17481. },
  17482. back: {
  17483. height: math.unit(6, "feet"),
  17484. weight: math.unit(150, "lb"),
  17485. name: "Back",
  17486. image: {
  17487. source: "./media/characters/veski/back.svg",
  17488. extra: 1299 / 1225,
  17489. bottom: 0.008
  17490. }
  17491. },
  17492. maw: {
  17493. height: math.unit(1.5 * 1.21, "feet"),
  17494. name: "Maw",
  17495. image: {
  17496. source: "./media/characters/veski/maw.svg"
  17497. }
  17498. },
  17499. },
  17500. [
  17501. {
  17502. name: "Macro",
  17503. height: math.unit(2, "km"),
  17504. default: true
  17505. },
  17506. ]
  17507. ))
  17508. characterMakers.push(() => makeCharacter(
  17509. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17510. {
  17511. front: {
  17512. height: math.unit(5 + 7 / 12, "feet"),
  17513. name: "Front",
  17514. image: {
  17515. source: "./media/characters/isabelle/front.svg",
  17516. extra: 2130 / 1976,
  17517. bottom: 0.05
  17518. }
  17519. },
  17520. },
  17521. [
  17522. {
  17523. name: "Supermicro",
  17524. height: math.unit(10, "micrometers")
  17525. },
  17526. {
  17527. name: "Micro",
  17528. height: math.unit(1, "inch")
  17529. },
  17530. {
  17531. name: "Tiny",
  17532. height: math.unit(5, "inches")
  17533. },
  17534. {
  17535. name: "Standard",
  17536. height: math.unit(5 + 7 / 12, "inches")
  17537. },
  17538. {
  17539. name: "Macro",
  17540. height: math.unit(80, "meters"),
  17541. default: true
  17542. },
  17543. {
  17544. name: "Megamacro",
  17545. height: math.unit(250, "meters")
  17546. },
  17547. {
  17548. name: "Gigamacro",
  17549. height: math.unit(5, "km")
  17550. },
  17551. {
  17552. name: "Cosmic",
  17553. height: math.unit(2.5e6, "miles")
  17554. },
  17555. ]
  17556. ))
  17557. characterMakers.push(() => makeCharacter(
  17558. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17559. {
  17560. front: {
  17561. height: math.unit(6, "feet"),
  17562. weight: math.unit(150, "lb"),
  17563. name: "Front",
  17564. image: {
  17565. source: "./media/characters/hanzo/front.svg",
  17566. extra: 374 / 344,
  17567. bottom: 0.02
  17568. }
  17569. },
  17570. },
  17571. [
  17572. {
  17573. name: "Normal",
  17574. height: math.unit(8, "feet"),
  17575. default: true
  17576. },
  17577. ]
  17578. ))
  17579. characterMakers.push(() => makeCharacter(
  17580. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17581. {
  17582. front: {
  17583. height: math.unit(7, "feet"),
  17584. weight: math.unit(130, "lb"),
  17585. name: "Front",
  17586. image: {
  17587. source: "./media/characters/anna/front.svg",
  17588. extra: 169 / 145,
  17589. bottom: 0.06
  17590. }
  17591. },
  17592. full: {
  17593. height: math.unit(4.96, "feet"),
  17594. weight: math.unit(220, "lb"),
  17595. name: "Full",
  17596. image: {
  17597. source: "./media/characters/anna/full.svg",
  17598. extra: 138 / 114,
  17599. bottom: 0.15
  17600. }
  17601. },
  17602. tongue: {
  17603. height: math.unit(2.53, "feet"),
  17604. name: "Tongue",
  17605. image: {
  17606. source: "./media/characters/anna/tongue.svg"
  17607. }
  17608. },
  17609. },
  17610. [
  17611. {
  17612. name: "Normal",
  17613. height: math.unit(7, "feet"),
  17614. default: true
  17615. },
  17616. ]
  17617. ))
  17618. characterMakers.push(() => makeCharacter(
  17619. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17620. {
  17621. front: {
  17622. height: math.unit(7, "feet"),
  17623. weight: math.unit(150, "lb"),
  17624. name: "Front",
  17625. image: {
  17626. source: "./media/characters/ian-corvid/front.svg",
  17627. extra: 150 / 142,
  17628. bottom: 0.02
  17629. }
  17630. },
  17631. back: {
  17632. height: math.unit(7, "feet"),
  17633. weight: math.unit(150, "lb"),
  17634. name: "Back",
  17635. image: {
  17636. source: "./media/characters/ian-corvid/back.svg",
  17637. extra: 150 / 143,
  17638. bottom: 0.01
  17639. }
  17640. },
  17641. stomping: {
  17642. height: math.unit(7, "feet"),
  17643. weight: math.unit(150, "lb"),
  17644. name: "Stomping",
  17645. image: {
  17646. source: "./media/characters/ian-corvid/stomping.svg",
  17647. extra: 76 / 72
  17648. }
  17649. },
  17650. sitting: {
  17651. height: math.unit(7 / 1.8, "feet"),
  17652. weight: math.unit(150, "lb"),
  17653. name: "Sitting",
  17654. image: {
  17655. source: "./media/characters/ian-corvid/sitting.svg",
  17656. extra: 1400 / 1269,
  17657. bottom: 0.15
  17658. }
  17659. },
  17660. },
  17661. [
  17662. {
  17663. name: "Tiny Microw",
  17664. height: math.unit(1, "inch")
  17665. },
  17666. {
  17667. name: "Microw",
  17668. height: math.unit(6, "inches")
  17669. },
  17670. {
  17671. name: "Crow",
  17672. height: math.unit(7 + 1 / 12, "feet"),
  17673. default: true
  17674. },
  17675. {
  17676. name: "Macrow",
  17677. height: math.unit(176, "feet")
  17678. },
  17679. ]
  17680. ))
  17681. characterMakers.push(() => makeCharacter(
  17682. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17683. {
  17684. front: {
  17685. height: math.unit(5 + 7 / 12, "feet"),
  17686. weight: math.unit(147, "lb"),
  17687. name: "Front",
  17688. image: {
  17689. source: "./media/characters/natalie-kellon/front.svg",
  17690. extra: 1214 / 1141,
  17691. bottom: 0.02
  17692. }
  17693. },
  17694. },
  17695. [
  17696. {
  17697. name: "Micro",
  17698. height: math.unit(1 / 16, "inch")
  17699. },
  17700. {
  17701. name: "Tiny",
  17702. height: math.unit(4, "inches")
  17703. },
  17704. {
  17705. name: "Normal",
  17706. height: math.unit(5 + 7 / 12, "feet"),
  17707. default: true
  17708. },
  17709. {
  17710. name: "Amazon",
  17711. height: math.unit(12, "feet")
  17712. },
  17713. {
  17714. name: "Giantess",
  17715. height: math.unit(160, "meters")
  17716. },
  17717. {
  17718. name: "Titaness",
  17719. height: math.unit(800, "meters")
  17720. },
  17721. ]
  17722. ))
  17723. characterMakers.push(() => makeCharacter(
  17724. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17725. {
  17726. front: {
  17727. height: math.unit(6, "feet"),
  17728. weight: math.unit(150, "lb"),
  17729. name: "Front",
  17730. image: {
  17731. source: "./media/characters/alluria/front.svg",
  17732. extra: 806 / 738,
  17733. bottom: 0.01
  17734. }
  17735. },
  17736. side: {
  17737. height: math.unit(6, "feet"),
  17738. weight: math.unit(150, "lb"),
  17739. name: "Side",
  17740. image: {
  17741. source: "./media/characters/alluria/side.svg",
  17742. extra: 800 / 750,
  17743. }
  17744. },
  17745. back: {
  17746. height: math.unit(6, "feet"),
  17747. weight: math.unit(150, "lb"),
  17748. name: "Back",
  17749. image: {
  17750. source: "./media/characters/alluria/back.svg",
  17751. extra: 806 / 738,
  17752. }
  17753. },
  17754. frontMaid: {
  17755. height: math.unit(6, "feet"),
  17756. weight: math.unit(150, "lb"),
  17757. name: "Front (Maid)",
  17758. image: {
  17759. source: "./media/characters/alluria/front-maid.svg",
  17760. extra: 806 / 738,
  17761. bottom: 0.01
  17762. }
  17763. },
  17764. sideMaid: {
  17765. height: math.unit(6, "feet"),
  17766. weight: math.unit(150, "lb"),
  17767. name: "Side (Maid)",
  17768. image: {
  17769. source: "./media/characters/alluria/side-maid.svg",
  17770. extra: 800 / 750,
  17771. bottom: 0.005
  17772. }
  17773. },
  17774. backMaid: {
  17775. height: math.unit(6, "feet"),
  17776. weight: math.unit(150, "lb"),
  17777. name: "Back (Maid)",
  17778. image: {
  17779. source: "./media/characters/alluria/back-maid.svg",
  17780. extra: 806 / 738,
  17781. }
  17782. },
  17783. },
  17784. [
  17785. {
  17786. name: "Micro",
  17787. height: math.unit(6, "inches"),
  17788. default: true
  17789. },
  17790. ]
  17791. ))
  17792. characterMakers.push(() => makeCharacter(
  17793. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17794. {
  17795. front: {
  17796. height: math.unit(6, "feet"),
  17797. weight: math.unit(150, "lb"),
  17798. name: "Front",
  17799. image: {
  17800. source: "./media/characters/kyle/front.svg",
  17801. extra: 1069 / 962,
  17802. bottom: 77.228 / 1727.45
  17803. }
  17804. },
  17805. },
  17806. [
  17807. {
  17808. name: "Macro",
  17809. height: math.unit(150, "feet"),
  17810. default: true
  17811. },
  17812. ]
  17813. ))
  17814. characterMakers.push(() => makeCharacter(
  17815. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17816. {
  17817. front: {
  17818. height: math.unit(6, "feet"),
  17819. weight: math.unit(300, "lb"),
  17820. name: "Front",
  17821. image: {
  17822. source: "./media/characters/duncan/front.svg",
  17823. extra: 1650 / 1482,
  17824. bottom: 0.05
  17825. }
  17826. },
  17827. },
  17828. [
  17829. {
  17830. name: "Macro",
  17831. height: math.unit(100, "feet"),
  17832. default: true
  17833. },
  17834. ]
  17835. ))
  17836. characterMakers.push(() => makeCharacter(
  17837. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17838. {
  17839. front: {
  17840. height: math.unit(5 + 4 / 12, "feet"),
  17841. weight: math.unit(220, "lb"),
  17842. name: "Front",
  17843. image: {
  17844. source: "./media/characters/memory/front.svg",
  17845. extra: 3641 / 3545,
  17846. bottom: 0.03
  17847. }
  17848. },
  17849. back: {
  17850. height: math.unit(5 + 4 / 12, "feet"),
  17851. weight: math.unit(220, "lb"),
  17852. name: "Back",
  17853. image: {
  17854. source: "./media/characters/memory/back.svg",
  17855. extra: 3641 / 3545,
  17856. bottom: 0.025
  17857. }
  17858. },
  17859. frontSkirt: {
  17860. height: math.unit(5 + 4 / 12, "feet"),
  17861. weight: math.unit(220, "lb"),
  17862. name: "Front (Skirt)",
  17863. image: {
  17864. source: "./media/characters/memory/front-skirt.svg",
  17865. extra: 3641 / 3545,
  17866. bottom: 0.03
  17867. }
  17868. },
  17869. frontDress: {
  17870. height: math.unit(5 + 4 / 12, "feet"),
  17871. weight: math.unit(220, "lb"),
  17872. name: "Front (Dress)",
  17873. image: {
  17874. source: "./media/characters/memory/front-dress.svg",
  17875. extra: 3641 / 3545,
  17876. bottom: 0.03
  17877. }
  17878. },
  17879. },
  17880. [
  17881. {
  17882. name: "Micro",
  17883. height: math.unit(6, "inches"),
  17884. default: true
  17885. },
  17886. {
  17887. name: "Normal",
  17888. height: math.unit(5 + 4 / 12, "feet")
  17889. },
  17890. ]
  17891. ))
  17892. characterMakers.push(() => makeCharacter(
  17893. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17894. {
  17895. front: {
  17896. height: math.unit(4 + 11 / 12, "feet"),
  17897. weight: math.unit(100, "lb"),
  17898. name: "Front",
  17899. image: {
  17900. source: "./media/characters/luno/front.svg",
  17901. extra: 1535 / 1487,
  17902. bottom: 0.03
  17903. }
  17904. },
  17905. },
  17906. [
  17907. {
  17908. name: "Micro",
  17909. height: math.unit(3, "inches")
  17910. },
  17911. {
  17912. name: "Normal",
  17913. height: math.unit(4 + 11 / 12, "feet"),
  17914. default: true
  17915. },
  17916. {
  17917. name: "Macro",
  17918. height: math.unit(300, "feet")
  17919. },
  17920. {
  17921. name: "Megamacro",
  17922. height: math.unit(700, "miles")
  17923. },
  17924. ]
  17925. ))
  17926. characterMakers.push(() => makeCharacter(
  17927. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17928. {
  17929. front: {
  17930. height: math.unit(6 + 2 / 12, "feet"),
  17931. weight: math.unit(170, "lb"),
  17932. name: "Front",
  17933. image: {
  17934. source: "./media/characters/jamesy/front.svg",
  17935. extra: 440 / 382,
  17936. bottom: 0.005
  17937. }
  17938. },
  17939. },
  17940. [
  17941. {
  17942. name: "Micro",
  17943. height: math.unit(3, "inches")
  17944. },
  17945. {
  17946. name: "Normal",
  17947. height: math.unit(6 + 2 / 12, "feet"),
  17948. default: true
  17949. },
  17950. {
  17951. name: "Macro",
  17952. height: math.unit(300, "feet")
  17953. },
  17954. {
  17955. name: "Megamacro",
  17956. height: math.unit(700, "miles")
  17957. },
  17958. ]
  17959. ))
  17960. characterMakers.push(() => makeCharacter(
  17961. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17962. {
  17963. front: {
  17964. height: math.unit(6, "feet"),
  17965. weight: math.unit(160, "lb"),
  17966. name: "Front",
  17967. image: {
  17968. source: "./media/characters/mark/front.svg",
  17969. extra: 3300 / 3100,
  17970. bottom: 136.42 / 3440.47
  17971. }
  17972. },
  17973. },
  17974. [
  17975. {
  17976. name: "Macro",
  17977. height: math.unit(120, "meters")
  17978. },
  17979. {
  17980. name: "Bigger Macro",
  17981. height: math.unit(350, "meters")
  17982. },
  17983. {
  17984. name: "Megamacro",
  17985. height: math.unit(8, "km"),
  17986. default: true
  17987. },
  17988. {
  17989. name: "Continental",
  17990. height: math.unit(4550, "km")
  17991. },
  17992. {
  17993. name: "Planetary",
  17994. height: math.unit(65000, "km")
  17995. },
  17996. ]
  17997. ))
  17998. characterMakers.push(() => makeCharacter(
  17999. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18000. {
  18001. front: {
  18002. height: math.unit(6, "feet"),
  18003. weight: math.unit(400, "lb"),
  18004. name: "Front",
  18005. image: {
  18006. source: "./media/characters/mac/front.svg",
  18007. extra: 1048 / 987.7,
  18008. bottom: 60 / 1107.6,
  18009. }
  18010. },
  18011. },
  18012. [
  18013. {
  18014. name: "Macro",
  18015. height: math.unit(500, "feet"),
  18016. default: true
  18017. },
  18018. ]
  18019. ))
  18020. characterMakers.push(() => makeCharacter(
  18021. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18022. {
  18023. front: {
  18024. height: math.unit(5 + 2 / 12, "feet"),
  18025. weight: math.unit(190, "lb"),
  18026. name: "Front",
  18027. image: {
  18028. source: "./media/characters/bari/front.svg",
  18029. extra: 3156 / 2880,
  18030. bottom: 0.03
  18031. }
  18032. },
  18033. back: {
  18034. height: math.unit(5 + 2 / 12, "feet"),
  18035. weight: math.unit(190, "lb"),
  18036. name: "Back",
  18037. image: {
  18038. source: "./media/characters/bari/back.svg",
  18039. extra: 3260 / 2834,
  18040. bottom: 0.025
  18041. }
  18042. },
  18043. frontPlush: {
  18044. height: math.unit(5 + 2 / 12, "feet"),
  18045. weight: math.unit(190, "lb"),
  18046. name: "Front (Plush)",
  18047. image: {
  18048. source: "./media/characters/bari/front-plush.svg",
  18049. extra: 1112 / 1061,
  18050. bottom: 0.002
  18051. }
  18052. },
  18053. },
  18054. [
  18055. {
  18056. name: "Micro",
  18057. height: math.unit(3, "inches")
  18058. },
  18059. {
  18060. name: "Normal",
  18061. height: math.unit(5 + 2 / 12, "feet"),
  18062. default: true
  18063. },
  18064. {
  18065. name: "Macro",
  18066. height: math.unit(20, "feet")
  18067. },
  18068. ]
  18069. ))
  18070. characterMakers.push(() => makeCharacter(
  18071. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18072. {
  18073. front: {
  18074. height: math.unit(6 + 1 / 12, "feet"),
  18075. weight: math.unit(275, "lb"),
  18076. name: "Front",
  18077. image: {
  18078. source: "./media/characters/hunter-misha-raven/front.svg"
  18079. }
  18080. },
  18081. },
  18082. [
  18083. {
  18084. name: "Mortal",
  18085. height: math.unit(6 + 1 / 12, "feet")
  18086. },
  18087. {
  18088. name: "Divine",
  18089. height: math.unit(1.12134e34, "parsecs"),
  18090. default: true
  18091. },
  18092. ]
  18093. ))
  18094. characterMakers.push(() => makeCharacter(
  18095. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18096. {
  18097. front: {
  18098. height: math.unit(6 + 3 / 12, "feet"),
  18099. weight: math.unit(220, "lb"),
  18100. name: "Front",
  18101. image: {
  18102. source: "./media/characters/max-calore/front.svg",
  18103. extra: 1700 / 1648,
  18104. bottom: 0.01
  18105. }
  18106. },
  18107. back: {
  18108. height: math.unit(6 + 3 / 12, "feet"),
  18109. weight: math.unit(220, "lb"),
  18110. name: "Back",
  18111. image: {
  18112. source: "./media/characters/max-calore/back.svg",
  18113. extra: 1700 / 1648,
  18114. bottom: 0.01
  18115. }
  18116. },
  18117. },
  18118. [
  18119. {
  18120. name: "Normal",
  18121. height: math.unit(6 + 3 / 12, "feet"),
  18122. default: true
  18123. },
  18124. ]
  18125. ))
  18126. characterMakers.push(() => makeCharacter(
  18127. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18128. {
  18129. side: {
  18130. height: math.unit(2 + 8 / 12, "feet"),
  18131. weight: math.unit(99, "lb"),
  18132. name: "Side",
  18133. image: {
  18134. source: "./media/characters/aspen/side.svg",
  18135. extra: 152 / 138,
  18136. bottom: 0.032
  18137. }
  18138. },
  18139. },
  18140. [
  18141. {
  18142. name: "Normal",
  18143. height: math.unit(2 + 8 / 12, "feet"),
  18144. default: true
  18145. },
  18146. ]
  18147. ))
  18148. characterMakers.push(() => makeCharacter(
  18149. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18150. {
  18151. side: {
  18152. height: math.unit(3 + 2 / 12, "feet"),
  18153. weight: math.unit(224, "lb"),
  18154. name: "Side",
  18155. image: {
  18156. source: "./media/characters/sheila-feral-wolf/side.svg",
  18157. extra: 179 / 166,
  18158. bottom: 0.03
  18159. }
  18160. },
  18161. },
  18162. [
  18163. {
  18164. name: "Normal",
  18165. height: math.unit(3 + 2 / 12, "feet"),
  18166. default: true
  18167. },
  18168. ]
  18169. ))
  18170. characterMakers.push(() => makeCharacter(
  18171. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18172. {
  18173. side: {
  18174. height: math.unit(1 + 9 / 12, "feet"),
  18175. weight: math.unit(38, "lb"),
  18176. name: "Side",
  18177. image: {
  18178. source: "./media/characters/michelle/side.svg",
  18179. extra: 147 / 136.7,
  18180. bottom: 0.03
  18181. }
  18182. },
  18183. },
  18184. [
  18185. {
  18186. name: "Normal",
  18187. height: math.unit(1 + 9 / 12, "feet"),
  18188. default: true
  18189. },
  18190. ]
  18191. ))
  18192. characterMakers.push(() => makeCharacter(
  18193. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18194. {
  18195. front: {
  18196. height: math.unit(1.54, "feet"),
  18197. weight: math.unit(50, "lb"),
  18198. name: "Front",
  18199. image: {
  18200. source: "./media/characters/nino/front.svg"
  18201. }
  18202. },
  18203. },
  18204. [
  18205. {
  18206. name: "Normal",
  18207. height: math.unit(1.54, "feet"),
  18208. default: true
  18209. },
  18210. ]
  18211. ))
  18212. characterMakers.push(() => makeCharacter(
  18213. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18214. {
  18215. front: {
  18216. height: math.unit(1.49, "feet"),
  18217. weight: math.unit(45, "lb"),
  18218. name: "Front",
  18219. image: {
  18220. source: "./media/characters/viola/front.svg"
  18221. }
  18222. },
  18223. },
  18224. [
  18225. {
  18226. name: "Normal",
  18227. height: math.unit(1.49, "feet"),
  18228. default: true
  18229. },
  18230. ]
  18231. ))
  18232. characterMakers.push(() => makeCharacter(
  18233. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18234. {
  18235. front: {
  18236. height: math.unit(6 + 5 / 12, "feet"),
  18237. weight: math.unit(580, "lb"),
  18238. name: "Front",
  18239. image: {
  18240. source: "./media/characters/atlas/front.svg",
  18241. extra: 298.5 / 290,
  18242. bottom: 0.015
  18243. }
  18244. },
  18245. },
  18246. [
  18247. {
  18248. name: "Normal",
  18249. height: math.unit(6 + 5 / 12, "feet"),
  18250. default: true
  18251. },
  18252. ]
  18253. ))
  18254. characterMakers.push(() => makeCharacter(
  18255. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18256. {
  18257. side: {
  18258. height: math.unit(15.6, "inches"),
  18259. weight: math.unit(10, "lb"),
  18260. name: "Side",
  18261. image: {
  18262. source: "./media/characters/davy/side.svg",
  18263. extra: 200 / 170,
  18264. bottom: 0.01
  18265. }
  18266. },
  18267. },
  18268. [
  18269. {
  18270. name: "Normal",
  18271. height: math.unit(15.6, "inches"),
  18272. default: true
  18273. },
  18274. ]
  18275. ))
  18276. characterMakers.push(() => makeCharacter(
  18277. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18278. {
  18279. side: {
  18280. height: math.unit(4 + 8 / 12, "feet"),
  18281. weight: math.unit(166, "lb"),
  18282. name: "Side",
  18283. image: {
  18284. source: "./media/characters/fiona/side.svg",
  18285. extra: 232 / 220,
  18286. bottom: 0.03
  18287. }
  18288. },
  18289. },
  18290. [
  18291. {
  18292. name: "Normal",
  18293. height: math.unit(4 + 8 / 12, "feet"),
  18294. default: true
  18295. },
  18296. ]
  18297. ))
  18298. characterMakers.push(() => makeCharacter(
  18299. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18300. {
  18301. front: {
  18302. height: math.unit(26, "inches"),
  18303. weight: math.unit(35, "lb"),
  18304. name: "Front",
  18305. image: {
  18306. source: "./media/characters/lyla/front.svg",
  18307. bottom: 0.1
  18308. }
  18309. },
  18310. },
  18311. [
  18312. {
  18313. name: "Normal",
  18314. height: math.unit(3, "feet"),
  18315. default: true
  18316. },
  18317. ]
  18318. ))
  18319. characterMakers.push(() => makeCharacter(
  18320. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18321. {
  18322. side: {
  18323. height: math.unit(1.8, "feet"),
  18324. weight: math.unit(44, "lb"),
  18325. name: "Side",
  18326. image: {
  18327. source: "./media/characters/perseus/side.svg",
  18328. bottom: 0.21
  18329. }
  18330. },
  18331. },
  18332. [
  18333. {
  18334. name: "Normal",
  18335. height: math.unit(1.8, "feet"),
  18336. default: true
  18337. },
  18338. ]
  18339. ))
  18340. characterMakers.push(() => makeCharacter(
  18341. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18342. {
  18343. side: {
  18344. height: math.unit(4 + 2 / 12, "feet"),
  18345. weight: math.unit(20, "lb"),
  18346. name: "Side",
  18347. image: {
  18348. source: "./media/characters/remus/side.svg"
  18349. }
  18350. },
  18351. },
  18352. [
  18353. {
  18354. name: "Normal",
  18355. height: math.unit(4 + 2 / 12, "feet"),
  18356. default: true
  18357. },
  18358. ]
  18359. ))
  18360. characterMakers.push(() => makeCharacter(
  18361. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18362. {
  18363. front: {
  18364. height: math.unit(4 + 11 / 12, "feet"),
  18365. weight: math.unit(114, "lb"),
  18366. name: "Front",
  18367. image: {
  18368. source: "./media/characters/raf/front.svg",
  18369. extra: 1504/1339,
  18370. bottom: 26/1530
  18371. }
  18372. },
  18373. side: {
  18374. height: math.unit(4 + 11 / 12, "feet"),
  18375. weight: math.unit(114, "lb"),
  18376. name: "Side",
  18377. image: {
  18378. source: "./media/characters/raf/side.svg",
  18379. extra: 1466/1316,
  18380. bottom: 29/1495
  18381. }
  18382. },
  18383. paw: {
  18384. height: math.unit(1.45, "feet"),
  18385. name: "Paw",
  18386. image: {
  18387. source: "./media/characters/raf/paw.svg"
  18388. },
  18389. extraAttributes: {
  18390. "toeSize": {
  18391. name: "Toe Size",
  18392. power: 2,
  18393. type: "area",
  18394. base: math.unit(0.004, "m^2")
  18395. },
  18396. "padSize": {
  18397. name: "Pad Size",
  18398. power: 2,
  18399. type: "area",
  18400. base: math.unit(0.04, "m^2")
  18401. },
  18402. "footSize": {
  18403. name: "Foot Size",
  18404. power: 2,
  18405. type: "area",
  18406. base: math.unit(0.08, "m^2")
  18407. },
  18408. }
  18409. },
  18410. },
  18411. [
  18412. {
  18413. name: "Micro",
  18414. height: math.unit(2, "inches")
  18415. },
  18416. {
  18417. name: "Normal",
  18418. height: math.unit(4 + 11 / 12, "feet"),
  18419. default: true
  18420. },
  18421. {
  18422. name: "Macro",
  18423. height: math.unit(70, "feet")
  18424. },
  18425. ]
  18426. ))
  18427. characterMakers.push(() => makeCharacter(
  18428. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18429. {
  18430. front: {
  18431. height: math.unit(1.5, "meters"),
  18432. weight: math.unit(68, "kg"),
  18433. name: "Front",
  18434. image: {
  18435. source: "./media/characters/liam-einarr/front.svg",
  18436. extra: 2822 / 2666
  18437. }
  18438. },
  18439. back: {
  18440. height: math.unit(1.5, "meters"),
  18441. weight: math.unit(68, "kg"),
  18442. name: "Back",
  18443. image: {
  18444. source: "./media/characters/liam-einarr/back.svg",
  18445. extra: 2822 / 2666,
  18446. bottom: 0.015
  18447. }
  18448. },
  18449. },
  18450. [
  18451. {
  18452. name: "Normal",
  18453. height: math.unit(1.5, "meters"),
  18454. default: true
  18455. },
  18456. {
  18457. name: "Macro",
  18458. height: math.unit(150, "meters")
  18459. },
  18460. {
  18461. name: "Megamacro",
  18462. height: math.unit(35, "km")
  18463. },
  18464. ]
  18465. ))
  18466. characterMakers.push(() => makeCharacter(
  18467. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18468. {
  18469. front: {
  18470. height: math.unit(6, "feet"),
  18471. weight: math.unit(75, "kg"),
  18472. name: "Front",
  18473. image: {
  18474. source: "./media/characters/linda/front.svg",
  18475. extra: 930 / 874,
  18476. bottom: 0.004
  18477. }
  18478. },
  18479. },
  18480. [
  18481. {
  18482. name: "Normal",
  18483. height: math.unit(6, "feet"),
  18484. default: true
  18485. },
  18486. ]
  18487. ))
  18488. characterMakers.push(() => makeCharacter(
  18489. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18490. {
  18491. front: {
  18492. height: math.unit(6 + 8 / 12, "feet"),
  18493. weight: math.unit(220, "lb"),
  18494. name: "Front",
  18495. image: {
  18496. source: "./media/characters/caylex/front.svg",
  18497. extra: 821 / 772,
  18498. bottom: 0.07
  18499. }
  18500. },
  18501. back: {
  18502. height: math.unit(6 + 8 / 12, "feet"),
  18503. weight: math.unit(220, "lb"),
  18504. name: "Back",
  18505. image: {
  18506. source: "./media/characters/caylex/back.svg",
  18507. extra: 821 / 772,
  18508. bottom: 0.022
  18509. }
  18510. },
  18511. hand: {
  18512. height: math.unit(1.25, "feet"),
  18513. name: "Hand",
  18514. image: {
  18515. source: "./media/characters/caylex/hand.svg"
  18516. }
  18517. },
  18518. foot: {
  18519. height: math.unit(1.6, "feet"),
  18520. name: "Foot",
  18521. image: {
  18522. source: "./media/characters/caylex/foot.svg"
  18523. }
  18524. },
  18525. armored: {
  18526. height: math.unit(6 + 8 / 12, "feet"),
  18527. weight: math.unit(250, "lb"),
  18528. name: "Armored",
  18529. image: {
  18530. source: "./media/characters/caylex/armored.svg",
  18531. extra: 1420 / 1310,
  18532. bottom: 0.045
  18533. }
  18534. },
  18535. },
  18536. [
  18537. {
  18538. name: "Normal",
  18539. height: math.unit(6 + 8 / 12, "feet"),
  18540. default: true
  18541. },
  18542. {
  18543. name: "Normal+",
  18544. height: math.unit(12, "feet")
  18545. },
  18546. ]
  18547. ))
  18548. characterMakers.push(() => makeCharacter(
  18549. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18550. {
  18551. front: {
  18552. height: math.unit(7 + 6 / 12, "feet"),
  18553. weight: math.unit(288, "lb"),
  18554. name: "Front",
  18555. image: {
  18556. source: "./media/characters/alana/front.svg",
  18557. extra: 679 / 653,
  18558. bottom: 22.5 / 701
  18559. }
  18560. },
  18561. },
  18562. [
  18563. {
  18564. name: "Normal",
  18565. height: math.unit(7 + 6 / 12, "feet")
  18566. },
  18567. {
  18568. name: "Large",
  18569. height: math.unit(50, "feet")
  18570. },
  18571. {
  18572. name: "Macro",
  18573. height: math.unit(100, "feet"),
  18574. default: true
  18575. },
  18576. {
  18577. name: "Macro+",
  18578. height: math.unit(200, "feet")
  18579. },
  18580. ]
  18581. ))
  18582. characterMakers.push(() => makeCharacter(
  18583. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18584. {
  18585. front: {
  18586. height: math.unit(6 + 1 / 12, "feet"),
  18587. weight: math.unit(210, "lb"),
  18588. name: "Front",
  18589. image: {
  18590. source: "./media/characters/hasani/front.svg",
  18591. extra: 244 / 232,
  18592. bottom: 0.01
  18593. }
  18594. },
  18595. back: {
  18596. height: math.unit(6 + 1 / 12, "feet"),
  18597. weight: math.unit(210, "lb"),
  18598. name: "Back",
  18599. image: {
  18600. source: "./media/characters/hasani/back.svg",
  18601. extra: 244 / 232,
  18602. bottom: 0.01
  18603. }
  18604. },
  18605. },
  18606. [
  18607. {
  18608. name: "Normal",
  18609. height: math.unit(6 + 1 / 12, "feet")
  18610. },
  18611. {
  18612. name: "Macro",
  18613. height: math.unit(175, "feet"),
  18614. default: true
  18615. },
  18616. ]
  18617. ))
  18618. characterMakers.push(() => makeCharacter(
  18619. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18620. {
  18621. front: {
  18622. height: math.unit(1.82, "meters"),
  18623. weight: math.unit(140, "lb"),
  18624. name: "Front",
  18625. image: {
  18626. source: "./media/characters/nita/front.svg",
  18627. extra: 2473 / 2363,
  18628. bottom: 0.01
  18629. }
  18630. },
  18631. },
  18632. [
  18633. {
  18634. name: "Normal",
  18635. height: math.unit(1.82, "m")
  18636. },
  18637. {
  18638. name: "Macro",
  18639. height: math.unit(300, "m")
  18640. },
  18641. {
  18642. name: "Mistake Canon",
  18643. height: math.unit(0.5, "miles"),
  18644. default: true
  18645. },
  18646. {
  18647. name: "Big Mistake",
  18648. height: math.unit(13, "miles")
  18649. },
  18650. {
  18651. name: "Playing God",
  18652. height: math.unit(2450, "miles")
  18653. },
  18654. ]
  18655. ))
  18656. characterMakers.push(() => makeCharacter(
  18657. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18658. {
  18659. front: {
  18660. height: math.unit(4, "feet"),
  18661. weight: math.unit(120, "lb"),
  18662. name: "Front",
  18663. image: {
  18664. source: "./media/characters/shiriko/front.svg",
  18665. extra: 970/934,
  18666. bottom: 5/975
  18667. }
  18668. },
  18669. },
  18670. [
  18671. {
  18672. name: "Normal",
  18673. height: math.unit(4, "feet"),
  18674. default: true
  18675. },
  18676. ]
  18677. ))
  18678. characterMakers.push(() => makeCharacter(
  18679. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18680. {
  18681. front: {
  18682. height: math.unit(6, "feet"),
  18683. name: "front",
  18684. image: {
  18685. source: "./media/characters/deja/front.svg",
  18686. extra: 926 / 840,
  18687. bottom: 0.07
  18688. }
  18689. },
  18690. },
  18691. [
  18692. {
  18693. name: "Planck Length",
  18694. height: math.unit(1.6e-35, "meters")
  18695. },
  18696. {
  18697. name: "Normal",
  18698. height: math.unit(30.48, "meters"),
  18699. default: true
  18700. },
  18701. {
  18702. name: "Universal",
  18703. height: math.unit(8.8e26, "meters")
  18704. },
  18705. ]
  18706. ))
  18707. characterMakers.push(() => makeCharacter(
  18708. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18709. {
  18710. side: {
  18711. height: math.unit(8, "feet"),
  18712. weight: math.unit(6300, "lb"),
  18713. name: "Side",
  18714. image: {
  18715. source: "./media/characters/anima/side.svg",
  18716. bottom: 0.035
  18717. }
  18718. },
  18719. },
  18720. [
  18721. {
  18722. name: "Normal",
  18723. height: math.unit(8, "feet"),
  18724. default: true
  18725. },
  18726. ]
  18727. ))
  18728. characterMakers.push(() => makeCharacter(
  18729. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18730. {
  18731. front: {
  18732. height: math.unit(8, "feet"),
  18733. weight: math.unit(350, "lb"),
  18734. name: "Front",
  18735. image: {
  18736. source: "./media/characters/bianca/front.svg",
  18737. extra: 234 / 225,
  18738. bottom: 0.03
  18739. }
  18740. },
  18741. },
  18742. [
  18743. {
  18744. name: "Normal",
  18745. height: math.unit(8, "feet"),
  18746. default: true
  18747. },
  18748. ]
  18749. ))
  18750. characterMakers.push(() => makeCharacter(
  18751. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18752. {
  18753. front: {
  18754. height: math.unit(11 + 5/12, "feet"),
  18755. weight: math.unit(1200, "lb"),
  18756. name: "Front",
  18757. image: {
  18758. source: "./media/characters/adinia/front.svg",
  18759. extra: 1767/1641,
  18760. bottom: 44/1811
  18761. },
  18762. extraAttributes: {
  18763. "energyIntake": {
  18764. name: "Energy Intake",
  18765. power: 3,
  18766. type: "energy",
  18767. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18768. },
  18769. }
  18770. },
  18771. back: {
  18772. height: math.unit(11 + 5/12, "feet"),
  18773. weight: math.unit(1200, "lb"),
  18774. name: "Back",
  18775. image: {
  18776. source: "./media/characters/adinia/back.svg",
  18777. extra: 1834/1684,
  18778. bottom: 14/1848
  18779. },
  18780. extraAttributes: {
  18781. "energyIntake": {
  18782. name: "Energy Intake",
  18783. power: 3,
  18784. type: "energy",
  18785. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18786. },
  18787. }
  18788. },
  18789. maw: {
  18790. height: math.unit(3.79, "feet"),
  18791. name: "Maw",
  18792. image: {
  18793. source: "./media/characters/adinia/maw.svg"
  18794. }
  18795. },
  18796. rump: {
  18797. height: math.unit(4.6, "feet"),
  18798. name: "Rump",
  18799. image: {
  18800. source: "./media/characters/adinia/rump.svg"
  18801. }
  18802. },
  18803. },
  18804. [
  18805. {
  18806. name: "Normal",
  18807. height: math.unit(11 + 5 / 12, "feet"),
  18808. default: true
  18809. },
  18810. ]
  18811. ))
  18812. characterMakers.push(() => makeCharacter(
  18813. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18814. {
  18815. front: {
  18816. height: math.unit(3, "meters"),
  18817. weight: math.unit(200, "kg"),
  18818. name: "Front",
  18819. image: {
  18820. source: "./media/characters/lykasa/front.svg",
  18821. extra: 1076 / 976,
  18822. bottom: 0.06
  18823. }
  18824. },
  18825. },
  18826. [
  18827. {
  18828. name: "Normal",
  18829. height: math.unit(3, "meters")
  18830. },
  18831. {
  18832. name: "Kaiju",
  18833. height: math.unit(120, "meters"),
  18834. default: true
  18835. },
  18836. {
  18837. name: "Mega Kaiju",
  18838. height: math.unit(240, "km")
  18839. },
  18840. {
  18841. name: "Giga Kaiju",
  18842. height: math.unit(400, "megameters")
  18843. },
  18844. {
  18845. name: "Tera Kaiju",
  18846. height: math.unit(800, "gigameters")
  18847. },
  18848. {
  18849. name: "Kaiju Dragon Goddess",
  18850. height: math.unit(26, "zettaparsecs")
  18851. },
  18852. ]
  18853. ))
  18854. characterMakers.push(() => makeCharacter(
  18855. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18856. {
  18857. side: {
  18858. height: math.unit(283 / 124 * 6, "feet"),
  18859. weight: math.unit(35000, "lb"),
  18860. name: "Side",
  18861. image: {
  18862. source: "./media/characters/malfaren/side.svg",
  18863. extra: 1310/529,
  18864. bottom: 24/1334
  18865. }
  18866. },
  18867. front: {
  18868. height: math.unit(22.36, "feet"),
  18869. weight: math.unit(35000, "lb"),
  18870. name: "Front",
  18871. image: {
  18872. source: "./media/characters/malfaren/front.svg",
  18873. extra: 1237/1115,
  18874. bottom: 32/1269
  18875. }
  18876. },
  18877. maw: {
  18878. height: math.unit(6.9, "feet"),
  18879. name: "Maw",
  18880. image: {
  18881. source: "./media/characters/malfaren/maw.svg"
  18882. }
  18883. },
  18884. dick: {
  18885. height: math.unit(6.19, "feet"),
  18886. name: "Dick",
  18887. image: {
  18888. source: "./media/characters/malfaren/dick.svg"
  18889. }
  18890. },
  18891. eye: {
  18892. height: math.unit(0.69, "feet"),
  18893. name: "Eye",
  18894. image: {
  18895. source: "./media/characters/malfaren/eye.svg"
  18896. }
  18897. },
  18898. },
  18899. [
  18900. {
  18901. name: "Big",
  18902. height: math.unit(283 / 162 * 6, "feet"),
  18903. },
  18904. {
  18905. name: "Bigger",
  18906. height: math.unit(283 / 124 * 6, "feet")
  18907. },
  18908. {
  18909. name: "Massive",
  18910. height: math.unit(283 / 92 * 6, "feet"),
  18911. default: true
  18912. },
  18913. {
  18914. name: "👀💦",
  18915. height: math.unit(283 / 73 * 6, "feet"),
  18916. },
  18917. ]
  18918. ))
  18919. characterMakers.push(() => makeCharacter(
  18920. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18921. {
  18922. front: {
  18923. height: math.unit(1.7, "m"),
  18924. weight: math.unit(70, "kg"),
  18925. name: "Front",
  18926. image: {
  18927. source: "./media/characters/kernel/front.svg",
  18928. extra: 222 / 210,
  18929. bottom: 0.007
  18930. }
  18931. },
  18932. },
  18933. [
  18934. {
  18935. name: "Nano",
  18936. height: math.unit(17, "micrometers")
  18937. },
  18938. {
  18939. name: "Micro",
  18940. height: math.unit(1.7, "mm")
  18941. },
  18942. {
  18943. name: "Small",
  18944. height: math.unit(1.7, "cm")
  18945. },
  18946. {
  18947. name: "Normal",
  18948. height: math.unit(1.7, "m"),
  18949. default: true
  18950. },
  18951. ]
  18952. ))
  18953. characterMakers.push(() => makeCharacter(
  18954. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18955. {
  18956. front: {
  18957. height: math.unit(1.75, "meters"),
  18958. weight: math.unit(65, "kg"),
  18959. name: "Front",
  18960. image: {
  18961. source: "./media/characters/jayne-folest/front.svg",
  18962. extra: 2115 / 2007,
  18963. bottom: 0.02
  18964. }
  18965. },
  18966. back: {
  18967. height: math.unit(1.75, "meters"),
  18968. weight: math.unit(65, "kg"),
  18969. name: "Back",
  18970. image: {
  18971. source: "./media/characters/jayne-folest/back.svg",
  18972. extra: 2115 / 2007,
  18973. bottom: 0.005
  18974. }
  18975. },
  18976. frontClothed: {
  18977. height: math.unit(1.75, "meters"),
  18978. weight: math.unit(65, "kg"),
  18979. name: "Front (Clothed)",
  18980. image: {
  18981. source: "./media/characters/jayne-folest/front-clothed.svg",
  18982. extra: 2115 / 2007,
  18983. bottom: 0.035
  18984. }
  18985. },
  18986. hand: {
  18987. height: math.unit(1 / 1.260, "feet"),
  18988. name: "Hand",
  18989. image: {
  18990. source: "./media/characters/jayne-folest/hand.svg"
  18991. }
  18992. },
  18993. foot: {
  18994. height: math.unit(1 / 0.918, "feet"),
  18995. name: "Foot",
  18996. image: {
  18997. source: "./media/characters/jayne-folest/foot.svg"
  18998. }
  18999. },
  19000. },
  19001. [
  19002. {
  19003. name: "Micro",
  19004. height: math.unit(4, "cm")
  19005. },
  19006. {
  19007. name: "Normal",
  19008. height: math.unit(1.75, "meters")
  19009. },
  19010. {
  19011. name: "Macro",
  19012. height: math.unit(47.5, "meters"),
  19013. default: true
  19014. },
  19015. ]
  19016. ))
  19017. characterMakers.push(() => makeCharacter(
  19018. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19019. {
  19020. front: {
  19021. height: math.unit(180, "cm"),
  19022. weight: math.unit(70, "kg"),
  19023. name: "Front",
  19024. image: {
  19025. source: "./media/characters/algier/front.svg",
  19026. extra: 596 / 572,
  19027. bottom: 0.04
  19028. }
  19029. },
  19030. back: {
  19031. height: math.unit(180, "cm"),
  19032. weight: math.unit(70, "kg"),
  19033. name: "Back",
  19034. image: {
  19035. source: "./media/characters/algier/back.svg",
  19036. extra: 596 / 572,
  19037. bottom: 0.025
  19038. }
  19039. },
  19040. frontdressed: {
  19041. height: math.unit(180, "cm"),
  19042. weight: math.unit(150, "kg"),
  19043. name: "Front-dressed",
  19044. image: {
  19045. source: "./media/characters/algier/front-dressed.svg",
  19046. extra: 596 / 572,
  19047. bottom: 0.038
  19048. }
  19049. },
  19050. },
  19051. [
  19052. {
  19053. name: "Micro",
  19054. height: math.unit(5, "cm")
  19055. },
  19056. {
  19057. name: "Normal",
  19058. height: math.unit(180, "cm"),
  19059. default: true
  19060. },
  19061. {
  19062. name: "Macro",
  19063. height: math.unit(64, "m")
  19064. },
  19065. ]
  19066. ))
  19067. characterMakers.push(() => makeCharacter(
  19068. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19069. {
  19070. upright: {
  19071. height: math.unit(7, "feet"),
  19072. weight: math.unit(300, "lb"),
  19073. name: "Upright",
  19074. image: {
  19075. source: "./media/characters/pretzel/upright.svg",
  19076. extra: 534 / 522,
  19077. bottom: 0.065
  19078. }
  19079. },
  19080. sprawling: {
  19081. height: math.unit(3.75, "feet"),
  19082. weight: math.unit(300, "lb"),
  19083. name: "Sprawling",
  19084. image: {
  19085. source: "./media/characters/pretzel/sprawling.svg",
  19086. extra: 314 / 281,
  19087. bottom: 0.1
  19088. }
  19089. },
  19090. tongue: {
  19091. height: math.unit(2, "feet"),
  19092. name: "Tongue",
  19093. image: {
  19094. source: "./media/characters/pretzel/tongue.svg"
  19095. }
  19096. },
  19097. },
  19098. [
  19099. {
  19100. name: "Normal",
  19101. height: math.unit(7, "feet"),
  19102. default: true
  19103. },
  19104. {
  19105. name: "Oversized",
  19106. height: math.unit(15, "feet")
  19107. },
  19108. {
  19109. name: "Huge",
  19110. height: math.unit(30, "feet")
  19111. },
  19112. {
  19113. name: "Macro",
  19114. height: math.unit(250, "feet")
  19115. },
  19116. ]
  19117. ))
  19118. characterMakers.push(() => makeCharacter(
  19119. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19120. {
  19121. sideFront: {
  19122. height: math.unit(5 + 2 / 12, "feet"),
  19123. weight: math.unit(120, "lb"),
  19124. name: "Front Side",
  19125. image: {
  19126. source: "./media/characters/roxi/side-front.svg",
  19127. extra: 2924 / 2717,
  19128. bottom: 0.08
  19129. }
  19130. },
  19131. sideBack: {
  19132. height: math.unit(5 + 2 / 12, "feet"),
  19133. weight: math.unit(120, "lb"),
  19134. name: "Back Side",
  19135. image: {
  19136. source: "./media/characters/roxi/side-back.svg",
  19137. extra: 2904 / 2693,
  19138. bottom: 0.06
  19139. }
  19140. },
  19141. front: {
  19142. height: math.unit(5 + 2 / 12, "feet"),
  19143. weight: math.unit(120, "lb"),
  19144. name: "Front",
  19145. image: {
  19146. source: "./media/characters/roxi/front.svg",
  19147. extra: 2028 / 1907,
  19148. bottom: 0.01
  19149. }
  19150. },
  19151. frontAlt: {
  19152. height: math.unit(5 + 2 / 12, "feet"),
  19153. weight: math.unit(120, "lb"),
  19154. name: "Front (Alt)",
  19155. image: {
  19156. source: "./media/characters/roxi/front-alt.svg",
  19157. extra: 1828 / 1798,
  19158. bottom: 0.01
  19159. }
  19160. },
  19161. sitting: {
  19162. height: math.unit(2.8, "feet"),
  19163. weight: math.unit(120, "lb"),
  19164. name: "Sitting",
  19165. image: {
  19166. source: "./media/characters/roxi/sitting.svg",
  19167. extra: 2660 / 2462,
  19168. bottom: 0.1
  19169. }
  19170. },
  19171. },
  19172. [
  19173. {
  19174. name: "Normal",
  19175. height: math.unit(5 + 2 / 12, "feet"),
  19176. default: true
  19177. },
  19178. ]
  19179. ))
  19180. characterMakers.push(() => makeCharacter(
  19181. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19182. {
  19183. side: {
  19184. height: math.unit(55, "feet"),
  19185. weight: math.unit(153, "tons"),
  19186. name: "Side",
  19187. image: {
  19188. source: "./media/characters/shadow/side.svg",
  19189. extra: 701 / 628,
  19190. bottom: 0.02
  19191. }
  19192. },
  19193. flying: {
  19194. height: math.unit(145, "feet"),
  19195. weight: math.unit(153, "tons"),
  19196. name: "Flying",
  19197. image: {
  19198. source: "./media/characters/shadow/flying.svg"
  19199. }
  19200. },
  19201. },
  19202. [
  19203. {
  19204. name: "Normal",
  19205. height: math.unit(55, "feet"),
  19206. default: true
  19207. },
  19208. ]
  19209. ))
  19210. characterMakers.push(() => makeCharacter(
  19211. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19212. {
  19213. front: {
  19214. height: math.unit(6, "feet"),
  19215. weight: math.unit(200, "lb"),
  19216. name: "Front",
  19217. image: {
  19218. source: "./media/characters/marcie/front.svg",
  19219. extra: 960 / 876,
  19220. bottom: 58 / 1017.87
  19221. }
  19222. },
  19223. },
  19224. [
  19225. {
  19226. name: "Macro",
  19227. height: math.unit(1, "mile"),
  19228. default: true
  19229. },
  19230. ]
  19231. ))
  19232. characterMakers.push(() => makeCharacter(
  19233. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19234. {
  19235. front: {
  19236. height: math.unit(7, "feet"),
  19237. weight: math.unit(200, "lb"),
  19238. name: "Front",
  19239. image: {
  19240. source: "./media/characters/kachina/front.svg",
  19241. extra: 1290.68 / 1119,
  19242. bottom: 36.5 / 1327.18
  19243. }
  19244. },
  19245. },
  19246. [
  19247. {
  19248. name: "Normal",
  19249. height: math.unit(7, "feet"),
  19250. default: true
  19251. },
  19252. ]
  19253. ))
  19254. characterMakers.push(() => makeCharacter(
  19255. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19256. {
  19257. looking: {
  19258. height: math.unit(2, "meters"),
  19259. weight: math.unit(300, "kg"),
  19260. name: "Looking",
  19261. image: {
  19262. source: "./media/characters/kash/looking.svg",
  19263. extra: 474 / 344,
  19264. bottom: 0.03
  19265. }
  19266. },
  19267. side: {
  19268. height: math.unit(2, "meters"),
  19269. weight: math.unit(300, "kg"),
  19270. name: "Side",
  19271. image: {
  19272. source: "./media/characters/kash/side.svg",
  19273. extra: 302 / 251,
  19274. bottom: 0.03
  19275. }
  19276. },
  19277. front: {
  19278. height: math.unit(2, "meters"),
  19279. weight: math.unit(300, "kg"),
  19280. name: "Front",
  19281. image: {
  19282. source: "./media/characters/kash/front.svg",
  19283. extra: 495 / 360,
  19284. bottom: 0.015
  19285. }
  19286. },
  19287. },
  19288. [
  19289. {
  19290. name: "Normal",
  19291. height: math.unit(2, "meters"),
  19292. default: true
  19293. },
  19294. {
  19295. name: "Big",
  19296. height: math.unit(3, "meters")
  19297. },
  19298. {
  19299. name: "Large",
  19300. height: math.unit(5, "meters")
  19301. },
  19302. ]
  19303. ))
  19304. characterMakers.push(() => makeCharacter(
  19305. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19306. {
  19307. feeding: {
  19308. height: math.unit(6.7, "feet"),
  19309. weight: math.unit(350, "lb"),
  19310. name: "Feeding",
  19311. image: {
  19312. source: "./media/characters/lalim/feeding.svg",
  19313. }
  19314. },
  19315. },
  19316. [
  19317. {
  19318. name: "Normal",
  19319. height: math.unit(6.7, "feet"),
  19320. default: true
  19321. },
  19322. ]
  19323. ))
  19324. characterMakers.push(() => makeCharacter(
  19325. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19326. {
  19327. front: {
  19328. height: math.unit(9.5, "feet"),
  19329. weight: math.unit(600, "lb"),
  19330. name: "Front",
  19331. image: {
  19332. source: "./media/characters/de'vout/front.svg",
  19333. extra: 1443 / 1328,
  19334. bottom: 0.025
  19335. }
  19336. },
  19337. back: {
  19338. height: math.unit(9.5, "feet"),
  19339. weight: math.unit(600, "lb"),
  19340. name: "Back",
  19341. image: {
  19342. source: "./media/characters/de'vout/back.svg",
  19343. extra: 1443 / 1328
  19344. }
  19345. },
  19346. frontDressed: {
  19347. height: math.unit(9.5, "feet"),
  19348. weight: math.unit(600, "lb"),
  19349. name: "Front (Dressed",
  19350. image: {
  19351. source: "./media/characters/de'vout/front-dressed.svg",
  19352. extra: 1443 / 1328,
  19353. bottom: 0.025
  19354. }
  19355. },
  19356. backDressed: {
  19357. height: math.unit(9.5, "feet"),
  19358. weight: math.unit(600, "lb"),
  19359. name: "Back (Dressed",
  19360. image: {
  19361. source: "./media/characters/de'vout/back-dressed.svg",
  19362. extra: 1443 / 1328
  19363. }
  19364. },
  19365. },
  19366. [
  19367. {
  19368. name: "Normal",
  19369. height: math.unit(9.5, "feet"),
  19370. default: true
  19371. },
  19372. ]
  19373. ))
  19374. characterMakers.push(() => makeCharacter(
  19375. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19376. {
  19377. front: {
  19378. height: math.unit(8, "feet"),
  19379. weight: math.unit(225, "lb"),
  19380. name: "Front",
  19381. image: {
  19382. source: "./media/characters/talana/front.svg",
  19383. extra: 1410 / 1300,
  19384. bottom: 0.015
  19385. }
  19386. },
  19387. frontDressed: {
  19388. height: math.unit(8, "feet"),
  19389. weight: math.unit(225, "lb"),
  19390. name: "Front (Dressed",
  19391. image: {
  19392. source: "./media/characters/talana/front-dressed.svg",
  19393. extra: 1410 / 1300,
  19394. bottom: 0.015
  19395. }
  19396. },
  19397. },
  19398. [
  19399. {
  19400. name: "Normal",
  19401. height: math.unit(8, "feet"),
  19402. default: true
  19403. },
  19404. ]
  19405. ))
  19406. characterMakers.push(() => makeCharacter(
  19407. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19408. {
  19409. side: {
  19410. height: math.unit(7.2, "feet"),
  19411. weight: math.unit(150, "lb"),
  19412. name: "Side",
  19413. image: {
  19414. source: "./media/characters/xeauvok/side.svg",
  19415. extra: 1975 / 1523,
  19416. bottom: 0.07
  19417. }
  19418. },
  19419. },
  19420. [
  19421. {
  19422. name: "Normal",
  19423. height: math.unit(7.2, "feet"),
  19424. default: true
  19425. },
  19426. ]
  19427. ))
  19428. characterMakers.push(() => makeCharacter(
  19429. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19430. {
  19431. side: {
  19432. height: math.unit(4, "meters"),
  19433. weight: math.unit(2200, "kg"),
  19434. name: "Side",
  19435. image: {
  19436. source: "./media/characters/zara/side.svg",
  19437. extra: 765/744,
  19438. bottom: 156/921
  19439. }
  19440. },
  19441. },
  19442. [
  19443. {
  19444. name: "Normal",
  19445. height: math.unit(4, "meters"),
  19446. default: true
  19447. },
  19448. ]
  19449. ))
  19450. characterMakers.push(() => makeCharacter(
  19451. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19452. {
  19453. side: {
  19454. height: math.unit(6, "feet"),
  19455. weight: math.unit(150, "lb"),
  19456. name: "Side",
  19457. image: {
  19458. source: "./media/characters/richard-dragon/side.svg",
  19459. extra: 845 / 340,
  19460. bottom: 0.017
  19461. }
  19462. },
  19463. maw: {
  19464. height: math.unit(2.97, "feet"),
  19465. name: "Maw",
  19466. image: {
  19467. source: "./media/characters/richard-dragon/maw.svg"
  19468. }
  19469. },
  19470. },
  19471. [
  19472. ]
  19473. ))
  19474. characterMakers.push(() => makeCharacter(
  19475. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19476. {
  19477. front: {
  19478. height: math.unit(4, "feet"),
  19479. weight: math.unit(100, "lb"),
  19480. name: "Front",
  19481. image: {
  19482. source: "./media/characters/richard-smeargle/front.svg",
  19483. extra: 2952 / 2820,
  19484. bottom: 0.028
  19485. }
  19486. },
  19487. },
  19488. [
  19489. {
  19490. name: "Normal",
  19491. height: math.unit(4, "feet"),
  19492. default: true
  19493. },
  19494. {
  19495. name: "Dynamax",
  19496. height: math.unit(20, "meters")
  19497. },
  19498. ]
  19499. ))
  19500. characterMakers.push(() => makeCharacter(
  19501. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19502. {
  19503. front: {
  19504. height: math.unit(6, "feet"),
  19505. weight: math.unit(110, "lb"),
  19506. name: "Front",
  19507. image: {
  19508. source: "./media/characters/klay/front.svg",
  19509. extra: 962 / 883,
  19510. bottom: 0.04
  19511. }
  19512. },
  19513. back: {
  19514. height: math.unit(6, "feet"),
  19515. weight: math.unit(110, "lb"),
  19516. name: "Back",
  19517. image: {
  19518. source: "./media/characters/klay/back.svg",
  19519. extra: 962 / 883
  19520. }
  19521. },
  19522. beans: {
  19523. height: math.unit(1.15, "feet"),
  19524. name: "Beans",
  19525. image: {
  19526. source: "./media/characters/klay/beans.svg"
  19527. }
  19528. },
  19529. },
  19530. [
  19531. {
  19532. name: "Micro",
  19533. height: math.unit(6, "inches")
  19534. },
  19535. {
  19536. name: "Mini",
  19537. height: math.unit(3, "feet")
  19538. },
  19539. {
  19540. name: "Normal",
  19541. height: math.unit(6, "feet"),
  19542. default: true
  19543. },
  19544. {
  19545. name: "Big",
  19546. height: math.unit(25, "feet")
  19547. },
  19548. {
  19549. name: "Macro",
  19550. height: math.unit(100, "feet")
  19551. },
  19552. {
  19553. name: "Megamacro",
  19554. height: math.unit(400, "feet")
  19555. },
  19556. ]
  19557. ))
  19558. characterMakers.push(() => makeCharacter(
  19559. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19560. {
  19561. front: {
  19562. height: math.unit(6, "feet"),
  19563. weight: math.unit(160, "lb"),
  19564. name: "Front",
  19565. image: {
  19566. source: "./media/characters/marcus/front.svg",
  19567. extra: 734 / 676,
  19568. bottom: 0.03
  19569. }
  19570. },
  19571. },
  19572. [
  19573. {
  19574. name: "Little",
  19575. height: math.unit(6, "feet")
  19576. },
  19577. {
  19578. name: "Normal",
  19579. height: math.unit(110, "feet"),
  19580. default: true
  19581. },
  19582. {
  19583. name: "Macro",
  19584. height: math.unit(250, "feet")
  19585. },
  19586. {
  19587. name: "Megamacro",
  19588. height: math.unit(1000, "feet")
  19589. },
  19590. ]
  19591. ))
  19592. characterMakers.push(() => makeCharacter(
  19593. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19594. {
  19595. front: {
  19596. height: math.unit(7, "feet"),
  19597. weight: math.unit(275, "lb"),
  19598. name: "Front",
  19599. image: {
  19600. source: "./media/characters/claude-delroute/front.svg",
  19601. extra: 902/827,
  19602. bottom: 26/928
  19603. }
  19604. },
  19605. side: {
  19606. height: math.unit(7, "feet"),
  19607. weight: math.unit(275, "lb"),
  19608. name: "Side",
  19609. image: {
  19610. source: "./media/characters/claude-delroute/side.svg",
  19611. extra: 908/853,
  19612. bottom: 16/924
  19613. }
  19614. },
  19615. back: {
  19616. height: math.unit(7, "feet"),
  19617. weight: math.unit(275, "lb"),
  19618. name: "Back",
  19619. image: {
  19620. source: "./media/characters/claude-delroute/back.svg",
  19621. extra: 911/829,
  19622. bottom: 18/929
  19623. }
  19624. },
  19625. maw: {
  19626. height: math.unit(0.6407, "meters"),
  19627. name: "Maw",
  19628. image: {
  19629. source: "./media/characters/claude-delroute/maw.svg"
  19630. }
  19631. },
  19632. },
  19633. [
  19634. {
  19635. name: "Normal",
  19636. height: math.unit(7, "feet"),
  19637. default: true
  19638. },
  19639. {
  19640. name: "Lorge",
  19641. height: math.unit(20, "feet")
  19642. },
  19643. ]
  19644. ))
  19645. characterMakers.push(() => makeCharacter(
  19646. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19647. {
  19648. front: {
  19649. height: math.unit(8 + 4 / 12, "feet"),
  19650. weight: math.unit(600, "lb"),
  19651. name: "Front",
  19652. image: {
  19653. source: "./media/characters/dragonien/front.svg",
  19654. extra: 100 / 94,
  19655. bottom: 3.3 / 103.3445
  19656. }
  19657. },
  19658. back: {
  19659. height: math.unit(8 + 4 / 12, "feet"),
  19660. weight: math.unit(600, "lb"),
  19661. name: "Back",
  19662. image: {
  19663. source: "./media/characters/dragonien/back.svg",
  19664. extra: 776 / 746,
  19665. bottom: 6.4 / 782.0616
  19666. }
  19667. },
  19668. foot: {
  19669. height: math.unit(1.54, "feet"),
  19670. name: "Foot",
  19671. image: {
  19672. source: "./media/characters/dragonien/foot.svg",
  19673. }
  19674. },
  19675. },
  19676. [
  19677. {
  19678. name: "Normal",
  19679. height: math.unit(8 + 4 / 12, "feet"),
  19680. default: true
  19681. },
  19682. {
  19683. name: "Macro",
  19684. height: math.unit(200, "feet")
  19685. },
  19686. {
  19687. name: "Megamacro",
  19688. height: math.unit(1, "mile")
  19689. },
  19690. {
  19691. name: "Gigamacro",
  19692. height: math.unit(1000, "miles")
  19693. },
  19694. ]
  19695. ))
  19696. characterMakers.push(() => makeCharacter(
  19697. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19698. {
  19699. front: {
  19700. height: math.unit(5 + 2 / 12, "feet"),
  19701. weight: math.unit(110, "lb"),
  19702. name: "Front",
  19703. image: {
  19704. source: "./media/characters/desta/front.svg",
  19705. extra: 767 / 726,
  19706. bottom: 11.7 / 779
  19707. }
  19708. },
  19709. back: {
  19710. height: math.unit(5 + 2 / 12, "feet"),
  19711. weight: math.unit(110, "lb"),
  19712. name: "Back",
  19713. image: {
  19714. source: "./media/characters/desta/back.svg",
  19715. extra: 777 / 728,
  19716. bottom: 6 / 784
  19717. }
  19718. },
  19719. frontAlt: {
  19720. height: math.unit(5 + 2 / 12, "feet"),
  19721. weight: math.unit(110, "lb"),
  19722. name: "Front",
  19723. image: {
  19724. source: "./media/characters/desta/front-alt.svg",
  19725. extra: 1482 / 1417
  19726. }
  19727. },
  19728. side: {
  19729. height: math.unit(5 + 2 / 12, "feet"),
  19730. weight: math.unit(110, "lb"),
  19731. name: "Side",
  19732. image: {
  19733. source: "./media/characters/desta/side.svg",
  19734. extra: 2579 / 2491,
  19735. bottom: 0.053
  19736. }
  19737. },
  19738. },
  19739. [
  19740. {
  19741. name: "Micro",
  19742. height: math.unit(6, "inches")
  19743. },
  19744. {
  19745. name: "Normal",
  19746. height: math.unit(5 + 2 / 12, "feet"),
  19747. default: true
  19748. },
  19749. {
  19750. name: "Macro",
  19751. height: math.unit(62, "feet")
  19752. },
  19753. {
  19754. name: "Megamacro",
  19755. height: math.unit(1800, "feet")
  19756. },
  19757. ]
  19758. ))
  19759. characterMakers.push(() => makeCharacter(
  19760. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19761. {
  19762. front: {
  19763. height: math.unit(10, "feet"),
  19764. weight: math.unit(700, "lb"),
  19765. name: "Front",
  19766. image: {
  19767. source: "./media/characters/storm-alystar/front.svg",
  19768. extra: 2112 / 1898,
  19769. bottom: 0.034
  19770. }
  19771. },
  19772. },
  19773. [
  19774. {
  19775. name: "Micro",
  19776. height: math.unit(3.5, "inches")
  19777. },
  19778. {
  19779. name: "Normal",
  19780. height: math.unit(10, "feet"),
  19781. default: true
  19782. },
  19783. {
  19784. name: "Macro",
  19785. height: math.unit(400, "feet")
  19786. },
  19787. {
  19788. name: "Deific",
  19789. height: math.unit(60, "miles")
  19790. },
  19791. ]
  19792. ))
  19793. characterMakers.push(() => makeCharacter(
  19794. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19795. {
  19796. front: {
  19797. height: math.unit(2.35, "meters"),
  19798. weight: math.unit(119, "kg"),
  19799. name: "Front",
  19800. image: {
  19801. source: "./media/characters/ilia/front.svg",
  19802. extra: 1285 / 1255,
  19803. bottom: 0.06
  19804. }
  19805. },
  19806. },
  19807. [
  19808. {
  19809. name: "Normal",
  19810. height: math.unit(2.35, "meters")
  19811. },
  19812. {
  19813. name: "Macro",
  19814. height: math.unit(140, "meters"),
  19815. default: true
  19816. },
  19817. {
  19818. name: "Megamacro",
  19819. height: math.unit(100, "miles")
  19820. },
  19821. ]
  19822. ))
  19823. characterMakers.push(() => makeCharacter(
  19824. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19825. {
  19826. front: {
  19827. height: math.unit(6 + 5 / 12, "feet"),
  19828. weight: math.unit(190, "lb"),
  19829. name: "Front",
  19830. image: {
  19831. source: "./media/characters/kingdead/front.svg",
  19832. extra: 1228 / 1177
  19833. }
  19834. },
  19835. },
  19836. [
  19837. {
  19838. name: "Micro",
  19839. height: math.unit(7, "inches")
  19840. },
  19841. {
  19842. name: "Normal",
  19843. height: math.unit(6 + 5 / 12, "feet")
  19844. },
  19845. {
  19846. name: "Macro",
  19847. height: math.unit(150, "feet"),
  19848. default: true
  19849. },
  19850. {
  19851. name: "Megamacro",
  19852. height: math.unit(200, "miles")
  19853. },
  19854. ]
  19855. ))
  19856. characterMakers.push(() => makeCharacter(
  19857. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19858. {
  19859. front: {
  19860. height: math.unit(8, "feet"),
  19861. weight: math.unit(600, "lb"),
  19862. name: "Front",
  19863. image: {
  19864. source: "./media/characters/kyrehx/front.svg",
  19865. extra: 1195 / 1095,
  19866. bottom: 0.034
  19867. }
  19868. },
  19869. },
  19870. [
  19871. {
  19872. name: "Micro",
  19873. height: math.unit(2, "inches")
  19874. },
  19875. {
  19876. name: "Normal",
  19877. height: math.unit(8, "feet"),
  19878. default: true
  19879. },
  19880. {
  19881. name: "Macro",
  19882. height: math.unit(255, "feet")
  19883. },
  19884. ]
  19885. ))
  19886. characterMakers.push(() => makeCharacter(
  19887. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19888. {
  19889. front: {
  19890. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19891. weight: math.unit(184, "lb"),
  19892. name: "Front",
  19893. image: {
  19894. source: "./media/characters/xang/front.svg",
  19895. extra: 845 / 755
  19896. }
  19897. },
  19898. },
  19899. [
  19900. {
  19901. name: "Normal",
  19902. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19903. default: true
  19904. },
  19905. {
  19906. name: "Macro",
  19907. height: math.unit(0.935 * 146, "feet")
  19908. },
  19909. {
  19910. name: "Megamacro",
  19911. height: math.unit(0.935 * 3, "miles")
  19912. },
  19913. ]
  19914. ))
  19915. characterMakers.push(() => makeCharacter(
  19916. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19917. {
  19918. frontDressed: {
  19919. height: math.unit(5 + 7 / 12, "feet"),
  19920. weight: math.unit(140, "lb"),
  19921. name: "Front (Dressed)",
  19922. image: {
  19923. source: "./media/characters/doc-weardno/front-dressed.svg",
  19924. extra: 263 / 234
  19925. }
  19926. },
  19927. backDressed: {
  19928. height: math.unit(5 + 7 / 12, "feet"),
  19929. weight: math.unit(140, "lb"),
  19930. name: "Back (Dressed)",
  19931. image: {
  19932. source: "./media/characters/doc-weardno/back-dressed.svg",
  19933. extra: 266 / 238
  19934. }
  19935. },
  19936. front: {
  19937. height: math.unit(5 + 7 / 12, "feet"),
  19938. weight: math.unit(140, "lb"),
  19939. name: "Front",
  19940. image: {
  19941. source: "./media/characters/doc-weardno/front.svg",
  19942. extra: 254 / 233
  19943. }
  19944. },
  19945. },
  19946. [
  19947. {
  19948. name: "Micro",
  19949. height: math.unit(3, "inches")
  19950. },
  19951. {
  19952. name: "Normal",
  19953. height: math.unit(5 + 7 / 12, "feet"),
  19954. default: true
  19955. },
  19956. {
  19957. name: "Macro",
  19958. height: math.unit(25, "feet")
  19959. },
  19960. {
  19961. name: "Megamacro",
  19962. height: math.unit(2, "miles")
  19963. },
  19964. ]
  19965. ))
  19966. characterMakers.push(() => makeCharacter(
  19967. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19968. {
  19969. front: {
  19970. height: math.unit(6 + 2 / 12, "feet"),
  19971. weight: math.unit(153, "lb"),
  19972. name: "Front",
  19973. image: {
  19974. source: "./media/characters/seth-whilst/front.svg",
  19975. bottom: 0.07
  19976. }
  19977. },
  19978. },
  19979. [
  19980. {
  19981. name: "Micro",
  19982. height: math.unit(5, "inches")
  19983. },
  19984. {
  19985. name: "Normal",
  19986. height: math.unit(6 + 2 / 12, "feet"),
  19987. default: true
  19988. },
  19989. ]
  19990. ))
  19991. characterMakers.push(() => makeCharacter(
  19992. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19993. {
  19994. front: {
  19995. height: math.unit(3, "inches"),
  19996. weight: math.unit(8, "grams"),
  19997. name: "Front",
  19998. image: {
  19999. source: "./media/characters/pocket-jabari/front.svg",
  20000. extra: 1024 / 974,
  20001. bottom: 0.039
  20002. }
  20003. },
  20004. },
  20005. [
  20006. {
  20007. name: "Minimicro",
  20008. height: math.unit(8, "mm")
  20009. },
  20010. {
  20011. name: "Micro",
  20012. height: math.unit(3, "inches"),
  20013. default: true
  20014. },
  20015. {
  20016. name: "Normal",
  20017. height: math.unit(3, "feet")
  20018. },
  20019. ]
  20020. ))
  20021. characterMakers.push(() => makeCharacter(
  20022. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20023. {
  20024. frontDressed: {
  20025. height: math.unit(15, "feet"),
  20026. weight: math.unit(3280, "lb"),
  20027. name: "Front (Dressed)",
  20028. image: {
  20029. source: "./media/characters/sapphy/front-dressed.svg",
  20030. extra: 1951/1654,
  20031. bottom: 194/2145
  20032. },
  20033. form: "anthro",
  20034. default: true
  20035. },
  20036. backDressed: {
  20037. height: math.unit(15, "feet"),
  20038. weight: math.unit(3280, "lb"),
  20039. name: "Back (Dressed)",
  20040. image: {
  20041. source: "./media/characters/sapphy/back-dressed.svg",
  20042. extra: 2058/1918,
  20043. bottom: 125/2183
  20044. },
  20045. form: "anthro"
  20046. },
  20047. frontNude: {
  20048. height: math.unit(15, "feet"),
  20049. weight: math.unit(3280, "lb"),
  20050. name: "Front (Nude)",
  20051. image: {
  20052. source: "./media/characters/sapphy/front-nude.svg",
  20053. extra: 1951/1654,
  20054. bottom: 194/2145
  20055. },
  20056. form: "anthro"
  20057. },
  20058. backNude: {
  20059. height: math.unit(15, "feet"),
  20060. weight: math.unit(3280, "lb"),
  20061. name: "Back (Nude)",
  20062. image: {
  20063. source: "./media/characters/sapphy/back-nude.svg",
  20064. extra: 2058/1918,
  20065. bottom: 125/2183
  20066. },
  20067. form: "anthro"
  20068. },
  20069. full: {
  20070. height: math.unit(15, "feet"),
  20071. weight: math.unit(3280, "lb"),
  20072. name: "Full",
  20073. image: {
  20074. source: "./media/characters/sapphy/full.svg",
  20075. extra: 1396/1317,
  20076. bottom: 44/1440
  20077. },
  20078. form: "anthro"
  20079. },
  20080. dick: {
  20081. height: math.unit(3.8, "feet"),
  20082. name: "Dick",
  20083. image: {
  20084. source: "./media/characters/sapphy/dick.svg"
  20085. },
  20086. form: "anthro"
  20087. },
  20088. feral: {
  20089. height: math.unit(35, "feet"),
  20090. weight: math.unit(160, "tons"),
  20091. name: "Feral",
  20092. image: {
  20093. source: "./media/characters/sapphy/feral.svg",
  20094. extra: 1050/573,
  20095. bottom: 60/1110
  20096. },
  20097. form: "feral",
  20098. default: true
  20099. },
  20100. },
  20101. [
  20102. {
  20103. name: "Normal",
  20104. height: math.unit(15, "feet"),
  20105. form: "anthro"
  20106. },
  20107. {
  20108. name: "Casual Macro",
  20109. height: math.unit(120, "feet"),
  20110. form: "anthro"
  20111. },
  20112. {
  20113. name: "Macro",
  20114. height: math.unit(2150, "feet"),
  20115. default: true,
  20116. form: "anthro"
  20117. },
  20118. {
  20119. name: "Megamacro",
  20120. height: math.unit(8, "miles"),
  20121. form: "anthro"
  20122. },
  20123. {
  20124. name: "Galaxy Mom",
  20125. height: math.unit(6, "megalightyears"),
  20126. form: "anthro"
  20127. },
  20128. {
  20129. name: "Normal",
  20130. height: math.unit(35, "feet"),
  20131. form: "feral",
  20132. default: true
  20133. },
  20134. {
  20135. name: "Macro",
  20136. height: math.unit(300, "feet"),
  20137. form: "feral"
  20138. },
  20139. {
  20140. name: "Galaxy Mom",
  20141. height: math.unit(10, "megalightyears"),
  20142. form: "feral"
  20143. },
  20144. ],
  20145. {
  20146. "anthro": {
  20147. name: "Anthro",
  20148. default: true
  20149. },
  20150. "feral": {
  20151. name: "Feral"
  20152. }
  20153. }
  20154. ))
  20155. characterMakers.push(() => makeCharacter(
  20156. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20157. {
  20158. hyenaFront: {
  20159. height: math.unit(6, "feet"),
  20160. weight: math.unit(190, "lb"),
  20161. name: "Front",
  20162. image: {
  20163. source: "./media/characters/kiro/hyena-front.svg",
  20164. extra: 927/839,
  20165. bottom: 91/1018
  20166. },
  20167. form: "hyena",
  20168. default: true
  20169. },
  20170. front: {
  20171. height: math.unit(6, "feet"),
  20172. weight: math.unit(170, "lb"),
  20173. name: "Front",
  20174. image: {
  20175. source: "./media/characters/kiro/front.svg",
  20176. extra: 1064 / 1012,
  20177. bottom: 0.052
  20178. },
  20179. form: "folf",
  20180. default: true
  20181. },
  20182. },
  20183. [
  20184. {
  20185. name: "Micro",
  20186. height: math.unit(6, "inches"),
  20187. form: "folf"
  20188. },
  20189. {
  20190. name: "Normal",
  20191. height: math.unit(6, "feet"),
  20192. form: "folf",
  20193. default: true
  20194. },
  20195. {
  20196. name: "Macro",
  20197. height: math.unit(72, "feet"),
  20198. form: "folf"
  20199. },
  20200. {
  20201. name: "Micro",
  20202. height: math.unit(6, "inches"),
  20203. form: "hyena"
  20204. },
  20205. {
  20206. name: "Normal",
  20207. height: math.unit(6, "feet"),
  20208. form: "hyena",
  20209. default: true
  20210. },
  20211. {
  20212. name: "Macro",
  20213. height: math.unit(72, "feet"),
  20214. form: "hyena"
  20215. },
  20216. ],
  20217. {
  20218. "hyena": {
  20219. name: "Hyena",
  20220. default: true
  20221. },
  20222. "folf": {
  20223. name: "Folf",
  20224. },
  20225. }
  20226. ))
  20227. characterMakers.push(() => makeCharacter(
  20228. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20229. {
  20230. front: {
  20231. height: math.unit(5 + 9 / 12, "feet"),
  20232. weight: math.unit(175, "lb"),
  20233. name: "Front",
  20234. image: {
  20235. source: "./media/characters/irishfox/front.svg",
  20236. extra: 1912 / 1680,
  20237. bottom: 0.02
  20238. }
  20239. },
  20240. },
  20241. [
  20242. {
  20243. name: "Nano",
  20244. height: math.unit(1, "mm")
  20245. },
  20246. {
  20247. name: "Micro",
  20248. height: math.unit(2, "inches")
  20249. },
  20250. {
  20251. name: "Normal",
  20252. height: math.unit(5 + 9 / 12, "feet"),
  20253. default: true
  20254. },
  20255. {
  20256. name: "Macro",
  20257. height: math.unit(45, "feet")
  20258. },
  20259. ]
  20260. ))
  20261. characterMakers.push(() => makeCharacter(
  20262. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20263. {
  20264. front: {
  20265. height: math.unit(6 + 1 / 12, "feet"),
  20266. weight: math.unit(75, "lb"),
  20267. name: "Front",
  20268. image: {
  20269. source: "./media/characters/aronai-sieyes/front.svg",
  20270. extra: 1532/1450,
  20271. bottom: 42/1574
  20272. }
  20273. },
  20274. side: {
  20275. height: math.unit(6 + 1 / 12, "feet"),
  20276. weight: math.unit(75, "lb"),
  20277. name: "Side",
  20278. image: {
  20279. source: "./media/characters/aronai-sieyes/side.svg",
  20280. extra: 1422/1365,
  20281. bottom: 148/1570
  20282. }
  20283. },
  20284. back: {
  20285. height: math.unit(6 + 1 / 12, "feet"),
  20286. weight: math.unit(75, "lb"),
  20287. name: "Back",
  20288. image: {
  20289. source: "./media/characters/aronai-sieyes/back.svg",
  20290. extra: 1526/1464,
  20291. bottom: 51/1577
  20292. }
  20293. },
  20294. dressed: {
  20295. height: math.unit(6 + 1 / 12, "feet"),
  20296. weight: math.unit(75, "lb"),
  20297. name: "Dressed",
  20298. image: {
  20299. source: "./media/characters/aronai-sieyes/dressed.svg",
  20300. extra: 1559/1483,
  20301. bottom: 39/1598
  20302. }
  20303. },
  20304. slit: {
  20305. height: math.unit(1.3, "feet"),
  20306. name: "Slit",
  20307. image: {
  20308. source: "./media/characters/aronai-sieyes/slit.svg"
  20309. }
  20310. },
  20311. slitSpread: {
  20312. height: math.unit(0.9, "feet"),
  20313. name: "Slit (Spread)",
  20314. image: {
  20315. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20316. }
  20317. },
  20318. rump: {
  20319. height: math.unit(1.3, "feet"),
  20320. name: "Rump",
  20321. image: {
  20322. source: "./media/characters/aronai-sieyes/rump.svg"
  20323. }
  20324. },
  20325. maw: {
  20326. height: math.unit(1.25, "feet"),
  20327. name: "Maw",
  20328. image: {
  20329. source: "./media/characters/aronai-sieyes/maw.svg"
  20330. }
  20331. },
  20332. feral: {
  20333. height: math.unit(18, "feet"),
  20334. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20335. name: "Feral",
  20336. image: {
  20337. source: "./media/characters/aronai-sieyes/feral.svg",
  20338. extra: 1530 / 1240,
  20339. bottom: 0.035
  20340. }
  20341. },
  20342. },
  20343. [
  20344. {
  20345. name: "Micro",
  20346. height: math.unit(2, "inches")
  20347. },
  20348. {
  20349. name: "Normal",
  20350. height: math.unit(6 + 1 / 12, "feet"),
  20351. default: true
  20352. }
  20353. ]
  20354. ))
  20355. characterMakers.push(() => makeCharacter(
  20356. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20357. {
  20358. front: {
  20359. height: math.unit(12, "feet"),
  20360. weight: math.unit(410, "kg"),
  20361. name: "Front",
  20362. image: {
  20363. source: "./media/characters/xuna/front.svg",
  20364. extra: 2184 / 1980
  20365. }
  20366. },
  20367. side: {
  20368. height: math.unit(12, "feet"),
  20369. weight: math.unit(410, "kg"),
  20370. name: "Side",
  20371. image: {
  20372. source: "./media/characters/xuna/side.svg",
  20373. extra: 2184 / 1980
  20374. }
  20375. },
  20376. back: {
  20377. height: math.unit(12, "feet"),
  20378. weight: math.unit(410, "kg"),
  20379. name: "Back",
  20380. image: {
  20381. source: "./media/characters/xuna/back.svg",
  20382. extra: 2184 / 1980
  20383. }
  20384. },
  20385. },
  20386. [
  20387. {
  20388. name: "Nano glow",
  20389. height: math.unit(10, "nm")
  20390. },
  20391. {
  20392. name: "Micro floof",
  20393. height: math.unit(0.3, "m")
  20394. },
  20395. {
  20396. name: "Huggable softy boi",
  20397. height: math.unit(3.6576, "m"),
  20398. default: true
  20399. },
  20400. {
  20401. name: "Admirable floof",
  20402. height: math.unit(80, "meters")
  20403. },
  20404. {
  20405. name: "Gentle macro",
  20406. height: math.unit(300, "meters")
  20407. },
  20408. {
  20409. name: "Very careful floof",
  20410. height: math.unit(3200, "meters")
  20411. },
  20412. {
  20413. name: "The mega floof",
  20414. height: math.unit(36000, "meters")
  20415. },
  20416. {
  20417. name: "Giga-fur-Wicker",
  20418. height: math.unit(4800000, "meters")
  20419. },
  20420. {
  20421. name: "Licky world",
  20422. height: math.unit(20000000, "meters")
  20423. },
  20424. {
  20425. name: "Floofy cyan sun",
  20426. height: math.unit(1500000000, "meters")
  20427. },
  20428. {
  20429. name: "Milky Wicker",
  20430. height: math.unit(1000000000000000000000, "meters")
  20431. },
  20432. {
  20433. name: "The observing Wicker",
  20434. height: math.unit(999999999999999999999999999, "meters")
  20435. },
  20436. ]
  20437. ))
  20438. characterMakers.push(() => makeCharacter(
  20439. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20440. {
  20441. front: {
  20442. height: math.unit(5 + 9 / 12, "feet"),
  20443. weight: math.unit(150, "lb"),
  20444. name: "Front",
  20445. image: {
  20446. source: "./media/characters/arokha-sieyes/front.svg",
  20447. extra: 1425 / 1284,
  20448. bottom: 0.05
  20449. }
  20450. },
  20451. },
  20452. [
  20453. {
  20454. name: "Normal",
  20455. height: math.unit(5 + 9 / 12, "feet")
  20456. },
  20457. {
  20458. name: "Macro",
  20459. height: math.unit(30, "meters"),
  20460. default: true
  20461. },
  20462. ]
  20463. ))
  20464. characterMakers.push(() => makeCharacter(
  20465. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20466. {
  20467. front: {
  20468. height: math.unit(6, "feet"),
  20469. weight: math.unit(180, "lb"),
  20470. name: "Front",
  20471. image: {
  20472. source: "./media/characters/arokh-sieyes/front.svg",
  20473. extra: 1830 / 1769,
  20474. bottom: 0.01
  20475. }
  20476. },
  20477. },
  20478. [
  20479. {
  20480. name: "Normal",
  20481. height: math.unit(6, "feet")
  20482. },
  20483. {
  20484. name: "Macro",
  20485. height: math.unit(30, "meters"),
  20486. default: true
  20487. },
  20488. ]
  20489. ))
  20490. characterMakers.push(() => makeCharacter(
  20491. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20492. {
  20493. side: {
  20494. height: math.unit(13 + 1 / 12, "feet"),
  20495. weight: math.unit(8.5, "tonnes"),
  20496. preyCapacity: math.unit(36, "people"),
  20497. name: "Side",
  20498. image: {
  20499. source: "./media/characters/goldeneye/side.svg",
  20500. extra: 1139/741,
  20501. bottom: 98/1237
  20502. }
  20503. },
  20504. front: {
  20505. height: math.unit(5.1, "feet"),
  20506. weight: math.unit(8.5, "tonnes"),
  20507. preyCapacity: math.unit(36, "people"),
  20508. name: "Front",
  20509. image: {
  20510. source: "./media/characters/goldeneye/front.svg",
  20511. extra: 635/365,
  20512. bottom: 598/1233
  20513. }
  20514. },
  20515. maw: {
  20516. height: math.unit(6.6, "feet"),
  20517. name: "Maw",
  20518. image: {
  20519. source: "./media/characters/goldeneye/maw.svg"
  20520. }
  20521. },
  20522. headFront: {
  20523. height: math.unit(8, "feet"),
  20524. name: "Head (Front)",
  20525. image: {
  20526. source: "./media/characters/goldeneye/head-front.svg"
  20527. }
  20528. },
  20529. headSide: {
  20530. height: math.unit(6, "feet"),
  20531. name: "Head (Side)",
  20532. image: {
  20533. source: "./media/characters/goldeneye/head-side.svg"
  20534. }
  20535. },
  20536. headBack: {
  20537. height: math.unit(8, "feet"),
  20538. name: "Head (Back)",
  20539. image: {
  20540. source: "./media/characters/goldeneye/head-back.svg"
  20541. }
  20542. },
  20543. paw: {
  20544. height: math.unit(3.4, "feet"),
  20545. name: "Paw",
  20546. image: {
  20547. source: "./media/characters/goldeneye/paw.svg"
  20548. }
  20549. },
  20550. toering: {
  20551. height: math.unit(0.45, "feet"),
  20552. name: "Toering",
  20553. image: {
  20554. source: "./media/characters/goldeneye/toering.svg"
  20555. }
  20556. },
  20557. eyes: {
  20558. height: math.unit(0.5, "feet"),
  20559. name: "Eyes",
  20560. image: {
  20561. source: "./media/characters/goldeneye/eyes.svg"
  20562. }
  20563. },
  20564. },
  20565. [
  20566. {
  20567. name: "Normal",
  20568. height: math.unit(13 + 1 / 12, "feet"),
  20569. default: true
  20570. },
  20571. ]
  20572. ))
  20573. characterMakers.push(() => makeCharacter(
  20574. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20575. {
  20576. front: {
  20577. height: math.unit(6 + 1 / 12, "feet"),
  20578. weight: math.unit(210, "lb"),
  20579. name: "Front",
  20580. image: {
  20581. source: "./media/characters/leonardo-lycheborne/front.svg",
  20582. extra: 776/723,
  20583. bottom: 34/810
  20584. }
  20585. },
  20586. side: {
  20587. height: math.unit(6 + 1 / 12, "feet"),
  20588. weight: math.unit(210, "lb"),
  20589. name: "Side",
  20590. image: {
  20591. source: "./media/characters/leonardo-lycheborne/side.svg",
  20592. extra: 780/728,
  20593. bottom: 12/792
  20594. }
  20595. },
  20596. back: {
  20597. height: math.unit(6 + 1 / 12, "feet"),
  20598. weight: math.unit(210, "lb"),
  20599. name: "Back",
  20600. image: {
  20601. source: "./media/characters/leonardo-lycheborne/back.svg",
  20602. extra: 775/721,
  20603. bottom: 17/792
  20604. }
  20605. },
  20606. hand: {
  20607. height: math.unit(1.08, "feet"),
  20608. name: "Hand",
  20609. image: {
  20610. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20611. }
  20612. },
  20613. foot: {
  20614. height: math.unit(1.32, "feet"),
  20615. name: "Foot",
  20616. image: {
  20617. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20618. }
  20619. },
  20620. maw: {
  20621. height: math.unit(1, "feet"),
  20622. name: "Maw",
  20623. image: {
  20624. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20625. }
  20626. },
  20627. were: {
  20628. height: math.unit(20, "feet"),
  20629. weight: math.unit(7800, "lb"),
  20630. name: "Were",
  20631. image: {
  20632. source: "./media/characters/leonardo-lycheborne/were.svg",
  20633. extra: 1224/1165,
  20634. bottom: 72/1296
  20635. }
  20636. },
  20637. feral: {
  20638. height: math.unit(7.5, "feet"),
  20639. weight: math.unit(600, "lb"),
  20640. name: "Feral",
  20641. image: {
  20642. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20643. extra: 797/702,
  20644. bottom: 139/936
  20645. }
  20646. },
  20647. taur: {
  20648. height: math.unit(11, "feet"),
  20649. weight: math.unit(3300, "lb"),
  20650. name: "Taur",
  20651. image: {
  20652. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20653. extra: 1271/1197,
  20654. bottom: 47/1318
  20655. }
  20656. },
  20657. barghest: {
  20658. height: math.unit(11, "feet"),
  20659. weight: math.unit(1300, "lb"),
  20660. name: "Barghest",
  20661. image: {
  20662. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20663. extra: 1291/1204,
  20664. bottom: 37/1328
  20665. }
  20666. },
  20667. dick: {
  20668. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20669. name: "Dick",
  20670. image: {
  20671. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20672. }
  20673. },
  20674. dickWere: {
  20675. height: math.unit((20) / 3.8, "feet"),
  20676. name: "Dick (Were)",
  20677. image: {
  20678. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20679. }
  20680. },
  20681. },
  20682. [
  20683. {
  20684. name: "Normal",
  20685. height: math.unit(6 + 1 / 12, "feet"),
  20686. default: true
  20687. },
  20688. ]
  20689. ))
  20690. characterMakers.push(() => makeCharacter(
  20691. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20692. {
  20693. front: {
  20694. height: math.unit(10, "feet"),
  20695. weight: math.unit(350, "lb"),
  20696. name: "Front",
  20697. image: {
  20698. source: "./media/characters/jet/front.svg",
  20699. extra: 2050 / 1980,
  20700. bottom: 0.013
  20701. }
  20702. },
  20703. back: {
  20704. height: math.unit(10, "feet"),
  20705. weight: math.unit(350, "lb"),
  20706. name: "Back",
  20707. image: {
  20708. source: "./media/characters/jet/back.svg",
  20709. extra: 2050 / 1980,
  20710. bottom: 0.013
  20711. }
  20712. },
  20713. },
  20714. [
  20715. {
  20716. name: "Micro",
  20717. height: math.unit(6, "inches")
  20718. },
  20719. {
  20720. name: "Normal",
  20721. height: math.unit(10, "feet"),
  20722. default: true
  20723. },
  20724. {
  20725. name: "Macro",
  20726. height: math.unit(100, "feet")
  20727. },
  20728. ]
  20729. ))
  20730. characterMakers.push(() => makeCharacter(
  20731. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20732. {
  20733. front: {
  20734. height: math.unit(15, "feet"),
  20735. weight: math.unit(2800, "lb"),
  20736. name: "Front",
  20737. image: {
  20738. source: "./media/characters/tanarath/front.svg",
  20739. extra: 2392 / 2220,
  20740. bottom: 0.03
  20741. }
  20742. },
  20743. back: {
  20744. height: math.unit(15, "feet"),
  20745. weight: math.unit(2800, "lb"),
  20746. name: "Back",
  20747. image: {
  20748. source: "./media/characters/tanarath/back.svg",
  20749. extra: 2392 / 2220,
  20750. bottom: 0.03
  20751. }
  20752. },
  20753. },
  20754. [
  20755. {
  20756. name: "Normal",
  20757. height: math.unit(15, "feet"),
  20758. default: true
  20759. },
  20760. ]
  20761. ))
  20762. characterMakers.push(() => makeCharacter(
  20763. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20764. {
  20765. front: {
  20766. height: math.unit(7 + 1 / 12, "feet"),
  20767. weight: math.unit(175, "lb"),
  20768. name: "Front",
  20769. image: {
  20770. source: "./media/characters/patty-cattybatty/front.svg",
  20771. extra: 908 / 874,
  20772. bottom: 0.025
  20773. }
  20774. },
  20775. },
  20776. [
  20777. {
  20778. name: "Micro",
  20779. height: math.unit(1, "inch")
  20780. },
  20781. {
  20782. name: "Normal",
  20783. height: math.unit(7 + 1 / 12, "feet")
  20784. },
  20785. {
  20786. name: "Mini Macro",
  20787. height: math.unit(155, "feet")
  20788. },
  20789. {
  20790. name: "Macro",
  20791. height: math.unit(1077, "feet")
  20792. },
  20793. {
  20794. name: "Mega Macro",
  20795. height: math.unit(47650, "feet"),
  20796. default: true
  20797. },
  20798. {
  20799. name: "Giga Macro",
  20800. height: math.unit(440, "miles")
  20801. },
  20802. {
  20803. name: "Tera Macro",
  20804. height: math.unit(8700, "miles")
  20805. },
  20806. {
  20807. name: "Planetary Macro",
  20808. height: math.unit(32700, "miles")
  20809. },
  20810. {
  20811. name: "Solar Macro",
  20812. height: math.unit(550000, "miles")
  20813. },
  20814. {
  20815. name: "Celestial Macro",
  20816. height: math.unit(2.5, "AU")
  20817. },
  20818. ]
  20819. ))
  20820. characterMakers.push(() => makeCharacter(
  20821. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20822. {
  20823. front: {
  20824. height: math.unit(4 + 5 / 12, "feet"),
  20825. weight: math.unit(90, "lb"),
  20826. name: "Front",
  20827. image: {
  20828. source: "./media/characters/cappu/front.svg",
  20829. extra: 1247 / 1152,
  20830. bottom: 0.012
  20831. }
  20832. },
  20833. },
  20834. [
  20835. {
  20836. name: "Normal",
  20837. height: math.unit(4 + 5 / 12, "feet"),
  20838. default: true
  20839. },
  20840. ]
  20841. ))
  20842. characterMakers.push(() => makeCharacter(
  20843. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20844. {
  20845. frontDressed: {
  20846. height: math.unit(70, "cm"),
  20847. weight: math.unit(6, "kg"),
  20848. name: "Front (Dressed)",
  20849. image: {
  20850. source: "./media/characters/sebi/front-dressed.svg",
  20851. extra: 713.5 / 686.5,
  20852. bottom: 0.003
  20853. }
  20854. },
  20855. front: {
  20856. height: math.unit(70, "cm"),
  20857. weight: math.unit(5, "kg"),
  20858. name: "Front",
  20859. image: {
  20860. source: "./media/characters/sebi/front.svg",
  20861. extra: 713.5 / 686.5,
  20862. bottom: 0.003
  20863. }
  20864. }
  20865. },
  20866. [
  20867. {
  20868. name: "Normal",
  20869. height: math.unit(70, "cm"),
  20870. default: true
  20871. },
  20872. {
  20873. name: "Macro",
  20874. height: math.unit(8, "meters")
  20875. },
  20876. ]
  20877. ))
  20878. characterMakers.push(() => makeCharacter(
  20879. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20880. {
  20881. front: {
  20882. height: math.unit(6, "feet"),
  20883. weight: math.unit(150, "lb"),
  20884. name: "Front",
  20885. image: {
  20886. source: "./media/characters/typhek/front.svg",
  20887. extra: 1948 / 1929,
  20888. bottom: 0.025
  20889. }
  20890. },
  20891. side: {
  20892. height: math.unit(6, "feet"),
  20893. weight: math.unit(150, "lb"),
  20894. name: "Side",
  20895. image: {
  20896. source: "./media/characters/typhek/side.svg",
  20897. extra: 2034 / 2010,
  20898. bottom: 0.003
  20899. }
  20900. },
  20901. back: {
  20902. height: math.unit(6, "feet"),
  20903. weight: math.unit(150, "lb"),
  20904. name: "Back",
  20905. image: {
  20906. source: "./media/characters/typhek/back.svg",
  20907. extra: 2005 / 1978,
  20908. bottom: 0.004
  20909. }
  20910. },
  20911. palm: {
  20912. height: math.unit(1.2, "feet"),
  20913. name: "Palm",
  20914. image: {
  20915. source: "./media/characters/typhek/palm.svg"
  20916. }
  20917. },
  20918. fist: {
  20919. height: math.unit(1.1, "feet"),
  20920. name: "Fist",
  20921. image: {
  20922. source: "./media/characters/typhek/fist.svg"
  20923. }
  20924. },
  20925. foot: {
  20926. height: math.unit(1.57, "feet"),
  20927. name: "Foot",
  20928. image: {
  20929. source: "./media/characters/typhek/foot.svg"
  20930. }
  20931. },
  20932. sole: {
  20933. height: math.unit(2.05, "feet"),
  20934. name: "Sole",
  20935. image: {
  20936. source: "./media/characters/typhek/sole.svg"
  20937. }
  20938. },
  20939. },
  20940. [
  20941. {
  20942. name: "Macro",
  20943. height: math.unit(40, "stories"),
  20944. default: true
  20945. },
  20946. {
  20947. name: "Megamacro",
  20948. height: math.unit(1, "mile")
  20949. },
  20950. {
  20951. name: "Gigamacro",
  20952. height: math.unit(4000, "solarradii")
  20953. },
  20954. {
  20955. name: "Universal",
  20956. height: math.unit(1.1, "universes")
  20957. }
  20958. ]
  20959. ))
  20960. characterMakers.push(() => makeCharacter(
  20961. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20962. {
  20963. side: {
  20964. height: math.unit(5 + 7 / 12, "feet"),
  20965. weight: math.unit(150, "lb"),
  20966. name: "Side",
  20967. image: {
  20968. source: "./media/characters/kassy/side.svg",
  20969. extra: 1280 / 1225,
  20970. bottom: 0.002
  20971. }
  20972. },
  20973. front: {
  20974. height: math.unit(5 + 7 / 12, "feet"),
  20975. weight: math.unit(150, "lb"),
  20976. name: "Front",
  20977. image: {
  20978. source: "./media/characters/kassy/front.svg",
  20979. extra: 1280 / 1225,
  20980. bottom: 0.025
  20981. }
  20982. },
  20983. back: {
  20984. height: math.unit(5 + 7 / 12, "feet"),
  20985. weight: math.unit(150, "lb"),
  20986. name: "Back",
  20987. image: {
  20988. source: "./media/characters/kassy/back.svg",
  20989. extra: 1280 / 1225,
  20990. bottom: 0.002
  20991. }
  20992. },
  20993. foot: {
  20994. height: math.unit(1.266, "feet"),
  20995. name: "Foot",
  20996. image: {
  20997. source: "./media/characters/kassy/foot.svg"
  20998. }
  20999. },
  21000. },
  21001. [
  21002. {
  21003. name: "Normal",
  21004. height: math.unit(5 + 7 / 12, "feet")
  21005. },
  21006. {
  21007. name: "Macro",
  21008. height: math.unit(137, "feet"),
  21009. default: true
  21010. },
  21011. {
  21012. name: "Megamacro",
  21013. height: math.unit(1, "mile")
  21014. },
  21015. ]
  21016. ))
  21017. characterMakers.push(() => makeCharacter(
  21018. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21019. {
  21020. front: {
  21021. height: math.unit(6 + 1 / 12, "feet"),
  21022. weight: math.unit(200, "lb"),
  21023. name: "Front",
  21024. image: {
  21025. source: "./media/characters/neil/front.svg",
  21026. extra: 1326 / 1250,
  21027. bottom: 0.023
  21028. }
  21029. },
  21030. },
  21031. [
  21032. {
  21033. name: "Normal",
  21034. height: math.unit(6 + 1 / 12, "feet"),
  21035. default: true
  21036. },
  21037. {
  21038. name: "Macro",
  21039. height: math.unit(200, "feet")
  21040. },
  21041. ]
  21042. ))
  21043. characterMakers.push(() => makeCharacter(
  21044. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21045. {
  21046. front: {
  21047. height: math.unit(5 + 9 / 12, "feet"),
  21048. weight: math.unit(190, "lb"),
  21049. name: "Front",
  21050. image: {
  21051. source: "./media/characters/atticus/front.svg",
  21052. extra: 2934 / 2785,
  21053. bottom: 0.025
  21054. }
  21055. },
  21056. },
  21057. [
  21058. {
  21059. name: "Normal",
  21060. height: math.unit(5 + 9 / 12, "feet"),
  21061. default: true
  21062. },
  21063. {
  21064. name: "Macro",
  21065. height: math.unit(180, "feet")
  21066. },
  21067. ]
  21068. ))
  21069. characterMakers.push(() => makeCharacter(
  21070. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21071. {
  21072. side: {
  21073. height: math.unit(9, "feet"),
  21074. weight: math.unit(650, "lb"),
  21075. name: "Side",
  21076. image: {
  21077. source: "./media/characters/milo/side.svg",
  21078. extra: 2644 / 2310,
  21079. bottom: 0.032
  21080. }
  21081. },
  21082. },
  21083. [
  21084. {
  21085. name: "Normal",
  21086. height: math.unit(9, "feet"),
  21087. default: true
  21088. },
  21089. {
  21090. name: "Macro",
  21091. height: math.unit(300, "feet")
  21092. },
  21093. ]
  21094. ))
  21095. characterMakers.push(() => makeCharacter(
  21096. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21097. {
  21098. side: {
  21099. height: math.unit(8, "meters"),
  21100. weight: math.unit(90000, "kg"),
  21101. name: "Side",
  21102. image: {
  21103. source: "./media/characters/ijzer/side.svg",
  21104. extra: 2756 / 1600,
  21105. bottom: 0.01
  21106. }
  21107. },
  21108. },
  21109. [
  21110. {
  21111. name: "Small",
  21112. height: math.unit(3, "meters")
  21113. },
  21114. {
  21115. name: "Normal",
  21116. height: math.unit(8, "meters"),
  21117. default: true
  21118. },
  21119. {
  21120. name: "Normal+",
  21121. height: math.unit(10, "meters")
  21122. },
  21123. {
  21124. name: "Bigger",
  21125. height: math.unit(24, "meters")
  21126. },
  21127. {
  21128. name: "Huge",
  21129. height: math.unit(80, "meters")
  21130. },
  21131. ]
  21132. ))
  21133. characterMakers.push(() => makeCharacter(
  21134. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21135. {
  21136. front: {
  21137. height: math.unit(6 + 2 / 12, "feet"),
  21138. weight: math.unit(153, "lb"),
  21139. name: "Front",
  21140. image: {
  21141. source: "./media/characters/luca-cervicum/front.svg",
  21142. extra: 370 / 327,
  21143. bottom: 0.015
  21144. }
  21145. },
  21146. back: {
  21147. height: math.unit(6 + 2 / 12, "feet"),
  21148. weight: math.unit(153, "lb"),
  21149. name: "Back",
  21150. image: {
  21151. source: "./media/characters/luca-cervicum/back.svg",
  21152. extra: 367 / 333,
  21153. bottom: 0.005
  21154. }
  21155. },
  21156. frontGear: {
  21157. height: math.unit(6 + 2 / 12, "feet"),
  21158. weight: math.unit(173, "lb"),
  21159. name: "Front (Gear)",
  21160. image: {
  21161. source: "./media/characters/luca-cervicum/front-gear.svg",
  21162. extra: 377 / 333,
  21163. bottom: 0.006
  21164. }
  21165. },
  21166. },
  21167. [
  21168. {
  21169. name: "Normal",
  21170. height: math.unit(6 + 2 / 12, "feet"),
  21171. default: true
  21172. },
  21173. ]
  21174. ))
  21175. characterMakers.push(() => makeCharacter(
  21176. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21177. {
  21178. front: {
  21179. height: math.unit(6 + 1 / 12, "feet"),
  21180. weight: math.unit(304, "lb"),
  21181. name: "Front",
  21182. image: {
  21183. source: "./media/characters/oliver/front.svg",
  21184. extra: 157 / 143,
  21185. bottom: 0.08
  21186. }
  21187. },
  21188. },
  21189. [
  21190. {
  21191. name: "Normal",
  21192. height: math.unit(6 + 1 / 12, "feet"),
  21193. default: true
  21194. },
  21195. ]
  21196. ))
  21197. characterMakers.push(() => makeCharacter(
  21198. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21199. {
  21200. front: {
  21201. height: math.unit(5 + 7 / 12, "feet"),
  21202. weight: math.unit(140, "lb"),
  21203. name: "Front",
  21204. image: {
  21205. source: "./media/characters/shane/front.svg",
  21206. extra: 304 / 289,
  21207. bottom: 0.005
  21208. }
  21209. },
  21210. },
  21211. [
  21212. {
  21213. name: "Normal",
  21214. height: math.unit(5 + 7 / 12, "feet"),
  21215. default: true
  21216. },
  21217. ]
  21218. ))
  21219. characterMakers.push(() => makeCharacter(
  21220. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21221. {
  21222. front: {
  21223. height: math.unit(5 + 9 / 12, "feet"),
  21224. weight: math.unit(178, "lb"),
  21225. name: "Front",
  21226. image: {
  21227. source: "./media/characters/shin/front.svg",
  21228. extra: 159 / 151,
  21229. bottom: 0.015
  21230. }
  21231. },
  21232. },
  21233. [
  21234. {
  21235. name: "Normal",
  21236. height: math.unit(5 + 9 / 12, "feet"),
  21237. default: true
  21238. },
  21239. ]
  21240. ))
  21241. characterMakers.push(() => makeCharacter(
  21242. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21243. {
  21244. front: {
  21245. height: math.unit(5 + 10 / 12, "feet"),
  21246. weight: math.unit(168, "lb"),
  21247. name: "Front",
  21248. image: {
  21249. source: "./media/characters/xerxes/front.svg",
  21250. extra: 282 / 260,
  21251. bottom: 0.045
  21252. }
  21253. },
  21254. },
  21255. [
  21256. {
  21257. name: "Normal",
  21258. height: math.unit(5 + 10 / 12, "feet"),
  21259. default: true
  21260. },
  21261. ]
  21262. ))
  21263. characterMakers.push(() => makeCharacter(
  21264. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21265. {
  21266. front: {
  21267. height: math.unit(6 + 7 / 12, "feet"),
  21268. weight: math.unit(208, "lb"),
  21269. name: "Front",
  21270. image: {
  21271. source: "./media/characters/chaska/front.svg",
  21272. extra: 332 / 319,
  21273. bottom: 0.015
  21274. }
  21275. },
  21276. },
  21277. [
  21278. {
  21279. name: "Normal",
  21280. height: math.unit(6 + 7 / 12, "feet"),
  21281. default: true
  21282. },
  21283. ]
  21284. ))
  21285. characterMakers.push(() => makeCharacter(
  21286. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21287. {
  21288. front: {
  21289. height: math.unit(5 + 8 / 12, "feet"),
  21290. weight: math.unit(208, "lb"),
  21291. name: "Front",
  21292. image: {
  21293. source: "./media/characters/enuk/front.svg",
  21294. extra: 437 / 406,
  21295. bottom: 0.02
  21296. }
  21297. },
  21298. },
  21299. [
  21300. {
  21301. name: "Normal",
  21302. height: math.unit(5 + 8 / 12, "feet"),
  21303. default: true
  21304. },
  21305. ]
  21306. ))
  21307. characterMakers.push(() => makeCharacter(
  21308. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21309. {
  21310. front: {
  21311. height: math.unit(5 + 10 / 12, "feet"),
  21312. weight: math.unit(252, "lb"),
  21313. name: "Front",
  21314. image: {
  21315. source: "./media/characters/bruun/front.svg",
  21316. extra: 197 / 187,
  21317. bottom: 0.012
  21318. }
  21319. },
  21320. },
  21321. [
  21322. {
  21323. name: "Normal",
  21324. height: math.unit(5 + 10 / 12, "feet"),
  21325. default: true
  21326. },
  21327. ]
  21328. ))
  21329. characterMakers.push(() => makeCharacter(
  21330. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21331. {
  21332. front: {
  21333. height: math.unit(6 + 10 / 12, "feet"),
  21334. weight: math.unit(255, "lb"),
  21335. name: "Front",
  21336. image: {
  21337. source: "./media/characters/alexeev/front.svg",
  21338. extra: 213 / 200,
  21339. bottom: 0.05
  21340. }
  21341. },
  21342. },
  21343. [
  21344. {
  21345. name: "Normal",
  21346. height: math.unit(6 + 10 / 12, "feet"),
  21347. default: true
  21348. },
  21349. ]
  21350. ))
  21351. characterMakers.push(() => makeCharacter(
  21352. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21353. {
  21354. front: {
  21355. height: math.unit(2 + 8 / 12, "feet"),
  21356. weight: math.unit(22, "lb"),
  21357. name: "Front",
  21358. image: {
  21359. source: "./media/characters/evelyn/front.svg",
  21360. extra: 208 / 180
  21361. }
  21362. },
  21363. },
  21364. [
  21365. {
  21366. name: "Normal",
  21367. height: math.unit(2 + 8 / 12, "feet"),
  21368. default: true
  21369. },
  21370. ]
  21371. ))
  21372. characterMakers.push(() => makeCharacter(
  21373. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21374. {
  21375. front: {
  21376. height: math.unit(5 + 9 / 12, "feet"),
  21377. weight: math.unit(139, "lb"),
  21378. name: "Front",
  21379. image: {
  21380. source: "./media/characters/inca/front.svg",
  21381. extra: 294 / 291,
  21382. bottom: 0.03
  21383. }
  21384. },
  21385. },
  21386. [
  21387. {
  21388. name: "Normal",
  21389. height: math.unit(5 + 9 / 12, "feet"),
  21390. default: true
  21391. },
  21392. ]
  21393. ))
  21394. characterMakers.push(() => makeCharacter(
  21395. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21396. {
  21397. front: {
  21398. height: math.unit(6 + 3 / 12, "feet"),
  21399. weight: math.unit(185, "lb"),
  21400. name: "Front",
  21401. image: {
  21402. source: "./media/characters/mera/front.svg",
  21403. extra: 291 / 277,
  21404. bottom: 0.03
  21405. }
  21406. },
  21407. },
  21408. [
  21409. {
  21410. name: "Normal",
  21411. height: math.unit(6 + 3 / 12, "feet"),
  21412. default: true
  21413. },
  21414. ]
  21415. ))
  21416. characterMakers.push(() => makeCharacter(
  21417. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21418. {
  21419. front: {
  21420. height: math.unit(6 + 7 / 12, "feet"),
  21421. weight: math.unit(160, "lb"),
  21422. name: "Front",
  21423. image: {
  21424. source: "./media/characters/ceres/front.svg",
  21425. extra: 1023 / 950,
  21426. bottom: 0.027
  21427. }
  21428. },
  21429. back: {
  21430. height: math.unit(6 + 7 / 12, "feet"),
  21431. weight: math.unit(160, "lb"),
  21432. name: "Back",
  21433. image: {
  21434. source: "./media/characters/ceres/back.svg",
  21435. extra: 1023 / 950
  21436. }
  21437. },
  21438. },
  21439. [
  21440. {
  21441. name: "Normal",
  21442. height: math.unit(6 + 7 / 12, "feet"),
  21443. default: true
  21444. },
  21445. ]
  21446. ))
  21447. characterMakers.push(() => makeCharacter(
  21448. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21449. {
  21450. front: {
  21451. height: math.unit(5 + 10 / 12, "feet"),
  21452. weight: math.unit(150, "lb"),
  21453. name: "Front",
  21454. image: {
  21455. source: "./media/characters/kris/front.svg",
  21456. extra: 885 / 803,
  21457. bottom: 0.03
  21458. }
  21459. },
  21460. },
  21461. [
  21462. {
  21463. name: "Normal",
  21464. height: math.unit(5 + 10 / 12, "feet"),
  21465. default: true
  21466. },
  21467. ]
  21468. ))
  21469. characterMakers.push(() => makeCharacter(
  21470. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21471. {
  21472. front: {
  21473. height: math.unit(7, "feet"),
  21474. weight: math.unit(120, "kg"),
  21475. name: "Front",
  21476. image: {
  21477. source: "./media/characters/taluthus/front.svg",
  21478. extra: 903 / 833,
  21479. bottom: 0.015
  21480. }
  21481. },
  21482. },
  21483. [
  21484. {
  21485. name: "Normal",
  21486. height: math.unit(7, "feet"),
  21487. default: true
  21488. },
  21489. {
  21490. name: "Macro",
  21491. height: math.unit(300, "feet")
  21492. },
  21493. ]
  21494. ))
  21495. characterMakers.push(() => makeCharacter(
  21496. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21497. {
  21498. front: {
  21499. height: math.unit(5 + 9 / 12, "feet"),
  21500. weight: math.unit(145, "lb"),
  21501. name: "Front",
  21502. image: {
  21503. source: "./media/characters/dawn/front.svg",
  21504. extra: 2094 / 2016,
  21505. bottom: 0.025
  21506. }
  21507. },
  21508. back: {
  21509. height: math.unit(5 + 9 / 12, "feet"),
  21510. weight: math.unit(160, "lb"),
  21511. name: "Back",
  21512. image: {
  21513. source: "./media/characters/dawn/back.svg",
  21514. extra: 2112 / 2080,
  21515. bottom: 0.005
  21516. }
  21517. },
  21518. },
  21519. [
  21520. {
  21521. name: "Normal",
  21522. height: math.unit(6 + 7 / 12, "feet"),
  21523. default: true
  21524. },
  21525. ]
  21526. ))
  21527. characterMakers.push(() => makeCharacter(
  21528. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21529. {
  21530. anthro: {
  21531. height: math.unit(8 + 3 / 12, "feet"),
  21532. weight: math.unit(450, "lb"),
  21533. name: "Anthro",
  21534. image: {
  21535. source: "./media/characters/arador/anthro.svg",
  21536. extra: 1835 / 1718,
  21537. bottom: 0.025
  21538. }
  21539. },
  21540. feral: {
  21541. height: math.unit(4, "feet"),
  21542. weight: math.unit(200, "lb"),
  21543. name: "Feral",
  21544. image: {
  21545. source: "./media/characters/arador/feral.svg",
  21546. extra: 1683 / 1514,
  21547. bottom: 0.07
  21548. }
  21549. },
  21550. },
  21551. [
  21552. {
  21553. name: "Normal",
  21554. height: math.unit(8 + 3 / 12, "feet")
  21555. },
  21556. {
  21557. name: "Macro",
  21558. height: math.unit(82.5, "feet"),
  21559. default: true
  21560. },
  21561. ]
  21562. ))
  21563. characterMakers.push(() => makeCharacter(
  21564. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21565. {
  21566. front: {
  21567. height: math.unit(5 + 10 / 12, "feet"),
  21568. weight: math.unit(125, "lb"),
  21569. name: "Front",
  21570. image: {
  21571. source: "./media/characters/dharsi/front.svg",
  21572. extra: 716 / 630,
  21573. bottom: 0.035
  21574. }
  21575. },
  21576. },
  21577. [
  21578. {
  21579. name: "Nano",
  21580. height: math.unit(100, "nm")
  21581. },
  21582. {
  21583. name: "Micro",
  21584. height: math.unit(2, "inches")
  21585. },
  21586. {
  21587. name: "Normal",
  21588. height: math.unit(5 + 10 / 12, "feet"),
  21589. default: true
  21590. },
  21591. {
  21592. name: "Macro",
  21593. height: math.unit(1000, "feet")
  21594. },
  21595. {
  21596. name: "Megamacro",
  21597. height: math.unit(10, "miles")
  21598. },
  21599. {
  21600. name: "Gigamacro",
  21601. height: math.unit(3000, "miles")
  21602. },
  21603. {
  21604. name: "Teramacro",
  21605. height: math.unit(500000, "miles")
  21606. },
  21607. {
  21608. name: "Teramacro+",
  21609. height: math.unit(30, "galaxies")
  21610. },
  21611. ]
  21612. ))
  21613. characterMakers.push(() => makeCharacter(
  21614. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21615. {
  21616. front: {
  21617. height: math.unit(6, "feet"),
  21618. weight: math.unit(150, "lb"),
  21619. name: "Front",
  21620. image: {
  21621. source: "./media/characters/deathy/front.svg",
  21622. extra: 1552 / 1463,
  21623. bottom: 0.025
  21624. }
  21625. },
  21626. side: {
  21627. height: math.unit(6, "feet"),
  21628. weight: math.unit(150, "lb"),
  21629. name: "Side",
  21630. image: {
  21631. source: "./media/characters/deathy/side.svg",
  21632. extra: 1604 / 1455,
  21633. bottom: 0.025
  21634. }
  21635. },
  21636. back: {
  21637. height: math.unit(6, "feet"),
  21638. weight: math.unit(150, "lb"),
  21639. name: "Back",
  21640. image: {
  21641. source: "./media/characters/deathy/back.svg",
  21642. extra: 1580 / 1463,
  21643. bottom: 0.005
  21644. }
  21645. },
  21646. },
  21647. [
  21648. {
  21649. name: "Micro",
  21650. height: math.unit(5, "millimeters")
  21651. },
  21652. {
  21653. name: "Normal",
  21654. height: math.unit(6 + 5 / 12, "feet"),
  21655. default: true
  21656. },
  21657. ]
  21658. ))
  21659. characterMakers.push(() => makeCharacter(
  21660. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21661. {
  21662. front: {
  21663. height: math.unit(16, "feet"),
  21664. weight: math.unit(4000, "lb"),
  21665. name: "Front",
  21666. image: {
  21667. source: "./media/characters/juniper/front.svg",
  21668. bottom: 0.04
  21669. }
  21670. },
  21671. },
  21672. [
  21673. {
  21674. name: "Normal",
  21675. height: math.unit(16, "feet"),
  21676. default: true
  21677. },
  21678. ]
  21679. ))
  21680. characterMakers.push(() => makeCharacter(
  21681. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21682. {
  21683. front: {
  21684. height: math.unit(6, "feet"),
  21685. weight: math.unit(150, "lb"),
  21686. name: "Front",
  21687. image: {
  21688. source: "./media/characters/hipster/front.svg",
  21689. extra: 1312 / 1209,
  21690. bottom: 0.025
  21691. }
  21692. },
  21693. back: {
  21694. height: math.unit(6, "feet"),
  21695. weight: math.unit(150, "lb"),
  21696. name: "Back",
  21697. image: {
  21698. source: "./media/characters/hipster/back.svg",
  21699. extra: 1281 / 1196,
  21700. bottom: 0.01
  21701. }
  21702. },
  21703. },
  21704. [
  21705. {
  21706. name: "Micro",
  21707. height: math.unit(1, "mm")
  21708. },
  21709. {
  21710. name: "Normal",
  21711. height: math.unit(4, "inches"),
  21712. default: true
  21713. },
  21714. {
  21715. name: "Macro",
  21716. height: math.unit(500, "feet")
  21717. },
  21718. {
  21719. name: "Megamacro",
  21720. height: math.unit(1000, "miles")
  21721. },
  21722. ]
  21723. ))
  21724. characterMakers.push(() => makeCharacter(
  21725. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21726. {
  21727. front: {
  21728. height: math.unit(6, "feet"),
  21729. weight: math.unit(150, "lb"),
  21730. name: "Front",
  21731. image: {
  21732. source: "./media/characters/tendirmuldr/front.svg",
  21733. extra: 1878 / 1772,
  21734. bottom: 0.015
  21735. }
  21736. },
  21737. },
  21738. [
  21739. {
  21740. name: "Megamacro",
  21741. height: math.unit(1500, "miles"),
  21742. default: true
  21743. },
  21744. ]
  21745. ))
  21746. characterMakers.push(() => makeCharacter(
  21747. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21748. {
  21749. front: {
  21750. height: math.unit(14, "feet"),
  21751. weight: math.unit(12000, "lb"),
  21752. name: "Front",
  21753. image: {
  21754. source: "./media/characters/mort/front.svg",
  21755. extra: 365 / 318,
  21756. bottom: 0.01
  21757. }
  21758. },
  21759. side: {
  21760. height: math.unit(14, "feet"),
  21761. weight: math.unit(12000, "lb"),
  21762. name: "Side",
  21763. image: {
  21764. source: "./media/characters/mort/side.svg",
  21765. extra: 365 / 318,
  21766. bottom: 0.052
  21767. },
  21768. default: true
  21769. },
  21770. back: {
  21771. height: math.unit(14, "feet"),
  21772. weight: math.unit(12000, "lb"),
  21773. name: "Back",
  21774. image: {
  21775. source: "./media/characters/mort/back.svg",
  21776. extra: 371 / 332,
  21777. bottom: 0.18
  21778. }
  21779. },
  21780. },
  21781. [
  21782. {
  21783. name: "Normal",
  21784. height: math.unit(14, "feet"),
  21785. default: true
  21786. },
  21787. ]
  21788. ))
  21789. characterMakers.push(() => makeCharacter(
  21790. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21791. {
  21792. front: {
  21793. height: math.unit(8, "feet"),
  21794. weight: math.unit(1, "ton"),
  21795. name: "Front",
  21796. image: {
  21797. source: "./media/characters/lycoa/front.svg",
  21798. extra: 1836/1728,
  21799. bottom: 81/1917
  21800. }
  21801. },
  21802. back: {
  21803. height: math.unit(8, "feet"),
  21804. weight: math.unit(1, "ton"),
  21805. name: "Back",
  21806. image: {
  21807. source: "./media/characters/lycoa/back.svg",
  21808. extra: 1785/1720,
  21809. bottom: 91/1876
  21810. }
  21811. },
  21812. head: {
  21813. height: math.unit(1.6243, "feet"),
  21814. name: "Head",
  21815. image: {
  21816. source: "./media/characters/lycoa/head.svg",
  21817. extra: 1011/782,
  21818. bottom: 0/1011
  21819. }
  21820. },
  21821. tailmaw: {
  21822. height: math.unit(1.9, "feet"),
  21823. name: "Tailmaw",
  21824. image: {
  21825. source: "./media/characters/lycoa/tailmaw.svg"
  21826. }
  21827. },
  21828. tentacles: {
  21829. height: math.unit(2.1, "feet"),
  21830. name: "Tentacles",
  21831. image: {
  21832. source: "./media/characters/lycoa/tentacles.svg"
  21833. }
  21834. },
  21835. dick: {
  21836. height: math.unit(1.73, "feet"),
  21837. name: "Dick",
  21838. image: {
  21839. source: "./media/characters/lycoa/dick.svg"
  21840. }
  21841. },
  21842. },
  21843. [
  21844. {
  21845. name: "Normal",
  21846. height: math.unit(8, "feet"),
  21847. default: true
  21848. },
  21849. {
  21850. name: "Macro",
  21851. height: math.unit(30, "feet")
  21852. },
  21853. ]
  21854. ))
  21855. characterMakers.push(() => makeCharacter(
  21856. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21857. {
  21858. front: {
  21859. height: math.unit(4 + 2 / 12, "feet"),
  21860. weight: math.unit(70, "lb"),
  21861. name: "Front",
  21862. image: {
  21863. source: "./media/characters/naldara/front.svg",
  21864. extra: 1664/1387,
  21865. bottom: 81/1745
  21866. },
  21867. form: "anthro",
  21868. default: true
  21869. },
  21870. naga: {
  21871. height: math.unit(20, "feet"),
  21872. weight: math.unit(15000, "kg"),
  21873. name: "Front",
  21874. image: {
  21875. source: "./media/characters/naldara/naga.svg",
  21876. extra: 1590/1396,
  21877. bottom: 285/1875
  21878. },
  21879. form: "naga",
  21880. default: true
  21881. },
  21882. },
  21883. [
  21884. {
  21885. name: "Normal",
  21886. height: math.unit(4 + 2 / 12, "feet"),
  21887. form: "anthro",
  21888. default: true
  21889. },
  21890. {
  21891. name: "Normal",
  21892. height: math.unit(20, "feet"),
  21893. form: "naga",
  21894. default: true
  21895. },
  21896. ],
  21897. {
  21898. "anthro": {
  21899. name: "Anthro",
  21900. default: true
  21901. },
  21902. "naga": {
  21903. name: "Naga"
  21904. }
  21905. }
  21906. ))
  21907. characterMakers.push(() => makeCharacter(
  21908. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21909. {
  21910. front: {
  21911. height: math.unit(13 + 7 / 12, "feet"),
  21912. weight: math.unit(1500, "lb"),
  21913. name: "Front",
  21914. image: {
  21915. source: "./media/characters/briar/front.svg",
  21916. extra: 1223/1157,
  21917. bottom: 123/1346
  21918. }
  21919. },
  21920. },
  21921. [
  21922. {
  21923. name: "Normal",
  21924. height: math.unit(13 + 7 / 12, "feet"),
  21925. default: true
  21926. },
  21927. ]
  21928. ))
  21929. characterMakers.push(() => makeCharacter(
  21930. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21931. {
  21932. side: {
  21933. height: math.unit(16, "feet"),
  21934. weight: math.unit(500, "lb"),
  21935. name: "Side",
  21936. image: {
  21937. source: "./media/characters/vanguard/side.svg",
  21938. extra: 1022/914,
  21939. bottom: 30/1052
  21940. }
  21941. },
  21942. sideAlt: {
  21943. height: math.unit(10, "feet"),
  21944. weight: math.unit(500, "lb"),
  21945. name: "Side (Alt)",
  21946. image: {
  21947. source: "./media/characters/vanguard/side-alt.svg",
  21948. extra: 502 / 425,
  21949. bottom: 0.087
  21950. }
  21951. },
  21952. },
  21953. [
  21954. {
  21955. name: "Normal",
  21956. height: math.unit(17.71, "feet"),
  21957. default: true
  21958. },
  21959. ]
  21960. ))
  21961. characterMakers.push(() => makeCharacter(
  21962. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21963. {
  21964. front: {
  21965. height: math.unit(7.5, "feet"),
  21966. weight: math.unit(2, "lb"),
  21967. name: "Front",
  21968. image: {
  21969. source: "./media/characters/artemis/work-safe-front.svg",
  21970. extra: 1192 / 1075,
  21971. bottom: 0.07
  21972. },
  21973. form: "work-safe",
  21974. default: true
  21975. },
  21976. frontNsfw: {
  21977. height: math.unit(7.5, "feet"),
  21978. weight: math.unit(2, "lb"),
  21979. name: "Front",
  21980. image: {
  21981. source: "./media/characters/artemis/calibrating-front.svg",
  21982. extra: 1192 / 1075,
  21983. bottom: 0.07
  21984. },
  21985. form: "calibrating",
  21986. default: true
  21987. },
  21988. frontNsfwer: {
  21989. height: math.unit(7.5, "feet"),
  21990. weight: math.unit(2, "lb"),
  21991. name: "Front",
  21992. image: {
  21993. source: "./media/characters/artemis/oversize-load-front.svg",
  21994. extra: 1192 / 1075,
  21995. bottom: 0.07
  21996. },
  21997. form: "oversize-load",
  21998. default: true
  21999. },
  22000. side: {
  22001. height: math.unit(7.5, "feet"),
  22002. weight: math.unit(2, "lb"),
  22003. name: "Side",
  22004. image: {
  22005. source: "./media/characters/artemis/work-safe-side.svg",
  22006. extra: 1192 / 1075,
  22007. bottom: 0.07
  22008. },
  22009. form: "work-safe"
  22010. },
  22011. sideNsfw: {
  22012. height: math.unit(7.5, "feet"),
  22013. weight: math.unit(2, "lb"),
  22014. name: "Side",
  22015. image: {
  22016. source: "./media/characters/artemis/calibrating-side.svg",
  22017. extra: 1192 / 1075,
  22018. bottom: 0.07
  22019. },
  22020. form: "calibrating"
  22021. },
  22022. sideNsfwer: {
  22023. height: math.unit(7.5, "feet"),
  22024. weight: math.unit(2, "lb"),
  22025. name: "Side",
  22026. image: {
  22027. source: "./media/characters/artemis/oversize-load-side.svg",
  22028. extra: 1192 / 1075,
  22029. bottom: 0.07
  22030. },
  22031. form: "oversize-load"
  22032. },
  22033. maw: {
  22034. height: math.unit(1.1, "feet"),
  22035. name: "Maw",
  22036. image: {
  22037. source: "./media/characters/artemis/maw.svg"
  22038. },
  22039. form: "work-safe"
  22040. },
  22041. stomach: {
  22042. height: math.unit(0.95, "feet"),
  22043. name: "Stomach",
  22044. image: {
  22045. source: "./media/characters/artemis/stomach.svg"
  22046. },
  22047. form: "work-safe"
  22048. },
  22049. dickCanine: {
  22050. height: math.unit(1, "feet"),
  22051. name: "Dick (Canine)",
  22052. image: {
  22053. source: "./media/characters/artemis/dick-canine.svg"
  22054. },
  22055. form: "calibrating"
  22056. },
  22057. dickEquine: {
  22058. height: math.unit(0.85, "feet"),
  22059. name: "Dick (Equine)",
  22060. image: {
  22061. source: "./media/characters/artemis/dick-equine.svg"
  22062. },
  22063. form: "calibrating"
  22064. },
  22065. dickExotic: {
  22066. height: math.unit(0.85, "feet"),
  22067. name: "Dick (Exotic)",
  22068. image: {
  22069. source: "./media/characters/artemis/dick-exotic.svg"
  22070. },
  22071. form: "calibrating"
  22072. },
  22073. dickCanineBigger: {
  22074. height: math.unit(1 * 1.33, "feet"),
  22075. name: "Dick (Canine)",
  22076. image: {
  22077. source: "./media/characters/artemis/dick-canine.svg"
  22078. },
  22079. form: "oversize-load"
  22080. },
  22081. dickEquineBigger: {
  22082. height: math.unit(0.85 * 1.33, "feet"),
  22083. name: "Dick (Equine)",
  22084. image: {
  22085. source: "./media/characters/artemis/dick-equine.svg"
  22086. },
  22087. form: "oversize-load"
  22088. },
  22089. dickExoticBigger: {
  22090. height: math.unit(0.85 * 1.33, "feet"),
  22091. name: "Dick (Exotic)",
  22092. image: {
  22093. source: "./media/characters/artemis/dick-exotic.svg"
  22094. },
  22095. form: "oversize-load"
  22096. },
  22097. },
  22098. [
  22099. {
  22100. name: "Normal",
  22101. height: math.unit(7.5, "feet"),
  22102. form: "work-safe",
  22103. default: true
  22104. },
  22105. {
  22106. name: "Normal",
  22107. height: math.unit(7.5, "feet"),
  22108. form: "calibrating",
  22109. default: true
  22110. },
  22111. {
  22112. name: "Normal",
  22113. height: math.unit(7.5, "feet"),
  22114. form: "oversize-load",
  22115. default: true
  22116. },
  22117. {
  22118. name: "Enlarged",
  22119. height: math.unit(12, "feet"),
  22120. form: "work-safe",
  22121. },
  22122. {
  22123. name: "Enlarged",
  22124. height: math.unit(12, "feet"),
  22125. form: "calibrating",
  22126. },
  22127. {
  22128. name: "Enlarged",
  22129. height: math.unit(12, "feet"),
  22130. form: "oversize-load",
  22131. },
  22132. ],
  22133. {
  22134. "work-safe": {
  22135. name: "Work-Safe",
  22136. default: true
  22137. },
  22138. "calibrating": {
  22139. name: "Calibrating"
  22140. },
  22141. "oversize-load": {
  22142. name: "Oversize Load"
  22143. }
  22144. }
  22145. ))
  22146. characterMakers.push(() => makeCharacter(
  22147. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22148. {
  22149. front: {
  22150. height: math.unit(5 + 3 / 12, "feet"),
  22151. weight: math.unit(160, "lb"),
  22152. name: "Front",
  22153. image: {
  22154. source: "./media/characters/kira/front.svg",
  22155. extra: 906 / 786,
  22156. bottom: 0.01
  22157. }
  22158. },
  22159. back: {
  22160. height: math.unit(5 + 3 / 12, "feet"),
  22161. weight: math.unit(160, "lb"),
  22162. name: "Back",
  22163. image: {
  22164. source: "./media/characters/kira/back.svg",
  22165. extra: 882 / 757,
  22166. bottom: 0.005
  22167. }
  22168. },
  22169. frontDressed: {
  22170. height: math.unit(5 + 3 / 12, "feet"),
  22171. weight: math.unit(160, "lb"),
  22172. name: "Front (Dressed)",
  22173. image: {
  22174. source: "./media/characters/kira/front-dressed.svg",
  22175. extra: 906 / 786,
  22176. bottom: 0.01
  22177. }
  22178. },
  22179. beans: {
  22180. height: math.unit(0.92, "feet"),
  22181. name: "Beans",
  22182. image: {
  22183. source: "./media/characters/kira/beans.svg"
  22184. }
  22185. },
  22186. },
  22187. [
  22188. {
  22189. name: "Normal",
  22190. height: math.unit(5 + 3 / 12, "feet"),
  22191. default: true
  22192. },
  22193. ]
  22194. ))
  22195. characterMakers.push(() => makeCharacter(
  22196. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22197. {
  22198. front: {
  22199. height: math.unit(5 + 4 / 12, "feet"),
  22200. weight: math.unit(145, "lb"),
  22201. name: "Front",
  22202. image: {
  22203. source: "./media/characters/scramble/front.svg",
  22204. extra: 763 / 727,
  22205. bottom: 0.05
  22206. }
  22207. },
  22208. back: {
  22209. height: math.unit(5 + 4 / 12, "feet"),
  22210. weight: math.unit(145, "lb"),
  22211. name: "Back",
  22212. image: {
  22213. source: "./media/characters/scramble/back.svg",
  22214. extra: 826 / 737,
  22215. bottom: 0.002
  22216. }
  22217. },
  22218. },
  22219. [
  22220. {
  22221. name: "Normal",
  22222. height: math.unit(5 + 4 / 12, "feet"),
  22223. default: true
  22224. },
  22225. ]
  22226. ))
  22227. characterMakers.push(() => makeCharacter(
  22228. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22229. {
  22230. side: {
  22231. height: math.unit(6 + 2 / 12, "feet"),
  22232. weight: math.unit(190, "lb"),
  22233. name: "Side",
  22234. image: {
  22235. source: "./media/characters/biscuit/side.svg",
  22236. extra: 858 / 791,
  22237. bottom: 0.044
  22238. }
  22239. },
  22240. },
  22241. [
  22242. {
  22243. name: "Normal",
  22244. height: math.unit(6 + 2 / 12, "feet"),
  22245. default: true
  22246. },
  22247. ]
  22248. ))
  22249. characterMakers.push(() => makeCharacter(
  22250. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22251. {
  22252. front: {
  22253. height: math.unit(5 + 2 / 12, "feet"),
  22254. weight: math.unit(120, "lb"),
  22255. name: "Front",
  22256. image: {
  22257. source: "./media/characters/poffin/front.svg",
  22258. extra: 786 / 680,
  22259. bottom: 0.005
  22260. }
  22261. },
  22262. },
  22263. [
  22264. {
  22265. name: "Normal",
  22266. height: math.unit(5 + 2 / 12, "feet"),
  22267. default: true
  22268. },
  22269. ]
  22270. ))
  22271. characterMakers.push(() => makeCharacter(
  22272. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22273. {
  22274. front: {
  22275. height: math.unit(6 + 3 / 12, "feet"),
  22276. weight: math.unit(519, "lb"),
  22277. name: "Front",
  22278. image: {
  22279. source: "./media/characters/dhari/front.svg",
  22280. extra: 1048 / 946,
  22281. bottom: 0.015
  22282. }
  22283. },
  22284. back: {
  22285. height: math.unit(6 + 3 / 12, "feet"),
  22286. weight: math.unit(519, "lb"),
  22287. name: "Back",
  22288. image: {
  22289. source: "./media/characters/dhari/back.svg",
  22290. extra: 1048 / 931,
  22291. bottom: 0.005
  22292. }
  22293. },
  22294. frontDressed: {
  22295. height: math.unit(6 + 3 / 12, "feet"),
  22296. weight: math.unit(519, "lb"),
  22297. name: "Front (Dressed)",
  22298. image: {
  22299. source: "./media/characters/dhari/front-dressed.svg",
  22300. extra: 1713 / 1546,
  22301. bottom: 0.02
  22302. }
  22303. },
  22304. backDressed: {
  22305. height: math.unit(6 + 3 / 12, "feet"),
  22306. weight: math.unit(519, "lb"),
  22307. name: "Back (Dressed)",
  22308. image: {
  22309. source: "./media/characters/dhari/back-dressed.svg",
  22310. extra: 1699 / 1537,
  22311. bottom: 0.01
  22312. }
  22313. },
  22314. maw: {
  22315. height: math.unit(0.95, "feet"),
  22316. name: "Maw",
  22317. image: {
  22318. source: "./media/characters/dhari/maw.svg"
  22319. }
  22320. },
  22321. wereFront: {
  22322. height: math.unit(12 + 8 / 12, "feet"),
  22323. weight: math.unit(4000, "lb"),
  22324. name: "Front (Were)",
  22325. image: {
  22326. source: "./media/characters/dhari/were-front.svg",
  22327. extra: 1065 / 969,
  22328. bottom: 0.015
  22329. }
  22330. },
  22331. wereBack: {
  22332. height: math.unit(12 + 8 / 12, "feet"),
  22333. weight: math.unit(4000, "lb"),
  22334. name: "Back (Were)",
  22335. image: {
  22336. source: "./media/characters/dhari/were-back.svg",
  22337. extra: 1065 / 969,
  22338. bottom: 0.012
  22339. }
  22340. },
  22341. wereMaw: {
  22342. height: math.unit(0.625, "meters"),
  22343. name: "Maw (Were)",
  22344. image: {
  22345. source: "./media/characters/dhari/were-maw.svg"
  22346. }
  22347. },
  22348. },
  22349. [
  22350. {
  22351. name: "Normal",
  22352. height: math.unit(6 + 3 / 12, "feet"),
  22353. default: true
  22354. },
  22355. ]
  22356. ))
  22357. characterMakers.push(() => makeCharacter(
  22358. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22359. {
  22360. anthro: {
  22361. height: math.unit(5 + 7 / 12, "feet"),
  22362. weight: math.unit(175, "lb"),
  22363. name: "Anthro",
  22364. image: {
  22365. source: "./media/characters/rena-dyne/anthro.svg",
  22366. extra: 1849 / 1785,
  22367. bottom: 0.005
  22368. }
  22369. },
  22370. taur: {
  22371. height: math.unit(15 + 6 / 12, "feet"),
  22372. weight: math.unit(8000, "lb"),
  22373. name: "Taur",
  22374. image: {
  22375. source: "./media/characters/rena-dyne/taur.svg",
  22376. extra: 2315 / 2234,
  22377. bottom: 0.033
  22378. }
  22379. },
  22380. },
  22381. [
  22382. {
  22383. name: "Normal",
  22384. height: math.unit(5 + 7 / 12, "feet"),
  22385. default: true
  22386. },
  22387. ]
  22388. ))
  22389. characterMakers.push(() => makeCharacter(
  22390. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22391. {
  22392. front: {
  22393. height: math.unit(8, "feet"),
  22394. weight: math.unit(600, "lb"),
  22395. name: "Front",
  22396. image: {
  22397. source: "./media/characters/weremeep/front.svg",
  22398. extra: 970/849,
  22399. bottom: 7/977
  22400. }
  22401. },
  22402. },
  22403. [
  22404. {
  22405. name: "Normal",
  22406. height: math.unit(8, "feet"),
  22407. default: true
  22408. },
  22409. {
  22410. name: "Lorg",
  22411. height: math.unit(12, "feet")
  22412. },
  22413. {
  22414. name: "Oh Lawd She Comin'",
  22415. height: math.unit(20, "feet")
  22416. },
  22417. ]
  22418. ))
  22419. characterMakers.push(() => makeCharacter(
  22420. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22421. {
  22422. front: {
  22423. height: math.unit(4, "feet"),
  22424. weight: math.unit(90, "lb"),
  22425. name: "Front",
  22426. image: {
  22427. source: "./media/characters/reza/front.svg",
  22428. extra: 1183 / 1111,
  22429. bottom: 0.017
  22430. }
  22431. },
  22432. back: {
  22433. height: math.unit(4, "feet"),
  22434. weight: math.unit(90, "lb"),
  22435. name: "Back",
  22436. image: {
  22437. source: "./media/characters/reza/back.svg",
  22438. extra: 1183 / 1111,
  22439. bottom: 0.01
  22440. }
  22441. },
  22442. drake: {
  22443. height: math.unit(30, "feet"),
  22444. weight: math.unit(246960, "lb"),
  22445. name: "Drake",
  22446. image: {
  22447. source: "./media/characters/reza/drake.svg",
  22448. extra: 2350 / 2024,
  22449. bottom: 60.7 / 2403
  22450. }
  22451. },
  22452. },
  22453. [
  22454. {
  22455. name: "Normal",
  22456. height: math.unit(4, "feet"),
  22457. default: true
  22458. },
  22459. ]
  22460. ))
  22461. characterMakers.push(() => makeCharacter(
  22462. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22463. {
  22464. side: {
  22465. height: math.unit(15, "feet"),
  22466. weight: math.unit(14, "tons"),
  22467. name: "Side",
  22468. image: {
  22469. source: "./media/characters/athea/side.svg",
  22470. extra: 960 / 540,
  22471. bottom: 0.003
  22472. }
  22473. },
  22474. sitting: {
  22475. height: math.unit(6 * 2.85, "feet"),
  22476. weight: math.unit(14, "tons"),
  22477. name: "Sitting",
  22478. image: {
  22479. source: "./media/characters/athea/sitting.svg",
  22480. extra: 621 / 581,
  22481. bottom: 0.075
  22482. }
  22483. },
  22484. maw: {
  22485. height: math.unit(7.59498031496063, "feet"),
  22486. name: "Maw",
  22487. image: {
  22488. source: "./media/characters/athea/maw.svg"
  22489. }
  22490. },
  22491. },
  22492. [
  22493. {
  22494. name: "Lap Cat",
  22495. height: math.unit(2.5, "feet")
  22496. },
  22497. {
  22498. name: "Minimacro",
  22499. height: math.unit(15, "feet"),
  22500. default: true
  22501. },
  22502. {
  22503. name: "Macro",
  22504. height: math.unit(120, "feet")
  22505. },
  22506. {
  22507. name: "Macro+",
  22508. height: math.unit(640, "feet")
  22509. },
  22510. {
  22511. name: "Colossus",
  22512. height: math.unit(2.2, "miles")
  22513. },
  22514. ]
  22515. ))
  22516. characterMakers.push(() => makeCharacter(
  22517. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22518. {
  22519. front: {
  22520. height: math.unit(8 + 8 / 12, "feet"),
  22521. weight: math.unit(130, "kg"),
  22522. name: "Front",
  22523. image: {
  22524. source: "./media/characters/seroko/front.svg",
  22525. extra: 1385 / 1280,
  22526. bottom: 0.025
  22527. }
  22528. },
  22529. back: {
  22530. height: math.unit(8 + 8 / 12, "feet"),
  22531. weight: math.unit(130, "kg"),
  22532. name: "Back",
  22533. image: {
  22534. source: "./media/characters/seroko/back.svg",
  22535. extra: 1369 / 1238,
  22536. bottom: 0.018
  22537. }
  22538. },
  22539. frontDressed: {
  22540. height: math.unit(8 + 8 / 12, "feet"),
  22541. weight: math.unit(130, "kg"),
  22542. name: "Front (Dressed)",
  22543. image: {
  22544. source: "./media/characters/seroko/front-dressed.svg",
  22545. extra: 1366 / 1275,
  22546. bottom: 0.03
  22547. }
  22548. },
  22549. },
  22550. [
  22551. {
  22552. name: "Normal",
  22553. height: math.unit(8 + 8 / 12, "feet"),
  22554. default: true
  22555. },
  22556. ]
  22557. ))
  22558. characterMakers.push(() => makeCharacter(
  22559. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22560. {
  22561. front: {
  22562. height: math.unit(5.5, "feet"),
  22563. weight: math.unit(160, "lb"),
  22564. name: "Front",
  22565. image: {
  22566. source: "./media/characters/quatzi/front.svg",
  22567. extra: 2346 / 2242,
  22568. bottom: 0.015
  22569. }
  22570. },
  22571. },
  22572. [
  22573. {
  22574. name: "Normal",
  22575. height: math.unit(5.5, "feet"),
  22576. default: true
  22577. },
  22578. {
  22579. name: "Big",
  22580. height: math.unit(7.7, "feet")
  22581. },
  22582. ]
  22583. ))
  22584. characterMakers.push(() => makeCharacter(
  22585. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22586. {
  22587. front: {
  22588. height: math.unit(5 + 11 / 12, "feet"),
  22589. weight: math.unit(180, "lb"),
  22590. name: "Front",
  22591. image: {
  22592. source: "./media/characters/sen/front.svg",
  22593. extra: 1321 / 1254,
  22594. bottom: 0.015
  22595. }
  22596. },
  22597. side: {
  22598. height: math.unit(5 + 11 / 12, "feet"),
  22599. weight: math.unit(180, "lb"),
  22600. name: "Side",
  22601. image: {
  22602. source: "./media/characters/sen/side.svg",
  22603. extra: 1321 / 1254,
  22604. bottom: 0.007
  22605. }
  22606. },
  22607. back: {
  22608. height: math.unit(5 + 11 / 12, "feet"),
  22609. weight: math.unit(180, "lb"),
  22610. name: "Back",
  22611. image: {
  22612. source: "./media/characters/sen/back.svg",
  22613. extra: 1321 / 1254
  22614. }
  22615. },
  22616. },
  22617. [
  22618. {
  22619. name: "Normal",
  22620. height: math.unit(5 + 11 / 12, "feet"),
  22621. default: true
  22622. },
  22623. ]
  22624. ))
  22625. characterMakers.push(() => makeCharacter(
  22626. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22627. {
  22628. front: {
  22629. height: math.unit(166.6, "cm"),
  22630. weight: math.unit(66.6, "kg"),
  22631. name: "Front",
  22632. image: {
  22633. source: "./media/characters/fruity/front.svg",
  22634. extra: 1510 / 1386,
  22635. bottom: 0.04
  22636. }
  22637. },
  22638. back: {
  22639. height: math.unit(166.6, "cm"),
  22640. weight: math.unit(66.6, "lb"),
  22641. name: "Back",
  22642. image: {
  22643. source: "./media/characters/fruity/back.svg",
  22644. extra: 1563 / 1435,
  22645. bottom: 0.005
  22646. }
  22647. },
  22648. },
  22649. [
  22650. {
  22651. name: "Normal",
  22652. height: math.unit(166.6, "cm"),
  22653. default: true
  22654. },
  22655. {
  22656. name: "Demonic",
  22657. height: math.unit(166.6, "feet")
  22658. },
  22659. ]
  22660. ))
  22661. characterMakers.push(() => makeCharacter(
  22662. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22663. {
  22664. side: {
  22665. height: math.unit(10, "feet"),
  22666. weight: math.unit(500, "lb"),
  22667. name: "Side",
  22668. image: {
  22669. source: "./media/characters/zost/side.svg",
  22670. extra: 2870/2533,
  22671. bottom: 252/3122
  22672. }
  22673. },
  22674. mawFront: {
  22675. height: math.unit(1.08, "meters"),
  22676. name: "Maw (Front)",
  22677. image: {
  22678. source: "./media/characters/zost/maw-front.svg"
  22679. }
  22680. },
  22681. mawSide: {
  22682. height: math.unit(2.66, "feet"),
  22683. name: "Maw (Side)",
  22684. image: {
  22685. source: "./media/characters/zost/maw-side.svg"
  22686. }
  22687. },
  22688. wingspan: {
  22689. height: math.unit(7.4, "feet"),
  22690. name: "Wingspan",
  22691. image: {
  22692. source: "./media/characters/zost/wingspan.svg"
  22693. }
  22694. },
  22695. },
  22696. [
  22697. {
  22698. name: "Normal",
  22699. height: math.unit(10, "feet"),
  22700. default: true
  22701. },
  22702. ]
  22703. ))
  22704. characterMakers.push(() => makeCharacter(
  22705. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22706. {
  22707. front: {
  22708. height: math.unit(5 + 4 / 12, "feet"),
  22709. weight: math.unit(120, "lb"),
  22710. name: "Front",
  22711. image: {
  22712. source: "./media/characters/luci/front.svg",
  22713. extra: 1985 / 1884,
  22714. bottom: 0.04
  22715. }
  22716. },
  22717. back: {
  22718. height: math.unit(5 + 4 / 12, "feet"),
  22719. weight: math.unit(120, "lb"),
  22720. name: "Back",
  22721. image: {
  22722. source: "./media/characters/luci/back.svg",
  22723. extra: 1892 / 1791,
  22724. bottom: 0.002
  22725. }
  22726. },
  22727. },
  22728. [
  22729. {
  22730. name: "Normal",
  22731. height: math.unit(5 + 4 / 12, "feet"),
  22732. default: true
  22733. },
  22734. ]
  22735. ))
  22736. characterMakers.push(() => makeCharacter(
  22737. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22738. {
  22739. front: {
  22740. height: math.unit(1500, "feet"),
  22741. weight: math.unit(3.8e6, "tons"),
  22742. name: "Front",
  22743. image: {
  22744. source: "./media/characters/2th/front.svg",
  22745. extra: 3489 / 3350,
  22746. bottom: 0.1
  22747. }
  22748. },
  22749. foot: {
  22750. height: math.unit(461, "feet"),
  22751. name: "Foot",
  22752. image: {
  22753. source: "./media/characters/2th/foot.svg"
  22754. }
  22755. },
  22756. },
  22757. [
  22758. {
  22759. name: "\"Micro\"",
  22760. height: math.unit(15 + 7 / 12, "feet")
  22761. },
  22762. {
  22763. name: "Normal",
  22764. height: math.unit(1500, "feet"),
  22765. default: true
  22766. },
  22767. {
  22768. name: "Macro",
  22769. height: math.unit(5000, "feet")
  22770. },
  22771. {
  22772. name: "Megamacro",
  22773. height: math.unit(15, "miles")
  22774. },
  22775. {
  22776. name: "Gigamacro",
  22777. height: math.unit(4000, "miles")
  22778. },
  22779. {
  22780. name: "Galactic",
  22781. height: math.unit(50, "AU")
  22782. },
  22783. ]
  22784. ))
  22785. characterMakers.push(() => makeCharacter(
  22786. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22787. {
  22788. front: {
  22789. height: math.unit(5 + 6 / 12, "feet"),
  22790. weight: math.unit(220, "lb"),
  22791. name: "Front",
  22792. image: {
  22793. source: "./media/characters/amethyst/front.svg",
  22794. extra: 2078 / 2040,
  22795. bottom: 0.045
  22796. }
  22797. },
  22798. back: {
  22799. height: math.unit(5 + 6 / 12, "feet"),
  22800. weight: math.unit(220, "lb"),
  22801. name: "Back",
  22802. image: {
  22803. source: "./media/characters/amethyst/back.svg",
  22804. extra: 2021 / 1989,
  22805. bottom: 0.02
  22806. }
  22807. },
  22808. },
  22809. [
  22810. {
  22811. name: "Normal",
  22812. height: math.unit(5 + 6 / 12, "feet"),
  22813. default: true
  22814. },
  22815. ]
  22816. ))
  22817. characterMakers.push(() => makeCharacter(
  22818. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22819. {
  22820. front: {
  22821. height: math.unit(4 + 11 / 12, "feet"),
  22822. weight: math.unit(120, "lb"),
  22823. name: "Front",
  22824. image: {
  22825. source: "./media/characters/yumi-akiyama/front.svg",
  22826. extra: 1327 / 1235,
  22827. bottom: 0.02
  22828. }
  22829. },
  22830. back: {
  22831. height: math.unit(4 + 11 / 12, "feet"),
  22832. weight: math.unit(120, "lb"),
  22833. name: "Back",
  22834. image: {
  22835. source: "./media/characters/yumi-akiyama/back.svg",
  22836. extra: 1287 / 1245,
  22837. bottom: 0.002
  22838. }
  22839. },
  22840. },
  22841. [
  22842. {
  22843. name: "Galactic",
  22844. height: math.unit(50, "galaxies"),
  22845. default: true
  22846. },
  22847. {
  22848. name: "Universal",
  22849. height: math.unit(100, "universes")
  22850. },
  22851. ]
  22852. ))
  22853. characterMakers.push(() => makeCharacter(
  22854. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22855. {
  22856. front: {
  22857. height: math.unit(8, "feet"),
  22858. weight: math.unit(500, "lb"),
  22859. name: "Front",
  22860. image: {
  22861. source: "./media/characters/rifter-yrmori/front.svg",
  22862. extra: 1180 / 1125,
  22863. bottom: 0.02
  22864. }
  22865. },
  22866. back: {
  22867. height: math.unit(8, "feet"),
  22868. weight: math.unit(500, "lb"),
  22869. name: "Back",
  22870. image: {
  22871. source: "./media/characters/rifter-yrmori/back.svg",
  22872. extra: 1190 / 1145,
  22873. bottom: 0.001
  22874. }
  22875. },
  22876. wings: {
  22877. height: math.unit(7.75, "feet"),
  22878. weight: math.unit(500, "lb"),
  22879. name: "Wings",
  22880. image: {
  22881. source: "./media/characters/rifter-yrmori/wings.svg",
  22882. extra: 1357 / 1285
  22883. }
  22884. },
  22885. maw: {
  22886. height: math.unit(0.8, "feet"),
  22887. name: "Maw",
  22888. image: {
  22889. source: "./media/characters/rifter-yrmori/maw.svg"
  22890. }
  22891. },
  22892. mawfront: {
  22893. height: math.unit(1.45, "feet"),
  22894. name: "Maw (Front)",
  22895. image: {
  22896. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22897. }
  22898. },
  22899. },
  22900. [
  22901. {
  22902. name: "Normal",
  22903. height: math.unit(8, "feet"),
  22904. default: true
  22905. },
  22906. {
  22907. name: "Macro",
  22908. height: math.unit(42, "meters")
  22909. },
  22910. ]
  22911. ))
  22912. characterMakers.push(() => makeCharacter(
  22913. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22914. {
  22915. were: {
  22916. height: math.unit(25 + 6 / 12, "feet"),
  22917. weight: math.unit(10000, "lb"),
  22918. name: "Were",
  22919. image: {
  22920. source: "./media/characters/tahajin/were.svg",
  22921. extra: 801 / 770,
  22922. bottom: 0.042
  22923. }
  22924. },
  22925. aquatic: {
  22926. height: math.unit(6 + 4 / 12, "feet"),
  22927. weight: math.unit(160, "lb"),
  22928. name: "Aquatic",
  22929. image: {
  22930. source: "./media/characters/tahajin/aquatic.svg",
  22931. extra: 572 / 542,
  22932. bottom: 0.04
  22933. }
  22934. },
  22935. chow: {
  22936. height: math.unit(8 + 11 / 12, "feet"),
  22937. weight: math.unit(450, "lb"),
  22938. name: "Chow",
  22939. image: {
  22940. source: "./media/characters/tahajin/chow.svg",
  22941. extra: 660 / 640,
  22942. bottom: 0.015
  22943. }
  22944. },
  22945. demiNaga: {
  22946. height: math.unit(6 + 8 / 12, "feet"),
  22947. weight: math.unit(300, "lb"),
  22948. name: "Demi Naga",
  22949. image: {
  22950. source: "./media/characters/tahajin/demi-naga.svg",
  22951. extra: 643 / 615,
  22952. bottom: 0.1
  22953. }
  22954. },
  22955. data: {
  22956. height: math.unit(5, "inches"),
  22957. weight: math.unit(0.1, "lb"),
  22958. name: "Data",
  22959. image: {
  22960. source: "./media/characters/tahajin/data.svg"
  22961. }
  22962. },
  22963. fluu: {
  22964. height: math.unit(5 + 7 / 12, "feet"),
  22965. weight: math.unit(140, "lb"),
  22966. name: "Fluu",
  22967. image: {
  22968. source: "./media/characters/tahajin/fluu.svg",
  22969. extra: 628 / 592,
  22970. bottom: 0.02
  22971. }
  22972. },
  22973. starWarrior: {
  22974. height: math.unit(4 + 5 / 12, "feet"),
  22975. weight: math.unit(50, "lb"),
  22976. name: "Star Warrior",
  22977. image: {
  22978. source: "./media/characters/tahajin/star-warrior.svg"
  22979. }
  22980. },
  22981. },
  22982. [
  22983. {
  22984. name: "Normal",
  22985. height: math.unit(25 + 6 / 12, "feet"),
  22986. default: true
  22987. },
  22988. ]
  22989. ))
  22990. characterMakers.push(() => makeCharacter(
  22991. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22992. {
  22993. front: {
  22994. height: math.unit(8, "feet"),
  22995. weight: math.unit(350, "lb"),
  22996. name: "Front",
  22997. image: {
  22998. source: "./media/characters/gabira/front.svg",
  22999. extra: 1261/1154,
  23000. bottom: 51/1312
  23001. }
  23002. },
  23003. back: {
  23004. height: math.unit(8, "feet"),
  23005. weight: math.unit(350, "lb"),
  23006. name: "Back",
  23007. image: {
  23008. source: "./media/characters/gabira/back.svg",
  23009. extra: 1265/1163,
  23010. bottom: 46/1311
  23011. }
  23012. },
  23013. head: {
  23014. height: math.unit(2.85, "feet"),
  23015. name: "Head",
  23016. image: {
  23017. source: "./media/characters/gabira/head.svg"
  23018. }
  23019. },
  23020. },
  23021. [
  23022. {
  23023. name: "Normal",
  23024. height: math.unit(8, "feet"),
  23025. default: true
  23026. },
  23027. ]
  23028. ))
  23029. characterMakers.push(() => makeCharacter(
  23030. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23031. {
  23032. front: {
  23033. height: math.unit(5 + 3 / 12, "feet"),
  23034. weight: math.unit(137, "lb"),
  23035. name: "Front",
  23036. image: {
  23037. source: "./media/characters/sasha-katraine/front.svg",
  23038. extra: 1745/1694,
  23039. bottom: 37/1782
  23040. }
  23041. },
  23042. back: {
  23043. height: math.unit(5 + 3 / 12, "feet"),
  23044. weight: math.unit(137, "lb"),
  23045. name: "Back",
  23046. image: {
  23047. source: "./media/characters/sasha-katraine/back.svg",
  23048. extra: 1776/1699,
  23049. bottom: 26/1802
  23050. }
  23051. },
  23052. },
  23053. [
  23054. {
  23055. name: "Micro",
  23056. height: math.unit(5, "inches")
  23057. },
  23058. {
  23059. name: "Normal",
  23060. height: math.unit(5 + 3 / 12, "feet"),
  23061. default: true
  23062. },
  23063. ]
  23064. ))
  23065. characterMakers.push(() => makeCharacter(
  23066. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23067. {
  23068. side: {
  23069. height: math.unit(4, "inches"),
  23070. weight: math.unit(200, "grams"),
  23071. name: "Side",
  23072. image: {
  23073. source: "./media/characters/der/side.svg",
  23074. extra: 719 / 400,
  23075. bottom: 30.6 / 749.9187
  23076. }
  23077. },
  23078. },
  23079. [
  23080. {
  23081. name: "Micro",
  23082. height: math.unit(4, "inches"),
  23083. default: true
  23084. },
  23085. ]
  23086. ))
  23087. characterMakers.push(() => makeCharacter(
  23088. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23089. {
  23090. side: {
  23091. height: math.unit(30, "meters"),
  23092. weight: math.unit(700, "tonnes"),
  23093. name: "Side",
  23094. image: {
  23095. source: "./media/characters/fixerdragon/side.svg",
  23096. extra: (1293.0514 - 116.03) / 1106.86,
  23097. bottom: 116.03 / 1293.0514
  23098. }
  23099. },
  23100. },
  23101. [
  23102. {
  23103. name: "Planck",
  23104. height: math.unit(1.6e-35, "meters")
  23105. },
  23106. {
  23107. name: "Micro",
  23108. height: math.unit(0.4, "meters")
  23109. },
  23110. {
  23111. name: "Normal",
  23112. height: math.unit(30, "meters"),
  23113. default: true
  23114. },
  23115. {
  23116. name: "Megamacro",
  23117. height: math.unit(1.2, "megameters")
  23118. },
  23119. {
  23120. name: "Teramacro",
  23121. height: math.unit(130, "terameters")
  23122. },
  23123. {
  23124. name: "Yottamacro",
  23125. height: math.unit(6200, "yottameters")
  23126. },
  23127. ]
  23128. ));
  23129. characterMakers.push(() => makeCharacter(
  23130. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23131. {
  23132. front: {
  23133. height: math.unit(8, "feet"),
  23134. weight: math.unit(250, "lb"),
  23135. name: "Front",
  23136. image: {
  23137. source: "./media/characters/kite/front.svg",
  23138. extra: 2796 / 2659,
  23139. bottom: 0.002
  23140. }
  23141. },
  23142. },
  23143. [
  23144. {
  23145. name: "Normal",
  23146. height: math.unit(8, "feet"),
  23147. default: true
  23148. },
  23149. {
  23150. name: "Macro",
  23151. height: math.unit(360, "feet")
  23152. },
  23153. {
  23154. name: "Megamacro",
  23155. height: math.unit(1500, "feet")
  23156. },
  23157. ]
  23158. ))
  23159. characterMakers.push(() => makeCharacter(
  23160. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23161. {
  23162. front: {
  23163. height: math.unit(5 + 11/12, "feet"),
  23164. weight: math.unit(170, "lb"),
  23165. name: "Front",
  23166. image: {
  23167. source: "./media/characters/poojawa-vynar/front.svg",
  23168. extra: 1735/1585,
  23169. bottom: 96/1831
  23170. }
  23171. },
  23172. back: {
  23173. height: math.unit(5 + 11/12, "feet"),
  23174. weight: math.unit(170, "lb"),
  23175. name: "Back",
  23176. image: {
  23177. source: "./media/characters/poojawa-vynar/back.svg",
  23178. extra: 1749/1607,
  23179. bottom: 28/1777
  23180. }
  23181. },
  23182. male: {
  23183. height: math.unit(5 + 11/12, "feet"),
  23184. weight: math.unit(170, "lb"),
  23185. name: "Male",
  23186. image: {
  23187. source: "./media/characters/poojawa-vynar/male.svg",
  23188. extra: 1855/1713,
  23189. bottom: 63/1918
  23190. }
  23191. },
  23192. taur: {
  23193. height: math.unit(5 + 11/12, "feet"),
  23194. weight: math.unit(170, "lb"),
  23195. name: "Taur",
  23196. image: {
  23197. source: "./media/characters/poojawa-vynar/taur.svg",
  23198. extra: 1151/1059,
  23199. bottom: 356/1507
  23200. }
  23201. },
  23202. frontDressed: {
  23203. height: math.unit(5 + 11/12, "feet"),
  23204. weight: math.unit(170, "lb"),
  23205. name: "Front (Dressed)",
  23206. image: {
  23207. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23208. extra: 1735/1585,
  23209. bottom: 96/1831
  23210. }
  23211. },
  23212. backDressed: {
  23213. height: math.unit(5 + 11/12, "feet"),
  23214. weight: math.unit(170, "lb"),
  23215. name: "Back (Dressed)",
  23216. image: {
  23217. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23218. extra: 1749/1607,
  23219. bottom: 28/1777
  23220. }
  23221. },
  23222. maleDressed: {
  23223. height: math.unit(5 + 11/12, "feet"),
  23224. weight: math.unit(170, "lb"),
  23225. name: "Male (Dressed)",
  23226. image: {
  23227. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23228. extra: 1855/1713,
  23229. bottom: 63/1918
  23230. }
  23231. },
  23232. taurDressed: {
  23233. height: math.unit(5 + 11/12, "feet"),
  23234. weight: math.unit(170, "lb"),
  23235. name: "Taur (Dressed)",
  23236. image: {
  23237. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23238. extra: 1151/1059,
  23239. bottom: 356/1507
  23240. }
  23241. },
  23242. maw: {
  23243. height: math.unit(1.46, "feet"),
  23244. name: "Maw",
  23245. image: {
  23246. source: "./media/characters/poojawa-vynar/maw.svg"
  23247. }
  23248. },
  23249. head: {
  23250. height: math.unit(2.34, "feet"),
  23251. name: "Head",
  23252. image: {
  23253. source: "./media/characters/poojawa-vynar/head.svg"
  23254. }
  23255. },
  23256. paw: {
  23257. height: math.unit(1.61, "feet"),
  23258. name: "Paw",
  23259. image: {
  23260. source: "./media/characters/poojawa-vynar/paw.svg"
  23261. }
  23262. },
  23263. pawToering: {
  23264. height: math.unit(1.72, "feet"),
  23265. name: "Paw (Toering)",
  23266. image: {
  23267. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23268. }
  23269. },
  23270. toering: {
  23271. height: math.unit(2.9, "inches"),
  23272. name: "Toering",
  23273. image: {
  23274. source: "./media/characters/poojawa-vynar/toering.svg"
  23275. }
  23276. },
  23277. shaft: {
  23278. height: math.unit(0.625, "feet"),
  23279. name: "Shaft",
  23280. image: {
  23281. source: "./media/characters/poojawa-vynar/shaft.svg"
  23282. }
  23283. },
  23284. spade: {
  23285. height: math.unit(0.42, "feet"),
  23286. name: "Spade",
  23287. image: {
  23288. source: "./media/characters/poojawa-vynar/spade.svg"
  23289. }
  23290. },
  23291. },
  23292. [
  23293. {
  23294. name: "Shortstack",
  23295. height: math.unit(4, "feet")
  23296. },
  23297. {
  23298. name: "Normal",
  23299. height: math.unit(5 + 11 / 12, "feet"),
  23300. default: true
  23301. },
  23302. {
  23303. name: "Tauric",
  23304. height: math.unit(4, "meters")
  23305. },
  23306. ]
  23307. ))
  23308. characterMakers.push(() => makeCharacter(
  23309. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23310. {
  23311. front: {
  23312. height: math.unit(293, "meters"),
  23313. weight: math.unit(70400, "tons"),
  23314. name: "Front",
  23315. image: {
  23316. source: "./media/characters/violette/front.svg",
  23317. extra: 1227 / 1180,
  23318. bottom: 0.005
  23319. }
  23320. },
  23321. back: {
  23322. height: math.unit(293, "meters"),
  23323. weight: math.unit(70400, "tons"),
  23324. name: "Back",
  23325. image: {
  23326. source: "./media/characters/violette/back.svg",
  23327. extra: 1227 / 1180,
  23328. bottom: 0.005
  23329. }
  23330. },
  23331. },
  23332. [
  23333. {
  23334. name: "Macro",
  23335. height: math.unit(293, "meters"),
  23336. default: true
  23337. },
  23338. ]
  23339. ))
  23340. characterMakers.push(() => makeCharacter(
  23341. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23342. {
  23343. front: {
  23344. height: math.unit(1050, "feet"),
  23345. weight: math.unit(200000, "tons"),
  23346. name: "Front",
  23347. image: {
  23348. source: "./media/characters/alessandra/front.svg",
  23349. extra: 960 / 912,
  23350. bottom: 0.06
  23351. }
  23352. },
  23353. },
  23354. [
  23355. {
  23356. name: "Macro",
  23357. height: math.unit(1050, "feet")
  23358. },
  23359. {
  23360. name: "Macro+",
  23361. height: math.unit(900, "meters"),
  23362. default: true
  23363. },
  23364. ]
  23365. ))
  23366. characterMakers.push(() => makeCharacter(
  23367. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23368. {
  23369. front: {
  23370. height: math.unit(5, "feet"),
  23371. weight: math.unit(187, "lb"),
  23372. name: "Front",
  23373. image: {
  23374. source: "./media/characters/person/front.svg",
  23375. extra: 3087 / 2945,
  23376. bottom: 91 / 3181
  23377. }
  23378. },
  23379. },
  23380. [
  23381. {
  23382. name: "Micro",
  23383. height: math.unit(3, "inches")
  23384. },
  23385. {
  23386. name: "Normal",
  23387. height: math.unit(5, "feet"),
  23388. default: true
  23389. },
  23390. {
  23391. name: "Macro",
  23392. height: math.unit(90, "feet")
  23393. },
  23394. {
  23395. name: "Max Size",
  23396. height: math.unit(280, "feet")
  23397. },
  23398. ]
  23399. ))
  23400. characterMakers.push(() => makeCharacter(
  23401. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23402. {
  23403. front: {
  23404. height: math.unit(4.5, "meters"),
  23405. weight: math.unit(3200, "lb"),
  23406. name: "Front",
  23407. image: {
  23408. source: "./media/characters/ty/front.svg",
  23409. extra: 1038 / 960,
  23410. bottom: 31.156 / 1068
  23411. }
  23412. },
  23413. back: {
  23414. height: math.unit(4.5, "meters"),
  23415. weight: math.unit(3200, "lb"),
  23416. name: "Back",
  23417. image: {
  23418. source: "./media/characters/ty/back.svg",
  23419. extra: 1044 / 966,
  23420. bottom: 7.48 / 1049
  23421. }
  23422. },
  23423. },
  23424. [
  23425. {
  23426. name: "Normal",
  23427. height: math.unit(4.5, "meters"),
  23428. default: true
  23429. },
  23430. ]
  23431. ))
  23432. characterMakers.push(() => makeCharacter(
  23433. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23434. {
  23435. front: {
  23436. height: math.unit(5 + 4 / 12, "feet"),
  23437. weight: math.unit(115, "lb"),
  23438. name: "Front",
  23439. image: {
  23440. source: "./media/characters/rocky/front.svg",
  23441. extra: 1012 / 975,
  23442. bottom: 54 / 1066
  23443. }
  23444. },
  23445. },
  23446. [
  23447. {
  23448. name: "Normal",
  23449. height: math.unit(5 + 4 / 12, "feet"),
  23450. default: true
  23451. },
  23452. ]
  23453. ))
  23454. characterMakers.push(() => makeCharacter(
  23455. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23456. {
  23457. upright: {
  23458. height: math.unit(6, "meters"),
  23459. weight: math.unit(4000, "kg"),
  23460. name: "Upright",
  23461. image: {
  23462. source: "./media/characters/ruin/upright.svg",
  23463. extra: 668 / 661,
  23464. bottom: 42 / 799.8396
  23465. }
  23466. },
  23467. },
  23468. [
  23469. {
  23470. name: "Normal",
  23471. height: math.unit(6, "meters"),
  23472. default: true
  23473. },
  23474. ]
  23475. ))
  23476. characterMakers.push(() => makeCharacter(
  23477. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23478. {
  23479. front: {
  23480. height: math.unit(5, "feet"),
  23481. weight: math.unit(106, "lb"),
  23482. name: "Front",
  23483. image: {
  23484. source: "./media/characters/robin/front.svg",
  23485. extra: 862 / 799,
  23486. bottom: 42.4 / 914.8856
  23487. }
  23488. },
  23489. },
  23490. [
  23491. {
  23492. name: "Normal",
  23493. height: math.unit(5, "feet"),
  23494. default: true
  23495. },
  23496. ]
  23497. ))
  23498. characterMakers.push(() => makeCharacter(
  23499. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23500. {
  23501. side: {
  23502. height: math.unit(3, "feet"),
  23503. weight: math.unit(225, "lb"),
  23504. name: "Side",
  23505. image: {
  23506. source: "./media/characters/saian/side.svg",
  23507. extra: 566 / 356,
  23508. bottom: 79.7 / 643
  23509. }
  23510. },
  23511. maw: {
  23512. height: math.unit(2.85, "feet"),
  23513. name: "Maw",
  23514. image: {
  23515. source: "./media/characters/saian/maw.svg"
  23516. }
  23517. },
  23518. },
  23519. [
  23520. {
  23521. name: "Normal",
  23522. height: math.unit(3, "feet"),
  23523. default: true
  23524. },
  23525. ]
  23526. ))
  23527. characterMakers.push(() => makeCharacter(
  23528. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23529. {
  23530. side: {
  23531. height: math.unit(8, "feet"),
  23532. weight: math.unit(300, "lb"),
  23533. name: "Side",
  23534. image: {
  23535. source: "./media/characters/equus-silvermane/side.svg",
  23536. extra: 2176 / 2050,
  23537. bottom: 65.7 / 2245
  23538. }
  23539. },
  23540. front: {
  23541. height: math.unit(8, "feet"),
  23542. weight: math.unit(300, "lb"),
  23543. name: "Front",
  23544. image: {
  23545. source: "./media/characters/equus-silvermane/front.svg",
  23546. extra: 4633 / 4400,
  23547. bottom: 71.3 / 4706.915
  23548. }
  23549. },
  23550. sideStepping: {
  23551. height: math.unit(8, "feet"),
  23552. weight: math.unit(300, "lb"),
  23553. name: "Side (Stepping)",
  23554. image: {
  23555. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23556. extra: 1968 / 1860,
  23557. bottom: 16.4 / 1989
  23558. }
  23559. },
  23560. },
  23561. [
  23562. {
  23563. name: "Normal",
  23564. height: math.unit(8, "feet")
  23565. },
  23566. {
  23567. name: "Minimacro",
  23568. height: math.unit(75, "feet"),
  23569. default: true
  23570. },
  23571. {
  23572. name: "Macro",
  23573. height: math.unit(150, "feet")
  23574. },
  23575. {
  23576. name: "Macro+",
  23577. height: math.unit(1000, "feet")
  23578. },
  23579. {
  23580. name: "Megamacro",
  23581. height: math.unit(1, "mile")
  23582. },
  23583. ]
  23584. ))
  23585. characterMakers.push(() => makeCharacter(
  23586. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23587. {
  23588. side: {
  23589. height: math.unit(20, "feet"),
  23590. weight: math.unit(30000, "kg"),
  23591. name: "Side",
  23592. image: {
  23593. source: "./media/characters/windar/side.svg",
  23594. extra: 1491 / 1248,
  23595. bottom: 82.56 / 1568
  23596. }
  23597. },
  23598. },
  23599. [
  23600. {
  23601. name: "Normal",
  23602. height: math.unit(20, "feet"),
  23603. default: true
  23604. },
  23605. ]
  23606. ))
  23607. characterMakers.push(() => makeCharacter(
  23608. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23609. {
  23610. side: {
  23611. height: math.unit(15.66, "feet"),
  23612. weight: math.unit(150, "lb"),
  23613. name: "Side",
  23614. image: {
  23615. source: "./media/characters/melody/side.svg",
  23616. extra: 1097 / 944,
  23617. bottom: 11.8 / 1109
  23618. }
  23619. },
  23620. sideOutfit: {
  23621. height: math.unit(15.66, "feet"),
  23622. weight: math.unit(150, "lb"),
  23623. name: "Side (Outfit)",
  23624. image: {
  23625. source: "./media/characters/melody/side-outfit.svg",
  23626. extra: 1097 / 944,
  23627. bottom: 11.8 / 1109
  23628. }
  23629. },
  23630. },
  23631. [
  23632. {
  23633. name: "Normal",
  23634. height: math.unit(15.66, "feet"),
  23635. default: true
  23636. },
  23637. ]
  23638. ))
  23639. characterMakers.push(() => makeCharacter(
  23640. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23641. {
  23642. armoredFront: {
  23643. height: math.unit(8, "feet"),
  23644. weight: math.unit(325, "lb"),
  23645. name: "Front",
  23646. image: {
  23647. source: "./media/characters/windera/armored-front.svg",
  23648. extra: 1830/1598,
  23649. bottom: 151/1981
  23650. },
  23651. form: "armored",
  23652. default: true
  23653. },
  23654. macroFront: {
  23655. height: math.unit(70, "feet"),
  23656. weight: math.unit(315453, "lb"),
  23657. name: "Front",
  23658. image: {
  23659. source: "./media/characters/windera/macro-front.svg",
  23660. extra: 963/883,
  23661. bottom: 23/986
  23662. },
  23663. form: "macro",
  23664. default: true
  23665. },
  23666. },
  23667. [
  23668. {
  23669. name: "Normal",
  23670. height: math.unit(8, "feet"),
  23671. default: true,
  23672. form: "armored"
  23673. },
  23674. {
  23675. name: "Normal",
  23676. height: math.unit(70, "feet"),
  23677. default: true,
  23678. form: "macro"
  23679. },
  23680. ],
  23681. {
  23682. "armored": {
  23683. name: "Armored",
  23684. default: true
  23685. },
  23686. "macro": {
  23687. name: "Macro",
  23688. },
  23689. }
  23690. ))
  23691. characterMakers.push(() => makeCharacter(
  23692. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23693. {
  23694. front: {
  23695. height: math.unit(28.75, "feet"),
  23696. weight: math.unit(2000, "kg"),
  23697. name: "Front",
  23698. image: {
  23699. source: "./media/characters/sonear/front.svg",
  23700. extra: 1041.1 / 964.9,
  23701. bottom: 53.7 / 1096.6
  23702. }
  23703. },
  23704. },
  23705. [
  23706. {
  23707. name: "Normal",
  23708. height: math.unit(28.75, "feet"),
  23709. default: true
  23710. },
  23711. ]
  23712. ))
  23713. characterMakers.push(() => makeCharacter(
  23714. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23715. {
  23716. side: {
  23717. height: math.unit(25.5, "feet"),
  23718. weight: math.unit(23000, "kg"),
  23719. name: "Side",
  23720. image: {
  23721. source: "./media/characters/kanara/side.svg"
  23722. }
  23723. },
  23724. },
  23725. [
  23726. {
  23727. name: "Normal",
  23728. height: math.unit(25.5, "feet"),
  23729. default: true
  23730. },
  23731. ]
  23732. ))
  23733. characterMakers.push(() => makeCharacter(
  23734. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23735. {
  23736. side: {
  23737. height: math.unit(10, "feet"),
  23738. weight: math.unit(1000, "kg"),
  23739. name: "Side",
  23740. image: {
  23741. source: "./media/characters/ereus/side.svg",
  23742. extra: 1157 / 959,
  23743. bottom: 153 / 1312.5
  23744. }
  23745. },
  23746. },
  23747. [
  23748. {
  23749. name: "Normal",
  23750. height: math.unit(10, "feet"),
  23751. default: true
  23752. },
  23753. ]
  23754. ))
  23755. characterMakers.push(() => makeCharacter(
  23756. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23757. {
  23758. side: {
  23759. height: math.unit(4.5, "feet"),
  23760. weight: math.unit(500, "lb"),
  23761. name: "Side",
  23762. image: {
  23763. source: "./media/characters/e-ter/side.svg",
  23764. extra: 1550 / 1248,
  23765. bottom: 146 / 1694
  23766. }
  23767. },
  23768. },
  23769. [
  23770. {
  23771. name: "Normal",
  23772. height: math.unit(4.5, "feet"),
  23773. default: true
  23774. },
  23775. ]
  23776. ))
  23777. characterMakers.push(() => makeCharacter(
  23778. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23779. {
  23780. side: {
  23781. height: math.unit(9.7, "feet"),
  23782. weight: math.unit(4000, "kg"),
  23783. name: "Side",
  23784. image: {
  23785. source: "./media/characters/yamie/side.svg"
  23786. }
  23787. },
  23788. },
  23789. [
  23790. {
  23791. name: "Normal",
  23792. height: math.unit(9.7, "feet"),
  23793. default: true
  23794. },
  23795. ]
  23796. ))
  23797. characterMakers.push(() => makeCharacter(
  23798. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23799. {
  23800. front: {
  23801. height: math.unit(50, "feet"),
  23802. weight: math.unit(50000, "kg"),
  23803. name: "Front",
  23804. image: {
  23805. source: "./media/characters/anders/front.svg",
  23806. extra: 570 / 539,
  23807. bottom: 14.7 / 586.7
  23808. }
  23809. },
  23810. },
  23811. [
  23812. {
  23813. name: "Large",
  23814. height: math.unit(50, "feet")
  23815. },
  23816. {
  23817. name: "Macro",
  23818. height: math.unit(2000, "feet"),
  23819. default: true
  23820. },
  23821. {
  23822. name: "Megamacro",
  23823. height: math.unit(12, "miles")
  23824. },
  23825. ]
  23826. ))
  23827. characterMakers.push(() => makeCharacter(
  23828. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23829. {
  23830. front: {
  23831. height: math.unit(7 + 2 / 12, "feet"),
  23832. weight: math.unit(300, "lb"),
  23833. name: "Front",
  23834. image: {
  23835. source: "./media/characters/reban/front.svg",
  23836. extra: 1287/1212,
  23837. bottom: 148/1435
  23838. }
  23839. },
  23840. head: {
  23841. height: math.unit(1.95, "feet"),
  23842. name: "Head",
  23843. image: {
  23844. source: "./media/characters/reban/head.svg"
  23845. }
  23846. },
  23847. maw: {
  23848. height: math.unit(0.95, "feet"),
  23849. name: "Maw",
  23850. image: {
  23851. source: "./media/characters/reban/maw.svg"
  23852. }
  23853. },
  23854. foot: {
  23855. height: math.unit(1.65, "feet"),
  23856. name: "Foot",
  23857. image: {
  23858. source: "./media/characters/reban/foot.svg"
  23859. }
  23860. },
  23861. dick: {
  23862. height: math.unit(7 / 5, "feet"),
  23863. name: "Dick",
  23864. image: {
  23865. source: "./media/characters/reban/dick.svg"
  23866. }
  23867. },
  23868. },
  23869. [
  23870. {
  23871. name: "Natural Height",
  23872. height: math.unit(7 + 2 / 12, "feet")
  23873. },
  23874. {
  23875. name: "Macro",
  23876. height: math.unit(500, "feet"),
  23877. default: true
  23878. },
  23879. {
  23880. name: "Canon Height",
  23881. height: math.unit(50, "AU")
  23882. },
  23883. ]
  23884. ))
  23885. characterMakers.push(() => makeCharacter(
  23886. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23887. {
  23888. front: {
  23889. height: math.unit(6, "feet"),
  23890. weight: math.unit(150, "lb"),
  23891. name: "Front",
  23892. image: {
  23893. source: "./media/characters/terrance-keayes/front.svg",
  23894. extra: 1.005,
  23895. bottom: 151 / 1615
  23896. }
  23897. },
  23898. side: {
  23899. height: math.unit(6, "feet"),
  23900. weight: math.unit(150, "lb"),
  23901. name: "Side",
  23902. image: {
  23903. source: "./media/characters/terrance-keayes/side.svg",
  23904. extra: 1.005,
  23905. bottom: 129.4 / 1544
  23906. }
  23907. },
  23908. back: {
  23909. height: math.unit(6, "feet"),
  23910. weight: math.unit(150, "lb"),
  23911. name: "Back",
  23912. image: {
  23913. source: "./media/characters/terrance-keayes/back.svg",
  23914. extra: 1.005,
  23915. bottom: 58.4 / 1557.3
  23916. }
  23917. },
  23918. dick: {
  23919. height: math.unit(6 * 0.208, "feet"),
  23920. name: "Dick",
  23921. image: {
  23922. source: "./media/characters/terrance-keayes/dick.svg"
  23923. }
  23924. },
  23925. },
  23926. [
  23927. {
  23928. name: "Canon Height",
  23929. height: math.unit(35, "miles"),
  23930. default: true
  23931. },
  23932. ]
  23933. ))
  23934. characterMakers.push(() => makeCharacter(
  23935. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23936. {
  23937. front: {
  23938. height: math.unit(6, "feet"),
  23939. weight: math.unit(150, "lb"),
  23940. name: "Front",
  23941. image: {
  23942. source: "./media/characters/ofelia/front.svg",
  23943. extra: 1130/1117,
  23944. bottom: 91/1221
  23945. }
  23946. },
  23947. back: {
  23948. height: math.unit(6, "feet"),
  23949. weight: math.unit(150, "lb"),
  23950. name: "Back",
  23951. image: {
  23952. source: "./media/characters/ofelia/back.svg",
  23953. extra: 1172/1159,
  23954. bottom: 28/1200
  23955. }
  23956. },
  23957. maw: {
  23958. height: math.unit(1, "feet"),
  23959. name: "Maw",
  23960. image: {
  23961. source: "./media/characters/ofelia/maw.svg"
  23962. }
  23963. },
  23964. foot: {
  23965. height: math.unit(1.949, "feet"),
  23966. name: "Foot",
  23967. image: {
  23968. source: "./media/characters/ofelia/foot.svg"
  23969. }
  23970. },
  23971. },
  23972. [
  23973. {
  23974. name: "Canon Height",
  23975. height: math.unit(2000, "miles"),
  23976. default: true
  23977. },
  23978. ]
  23979. ))
  23980. characterMakers.push(() => makeCharacter(
  23981. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23982. {
  23983. front: {
  23984. height: math.unit(6, "feet"),
  23985. weight: math.unit(150, "lb"),
  23986. name: "Front",
  23987. image: {
  23988. source: "./media/characters/samuel/front.svg",
  23989. extra: 265 / 258,
  23990. bottom: 2 / 266.1566
  23991. }
  23992. },
  23993. },
  23994. [
  23995. {
  23996. name: "Macro",
  23997. height: math.unit(100, "feet"),
  23998. default: true
  23999. },
  24000. {
  24001. name: "Full Size",
  24002. height: math.unit(1000, "miles")
  24003. },
  24004. ]
  24005. ))
  24006. characterMakers.push(() => makeCharacter(
  24007. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24008. {
  24009. front: {
  24010. height: math.unit(6, "feet"),
  24011. weight: math.unit(300, "lb"),
  24012. name: "Front",
  24013. image: {
  24014. source: "./media/characters/beishir-kiel/front.svg",
  24015. extra: 569 / 547,
  24016. bottom: 41.9 / 609
  24017. }
  24018. },
  24019. maw: {
  24020. height: math.unit(6 * 0.202, "feet"),
  24021. name: "Maw",
  24022. image: {
  24023. source: "./media/characters/beishir-kiel/maw.svg"
  24024. }
  24025. },
  24026. },
  24027. [
  24028. {
  24029. name: "Macro",
  24030. height: math.unit(300, "feet"),
  24031. default: true
  24032. },
  24033. ]
  24034. ))
  24035. characterMakers.push(() => makeCharacter(
  24036. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24037. {
  24038. front: {
  24039. height: math.unit(5 + 7/12, "feet"),
  24040. weight: math.unit(120, "lb"),
  24041. name: "Front",
  24042. image: {
  24043. source: "./media/characters/logan-grey/front.svg",
  24044. extra: 1836/1738,
  24045. bottom: 108/1944
  24046. }
  24047. },
  24048. back: {
  24049. height: math.unit(5 + 7/12, "feet"),
  24050. weight: math.unit(120, "lb"),
  24051. name: "Back",
  24052. image: {
  24053. source: "./media/characters/logan-grey/back.svg",
  24054. extra: 1880/1794,
  24055. bottom: 24/1904
  24056. }
  24057. },
  24058. frontSfw: {
  24059. height: math.unit(5 + 7/12, "feet"),
  24060. weight: math.unit(120, "lb"),
  24061. name: "Front (SFW)",
  24062. image: {
  24063. source: "./media/characters/logan-grey/front-sfw.svg",
  24064. extra: 1836/1738,
  24065. bottom: 108/1944
  24066. }
  24067. },
  24068. backSfw: {
  24069. height: math.unit(5 + 7/12, "feet"),
  24070. weight: math.unit(120, "lb"),
  24071. name: "Back (SFW)",
  24072. image: {
  24073. source: "./media/characters/logan-grey/back-sfw.svg",
  24074. extra: 1880/1794,
  24075. bottom: 24/1904
  24076. }
  24077. },
  24078. hands: {
  24079. height: math.unit(0.84, "feet"),
  24080. name: "Hands",
  24081. image: {
  24082. source: "./media/characters/logan-grey/hands.svg"
  24083. }
  24084. },
  24085. paws: {
  24086. height: math.unit(0.72, "feet"),
  24087. name: "Paws",
  24088. image: {
  24089. source: "./media/characters/logan-grey/paws.svg"
  24090. }
  24091. },
  24092. cock: {
  24093. height: math.unit(1.45, "feet"),
  24094. name: "Cock",
  24095. image: {
  24096. source: "./media/characters/logan-grey/cock.svg"
  24097. }
  24098. },
  24099. cockAlt: {
  24100. height: math.unit(1.437, "feet"),
  24101. name: "Cock (alt)",
  24102. image: {
  24103. source: "./media/characters/logan-grey/cock-alt.svg"
  24104. }
  24105. },
  24106. },
  24107. [
  24108. {
  24109. name: "Normal",
  24110. height: math.unit(5 + 8 / 12, "feet")
  24111. },
  24112. {
  24113. name: "The 500 Foot Femboy",
  24114. height: math.unit(500, "feet"),
  24115. default: true
  24116. },
  24117. {
  24118. name: "Megmacro",
  24119. height: math.unit(20, "miles")
  24120. },
  24121. ]
  24122. ))
  24123. characterMakers.push(() => makeCharacter(
  24124. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24125. {
  24126. front: {
  24127. height: math.unit(8 + 2 / 12, "feet"),
  24128. weight: math.unit(275, "lb"),
  24129. name: "Front",
  24130. image: {
  24131. source: "./media/characters/draganta/front.svg",
  24132. extra: 1177 / 1135,
  24133. bottom: 33.46 / 1212.1
  24134. }
  24135. },
  24136. },
  24137. [
  24138. {
  24139. name: "Normal",
  24140. height: math.unit(8 + 6 / 12, "feet"),
  24141. default: true
  24142. },
  24143. {
  24144. name: "Macro",
  24145. height: math.unit(150, "feet")
  24146. },
  24147. {
  24148. name: "Megamacro",
  24149. height: math.unit(1000, "miles")
  24150. },
  24151. ]
  24152. ))
  24153. characterMakers.push(() => makeCharacter(
  24154. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24155. {
  24156. front: {
  24157. height: math.unit(1.72, "m"),
  24158. weight: math.unit(80, "lb"),
  24159. name: "Front",
  24160. image: {
  24161. source: "./media/characters/voski/front.svg",
  24162. extra: 2076.22 / 2022.4,
  24163. bottom: 102.7 / 2177.3866
  24164. }
  24165. },
  24166. frontFlaccid: {
  24167. height: math.unit(1.72, "m"),
  24168. weight: math.unit(80, "lb"),
  24169. name: "Front (Flaccid)",
  24170. image: {
  24171. source: "./media/characters/voski/front-flaccid.svg",
  24172. extra: 2076.22 / 2022.4,
  24173. bottom: 102.7 / 2177.3866
  24174. }
  24175. },
  24176. frontErect: {
  24177. height: math.unit(1.72, "m"),
  24178. weight: math.unit(80, "lb"),
  24179. name: "Front (Erect)",
  24180. image: {
  24181. source: "./media/characters/voski/front-erect.svg",
  24182. extra: 2076.22 / 2022.4,
  24183. bottom: 102.7 / 2177.3866
  24184. }
  24185. },
  24186. back: {
  24187. height: math.unit(1.72, "m"),
  24188. weight: math.unit(80, "lb"),
  24189. name: "Back",
  24190. image: {
  24191. source: "./media/characters/voski/back.svg",
  24192. extra: 2104 / 2051,
  24193. bottom: 10.45 / 2113.63
  24194. }
  24195. },
  24196. },
  24197. [
  24198. {
  24199. name: "Normal",
  24200. height: math.unit(1.72, "m")
  24201. },
  24202. {
  24203. name: "Macro",
  24204. height: math.unit(55, "m"),
  24205. default: true
  24206. },
  24207. {
  24208. name: "Macro+",
  24209. height: math.unit(300, "m")
  24210. },
  24211. {
  24212. name: "Macro++",
  24213. height: math.unit(700, "m")
  24214. },
  24215. {
  24216. name: "Macro+++",
  24217. height: math.unit(4500, "m")
  24218. },
  24219. {
  24220. name: "Macro++++",
  24221. height: math.unit(45, "km")
  24222. },
  24223. {
  24224. name: "Macro+++++",
  24225. height: math.unit(1220, "km")
  24226. },
  24227. ]
  24228. ))
  24229. characterMakers.push(() => makeCharacter(
  24230. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24231. {
  24232. front: {
  24233. height: math.unit(2.3, "m"),
  24234. weight: math.unit(304, "kg"),
  24235. name: "Front",
  24236. image: {
  24237. source: "./media/characters/icowom-lee/front.svg",
  24238. extra: 985 / 955,
  24239. bottom: 25.4 / 1012
  24240. }
  24241. },
  24242. fronttentacles: {
  24243. height: math.unit(2.3, "m"),
  24244. weight: math.unit(304, "kg"),
  24245. name: "Front-tentacles",
  24246. image: {
  24247. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24248. extra: 985 / 955,
  24249. bottom: 25.4 / 1012
  24250. }
  24251. },
  24252. back: {
  24253. height: math.unit(2.3, "m"),
  24254. weight: math.unit(304, "kg"),
  24255. name: "Back",
  24256. image: {
  24257. source: "./media/characters/icowom-lee/back.svg",
  24258. extra: 975 / 954,
  24259. bottom: 9.5 / 985
  24260. }
  24261. },
  24262. backtentacles: {
  24263. height: math.unit(2.3, "m"),
  24264. weight: math.unit(304, "kg"),
  24265. name: "Back-tentacles",
  24266. image: {
  24267. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24268. extra: 975 / 954,
  24269. bottom: 9.5 / 985
  24270. }
  24271. },
  24272. frontDressed: {
  24273. height: math.unit(2.3, "m"),
  24274. weight: math.unit(304, "kg"),
  24275. name: "Front (Dressed)",
  24276. image: {
  24277. source: "./media/characters/icowom-lee/front-dressed.svg",
  24278. extra: 3076 / 2933,
  24279. bottom: 51.4 / 3125.1889
  24280. }
  24281. },
  24282. rump: {
  24283. height: math.unit(0.776, "meters"),
  24284. name: "Rump",
  24285. image: {
  24286. source: "./media/characters/icowom-lee/rump.svg"
  24287. }
  24288. },
  24289. genitals: {
  24290. height: math.unit(0.78, "meters"),
  24291. name: "Genitals",
  24292. image: {
  24293. source: "./media/characters/icowom-lee/genitals.svg"
  24294. }
  24295. },
  24296. },
  24297. [
  24298. {
  24299. name: "Normal",
  24300. height: math.unit(2.3, "meters"),
  24301. default: true
  24302. },
  24303. {
  24304. name: "Macro",
  24305. height: math.unit(94, "meters"),
  24306. default: true
  24307. },
  24308. ]
  24309. ))
  24310. characterMakers.push(() => makeCharacter(
  24311. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24312. {
  24313. front: {
  24314. height: math.unit(22, "meters"),
  24315. weight: math.unit(21000, "kg"),
  24316. name: "Front",
  24317. image: {
  24318. source: "./media/characters/shock-diamond/front.svg",
  24319. extra: 2204 / 2053,
  24320. bottom: 65 / 2239.47
  24321. }
  24322. },
  24323. frontNude: {
  24324. height: math.unit(22, "meters"),
  24325. weight: math.unit(21000, "kg"),
  24326. name: "Front (Nude)",
  24327. image: {
  24328. source: "./media/characters/shock-diamond/front-nude.svg",
  24329. extra: 2514 / 2285,
  24330. bottom: 13 / 2527.56
  24331. }
  24332. },
  24333. },
  24334. [
  24335. {
  24336. name: "Normal",
  24337. height: math.unit(3, "meters")
  24338. },
  24339. {
  24340. name: "Macro",
  24341. height: math.unit(22, "meters"),
  24342. default: true
  24343. },
  24344. ]
  24345. ))
  24346. characterMakers.push(() => makeCharacter(
  24347. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24348. {
  24349. front: {
  24350. height: math.unit(5 + 4/12, "feet"),
  24351. weight: math.unit(125, "lb"),
  24352. name: "Front",
  24353. image: {
  24354. source: "./media/characters/rory/front.svg",
  24355. extra: 1790/1681,
  24356. bottom: 66/1856
  24357. }
  24358. },
  24359. back: {
  24360. height: math.unit(5 + 4/12, "feet"),
  24361. weight: math.unit(125, "lb"),
  24362. name: "Back",
  24363. image: {
  24364. source: "./media/characters/rory/back.svg",
  24365. extra: 1805/1690,
  24366. bottom: 56/1861
  24367. }
  24368. },
  24369. frontDressed: {
  24370. height: math.unit(5 + 4/12, "feet"),
  24371. weight: math.unit(125, "lb"),
  24372. name: "Front (Dressed)",
  24373. image: {
  24374. source: "./media/characters/rory/front-dressed.svg",
  24375. extra: 1790/1681,
  24376. bottom: 66/1856
  24377. }
  24378. },
  24379. backDressed: {
  24380. height: math.unit(5 + 4/12, "feet"),
  24381. weight: math.unit(125, "lb"),
  24382. name: "Back (Dressed)",
  24383. image: {
  24384. source: "./media/characters/rory/back-dressed.svg",
  24385. extra: 1805/1690,
  24386. bottom: 56/1861
  24387. }
  24388. },
  24389. frontNsfw: {
  24390. height: math.unit(5 + 4/12, "feet"),
  24391. weight: math.unit(125, "lb"),
  24392. name: "Front (NSFW)",
  24393. image: {
  24394. source: "./media/characters/rory/front-nsfw.svg",
  24395. extra: 1790/1681,
  24396. bottom: 66/1856
  24397. }
  24398. },
  24399. backNsfw: {
  24400. height: math.unit(5 + 4/12, "feet"),
  24401. weight: math.unit(125, "lb"),
  24402. name: "Back (NSFW)",
  24403. image: {
  24404. source: "./media/characters/rory/back-nsfw.svg",
  24405. extra: 1805/1690,
  24406. bottom: 56/1861
  24407. }
  24408. },
  24409. dick: {
  24410. height: math.unit(0.8, "feet"),
  24411. name: "Dick",
  24412. image: {
  24413. source: "./media/characters/rory/dick.svg"
  24414. }
  24415. },
  24416. },
  24417. [
  24418. {
  24419. name: "Micro",
  24420. height: math.unit(3, "inches")
  24421. },
  24422. {
  24423. name: "Normal",
  24424. height: math.unit(5 + 4/12, "feet"),
  24425. default: true
  24426. },
  24427. {
  24428. name: "Macro",
  24429. height: math.unit(90, "feet")
  24430. },
  24431. {
  24432. name: "Supercharged",
  24433. height: math.unit(270, "feet")
  24434. },
  24435. ]
  24436. ))
  24437. characterMakers.push(() => makeCharacter(
  24438. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24439. {
  24440. front: {
  24441. height: math.unit(5 + 9 / 12, "feet"),
  24442. weight: math.unit(190, "lb"),
  24443. name: "Front",
  24444. image: {
  24445. source: "./media/characters/sprisk/front.svg",
  24446. extra: 1225 / 1180,
  24447. bottom: 42.7 / 1266.4
  24448. }
  24449. },
  24450. frontNsfw: {
  24451. height: math.unit(5 + 9 / 12, "feet"),
  24452. weight: math.unit(190, "lb"),
  24453. name: "Front (NSFW)",
  24454. image: {
  24455. source: "./media/characters/sprisk/front-nsfw.svg",
  24456. extra: 1225 / 1180,
  24457. bottom: 42.7 / 1266.4
  24458. }
  24459. },
  24460. back: {
  24461. height: math.unit(5 + 9 / 12, "feet"),
  24462. weight: math.unit(190, "lb"),
  24463. name: "Back",
  24464. image: {
  24465. source: "./media/characters/sprisk/back.svg",
  24466. extra: 1247 / 1200,
  24467. bottom: 5.6 / 1253.04
  24468. }
  24469. },
  24470. },
  24471. [
  24472. {
  24473. name: "Tiny",
  24474. height: math.unit(2, "inches")
  24475. },
  24476. {
  24477. name: "Normal",
  24478. height: math.unit(5 + 9 / 12, "feet"),
  24479. default: true
  24480. },
  24481. {
  24482. name: "Mini Macro",
  24483. height: math.unit(18, "feet")
  24484. },
  24485. {
  24486. name: "Macro",
  24487. height: math.unit(100, "feet")
  24488. },
  24489. {
  24490. name: "MACRO",
  24491. height: math.unit(50, "miles")
  24492. },
  24493. {
  24494. name: "M A C R O",
  24495. height: math.unit(300, "miles")
  24496. },
  24497. ]
  24498. ))
  24499. characterMakers.push(() => makeCharacter(
  24500. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24501. {
  24502. side: {
  24503. height: math.unit(15.6, "meters"),
  24504. weight: math.unit(700000, "kg"),
  24505. name: "Side",
  24506. image: {
  24507. source: "./media/characters/bunsen/side.svg",
  24508. extra: 1644 / 358
  24509. }
  24510. },
  24511. foot: {
  24512. height: math.unit(1.611 * 1644 / 358, "meter"),
  24513. name: "Foot",
  24514. image: {
  24515. source: "./media/characters/bunsen/foot.svg"
  24516. }
  24517. },
  24518. },
  24519. [
  24520. {
  24521. name: "Small",
  24522. height: math.unit(10, "feet")
  24523. },
  24524. {
  24525. name: "Normal",
  24526. height: math.unit(15.6, "meters"),
  24527. default: true
  24528. },
  24529. ]
  24530. ))
  24531. characterMakers.push(() => makeCharacter(
  24532. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24533. {
  24534. front: {
  24535. height: math.unit(4 + 11 / 12, "feet"),
  24536. weight: math.unit(140, "lb"),
  24537. name: "Front",
  24538. image: {
  24539. source: "./media/characters/sesh/front.svg",
  24540. extra: 3420 / 3231,
  24541. bottom: 72 / 3949.5
  24542. }
  24543. },
  24544. },
  24545. [
  24546. {
  24547. name: "Normal",
  24548. height: math.unit(4 + 11 / 12, "feet")
  24549. },
  24550. {
  24551. name: "Grown",
  24552. height: math.unit(15, "feet"),
  24553. default: true
  24554. },
  24555. {
  24556. name: "Macro",
  24557. height: math.unit(1500, "feet")
  24558. },
  24559. {
  24560. name: "Megamacro",
  24561. height: math.unit(30, "miles")
  24562. },
  24563. {
  24564. name: "Continental",
  24565. height: math.unit(3000, "miles")
  24566. },
  24567. {
  24568. name: "Gravity Mass",
  24569. height: math.unit(300000, "miles")
  24570. },
  24571. {
  24572. name: "Planet Buster",
  24573. height: math.unit(30000000, "miles")
  24574. },
  24575. {
  24576. name: "Big",
  24577. height: math.unit(3000000000, "miles")
  24578. },
  24579. ]
  24580. ))
  24581. characterMakers.push(() => makeCharacter(
  24582. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24583. {
  24584. front: {
  24585. height: math.unit(9, "feet"),
  24586. weight: math.unit(350, "lb"),
  24587. name: "Front",
  24588. image: {
  24589. source: "./media/characters/pepper/front.svg",
  24590. extra: 1448 / 1312,
  24591. bottom: 9.4 / 1457.88
  24592. }
  24593. },
  24594. back: {
  24595. height: math.unit(9, "feet"),
  24596. weight: math.unit(350, "lb"),
  24597. name: "Back",
  24598. image: {
  24599. source: "./media/characters/pepper/back.svg",
  24600. extra: 1423 / 1300,
  24601. bottom: 4.6 / 1429
  24602. }
  24603. },
  24604. maw: {
  24605. height: math.unit(0.932, "feet"),
  24606. name: "Maw",
  24607. image: {
  24608. source: "./media/characters/pepper/maw.svg"
  24609. }
  24610. },
  24611. },
  24612. [
  24613. {
  24614. name: "Normal",
  24615. height: math.unit(9, "feet"),
  24616. default: true
  24617. },
  24618. ]
  24619. ))
  24620. characterMakers.push(() => makeCharacter(
  24621. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24622. {
  24623. front: {
  24624. height: math.unit(6, "feet"),
  24625. weight: math.unit(150, "lb"),
  24626. name: "Front",
  24627. image: {
  24628. source: "./media/characters/maelstrom/front.svg",
  24629. extra: 2100 / 1883,
  24630. bottom: 94 / 2196.7
  24631. }
  24632. },
  24633. },
  24634. [
  24635. {
  24636. name: "Less Kaiju",
  24637. height: math.unit(200, "feet")
  24638. },
  24639. {
  24640. name: "Kaiju",
  24641. height: math.unit(400, "feet"),
  24642. default: true
  24643. },
  24644. {
  24645. name: "Kaiju-er",
  24646. height: math.unit(600, "feet")
  24647. },
  24648. ]
  24649. ))
  24650. characterMakers.push(() => makeCharacter(
  24651. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24652. {
  24653. front: {
  24654. height: math.unit(6 + 5 / 12, "feet"),
  24655. weight: math.unit(180, "lb"),
  24656. name: "Front",
  24657. image: {
  24658. source: "./media/characters/lexir/front.svg",
  24659. extra: 180 / 172,
  24660. bottom: 12 / 192
  24661. }
  24662. },
  24663. back: {
  24664. height: math.unit(6 + 5 / 12, "feet"),
  24665. weight: math.unit(180, "lb"),
  24666. name: "Back",
  24667. image: {
  24668. source: "./media/characters/lexir/back.svg",
  24669. extra: 1273/1201,
  24670. bottom: 39/1312
  24671. }
  24672. },
  24673. },
  24674. [
  24675. {
  24676. name: "Very Smal",
  24677. height: math.unit(1, "nm")
  24678. },
  24679. {
  24680. name: "Normal",
  24681. height: math.unit(6 + 5 / 12, "feet"),
  24682. default: true
  24683. },
  24684. {
  24685. name: "Macro",
  24686. height: math.unit(1, "mile")
  24687. },
  24688. {
  24689. name: "Megamacro",
  24690. height: math.unit(50, "miles")
  24691. },
  24692. ]
  24693. ))
  24694. characterMakers.push(() => makeCharacter(
  24695. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24696. {
  24697. front: {
  24698. height: math.unit(1.5, "meters"),
  24699. weight: math.unit(100, "lb"),
  24700. name: "Front",
  24701. image: {
  24702. source: "./media/characters/maksio/front.svg",
  24703. extra: 1549 / 1531,
  24704. bottom: 123.7 / 1674.5429
  24705. }
  24706. },
  24707. back: {
  24708. height: math.unit(1.5, "meters"),
  24709. weight: math.unit(100, "lb"),
  24710. name: "Back",
  24711. image: {
  24712. source: "./media/characters/maksio/back.svg",
  24713. extra: 1541 / 1509,
  24714. bottom: 97 / 1639
  24715. }
  24716. },
  24717. hand: {
  24718. height: math.unit(0.621, "feet"),
  24719. name: "Hand",
  24720. image: {
  24721. source: "./media/characters/maksio/hand.svg"
  24722. }
  24723. },
  24724. foot: {
  24725. height: math.unit(1.611, "feet"),
  24726. name: "Foot",
  24727. image: {
  24728. source: "./media/characters/maksio/foot.svg"
  24729. }
  24730. },
  24731. },
  24732. [
  24733. {
  24734. name: "Shrunken",
  24735. height: math.unit(10, "cm")
  24736. },
  24737. {
  24738. name: "Normal",
  24739. height: math.unit(150, "cm"),
  24740. default: true
  24741. },
  24742. ]
  24743. ))
  24744. characterMakers.push(() => makeCharacter(
  24745. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24746. {
  24747. front: {
  24748. height: math.unit(100, "feet"),
  24749. name: "Front",
  24750. image: {
  24751. source: "./media/characters/erza-bear/front.svg",
  24752. extra: 2449 / 2390,
  24753. bottom: 46 / 2494
  24754. }
  24755. },
  24756. back: {
  24757. height: math.unit(100, "feet"),
  24758. name: "Back",
  24759. image: {
  24760. source: "./media/characters/erza-bear/back.svg",
  24761. extra: 2489 / 2430,
  24762. bottom: 85.4 / 2480
  24763. }
  24764. },
  24765. tail: {
  24766. height: math.unit(42, "feet"),
  24767. name: "Tail",
  24768. image: {
  24769. source: "./media/characters/erza-bear/tail.svg"
  24770. }
  24771. },
  24772. tongue: {
  24773. height: math.unit(8, "feet"),
  24774. name: "Tongue",
  24775. image: {
  24776. source: "./media/characters/erza-bear/tongue.svg"
  24777. }
  24778. },
  24779. dick: {
  24780. height: math.unit(10.5, "feet"),
  24781. name: "Dick",
  24782. image: {
  24783. source: "./media/characters/erza-bear/dick.svg"
  24784. }
  24785. },
  24786. dickVertical: {
  24787. height: math.unit(16.9, "feet"),
  24788. name: "Dick (Vertical)",
  24789. image: {
  24790. source: "./media/characters/erza-bear/dick-vertical.svg"
  24791. }
  24792. },
  24793. },
  24794. [
  24795. {
  24796. name: "Macro",
  24797. height: math.unit(100, "feet"),
  24798. default: true
  24799. },
  24800. ]
  24801. ))
  24802. characterMakers.push(() => makeCharacter(
  24803. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24804. {
  24805. front: {
  24806. height: math.unit(172, "cm"),
  24807. weight: math.unit(73, "kg"),
  24808. name: "Front",
  24809. image: {
  24810. source: "./media/characters/violet-flor/front.svg",
  24811. extra: 1530 / 1442,
  24812. bottom: 61.9 / 1588.8
  24813. }
  24814. },
  24815. back: {
  24816. height: math.unit(180, "cm"),
  24817. weight: math.unit(73, "kg"),
  24818. name: "Back",
  24819. image: {
  24820. source: "./media/characters/violet-flor/back.svg",
  24821. extra: 1692 / 1630,
  24822. bottom: 20 / 1712
  24823. }
  24824. },
  24825. },
  24826. [
  24827. {
  24828. name: "Normal",
  24829. height: math.unit(172, "cm"),
  24830. default: true
  24831. },
  24832. ]
  24833. ))
  24834. characterMakers.push(() => makeCharacter(
  24835. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24836. {
  24837. front: {
  24838. height: math.unit(6, "feet"),
  24839. weight: math.unit(220, "lb"),
  24840. name: "Front",
  24841. image: {
  24842. source: "./media/characters/lynn-rhea/front.svg",
  24843. extra: 310 / 273
  24844. }
  24845. },
  24846. back: {
  24847. height: math.unit(6, "feet"),
  24848. weight: math.unit(220, "lb"),
  24849. name: "Back",
  24850. image: {
  24851. source: "./media/characters/lynn-rhea/back.svg",
  24852. extra: 310 / 273
  24853. }
  24854. },
  24855. dicks: {
  24856. height: math.unit(0.9, "feet"),
  24857. name: "Dicks",
  24858. image: {
  24859. source: "./media/characters/lynn-rhea/dicks.svg"
  24860. }
  24861. },
  24862. slit: {
  24863. height: math.unit(0.4, "feet"),
  24864. name: "Slit",
  24865. image: {
  24866. source: "./media/characters/lynn-rhea/slit.svg"
  24867. }
  24868. },
  24869. },
  24870. [
  24871. {
  24872. name: "Micro",
  24873. height: math.unit(1, "inch")
  24874. },
  24875. {
  24876. name: "Macro",
  24877. height: math.unit(60, "feet"),
  24878. default: true
  24879. },
  24880. {
  24881. name: "Megamacro",
  24882. height: math.unit(2, "miles")
  24883. },
  24884. {
  24885. name: "Gigamacro",
  24886. height: math.unit(3, "earths")
  24887. },
  24888. {
  24889. name: "Galactic",
  24890. height: math.unit(0.8, "galaxies")
  24891. },
  24892. ]
  24893. ))
  24894. characterMakers.push(() => makeCharacter(
  24895. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24896. {
  24897. front: {
  24898. height: math.unit(1600, "feet"),
  24899. weight: math.unit(85758785169, "kg"),
  24900. name: "Front",
  24901. image: {
  24902. source: "./media/characters/valathos/front.svg",
  24903. extra: 1451 / 1339
  24904. }
  24905. },
  24906. },
  24907. [
  24908. {
  24909. name: "Macro",
  24910. height: math.unit(1600, "feet"),
  24911. default: true
  24912. },
  24913. ]
  24914. ))
  24915. characterMakers.push(() => makeCharacter(
  24916. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24917. {
  24918. front: {
  24919. height: math.unit(7 + 5 / 12, "feet"),
  24920. weight: math.unit(300, "lb"),
  24921. name: "Front",
  24922. image: {
  24923. source: "./media/characters/azula/front.svg",
  24924. extra: 3208 / 2880,
  24925. bottom: 80.2 / 3277
  24926. }
  24927. },
  24928. back: {
  24929. height: math.unit(7 + 5 / 12, "feet"),
  24930. weight: math.unit(300, "lb"),
  24931. name: "Back",
  24932. image: {
  24933. source: "./media/characters/azula/back.svg",
  24934. extra: 3169 / 2822,
  24935. bottom: 150.6 / 3321
  24936. }
  24937. },
  24938. },
  24939. [
  24940. {
  24941. name: "Normal",
  24942. height: math.unit(7 + 5 / 12, "feet"),
  24943. default: true
  24944. },
  24945. {
  24946. name: "Big",
  24947. height: math.unit(20, "feet")
  24948. },
  24949. ]
  24950. ))
  24951. characterMakers.push(() => makeCharacter(
  24952. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24953. {
  24954. front: {
  24955. height: math.unit(5 + 1 / 12, "feet"),
  24956. weight: math.unit(110, "lb"),
  24957. name: "Front",
  24958. image: {
  24959. source: "./media/characters/rupert/front.svg",
  24960. extra: 1549 / 1495,
  24961. bottom: 54.2 / 1604.4
  24962. }
  24963. },
  24964. },
  24965. [
  24966. {
  24967. name: "Normal",
  24968. height: math.unit(5 + 1 / 12, "feet"),
  24969. default: true
  24970. },
  24971. ]
  24972. ))
  24973. characterMakers.push(() => makeCharacter(
  24974. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24975. {
  24976. front: {
  24977. height: math.unit(8 + 4 / 12, "feet"),
  24978. weight: math.unit(350, "lb"),
  24979. name: "Front",
  24980. image: {
  24981. source: "./media/characters/sheera-castellar/front.svg",
  24982. extra: 1957 / 1894,
  24983. bottom: 26.97 / 1975.017
  24984. }
  24985. },
  24986. side: {
  24987. height: math.unit(8 + 4 / 12, "feet"),
  24988. weight: math.unit(350, "lb"),
  24989. name: "Side",
  24990. image: {
  24991. source: "./media/characters/sheera-castellar/side.svg",
  24992. extra: 1957 / 1894
  24993. }
  24994. },
  24995. back: {
  24996. height: math.unit(8 + 4 / 12, "feet"),
  24997. weight: math.unit(350, "lb"),
  24998. name: "Back",
  24999. image: {
  25000. source: "./media/characters/sheera-castellar/back.svg",
  25001. extra: 1957 / 1894
  25002. }
  25003. },
  25004. angled: {
  25005. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25006. weight: math.unit(350, "lb"),
  25007. name: "Angled",
  25008. image: {
  25009. source: "./media/characters/sheera-castellar/angled.svg",
  25010. extra: 1807 / 1707,
  25011. bottom: 68 / 1875
  25012. }
  25013. },
  25014. genitals: {
  25015. height: math.unit(2.2, "feet"),
  25016. name: "Genitals",
  25017. image: {
  25018. source: "./media/characters/sheera-castellar/genitals.svg"
  25019. }
  25020. },
  25021. taur: {
  25022. height: math.unit(10 + 6/12, "feet"),
  25023. name: "Taur",
  25024. image: {
  25025. source: "./media/characters/sheera-castellar/taur.svg",
  25026. extra: 2017/1909,
  25027. bottom: 185/2202
  25028. }
  25029. },
  25030. },
  25031. [
  25032. {
  25033. name: "Normal",
  25034. height: math.unit(8 + 4 / 12, "feet")
  25035. },
  25036. {
  25037. name: "Macro",
  25038. height: math.unit(150, "feet"),
  25039. default: true
  25040. },
  25041. {
  25042. name: "Macro+",
  25043. height: math.unit(800, "feet")
  25044. },
  25045. ]
  25046. ))
  25047. characterMakers.push(() => makeCharacter(
  25048. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25049. {
  25050. front: {
  25051. height: math.unit(6, "feet"),
  25052. weight: math.unit(150, "lb"),
  25053. name: "Front",
  25054. image: {
  25055. source: "./media/characters/jaipur/front.svg",
  25056. extra: 3860 / 3731,
  25057. bottom: 287 / 4140
  25058. }
  25059. },
  25060. back: {
  25061. height: math.unit(6, "feet"),
  25062. weight: math.unit(150, "lb"),
  25063. name: "Back",
  25064. image: {
  25065. source: "./media/characters/jaipur/back.svg",
  25066. extra: 1637/1561,
  25067. bottom: 154/1791
  25068. }
  25069. },
  25070. },
  25071. [
  25072. {
  25073. name: "Normal",
  25074. height: math.unit(1.85, "meters"),
  25075. default: true
  25076. },
  25077. {
  25078. name: "Macro",
  25079. height: math.unit(150, "meters")
  25080. },
  25081. {
  25082. name: "Macro+",
  25083. height: math.unit(0.5, "miles")
  25084. },
  25085. {
  25086. name: "Macro++",
  25087. height: math.unit(2.5, "miles")
  25088. },
  25089. {
  25090. name: "Macro+++",
  25091. height: math.unit(12, "miles")
  25092. },
  25093. {
  25094. name: "Macro++++",
  25095. height: math.unit(120, "miles")
  25096. },
  25097. {
  25098. name: "Macro+++++",
  25099. height: math.unit(1200, "miles")
  25100. },
  25101. ]
  25102. ))
  25103. characterMakers.push(() => makeCharacter(
  25104. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25105. {
  25106. front: {
  25107. height: math.unit(6, "feet"),
  25108. weight: math.unit(150, "lb"),
  25109. name: "Front",
  25110. image: {
  25111. source: "./media/characters/sheila-wolf/front.svg",
  25112. extra: 1931 / 1808,
  25113. bottom: 29.5 / 1960
  25114. }
  25115. },
  25116. dick: {
  25117. height: math.unit(1.464, "feet"),
  25118. name: "Dick",
  25119. image: {
  25120. source: "./media/characters/sheila-wolf/dick.svg"
  25121. }
  25122. },
  25123. muzzle: {
  25124. height: math.unit(0.513, "feet"),
  25125. name: "Muzzle",
  25126. image: {
  25127. source: "./media/characters/sheila-wolf/muzzle.svg"
  25128. }
  25129. },
  25130. },
  25131. [
  25132. {
  25133. name: "Macro",
  25134. height: math.unit(70, "feet"),
  25135. default: true
  25136. },
  25137. ]
  25138. ))
  25139. characterMakers.push(() => makeCharacter(
  25140. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25141. {
  25142. front: {
  25143. height: math.unit(32, "meters"),
  25144. weight: math.unit(300000, "kg"),
  25145. name: "Front",
  25146. image: {
  25147. source: "./media/characters/almor/front.svg",
  25148. extra: 1408 / 1322,
  25149. bottom: 94.6 / 1506.5
  25150. }
  25151. },
  25152. },
  25153. [
  25154. {
  25155. name: "Macro",
  25156. height: math.unit(32, "meters"),
  25157. default: true
  25158. },
  25159. ]
  25160. ))
  25161. characterMakers.push(() => makeCharacter(
  25162. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25163. {
  25164. front: {
  25165. height: math.unit(7, "feet"),
  25166. weight: math.unit(200, "lb"),
  25167. name: "Front",
  25168. image: {
  25169. source: "./media/characters/silver/front.svg",
  25170. extra: 472.1 / 450.5,
  25171. bottom: 26.5 / 499.424
  25172. }
  25173. },
  25174. },
  25175. [
  25176. {
  25177. name: "Normal",
  25178. height: math.unit(7, "feet"),
  25179. default: true
  25180. },
  25181. {
  25182. name: "Macro",
  25183. height: math.unit(800, "feet")
  25184. },
  25185. {
  25186. name: "Megamacro",
  25187. height: math.unit(250, "miles")
  25188. },
  25189. ]
  25190. ))
  25191. characterMakers.push(() => makeCharacter(
  25192. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25193. {
  25194. front: {
  25195. height: math.unit(6, "feet"),
  25196. weight: math.unit(150, "lb"),
  25197. name: "Front",
  25198. image: {
  25199. source: "./media/characters/pliskin/front.svg",
  25200. extra: 1469 / 1359,
  25201. bottom: 70 / 1540
  25202. }
  25203. },
  25204. },
  25205. [
  25206. {
  25207. name: "Micro",
  25208. height: math.unit(3, "inches")
  25209. },
  25210. {
  25211. name: "Normal",
  25212. height: math.unit(5 + 11 / 12, "feet"),
  25213. default: true
  25214. },
  25215. {
  25216. name: "Macro",
  25217. height: math.unit(120, "feet")
  25218. },
  25219. ]
  25220. ))
  25221. characterMakers.push(() => makeCharacter(
  25222. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25223. {
  25224. front: {
  25225. height: math.unit(6, "feet"),
  25226. weight: math.unit(150, "lb"),
  25227. name: "Front",
  25228. image: {
  25229. source: "./media/characters/sammy/front.svg",
  25230. extra: 1193 / 1089,
  25231. bottom: 30.5 / 1226
  25232. }
  25233. },
  25234. },
  25235. [
  25236. {
  25237. name: "Macro",
  25238. height: math.unit(1700, "feet"),
  25239. default: true
  25240. },
  25241. {
  25242. name: "Examacro",
  25243. height: math.unit(2.5e9, "lightyears")
  25244. },
  25245. ]
  25246. ))
  25247. characterMakers.push(() => makeCharacter(
  25248. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25249. {
  25250. front: {
  25251. height: math.unit(21, "meters"),
  25252. weight: math.unit(12, "tonnes"),
  25253. name: "Front",
  25254. image: {
  25255. source: "./media/characters/kuru/front.svg",
  25256. extra: 4301 / 3785,
  25257. bottom: 371.3 / 4691
  25258. }
  25259. },
  25260. },
  25261. [
  25262. {
  25263. name: "Macro",
  25264. height: math.unit(21, "meters"),
  25265. default: true
  25266. },
  25267. ]
  25268. ))
  25269. characterMakers.push(() => makeCharacter(
  25270. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25271. {
  25272. front: {
  25273. height: math.unit(23, "meters"),
  25274. weight: math.unit(12.2, "tonnes"),
  25275. name: "Front",
  25276. image: {
  25277. source: "./media/characters/rakka/front.svg",
  25278. extra: 4670 / 4169,
  25279. bottom: 301 / 4968.7
  25280. }
  25281. },
  25282. },
  25283. [
  25284. {
  25285. name: "Macro",
  25286. height: math.unit(23, "meters"),
  25287. default: true
  25288. },
  25289. ]
  25290. ))
  25291. characterMakers.push(() => makeCharacter(
  25292. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25293. {
  25294. front: {
  25295. height: math.unit(6, "feet"),
  25296. weight: math.unit(150, "lb"),
  25297. name: "Front",
  25298. image: {
  25299. source: "./media/characters/rhys-feline/front.svg",
  25300. extra: 2488 / 2308,
  25301. bottom: 35.67 / 2519.19
  25302. }
  25303. },
  25304. },
  25305. [
  25306. {
  25307. name: "Really Small",
  25308. height: math.unit(1, "nm")
  25309. },
  25310. {
  25311. name: "Micro",
  25312. height: math.unit(4, "inches")
  25313. },
  25314. {
  25315. name: "Normal",
  25316. height: math.unit(4 + 10 / 12, "feet"),
  25317. default: true
  25318. },
  25319. {
  25320. name: "Macro",
  25321. height: math.unit(100, "feet")
  25322. },
  25323. {
  25324. name: "Megamacto",
  25325. height: math.unit(50, "miles")
  25326. },
  25327. ]
  25328. ))
  25329. characterMakers.push(() => makeCharacter(
  25330. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25331. {
  25332. side: {
  25333. height: math.unit(30, "feet"),
  25334. weight: math.unit(35000, "kg"),
  25335. name: "Side",
  25336. image: {
  25337. source: "./media/characters/alydar/side.svg",
  25338. extra: 234 / 222,
  25339. bottom: 6.5 / 241
  25340. }
  25341. },
  25342. front: {
  25343. height: math.unit(30, "feet"),
  25344. weight: math.unit(35000, "kg"),
  25345. name: "Front",
  25346. image: {
  25347. source: "./media/characters/alydar/front.svg",
  25348. extra: 223.37 / 210.2,
  25349. bottom: 22.3 / 246.76
  25350. }
  25351. },
  25352. top: {
  25353. height: math.unit(64.54, "feet"),
  25354. weight: math.unit(35000, "kg"),
  25355. name: "Top",
  25356. image: {
  25357. source: "./media/characters/alydar/top.svg"
  25358. }
  25359. },
  25360. anthro: {
  25361. height: math.unit(30, "feet"),
  25362. weight: math.unit(9000, "kg"),
  25363. name: "Anthro",
  25364. image: {
  25365. source: "./media/characters/alydar/anthro.svg",
  25366. extra: 432 / 421,
  25367. bottom: 7.18 / 440
  25368. }
  25369. },
  25370. maw: {
  25371. height: math.unit(11.693, "feet"),
  25372. name: "Maw",
  25373. image: {
  25374. source: "./media/characters/alydar/maw.svg"
  25375. }
  25376. },
  25377. head: {
  25378. height: math.unit(11.693, "feet"),
  25379. name: "Head",
  25380. image: {
  25381. source: "./media/characters/alydar/head.svg"
  25382. }
  25383. },
  25384. headAlt: {
  25385. height: math.unit(12.861, "feet"),
  25386. name: "Head (Alt)",
  25387. image: {
  25388. source: "./media/characters/alydar/head-alt.svg"
  25389. }
  25390. },
  25391. wing: {
  25392. height: math.unit(20.712, "feet"),
  25393. name: "Wing",
  25394. image: {
  25395. source: "./media/characters/alydar/wing.svg"
  25396. }
  25397. },
  25398. wingFeather: {
  25399. height: math.unit(9.662, "feet"),
  25400. name: "Wing Feather",
  25401. image: {
  25402. source: "./media/characters/alydar/wing-feather.svg"
  25403. }
  25404. },
  25405. countourFeather: {
  25406. height: math.unit(4.154, "feet"),
  25407. name: "Contour Feather",
  25408. image: {
  25409. source: "./media/characters/alydar/contour-feather.svg"
  25410. }
  25411. },
  25412. },
  25413. [
  25414. {
  25415. name: "Diplomatic",
  25416. height: math.unit(13, "feet"),
  25417. default: true
  25418. },
  25419. {
  25420. name: "Small",
  25421. height: math.unit(30, "feet")
  25422. },
  25423. {
  25424. name: "Normal",
  25425. height: math.unit(95, "feet"),
  25426. default: true
  25427. },
  25428. {
  25429. name: "Large",
  25430. height: math.unit(285, "feet")
  25431. },
  25432. {
  25433. name: "Incomprehensible",
  25434. height: math.unit(450, "megameters")
  25435. },
  25436. ]
  25437. ))
  25438. characterMakers.push(() => makeCharacter(
  25439. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25440. {
  25441. side: {
  25442. height: math.unit(11, "feet"),
  25443. weight: math.unit(1750, "kg"),
  25444. name: "Side",
  25445. image: {
  25446. source: "./media/characters/selicia/side.svg",
  25447. extra: 440 / 396,
  25448. bottom: 24.8 / 465.979
  25449. }
  25450. },
  25451. maw: {
  25452. height: math.unit(4.665, "feet"),
  25453. name: "Maw",
  25454. image: {
  25455. source: "./media/characters/selicia/maw.svg"
  25456. }
  25457. },
  25458. },
  25459. [
  25460. {
  25461. name: "Normal",
  25462. height: math.unit(11, "feet"),
  25463. default: true
  25464. },
  25465. ]
  25466. ))
  25467. characterMakers.push(() => makeCharacter(
  25468. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25469. {
  25470. side: {
  25471. height: math.unit(2 + 6 / 12, "feet"),
  25472. weight: math.unit(30, "lb"),
  25473. name: "Side",
  25474. image: {
  25475. source: "./media/characters/layla/side.svg",
  25476. extra: 244 / 188,
  25477. bottom: 18.2 / 262.1
  25478. }
  25479. },
  25480. back: {
  25481. height: math.unit(2 + 6 / 12, "feet"),
  25482. weight: math.unit(30, "lb"),
  25483. name: "Back",
  25484. image: {
  25485. source: "./media/characters/layla/back.svg",
  25486. extra: 308 / 241.5,
  25487. bottom: 8.9 / 316.8
  25488. }
  25489. },
  25490. cumming: {
  25491. height: math.unit(2 + 6 / 12, "feet"),
  25492. weight: math.unit(30, "lb"),
  25493. name: "Cumming",
  25494. image: {
  25495. source: "./media/characters/layla/cumming.svg",
  25496. extra: 342 / 279,
  25497. bottom: 595 / 938
  25498. }
  25499. },
  25500. dickFlaccid: {
  25501. height: math.unit(2.595, "feet"),
  25502. name: "Flaccid Genitals",
  25503. image: {
  25504. source: "./media/characters/layla/dick-flaccid.svg"
  25505. }
  25506. },
  25507. dickErect: {
  25508. height: math.unit(2.359, "feet"),
  25509. name: "Erect Genitals",
  25510. image: {
  25511. source: "./media/characters/layla/dick-erect.svg"
  25512. }
  25513. },
  25514. dragon: {
  25515. height: math.unit(40, "feet"),
  25516. name: "Dragon",
  25517. image: {
  25518. source: "./media/characters/layla/dragon.svg",
  25519. extra: 610/535,
  25520. bottom: 367/977
  25521. }
  25522. },
  25523. taur: {
  25524. height: math.unit(30, "feet"),
  25525. name: "Taur",
  25526. image: {
  25527. source: "./media/characters/layla/taur.svg",
  25528. extra: 1268/1199,
  25529. bottom: 112/1380
  25530. }
  25531. },
  25532. },
  25533. [
  25534. {
  25535. name: "Micro",
  25536. height: math.unit(1, "inch")
  25537. },
  25538. {
  25539. name: "Small",
  25540. height: math.unit(1, "foot")
  25541. },
  25542. {
  25543. name: "Normal",
  25544. height: math.unit(2 + 6 / 12, "feet"),
  25545. default: true
  25546. },
  25547. {
  25548. name: "Macro",
  25549. height: math.unit(200, "feet")
  25550. },
  25551. {
  25552. name: "Megamacro",
  25553. height: math.unit(1000, "miles")
  25554. },
  25555. {
  25556. name: "Planetary",
  25557. height: math.unit(8000, "miles")
  25558. },
  25559. {
  25560. name: "True Layla",
  25561. height: math.unit(200000 * 7, "multiverses")
  25562. },
  25563. ]
  25564. ))
  25565. characterMakers.push(() => makeCharacter(
  25566. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25567. {
  25568. back: {
  25569. height: math.unit(10.5, "feet"),
  25570. weight: math.unit(800, "lb"),
  25571. name: "Back",
  25572. image: {
  25573. source: "./media/characters/knox/back.svg",
  25574. extra: 1486 / 1089,
  25575. bottom: 107 / 1601.4
  25576. }
  25577. },
  25578. side: {
  25579. height: math.unit(10.5, "feet"),
  25580. weight: math.unit(800, "lb"),
  25581. name: "Side",
  25582. image: {
  25583. source: "./media/characters/knox/side.svg",
  25584. extra: 244 / 218,
  25585. bottom: 14 / 260
  25586. }
  25587. },
  25588. },
  25589. [
  25590. {
  25591. name: "Compact",
  25592. height: math.unit(10.5, "feet"),
  25593. default: true
  25594. },
  25595. {
  25596. name: "Dynamax",
  25597. height: math.unit(210, "feet")
  25598. },
  25599. {
  25600. name: "Full Macro",
  25601. height: math.unit(850, "feet")
  25602. },
  25603. ]
  25604. ))
  25605. characterMakers.push(() => makeCharacter(
  25606. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25607. {
  25608. front: {
  25609. height: math.unit(28, "feet"),
  25610. weight: math.unit(10500, "lb"),
  25611. name: "Front",
  25612. image: {
  25613. source: "./media/characters/kayda/front.svg",
  25614. extra: 1536 / 1428,
  25615. bottom: 68.7 / 1603
  25616. }
  25617. },
  25618. back: {
  25619. height: math.unit(28, "feet"),
  25620. weight: math.unit(10500, "lb"),
  25621. name: "Back",
  25622. image: {
  25623. source: "./media/characters/kayda/back.svg",
  25624. extra: 1557 / 1464,
  25625. bottom: 39.5 / 1597.49
  25626. }
  25627. },
  25628. dick: {
  25629. height: math.unit(3.858, "feet"),
  25630. name: "Dick",
  25631. image: {
  25632. source: "./media/characters/kayda/dick.svg"
  25633. }
  25634. },
  25635. },
  25636. [
  25637. {
  25638. name: "Macro",
  25639. height: math.unit(28, "feet"),
  25640. default: true
  25641. },
  25642. ]
  25643. ))
  25644. characterMakers.push(() => makeCharacter(
  25645. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25646. {
  25647. front: {
  25648. height: math.unit(10 + 11 / 12, "feet"),
  25649. weight: math.unit(1400, "lb"),
  25650. name: "Front",
  25651. image: {
  25652. source: "./media/characters/brian/front.svg",
  25653. extra: 737 / 692,
  25654. bottom: 55.4 / 785
  25655. }
  25656. },
  25657. },
  25658. [
  25659. {
  25660. name: "Normal",
  25661. height: math.unit(10 + 11 / 12, "feet"),
  25662. default: true
  25663. },
  25664. ]
  25665. ))
  25666. characterMakers.push(() => makeCharacter(
  25667. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25668. {
  25669. front: {
  25670. height: math.unit(5 + 8 / 12, "feet"),
  25671. weight: math.unit(140, "lb"),
  25672. name: "Front",
  25673. image: {
  25674. source: "./media/characters/khemri/front.svg",
  25675. extra: 4780 / 4059,
  25676. bottom: 80.1 / 4859.25
  25677. }
  25678. },
  25679. },
  25680. [
  25681. {
  25682. name: "Micro",
  25683. height: math.unit(6, "inches")
  25684. },
  25685. {
  25686. name: "Normal",
  25687. height: math.unit(5 + 8 / 12, "feet"),
  25688. default: true
  25689. },
  25690. ]
  25691. ))
  25692. characterMakers.push(() => makeCharacter(
  25693. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25694. {
  25695. front: {
  25696. height: math.unit(13, "feet"),
  25697. weight: math.unit(1700, "lb"),
  25698. name: "Front",
  25699. image: {
  25700. source: "./media/characters/felix-braveheart/front.svg",
  25701. extra: 1222 / 1157,
  25702. bottom: 53.2 / 1280
  25703. }
  25704. },
  25705. back: {
  25706. height: math.unit(13, "feet"),
  25707. weight: math.unit(1700, "lb"),
  25708. name: "Back",
  25709. image: {
  25710. source: "./media/characters/felix-braveheart/back.svg",
  25711. extra: 1277 / 1203,
  25712. bottom: 50.2 / 1327
  25713. }
  25714. },
  25715. feral: {
  25716. height: math.unit(6, "feet"),
  25717. weight: math.unit(400, "lb"),
  25718. name: "Feral",
  25719. image: {
  25720. source: "./media/characters/felix-braveheart/feral.svg",
  25721. extra: 682 / 625,
  25722. bottom: 6.9 / 688
  25723. }
  25724. },
  25725. },
  25726. [
  25727. {
  25728. name: "Normal",
  25729. height: math.unit(13, "feet"),
  25730. default: true
  25731. },
  25732. ]
  25733. ))
  25734. characterMakers.push(() => makeCharacter(
  25735. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25736. {
  25737. side: {
  25738. height: math.unit(5 + 11 / 12, "feet"),
  25739. weight: math.unit(1400, "lb"),
  25740. name: "Side",
  25741. image: {
  25742. source: "./media/characters/shadow-blade/side.svg",
  25743. extra: 1726 / 1267,
  25744. bottom: 58.4 / 1785
  25745. }
  25746. },
  25747. },
  25748. [
  25749. {
  25750. name: "Normal",
  25751. height: math.unit(5 + 11 / 12, "feet"),
  25752. default: true
  25753. },
  25754. ]
  25755. ))
  25756. characterMakers.push(() => makeCharacter(
  25757. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25758. {
  25759. front: {
  25760. height: math.unit(1 + 6 / 12, "feet"),
  25761. weight: math.unit(25, "lb"),
  25762. name: "Front",
  25763. image: {
  25764. source: "./media/characters/karla-halldor/front.svg",
  25765. extra: 1459 / 1383,
  25766. bottom: 12 / 1472
  25767. }
  25768. },
  25769. },
  25770. [
  25771. {
  25772. name: "Normal",
  25773. height: math.unit(1 + 6 / 12, "feet"),
  25774. default: true
  25775. },
  25776. ]
  25777. ))
  25778. characterMakers.push(() => makeCharacter(
  25779. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25780. {
  25781. front: {
  25782. height: math.unit(6 + 2 / 12, "feet"),
  25783. weight: math.unit(160, "lb"),
  25784. name: "Front",
  25785. image: {
  25786. source: "./media/characters/ariam/front.svg",
  25787. extra: 1073/976,
  25788. bottom: 52/1125
  25789. }
  25790. },
  25791. back: {
  25792. height: math.unit(6 + 2/12, "feet"),
  25793. weight: math.unit(160, "lb"),
  25794. name: "Back",
  25795. image: {
  25796. source: "./media/characters/ariam/back.svg",
  25797. extra: 1103/1023,
  25798. bottom: 9/1112
  25799. }
  25800. },
  25801. dressed: {
  25802. height: math.unit(6 + 2/12, "feet"),
  25803. weight: math.unit(160, "lb"),
  25804. name: "Dressed",
  25805. image: {
  25806. source: "./media/characters/ariam/dressed.svg",
  25807. extra: 1099/1009,
  25808. bottom: 25/1124
  25809. }
  25810. },
  25811. squatting: {
  25812. height: math.unit(4.1, "feet"),
  25813. weight: math.unit(160, "lb"),
  25814. name: "Squatting",
  25815. image: {
  25816. source: "./media/characters/ariam/squatting.svg",
  25817. extra: 2617 / 2112,
  25818. bottom: 61.2 / 2681,
  25819. }
  25820. },
  25821. },
  25822. [
  25823. {
  25824. name: "Normal",
  25825. height: math.unit(6 + 2 / 12, "feet"),
  25826. default: true
  25827. },
  25828. {
  25829. name: "Normal+",
  25830. height: math.unit(4, "meters")
  25831. },
  25832. {
  25833. name: "Macro",
  25834. height: math.unit(50, "meters")
  25835. },
  25836. {
  25837. name: "Macro+",
  25838. height: math.unit(100, "meters")
  25839. },
  25840. {
  25841. name: "Megamacro",
  25842. height: math.unit(20, "km")
  25843. },
  25844. {
  25845. name: "Caretaker",
  25846. height: math.unit(444, "megameters")
  25847. },
  25848. ]
  25849. ))
  25850. characterMakers.push(() => makeCharacter(
  25851. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25852. {
  25853. front: {
  25854. height: math.unit(1.67, "meters"),
  25855. weight: math.unit(140, "lb"),
  25856. name: "Front",
  25857. image: {
  25858. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25859. extra: 438 / 410,
  25860. bottom: 0.75 / 439
  25861. }
  25862. },
  25863. },
  25864. [
  25865. {
  25866. name: "Shrunken",
  25867. height: math.unit(7.6, "cm")
  25868. },
  25869. {
  25870. name: "Human Scale",
  25871. height: math.unit(1.67, "meters")
  25872. },
  25873. {
  25874. name: "Wolxi Scale",
  25875. height: math.unit(36.7, "meters"),
  25876. default: true
  25877. },
  25878. ]
  25879. ))
  25880. characterMakers.push(() => makeCharacter(
  25881. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25882. {
  25883. front: {
  25884. height: math.unit(1.73, "meters"),
  25885. weight: math.unit(240, "lb"),
  25886. name: "Front",
  25887. image: {
  25888. source: "./media/characters/izue-two-mothers/front.svg",
  25889. extra: 469 / 437,
  25890. bottom: 1.24 / 470.6
  25891. }
  25892. },
  25893. },
  25894. [
  25895. {
  25896. name: "Shrunken",
  25897. height: math.unit(7.86, "cm")
  25898. },
  25899. {
  25900. name: "Human Scale",
  25901. height: math.unit(1.73, "meters")
  25902. },
  25903. {
  25904. name: "Wolxi Scale",
  25905. height: math.unit(38, "meters"),
  25906. default: true
  25907. },
  25908. ]
  25909. ))
  25910. characterMakers.push(() => makeCharacter(
  25911. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25912. {
  25913. front: {
  25914. height: math.unit(1.55, "meters"),
  25915. weight: math.unit(120, "lb"),
  25916. name: "Front",
  25917. image: {
  25918. source: "./media/characters/teeku-love-shack/front.svg",
  25919. extra: 387 / 362,
  25920. bottom: 1.51 / 388
  25921. }
  25922. },
  25923. },
  25924. [
  25925. {
  25926. name: "Shrunken",
  25927. height: math.unit(7, "cm")
  25928. },
  25929. {
  25930. name: "Human Scale",
  25931. height: math.unit(1.55, "meters")
  25932. },
  25933. {
  25934. name: "Wolxi Scale",
  25935. height: math.unit(34.1, "meters"),
  25936. default: true
  25937. },
  25938. ]
  25939. ))
  25940. characterMakers.push(() => makeCharacter(
  25941. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25942. {
  25943. front: {
  25944. height: math.unit(1.83, "meters"),
  25945. weight: math.unit(135, "lb"),
  25946. name: "Front",
  25947. image: {
  25948. source: "./media/characters/dejma-the-red/front.svg",
  25949. extra: 480 / 458,
  25950. bottom: 1.8 / 482
  25951. }
  25952. },
  25953. },
  25954. [
  25955. {
  25956. name: "Shrunken",
  25957. height: math.unit(8.3, "cm")
  25958. },
  25959. {
  25960. name: "Human Scale",
  25961. height: math.unit(1.83, "meters")
  25962. },
  25963. {
  25964. name: "Wolxi Scale",
  25965. height: math.unit(40, "meters"),
  25966. default: true
  25967. },
  25968. ]
  25969. ))
  25970. characterMakers.push(() => makeCharacter(
  25971. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25972. {
  25973. front: {
  25974. height: math.unit(1.78, "meters"),
  25975. weight: math.unit(65, "kg"),
  25976. name: "Front",
  25977. image: {
  25978. source: "./media/characters/aki/front.svg",
  25979. extra: 452 / 415
  25980. }
  25981. },
  25982. frontNsfw: {
  25983. height: math.unit(1.78, "meters"),
  25984. weight: math.unit(65, "kg"),
  25985. name: "Front (NSFW)",
  25986. image: {
  25987. source: "./media/characters/aki/front-nsfw.svg",
  25988. extra: 452 / 415
  25989. }
  25990. },
  25991. back: {
  25992. height: math.unit(1.78, "meters"),
  25993. weight: math.unit(65, "kg"),
  25994. name: "Back",
  25995. image: {
  25996. source: "./media/characters/aki/back.svg",
  25997. extra: 452 / 415
  25998. }
  25999. },
  26000. rump: {
  26001. height: math.unit(2.05, "feet"),
  26002. name: "Rump",
  26003. image: {
  26004. source: "./media/characters/aki/rump.svg"
  26005. }
  26006. },
  26007. dick: {
  26008. height: math.unit(0.95, "feet"),
  26009. name: "Dick",
  26010. image: {
  26011. source: "./media/characters/aki/dick.svg"
  26012. }
  26013. },
  26014. },
  26015. [
  26016. {
  26017. name: "Micro",
  26018. height: math.unit(15, "cm")
  26019. },
  26020. {
  26021. name: "Normal",
  26022. height: math.unit(178, "cm"),
  26023. default: true
  26024. },
  26025. {
  26026. name: "Macro",
  26027. height: math.unit(214, "m")
  26028. },
  26029. {
  26030. name: "Macro+",
  26031. height: math.unit(534, "m")
  26032. },
  26033. ]
  26034. ))
  26035. characterMakers.push(() => makeCharacter(
  26036. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26037. {
  26038. front: {
  26039. height: math.unit(5 + 5 / 12, "feet"),
  26040. weight: math.unit(120, "lb"),
  26041. name: "Front",
  26042. image: {
  26043. source: "./media/characters/ari/front.svg",
  26044. extra: 1550/1471,
  26045. bottom: 39/1589
  26046. }
  26047. },
  26048. },
  26049. [
  26050. {
  26051. name: "Normal",
  26052. height: math.unit(5 + 5 / 12, "feet")
  26053. },
  26054. {
  26055. name: "Macro",
  26056. height: math.unit(100, "feet"),
  26057. default: true
  26058. },
  26059. {
  26060. name: "Megamacro",
  26061. height: math.unit(100, "miles")
  26062. },
  26063. {
  26064. name: "Gigamacro",
  26065. height: math.unit(80000, "miles")
  26066. },
  26067. ]
  26068. ))
  26069. characterMakers.push(() => makeCharacter(
  26070. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26071. {
  26072. side: {
  26073. height: math.unit(9, "feet"),
  26074. weight: math.unit(400, "kg"),
  26075. name: "Side",
  26076. image: {
  26077. source: "./media/characters/bolt/side.svg",
  26078. extra: 1126 / 896,
  26079. bottom: 60 / 1187.3,
  26080. }
  26081. },
  26082. },
  26083. [
  26084. {
  26085. name: "Micro",
  26086. height: math.unit(5, "inches")
  26087. },
  26088. {
  26089. name: "Normal",
  26090. height: math.unit(9, "feet"),
  26091. default: true
  26092. },
  26093. {
  26094. name: "Macro",
  26095. height: math.unit(700, "feet")
  26096. },
  26097. {
  26098. name: "Max Size",
  26099. height: math.unit(1.52e22, "yottameters")
  26100. },
  26101. ]
  26102. ))
  26103. characterMakers.push(() => makeCharacter(
  26104. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26105. {
  26106. front: {
  26107. height: math.unit(4.3, "meters"),
  26108. weight: math.unit(3, "tons"),
  26109. name: "Front",
  26110. image: {
  26111. source: "./media/characters/draekon-sylviar/front.svg",
  26112. extra: 2072/1512,
  26113. bottom: 74/2146
  26114. }
  26115. },
  26116. back: {
  26117. height: math.unit(4.3, "meters"),
  26118. weight: math.unit(3, "tons"),
  26119. name: "Back",
  26120. image: {
  26121. source: "./media/characters/draekon-sylviar/back.svg",
  26122. extra: 1639/1483,
  26123. bottom: 41/1680
  26124. }
  26125. },
  26126. feral: {
  26127. height: math.unit(1.15, "meters"),
  26128. weight: math.unit(3, "tons"),
  26129. name: "Feral",
  26130. image: {
  26131. source: "./media/characters/draekon-sylviar/feral.svg",
  26132. extra: 1033/395,
  26133. bottom: 130/1163
  26134. }
  26135. },
  26136. maw: {
  26137. height: math.unit(1.3, "meters"),
  26138. name: "Maw",
  26139. image: {
  26140. source: "./media/characters/draekon-sylviar/maw.svg"
  26141. }
  26142. },
  26143. mawSeparated: {
  26144. height: math.unit(1.53, "meters"),
  26145. name: "Separated Maw",
  26146. image: {
  26147. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26148. }
  26149. },
  26150. tail: {
  26151. height: math.unit(1.15, "meters"),
  26152. name: "Tail",
  26153. image: {
  26154. source: "./media/characters/draekon-sylviar/tail.svg"
  26155. }
  26156. },
  26157. tailDick: {
  26158. height: math.unit(1.15, "meters"),
  26159. name: "Tail (Dick)",
  26160. image: {
  26161. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26162. }
  26163. },
  26164. tailDickSeparated: {
  26165. height: math.unit(1.19, "meters"),
  26166. name: "Tail (Separated Dick)",
  26167. image: {
  26168. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26169. }
  26170. },
  26171. slit: {
  26172. height: math.unit(1, "meters"),
  26173. name: "Slit",
  26174. image: {
  26175. source: "./media/characters/draekon-sylviar/slit.svg"
  26176. }
  26177. },
  26178. dick: {
  26179. height: math.unit(1.15, "meters"),
  26180. name: "Dick",
  26181. image: {
  26182. source: "./media/characters/draekon-sylviar/dick.svg"
  26183. }
  26184. },
  26185. dickSeparated: {
  26186. height: math.unit(1.1, "meters"),
  26187. name: "Separated Dick",
  26188. image: {
  26189. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26190. }
  26191. },
  26192. sheath: {
  26193. height: math.unit(1.15, "meters"),
  26194. name: "Sheath",
  26195. image: {
  26196. source: "./media/characters/draekon-sylviar/sheath.svg"
  26197. }
  26198. },
  26199. },
  26200. [
  26201. {
  26202. name: "Small",
  26203. height: math.unit(4.53 / 2, "meters"),
  26204. default: true
  26205. },
  26206. {
  26207. name: "Normal",
  26208. height: math.unit(4.53, "meters"),
  26209. default: true
  26210. },
  26211. {
  26212. name: "Large",
  26213. height: math.unit(4.53 * 2, "meters"),
  26214. },
  26215. ]
  26216. ))
  26217. characterMakers.push(() => makeCharacter(
  26218. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26219. {
  26220. front: {
  26221. height: math.unit(6 + 2 / 12, "feet"),
  26222. weight: math.unit(180, "lb"),
  26223. name: "Front",
  26224. image: {
  26225. source: "./media/characters/brawler/front.svg",
  26226. extra: 3301 / 3027,
  26227. bottom: 138 / 3439
  26228. }
  26229. },
  26230. },
  26231. [
  26232. {
  26233. name: "Normal",
  26234. height: math.unit(6 + 2 / 12, "feet"),
  26235. default: true
  26236. },
  26237. ]
  26238. ))
  26239. characterMakers.push(() => makeCharacter(
  26240. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26241. {
  26242. front: {
  26243. height: math.unit(11, "feet"),
  26244. weight: math.unit(1000, "lb"),
  26245. name: "Front",
  26246. image: {
  26247. source: "./media/characters/alex/front.svg",
  26248. bottom: 44.5 / 620
  26249. }
  26250. },
  26251. },
  26252. [
  26253. {
  26254. name: "Micro",
  26255. height: math.unit(5, "inches")
  26256. },
  26257. {
  26258. name: "Normal",
  26259. height: math.unit(11, "feet"),
  26260. default: true
  26261. },
  26262. {
  26263. name: "Macro",
  26264. height: math.unit(9.5e9, "feet")
  26265. },
  26266. {
  26267. name: "Max Size",
  26268. height: math.unit(1.4e283, "yottameters")
  26269. },
  26270. ]
  26271. ))
  26272. characterMakers.push(() => makeCharacter(
  26273. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26274. {
  26275. female: {
  26276. height: math.unit(29.9, "m"),
  26277. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26278. name: "Female",
  26279. image: {
  26280. source: "./media/characters/zenari/female.svg",
  26281. extra: 3281.6 / 3217,
  26282. bottom: 72.2 / 3353
  26283. }
  26284. },
  26285. male: {
  26286. height: math.unit(27.7, "m"),
  26287. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26288. name: "Male",
  26289. image: {
  26290. source: "./media/characters/zenari/male.svg",
  26291. extra: 3008 / 2991,
  26292. bottom: 54.6 / 3069
  26293. }
  26294. },
  26295. },
  26296. [
  26297. {
  26298. name: "Macro",
  26299. height: math.unit(29.7, "meters"),
  26300. default: true
  26301. },
  26302. ]
  26303. ))
  26304. characterMakers.push(() => makeCharacter(
  26305. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26306. {
  26307. female: {
  26308. height: math.unit(23.8, "m"),
  26309. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26310. name: "Female",
  26311. image: {
  26312. source: "./media/characters/mactarian/female.svg",
  26313. extra: 2662 / 2569,
  26314. bottom: 73 / 2736
  26315. }
  26316. },
  26317. male: {
  26318. height: math.unit(23.8, "m"),
  26319. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26320. name: "Male",
  26321. image: {
  26322. source: "./media/characters/mactarian/male.svg",
  26323. extra: 2673 / 2600,
  26324. bottom: 76 / 2750
  26325. }
  26326. },
  26327. },
  26328. [
  26329. {
  26330. name: "Macro",
  26331. height: math.unit(23.8, "meters"),
  26332. default: true
  26333. },
  26334. ]
  26335. ))
  26336. characterMakers.push(() => makeCharacter(
  26337. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26338. {
  26339. female: {
  26340. height: math.unit(19.3, "m"),
  26341. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26342. name: "Female",
  26343. image: {
  26344. source: "./media/characters/umok/female.svg",
  26345. extra: 2186 / 2078,
  26346. bottom: 87 / 2277
  26347. }
  26348. },
  26349. male: {
  26350. height: math.unit(19.5, "m"),
  26351. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26352. name: "Male",
  26353. image: {
  26354. source: "./media/characters/umok/male.svg",
  26355. extra: 2233 / 2140,
  26356. bottom: 24.4 / 2258
  26357. }
  26358. },
  26359. },
  26360. [
  26361. {
  26362. name: "Macro",
  26363. height: math.unit(19.3, "meters"),
  26364. default: true
  26365. },
  26366. ]
  26367. ))
  26368. characterMakers.push(() => makeCharacter(
  26369. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26370. {
  26371. female: {
  26372. height: math.unit(26.15, "m"),
  26373. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26374. name: "Female",
  26375. image: {
  26376. source: "./media/characters/joraxian/female.svg",
  26377. extra: 2912 / 2824,
  26378. bottom: 36 / 2956
  26379. }
  26380. },
  26381. male: {
  26382. height: math.unit(25.4, "m"),
  26383. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26384. name: "Male",
  26385. image: {
  26386. source: "./media/characters/joraxian/male.svg",
  26387. extra: 2877 / 2721,
  26388. bottom: 82 / 2967
  26389. }
  26390. },
  26391. },
  26392. [
  26393. {
  26394. name: "Macro",
  26395. height: math.unit(26.15, "meters"),
  26396. default: true
  26397. },
  26398. ]
  26399. ))
  26400. characterMakers.push(() => makeCharacter(
  26401. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26402. {
  26403. female: {
  26404. height: math.unit(21.6, "m"),
  26405. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26406. name: "Female",
  26407. image: {
  26408. source: "./media/characters/sthara/female.svg",
  26409. extra: 2516 / 2347,
  26410. bottom: 21.5 / 2537
  26411. }
  26412. },
  26413. male: {
  26414. height: math.unit(24, "m"),
  26415. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26416. name: "Male",
  26417. image: {
  26418. source: "./media/characters/sthara/male.svg",
  26419. extra: 2732 / 2607,
  26420. bottom: 23 / 2732
  26421. }
  26422. },
  26423. },
  26424. [
  26425. {
  26426. name: "Macro",
  26427. height: math.unit(21.6, "meters"),
  26428. default: true
  26429. },
  26430. ]
  26431. ))
  26432. characterMakers.push(() => makeCharacter(
  26433. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26434. {
  26435. front: {
  26436. height: math.unit(6 + 4 / 12, "feet"),
  26437. weight: math.unit(175, "lb"),
  26438. name: "Front",
  26439. image: {
  26440. source: "./media/characters/luka-bryzant/front.svg",
  26441. extra: 311 / 289,
  26442. bottom: 4 / 315
  26443. }
  26444. },
  26445. back: {
  26446. height: math.unit(6 + 4 / 12, "feet"),
  26447. weight: math.unit(175, "lb"),
  26448. name: "Back",
  26449. image: {
  26450. source: "./media/characters/luka-bryzant/back.svg",
  26451. extra: 311 / 289,
  26452. bottom: 3.8 / 313.7
  26453. }
  26454. },
  26455. },
  26456. [
  26457. {
  26458. name: "Micro",
  26459. height: math.unit(10, "inches")
  26460. },
  26461. {
  26462. name: "Normal",
  26463. height: math.unit(6 + 4 / 12, "feet"),
  26464. default: true
  26465. },
  26466. {
  26467. name: "Large",
  26468. height: math.unit(12, "feet")
  26469. },
  26470. ]
  26471. ))
  26472. characterMakers.push(() => makeCharacter(
  26473. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26474. {
  26475. front: {
  26476. height: math.unit(5 + 7 / 12, "feet"),
  26477. weight: math.unit(185, "lb"),
  26478. name: "Front",
  26479. image: {
  26480. source: "./media/characters/aman-aquila/front.svg",
  26481. extra: 1013 / 976,
  26482. bottom: 45.6 / 1057
  26483. }
  26484. },
  26485. side: {
  26486. height: math.unit(5 + 7 / 12, "feet"),
  26487. weight: math.unit(185, "lb"),
  26488. name: "Side",
  26489. image: {
  26490. source: "./media/characters/aman-aquila/side.svg",
  26491. extra: 1054 / 1011,
  26492. bottom: 15 / 1070
  26493. }
  26494. },
  26495. back: {
  26496. height: math.unit(5 + 7 / 12, "feet"),
  26497. weight: math.unit(185, "lb"),
  26498. name: "Back",
  26499. image: {
  26500. source: "./media/characters/aman-aquila/back.svg",
  26501. extra: 1026 / 970,
  26502. bottom: 12 / 1039
  26503. }
  26504. },
  26505. head: {
  26506. height: math.unit(1.211, "feet"),
  26507. name: "Head",
  26508. image: {
  26509. source: "./media/characters/aman-aquila/head.svg",
  26510. }
  26511. },
  26512. },
  26513. [
  26514. {
  26515. name: "Minimicro",
  26516. height: math.unit(0.057, "inches")
  26517. },
  26518. {
  26519. name: "Micro",
  26520. height: math.unit(7, "inches")
  26521. },
  26522. {
  26523. name: "Mini",
  26524. height: math.unit(3 + 7 / 12, "feet")
  26525. },
  26526. {
  26527. name: "Normal",
  26528. height: math.unit(5 + 7 / 12, "feet"),
  26529. default: true
  26530. },
  26531. {
  26532. name: "Macro",
  26533. height: math.unit(157 + 7 / 12, "feet")
  26534. },
  26535. {
  26536. name: "Megamacro",
  26537. height: math.unit(1557 + 7 / 12, "feet")
  26538. },
  26539. {
  26540. name: "Gigamacro",
  26541. height: math.unit(15557 + 7 / 12, "feet")
  26542. },
  26543. ]
  26544. ))
  26545. characterMakers.push(() => makeCharacter(
  26546. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26547. {
  26548. front: {
  26549. height: math.unit(3 + 2 / 12, "inches"),
  26550. weight: math.unit(0.3, "ounces"),
  26551. name: "Front",
  26552. image: {
  26553. source: "./media/characters/hiphae/front.svg",
  26554. extra: 1931 / 1683,
  26555. bottom: 24 / 1955
  26556. }
  26557. },
  26558. },
  26559. [
  26560. {
  26561. name: "Normal",
  26562. height: math.unit(3 + 1 / 2, "inches"),
  26563. default: true
  26564. },
  26565. ]
  26566. ))
  26567. characterMakers.push(() => makeCharacter(
  26568. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26569. {
  26570. front: {
  26571. height: math.unit(5 + 10 / 12, "feet"),
  26572. weight: math.unit(165, "lb"),
  26573. name: "Front",
  26574. image: {
  26575. source: "./media/characters/nicky/front.svg",
  26576. extra: 3144 / 2886,
  26577. bottom: 45.6 / 3192
  26578. }
  26579. },
  26580. back: {
  26581. height: math.unit(5 + 10 / 12, "feet"),
  26582. weight: math.unit(165, "lb"),
  26583. name: "Back",
  26584. image: {
  26585. source: "./media/characters/nicky/back.svg",
  26586. extra: 3055 / 2804,
  26587. bottom: 28.4 / 3087
  26588. }
  26589. },
  26590. frontclothed: {
  26591. height: math.unit(5 + 10 / 12, "feet"),
  26592. weight: math.unit(165, "lb"),
  26593. name: "Front-clothed",
  26594. image: {
  26595. source: "./media/characters/nicky/front-clothed.svg",
  26596. extra: 3184.9 / 2926.9,
  26597. bottom: 86.5 / 3239.9
  26598. }
  26599. },
  26600. foot: {
  26601. height: math.unit(1.16, "feet"),
  26602. name: "Foot",
  26603. image: {
  26604. source: "./media/characters/nicky/foot.svg"
  26605. }
  26606. },
  26607. feet: {
  26608. height: math.unit(1.34, "feet"),
  26609. name: "Feet",
  26610. image: {
  26611. source: "./media/characters/nicky/feet.svg"
  26612. }
  26613. },
  26614. maw: {
  26615. height: math.unit(0.9, "feet"),
  26616. name: "Maw",
  26617. image: {
  26618. source: "./media/characters/nicky/maw.svg"
  26619. }
  26620. },
  26621. },
  26622. [
  26623. {
  26624. name: "Normal",
  26625. height: math.unit(5 + 10 / 12, "feet"),
  26626. default: true
  26627. },
  26628. {
  26629. name: "Macro",
  26630. height: math.unit(60, "feet")
  26631. },
  26632. {
  26633. name: "Megamacro",
  26634. height: math.unit(1, "mile")
  26635. },
  26636. ]
  26637. ))
  26638. characterMakers.push(() => makeCharacter(
  26639. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26640. {
  26641. side: {
  26642. height: math.unit(10, "feet"),
  26643. weight: math.unit(600, "lb"),
  26644. name: "Side",
  26645. image: {
  26646. source: "./media/characters/blair/side.svg",
  26647. bottom: 16.6 / 475,
  26648. extra: 458 / 431
  26649. }
  26650. },
  26651. },
  26652. [
  26653. {
  26654. name: "Micro",
  26655. height: math.unit(8, "inches")
  26656. },
  26657. {
  26658. name: "Normal",
  26659. height: math.unit(10, "feet"),
  26660. default: true
  26661. },
  26662. {
  26663. name: "Macro",
  26664. height: math.unit(180, "feet")
  26665. },
  26666. ]
  26667. ))
  26668. characterMakers.push(() => makeCharacter(
  26669. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26670. {
  26671. front: {
  26672. height: math.unit(5 + 4 / 12, "feet"),
  26673. weight: math.unit(125, "lb"),
  26674. name: "Front",
  26675. image: {
  26676. source: "./media/characters/fisher/front.svg",
  26677. extra: 444 / 390,
  26678. bottom: 2 / 444.8
  26679. }
  26680. },
  26681. },
  26682. [
  26683. {
  26684. name: "Micro",
  26685. height: math.unit(4, "inches")
  26686. },
  26687. {
  26688. name: "Normal",
  26689. height: math.unit(5 + 4 / 12, "feet"),
  26690. default: true
  26691. },
  26692. {
  26693. name: "Macro",
  26694. height: math.unit(100, "feet")
  26695. },
  26696. ]
  26697. ))
  26698. characterMakers.push(() => makeCharacter(
  26699. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26700. {
  26701. front: {
  26702. height: math.unit(6.71, "feet"),
  26703. weight: math.unit(200, "lb"),
  26704. preyCapacity: math.unit(1000000, "people"),
  26705. name: "Front",
  26706. image: {
  26707. source: "./media/characters/gliss/front.svg",
  26708. extra: 2347 / 2231,
  26709. bottom: 113 / 2462
  26710. }
  26711. },
  26712. hammerspaceSize: {
  26713. height: math.unit(6.71 * 717, "feet"),
  26714. weight: math.unit(200, "lb"),
  26715. preyCapacity: math.unit(1000000, "people"),
  26716. name: "Hammerspace Size",
  26717. image: {
  26718. source: "./media/characters/gliss/front.svg",
  26719. extra: 2347 / 2231,
  26720. bottom: 113 / 2462
  26721. }
  26722. },
  26723. },
  26724. [
  26725. {
  26726. name: "Normal",
  26727. height: math.unit(6.71, "feet"),
  26728. default: true
  26729. },
  26730. ]
  26731. ))
  26732. characterMakers.push(() => makeCharacter(
  26733. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26734. {
  26735. side: {
  26736. height: math.unit(1.44, "m"),
  26737. weight: math.unit(80, "kg"),
  26738. name: "Side",
  26739. image: {
  26740. source: "./media/characters/dune-anderson/side.svg",
  26741. bottom: 49 / 1426
  26742. }
  26743. },
  26744. },
  26745. [
  26746. {
  26747. name: "Wolf-sized",
  26748. height: math.unit(1.44, "meters")
  26749. },
  26750. {
  26751. name: "Normal",
  26752. height: math.unit(5.05, "meters"),
  26753. default: true
  26754. },
  26755. {
  26756. name: "Big",
  26757. height: math.unit(14.4, "meters")
  26758. },
  26759. {
  26760. name: "Huge",
  26761. height: math.unit(144, "meters")
  26762. },
  26763. ]
  26764. ))
  26765. characterMakers.push(() => makeCharacter(
  26766. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26767. {
  26768. front: {
  26769. height: math.unit(7, "feet"),
  26770. weight: math.unit(425, "lb"),
  26771. name: "Front",
  26772. image: {
  26773. source: "./media/characters/hind/front.svg",
  26774. extra: 2091 / 1860,
  26775. bottom: 129 / 2220
  26776. }
  26777. },
  26778. back: {
  26779. height: math.unit(7, "feet"),
  26780. weight: math.unit(425, "lb"),
  26781. name: "Back",
  26782. image: {
  26783. source: "./media/characters/hind/back.svg",
  26784. extra: 2091 / 1860,
  26785. bottom: 24.6 / 2309
  26786. }
  26787. },
  26788. tail: {
  26789. height: math.unit(2.8, "feet"),
  26790. name: "Tail",
  26791. image: {
  26792. source: "./media/characters/hind/tail.svg"
  26793. }
  26794. },
  26795. head: {
  26796. height: math.unit(2.55, "feet"),
  26797. name: "Head",
  26798. image: {
  26799. source: "./media/characters/hind/head.svg"
  26800. }
  26801. },
  26802. },
  26803. [
  26804. {
  26805. name: "XS",
  26806. height: math.unit(0.7, "feet")
  26807. },
  26808. {
  26809. name: "Normal",
  26810. height: math.unit(7, "feet"),
  26811. default: true
  26812. },
  26813. {
  26814. name: "XL",
  26815. height: math.unit(70, "feet")
  26816. },
  26817. ]
  26818. ))
  26819. characterMakers.push(() => makeCharacter(
  26820. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26821. {
  26822. front: {
  26823. height: math.unit(2.1, "meters"),
  26824. weight: math.unit(150, "lb"),
  26825. name: "Front",
  26826. image: {
  26827. source: "./media/characters/tharquench-sizestealer/front.svg",
  26828. extra: 1605/1470,
  26829. bottom: 36/1641
  26830. }
  26831. },
  26832. frontAlt: {
  26833. height: math.unit(2.1, "meters"),
  26834. weight: math.unit(150, "lb"),
  26835. name: "Front (Alt)",
  26836. image: {
  26837. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26838. extra: 2318 / 2063,
  26839. bottom: 93.4 / 2410
  26840. }
  26841. },
  26842. },
  26843. [
  26844. {
  26845. name: "Nano",
  26846. height: math.unit(1, "mm")
  26847. },
  26848. {
  26849. name: "Micro",
  26850. height: math.unit(1, "cm")
  26851. },
  26852. {
  26853. name: "Normal",
  26854. height: math.unit(2.1, "meters"),
  26855. default: true
  26856. },
  26857. ]
  26858. ))
  26859. characterMakers.push(() => makeCharacter(
  26860. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26861. {
  26862. front: {
  26863. height: math.unit(7 + 5 / 12, "feet"),
  26864. weight: math.unit(357, "lb"),
  26865. name: "Front",
  26866. image: {
  26867. source: "./media/characters/solex-draconov/front.svg",
  26868. extra: 1993 / 1865,
  26869. bottom: 117 / 2111
  26870. }
  26871. },
  26872. },
  26873. [
  26874. {
  26875. name: "Natural Height",
  26876. height: math.unit(7 + 5 / 12, "feet"),
  26877. default: true
  26878. },
  26879. {
  26880. name: "Macro",
  26881. height: math.unit(350, "feet")
  26882. },
  26883. {
  26884. name: "Macro+",
  26885. height: math.unit(1000, "feet")
  26886. },
  26887. {
  26888. name: "Megamacro",
  26889. height: math.unit(20, "km")
  26890. },
  26891. {
  26892. name: "Megamacro+",
  26893. height: math.unit(1000, "km")
  26894. },
  26895. {
  26896. name: "Gigamacro",
  26897. height: math.unit(2.5, "Gm")
  26898. },
  26899. {
  26900. name: "Teramacro",
  26901. height: math.unit(15, "Tm")
  26902. },
  26903. {
  26904. name: "Galactic",
  26905. height: math.unit(30, "Zm")
  26906. },
  26907. {
  26908. name: "Universal",
  26909. height: math.unit(21000, "Ym")
  26910. },
  26911. {
  26912. name: "Omniversal",
  26913. height: math.unit(9.861e50, "Ym")
  26914. },
  26915. {
  26916. name: "Existential",
  26917. height: math.unit(1e300, "meters")
  26918. },
  26919. ]
  26920. ))
  26921. characterMakers.push(() => makeCharacter(
  26922. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26923. {
  26924. side: {
  26925. height: math.unit(25, "feet"),
  26926. weight: math.unit(90000, "lb"),
  26927. name: "Side",
  26928. image: {
  26929. source: "./media/characters/mandarax/side.svg",
  26930. extra: 614 / 332,
  26931. bottom: 55 / 630
  26932. }
  26933. },
  26934. lounging: {
  26935. height: math.unit(15.4, "feet"),
  26936. weight: math.unit(90000, "lb"),
  26937. name: "Lounging",
  26938. image: {
  26939. source: "./media/characters/mandarax/lounging.svg",
  26940. extra: 817/609,
  26941. bottom: 685/1502
  26942. }
  26943. },
  26944. head: {
  26945. height: math.unit(11.4, "feet"),
  26946. name: "Head",
  26947. image: {
  26948. source: "./media/characters/mandarax/head.svg"
  26949. }
  26950. },
  26951. belly: {
  26952. height: math.unit(33, "feet"),
  26953. name: "Belly",
  26954. preyCapacity: math.unit(500, "people"),
  26955. image: {
  26956. source: "./media/characters/mandarax/belly.svg"
  26957. }
  26958. },
  26959. dick: {
  26960. height: math.unit(8.46, "feet"),
  26961. name: "Dick",
  26962. image: {
  26963. source: "./media/characters/mandarax/dick.svg"
  26964. }
  26965. },
  26966. top: {
  26967. height: math.unit(28, "meters"),
  26968. name: "Top",
  26969. image: {
  26970. source: "./media/characters/mandarax/top.svg"
  26971. }
  26972. },
  26973. },
  26974. [
  26975. {
  26976. name: "Normal",
  26977. height: math.unit(25, "feet"),
  26978. default: true
  26979. },
  26980. ]
  26981. ))
  26982. characterMakers.push(() => makeCharacter(
  26983. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26984. {
  26985. front: {
  26986. height: math.unit(5, "feet"),
  26987. weight: math.unit(90, "lb"),
  26988. name: "Front",
  26989. image: {
  26990. source: "./media/characters/pixil/front.svg",
  26991. extra: 2000 / 1618,
  26992. bottom: 12.3 / 2011
  26993. }
  26994. },
  26995. },
  26996. [
  26997. {
  26998. name: "Normal",
  26999. height: math.unit(5, "feet"),
  27000. default: true
  27001. },
  27002. {
  27003. name: "Megamacro",
  27004. height: math.unit(10, "miles"),
  27005. },
  27006. ]
  27007. ))
  27008. characterMakers.push(() => makeCharacter(
  27009. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27010. {
  27011. front: {
  27012. height: math.unit(7 + 2 / 12, "feet"),
  27013. weight: math.unit(200, "lb"),
  27014. name: "Front",
  27015. image: {
  27016. source: "./media/characters/angel/front.svg",
  27017. extra: 1830 / 1737,
  27018. bottom: 22.6 / 1854,
  27019. }
  27020. },
  27021. },
  27022. [
  27023. {
  27024. name: "Normal",
  27025. height: math.unit(7 + 2 / 12, "feet"),
  27026. default: true
  27027. },
  27028. {
  27029. name: "Macro",
  27030. height: math.unit(1000, "feet")
  27031. },
  27032. {
  27033. name: "Megamacro",
  27034. height: math.unit(2, "miles")
  27035. },
  27036. {
  27037. name: "Gigamacro",
  27038. height: math.unit(20, "earths")
  27039. },
  27040. ]
  27041. ))
  27042. characterMakers.push(() => makeCharacter(
  27043. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27044. {
  27045. front: {
  27046. height: math.unit(5, "feet"),
  27047. weight: math.unit(180, "lb"),
  27048. name: "Front",
  27049. image: {
  27050. source: "./media/characters/mekana/front.svg",
  27051. extra: 1671 / 1605,
  27052. bottom: 3.5 / 1691
  27053. }
  27054. },
  27055. side: {
  27056. height: math.unit(5, "feet"),
  27057. weight: math.unit(180, "lb"),
  27058. name: "Side",
  27059. image: {
  27060. source: "./media/characters/mekana/side.svg",
  27061. extra: 1671 / 1605,
  27062. bottom: 3.5 / 1691
  27063. }
  27064. },
  27065. back: {
  27066. height: math.unit(5, "feet"),
  27067. weight: math.unit(180, "lb"),
  27068. name: "Back",
  27069. image: {
  27070. source: "./media/characters/mekana/back.svg",
  27071. extra: 1671 / 1605,
  27072. bottom: 3.5 / 1691
  27073. }
  27074. },
  27075. },
  27076. [
  27077. {
  27078. name: "Normal",
  27079. height: math.unit(5, "feet"),
  27080. default: true
  27081. },
  27082. ]
  27083. ))
  27084. characterMakers.push(() => makeCharacter(
  27085. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27086. {
  27087. front: {
  27088. height: math.unit(4 + 6 / 12, "feet"),
  27089. weight: math.unit(80, "lb"),
  27090. name: "Front",
  27091. image: {
  27092. source: "./media/characters/pixie/front.svg",
  27093. extra: 1924 / 1825,
  27094. bottom: 22.4 / 1946
  27095. }
  27096. },
  27097. },
  27098. [
  27099. {
  27100. name: "Normal",
  27101. height: math.unit(4 + 6 / 12, "feet"),
  27102. default: true
  27103. },
  27104. {
  27105. name: "Macro",
  27106. height: math.unit(40, "feet")
  27107. },
  27108. ]
  27109. ))
  27110. characterMakers.push(() => makeCharacter(
  27111. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27112. {
  27113. front: {
  27114. height: math.unit(2.1, "meters"),
  27115. weight: math.unit(200, "lb"),
  27116. name: "Front",
  27117. image: {
  27118. source: "./media/characters/the-lascivious/front.svg",
  27119. extra: 1 / 0.893,
  27120. bottom: 3.5 / 573.7
  27121. }
  27122. },
  27123. },
  27124. [
  27125. {
  27126. name: "Human Scale",
  27127. height: math.unit(2.1, "meters")
  27128. },
  27129. {
  27130. name: "Wolxi Scale",
  27131. height: math.unit(46.2, "m"),
  27132. default: true
  27133. },
  27134. {
  27135. name: "Boinker of Buildings",
  27136. height: math.unit(10, "km")
  27137. },
  27138. {
  27139. name: "Shagger of Skyscrapers",
  27140. height: math.unit(40, "km")
  27141. },
  27142. {
  27143. name: "Banger of Boroughs",
  27144. height: math.unit(4000, "km")
  27145. },
  27146. {
  27147. name: "Screwer of States",
  27148. height: math.unit(100000, "km")
  27149. },
  27150. {
  27151. name: "Pounder of Planets",
  27152. height: math.unit(2000000, "km")
  27153. },
  27154. ]
  27155. ))
  27156. characterMakers.push(() => makeCharacter(
  27157. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27158. {
  27159. front: {
  27160. height: math.unit(6, "feet"),
  27161. weight: math.unit(150, "lb"),
  27162. name: "Front",
  27163. image: {
  27164. source: "./media/characters/aj/front.svg",
  27165. extra: 2039 / 1562,
  27166. bottom: 40 / 2079
  27167. }
  27168. },
  27169. },
  27170. [
  27171. {
  27172. name: "Normal",
  27173. height: math.unit(11 + 6 / 12, "feet"),
  27174. default: true
  27175. },
  27176. {
  27177. name: "Megamacro",
  27178. height: math.unit(60, "megameters")
  27179. },
  27180. ]
  27181. ))
  27182. characterMakers.push(() => makeCharacter(
  27183. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27184. {
  27185. side: {
  27186. height: math.unit(31 + 8 / 12, "feet"),
  27187. weight: math.unit(75000, "kg"),
  27188. name: "Side",
  27189. image: {
  27190. source: "./media/characters/koros/side.svg",
  27191. extra: 1442 / 1297,
  27192. bottom: 122.7 / 1562
  27193. }
  27194. },
  27195. dicksKingsCrown: {
  27196. height: math.unit(6, "feet"),
  27197. name: "Dicks (King's Crown)",
  27198. image: {
  27199. source: "./media/characters/koros/dicks-kings-crown.svg"
  27200. }
  27201. },
  27202. dicksTailSet: {
  27203. height: math.unit(3, "feet"),
  27204. name: "Dicks (Tail Set)",
  27205. image: {
  27206. source: "./media/characters/koros/dicks-tail-set.svg"
  27207. }
  27208. },
  27209. dickCumming: {
  27210. height: math.unit(7.98, "feet"),
  27211. name: "Dick (Cumming)",
  27212. image: {
  27213. source: "./media/characters/koros/dick-cumming.svg"
  27214. }
  27215. },
  27216. dicksBack: {
  27217. height: math.unit(5.9, "feet"),
  27218. name: "Dicks (Back)",
  27219. image: {
  27220. source: "./media/characters/koros/dicks-back.svg"
  27221. }
  27222. },
  27223. dicksFront: {
  27224. height: math.unit(3.72, "feet"),
  27225. name: "Dicks (Front)",
  27226. image: {
  27227. source: "./media/characters/koros/dicks-front.svg"
  27228. }
  27229. },
  27230. dicksPeeking: {
  27231. height: math.unit(3.0, "feet"),
  27232. name: "Dicks (Peeking)",
  27233. image: {
  27234. source: "./media/characters/koros/dicks-peeking.svg"
  27235. }
  27236. },
  27237. eye: {
  27238. height: math.unit(1.7, "feet"),
  27239. name: "Eye",
  27240. image: {
  27241. source: "./media/characters/koros/eye.svg"
  27242. }
  27243. },
  27244. headFront: {
  27245. height: math.unit(11.69, "feet"),
  27246. name: "Head (Front)",
  27247. image: {
  27248. source: "./media/characters/koros/head-front.svg"
  27249. }
  27250. },
  27251. headSide: {
  27252. height: math.unit(14, "feet"),
  27253. name: "Head (Side)",
  27254. image: {
  27255. source: "./media/characters/koros/head-side.svg"
  27256. }
  27257. },
  27258. leg: {
  27259. height: math.unit(17, "feet"),
  27260. name: "Leg",
  27261. image: {
  27262. source: "./media/characters/koros/leg.svg"
  27263. }
  27264. },
  27265. mawSide: {
  27266. height: math.unit(12.8, "feet"),
  27267. name: "Maw (Side)",
  27268. image: {
  27269. source: "./media/characters/koros/maw-side.svg"
  27270. }
  27271. },
  27272. mawSpitting: {
  27273. height: math.unit(17, "feet"),
  27274. name: "Maw (Spitting)",
  27275. image: {
  27276. source: "./media/characters/koros/maw-spitting.svg"
  27277. }
  27278. },
  27279. slit: {
  27280. height: math.unit(2.8, "feet"),
  27281. name: "Slit",
  27282. image: {
  27283. source: "./media/characters/koros/slit.svg"
  27284. }
  27285. },
  27286. stomach: {
  27287. height: math.unit(6.8, "feet"),
  27288. preyCapacity: math.unit(20, "people"),
  27289. name: "Stomach",
  27290. image: {
  27291. source: "./media/characters/koros/stomach.svg"
  27292. }
  27293. },
  27294. wingspanBottom: {
  27295. height: math.unit(114, "feet"),
  27296. name: "Wingspan (Bottom)",
  27297. image: {
  27298. source: "./media/characters/koros/wingspan-bottom.svg"
  27299. }
  27300. },
  27301. wingspanTop: {
  27302. height: math.unit(104, "feet"),
  27303. name: "Wingspan (Top)",
  27304. image: {
  27305. source: "./media/characters/koros/wingspan-top.svg"
  27306. }
  27307. },
  27308. },
  27309. [
  27310. {
  27311. name: "Normal",
  27312. height: math.unit(31 + 8 / 12, "feet"),
  27313. default: true
  27314. },
  27315. ]
  27316. ))
  27317. characterMakers.push(() => makeCharacter(
  27318. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27319. {
  27320. front: {
  27321. height: math.unit(18 + 5 / 12, "feet"),
  27322. weight: math.unit(3750, "kg"),
  27323. name: "Front",
  27324. image: {
  27325. source: "./media/characters/vexx/front.svg",
  27326. extra: 426 / 396,
  27327. bottom: 31.5 / 458
  27328. }
  27329. },
  27330. maw: {
  27331. height: math.unit(6, "feet"),
  27332. name: "Maw",
  27333. image: {
  27334. source: "./media/characters/vexx/maw.svg"
  27335. }
  27336. },
  27337. },
  27338. [
  27339. {
  27340. name: "Normal",
  27341. height: math.unit(18 + 5 / 12, "feet"),
  27342. default: true
  27343. },
  27344. ]
  27345. ))
  27346. characterMakers.push(() => makeCharacter(
  27347. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27348. {
  27349. front: {
  27350. height: math.unit(17 + 6 / 12, "feet"),
  27351. weight: math.unit(150, "lb"),
  27352. name: "Front",
  27353. image: {
  27354. source: "./media/characters/baadra/front.svg",
  27355. extra: 1694/1553,
  27356. bottom: 179/1873
  27357. }
  27358. },
  27359. frontAlt: {
  27360. height: math.unit(17 + 6 / 12, "feet"),
  27361. weight: math.unit(150, "lb"),
  27362. name: "Front (Alt)",
  27363. image: {
  27364. source: "./media/characters/baadra/front-alt.svg",
  27365. extra: 3137 / 2890,
  27366. bottom: 168.4 / 3305
  27367. }
  27368. },
  27369. back: {
  27370. height: math.unit(17 + 6 / 12, "feet"),
  27371. weight: math.unit(150, "lb"),
  27372. name: "Back",
  27373. image: {
  27374. source: "./media/characters/baadra/back.svg",
  27375. extra: 3142 / 2890,
  27376. bottom: 220 / 3371
  27377. }
  27378. },
  27379. head: {
  27380. height: math.unit(5.45, "feet"),
  27381. name: "Head",
  27382. image: {
  27383. source: "./media/characters/baadra/head.svg"
  27384. }
  27385. },
  27386. headAngry: {
  27387. height: math.unit(4.95, "feet"),
  27388. name: "Head (Angry)",
  27389. image: {
  27390. source: "./media/characters/baadra/head-angry.svg"
  27391. }
  27392. },
  27393. headOpen: {
  27394. height: math.unit(6, "feet"),
  27395. name: "Head (Open)",
  27396. image: {
  27397. source: "./media/characters/baadra/head-open.svg"
  27398. }
  27399. },
  27400. },
  27401. [
  27402. {
  27403. name: "Normal",
  27404. height: math.unit(17 + 6 / 12, "feet"),
  27405. default: true
  27406. },
  27407. ]
  27408. ))
  27409. characterMakers.push(() => makeCharacter(
  27410. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27411. {
  27412. front: {
  27413. height: math.unit(7 + 3 / 12, "feet"),
  27414. weight: math.unit(180, "lb"),
  27415. name: "Front",
  27416. image: {
  27417. source: "./media/characters/juri/front.svg",
  27418. extra: 1401 / 1237,
  27419. bottom: 18.5 / 1418
  27420. }
  27421. },
  27422. side: {
  27423. height: math.unit(7 + 3 / 12, "feet"),
  27424. weight: math.unit(180, "lb"),
  27425. name: "Side",
  27426. image: {
  27427. source: "./media/characters/juri/side.svg",
  27428. extra: 1424 / 1242,
  27429. bottom: 18.5 / 1447
  27430. }
  27431. },
  27432. sitting: {
  27433. height: math.unit(6, "feet"),
  27434. weight: math.unit(180, "lb"),
  27435. name: "Sitting",
  27436. image: {
  27437. source: "./media/characters/juri/sitting.svg",
  27438. extra: 1270 / 1143,
  27439. bottom: 100 / 1343
  27440. }
  27441. },
  27442. back: {
  27443. height: math.unit(7 + 3 / 12, "feet"),
  27444. weight: math.unit(180, "lb"),
  27445. name: "Back",
  27446. image: {
  27447. source: "./media/characters/juri/back.svg",
  27448. extra: 1377 / 1240,
  27449. bottom: 23.7 / 1405
  27450. }
  27451. },
  27452. maw: {
  27453. height: math.unit(2.8, "feet"),
  27454. name: "Maw",
  27455. image: {
  27456. source: "./media/characters/juri/maw.svg"
  27457. }
  27458. },
  27459. stomach: {
  27460. height: math.unit(0.89, "feet"),
  27461. preyCapacity: math.unit(4, "liters"),
  27462. name: "Stomach",
  27463. image: {
  27464. source: "./media/characters/juri/stomach.svg"
  27465. }
  27466. },
  27467. },
  27468. [
  27469. {
  27470. name: "Normal",
  27471. height: math.unit(7 + 3 / 12, "feet"),
  27472. default: true
  27473. },
  27474. ]
  27475. ))
  27476. characterMakers.push(() => makeCharacter(
  27477. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27478. {
  27479. fox: {
  27480. height: math.unit(5 + 6 / 12, "feet"),
  27481. weight: math.unit(140, "lb"),
  27482. name: "Fox",
  27483. image: {
  27484. source: "./media/characters/maxene-sita/fox.svg",
  27485. extra: 146 / 138,
  27486. bottom: 2.1 / 148.19
  27487. }
  27488. },
  27489. foxLaying: {
  27490. height: math.unit(1.70, "feet"),
  27491. weight: math.unit(140, "lb"),
  27492. name: "Fox (Laying)",
  27493. image: {
  27494. source: "./media/characters/maxene-sita/fox-laying.svg",
  27495. extra: 910 / 572,
  27496. bottom: 71 / 981
  27497. }
  27498. },
  27499. kitsune: {
  27500. height: math.unit(10, "feet"),
  27501. weight: math.unit(800, "lb"),
  27502. name: "Kitsune",
  27503. image: {
  27504. source: "./media/characters/maxene-sita/kitsune.svg",
  27505. extra: 185 / 176,
  27506. bottom: 4.7 / 189.9
  27507. }
  27508. },
  27509. hellhound: {
  27510. height: math.unit(10, "feet"),
  27511. weight: math.unit(700, "lb"),
  27512. name: "Hellhound",
  27513. image: {
  27514. source: "./media/characters/maxene-sita/hellhound.svg",
  27515. extra: 1600 / 1545,
  27516. bottom: 81 / 1681
  27517. }
  27518. },
  27519. },
  27520. [
  27521. {
  27522. name: "Normal",
  27523. height: math.unit(5 + 6 / 12, "feet"),
  27524. default: true
  27525. },
  27526. ]
  27527. ))
  27528. characterMakers.push(() => makeCharacter(
  27529. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27530. {
  27531. front: {
  27532. height: math.unit(3 + 4 / 12, "feet"),
  27533. weight: math.unit(70, "lb"),
  27534. name: "Front",
  27535. image: {
  27536. source: "./media/characters/maia/front.svg",
  27537. extra: 227 / 219.5,
  27538. bottom: 40 / 267
  27539. }
  27540. },
  27541. back: {
  27542. height: math.unit(3 + 4 / 12, "feet"),
  27543. weight: math.unit(70, "lb"),
  27544. name: "Back",
  27545. image: {
  27546. source: "./media/characters/maia/back.svg",
  27547. extra: 237 / 225
  27548. }
  27549. },
  27550. },
  27551. [
  27552. {
  27553. name: "Normal",
  27554. height: math.unit(3 + 4 / 12, "feet"),
  27555. default: true
  27556. },
  27557. ]
  27558. ))
  27559. characterMakers.push(() => makeCharacter(
  27560. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27561. {
  27562. front: {
  27563. height: math.unit(5 + 10 / 12, "feet"),
  27564. weight: math.unit(197, "lb"),
  27565. name: "Front",
  27566. image: {
  27567. source: "./media/characters/jabaro/front.svg",
  27568. extra: 225 / 216,
  27569. bottom: 5.06 / 230
  27570. }
  27571. },
  27572. back: {
  27573. height: math.unit(5 + 10 / 12, "feet"),
  27574. weight: math.unit(197, "lb"),
  27575. name: "Back",
  27576. image: {
  27577. source: "./media/characters/jabaro/back.svg",
  27578. extra: 225 / 219,
  27579. bottom: 1.9 / 227
  27580. }
  27581. },
  27582. },
  27583. [
  27584. {
  27585. name: "Normal",
  27586. height: math.unit(5 + 10 / 12, "feet"),
  27587. default: true
  27588. },
  27589. ]
  27590. ))
  27591. characterMakers.push(() => makeCharacter(
  27592. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27593. {
  27594. front: {
  27595. height: math.unit(5 + 8 / 12, "feet"),
  27596. weight: math.unit(139, "lb"),
  27597. name: "Front",
  27598. image: {
  27599. source: "./media/characters/risa/front.svg",
  27600. extra: 270 / 260,
  27601. bottom: 11.2 / 282
  27602. }
  27603. },
  27604. back: {
  27605. height: math.unit(5 + 8 / 12, "feet"),
  27606. weight: math.unit(139, "lb"),
  27607. name: "Back",
  27608. image: {
  27609. source: "./media/characters/risa/back.svg",
  27610. extra: 264 / 255,
  27611. bottom: 4 / 268
  27612. }
  27613. },
  27614. },
  27615. [
  27616. {
  27617. name: "Normal",
  27618. height: math.unit(5 + 8 / 12, "feet"),
  27619. default: true
  27620. },
  27621. ]
  27622. ))
  27623. characterMakers.push(() => makeCharacter(
  27624. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27625. {
  27626. front: {
  27627. height: math.unit(2 + 11 / 12, "feet"),
  27628. weight: math.unit(30, "lb"),
  27629. name: "Front",
  27630. image: {
  27631. source: "./media/characters/weatley/front.svg",
  27632. bottom: 10.7 / 414,
  27633. extra: 403.5 / 362
  27634. }
  27635. },
  27636. back: {
  27637. height: math.unit(2 + 11 / 12, "feet"),
  27638. weight: math.unit(30, "lb"),
  27639. name: "Back",
  27640. image: {
  27641. source: "./media/characters/weatley/back.svg",
  27642. bottom: 10.7 / 414,
  27643. extra: 403.5 / 362
  27644. }
  27645. },
  27646. },
  27647. [
  27648. {
  27649. name: "Normal",
  27650. height: math.unit(2 + 11 / 12, "feet"),
  27651. default: true
  27652. },
  27653. ]
  27654. ))
  27655. characterMakers.push(() => makeCharacter(
  27656. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27657. {
  27658. front: {
  27659. height: math.unit(5 + 2 / 12, "feet"),
  27660. weight: math.unit(50, "kg"),
  27661. name: "Front",
  27662. image: {
  27663. source: "./media/characters/mercury-crescent/front.svg",
  27664. extra: 1088 / 1033,
  27665. bottom: 18.9 / 1109
  27666. }
  27667. },
  27668. },
  27669. [
  27670. {
  27671. name: "Normal",
  27672. height: math.unit(5 + 2 / 12, "feet"),
  27673. default: true
  27674. },
  27675. ]
  27676. ))
  27677. characterMakers.push(() => makeCharacter(
  27678. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27679. {
  27680. front: {
  27681. height: math.unit(2, "feet"),
  27682. weight: math.unit(15, "kg"),
  27683. name: "Front",
  27684. image: {
  27685. source: "./media/characters/diamond-jones/front.svg",
  27686. extra: 727/723,
  27687. bottom: 46/773
  27688. }
  27689. },
  27690. },
  27691. [
  27692. {
  27693. name: "Normal",
  27694. height: math.unit(2, "feet"),
  27695. default: true
  27696. },
  27697. ]
  27698. ))
  27699. characterMakers.push(() => makeCharacter(
  27700. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27701. {
  27702. front: {
  27703. height: math.unit(3, "feet"),
  27704. weight: math.unit(30, "kg"),
  27705. name: "Front",
  27706. image: {
  27707. source: "./media/characters/sweet-bit/front.svg",
  27708. extra: 675 / 567,
  27709. bottom: 27.7 / 703
  27710. }
  27711. },
  27712. },
  27713. [
  27714. {
  27715. name: "Normal",
  27716. height: math.unit(3, "feet"),
  27717. default: true
  27718. },
  27719. ]
  27720. ))
  27721. characterMakers.push(() => makeCharacter(
  27722. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27723. {
  27724. side: {
  27725. height: math.unit(9.178, "feet"),
  27726. weight: math.unit(500, "lb"),
  27727. name: "Side",
  27728. image: {
  27729. source: "./media/characters/umbrazen/side.svg",
  27730. extra: 1730 / 1473,
  27731. bottom: 34.6 / 1765
  27732. }
  27733. },
  27734. },
  27735. [
  27736. {
  27737. name: "Normal",
  27738. height: math.unit(9.178, "feet"),
  27739. default: true
  27740. },
  27741. ]
  27742. ))
  27743. characterMakers.push(() => makeCharacter(
  27744. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27745. {
  27746. front: {
  27747. height: math.unit(10, "feet"),
  27748. weight: math.unit(750, "lb"),
  27749. name: "Front",
  27750. image: {
  27751. source: "./media/characters/arlist/front.svg",
  27752. extra: 961 / 778,
  27753. bottom: 6.2 / 986
  27754. }
  27755. },
  27756. },
  27757. [
  27758. {
  27759. name: "Normal",
  27760. height: math.unit(10, "feet"),
  27761. default: true
  27762. },
  27763. ]
  27764. ))
  27765. characterMakers.push(() => makeCharacter(
  27766. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27767. {
  27768. front: {
  27769. height: math.unit(5 + 1 / 12, "feet"),
  27770. weight: math.unit(110, "lb"),
  27771. name: "Front",
  27772. image: {
  27773. source: "./media/characters/aradel/front.svg",
  27774. extra: 324 / 303,
  27775. bottom: 3.6 / 329.4
  27776. }
  27777. },
  27778. },
  27779. [
  27780. {
  27781. name: "Normal",
  27782. height: math.unit(5 + 1 / 12, "feet"),
  27783. default: true
  27784. },
  27785. ]
  27786. ))
  27787. characterMakers.push(() => makeCharacter(
  27788. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27789. {
  27790. dressed: {
  27791. height: math.unit(3 + 8 / 12, "feet"),
  27792. weight: math.unit(50, "lb"),
  27793. name: "Dressed",
  27794. image: {
  27795. source: "./media/characters/serryn/dressed.svg",
  27796. extra: 1792 / 1656,
  27797. bottom: 43.5 / 1840
  27798. }
  27799. },
  27800. nude: {
  27801. height: math.unit(3 + 8 / 12, "feet"),
  27802. weight: math.unit(50, "lb"),
  27803. name: "Nude",
  27804. image: {
  27805. source: "./media/characters/serryn/nude.svg",
  27806. extra: 1792 / 1656,
  27807. bottom: 43.5 / 1840
  27808. }
  27809. },
  27810. },
  27811. [
  27812. {
  27813. name: "Normal",
  27814. height: math.unit(3 + 8 / 12, "feet"),
  27815. default: true
  27816. },
  27817. ]
  27818. ))
  27819. characterMakers.push(() => makeCharacter(
  27820. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27821. {
  27822. front: {
  27823. height: math.unit(7 + 10 / 12, "feet"),
  27824. weight: math.unit(255, "lb"),
  27825. name: "Front",
  27826. image: {
  27827. source: "./media/characters/xavier-thyme/front.svg",
  27828. extra: 3733 / 3642,
  27829. bottom: 131 / 3869
  27830. }
  27831. },
  27832. frontRaven: {
  27833. height: math.unit(7 + 10 / 12, "feet"),
  27834. weight: math.unit(255, "lb"),
  27835. name: "Front (Raven)",
  27836. image: {
  27837. source: "./media/characters/xavier-thyme/front-raven.svg",
  27838. extra: 4385 / 3642,
  27839. bottom: 131 / 4517
  27840. }
  27841. },
  27842. },
  27843. [
  27844. {
  27845. name: "Normal",
  27846. height: math.unit(7 + 10 / 12, "feet"),
  27847. default: true
  27848. },
  27849. ]
  27850. ))
  27851. characterMakers.push(() => makeCharacter(
  27852. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27853. {
  27854. front: {
  27855. height: math.unit(1.6, "m"),
  27856. weight: math.unit(50, "kg"),
  27857. name: "Front",
  27858. image: {
  27859. source: "./media/characters/kiki/front.svg",
  27860. extra: 4682 / 3610,
  27861. bottom: 115 / 4777
  27862. }
  27863. },
  27864. },
  27865. [
  27866. {
  27867. name: "Normal",
  27868. height: math.unit(1.6, "meters"),
  27869. default: true
  27870. },
  27871. ]
  27872. ))
  27873. characterMakers.push(() => makeCharacter(
  27874. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27875. {
  27876. front: {
  27877. height: math.unit(50, "m"),
  27878. weight: math.unit(500, "tonnes"),
  27879. name: "Front",
  27880. image: {
  27881. source: "./media/characters/ryoko/front.svg",
  27882. extra: 4632 / 3926,
  27883. bottom: 193 / 4823
  27884. }
  27885. },
  27886. },
  27887. [
  27888. {
  27889. name: "Normal",
  27890. height: math.unit(50, "meters"),
  27891. default: true
  27892. },
  27893. ]
  27894. ))
  27895. characterMakers.push(() => makeCharacter(
  27896. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27897. {
  27898. front: {
  27899. height: math.unit(30, "m"),
  27900. weight: math.unit(22, "tonnes"),
  27901. name: "Front",
  27902. image: {
  27903. source: "./media/characters/elio/front.svg",
  27904. extra: 4582 / 3720,
  27905. bottom: 236 / 4828
  27906. }
  27907. },
  27908. },
  27909. [
  27910. {
  27911. name: "Normal",
  27912. height: math.unit(30, "meters"),
  27913. default: true
  27914. },
  27915. ]
  27916. ))
  27917. characterMakers.push(() => makeCharacter(
  27918. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27919. {
  27920. front: {
  27921. height: math.unit(6 + 3 / 12, "feet"),
  27922. weight: math.unit(120, "lb"),
  27923. name: "Front",
  27924. image: {
  27925. source: "./media/characters/azura/front.svg",
  27926. extra: 1149 / 1135,
  27927. bottom: 45 / 1194
  27928. }
  27929. },
  27930. frontClothed: {
  27931. height: math.unit(6 + 3 / 12, "feet"),
  27932. weight: math.unit(120, "lb"),
  27933. name: "Front (Clothed)",
  27934. image: {
  27935. source: "./media/characters/azura/front-clothed.svg",
  27936. extra: 1149 / 1135,
  27937. bottom: 45 / 1194
  27938. }
  27939. },
  27940. },
  27941. [
  27942. {
  27943. name: "Normal",
  27944. height: math.unit(6 + 3 / 12, "feet"),
  27945. default: true
  27946. },
  27947. {
  27948. name: "Macro",
  27949. height: math.unit(20 + 6 / 12, "feet")
  27950. },
  27951. {
  27952. name: "Megamacro",
  27953. height: math.unit(12, "miles")
  27954. },
  27955. {
  27956. name: "Gigamacro",
  27957. height: math.unit(10000, "miles")
  27958. },
  27959. {
  27960. name: "Teramacro",
  27961. height: math.unit(900000, "miles")
  27962. },
  27963. ]
  27964. ))
  27965. characterMakers.push(() => makeCharacter(
  27966. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27967. {
  27968. front: {
  27969. height: math.unit(12, "feet"),
  27970. weight: math.unit(1, "ton"),
  27971. capacity: math.unit(660000, "gallons"),
  27972. name: "Front",
  27973. image: {
  27974. source: "./media/characters/zeus/front.svg",
  27975. extra: 5005 / 4717,
  27976. bottom: 363 / 5388
  27977. }
  27978. },
  27979. },
  27980. [
  27981. {
  27982. name: "Normal",
  27983. height: math.unit(12, "feet")
  27984. },
  27985. {
  27986. name: "Preferred Size",
  27987. height: math.unit(0.5, "miles"),
  27988. default: true
  27989. },
  27990. {
  27991. name: "Giga Horse",
  27992. height: math.unit(300, "miles")
  27993. },
  27994. {
  27995. name: "Riding Planets",
  27996. height: math.unit(30, "megameters")
  27997. },
  27998. {
  27999. name: "Cosmic Giant",
  28000. height: math.unit(3, "zettameters")
  28001. },
  28002. {
  28003. name: "Breeding God",
  28004. height: math.unit(9.92e22, "yottameters")
  28005. },
  28006. ]
  28007. ))
  28008. characterMakers.push(() => makeCharacter(
  28009. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28010. {
  28011. side: {
  28012. height: math.unit(9, "feet"),
  28013. weight: math.unit(1500, "kg"),
  28014. name: "Side",
  28015. image: {
  28016. source: "./media/characters/fang/side.svg",
  28017. extra: 924 / 866,
  28018. bottom: 47.5 / 972.3
  28019. }
  28020. },
  28021. },
  28022. [
  28023. {
  28024. name: "Normal",
  28025. height: math.unit(9, "feet"),
  28026. default: true
  28027. },
  28028. {
  28029. name: "Macro",
  28030. height: math.unit(75 + 6 / 12, "feet")
  28031. },
  28032. {
  28033. name: "Teramacro",
  28034. height: math.unit(50000, "miles")
  28035. },
  28036. ]
  28037. ))
  28038. characterMakers.push(() => makeCharacter(
  28039. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28040. {
  28041. front: {
  28042. height: math.unit(10, "feet"),
  28043. weight: math.unit(2, "tons"),
  28044. name: "Front",
  28045. image: {
  28046. source: "./media/characters/rekhit/front.svg",
  28047. extra: 2796 / 2590,
  28048. bottom: 225 / 3022
  28049. }
  28050. },
  28051. },
  28052. [
  28053. {
  28054. name: "Normal",
  28055. height: math.unit(10, "feet"),
  28056. default: true
  28057. },
  28058. {
  28059. name: "Macro",
  28060. height: math.unit(500, "feet")
  28061. },
  28062. ]
  28063. ))
  28064. characterMakers.push(() => makeCharacter(
  28065. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28066. {
  28067. front: {
  28068. height: math.unit(7 + 6.451 / 12, "feet"),
  28069. weight: math.unit(310, "lb"),
  28070. name: "Front",
  28071. image: {
  28072. source: "./media/characters/dahlia-verrick/front.svg",
  28073. extra: 1488 / 1365,
  28074. bottom: 6.2 / 1495
  28075. }
  28076. },
  28077. back: {
  28078. height: math.unit(7 + 6.451 / 12, "feet"),
  28079. weight: math.unit(310, "lb"),
  28080. name: "Back",
  28081. image: {
  28082. source: "./media/characters/dahlia-verrick/back.svg",
  28083. extra: 1472 / 1351,
  28084. bottom: 5.28 / 1477
  28085. }
  28086. },
  28087. frontBusiness: {
  28088. height: math.unit(7 + 6.451 / 12, "feet"),
  28089. weight: math.unit(200, "lb"),
  28090. name: "Front (Business)",
  28091. image: {
  28092. source: "./media/characters/dahlia-verrick/front-business.svg",
  28093. extra: 1478 / 1381,
  28094. bottom: 5.5 / 1484
  28095. }
  28096. },
  28097. frontCasual: {
  28098. height: math.unit(7 + 6.451 / 12, "feet"),
  28099. weight: math.unit(200, "lb"),
  28100. name: "Front (Casual)",
  28101. image: {
  28102. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28103. extra: 1478 / 1381,
  28104. bottom: 5.5 / 1484
  28105. }
  28106. },
  28107. },
  28108. [
  28109. {
  28110. name: "Travel-Sized",
  28111. height: math.unit(7.45, "inches")
  28112. },
  28113. {
  28114. name: "Normal",
  28115. height: math.unit(7 + 6.451 / 12, "feet"),
  28116. default: true
  28117. },
  28118. {
  28119. name: "Hitting the Town",
  28120. height: math.unit(37 + 8 / 12, "feet")
  28121. },
  28122. {
  28123. name: "Stomp in the Suburbs",
  28124. height: math.unit(964 + 9.728 / 12, "feet")
  28125. },
  28126. {
  28127. name: "Sit on the City",
  28128. height: math.unit(61747 + 10.592 / 12, "feet")
  28129. },
  28130. {
  28131. name: "Glomp the Globe",
  28132. height: math.unit(252919327 + 4.832 / 12, "feet")
  28133. },
  28134. ]
  28135. ))
  28136. characterMakers.push(() => makeCharacter(
  28137. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28138. {
  28139. front: {
  28140. height: math.unit(6 + 4 / 12, "feet"),
  28141. weight: math.unit(320, "lb"),
  28142. name: "Front",
  28143. image: {
  28144. source: "./media/characters/balina-mahigan/front.svg",
  28145. extra: 447 / 428,
  28146. bottom: 18 / 466
  28147. }
  28148. },
  28149. back: {
  28150. height: math.unit(6 + 4 / 12, "feet"),
  28151. weight: math.unit(320, "lb"),
  28152. name: "Back",
  28153. image: {
  28154. source: "./media/characters/balina-mahigan/back.svg",
  28155. extra: 445 / 428,
  28156. bottom: 4.07 / 448
  28157. }
  28158. },
  28159. arm: {
  28160. height: math.unit(1.88, "feet"),
  28161. name: "Arm",
  28162. image: {
  28163. source: "./media/characters/balina-mahigan/arm.svg"
  28164. }
  28165. },
  28166. backPort: {
  28167. height: math.unit(0.685, "feet"),
  28168. name: "Back Port",
  28169. image: {
  28170. source: "./media/characters/balina-mahigan/back-port.svg"
  28171. }
  28172. },
  28173. hoofpaw: {
  28174. height: math.unit(1.41, "feet"),
  28175. name: "Hoofpaw",
  28176. image: {
  28177. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28178. }
  28179. },
  28180. leftHandBack: {
  28181. height: math.unit(0.938, "feet"),
  28182. name: "Left Hand (Back)",
  28183. image: {
  28184. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28185. }
  28186. },
  28187. leftHandFront: {
  28188. height: math.unit(0.938, "feet"),
  28189. name: "Left Hand (Front)",
  28190. image: {
  28191. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28192. }
  28193. },
  28194. rightHandBack: {
  28195. height: math.unit(0.95, "feet"),
  28196. name: "Right Hand (Back)",
  28197. image: {
  28198. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28199. }
  28200. },
  28201. rightHandFront: {
  28202. height: math.unit(0.95, "feet"),
  28203. name: "Right Hand (Front)",
  28204. image: {
  28205. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28206. }
  28207. },
  28208. },
  28209. [
  28210. {
  28211. name: "Normal",
  28212. height: math.unit(6 + 4 / 12, "feet"),
  28213. default: true
  28214. },
  28215. ]
  28216. ))
  28217. characterMakers.push(() => makeCharacter(
  28218. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28219. {
  28220. front: {
  28221. height: math.unit(6, "feet"),
  28222. weight: math.unit(320, "lb"),
  28223. name: "Front",
  28224. image: {
  28225. source: "./media/characters/balina-mejeri/front.svg",
  28226. extra: 517 / 488,
  28227. bottom: 44.2 / 561
  28228. }
  28229. },
  28230. },
  28231. [
  28232. {
  28233. name: "Normal",
  28234. height: math.unit(6 + 4 / 12, "feet")
  28235. },
  28236. {
  28237. name: "Business",
  28238. height: math.unit(155, "feet"),
  28239. default: true
  28240. },
  28241. ]
  28242. ))
  28243. characterMakers.push(() => makeCharacter(
  28244. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28245. {
  28246. kneeling: {
  28247. height: math.unit(6 + 4 / 12, "feet"),
  28248. weight: math.unit(300 * 20, "lb"),
  28249. name: "Kneeling",
  28250. image: {
  28251. source: "./media/characters/balbarian/kneeling.svg",
  28252. extra: 922 / 862,
  28253. bottom: 42.4 / 965
  28254. }
  28255. },
  28256. },
  28257. [
  28258. {
  28259. name: "Normal",
  28260. height: math.unit(6 + 4 / 12, "feet")
  28261. },
  28262. {
  28263. name: "Treasured",
  28264. height: math.unit(18 + 9 / 12, "feet"),
  28265. default: true
  28266. },
  28267. {
  28268. name: "Macro",
  28269. height: math.unit(900, "feet")
  28270. },
  28271. ]
  28272. ))
  28273. characterMakers.push(() => makeCharacter(
  28274. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28275. {
  28276. front: {
  28277. height: math.unit(6 + 4 / 12, "feet"),
  28278. weight: math.unit(325, "lb"),
  28279. name: "Front",
  28280. image: {
  28281. source: "./media/characters/balina-amarini/front.svg",
  28282. extra: 415 / 403,
  28283. bottom: 19 / 433.4
  28284. }
  28285. },
  28286. back: {
  28287. height: math.unit(6 + 4 / 12, "feet"),
  28288. weight: math.unit(325, "lb"),
  28289. name: "Back",
  28290. image: {
  28291. source: "./media/characters/balina-amarini/back.svg",
  28292. extra: 415 / 403,
  28293. bottom: 13.5 / 432
  28294. }
  28295. },
  28296. overdrive: {
  28297. height: math.unit(6 + 4 / 12, "feet"),
  28298. weight: math.unit(400, "lb"),
  28299. name: "Overdrive",
  28300. image: {
  28301. source: "./media/characters/balina-amarini/overdrive.svg",
  28302. extra: 269 / 259,
  28303. bottom: 12 / 282
  28304. }
  28305. },
  28306. },
  28307. [
  28308. {
  28309. name: "Boom",
  28310. height: math.unit(9 + 10 / 12, "feet"),
  28311. default: true
  28312. },
  28313. {
  28314. name: "Macro",
  28315. height: math.unit(280, "feet")
  28316. },
  28317. ]
  28318. ))
  28319. characterMakers.push(() => makeCharacter(
  28320. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28321. {
  28322. goddess: {
  28323. height: math.unit(600, "feet"),
  28324. weight: math.unit(2000000, "tons"),
  28325. name: "Goddess",
  28326. image: {
  28327. source: "./media/characters/lady-kubwa/goddess.svg",
  28328. extra: 1240.5 / 1223,
  28329. bottom: 22 / 1263
  28330. }
  28331. },
  28332. goddesser: {
  28333. height: math.unit(900, "feet"),
  28334. weight: math.unit(20000000, "lb"),
  28335. name: "Goddess-er",
  28336. image: {
  28337. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28338. extra: 899 / 888,
  28339. bottom: 12.6 / 912
  28340. }
  28341. },
  28342. },
  28343. [
  28344. {
  28345. name: "Macro",
  28346. height: math.unit(600, "feet"),
  28347. default: true
  28348. },
  28349. {
  28350. name: "Megamacro",
  28351. height: math.unit(250, "miles")
  28352. },
  28353. ]
  28354. ))
  28355. characterMakers.push(() => makeCharacter(
  28356. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28357. {
  28358. front: {
  28359. height: math.unit(7 + 7 / 12, "feet"),
  28360. weight: math.unit(250, "lb"),
  28361. name: "Front",
  28362. image: {
  28363. source: "./media/characters/tala-grovehorn/front.svg",
  28364. extra: 2636 / 2525,
  28365. bottom: 147 / 2781
  28366. }
  28367. },
  28368. back: {
  28369. height: math.unit(7 + 7 / 12, "feet"),
  28370. weight: math.unit(250, "lb"),
  28371. name: "Back",
  28372. image: {
  28373. source: "./media/characters/tala-grovehorn/back.svg",
  28374. extra: 2635 / 2539,
  28375. bottom: 100 / 2732.8
  28376. }
  28377. },
  28378. mouth: {
  28379. height: math.unit(1.15, "feet"),
  28380. name: "Mouth",
  28381. image: {
  28382. source: "./media/characters/tala-grovehorn/mouth.svg"
  28383. }
  28384. },
  28385. dick: {
  28386. height: math.unit(2.36, "feet"),
  28387. name: "Dick",
  28388. image: {
  28389. source: "./media/characters/tala-grovehorn/dick.svg"
  28390. }
  28391. },
  28392. slit: {
  28393. height: math.unit(0.61, "feet"),
  28394. name: "Slit",
  28395. image: {
  28396. source: "./media/characters/tala-grovehorn/slit.svg"
  28397. }
  28398. },
  28399. },
  28400. [
  28401. ]
  28402. ))
  28403. characterMakers.push(() => makeCharacter(
  28404. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28405. {
  28406. front: {
  28407. height: math.unit(7 + 7 / 12, "feet"),
  28408. weight: math.unit(225, "lb"),
  28409. name: "Front",
  28410. image: {
  28411. source: "./media/characters/epona/front.svg",
  28412. extra: 2445 / 2290,
  28413. bottom: 251 / 2696
  28414. }
  28415. },
  28416. back: {
  28417. height: math.unit(7 + 7 / 12, "feet"),
  28418. weight: math.unit(225, "lb"),
  28419. name: "Back",
  28420. image: {
  28421. source: "./media/characters/epona/back.svg",
  28422. extra: 2546 / 2408,
  28423. bottom: 44 / 2589
  28424. }
  28425. },
  28426. genitals: {
  28427. height: math.unit(1.5, "feet"),
  28428. name: "Genitals",
  28429. image: {
  28430. source: "./media/characters/epona/genitals.svg"
  28431. }
  28432. },
  28433. },
  28434. [
  28435. {
  28436. name: "Normal",
  28437. height: math.unit(7 + 7 / 12, "feet"),
  28438. default: true
  28439. },
  28440. ]
  28441. ))
  28442. characterMakers.push(() => makeCharacter(
  28443. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28444. {
  28445. front: {
  28446. height: math.unit(7, "feet"),
  28447. weight: math.unit(518, "lb"),
  28448. name: "Front",
  28449. image: {
  28450. source: "./media/characters/avia-bloodbourn/front.svg",
  28451. extra: 1466 / 1350,
  28452. bottom: 65 / 1527
  28453. }
  28454. },
  28455. },
  28456. [
  28457. ]
  28458. ))
  28459. characterMakers.push(() => makeCharacter(
  28460. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28461. {
  28462. front: {
  28463. height: math.unit(9.35, "feet"),
  28464. weight: math.unit(600, "lb"),
  28465. name: "Front",
  28466. image: {
  28467. source: "./media/characters/amera/front.svg",
  28468. extra: 891 / 818,
  28469. bottom: 30 / 922.7
  28470. }
  28471. },
  28472. back: {
  28473. height: math.unit(9.35, "feet"),
  28474. weight: math.unit(600, "lb"),
  28475. name: "Back",
  28476. image: {
  28477. source: "./media/characters/amera/back.svg",
  28478. extra: 876 / 824,
  28479. bottom: 6.8 / 884
  28480. }
  28481. },
  28482. dick: {
  28483. height: math.unit(2.14, "feet"),
  28484. name: "Dick",
  28485. image: {
  28486. source: "./media/characters/amera/dick.svg"
  28487. }
  28488. },
  28489. },
  28490. [
  28491. {
  28492. name: "Normal",
  28493. height: math.unit(9.35, "feet"),
  28494. default: true
  28495. },
  28496. ]
  28497. ))
  28498. characterMakers.push(() => makeCharacter(
  28499. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28500. {
  28501. kneeling: {
  28502. height: math.unit(3 + 4 / 12, "feet"),
  28503. weight: math.unit(90, "lb"),
  28504. name: "Kneeling",
  28505. image: {
  28506. source: "./media/characters/rosewen/kneeling.svg",
  28507. extra: 1835 / 1571,
  28508. bottom: 27.7 / 1862
  28509. }
  28510. },
  28511. },
  28512. [
  28513. {
  28514. name: "Normal",
  28515. height: math.unit(3 + 4 / 12, "feet"),
  28516. default: true
  28517. },
  28518. ]
  28519. ))
  28520. characterMakers.push(() => makeCharacter(
  28521. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28522. {
  28523. front: {
  28524. height: math.unit(5 + 10 / 12, "feet"),
  28525. weight: math.unit(200, "lb"),
  28526. name: "Front",
  28527. image: {
  28528. source: "./media/characters/sabah/front.svg",
  28529. extra: 849 / 763,
  28530. bottom: 33.9 / 881
  28531. }
  28532. },
  28533. },
  28534. [
  28535. {
  28536. name: "Normal",
  28537. height: math.unit(5 + 10 / 12, "feet"),
  28538. default: true
  28539. },
  28540. ]
  28541. ))
  28542. characterMakers.push(() => makeCharacter(
  28543. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28544. {
  28545. front: {
  28546. height: math.unit(3 + 5 / 12, "feet"),
  28547. weight: math.unit(40, "kg"),
  28548. name: "Front",
  28549. image: {
  28550. source: "./media/characters/purple-flame/front.svg",
  28551. extra: 1577 / 1412,
  28552. bottom: 97 / 1694
  28553. }
  28554. },
  28555. frontDressed: {
  28556. height: math.unit(3 + 5 / 12, "feet"),
  28557. weight: math.unit(40, "kg"),
  28558. name: "Front (Dressed)",
  28559. image: {
  28560. source: "./media/characters/purple-flame/front-dressed.svg",
  28561. extra: 1577 / 1412,
  28562. bottom: 97 / 1694
  28563. }
  28564. },
  28565. headphones: {
  28566. height: math.unit(0.85, "feet"),
  28567. name: "Headphones",
  28568. image: {
  28569. source: "./media/characters/purple-flame/headphones.svg"
  28570. }
  28571. },
  28572. },
  28573. [
  28574. {
  28575. name: "Really Small",
  28576. height: math.unit(5, "cm")
  28577. },
  28578. {
  28579. name: "Micro",
  28580. height: math.unit(1 + 5 / 12, "feet")
  28581. },
  28582. {
  28583. name: "Normal",
  28584. height: math.unit(3 + 5 / 12, "feet"),
  28585. default: true
  28586. },
  28587. {
  28588. name: "Minimacro",
  28589. height: math.unit(125, "feet")
  28590. },
  28591. {
  28592. name: "Macro",
  28593. height: math.unit(0.5, "miles")
  28594. },
  28595. {
  28596. name: "Megamacro",
  28597. height: math.unit(50, "miles")
  28598. },
  28599. {
  28600. name: "Gigantic",
  28601. height: math.unit(750, "miles")
  28602. },
  28603. {
  28604. name: "Planetary",
  28605. height: math.unit(15000, "miles")
  28606. },
  28607. ]
  28608. ))
  28609. characterMakers.push(() => makeCharacter(
  28610. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28611. {
  28612. front: {
  28613. height: math.unit(14, "feet"),
  28614. weight: math.unit(959, "lb"),
  28615. name: "Front",
  28616. image: {
  28617. source: "./media/characters/arsenal/front.svg",
  28618. extra: 2357 / 2157,
  28619. bottom: 93 / 2458
  28620. }
  28621. },
  28622. },
  28623. [
  28624. {
  28625. name: "Normal",
  28626. height: math.unit(14, "feet"),
  28627. default: true
  28628. },
  28629. ]
  28630. ))
  28631. characterMakers.push(() => makeCharacter(
  28632. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28633. {
  28634. front: {
  28635. height: math.unit(6, "feet"),
  28636. weight: math.unit(150, "lb"),
  28637. name: "Front",
  28638. image: {
  28639. source: "./media/characters/adira/front.svg",
  28640. extra: 1078 / 1029,
  28641. bottom: 87 / 1166
  28642. }
  28643. },
  28644. },
  28645. [
  28646. {
  28647. name: "Micro",
  28648. height: math.unit(4, "inches"),
  28649. default: true
  28650. },
  28651. {
  28652. name: "Macro",
  28653. height: math.unit(50, "feet")
  28654. },
  28655. ]
  28656. ))
  28657. characterMakers.push(() => makeCharacter(
  28658. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28659. {
  28660. front: {
  28661. height: math.unit(16, "feet"),
  28662. weight: math.unit(1000, "lb"),
  28663. name: "Front",
  28664. image: {
  28665. source: "./media/characters/grim/front.svg",
  28666. extra: 622 / 614,
  28667. bottom: 18.1 / 642
  28668. }
  28669. },
  28670. back: {
  28671. height: math.unit(16, "feet"),
  28672. weight: math.unit(1000, "lb"),
  28673. name: "Back",
  28674. image: {
  28675. source: "./media/characters/grim/back.svg",
  28676. extra: 610.6 / 602,
  28677. bottom: 40.8 / 652
  28678. }
  28679. },
  28680. hunched: {
  28681. height: math.unit(9.75, "feet"),
  28682. weight: math.unit(1000, "lb"),
  28683. name: "Hunched",
  28684. image: {
  28685. source: "./media/characters/grim/hunched.svg",
  28686. extra: 304 / 297,
  28687. bottom: 35.4 / 394
  28688. }
  28689. },
  28690. },
  28691. [
  28692. {
  28693. name: "Normal",
  28694. height: math.unit(16, "feet"),
  28695. default: true
  28696. },
  28697. ]
  28698. ))
  28699. characterMakers.push(() => makeCharacter(
  28700. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28701. {
  28702. front: {
  28703. height: math.unit(2.3, "meters"),
  28704. weight: math.unit(300, "lb"),
  28705. name: "Front",
  28706. image: {
  28707. source: "./media/characters/sinja/front-sfw.svg",
  28708. extra: 1393 / 1294,
  28709. bottom: 70 / 1463
  28710. }
  28711. },
  28712. frontNsfw: {
  28713. height: math.unit(2.3, "meters"),
  28714. weight: math.unit(300, "lb"),
  28715. name: "Front (NSFW)",
  28716. image: {
  28717. source: "./media/characters/sinja/front-nsfw.svg",
  28718. extra: 1393 / 1294,
  28719. bottom: 70 / 1463
  28720. }
  28721. },
  28722. back: {
  28723. height: math.unit(2.3, "meters"),
  28724. weight: math.unit(300, "lb"),
  28725. name: "Back",
  28726. image: {
  28727. source: "./media/characters/sinja/back.svg",
  28728. extra: 1393 / 1294,
  28729. bottom: 70 / 1463
  28730. }
  28731. },
  28732. head: {
  28733. height: math.unit(1.771, "feet"),
  28734. name: "Head",
  28735. image: {
  28736. source: "./media/characters/sinja/head.svg"
  28737. }
  28738. },
  28739. slit: {
  28740. height: math.unit(0.8, "feet"),
  28741. name: "Slit",
  28742. image: {
  28743. source: "./media/characters/sinja/slit.svg"
  28744. }
  28745. },
  28746. },
  28747. [
  28748. {
  28749. name: "Normal",
  28750. height: math.unit(2.3, "meters")
  28751. },
  28752. {
  28753. name: "Macro",
  28754. height: math.unit(91, "meters"),
  28755. default: true
  28756. },
  28757. {
  28758. name: "Megamacro",
  28759. height: math.unit(91440, "meters")
  28760. },
  28761. {
  28762. name: "Gigamacro",
  28763. height: math.unit(60960000, "meters")
  28764. },
  28765. {
  28766. name: "Teramacro",
  28767. height: math.unit(9144000000, "meters")
  28768. },
  28769. ]
  28770. ))
  28771. characterMakers.push(() => makeCharacter(
  28772. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28773. {
  28774. front: {
  28775. height: math.unit(1.7, "meters"),
  28776. weight: math.unit(130, "lb"),
  28777. name: "Front",
  28778. image: {
  28779. source: "./media/characters/kyu/front.svg",
  28780. extra: 415 / 395,
  28781. bottom: 5 / 420
  28782. }
  28783. },
  28784. head: {
  28785. height: math.unit(1.75, "feet"),
  28786. name: "Head",
  28787. image: {
  28788. source: "./media/characters/kyu/head.svg"
  28789. }
  28790. },
  28791. foot: {
  28792. height: math.unit(0.81, "feet"),
  28793. name: "Foot",
  28794. image: {
  28795. source: "./media/characters/kyu/foot.svg"
  28796. }
  28797. },
  28798. },
  28799. [
  28800. {
  28801. name: "Normal",
  28802. height: math.unit(1.7, "meters")
  28803. },
  28804. {
  28805. name: "Macro",
  28806. height: math.unit(131, "feet"),
  28807. default: true
  28808. },
  28809. {
  28810. name: "Megamacro",
  28811. height: math.unit(91440, "meters")
  28812. },
  28813. {
  28814. name: "Gigamacro",
  28815. height: math.unit(60960000, "meters")
  28816. },
  28817. {
  28818. name: "Teramacro",
  28819. height: math.unit(9144000000, "meters")
  28820. },
  28821. ]
  28822. ))
  28823. characterMakers.push(() => makeCharacter(
  28824. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28825. {
  28826. front: {
  28827. height: math.unit(7 + 1 / 12, "feet"),
  28828. weight: math.unit(250, "lb"),
  28829. name: "Front",
  28830. image: {
  28831. source: "./media/characters/joey/front.svg",
  28832. extra: 1791 / 1537,
  28833. bottom: 28 / 1816
  28834. }
  28835. },
  28836. },
  28837. [
  28838. {
  28839. name: "Micro",
  28840. height: math.unit(3, "inches")
  28841. },
  28842. {
  28843. name: "Normal",
  28844. height: math.unit(7 + 1 / 12, "feet"),
  28845. default: true
  28846. },
  28847. ]
  28848. ))
  28849. characterMakers.push(() => makeCharacter(
  28850. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28851. {
  28852. front: {
  28853. height: math.unit(165, "cm"),
  28854. weight: math.unit(140, "lb"),
  28855. name: "Front",
  28856. image: {
  28857. source: "./media/characters/sam-evans/front.svg",
  28858. extra: 3417 / 3230,
  28859. bottom: 41.3 / 3417
  28860. }
  28861. },
  28862. frontSixTails: {
  28863. height: math.unit(165, "cm"),
  28864. weight: math.unit(140, "lb"),
  28865. name: "Front-six-tails",
  28866. image: {
  28867. source: "./media/characters/sam-evans/front-six-tails.svg",
  28868. extra: 3417 / 3230,
  28869. bottom: 41.3 / 3417
  28870. }
  28871. },
  28872. back: {
  28873. height: math.unit(165, "cm"),
  28874. weight: math.unit(140, "lb"),
  28875. name: "Back",
  28876. image: {
  28877. source: "./media/characters/sam-evans/back.svg",
  28878. extra: 3227 / 3032,
  28879. bottom: 6.8 / 3234
  28880. }
  28881. },
  28882. face: {
  28883. height: math.unit(0.68, "feet"),
  28884. name: "Face",
  28885. image: {
  28886. source: "./media/characters/sam-evans/face.svg"
  28887. }
  28888. },
  28889. },
  28890. [
  28891. {
  28892. name: "Normal",
  28893. height: math.unit(165, "cm"),
  28894. default: true
  28895. },
  28896. {
  28897. name: "Macro",
  28898. height: math.unit(100, "meters")
  28899. },
  28900. {
  28901. name: "Macro+",
  28902. height: math.unit(800, "meters")
  28903. },
  28904. {
  28905. name: "Macro++",
  28906. height: math.unit(3, "km")
  28907. },
  28908. {
  28909. name: "Macro+++",
  28910. height: math.unit(30, "km")
  28911. },
  28912. ]
  28913. ))
  28914. characterMakers.push(() => makeCharacter(
  28915. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28916. {
  28917. front: {
  28918. height: math.unit(10, "feet"),
  28919. weight: math.unit(750, "lb"),
  28920. name: "Front",
  28921. image: {
  28922. source: "./media/characters/juliet-a/front.svg",
  28923. extra: 1766 / 1720,
  28924. bottom: 43 / 1809
  28925. }
  28926. },
  28927. back: {
  28928. height: math.unit(10, "feet"),
  28929. weight: math.unit(750, "lb"),
  28930. name: "Back",
  28931. image: {
  28932. source: "./media/characters/juliet-a/back.svg",
  28933. extra: 1781 / 1734,
  28934. bottom: 35 / 1810,
  28935. }
  28936. },
  28937. },
  28938. [
  28939. {
  28940. name: "Normal",
  28941. height: math.unit(10, "feet"),
  28942. default: true
  28943. },
  28944. {
  28945. name: "Dragon Form",
  28946. height: math.unit(250, "feet")
  28947. },
  28948. {
  28949. name: "Macro",
  28950. height: math.unit(1000, "feet")
  28951. },
  28952. {
  28953. name: "Megamacro",
  28954. height: math.unit(10000, "feet")
  28955. }
  28956. ]
  28957. ))
  28958. characterMakers.push(() => makeCharacter(
  28959. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28960. {
  28961. regular: {
  28962. height: math.unit(7 + 3 / 12, "feet"),
  28963. weight: math.unit(260, "lb"),
  28964. name: "Regular",
  28965. image: {
  28966. source: "./media/characters/wild/regular.svg",
  28967. extra: 97.45 / 92,
  28968. bottom: 6.8 / 104.3
  28969. }
  28970. },
  28971. biggums: {
  28972. height: math.unit(8 + 6 / 12, "feet"),
  28973. weight: math.unit(425, "lb"),
  28974. name: "Biggums",
  28975. image: {
  28976. source: "./media/characters/wild/biggums.svg",
  28977. extra: 97.45 / 92,
  28978. bottom: 7.5 / 132.34
  28979. }
  28980. },
  28981. mawRegular: {
  28982. height: math.unit(1.24, "feet"),
  28983. name: "Maw (Regular)",
  28984. image: {
  28985. source: "./media/characters/wild/maw.svg"
  28986. }
  28987. },
  28988. mawBiggums: {
  28989. height: math.unit(1.47, "feet"),
  28990. name: "Maw (Biggums)",
  28991. image: {
  28992. source: "./media/characters/wild/maw.svg"
  28993. }
  28994. },
  28995. },
  28996. [
  28997. {
  28998. name: "Normal",
  28999. height: math.unit(7 + 3 / 12, "feet"),
  29000. default: true
  29001. },
  29002. ]
  29003. ))
  29004. characterMakers.push(() => makeCharacter(
  29005. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29006. {
  29007. front: {
  29008. height: math.unit(2.5, "meters"),
  29009. weight: math.unit(200, "kg"),
  29010. name: "Front",
  29011. image: {
  29012. source: "./media/characters/vidar/front.svg",
  29013. extra: 2994 / 2795,
  29014. bottom: 56 / 3061
  29015. }
  29016. },
  29017. back: {
  29018. height: math.unit(2.5, "meters"),
  29019. weight: math.unit(200, "kg"),
  29020. name: "Back",
  29021. image: {
  29022. source: "./media/characters/vidar/back.svg",
  29023. extra: 3131 / 2928,
  29024. bottom: 13.5 / 3141.5
  29025. }
  29026. },
  29027. feral: {
  29028. height: math.unit(2.5, "meters"),
  29029. weight: math.unit(2000, "kg"),
  29030. name: "Feral",
  29031. image: {
  29032. source: "./media/characters/vidar/feral.svg",
  29033. extra: 2790 / 1765,
  29034. bottom: 6 / 2796
  29035. }
  29036. },
  29037. },
  29038. [
  29039. {
  29040. name: "Normal",
  29041. height: math.unit(2.5, "meters"),
  29042. default: true
  29043. },
  29044. {
  29045. name: "Macro",
  29046. height: math.unit(100, "meters")
  29047. },
  29048. ]
  29049. ))
  29050. characterMakers.push(() => makeCharacter(
  29051. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29052. {
  29053. front: {
  29054. height: math.unit(5 + 9 / 12, "feet"),
  29055. weight: math.unit(120, "lb"),
  29056. name: "Front",
  29057. image: {
  29058. source: "./media/characters/ash/front.svg",
  29059. extra: 2189 / 1961,
  29060. bottom: 5.2 / 2194
  29061. }
  29062. },
  29063. },
  29064. [
  29065. {
  29066. name: "Normal",
  29067. height: math.unit(5 + 9 / 12, "feet"),
  29068. default: true
  29069. },
  29070. ]
  29071. ))
  29072. characterMakers.push(() => makeCharacter(
  29073. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29074. {
  29075. front: {
  29076. height: math.unit(9, "feet"),
  29077. weight: math.unit(10000, "lb"),
  29078. name: "Front",
  29079. image: {
  29080. source: "./media/characters/gygabite/front.svg",
  29081. bottom: 31.7 / 537.8,
  29082. extra: 505 / 370
  29083. }
  29084. },
  29085. },
  29086. [
  29087. {
  29088. name: "Normal",
  29089. height: math.unit(9, "feet"),
  29090. default: true
  29091. },
  29092. ]
  29093. ))
  29094. characterMakers.push(() => makeCharacter(
  29095. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29096. {
  29097. front: {
  29098. height: math.unit(12, "feet"),
  29099. weight: math.unit(4000, "lb"),
  29100. name: "Front",
  29101. image: {
  29102. source: "./media/characters/p0tat0/front.svg",
  29103. extra: 1065 / 921,
  29104. bottom: 55.7 / 1121.25
  29105. }
  29106. },
  29107. },
  29108. [
  29109. {
  29110. name: "Normal",
  29111. height: math.unit(12, "feet"),
  29112. default: true
  29113. },
  29114. ]
  29115. ))
  29116. characterMakers.push(() => makeCharacter(
  29117. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29118. {
  29119. side: {
  29120. height: math.unit(6.5, "feet"),
  29121. weight: math.unit(800, "lb"),
  29122. name: "Side",
  29123. image: {
  29124. source: "./media/characters/dusk/side.svg",
  29125. extra: 615 / 373,
  29126. bottom: 53 / 664
  29127. }
  29128. },
  29129. sitting: {
  29130. height: math.unit(7, "feet"),
  29131. weight: math.unit(800, "lb"),
  29132. name: "Sitting",
  29133. image: {
  29134. source: "./media/characters/dusk/sitting.svg",
  29135. extra: 753 / 425,
  29136. bottom: 33 / 774
  29137. }
  29138. },
  29139. head: {
  29140. height: math.unit(6.1, "feet"),
  29141. name: "Head",
  29142. image: {
  29143. source: "./media/characters/dusk/head.svg"
  29144. }
  29145. },
  29146. },
  29147. [
  29148. {
  29149. name: "Normal",
  29150. height: math.unit(7, "feet"),
  29151. default: true
  29152. },
  29153. ]
  29154. ))
  29155. characterMakers.push(() => makeCharacter(
  29156. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29157. {
  29158. front: {
  29159. height: math.unit(15, "feet"),
  29160. weight: math.unit(7000, "lb"),
  29161. name: "Front",
  29162. image: {
  29163. source: "./media/characters/jay-direwolf/front.svg",
  29164. extra: 1810 / 1732,
  29165. bottom: 66 / 1892
  29166. }
  29167. },
  29168. },
  29169. [
  29170. {
  29171. name: "Normal",
  29172. height: math.unit(15, "feet"),
  29173. default: true
  29174. },
  29175. ]
  29176. ))
  29177. characterMakers.push(() => makeCharacter(
  29178. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29179. {
  29180. front: {
  29181. height: math.unit(4 + 9 / 12, "feet"),
  29182. weight: math.unit(130, "lb"),
  29183. name: "Front",
  29184. image: {
  29185. source: "./media/characters/anchovie/front.svg",
  29186. extra: 382 / 350,
  29187. bottom: 25 / 409
  29188. }
  29189. },
  29190. back: {
  29191. height: math.unit(4 + 9 / 12, "feet"),
  29192. weight: math.unit(130, "lb"),
  29193. name: "Back",
  29194. image: {
  29195. source: "./media/characters/anchovie/back.svg",
  29196. extra: 385 / 352,
  29197. bottom: 16.6 / 402
  29198. }
  29199. },
  29200. frontDressed: {
  29201. height: math.unit(4 + 9 / 12, "feet"),
  29202. weight: math.unit(130, "lb"),
  29203. name: "Front (Dressed)",
  29204. image: {
  29205. source: "./media/characters/anchovie/front-dressed.svg",
  29206. extra: 382 / 350,
  29207. bottom: 25 / 409
  29208. }
  29209. },
  29210. backDressed: {
  29211. height: math.unit(4 + 9 / 12, "feet"),
  29212. weight: math.unit(130, "lb"),
  29213. name: "Back (Dressed)",
  29214. image: {
  29215. source: "./media/characters/anchovie/back-dressed.svg",
  29216. extra: 385 / 352,
  29217. bottom: 16.6 / 402
  29218. }
  29219. },
  29220. },
  29221. [
  29222. {
  29223. name: "Micro",
  29224. height: math.unit(6.4, "inches")
  29225. },
  29226. {
  29227. name: "Normal",
  29228. height: math.unit(4 + 9 / 12, "feet"),
  29229. default: true
  29230. },
  29231. ]
  29232. ))
  29233. characterMakers.push(() => makeCharacter(
  29234. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29235. {
  29236. front: {
  29237. height: math.unit(2, "meters"),
  29238. weight: math.unit(180, "lb"),
  29239. name: "Front",
  29240. image: {
  29241. source: "./media/characters/acidrenamon/front.svg",
  29242. extra: 987 / 890,
  29243. bottom: 22.8 / 1009
  29244. }
  29245. },
  29246. back: {
  29247. height: math.unit(2, "meters"),
  29248. weight: math.unit(180, "lb"),
  29249. name: "Back",
  29250. image: {
  29251. source: "./media/characters/acidrenamon/back.svg",
  29252. extra: 983 / 891,
  29253. bottom: 8.4 / 992
  29254. }
  29255. },
  29256. head: {
  29257. height: math.unit(1.92, "feet"),
  29258. name: "Head",
  29259. image: {
  29260. source: "./media/characters/acidrenamon/head.svg"
  29261. }
  29262. },
  29263. rump: {
  29264. height: math.unit(1.72, "feet"),
  29265. name: "Rump",
  29266. image: {
  29267. source: "./media/characters/acidrenamon/rump.svg"
  29268. }
  29269. },
  29270. tail: {
  29271. height: math.unit(4.2, "feet"),
  29272. name: "Tail",
  29273. image: {
  29274. source: "./media/characters/acidrenamon/tail.svg"
  29275. }
  29276. },
  29277. },
  29278. [
  29279. {
  29280. name: "Normal",
  29281. height: math.unit(2, "meters"),
  29282. default: true
  29283. },
  29284. {
  29285. name: "Minimacro",
  29286. height: math.unit(7, "meters")
  29287. },
  29288. {
  29289. name: "Macro",
  29290. height: math.unit(200, "meters")
  29291. },
  29292. {
  29293. name: "Gigamacro",
  29294. height: math.unit(0.2, "earths")
  29295. },
  29296. ]
  29297. ))
  29298. characterMakers.push(() => makeCharacter(
  29299. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29300. {
  29301. front: {
  29302. height: math.unit(152, "feet"),
  29303. name: "Front",
  29304. image: {
  29305. source: "./media/characters/kenzie-lee/front.svg",
  29306. extra: 1869/1774,
  29307. bottom: 128/1997
  29308. }
  29309. },
  29310. side: {
  29311. height: math.unit(86, "feet"),
  29312. name: "Side",
  29313. image: {
  29314. source: "./media/characters/kenzie-lee/side.svg",
  29315. extra: 930/815,
  29316. bottom: 177/1107
  29317. }
  29318. },
  29319. paw: {
  29320. height: math.unit(15, "feet"),
  29321. name: "Paw",
  29322. image: {
  29323. source: "./media/characters/kenzie-lee/paw.svg"
  29324. }
  29325. },
  29326. },
  29327. [
  29328. {
  29329. name: "Kenzie Flea",
  29330. height: math.unit(2, "mm"),
  29331. default: true
  29332. },
  29333. {
  29334. name: "Micro",
  29335. height: math.unit(2, "inches")
  29336. },
  29337. {
  29338. name: "Normal",
  29339. height: math.unit(152, "feet")
  29340. },
  29341. {
  29342. name: "Megamacro",
  29343. height: math.unit(7, "miles")
  29344. },
  29345. {
  29346. name: "Gigamacro",
  29347. height: math.unit(8000, "miles")
  29348. },
  29349. ]
  29350. ))
  29351. characterMakers.push(() => makeCharacter(
  29352. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29353. {
  29354. front: {
  29355. height: math.unit(6, "feet"),
  29356. name: "Front",
  29357. image: {
  29358. source: "./media/characters/withers/front.svg",
  29359. extra: 1935/1760,
  29360. bottom: 72/2007
  29361. }
  29362. },
  29363. back: {
  29364. height: math.unit(6, "feet"),
  29365. name: "Back",
  29366. image: {
  29367. source: "./media/characters/withers/back.svg",
  29368. extra: 1944/1792,
  29369. bottom: 12/1956
  29370. }
  29371. },
  29372. dressed: {
  29373. height: math.unit(6, "feet"),
  29374. name: "Dressed",
  29375. image: {
  29376. source: "./media/characters/withers/dressed.svg",
  29377. extra: 1937/1765,
  29378. bottom: 73/2010
  29379. }
  29380. },
  29381. phase1: {
  29382. height: math.unit(1.1, "feet"),
  29383. name: "Phase 1",
  29384. image: {
  29385. source: "./media/characters/withers/phase-1.svg",
  29386. extra: 1885/1232,
  29387. bottom: 0/1885
  29388. }
  29389. },
  29390. phase2: {
  29391. height: math.unit(1.05, "feet"),
  29392. name: "Phase 2",
  29393. image: {
  29394. source: "./media/characters/withers/phase-2.svg",
  29395. extra: 1792/1090,
  29396. bottom: 0/1792
  29397. }
  29398. },
  29399. partyWipe: {
  29400. height: math.unit(1.1, "feet"),
  29401. name: "Party Wipe",
  29402. image: {
  29403. source: "./media/characters/withers/party-wipe.svg",
  29404. extra: 1864/1207,
  29405. bottom: 0/1864
  29406. }
  29407. },
  29408. },
  29409. [
  29410. {
  29411. name: "Macro",
  29412. height: math.unit(167, "feet"),
  29413. default: true
  29414. },
  29415. {
  29416. name: "Megamacro",
  29417. height: math.unit(15, "miles")
  29418. }
  29419. ]
  29420. ))
  29421. characterMakers.push(() => makeCharacter(
  29422. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29423. {
  29424. front: {
  29425. height: math.unit(6 + 7 / 12, "feet"),
  29426. weight: math.unit(250, "lb"),
  29427. name: "Front",
  29428. image: {
  29429. source: "./media/characters/nemoskii/front.svg",
  29430. extra: 2270 / 1734,
  29431. bottom: 86 / 2354
  29432. }
  29433. },
  29434. back: {
  29435. height: math.unit(6 + 7 / 12, "feet"),
  29436. weight: math.unit(250, "lb"),
  29437. name: "Back",
  29438. image: {
  29439. source: "./media/characters/nemoskii/back.svg",
  29440. extra: 1845 / 1788,
  29441. bottom: 10.5 / 1852
  29442. }
  29443. },
  29444. head: {
  29445. height: math.unit(1.31, "feet"),
  29446. name: "Head",
  29447. image: {
  29448. source: "./media/characters/nemoskii/head.svg"
  29449. }
  29450. },
  29451. },
  29452. [
  29453. {
  29454. name: "Micro",
  29455. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29456. },
  29457. {
  29458. name: "Normal",
  29459. height: math.unit(6 + 7 / 12, "feet"),
  29460. default: true
  29461. },
  29462. {
  29463. name: "Macro",
  29464. height: math.unit((6 + 7 / 12) * 150, "feet")
  29465. },
  29466. {
  29467. name: "Macro+",
  29468. height: math.unit((6 + 7 / 12) * 500, "feet")
  29469. },
  29470. {
  29471. name: "Megamacro",
  29472. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29473. },
  29474. ]
  29475. ))
  29476. characterMakers.push(() => makeCharacter(
  29477. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29478. {
  29479. front: {
  29480. height: math.unit(1, "mile"),
  29481. weight: math.unit(265261.9, "lb"),
  29482. name: "Front",
  29483. image: {
  29484. source: "./media/characters/shui/front.svg",
  29485. extra: 1633 / 1564,
  29486. bottom: 91.5 / 1726
  29487. }
  29488. },
  29489. },
  29490. [
  29491. {
  29492. name: "Macro",
  29493. height: math.unit(1, "mile"),
  29494. default: true
  29495. },
  29496. ]
  29497. ))
  29498. characterMakers.push(() => makeCharacter(
  29499. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29500. {
  29501. front: {
  29502. height: math.unit(12 + 6 / 12, "feet"),
  29503. weight: math.unit(1342, "lb"),
  29504. name: "Front",
  29505. image: {
  29506. source: "./media/characters/arokh-takakura/front.svg",
  29507. extra: 1089 / 1043,
  29508. bottom: 77.4 / 1176.7
  29509. }
  29510. },
  29511. back: {
  29512. height: math.unit(12 + 6 / 12, "feet"),
  29513. weight: math.unit(1342, "lb"),
  29514. name: "Back",
  29515. image: {
  29516. source: "./media/characters/arokh-takakura/back.svg",
  29517. extra: 1046 / 1019,
  29518. bottom: 102 / 1150
  29519. }
  29520. },
  29521. },
  29522. [
  29523. {
  29524. name: "Big",
  29525. height: math.unit(12 + 6 / 12, "feet"),
  29526. default: true
  29527. },
  29528. ]
  29529. ))
  29530. characterMakers.push(() => makeCharacter(
  29531. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29532. {
  29533. front: {
  29534. height: math.unit(5 + 6 / 12, "feet"),
  29535. weight: math.unit(150, "lb"),
  29536. name: "Front",
  29537. image: {
  29538. source: "./media/characters/theo/front.svg",
  29539. extra: 1184 / 1131,
  29540. bottom: 7.4 / 1191
  29541. }
  29542. },
  29543. },
  29544. [
  29545. {
  29546. name: "Micro",
  29547. height: math.unit(5, "inches")
  29548. },
  29549. {
  29550. name: "Normal",
  29551. height: math.unit(5 + 6 / 12, "feet"),
  29552. default: true
  29553. },
  29554. ]
  29555. ))
  29556. characterMakers.push(() => makeCharacter(
  29557. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29558. {
  29559. front: {
  29560. height: math.unit(5 + 9 / 12, "feet"),
  29561. weight: math.unit(130, "lb"),
  29562. name: "Front",
  29563. image: {
  29564. source: "./media/characters/cecelia-swift/front.svg",
  29565. extra: 502 / 484,
  29566. bottom: 23 / 523
  29567. }
  29568. },
  29569. back: {
  29570. height: math.unit(5 + 9 / 12, "feet"),
  29571. weight: math.unit(130, "lb"),
  29572. name: "Back",
  29573. image: {
  29574. source: "./media/characters/cecelia-swift/back.svg",
  29575. extra: 499 / 485,
  29576. bottom: 12 / 511
  29577. }
  29578. },
  29579. head: {
  29580. height: math.unit(0.90, "feet"),
  29581. name: "Head",
  29582. image: {
  29583. source: "./media/characters/cecelia-swift/head.svg"
  29584. }
  29585. },
  29586. rump: {
  29587. height: math.unit(1.75, "feet"),
  29588. name: "Rump",
  29589. image: {
  29590. source: "./media/characters/cecelia-swift/rump.svg"
  29591. }
  29592. },
  29593. },
  29594. [
  29595. {
  29596. name: "Normal",
  29597. height: math.unit(5 + 9 / 12, "feet"),
  29598. default: true
  29599. },
  29600. {
  29601. name: "Big",
  29602. height: math.unit(50, "feet")
  29603. },
  29604. {
  29605. name: "Macro",
  29606. height: math.unit(100, "feet")
  29607. },
  29608. {
  29609. name: "Macro+",
  29610. height: math.unit(500, "feet")
  29611. },
  29612. {
  29613. name: "Macro++",
  29614. height: math.unit(1000, "feet")
  29615. },
  29616. ]
  29617. ))
  29618. characterMakers.push(() => makeCharacter(
  29619. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29620. {
  29621. front: {
  29622. height: math.unit(6, "feet"),
  29623. weight: math.unit(150, "lb"),
  29624. name: "Front",
  29625. image: {
  29626. source: "./media/characters/kaunan/front.svg",
  29627. extra: 2890 / 2523,
  29628. bottom: 49 / 2939
  29629. }
  29630. },
  29631. },
  29632. [
  29633. {
  29634. name: "Macro",
  29635. height: math.unit(150, "feet"),
  29636. default: true
  29637. },
  29638. ]
  29639. ))
  29640. characterMakers.push(() => makeCharacter(
  29641. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29642. {
  29643. dressed: {
  29644. height: math.unit(175, "cm"),
  29645. weight: math.unit(60, "kg"),
  29646. name: "Dressed",
  29647. image: {
  29648. source: "./media/characters/fei/dressed.svg",
  29649. extra: 1402/1278,
  29650. bottom: 27/1429
  29651. }
  29652. },
  29653. nude: {
  29654. height: math.unit(175, "cm"),
  29655. weight: math.unit(60, "kg"),
  29656. name: "Nude",
  29657. image: {
  29658. source: "./media/characters/fei/nude.svg",
  29659. extra: 1402/1278,
  29660. bottom: 27/1429
  29661. }
  29662. },
  29663. heels: {
  29664. height: math.unit(0.466, "feet"),
  29665. name: "Heels",
  29666. image: {
  29667. source: "./media/characters/fei/heels.svg",
  29668. extra: 156/152,
  29669. bottom: 28/184
  29670. }
  29671. },
  29672. },
  29673. [
  29674. {
  29675. name: "Mortal",
  29676. height: math.unit(175, "cm")
  29677. },
  29678. {
  29679. name: "Normal",
  29680. height: math.unit(3500, "m")
  29681. },
  29682. {
  29683. name: "Stroll",
  29684. height: math.unit(18.4, "km"),
  29685. default: true
  29686. },
  29687. {
  29688. name: "Showoff",
  29689. height: math.unit(175, "km")
  29690. },
  29691. ]
  29692. ))
  29693. characterMakers.push(() => makeCharacter(
  29694. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29695. {
  29696. front: {
  29697. height: math.unit(7, "feet"),
  29698. weight: math.unit(1000, "kg"),
  29699. name: "Front",
  29700. image: {
  29701. source: "./media/characters/edrax/front.svg",
  29702. extra: 2838 / 2550,
  29703. bottom: 130 / 2968
  29704. }
  29705. },
  29706. },
  29707. [
  29708. {
  29709. name: "Small",
  29710. height: math.unit(7, "feet")
  29711. },
  29712. {
  29713. name: "Normal",
  29714. height: math.unit(1500, "meters")
  29715. },
  29716. {
  29717. name: "Mega",
  29718. height: math.unit(12000000, "km"),
  29719. default: true
  29720. },
  29721. {
  29722. name: "Megamacro",
  29723. height: math.unit(10600000, "lightyears")
  29724. },
  29725. {
  29726. name: "Hypermacro",
  29727. height: math.unit(256, "yottameters")
  29728. },
  29729. ]
  29730. ))
  29731. characterMakers.push(() => makeCharacter(
  29732. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29733. {
  29734. front: {
  29735. height: math.unit(10, "feet"),
  29736. weight: math.unit(750, "lb"),
  29737. name: "Front",
  29738. image: {
  29739. source: "./media/characters/clove/front.svg",
  29740. extra: 1918/1751,
  29741. bottom: 52/1970
  29742. }
  29743. },
  29744. back: {
  29745. height: math.unit(10, "feet"),
  29746. weight: math.unit(750, "lb"),
  29747. name: "Back",
  29748. image: {
  29749. source: "./media/characters/clove/back.svg",
  29750. extra: 1912/1747,
  29751. bottom: 50/1962
  29752. }
  29753. },
  29754. },
  29755. [
  29756. {
  29757. name: "Normal",
  29758. height: math.unit(10, "feet"),
  29759. default: true
  29760. },
  29761. ]
  29762. ))
  29763. characterMakers.push(() => makeCharacter(
  29764. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29765. {
  29766. front: {
  29767. height: math.unit(4, "feet"),
  29768. weight: math.unit(50, "lb"),
  29769. name: "Front",
  29770. image: {
  29771. source: "./media/characters/alex-rabbit/front.svg",
  29772. extra: 507 / 458,
  29773. bottom: 18.5 / 527
  29774. }
  29775. },
  29776. back: {
  29777. height: math.unit(4, "feet"),
  29778. weight: math.unit(50, "lb"),
  29779. name: "Back",
  29780. image: {
  29781. source: "./media/characters/alex-rabbit/back.svg",
  29782. extra: 502 / 460,
  29783. bottom: 18.9 / 521
  29784. }
  29785. },
  29786. },
  29787. [
  29788. {
  29789. name: "Normal",
  29790. height: math.unit(4, "feet"),
  29791. default: true
  29792. },
  29793. ]
  29794. ))
  29795. characterMakers.push(() => makeCharacter(
  29796. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29797. {
  29798. front: {
  29799. height: math.unit(1 + 3 / 12, "feet"),
  29800. weight: math.unit(80, "lb"),
  29801. name: "Front",
  29802. image: {
  29803. source: "./media/characters/zander-rose/front.svg",
  29804. extra: 916 / 797,
  29805. bottom: 17 / 933
  29806. }
  29807. },
  29808. back: {
  29809. height: math.unit(1 + 3 / 12, "feet"),
  29810. weight: math.unit(80, "lb"),
  29811. name: "Back",
  29812. image: {
  29813. source: "./media/characters/zander-rose/back.svg",
  29814. extra: 903 / 779,
  29815. bottom: 31 / 934
  29816. }
  29817. },
  29818. },
  29819. [
  29820. {
  29821. name: "Normal",
  29822. height: math.unit(1 + 3 / 12, "feet"),
  29823. default: true
  29824. },
  29825. ]
  29826. ))
  29827. characterMakers.push(() => makeCharacter(
  29828. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29829. {
  29830. anthro: {
  29831. height: math.unit(6, "feet"),
  29832. weight: math.unit(150, "lb"),
  29833. name: "Anthro",
  29834. image: {
  29835. source: "./media/characters/razz/anthro.svg",
  29836. extra: 1437 / 1343,
  29837. bottom: 48 / 1485
  29838. }
  29839. },
  29840. feral: {
  29841. height: math.unit(6, "feet"),
  29842. weight: math.unit(150, "lb"),
  29843. name: "Feral",
  29844. image: {
  29845. source: "./media/characters/razz/feral.svg",
  29846. extra: 2569 / 1385,
  29847. bottom: 95 / 2664
  29848. }
  29849. },
  29850. },
  29851. [
  29852. {
  29853. name: "Normal",
  29854. height: math.unit(6, "feet"),
  29855. default: true
  29856. },
  29857. ]
  29858. ))
  29859. characterMakers.push(() => makeCharacter(
  29860. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29861. {
  29862. front: {
  29863. height: math.unit(9 + 4 / 12, "feet"),
  29864. weight: math.unit(500, "lb"),
  29865. name: "Front",
  29866. image: {
  29867. source: "./media/characters/morrigan/front.svg",
  29868. extra: 2707 / 2579,
  29869. bottom: 156 / 2863
  29870. }
  29871. },
  29872. },
  29873. [
  29874. {
  29875. name: "Normal",
  29876. height: math.unit(9 + 4 / 12, "feet"),
  29877. default: true
  29878. },
  29879. ]
  29880. ))
  29881. characterMakers.push(() => makeCharacter(
  29882. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29883. {
  29884. front: {
  29885. height: math.unit(5, "stories"),
  29886. weight: math.unit(4000, "lb"),
  29887. name: "Front",
  29888. image: {
  29889. source: "./media/characters/jenene/front.svg",
  29890. extra: 1780 / 1710,
  29891. bottom: 57 / 1837
  29892. }
  29893. },
  29894. },
  29895. [
  29896. {
  29897. name: "Normal",
  29898. height: math.unit(5, "stories"),
  29899. default: true
  29900. },
  29901. ]
  29902. ))
  29903. characterMakers.push(() => makeCharacter(
  29904. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29905. {
  29906. taurSfw: {
  29907. height: math.unit(10, "meters"),
  29908. weight: math.unit(17500, "kg"),
  29909. name: "Taur",
  29910. image: {
  29911. source: "./media/characters/faey/taur-sfw.svg",
  29912. extra: 1200 / 968,
  29913. bottom: 41 / 1241
  29914. }
  29915. },
  29916. chestmaw: {
  29917. height: math.unit(2.01, "meters"),
  29918. name: "Chestmaw",
  29919. image: {
  29920. source: "./media/characters/faey/chestmaw.svg"
  29921. }
  29922. },
  29923. foot: {
  29924. height: math.unit(2.43, "meters"),
  29925. name: "Foot",
  29926. image: {
  29927. source: "./media/characters/faey/foot.svg"
  29928. }
  29929. },
  29930. jaws: {
  29931. height: math.unit(1.66, "meters"),
  29932. name: "Jaws",
  29933. image: {
  29934. source: "./media/characters/faey/jaws.svg"
  29935. }
  29936. },
  29937. tongues: {
  29938. height: math.unit(2.01, "meters"),
  29939. name: "Tongues",
  29940. image: {
  29941. source: "./media/characters/faey/tongues.svg"
  29942. }
  29943. },
  29944. },
  29945. [
  29946. {
  29947. name: "Small",
  29948. height: math.unit(10, "meters"),
  29949. default: true
  29950. },
  29951. {
  29952. name: "Big",
  29953. height: math.unit(500000, "km")
  29954. },
  29955. ]
  29956. ))
  29957. characterMakers.push(() => makeCharacter(
  29958. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29959. {
  29960. front: {
  29961. height: math.unit(7, "feet"),
  29962. weight: math.unit(275, "lb"),
  29963. name: "Front",
  29964. image: {
  29965. source: "./media/characters/roku/front.svg",
  29966. extra: 903 / 878,
  29967. bottom: 37 / 940
  29968. }
  29969. },
  29970. },
  29971. [
  29972. {
  29973. name: "Normal",
  29974. height: math.unit(7, "feet"),
  29975. default: true
  29976. },
  29977. {
  29978. name: "Macro",
  29979. height: math.unit(500, "feet")
  29980. },
  29981. {
  29982. name: "Megamacro",
  29983. height: math.unit(200, "miles")
  29984. },
  29985. ]
  29986. ))
  29987. characterMakers.push(() => makeCharacter(
  29988. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29989. {
  29990. front: {
  29991. height: math.unit(6 + 2 / 12, "feet"),
  29992. weight: math.unit(150, "lb"),
  29993. name: "Front",
  29994. image: {
  29995. source: "./media/characters/lira/front.svg",
  29996. extra: 1727 / 1605,
  29997. bottom: 26 / 1753
  29998. }
  29999. },
  30000. back: {
  30001. height: math.unit(6 + 2 / 12, "feet"),
  30002. weight: math.unit(150, "lb"),
  30003. name: "Back",
  30004. image: {
  30005. source: "./media/characters/lira/back.svg",
  30006. extra: 1713/1621,
  30007. bottom: 20/1733
  30008. }
  30009. },
  30010. hand: {
  30011. height: math.unit(0.75, "feet"),
  30012. name: "Hand",
  30013. image: {
  30014. source: "./media/characters/lira/hand.svg"
  30015. }
  30016. },
  30017. maw: {
  30018. height: math.unit(0.65, "feet"),
  30019. name: "Maw",
  30020. image: {
  30021. source: "./media/characters/lira/maw.svg"
  30022. }
  30023. },
  30024. pawDigi: {
  30025. height: math.unit(1.6, "feet"),
  30026. name: "Paw Digi",
  30027. image: {
  30028. source: "./media/characters/lira/paw-digi.svg"
  30029. }
  30030. },
  30031. pawPlanti: {
  30032. height: math.unit(1.4, "feet"),
  30033. name: "Paw Planti",
  30034. image: {
  30035. source: "./media/characters/lira/paw-planti.svg"
  30036. }
  30037. },
  30038. },
  30039. [
  30040. {
  30041. name: "Normal",
  30042. height: math.unit(6 + 2 / 12, "feet"),
  30043. default: true
  30044. },
  30045. {
  30046. name: "Macro",
  30047. height: math.unit(100, "feet")
  30048. },
  30049. {
  30050. name: "Macro²",
  30051. height: math.unit(1600, "feet")
  30052. },
  30053. {
  30054. name: "Planetary",
  30055. height: math.unit(20, "earths")
  30056. },
  30057. ]
  30058. ))
  30059. characterMakers.push(() => makeCharacter(
  30060. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30061. {
  30062. front: {
  30063. height: math.unit(6, "feet"),
  30064. weight: math.unit(150, "lb"),
  30065. name: "Front",
  30066. image: {
  30067. source: "./media/characters/hadjet/front.svg",
  30068. extra: 1480 / 1346,
  30069. bottom: 26 / 1506
  30070. }
  30071. },
  30072. frontNsfw: {
  30073. height: math.unit(6, "feet"),
  30074. weight: math.unit(150, "lb"),
  30075. name: "Front (NSFW)",
  30076. image: {
  30077. source: "./media/characters/hadjet/front-nsfw.svg",
  30078. extra: 1440 / 1358,
  30079. bottom: 52 / 1492
  30080. }
  30081. },
  30082. },
  30083. [
  30084. {
  30085. name: "Macro",
  30086. height: math.unit(10, "stories"),
  30087. default: true
  30088. },
  30089. {
  30090. name: "Megamacro",
  30091. height: math.unit(1.5, "miles")
  30092. },
  30093. {
  30094. name: "Megamacro+",
  30095. height: math.unit(5, "miles")
  30096. },
  30097. ]
  30098. ))
  30099. characterMakers.push(() => makeCharacter(
  30100. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30101. {
  30102. side: {
  30103. height: math.unit(106, "feet"),
  30104. weight: math.unit(500, "tonnes"),
  30105. name: "Side",
  30106. image: {
  30107. source: "./media/characters/kodran/side.svg",
  30108. extra: 553 / 480,
  30109. bottom: 33 / 586
  30110. }
  30111. },
  30112. front: {
  30113. height: math.unit(132, "feet"),
  30114. weight: math.unit(500, "tonnes"),
  30115. name: "Front",
  30116. image: {
  30117. source: "./media/characters/kodran/front.svg",
  30118. extra: 667 / 643,
  30119. bottom: 42 / 709
  30120. }
  30121. },
  30122. flying: {
  30123. height: math.unit(350, "feet"),
  30124. weight: math.unit(500, "tonnes"),
  30125. name: "Flying",
  30126. image: {
  30127. source: "./media/characters/kodran/flying.svg"
  30128. }
  30129. },
  30130. foot: {
  30131. height: math.unit(33, "feet"),
  30132. name: "Foot",
  30133. image: {
  30134. source: "./media/characters/kodran/foot.svg"
  30135. }
  30136. },
  30137. footFront: {
  30138. height: math.unit(19, "feet"),
  30139. name: "Foot (Front)",
  30140. image: {
  30141. source: "./media/characters/kodran/foot-front.svg",
  30142. extra: 261 / 261,
  30143. bottom: 91 / 352
  30144. }
  30145. },
  30146. headFront: {
  30147. height: math.unit(53, "feet"),
  30148. name: "Head (Front)",
  30149. image: {
  30150. source: "./media/characters/kodran/head-front.svg"
  30151. }
  30152. },
  30153. headSide: {
  30154. height: math.unit(65, "feet"),
  30155. name: "Head (Side)",
  30156. image: {
  30157. source: "./media/characters/kodran/head-side.svg"
  30158. }
  30159. },
  30160. throat: {
  30161. height: math.unit(79, "feet"),
  30162. name: "Throat",
  30163. image: {
  30164. source: "./media/characters/kodran/throat.svg"
  30165. }
  30166. },
  30167. },
  30168. [
  30169. {
  30170. name: "Large",
  30171. height: math.unit(106, "feet"),
  30172. default: true
  30173. },
  30174. ]
  30175. ))
  30176. characterMakers.push(() => makeCharacter(
  30177. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30178. {
  30179. side: {
  30180. height: math.unit(11, "feet"),
  30181. weight: math.unit(150, "lb"),
  30182. name: "Side",
  30183. image: {
  30184. source: "./media/characters/pyxaron/side.svg",
  30185. extra: 305 / 195,
  30186. bottom: 17 / 322
  30187. }
  30188. },
  30189. },
  30190. [
  30191. {
  30192. name: "Normal",
  30193. height: math.unit(11, "feet"),
  30194. default: true
  30195. },
  30196. ]
  30197. ))
  30198. characterMakers.push(() => makeCharacter(
  30199. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30200. {
  30201. front: {
  30202. height: math.unit(6, "feet"),
  30203. weight: math.unit(150, "lb"),
  30204. name: "Front",
  30205. image: {
  30206. source: "./media/characters/meep/front.svg",
  30207. extra: 88 / 80,
  30208. bottom: 6 / 94
  30209. }
  30210. },
  30211. },
  30212. [
  30213. {
  30214. name: "Fun Sized",
  30215. height: math.unit(2, "inches"),
  30216. default: true
  30217. },
  30218. {
  30219. name: "Friend Sized",
  30220. height: math.unit(8, "inches")
  30221. },
  30222. ]
  30223. ))
  30224. characterMakers.push(() => makeCharacter(
  30225. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30226. {
  30227. front: {
  30228. height: math.unit(15, "feet"),
  30229. weight: math.unit(2500, "lb"),
  30230. name: "Front",
  30231. image: {
  30232. source: "./media/characters/holly-rabbit/front.svg",
  30233. extra: 1433 / 1233,
  30234. bottom: 125 / 1558
  30235. }
  30236. },
  30237. dick: {
  30238. height: math.unit(4.6, "feet"),
  30239. name: "Dick",
  30240. image: {
  30241. source: "./media/characters/holly-rabbit/dick.svg"
  30242. }
  30243. },
  30244. },
  30245. [
  30246. {
  30247. name: "Normal",
  30248. height: math.unit(15, "feet"),
  30249. default: true
  30250. },
  30251. {
  30252. name: "Macro",
  30253. height: math.unit(250, "feet")
  30254. },
  30255. {
  30256. name: "Macro+",
  30257. height: math.unit(2500, "feet")
  30258. },
  30259. ]
  30260. ))
  30261. characterMakers.push(() => makeCharacter(
  30262. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30263. {
  30264. front: {
  30265. height: math.unit(3.02, "meters"),
  30266. weight: math.unit(500, "kg"),
  30267. name: "Front",
  30268. image: {
  30269. source: "./media/characters/drena/front.svg",
  30270. extra: 282 / 243,
  30271. bottom: 8 / 290
  30272. }
  30273. },
  30274. side: {
  30275. height: math.unit(3.02, "meters"),
  30276. weight: math.unit(500, "kg"),
  30277. name: "Side",
  30278. image: {
  30279. source: "./media/characters/drena/side.svg",
  30280. extra: 280 / 245,
  30281. bottom: 10 / 290
  30282. }
  30283. },
  30284. back: {
  30285. height: math.unit(3.02, "meters"),
  30286. weight: math.unit(500, "kg"),
  30287. name: "Back",
  30288. image: {
  30289. source: "./media/characters/drena/back.svg",
  30290. extra: 278 / 243,
  30291. bottom: 2 / 280
  30292. }
  30293. },
  30294. foot: {
  30295. height: math.unit(0.75, "meters"),
  30296. name: "Foot",
  30297. image: {
  30298. source: "./media/characters/drena/foot.svg"
  30299. }
  30300. },
  30301. maw: {
  30302. height: math.unit(0.82, "meters"),
  30303. name: "Maw",
  30304. image: {
  30305. source: "./media/characters/drena/maw.svg"
  30306. }
  30307. },
  30308. eating: {
  30309. height: math.unit(0.75, "meters"),
  30310. name: "Eating",
  30311. image: {
  30312. source: "./media/characters/drena/eating.svg"
  30313. }
  30314. },
  30315. rump: {
  30316. height: math.unit(0.93, "meters"),
  30317. name: "Rump",
  30318. image: {
  30319. source: "./media/characters/drena/rump.svg"
  30320. }
  30321. },
  30322. },
  30323. [
  30324. {
  30325. name: "Normal",
  30326. height: math.unit(3.02, "meters"),
  30327. default: true
  30328. },
  30329. ]
  30330. ))
  30331. characterMakers.push(() => makeCharacter(
  30332. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30333. {
  30334. front: {
  30335. height: math.unit(6 + 4 / 12, "feet"),
  30336. weight: math.unit(250, "lb"),
  30337. name: "Front",
  30338. image: {
  30339. source: "./media/characters/remmyzilla/front.svg",
  30340. extra: 4033 / 3588,
  30341. bottom: 123 / 4156
  30342. }
  30343. },
  30344. back: {
  30345. height: math.unit(6 + 4 / 12, "feet"),
  30346. weight: math.unit(250, "lb"),
  30347. name: "Back",
  30348. image: {
  30349. source: "./media/characters/remmyzilla/back.svg",
  30350. extra: 2687 / 2555,
  30351. bottom: 48 / 2735
  30352. }
  30353. },
  30354. paw: {
  30355. height: math.unit(1.73, "feet"),
  30356. name: "Paw",
  30357. image: {
  30358. source: "./media/characters/remmyzilla/paw.svg"
  30359. },
  30360. extraAttributes: {
  30361. "toeSize": {
  30362. name: "Toe Size",
  30363. power: 2,
  30364. type: "area",
  30365. base: math.unit(0.0035, "m^2")
  30366. },
  30367. "padSize": {
  30368. name: "Pad Size",
  30369. power: 2,
  30370. type: "area",
  30371. base: math.unit(0.015, "m^2")
  30372. },
  30373. "pawsize": {
  30374. name: "Paw Size",
  30375. power: 2,
  30376. type: "area",
  30377. base: math.unit(0.072, "m^2")
  30378. },
  30379. }
  30380. },
  30381. maw: {
  30382. height: math.unit(1.73, "feet"),
  30383. name: "Maw",
  30384. image: {
  30385. source: "./media/characters/remmyzilla/maw.svg"
  30386. }
  30387. },
  30388. },
  30389. [
  30390. {
  30391. name: "Normal",
  30392. height: math.unit(6 + 4 / 12, "feet")
  30393. },
  30394. {
  30395. name: "Minimacro",
  30396. height: math.unit(12 + 8 / 12, "feet")
  30397. },
  30398. {
  30399. name: "Normal",
  30400. height: math.unit(640, "feet"),
  30401. default: true
  30402. },
  30403. {
  30404. name: "Megamacro",
  30405. height: math.unit(6400, "feet")
  30406. },
  30407. {
  30408. name: "Gigamacro",
  30409. height: math.unit(64000, "miles")
  30410. },
  30411. ]
  30412. ))
  30413. characterMakers.push(() => makeCharacter(
  30414. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30415. {
  30416. front: {
  30417. height: math.unit(2.5, "meters"),
  30418. weight: math.unit(300, "lb"),
  30419. name: "Front",
  30420. image: {
  30421. source: "./media/characters/lawrence/front.svg",
  30422. extra: 357 / 335,
  30423. bottom: 30 / 387
  30424. }
  30425. },
  30426. back: {
  30427. height: math.unit(2.5, "meters"),
  30428. weight: math.unit(300, "lb"),
  30429. name: "Back",
  30430. image: {
  30431. source: "./media/characters/lawrence/back.svg",
  30432. extra: 357 / 338,
  30433. bottom: 16 / 373
  30434. }
  30435. },
  30436. head: {
  30437. height: math.unit(0.9, "meter"),
  30438. name: "Head",
  30439. image: {
  30440. source: "./media/characters/lawrence/head.svg"
  30441. }
  30442. },
  30443. maw: {
  30444. height: math.unit(0.7, "meter"),
  30445. name: "Maw",
  30446. image: {
  30447. source: "./media/characters/lawrence/maw.svg"
  30448. }
  30449. },
  30450. footBottom: {
  30451. height: math.unit(0.5, "meter"),
  30452. name: "Foot (Bottom)",
  30453. image: {
  30454. source: "./media/characters/lawrence/foot-bottom.svg"
  30455. }
  30456. },
  30457. footTop: {
  30458. height: math.unit(0.5, "meter"),
  30459. name: "Foot (Top)",
  30460. image: {
  30461. source: "./media/characters/lawrence/foot-top.svg"
  30462. }
  30463. },
  30464. },
  30465. [
  30466. {
  30467. name: "Normal",
  30468. height: math.unit(2.5, "meters"),
  30469. default: true
  30470. },
  30471. {
  30472. name: "Macro",
  30473. height: math.unit(95, "meters")
  30474. },
  30475. {
  30476. name: "Megamacro",
  30477. height: math.unit(150, "km")
  30478. },
  30479. ]
  30480. ))
  30481. characterMakers.push(() => makeCharacter(
  30482. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30483. {
  30484. front: {
  30485. height: math.unit(4.2, "meters"),
  30486. name: "Front",
  30487. image: {
  30488. source: "./media/characters/sydney/front.svg",
  30489. extra: 1323 / 1277,
  30490. bottom: 111 / 1434
  30491. }
  30492. },
  30493. },
  30494. [
  30495. {
  30496. name: "Normal",
  30497. height: math.unit(4.2, "meters"),
  30498. default: true
  30499. },
  30500. ]
  30501. ))
  30502. characterMakers.push(() => makeCharacter(
  30503. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30504. {
  30505. back: {
  30506. height: math.unit(201, "feet"),
  30507. name: "Back",
  30508. image: {
  30509. source: "./media/characters/jessica/back.svg",
  30510. extra: 273 / 259,
  30511. bottom: 7 / 280
  30512. }
  30513. },
  30514. },
  30515. [
  30516. {
  30517. name: "Normal",
  30518. height: math.unit(201, "feet"),
  30519. default: true
  30520. },
  30521. {
  30522. name: "Megamacro",
  30523. height: math.unit(8, "miles")
  30524. },
  30525. ]
  30526. ))
  30527. characterMakers.push(() => makeCharacter(
  30528. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30529. {
  30530. side: {
  30531. height: math.unit(5.6, "m"),
  30532. weight: math.unit(8000, "kg"),
  30533. name: "Side",
  30534. image: {
  30535. source: "./media/characters/victoria/side.svg",
  30536. extra: 1542/1229,
  30537. bottom: 124/1666
  30538. }
  30539. },
  30540. maw: {
  30541. height: math.unit(7.14, "feet"),
  30542. name: "Maw",
  30543. image: {
  30544. source: "./media/characters/victoria/maw.svg"
  30545. }
  30546. },
  30547. },
  30548. [
  30549. {
  30550. name: "Normal",
  30551. height: math.unit(5.6, "m"),
  30552. default: true
  30553. },
  30554. ]
  30555. ))
  30556. characterMakers.push(() => makeCharacter(
  30557. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30558. {
  30559. front: {
  30560. height: math.unit(5 + 6 / 12, "feet"),
  30561. name: "Front",
  30562. image: {
  30563. source: "./media/characters/cat/front.svg",
  30564. extra: 1449/1295,
  30565. bottom: 34/1483
  30566. },
  30567. form: "cat",
  30568. default: true
  30569. },
  30570. back: {
  30571. height: math.unit(5 + 6 / 12, "feet"),
  30572. name: "Back",
  30573. image: {
  30574. source: "./media/characters/cat/back.svg",
  30575. extra: 1466/1301,
  30576. bottom: 19/1485
  30577. },
  30578. form: "cat"
  30579. },
  30580. taur: {
  30581. height: math.unit(7, "feet"),
  30582. name: "Taur",
  30583. image: {
  30584. source: "./media/characters/cat/taur.svg",
  30585. extra: 1389/1233,
  30586. bottom: 83/1472
  30587. },
  30588. form: "taur",
  30589. default: true
  30590. },
  30591. lucarioFront: {
  30592. height: math.unit(4, "feet"),
  30593. name: "Lucario (Front)",
  30594. image: {
  30595. source: "./media/characters/cat/lucario-front.svg",
  30596. extra: 1149/1019,
  30597. bottom: 84/1233
  30598. },
  30599. form: "lucario",
  30600. default: true
  30601. },
  30602. lucarioBack: {
  30603. height: math.unit(4, "feet"),
  30604. name: "Lucario (Back)",
  30605. image: {
  30606. source: "./media/characters/cat/lucario-back.svg",
  30607. extra: 1190/1059,
  30608. bottom: 33/1223
  30609. },
  30610. form: "lucario"
  30611. },
  30612. megaLucario: {
  30613. height: math.unit(4, "feet"),
  30614. name: "Mega Lucario",
  30615. image: {
  30616. source: "./media/characters/cat/mega-lucario.svg",
  30617. extra: 1515 / 1319,
  30618. bottom: 63 / 1578
  30619. },
  30620. form: "lucario"
  30621. },
  30622. nickit: {
  30623. height: math.unit(2, "feet"),
  30624. name: "Nickit",
  30625. image: {
  30626. source: "./media/characters/cat/nickit.svg",
  30627. extra: 1980 / 1585,
  30628. bottom: 102 / 2082
  30629. },
  30630. form: "nickit",
  30631. default: true
  30632. },
  30633. lopunnyFront: {
  30634. height: math.unit(5, "feet"),
  30635. name: "Lopunny (Front)",
  30636. image: {
  30637. source: "./media/characters/cat/lopunny-front.svg",
  30638. extra: 1782 / 1469,
  30639. bottom: 38 / 1820
  30640. },
  30641. form: "lopunny",
  30642. default: true
  30643. },
  30644. lopunnyBack: {
  30645. height: math.unit(5, "feet"),
  30646. name: "Lopunny (Back)",
  30647. image: {
  30648. source: "./media/characters/cat/lopunny-back.svg",
  30649. extra: 1660 / 1490,
  30650. bottom: 25 / 1685
  30651. },
  30652. form: "lopunny"
  30653. },
  30654. },
  30655. [
  30656. {
  30657. name: "Really small",
  30658. height: math.unit(1, "nm")
  30659. },
  30660. {
  30661. name: "Micro",
  30662. height: math.unit(5, "inches")
  30663. },
  30664. {
  30665. name: "Normal",
  30666. height: math.unit(5 + 6 / 12, "feet"),
  30667. default: true
  30668. },
  30669. {
  30670. name: "Macro",
  30671. height: math.unit(50, "feet")
  30672. },
  30673. {
  30674. name: "Macro+",
  30675. height: math.unit(150, "feet")
  30676. },
  30677. {
  30678. name: "Megamacro",
  30679. height: math.unit(100, "miles")
  30680. },
  30681. ]
  30682. ))
  30683. characterMakers.push(() => makeCharacter(
  30684. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30685. {
  30686. front: {
  30687. height: math.unit(63.4, "meters"),
  30688. weight: math.unit(3.28349e+6, "kilograms"),
  30689. name: "Front",
  30690. image: {
  30691. source: "./media/characters/kirina-violet/front.svg",
  30692. extra: 2812 / 2725,
  30693. bottom: 0 / 2812
  30694. }
  30695. },
  30696. back: {
  30697. height: math.unit(63.4, "meters"),
  30698. weight: math.unit(3.28349e+6, "kilograms"),
  30699. name: "Back",
  30700. image: {
  30701. source: "./media/characters/kirina-violet/back.svg",
  30702. extra: 2812 / 2725,
  30703. bottom: 0 / 2812
  30704. }
  30705. },
  30706. mouth: {
  30707. height: math.unit(4.35, "meters"),
  30708. name: "Mouth",
  30709. image: {
  30710. source: "./media/characters/kirina-violet/mouth.svg"
  30711. }
  30712. },
  30713. paw: {
  30714. height: math.unit(5.6, "meters"),
  30715. name: "Paw",
  30716. image: {
  30717. source: "./media/characters/kirina-violet/paw.svg"
  30718. }
  30719. },
  30720. tail: {
  30721. height: math.unit(18, "meters"),
  30722. name: "Tail",
  30723. image: {
  30724. source: "./media/characters/kirina-violet/tail.svg"
  30725. }
  30726. },
  30727. },
  30728. [
  30729. {
  30730. name: "Macro",
  30731. height: math.unit(63.4, "meters"),
  30732. default: true
  30733. },
  30734. ]
  30735. ))
  30736. characterMakers.push(() => makeCharacter(
  30737. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30738. {
  30739. front: {
  30740. height: math.unit(75, "feet"),
  30741. name: "Front",
  30742. image: {
  30743. source: "./media/characters/cat-gigachu/front.svg",
  30744. extra: 1239/1027,
  30745. bottom: 32/1271
  30746. }
  30747. },
  30748. back: {
  30749. height: math.unit(75, "feet"),
  30750. name: "Back",
  30751. image: {
  30752. source: "./media/characters/cat-gigachu/back.svg",
  30753. extra: 1229/1030,
  30754. bottom: 9/1238
  30755. }
  30756. },
  30757. },
  30758. [
  30759. {
  30760. name: "Dynamax",
  30761. height: math.unit(75, "feet"),
  30762. default: true
  30763. },
  30764. ]
  30765. ))
  30766. characterMakers.push(() => makeCharacter(
  30767. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30768. {
  30769. front: {
  30770. height: math.unit(6, "feet"),
  30771. weight: math.unit(150, "lb"),
  30772. name: "Front",
  30773. image: {
  30774. source: "./media/characters/sfaiyan/front.svg",
  30775. extra: 999 / 978,
  30776. bottom: 5 / 1004
  30777. }
  30778. },
  30779. },
  30780. [
  30781. {
  30782. name: "Normal",
  30783. height: math.unit(1.82, "meters")
  30784. },
  30785. {
  30786. name: "Giant",
  30787. height: math.unit(2.27, "km"),
  30788. default: true
  30789. },
  30790. ]
  30791. ))
  30792. characterMakers.push(() => makeCharacter(
  30793. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30794. {
  30795. front: {
  30796. height: math.unit(179, "cm"),
  30797. weight: math.unit(100, "kg"),
  30798. name: "Front",
  30799. image: {
  30800. source: "./media/characters/raunehkeli/front.svg",
  30801. extra: 1934 / 1926,
  30802. bottom: 0 / 1934
  30803. }
  30804. },
  30805. },
  30806. [
  30807. {
  30808. name: "Normal",
  30809. height: math.unit(179, "cm")
  30810. },
  30811. {
  30812. name: "Maximum",
  30813. height: math.unit(575, "meters"),
  30814. default: true
  30815. },
  30816. ]
  30817. ))
  30818. characterMakers.push(() => makeCharacter(
  30819. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30820. {
  30821. front: {
  30822. height: math.unit(6, "feet"),
  30823. weight: math.unit(150, "lb"),
  30824. name: "Front",
  30825. image: {
  30826. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30827. extra: 2625 / 2518,
  30828. bottom: 60 / 2685
  30829. }
  30830. },
  30831. },
  30832. [
  30833. {
  30834. name: "Normal",
  30835. height: math.unit(6 + 2 / 12, "feet")
  30836. },
  30837. {
  30838. name: "Macro",
  30839. height: math.unit(1180, "feet"),
  30840. default: true
  30841. },
  30842. ]
  30843. ))
  30844. characterMakers.push(() => makeCharacter(
  30845. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30846. {
  30847. front: {
  30848. height: math.unit(5 + 6 / 12, "feet"),
  30849. weight: math.unit(108, "lb"),
  30850. name: "Front",
  30851. image: {
  30852. source: "./media/characters/lilith-zott/front.svg",
  30853. extra: 2510 / 2238,
  30854. bottom: 100 / 2610
  30855. }
  30856. },
  30857. frontDressed: {
  30858. height: math.unit(5 + 6 / 12, "feet"),
  30859. weight: math.unit(108, "lb"),
  30860. name: "Front (Dressed)",
  30861. image: {
  30862. source: "./media/characters/lilith-zott/front-dressed.svg",
  30863. extra: 2510 / 2238,
  30864. bottom: 100 / 2610
  30865. }
  30866. },
  30867. },
  30868. [
  30869. {
  30870. name: "Normal",
  30871. height: math.unit(5 + 6 / 12, "feet")
  30872. },
  30873. {
  30874. name: "Macro",
  30875. height: math.unit(1030, "feet"),
  30876. default: true
  30877. },
  30878. ]
  30879. ))
  30880. characterMakers.push(() => makeCharacter(
  30881. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30882. {
  30883. front: {
  30884. height: math.unit(6, "feet"),
  30885. weight: math.unit(150, "lb"),
  30886. name: "Front",
  30887. image: {
  30888. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30889. extra: 2567 / 2435,
  30890. bottom: 39 / 2606
  30891. }
  30892. },
  30893. frontSuper: {
  30894. height: math.unit(6, "feet"),
  30895. name: "Front (Super)",
  30896. image: {
  30897. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30898. extra: 2567 / 2435,
  30899. bottom: 39 / 2606
  30900. }
  30901. },
  30902. },
  30903. [
  30904. {
  30905. name: "Normal",
  30906. height: math.unit(5 + 10 / 12, "feet")
  30907. },
  30908. {
  30909. name: "Macro",
  30910. height: math.unit(1100, "feet"),
  30911. default: true
  30912. },
  30913. ]
  30914. ))
  30915. characterMakers.push(() => makeCharacter(
  30916. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30917. {
  30918. front: {
  30919. height: math.unit(100, "miles"),
  30920. name: "Front",
  30921. image: {
  30922. source: "./media/characters/sona/front.svg",
  30923. extra: 2433 / 2201,
  30924. bottom: 53 / 2486
  30925. }
  30926. },
  30927. foot: {
  30928. height: math.unit(16.1, "miles"),
  30929. name: "Foot",
  30930. image: {
  30931. source: "./media/characters/sona/foot.svg"
  30932. }
  30933. },
  30934. },
  30935. [
  30936. {
  30937. name: "Macro",
  30938. height: math.unit(100, "miles"),
  30939. default: true
  30940. },
  30941. ]
  30942. ))
  30943. characterMakers.push(() => makeCharacter(
  30944. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30945. {
  30946. front: {
  30947. height: math.unit(6, "feet"),
  30948. weight: math.unit(150, "lb"),
  30949. name: "Front",
  30950. image: {
  30951. source: "./media/characters/bailey/front.svg",
  30952. extra: 1778 / 1724,
  30953. bottom: 30 / 1808
  30954. }
  30955. },
  30956. },
  30957. [
  30958. {
  30959. name: "Micro",
  30960. height: math.unit(4, "inches")
  30961. },
  30962. {
  30963. name: "Normal",
  30964. height: math.unit(5 + 5 / 12, "feet"),
  30965. default: true
  30966. },
  30967. {
  30968. name: "Macro",
  30969. height: math.unit(250, "feet")
  30970. },
  30971. {
  30972. name: "Megamacro",
  30973. height: math.unit(100, "miles")
  30974. },
  30975. ]
  30976. ))
  30977. characterMakers.push(() => makeCharacter(
  30978. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30979. {
  30980. front: {
  30981. height: math.unit(5 + 2 / 12, "feet"),
  30982. weight: math.unit(120, "lb"),
  30983. name: "Front",
  30984. image: {
  30985. source: "./media/characters/snaps/front.svg",
  30986. extra: 2370 / 2177,
  30987. bottom: 48 / 2418
  30988. }
  30989. },
  30990. back: {
  30991. height: math.unit(5 + 2 / 12, "feet"),
  30992. weight: math.unit(120, "lb"),
  30993. name: "Back",
  30994. image: {
  30995. source: "./media/characters/snaps/back.svg",
  30996. extra: 2408 / 2258,
  30997. bottom: 15 / 2423
  30998. }
  30999. },
  31000. },
  31001. [
  31002. {
  31003. name: "Micro",
  31004. height: math.unit(9, "inches")
  31005. },
  31006. {
  31007. name: "Normal",
  31008. height: math.unit(5 + 2 / 12, "feet"),
  31009. default: true
  31010. },
  31011. {
  31012. name: "Mini Macro",
  31013. height: math.unit(10, "feet")
  31014. },
  31015. ]
  31016. ))
  31017. characterMakers.push(() => makeCharacter(
  31018. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31019. {
  31020. front: {
  31021. height: math.unit(1.8, "meters"),
  31022. weight: math.unit(85, "kg"),
  31023. name: "Front",
  31024. image: {
  31025. source: "./media/characters/azteck/front.svg",
  31026. extra: 2815 / 2625,
  31027. bottom: 89 / 2904
  31028. }
  31029. },
  31030. back: {
  31031. height: math.unit(1.8, "meters"),
  31032. weight: math.unit(85, "kg"),
  31033. name: "Back",
  31034. image: {
  31035. source: "./media/characters/azteck/back.svg",
  31036. extra: 2856 / 2648,
  31037. bottom: 85 / 2941
  31038. }
  31039. },
  31040. frontDressed: {
  31041. height: math.unit(1.8, "meters"),
  31042. weight: math.unit(85, "kg"),
  31043. name: "Front (Dressed)",
  31044. image: {
  31045. source: "./media/characters/azteck/front-dressed.svg",
  31046. extra: 2147 / 2003,
  31047. bottom: 68 / 2215
  31048. }
  31049. },
  31050. head: {
  31051. height: math.unit(0.47, "meters"),
  31052. weight: math.unit(85, "kg"),
  31053. name: "Head",
  31054. image: {
  31055. source: "./media/characters/azteck/head.svg"
  31056. }
  31057. },
  31058. },
  31059. [
  31060. {
  31061. name: "Bite sized",
  31062. height: math.unit(16, "cm")
  31063. },
  31064. {
  31065. name: "Normal",
  31066. height: math.unit(1.8, "meters"),
  31067. default: true
  31068. },
  31069. ]
  31070. ))
  31071. characterMakers.push(() => makeCharacter(
  31072. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31073. {
  31074. front: {
  31075. height: math.unit(6, "feet"),
  31076. weight: math.unit(150, "lb"),
  31077. name: "Front",
  31078. image: {
  31079. source: "./media/characters/pidge/front.svg",
  31080. extra: 1936/1820,
  31081. bottom: 0/1936
  31082. }
  31083. },
  31084. back: {
  31085. height: math.unit(6, "feet"),
  31086. weight: math.unit(150, "lb"),
  31087. name: "Back",
  31088. image: {
  31089. source: "./media/characters/pidge/back.svg",
  31090. extra: 1938/1843,
  31091. bottom: 0/1938
  31092. }
  31093. },
  31094. casual: {
  31095. height: math.unit(6, "feet"),
  31096. weight: math.unit(150, "lb"),
  31097. name: "Casual",
  31098. image: {
  31099. source: "./media/characters/pidge/casual.svg",
  31100. extra: 1936/1820,
  31101. bottom: 0/1936
  31102. }
  31103. },
  31104. tech: {
  31105. height: math.unit(6, "feet"),
  31106. weight: math.unit(150, "lb"),
  31107. name: "Tech",
  31108. image: {
  31109. source: "./media/characters/pidge/tech.svg",
  31110. extra: 1802/1682,
  31111. bottom: 0/1802
  31112. }
  31113. },
  31114. head: {
  31115. height: math.unit(1.61, "feet"),
  31116. name: "Head",
  31117. image: {
  31118. source: "./media/characters/pidge/head.svg"
  31119. }
  31120. },
  31121. collar: {
  31122. height: math.unit(0.82, "feet"),
  31123. name: "Collar",
  31124. image: {
  31125. source: "./media/characters/pidge/collar.svg"
  31126. }
  31127. },
  31128. },
  31129. [
  31130. {
  31131. name: "Macro",
  31132. height: math.unit(2, "mile"),
  31133. default: true
  31134. },
  31135. {
  31136. name: "PUPPY",
  31137. height: math.unit(20, "miles")
  31138. },
  31139. ]
  31140. ))
  31141. characterMakers.push(() => makeCharacter(
  31142. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31143. {
  31144. front: {
  31145. height: math.unit(6, "feet"),
  31146. weight: math.unit(150, "lb"),
  31147. name: "Front",
  31148. image: {
  31149. source: "./media/characters/en/front.svg",
  31150. extra: 1697 / 1563,
  31151. bottom: 103 / 1800
  31152. }
  31153. },
  31154. back: {
  31155. height: math.unit(6, "feet"),
  31156. weight: math.unit(150, "lb"),
  31157. name: "Back",
  31158. image: {
  31159. source: "./media/characters/en/back.svg",
  31160. extra: 1700 / 1570,
  31161. bottom: 51 / 1751
  31162. }
  31163. },
  31164. frontDressed: {
  31165. height: math.unit(6, "feet"),
  31166. weight: math.unit(150, "lb"),
  31167. name: "Front (Dressed)",
  31168. image: {
  31169. source: "./media/characters/en/front-dressed.svg",
  31170. extra: 1697 / 1563,
  31171. bottom: 103 / 1800
  31172. }
  31173. },
  31174. backDressed: {
  31175. height: math.unit(6, "feet"),
  31176. weight: math.unit(150, "lb"),
  31177. name: "Back (Dressed)",
  31178. image: {
  31179. source: "./media/characters/en/back-dressed.svg",
  31180. extra: 1700 / 1570,
  31181. bottom: 51 / 1751
  31182. }
  31183. },
  31184. },
  31185. [
  31186. {
  31187. name: "Macro",
  31188. height: math.unit(210, "feet"),
  31189. default: true
  31190. },
  31191. ]
  31192. ))
  31193. characterMakers.push(() => makeCharacter(
  31194. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31195. {
  31196. front: {
  31197. height: math.unit(6, "feet"),
  31198. weight: math.unit(150, "lb"),
  31199. name: "Front",
  31200. image: {
  31201. source: "./media/characters/haze-orris/front.svg",
  31202. extra: 3975 / 3525,
  31203. bottom: 137 / 4112
  31204. }
  31205. },
  31206. },
  31207. [
  31208. {
  31209. name: "Micro",
  31210. height: math.unit(150, "mm"),
  31211. default: true
  31212. },
  31213. ]
  31214. ))
  31215. characterMakers.push(() => makeCharacter(
  31216. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31217. {
  31218. front: {
  31219. height: math.unit(6, "feet"),
  31220. weight: math.unit(150, "lb"),
  31221. name: "Front",
  31222. image: {
  31223. source: "./media/characters/casselene-yaro/front.svg",
  31224. extra: 4721 / 4541,
  31225. bottom: 82 / 4803
  31226. }
  31227. },
  31228. back: {
  31229. height: math.unit(6, "feet"),
  31230. weight: math.unit(150, "lb"),
  31231. name: "Back",
  31232. image: {
  31233. source: "./media/characters/casselene-yaro/back.svg",
  31234. extra: 4569 / 4377,
  31235. bottom: 69 / 4638
  31236. }
  31237. },
  31238. dressed: {
  31239. height: math.unit(6, "feet"),
  31240. weight: math.unit(150, "lb"),
  31241. name: "Dressed",
  31242. image: {
  31243. source: "./media/characters/casselene-yaro/dressed.svg",
  31244. extra: 4721 / 4541,
  31245. bottom: 82 / 4803
  31246. }
  31247. },
  31248. maw: {
  31249. height: math.unit(1, "feet"),
  31250. name: "Maw",
  31251. image: {
  31252. source: "./media/characters/casselene-yaro/maw.svg"
  31253. }
  31254. },
  31255. },
  31256. [
  31257. {
  31258. name: "Macro",
  31259. height: math.unit(190, "feet"),
  31260. default: true
  31261. },
  31262. ]
  31263. ))
  31264. characterMakers.push(() => makeCharacter(
  31265. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31266. {
  31267. front: {
  31268. height: math.unit(10, "feet"),
  31269. weight: math.unit(15015, "lb"),
  31270. name: "Front",
  31271. image: {
  31272. source: "./media/characters/platine/front.svg",
  31273. extra: 1741/1650,
  31274. bottom: 84/1825
  31275. }
  31276. },
  31277. side: {
  31278. height: math.unit(10, "feet"),
  31279. weight: math.unit(15015, "lb"),
  31280. name: "Side",
  31281. image: {
  31282. source: "./media/characters/platine/side.svg",
  31283. extra: 1790/1705,
  31284. bottom: 29/1819
  31285. }
  31286. },
  31287. },
  31288. [
  31289. {
  31290. name: "Normal",
  31291. height: math.unit(10, "feet"),
  31292. default: true
  31293. },
  31294. {
  31295. name: "Macro",
  31296. height: math.unit(100, "feet")
  31297. },
  31298. {
  31299. name: "Megamacro",
  31300. height: math.unit(1000, "feet")
  31301. },
  31302. ]
  31303. ))
  31304. characterMakers.push(() => makeCharacter(
  31305. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31306. {
  31307. front: {
  31308. height: math.unit(15 + 5 / 12, "feet"),
  31309. weight: math.unit(4600, "lb"),
  31310. name: "Front",
  31311. image: {
  31312. source: "./media/characters/neapolitan-ananassa/front.svg",
  31313. extra: 2903 / 2736,
  31314. bottom: 0 / 2903
  31315. }
  31316. },
  31317. side: {
  31318. height: math.unit(15 + 5 / 12, "feet"),
  31319. weight: math.unit(4600, "lb"),
  31320. name: "Side",
  31321. image: {
  31322. source: "./media/characters/neapolitan-ananassa/side.svg",
  31323. extra: 2925 / 2719,
  31324. bottom: 0 / 2925
  31325. }
  31326. },
  31327. back: {
  31328. height: math.unit(15 + 5 / 12, "feet"),
  31329. weight: math.unit(4600, "lb"),
  31330. name: "Back",
  31331. image: {
  31332. source: "./media/characters/neapolitan-ananassa/back.svg",
  31333. extra: 2903 / 2736,
  31334. bottom: 0 / 2903
  31335. }
  31336. },
  31337. },
  31338. [
  31339. {
  31340. name: "Normal",
  31341. height: math.unit(15 + 5 / 12, "feet"),
  31342. default: true
  31343. },
  31344. {
  31345. name: "Post-Millenium",
  31346. height: math.unit(35 + 5 / 12, "feet")
  31347. },
  31348. {
  31349. name: "Post-Era",
  31350. height: math.unit(450 + 5 / 12, "feet")
  31351. },
  31352. ]
  31353. ))
  31354. characterMakers.push(() => makeCharacter(
  31355. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31356. {
  31357. front: {
  31358. height: math.unit(300, "meters"),
  31359. weight: math.unit(125000, "tonnes"),
  31360. name: "Front",
  31361. image: {
  31362. source: "./media/characters/pazuzu/front.svg",
  31363. extra: 877 / 794,
  31364. bottom: 47 / 924
  31365. }
  31366. },
  31367. },
  31368. [
  31369. {
  31370. name: "Macro",
  31371. height: math.unit(300, "meters"),
  31372. default: true
  31373. },
  31374. ]
  31375. ))
  31376. characterMakers.push(() => makeCharacter(
  31377. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31378. {
  31379. side: {
  31380. height: math.unit(10 + 7 / 12, "feet"),
  31381. weight: math.unit(2.5, "tons"),
  31382. name: "Side",
  31383. image: {
  31384. source: "./media/characters/aasha/side.svg",
  31385. extra: 1345 / 1245,
  31386. bottom: 111 / 1456
  31387. }
  31388. },
  31389. back: {
  31390. height: math.unit(10 + 7 / 12, "feet"),
  31391. weight: math.unit(2.5, "tons"),
  31392. name: "Back",
  31393. image: {
  31394. source: "./media/characters/aasha/back.svg",
  31395. extra: 1133 / 1057,
  31396. bottom: 257 / 1390
  31397. }
  31398. },
  31399. },
  31400. [
  31401. {
  31402. name: "Normal",
  31403. height: math.unit(10 + 7 / 12, "feet"),
  31404. default: true
  31405. },
  31406. ]
  31407. ))
  31408. characterMakers.push(() => makeCharacter(
  31409. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31410. {
  31411. front: {
  31412. height: math.unit(6 + 3 / 12, "feet"),
  31413. name: "Front",
  31414. image: {
  31415. source: "./media/characters/nevan/front.svg",
  31416. extra: 704 / 704,
  31417. bottom: 28 / 732
  31418. }
  31419. },
  31420. back: {
  31421. height: math.unit(6 + 3 / 12, "feet"),
  31422. name: "Back",
  31423. image: {
  31424. source: "./media/characters/nevan/back.svg",
  31425. extra: 714 / 714,
  31426. bottom: 21 / 735
  31427. }
  31428. },
  31429. frontFlaccid: {
  31430. height: math.unit(6 + 3 / 12, "feet"),
  31431. name: "Front (Flaccid)",
  31432. image: {
  31433. source: "./media/characters/nevan/front-flaccid.svg",
  31434. extra: 704 / 704,
  31435. bottom: 28 / 732
  31436. }
  31437. },
  31438. frontErect: {
  31439. height: math.unit(6 + 3 / 12, "feet"),
  31440. name: "Front (Erect)",
  31441. image: {
  31442. source: "./media/characters/nevan/front-erect.svg",
  31443. extra: 704 / 704,
  31444. bottom: 28 / 732
  31445. }
  31446. },
  31447. backFlaccid: {
  31448. height: math.unit(6 + 3 / 12, "feet"),
  31449. name: "Back (Flaccid)",
  31450. image: {
  31451. source: "./media/characters/nevan/back-flaccid.svg",
  31452. extra: 714 / 714,
  31453. bottom: 21 / 735
  31454. }
  31455. },
  31456. },
  31457. [
  31458. {
  31459. name: "Normal",
  31460. height: math.unit(6 + 3 / 12, "feet"),
  31461. default: true
  31462. },
  31463. ]
  31464. ))
  31465. characterMakers.push(() => makeCharacter(
  31466. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31467. {
  31468. front: {
  31469. height: math.unit(4, "feet"),
  31470. name: "Front",
  31471. image: {
  31472. source: "./media/characters/arhan/front.svg",
  31473. extra: 3368 / 3133,
  31474. bottom: 0 / 3368
  31475. }
  31476. },
  31477. side: {
  31478. height: math.unit(4, "feet"),
  31479. name: "Side",
  31480. image: {
  31481. source: "./media/characters/arhan/side.svg",
  31482. extra: 3347 / 3105,
  31483. bottom: 0 / 3347
  31484. }
  31485. },
  31486. tongue: {
  31487. height: math.unit(1.42, "feet"),
  31488. name: "Tongue",
  31489. image: {
  31490. source: "./media/characters/arhan/tongue.svg"
  31491. }
  31492. },
  31493. head: {
  31494. height: math.unit(0.85, "feet"),
  31495. name: "Head",
  31496. image: {
  31497. source: "./media/characters/arhan/head.svg"
  31498. }
  31499. },
  31500. },
  31501. [
  31502. {
  31503. name: "Normal",
  31504. height: math.unit(4, "feet"),
  31505. default: true
  31506. },
  31507. ]
  31508. ))
  31509. characterMakers.push(() => makeCharacter(
  31510. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31511. {
  31512. front: {
  31513. height: math.unit(5 + 7.5 / 12, "feet"),
  31514. weight: math.unit(120, "lb"),
  31515. name: "Front",
  31516. image: {
  31517. source: "./media/characters/digi-duncan/front.svg",
  31518. extra: 330 / 326,
  31519. bottom: 16 / 346
  31520. }
  31521. },
  31522. side: {
  31523. height: math.unit(5 + 7.5 / 12, "feet"),
  31524. weight: math.unit(120, "lb"),
  31525. name: "Side",
  31526. image: {
  31527. source: "./media/characters/digi-duncan/side.svg",
  31528. extra: 341 / 337,
  31529. bottom: 1 / 342
  31530. }
  31531. },
  31532. back: {
  31533. height: math.unit(5 + 7.5 / 12, "feet"),
  31534. weight: math.unit(120, "lb"),
  31535. name: "Back",
  31536. image: {
  31537. source: "./media/characters/digi-duncan/back.svg",
  31538. extra: 330 / 326,
  31539. bottom: 12 / 342
  31540. }
  31541. },
  31542. },
  31543. [
  31544. {
  31545. name: "Speck",
  31546. height: math.unit(0.25, "mm")
  31547. },
  31548. {
  31549. name: "Micro",
  31550. height: math.unit(5, "mm")
  31551. },
  31552. {
  31553. name: "Tiny",
  31554. height: math.unit(0.5, "inches"),
  31555. default: true
  31556. },
  31557. {
  31558. name: "Human",
  31559. height: math.unit(5 + 7.5 / 12, "feet")
  31560. },
  31561. {
  31562. name: "Minigiant",
  31563. height: math.unit(8 + 5.25, "feet")
  31564. },
  31565. {
  31566. name: "Giant",
  31567. height: math.unit(2000, "feet")
  31568. },
  31569. {
  31570. name: "Mega",
  31571. height: math.unit(371.1, "miles")
  31572. },
  31573. ]
  31574. ))
  31575. characterMakers.push(() => makeCharacter(
  31576. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31577. {
  31578. front: {
  31579. height: math.unit(2, "meters"),
  31580. weight: math.unit(350, "kg"),
  31581. name: "Front",
  31582. image: {
  31583. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31584. extra: 898 / 838,
  31585. bottom: 9 / 907
  31586. }
  31587. },
  31588. },
  31589. [
  31590. {
  31591. name: "Micro",
  31592. height: math.unit(8, "meters")
  31593. },
  31594. {
  31595. name: "Normal",
  31596. height: math.unit(50, "meters"),
  31597. default: true
  31598. },
  31599. {
  31600. name: "Macro",
  31601. height: math.unit(500, "meters")
  31602. },
  31603. ]
  31604. ))
  31605. characterMakers.push(() => makeCharacter(
  31606. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31607. {
  31608. front: {
  31609. height: math.unit(6 + 6 / 12, "feet"),
  31610. name: "Front",
  31611. image: {
  31612. source: "./media/characters/khardesh/front.svg",
  31613. extra: 1788/1596,
  31614. bottom: 66/1854
  31615. }
  31616. },
  31617. back: {
  31618. height: math.unit(6 + 6 / 12, "feet"),
  31619. name: "Back",
  31620. image: {
  31621. source: "./media/characters/khardesh/back.svg",
  31622. extra: 1781/1584,
  31623. bottom: 68/1849
  31624. }
  31625. },
  31626. },
  31627. [
  31628. {
  31629. name: "Normal",
  31630. height: math.unit(6 + 6 / 12, "feet"),
  31631. default: true
  31632. },
  31633. {
  31634. name: "Normal+",
  31635. height: math.unit(4, "meters")
  31636. },
  31637. {
  31638. name: "Macro",
  31639. height: math.unit(50, "meters")
  31640. },
  31641. {
  31642. name: "Macro+",
  31643. height: math.unit(100, "meters")
  31644. },
  31645. {
  31646. name: "Megamacro",
  31647. height: math.unit(20, "km")
  31648. },
  31649. ]
  31650. ))
  31651. characterMakers.push(() => makeCharacter(
  31652. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31653. {
  31654. front: {
  31655. height: math.unit(6, "feet"),
  31656. weight: math.unit(150, "lb"),
  31657. name: "Front",
  31658. image: {
  31659. source: "./media/characters/kosho/front.svg",
  31660. extra: 1847 / 1847,
  31661. bottom: 86 / 1933
  31662. }
  31663. },
  31664. },
  31665. [
  31666. {
  31667. name: "Second-stage micro",
  31668. height: math.unit(0.5, "inches")
  31669. },
  31670. {
  31671. name: "First-stage micro",
  31672. height: math.unit(6, "inches")
  31673. },
  31674. {
  31675. name: "Normal",
  31676. height: math.unit(6, "feet"),
  31677. default: true
  31678. },
  31679. {
  31680. name: "First-stage macro",
  31681. height: math.unit(72, "feet")
  31682. },
  31683. {
  31684. name: "Second-stage macro",
  31685. height: math.unit(864, "feet")
  31686. },
  31687. ]
  31688. ))
  31689. characterMakers.push(() => makeCharacter(
  31690. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31691. {
  31692. normal: {
  31693. height: math.unit(4 + 6 / 12, "feet"),
  31694. name: "Normal",
  31695. image: {
  31696. source: "./media/characters/hydra/normal.svg",
  31697. extra: 2833 / 2634,
  31698. bottom: 68 / 2901
  31699. }
  31700. },
  31701. smol: {
  31702. height: math.unit(0.705, "inches"),
  31703. name: "Smol",
  31704. image: {
  31705. source: "./media/characters/hydra/smol.svg",
  31706. extra: 2715 / 2540,
  31707. bottom: 0 / 2715
  31708. }
  31709. },
  31710. },
  31711. [
  31712. {
  31713. name: "Normal",
  31714. height: math.unit(4 + 6 / 12, "feet"),
  31715. default: true
  31716. }
  31717. ]
  31718. ))
  31719. characterMakers.push(() => makeCharacter(
  31720. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31721. {
  31722. front: {
  31723. height: math.unit(0.6, "cm"),
  31724. name: "Front",
  31725. image: {
  31726. source: "./media/characters/daz/front.svg",
  31727. extra: 1682 / 1164,
  31728. bottom: 42 / 1724
  31729. }
  31730. },
  31731. },
  31732. [
  31733. {
  31734. name: "Normal",
  31735. height: math.unit(0.6, "cm"),
  31736. default: true
  31737. },
  31738. ]
  31739. ))
  31740. characterMakers.push(() => makeCharacter(
  31741. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31742. {
  31743. front: {
  31744. height: math.unit(6, "feet"),
  31745. weight: math.unit(235, "lb"),
  31746. name: "Front",
  31747. image: {
  31748. source: "./media/characters/theo-pangolin/front.svg",
  31749. extra: 1996 / 1969,
  31750. bottom: 115 / 2111
  31751. }
  31752. },
  31753. back: {
  31754. height: math.unit(6, "feet"),
  31755. weight: math.unit(235, "lb"),
  31756. name: "Back",
  31757. image: {
  31758. source: "./media/characters/theo-pangolin/back.svg",
  31759. extra: 1979 / 1979,
  31760. bottom: 40 / 2019
  31761. }
  31762. },
  31763. feral: {
  31764. height: math.unit(2, "feet"),
  31765. weight: math.unit(30, "lb"),
  31766. name: "Feral",
  31767. image: {
  31768. source: "./media/characters/theo-pangolin/feral.svg",
  31769. extra: 803 / 791,
  31770. bottom: 181 / 984
  31771. }
  31772. },
  31773. footFive: {
  31774. height: math.unit(1.43, "feet"),
  31775. name: "Foot (Five Toes)",
  31776. image: {
  31777. source: "./media/characters/theo-pangolin/foot-five.svg"
  31778. }
  31779. },
  31780. footFour: {
  31781. height: math.unit(1.43, "feet"),
  31782. name: "Foot (Four Toes)",
  31783. image: {
  31784. source: "./media/characters/theo-pangolin/foot-four.svg"
  31785. }
  31786. },
  31787. handFour: {
  31788. height: math.unit(0.81, "feet"),
  31789. name: "Hand (Four Fingers)",
  31790. image: {
  31791. source: "./media/characters/theo-pangolin/hand-four.svg"
  31792. }
  31793. },
  31794. handThree: {
  31795. height: math.unit(0.81, "feet"),
  31796. name: "Hand (Three Fingers)",
  31797. image: {
  31798. source: "./media/characters/theo-pangolin/hand-three.svg"
  31799. }
  31800. },
  31801. headFront: {
  31802. height: math.unit(1.37, "feet"),
  31803. name: "Head (Front)",
  31804. image: {
  31805. source: "./media/characters/theo-pangolin/head-front.svg"
  31806. }
  31807. },
  31808. headSide: {
  31809. height: math.unit(1.43, "feet"),
  31810. name: "Head (Side)",
  31811. image: {
  31812. source: "./media/characters/theo-pangolin/head-side.svg"
  31813. }
  31814. },
  31815. tongue: {
  31816. height: math.unit(2.29, "feet"),
  31817. name: "Tongue",
  31818. image: {
  31819. source: "./media/characters/theo-pangolin/tongue.svg"
  31820. }
  31821. },
  31822. },
  31823. [
  31824. {
  31825. name: "Normal",
  31826. height: math.unit(6, "feet")
  31827. },
  31828. {
  31829. name: "Macro",
  31830. height: math.unit(400, "feet"),
  31831. default: true
  31832. },
  31833. ]
  31834. ))
  31835. characterMakers.push(() => makeCharacter(
  31836. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31837. {
  31838. front: {
  31839. height: math.unit(6, "inches"),
  31840. weight: math.unit(0.036, "kg"),
  31841. name: "Front",
  31842. image: {
  31843. source: "./media/characters/renée/front.svg",
  31844. extra: 900 / 886,
  31845. bottom: 8 / 908
  31846. }
  31847. },
  31848. },
  31849. [
  31850. {
  31851. name: "Nano",
  31852. height: math.unit(1, "nm")
  31853. },
  31854. {
  31855. name: "Micro",
  31856. height: math.unit(1, "mm")
  31857. },
  31858. {
  31859. name: "Normal",
  31860. height: math.unit(6, "inches")
  31861. },
  31862. {
  31863. name: "Macro",
  31864. height: math.unit(2000, "feet"),
  31865. default: true
  31866. },
  31867. {
  31868. name: "Megamacro",
  31869. height: math.unit(2, "km")
  31870. },
  31871. {
  31872. name: "Gigamacro",
  31873. height: math.unit(2000, "km")
  31874. },
  31875. {
  31876. name: "Teramacro",
  31877. height: math.unit(250000, "km")
  31878. },
  31879. ]
  31880. ))
  31881. characterMakers.push(() => makeCharacter(
  31882. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31883. {
  31884. front: {
  31885. height: math.unit(4, "meters"),
  31886. weight: math.unit(150, "kg"),
  31887. name: "Front",
  31888. image: {
  31889. source: "./media/characters/caledvwlch/front.svg",
  31890. extra: 1760 / 1551,
  31891. bottom: 28 / 1788
  31892. }
  31893. },
  31894. side: {
  31895. height: math.unit(4, "meters"),
  31896. weight: math.unit(150, "kg"),
  31897. name: "Side",
  31898. image: {
  31899. source: "./media/characters/caledvwlch/side.svg",
  31900. extra: 1605 / 1536,
  31901. bottom: 31 / 1636
  31902. }
  31903. },
  31904. back: {
  31905. height: math.unit(4, "meters"),
  31906. weight: math.unit(150, "kg"),
  31907. name: "Back",
  31908. image: {
  31909. source: "./media/characters/caledvwlch/back.svg",
  31910. extra: 1635 / 1565,
  31911. bottom: 27 / 1662
  31912. }
  31913. },
  31914. },
  31915. [
  31916. {
  31917. name: "\"Incognito\"",
  31918. height: math.unit(4, "meters")
  31919. },
  31920. {
  31921. name: "Small rampage",
  31922. height: math.unit(600, "meters")
  31923. },
  31924. {
  31925. name: "Mega",
  31926. height: math.unit(30, "km")
  31927. },
  31928. {
  31929. name: "Home-size",
  31930. height: math.unit(50, "km"),
  31931. default: true
  31932. },
  31933. {
  31934. name: "Giga",
  31935. height: math.unit(300, "km")
  31936. },
  31937. {
  31938. name: "Lounging",
  31939. height: math.unit(11000, "km")
  31940. },
  31941. {
  31942. name: "Planet snacking",
  31943. height: math.unit(2000000, "km")
  31944. },
  31945. ]
  31946. ))
  31947. characterMakers.push(() => makeCharacter(
  31948. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31949. {
  31950. front: {
  31951. height: math.unit(6, "feet"),
  31952. weight: math.unit(215, "lb"),
  31953. name: "Front",
  31954. image: {
  31955. source: "./media/characters/sapphire-svell/front.svg",
  31956. extra: 495 / 455,
  31957. bottom: 20 / 515
  31958. }
  31959. },
  31960. back: {
  31961. height: math.unit(6, "feet"),
  31962. weight: math.unit(216, "lb"),
  31963. name: "Back",
  31964. image: {
  31965. source: "./media/characters/sapphire-svell/back.svg",
  31966. extra: 497 / 477,
  31967. bottom: 7 / 504
  31968. }
  31969. },
  31970. maw: {
  31971. height: math.unit(1.57, "feet"),
  31972. name: "Maw",
  31973. image: {
  31974. source: "./media/characters/sapphire-svell/maw.svg"
  31975. }
  31976. },
  31977. foot: {
  31978. height: math.unit(1.07, "feet"),
  31979. name: "Foot",
  31980. image: {
  31981. source: "./media/characters/sapphire-svell/foot.svg"
  31982. }
  31983. },
  31984. toering: {
  31985. height: math.unit(1.7, "inch"),
  31986. name: "Toering",
  31987. image: {
  31988. source: "./media/characters/sapphire-svell/toering.svg"
  31989. }
  31990. },
  31991. },
  31992. [
  31993. {
  31994. name: "Normal",
  31995. height: math.unit(300, "feet"),
  31996. default: true
  31997. },
  31998. {
  31999. name: "Augmented",
  32000. height: math.unit(1250, "feet")
  32001. },
  32002. {
  32003. name: "Unleashed",
  32004. height: math.unit(3000, "feet")
  32005. },
  32006. ]
  32007. ))
  32008. characterMakers.push(() => makeCharacter(
  32009. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32010. {
  32011. side: {
  32012. height: math.unit(2 + 3 / 12, "feet"),
  32013. weight: math.unit(110, "lb"),
  32014. name: "Side",
  32015. image: {
  32016. source: "./media/characters/glitch-flux/side.svg",
  32017. extra: 997 / 805,
  32018. bottom: 20 / 1017
  32019. }
  32020. },
  32021. },
  32022. [
  32023. {
  32024. name: "Normal",
  32025. height: math.unit(2 + 3 / 12, "feet"),
  32026. default: true
  32027. },
  32028. ]
  32029. ))
  32030. characterMakers.push(() => makeCharacter(
  32031. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32032. {
  32033. front: {
  32034. height: math.unit(4, "meters"),
  32035. name: "Front",
  32036. image: {
  32037. source: "./media/characters/mid/front.svg",
  32038. extra: 507 / 476,
  32039. bottom: 17 / 524
  32040. }
  32041. },
  32042. back: {
  32043. height: math.unit(4, "meters"),
  32044. name: "Back",
  32045. image: {
  32046. source: "./media/characters/mid/back.svg",
  32047. extra: 519 / 487,
  32048. bottom: 7 / 526
  32049. }
  32050. },
  32051. stuck: {
  32052. height: math.unit(2.2, "meters"),
  32053. name: "Stuck",
  32054. image: {
  32055. source: "./media/characters/mid/stuck.svg",
  32056. extra: 1951 / 1869,
  32057. bottom: 88 / 2039
  32058. }
  32059. }
  32060. },
  32061. [
  32062. {
  32063. name: "Normal",
  32064. height: math.unit(4, "meters"),
  32065. default: true
  32066. },
  32067. {
  32068. name: "Big",
  32069. height: math.unit(10, "meters")
  32070. },
  32071. {
  32072. name: "Macro",
  32073. height: math.unit(800, "meters")
  32074. },
  32075. {
  32076. name: "Megamacro",
  32077. height: math.unit(100, "km")
  32078. },
  32079. {
  32080. name: "Overgrown",
  32081. height: math.unit(1, "parsec")
  32082. },
  32083. ]
  32084. ))
  32085. characterMakers.push(() => makeCharacter(
  32086. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32087. {
  32088. front: {
  32089. height: math.unit(2.5, "meters"),
  32090. weight: math.unit(225, "kg"),
  32091. name: "Front",
  32092. image: {
  32093. source: "./media/characters/iris/front.svg",
  32094. extra: 3348 / 3251,
  32095. bottom: 205 / 3553
  32096. }
  32097. },
  32098. maw: {
  32099. height: math.unit(0.56, "meter"),
  32100. name: "Maw",
  32101. image: {
  32102. source: "./media/characters/iris/maw.svg"
  32103. }
  32104. },
  32105. },
  32106. [
  32107. {
  32108. name: "Mewter cat",
  32109. height: math.unit(1.2, "meters")
  32110. },
  32111. {
  32112. name: "Normal",
  32113. height: math.unit(2.5, "meters"),
  32114. default: true
  32115. },
  32116. {
  32117. name: "Minimacro",
  32118. height: math.unit(18, "feet")
  32119. },
  32120. {
  32121. name: "Macro",
  32122. height: math.unit(140, "feet")
  32123. },
  32124. {
  32125. name: "Macro+",
  32126. height: math.unit(180, "meters")
  32127. },
  32128. {
  32129. name: "Megamacro",
  32130. height: math.unit(2746, "meters")
  32131. },
  32132. ]
  32133. ))
  32134. characterMakers.push(() => makeCharacter(
  32135. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32136. {
  32137. front: {
  32138. height: math.unit(6, "feet"),
  32139. weight: math.unit(135, "lb"),
  32140. name: "Front",
  32141. image: {
  32142. source: "./media/characters/axel/front.svg",
  32143. extra: 908 / 908,
  32144. bottom: 58 / 966
  32145. }
  32146. },
  32147. side: {
  32148. height: math.unit(6, "feet"),
  32149. weight: math.unit(135, "lb"),
  32150. name: "Side",
  32151. image: {
  32152. source: "./media/characters/axel/side.svg",
  32153. extra: 958 / 958,
  32154. bottom: 11 / 969
  32155. }
  32156. },
  32157. back: {
  32158. height: math.unit(6, "feet"),
  32159. weight: math.unit(135, "lb"),
  32160. name: "Back",
  32161. image: {
  32162. source: "./media/characters/axel/back.svg",
  32163. extra: 887 / 887,
  32164. bottom: 34 / 921
  32165. }
  32166. },
  32167. head: {
  32168. height: math.unit(1.07, "feet"),
  32169. name: "Head",
  32170. image: {
  32171. source: "./media/characters/axel/head.svg"
  32172. }
  32173. },
  32174. beak: {
  32175. height: math.unit(1.4, "feet"),
  32176. name: "Beak",
  32177. image: {
  32178. source: "./media/characters/axel/beak.svg"
  32179. }
  32180. },
  32181. beakSide: {
  32182. height: math.unit(1.4, "feet"),
  32183. name: "Beak Side",
  32184. image: {
  32185. source: "./media/characters/axel/beak-side.svg"
  32186. }
  32187. },
  32188. sheath: {
  32189. height: math.unit(0.5, "feet"),
  32190. name: "Sheath",
  32191. image: {
  32192. source: "./media/characters/axel/sheath.svg"
  32193. }
  32194. },
  32195. dick: {
  32196. height: math.unit(0.98, "feet"),
  32197. name: "Dick",
  32198. image: {
  32199. source: "./media/characters/axel/dick.svg"
  32200. }
  32201. },
  32202. },
  32203. [
  32204. {
  32205. name: "Macro",
  32206. height: math.unit(68, "meters"),
  32207. default: true
  32208. },
  32209. ]
  32210. ))
  32211. characterMakers.push(() => makeCharacter(
  32212. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32213. {
  32214. front: {
  32215. height: math.unit(3.5, "meters"),
  32216. weight: math.unit(1200, "kg"),
  32217. name: "Front",
  32218. image: {
  32219. source: "./media/characters/joanna/front.svg",
  32220. extra: 1596 / 1488,
  32221. bottom: 29 / 1625
  32222. }
  32223. },
  32224. back: {
  32225. height: math.unit(3.5, "meters"),
  32226. weight: math.unit(1200, "kg"),
  32227. name: "Back",
  32228. image: {
  32229. source: "./media/characters/joanna/back.svg",
  32230. extra: 1594 / 1495,
  32231. bottom: 26 / 1620
  32232. }
  32233. },
  32234. frontShorts: {
  32235. height: math.unit(3.5, "meters"),
  32236. weight: math.unit(1200, "kg"),
  32237. name: "Front (Shorts)",
  32238. image: {
  32239. source: "./media/characters/joanna/front-shorts.svg",
  32240. extra: 1596 / 1488,
  32241. bottom: 29 / 1625
  32242. }
  32243. },
  32244. frontBiker: {
  32245. height: math.unit(3.5, "meters"),
  32246. weight: math.unit(1200, "kg"),
  32247. name: "Front (Biker)",
  32248. image: {
  32249. source: "./media/characters/joanna/front-biker.svg",
  32250. extra: 1596 / 1488,
  32251. bottom: 29 / 1625
  32252. }
  32253. },
  32254. backBiker: {
  32255. height: math.unit(3.5, "meters"),
  32256. weight: math.unit(1200, "kg"),
  32257. name: "Back (Biker)",
  32258. image: {
  32259. source: "./media/characters/joanna/back-biker.svg",
  32260. extra: 1594 / 1495,
  32261. bottom: 88 / 1682
  32262. }
  32263. },
  32264. bikeLeft: {
  32265. height: math.unit(2.4, "meters"),
  32266. weight: math.unit(1600, "kg"),
  32267. name: "Bike (Left)",
  32268. image: {
  32269. source: "./media/characters/joanna/bike-left.svg",
  32270. extra: 720 / 720,
  32271. bottom: 8 / 728
  32272. }
  32273. },
  32274. bikeRight: {
  32275. height: math.unit(2.4, "meters"),
  32276. weight: math.unit(1600, "kg"),
  32277. name: "Bike (Right)",
  32278. image: {
  32279. source: "./media/characters/joanna/bike-right.svg",
  32280. extra: 720 / 720,
  32281. bottom: 8 / 728
  32282. }
  32283. },
  32284. },
  32285. [
  32286. {
  32287. name: "Incognito",
  32288. height: math.unit(3.5, "meters")
  32289. },
  32290. {
  32291. name: "Casual Big",
  32292. height: math.unit(200, "meters")
  32293. },
  32294. {
  32295. name: "Macro",
  32296. height: math.unit(600, "meters")
  32297. },
  32298. {
  32299. name: "Original",
  32300. height: math.unit(20, "km"),
  32301. default: true
  32302. },
  32303. {
  32304. name: "Giga",
  32305. height: math.unit(400, "km")
  32306. },
  32307. {
  32308. name: "Lounging",
  32309. height: math.unit(1500, "km")
  32310. },
  32311. {
  32312. name: "Planetary",
  32313. height: math.unit(200000, "km")
  32314. },
  32315. ]
  32316. ))
  32317. characterMakers.push(() => makeCharacter(
  32318. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32319. {
  32320. front: {
  32321. height: math.unit(6, "feet"),
  32322. weight: math.unit(150, "lb"),
  32323. name: "Front",
  32324. image: {
  32325. source: "./media/characters/hugo-sigil/front.svg",
  32326. extra: 522 / 500,
  32327. bottom: 2 / 524
  32328. }
  32329. },
  32330. back: {
  32331. height: math.unit(6, "feet"),
  32332. weight: math.unit(150, "lb"),
  32333. name: "Back",
  32334. image: {
  32335. source: "./media/characters/hugo-sigil/back.svg",
  32336. extra: 519 / 495,
  32337. bottom: 5 / 524
  32338. }
  32339. },
  32340. maw: {
  32341. height: math.unit(1.4, "feet"),
  32342. weight: math.unit(150, "lb"),
  32343. name: "Maw",
  32344. image: {
  32345. source: "./media/characters/hugo-sigil/maw.svg"
  32346. }
  32347. },
  32348. feet: {
  32349. height: math.unit(1.56, "feet"),
  32350. weight: math.unit(150, "lb"),
  32351. name: "Feet",
  32352. image: {
  32353. source: "./media/characters/hugo-sigil/feet.svg",
  32354. extra: 177 / 177,
  32355. bottom: 12 / 189
  32356. }
  32357. },
  32358. },
  32359. [
  32360. {
  32361. name: "Normal",
  32362. height: math.unit(6, "feet")
  32363. },
  32364. {
  32365. name: "Macro",
  32366. height: math.unit(200, "feet"),
  32367. default: true
  32368. },
  32369. ]
  32370. ))
  32371. characterMakers.push(() => makeCharacter(
  32372. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32373. {
  32374. front: {
  32375. height: math.unit(6, "feet"),
  32376. weight: math.unit(150, "lb"),
  32377. name: "Front",
  32378. image: {
  32379. source: "./media/characters/peri/front.svg",
  32380. extra: 2354 / 2233,
  32381. bottom: 49 / 2403
  32382. }
  32383. },
  32384. },
  32385. [
  32386. {
  32387. name: "Really Small",
  32388. height: math.unit(1, "nm")
  32389. },
  32390. {
  32391. name: "Micro",
  32392. height: math.unit(4, "inches")
  32393. },
  32394. {
  32395. name: "Normal",
  32396. height: math.unit(7, "inches"),
  32397. default: true
  32398. },
  32399. {
  32400. name: "Macro",
  32401. height: math.unit(400, "feet")
  32402. },
  32403. {
  32404. name: "Megamacro",
  32405. height: math.unit(100, "miles")
  32406. },
  32407. ]
  32408. ))
  32409. characterMakers.push(() => makeCharacter(
  32410. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32411. {
  32412. frontSlim: {
  32413. height: math.unit(7, "feet"),
  32414. name: "Front (Slim)",
  32415. image: {
  32416. source: "./media/characters/issilora/front-slim.svg",
  32417. extra: 529 / 449,
  32418. bottom: 53 / 582
  32419. }
  32420. },
  32421. sideSlim: {
  32422. height: math.unit(7, "feet"),
  32423. name: "Side (Slim)",
  32424. image: {
  32425. source: "./media/characters/issilora/side-slim.svg",
  32426. extra: 570 / 480,
  32427. bottom: 30 / 600
  32428. }
  32429. },
  32430. backSlim: {
  32431. height: math.unit(7, "feet"),
  32432. name: "Back (Slim)",
  32433. image: {
  32434. source: "./media/characters/issilora/back-slim.svg",
  32435. extra: 537 / 455,
  32436. bottom: 46 / 583
  32437. }
  32438. },
  32439. frontBuff: {
  32440. height: math.unit(7, "feet"),
  32441. name: "Front (Buff)",
  32442. image: {
  32443. source: "./media/characters/issilora/front-buff.svg",
  32444. extra: 2310 / 2035,
  32445. bottom: 335 / 2645
  32446. }
  32447. },
  32448. head: {
  32449. height: math.unit(1.94, "feet"),
  32450. name: "Head",
  32451. image: {
  32452. source: "./media/characters/issilora/head.svg"
  32453. }
  32454. },
  32455. },
  32456. [
  32457. {
  32458. name: "Minimum",
  32459. height: math.unit(7, "feet")
  32460. },
  32461. {
  32462. name: "Comfortable",
  32463. height: math.unit(17, "feet")
  32464. },
  32465. {
  32466. name: "Fun Size",
  32467. height: math.unit(47, "feet")
  32468. },
  32469. {
  32470. name: "Natural Macro",
  32471. height: math.unit(137, "feet"),
  32472. default: true
  32473. },
  32474. {
  32475. name: "Maximum Kaiju",
  32476. height: math.unit(397, "feet")
  32477. },
  32478. ]
  32479. ))
  32480. characterMakers.push(() => makeCharacter(
  32481. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32482. {
  32483. front: {
  32484. height: math.unit(50 + 9/12, "feet"),
  32485. weight: math.unit(32.8, "tons"),
  32486. name: "Front",
  32487. image: {
  32488. source: "./media/characters/irb'iiritaahn/front.svg",
  32489. extra: 1878/1826,
  32490. bottom: 326/2204
  32491. }
  32492. },
  32493. back: {
  32494. height: math.unit(50 + 9/12, "feet"),
  32495. weight: math.unit(32.8, "tons"),
  32496. name: "Back",
  32497. image: {
  32498. source: "./media/characters/irb'iiritaahn/back.svg",
  32499. extra: 2052/2018,
  32500. bottom: 152/2204
  32501. }
  32502. },
  32503. head: {
  32504. height: math.unit(12.86, "feet"),
  32505. name: "Head",
  32506. image: {
  32507. source: "./media/characters/irb'iiritaahn/head.svg"
  32508. }
  32509. },
  32510. maw: {
  32511. height: math.unit(9.66, "feet"),
  32512. name: "Maw",
  32513. image: {
  32514. source: "./media/characters/irb'iiritaahn/maw.svg"
  32515. }
  32516. },
  32517. frontDick: {
  32518. height: math.unit(8.78461, "feet"),
  32519. name: "Front Dick",
  32520. image: {
  32521. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32522. }
  32523. },
  32524. rearDick: {
  32525. height: math.unit(8.78461, "feet"),
  32526. name: "Rear Dick",
  32527. image: {
  32528. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32529. }
  32530. },
  32531. rearDickUnfolded: {
  32532. height: math.unit(8.78, "feet"),
  32533. name: "Rear Dick (Unfolded)",
  32534. image: {
  32535. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32536. }
  32537. },
  32538. wings: {
  32539. height: math.unit(43, "feet"),
  32540. name: "Wings",
  32541. image: {
  32542. source: "./media/characters/irb'iiritaahn/wings.svg"
  32543. }
  32544. },
  32545. },
  32546. [
  32547. {
  32548. name: "Macro",
  32549. height: math.unit(50 + 9/12, "feet"),
  32550. default: true
  32551. },
  32552. ]
  32553. ))
  32554. characterMakers.push(() => makeCharacter(
  32555. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32556. {
  32557. front: {
  32558. height: math.unit(205, "cm"),
  32559. weight: math.unit(102, "kg"),
  32560. name: "Front",
  32561. image: {
  32562. source: "./media/characters/irbisgreif/front.svg",
  32563. extra: 785/706,
  32564. bottom: 13/798
  32565. }
  32566. },
  32567. back: {
  32568. height: math.unit(205, "cm"),
  32569. weight: math.unit(102, "kg"),
  32570. name: "Back",
  32571. image: {
  32572. source: "./media/characters/irbisgreif/back.svg",
  32573. extra: 713/701,
  32574. bottom: 26/739
  32575. }
  32576. },
  32577. frontDressed: {
  32578. height: math.unit(216, "cm"),
  32579. weight: math.unit(102, "kg"),
  32580. name: "Front-dressed",
  32581. image: {
  32582. source: "./media/characters/irbisgreif/front-dressed.svg",
  32583. extra: 902/776,
  32584. bottom: 14/916
  32585. }
  32586. },
  32587. sideDressed: {
  32588. height: math.unit(195, "cm"),
  32589. weight: math.unit(102, "kg"),
  32590. name: "Side-dressed",
  32591. image: {
  32592. source: "./media/characters/irbisgreif/side-dressed.svg",
  32593. extra: 788/688,
  32594. bottom: 21/809
  32595. }
  32596. },
  32597. backDressed: {
  32598. height: math.unit(216, "cm"),
  32599. weight: math.unit(102, "kg"),
  32600. name: "Back-dressed",
  32601. image: {
  32602. source: "./media/characters/irbisgreif/back-dressed.svg",
  32603. extra: 901/783,
  32604. bottom: 10/911
  32605. }
  32606. },
  32607. dick: {
  32608. height: math.unit(0.49, "feet"),
  32609. name: "Dick",
  32610. image: {
  32611. source: "./media/characters/irbisgreif/dick.svg"
  32612. }
  32613. },
  32614. wingTop: {
  32615. height: math.unit(1.93 , "feet"),
  32616. name: "Wing-top",
  32617. image: {
  32618. source: "./media/characters/irbisgreif/wing-top.svg"
  32619. }
  32620. },
  32621. wingBottom: {
  32622. height: math.unit(1.93 , "feet"),
  32623. name: "Wing-bottom",
  32624. image: {
  32625. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32626. }
  32627. },
  32628. },
  32629. [
  32630. {
  32631. name: "Normal",
  32632. height: math.unit(216, "cm"),
  32633. default: true
  32634. },
  32635. ]
  32636. ))
  32637. characterMakers.push(() => makeCharacter(
  32638. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32639. {
  32640. front: {
  32641. height: math.unit(6, "feet"),
  32642. weight: math.unit(150, "lb"),
  32643. name: "Front",
  32644. image: {
  32645. source: "./media/characters/pride/front.svg",
  32646. extra: 1299/1230,
  32647. bottom: 18/1317
  32648. }
  32649. },
  32650. },
  32651. [
  32652. {
  32653. name: "Normal",
  32654. height: math.unit(7, "feet")
  32655. },
  32656. {
  32657. name: "Mini-macro",
  32658. height: math.unit(11, "feet")
  32659. },
  32660. {
  32661. name: "Macro",
  32662. height: math.unit(15, "meters"),
  32663. default: true
  32664. },
  32665. {
  32666. name: "Macro+",
  32667. height: math.unit(40, "meters")
  32668. },
  32669. ]
  32670. ))
  32671. characterMakers.push(() => makeCharacter(
  32672. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32673. {
  32674. front: {
  32675. height: math.unit(4 + 2 / 12, "feet"),
  32676. weight: math.unit(95, "lb"),
  32677. name: "Front",
  32678. image: {
  32679. source: "./media/characters/vaelophis-nyx/front.svg",
  32680. extra: 2532/2330,
  32681. bottom: 0/2532
  32682. }
  32683. },
  32684. back: {
  32685. height: math.unit(4 + 2 / 12, "feet"),
  32686. weight: math.unit(95, "lb"),
  32687. name: "Back",
  32688. image: {
  32689. source: "./media/characters/vaelophis-nyx/back.svg",
  32690. extra: 2484/2361,
  32691. bottom: 0/2484
  32692. }
  32693. },
  32694. feralSide: {
  32695. height: math.unit(2 + 1/12, "feet"),
  32696. weight: math.unit(20, "lb"),
  32697. name: "Feral (Side)",
  32698. image: {
  32699. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32700. extra: 1721/1581,
  32701. bottom: 70/1791
  32702. }
  32703. },
  32704. feralLazing: {
  32705. height: math.unit(1.08, "feet"),
  32706. weight: math.unit(20, "lb"),
  32707. name: "Feral (Lazing)",
  32708. image: {
  32709. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32710. extra: 822/822,
  32711. bottom: 248/1070
  32712. }
  32713. },
  32714. ear: {
  32715. height: math.unit(0.416, "feet"),
  32716. name: "Ear",
  32717. image: {
  32718. source: "./media/characters/vaelophis-nyx/ear.svg"
  32719. }
  32720. },
  32721. eye: {
  32722. height: math.unit(0.0748, "feet"),
  32723. name: "Eye",
  32724. image: {
  32725. source: "./media/characters/vaelophis-nyx/eye.svg"
  32726. }
  32727. },
  32728. mouth: {
  32729. height: math.unit(0.378, "feet"),
  32730. name: "Mouth",
  32731. image: {
  32732. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32733. }
  32734. },
  32735. spade: {
  32736. height: math.unit(0.55, "feet"),
  32737. name: "Spade",
  32738. image: {
  32739. source: "./media/characters/vaelophis-nyx/spade.svg"
  32740. }
  32741. },
  32742. },
  32743. [
  32744. {
  32745. name: "Normal",
  32746. height: math.unit(4 + 2/12, "feet"),
  32747. default: true
  32748. },
  32749. ]
  32750. ))
  32751. characterMakers.push(() => makeCharacter(
  32752. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32753. {
  32754. front: {
  32755. height: math.unit(7, "feet"),
  32756. weight: math.unit(231, "lb"),
  32757. name: "Front",
  32758. image: {
  32759. source: "./media/characters/flux/front.svg",
  32760. extra: 919/871,
  32761. bottom: 0/919
  32762. }
  32763. },
  32764. back: {
  32765. height: math.unit(7, "feet"),
  32766. weight: math.unit(231, "lb"),
  32767. name: "Back",
  32768. image: {
  32769. source: "./media/characters/flux/back.svg",
  32770. extra: 1040/992,
  32771. bottom: 0/1040
  32772. }
  32773. },
  32774. frontDressed: {
  32775. height: math.unit(7, "feet"),
  32776. weight: math.unit(231, "lb"),
  32777. name: "Front (Dressed)",
  32778. image: {
  32779. source: "./media/characters/flux/front-dressed.svg",
  32780. extra: 919/871,
  32781. bottom: 0/919
  32782. }
  32783. },
  32784. feralSide: {
  32785. height: math.unit(5, "feet"),
  32786. weight: math.unit(150, "lb"),
  32787. name: "Feral (Side)",
  32788. image: {
  32789. source: "./media/characters/flux/feral-side.svg",
  32790. extra: 598/528,
  32791. bottom: 28/626
  32792. }
  32793. },
  32794. head: {
  32795. height: math.unit(1.585, "feet"),
  32796. name: "Head",
  32797. image: {
  32798. source: "./media/characters/flux/head.svg"
  32799. }
  32800. },
  32801. headSide: {
  32802. height: math.unit(1.74, "feet"),
  32803. name: "Head (Side)",
  32804. image: {
  32805. source: "./media/characters/flux/head-side.svg"
  32806. }
  32807. },
  32808. headSideFire: {
  32809. height: math.unit(1.76, "feet"),
  32810. name: "Head (Side, Fire)",
  32811. image: {
  32812. source: "./media/characters/flux/head-side-fire.svg"
  32813. }
  32814. },
  32815. },
  32816. [
  32817. {
  32818. name: "Normal",
  32819. height: math.unit(7, "feet"),
  32820. default: true
  32821. },
  32822. ]
  32823. ))
  32824. characterMakers.push(() => makeCharacter(
  32825. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32826. {
  32827. front: {
  32828. height: math.unit(9, "feet"),
  32829. weight: math.unit(1012, "lb"),
  32830. name: "Front",
  32831. image: {
  32832. source: "./media/characters/ulfra-lupae/front.svg",
  32833. extra: 1083/1011,
  32834. bottom: 67/1150
  32835. }
  32836. },
  32837. },
  32838. [
  32839. {
  32840. name: "Micro",
  32841. height: math.unit(6, "inches")
  32842. },
  32843. {
  32844. name: "Socializing",
  32845. height: math.unit(6 + 5/12, "feet")
  32846. },
  32847. {
  32848. name: "Normal",
  32849. height: math.unit(9, "feet"),
  32850. default: true
  32851. },
  32852. {
  32853. name: "Macro",
  32854. height: math.unit(150, "feet")
  32855. },
  32856. ]
  32857. ))
  32858. characterMakers.push(() => makeCharacter(
  32859. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32860. {
  32861. front: {
  32862. height: math.unit(5 + 2/12, "feet"),
  32863. weight: math.unit(120, "lb"),
  32864. name: "Front",
  32865. image: {
  32866. source: "./media/characters/timber/front.svg",
  32867. extra: 2814/2705,
  32868. bottom: 181/2995
  32869. }
  32870. },
  32871. },
  32872. [
  32873. {
  32874. name: "Normal",
  32875. height: math.unit(5 + 2/12, "feet"),
  32876. default: true
  32877. },
  32878. ]
  32879. ))
  32880. characterMakers.push(() => makeCharacter(
  32881. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32882. {
  32883. front: {
  32884. height: math.unit(9, "feet"),
  32885. name: "Front",
  32886. image: {
  32887. source: "./media/characters/nicki/front.svg",
  32888. extra: 1240/990,
  32889. bottom: 45/1285
  32890. },
  32891. form: "anthro",
  32892. default: true
  32893. },
  32894. side: {
  32895. height: math.unit(9, "feet"),
  32896. name: "Side",
  32897. image: {
  32898. source: "./media/characters/nicki/side.svg",
  32899. extra: 1047/973,
  32900. bottom: 61/1108
  32901. },
  32902. form: "anthro"
  32903. },
  32904. back: {
  32905. height: math.unit(9, "feet"),
  32906. name: "Back",
  32907. image: {
  32908. source: "./media/characters/nicki/back.svg",
  32909. extra: 1006/965,
  32910. bottom: 39/1045
  32911. },
  32912. form: "anthro"
  32913. },
  32914. taur: {
  32915. height: math.unit(15, "feet"),
  32916. name: "Taur",
  32917. image: {
  32918. source: "./media/characters/nicki/taur.svg",
  32919. extra: 1592/1347,
  32920. bottom: 0/1592
  32921. },
  32922. form: "taur",
  32923. default: true
  32924. },
  32925. },
  32926. [
  32927. {
  32928. name: "Normal",
  32929. height: math.unit(9, "feet"),
  32930. form: "anthro",
  32931. default: true
  32932. },
  32933. {
  32934. name: "Normal",
  32935. height: math.unit(15, "feet"),
  32936. form: "taur",
  32937. default: true
  32938. }
  32939. ],
  32940. {
  32941. "anthro": {
  32942. name: "Anthro",
  32943. default: true
  32944. },
  32945. "taur": {
  32946. name: "Taur"
  32947. }
  32948. }
  32949. ))
  32950. characterMakers.push(() => makeCharacter(
  32951. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32952. {
  32953. front: {
  32954. height: math.unit(7 + 10/12, "feet"),
  32955. weight: math.unit(3.5, "tons"),
  32956. name: "Front",
  32957. image: {
  32958. source: "./media/characters/lee/front.svg",
  32959. extra: 1773/1615,
  32960. bottom: 86/1859
  32961. }
  32962. },
  32963. hand: {
  32964. height: math.unit(1.78, "feet"),
  32965. name: "Hand",
  32966. image: {
  32967. source: "./media/characters/lee/hand.svg"
  32968. }
  32969. },
  32970. maw: {
  32971. height: math.unit(1.18, "feet"),
  32972. name: "Maw",
  32973. image: {
  32974. source: "./media/characters/lee/maw.svg"
  32975. }
  32976. },
  32977. },
  32978. [
  32979. {
  32980. name: "Normal",
  32981. height: math.unit(7 + 10/12, "feet"),
  32982. default: true
  32983. },
  32984. ]
  32985. ))
  32986. characterMakers.push(() => makeCharacter(
  32987. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32988. {
  32989. front: {
  32990. height: math.unit(9, "feet"),
  32991. name: "Front",
  32992. image: {
  32993. source: "./media/characters/guti/front.svg",
  32994. extra: 4551/4355,
  32995. bottom: 123/4674
  32996. }
  32997. },
  32998. tongue: {
  32999. height: math.unit(1, "feet"),
  33000. name: "Tongue",
  33001. image: {
  33002. source: "./media/characters/guti/tongue.svg"
  33003. }
  33004. },
  33005. paw: {
  33006. height: math.unit(1.18, "feet"),
  33007. name: "Paw",
  33008. image: {
  33009. source: "./media/characters/guti/paw.svg"
  33010. }
  33011. },
  33012. },
  33013. [
  33014. {
  33015. name: "Normal",
  33016. height: math.unit(9, "feet"),
  33017. default: true
  33018. },
  33019. ]
  33020. ))
  33021. characterMakers.push(() => makeCharacter(
  33022. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33023. {
  33024. side: {
  33025. height: math.unit(5, "meters"),
  33026. name: "Side",
  33027. image: {
  33028. source: "./media/characters/vesper/side.svg",
  33029. extra: 1605/1518,
  33030. bottom: 0/1605
  33031. }
  33032. },
  33033. },
  33034. [
  33035. {
  33036. name: "Small",
  33037. height: math.unit(5, "meters")
  33038. },
  33039. {
  33040. name: "Sage",
  33041. height: math.unit(100, "meters"),
  33042. default: true
  33043. },
  33044. {
  33045. name: "Fun Size",
  33046. height: math.unit(600, "meters")
  33047. },
  33048. {
  33049. name: "Goddess",
  33050. height: math.unit(20000, "km")
  33051. },
  33052. {
  33053. name: "Maximum",
  33054. height: math.unit(5, "galaxies")
  33055. },
  33056. ]
  33057. ))
  33058. characterMakers.push(() => makeCharacter(
  33059. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33060. {
  33061. front: {
  33062. height: math.unit(6 + 3/12, "feet"),
  33063. weight: math.unit(190, "lb"),
  33064. name: "Front",
  33065. image: {
  33066. source: "./media/characters/gawain/front.svg",
  33067. extra: 2222/2139,
  33068. bottom: 90/2312
  33069. }
  33070. },
  33071. back: {
  33072. height: math.unit(6 + 3/12, "feet"),
  33073. weight: math.unit(190, "lb"),
  33074. name: "Back",
  33075. image: {
  33076. source: "./media/characters/gawain/back.svg",
  33077. extra: 2199/2111,
  33078. bottom: 73/2272
  33079. }
  33080. },
  33081. },
  33082. [
  33083. {
  33084. name: "Normal",
  33085. height: math.unit(6 + 3/12, "feet"),
  33086. default: true
  33087. },
  33088. ]
  33089. ))
  33090. characterMakers.push(() => makeCharacter(
  33091. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33092. {
  33093. side: {
  33094. height: math.unit(3.5, "meters"),
  33095. weight: math.unit(16000, "lb"),
  33096. name: "Side",
  33097. image: {
  33098. source: "./media/characters/dascalti/side.svg",
  33099. extra: 392/273,
  33100. bottom: 47/439
  33101. }
  33102. },
  33103. breath: {
  33104. height: math.unit(7.4, "feet"),
  33105. name: "Breath",
  33106. image: {
  33107. source: "./media/characters/dascalti/breath.svg"
  33108. }
  33109. },
  33110. fed: {
  33111. height: math.unit(3.6, "meters"),
  33112. weight: math.unit(16000, "lb"),
  33113. name: "Fed",
  33114. image: {
  33115. source: "./media/characters/dascalti/fed.svg",
  33116. extra: 1419/820,
  33117. bottom: 95/1514
  33118. }
  33119. },
  33120. },
  33121. [
  33122. {
  33123. name: "Normal",
  33124. height: math.unit(3.5, "meters"),
  33125. default: true
  33126. },
  33127. ]
  33128. ))
  33129. characterMakers.push(() => makeCharacter(
  33130. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33131. {
  33132. front: {
  33133. height: math.unit(3 + 5/12, "feet"),
  33134. name: "Front",
  33135. image: {
  33136. source: "./media/characters/mauve/front.svg",
  33137. extra: 1126/1033,
  33138. bottom: 65/1191
  33139. }
  33140. },
  33141. side: {
  33142. height: math.unit(3 + 5/12, "feet"),
  33143. name: "Side",
  33144. image: {
  33145. source: "./media/characters/mauve/side.svg",
  33146. extra: 1089/1001,
  33147. bottom: 29/1118
  33148. }
  33149. },
  33150. back: {
  33151. height: math.unit(3 + 5/12, "feet"),
  33152. name: "Back",
  33153. image: {
  33154. source: "./media/characters/mauve/back.svg",
  33155. extra: 1173/1053,
  33156. bottom: 109/1282
  33157. }
  33158. },
  33159. },
  33160. [
  33161. {
  33162. name: "Normal",
  33163. height: math.unit(3 + 5/12, "feet"),
  33164. default: true
  33165. },
  33166. ]
  33167. ))
  33168. characterMakers.push(() => makeCharacter(
  33169. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33170. {
  33171. front: {
  33172. height: math.unit(6 + 3/12, "feet"),
  33173. weight: math.unit(430, "lb"),
  33174. name: "Front",
  33175. image: {
  33176. source: "./media/characters/carlos/front.svg",
  33177. extra: 1964/1913,
  33178. bottom: 70/2034
  33179. }
  33180. },
  33181. },
  33182. [
  33183. {
  33184. name: "Normal",
  33185. height: math.unit(6 + 3/12, "feet"),
  33186. default: true
  33187. },
  33188. ]
  33189. ))
  33190. characterMakers.push(() => makeCharacter(
  33191. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33192. {
  33193. back: {
  33194. height: math.unit(5 + 10/12, "feet"),
  33195. weight: math.unit(200, "lb"),
  33196. name: "Back",
  33197. image: {
  33198. source: "./media/characters/jax/back.svg",
  33199. extra: 764/739,
  33200. bottom: 25/789
  33201. }
  33202. },
  33203. },
  33204. [
  33205. {
  33206. name: "Normal",
  33207. height: math.unit(5 + 10/12, "feet"),
  33208. default: true
  33209. },
  33210. ]
  33211. ))
  33212. characterMakers.push(() => makeCharacter(
  33213. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33214. {
  33215. front: {
  33216. height: math.unit(8, "feet"),
  33217. weight: math.unit(250, "lb"),
  33218. name: "Front",
  33219. image: {
  33220. source: "./media/characters/eikthynir/front.svg",
  33221. extra: 1332/1166,
  33222. bottom: 82/1414
  33223. }
  33224. },
  33225. back: {
  33226. height: math.unit(8, "feet"),
  33227. weight: math.unit(250, "lb"),
  33228. name: "Back",
  33229. image: {
  33230. source: "./media/characters/eikthynir/back.svg",
  33231. extra: 1342/1190,
  33232. bottom: 19/1361
  33233. }
  33234. },
  33235. dick: {
  33236. height: math.unit(2.35, "feet"),
  33237. name: "Dick",
  33238. image: {
  33239. source: "./media/characters/eikthynir/dick.svg"
  33240. }
  33241. },
  33242. },
  33243. [
  33244. {
  33245. name: "Normal",
  33246. height: math.unit(8, "feet"),
  33247. default: true
  33248. },
  33249. ]
  33250. ))
  33251. characterMakers.push(() => makeCharacter(
  33252. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33253. {
  33254. front: {
  33255. height: math.unit(99, "meters"),
  33256. weight: math.unit(13000, "tons"),
  33257. name: "Front",
  33258. image: {
  33259. source: "./media/characters/zlmos/front.svg",
  33260. extra: 2202/1992,
  33261. bottom: 315/2517
  33262. }
  33263. },
  33264. },
  33265. [
  33266. {
  33267. name: "Macro",
  33268. height: math.unit(99, "meters"),
  33269. default: true
  33270. },
  33271. ]
  33272. ))
  33273. characterMakers.push(() => makeCharacter(
  33274. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33275. {
  33276. front: {
  33277. height: math.unit(6 + 5/12, "feet"),
  33278. name: "Front",
  33279. image: {
  33280. source: "./media/characters/purri/front.svg",
  33281. extra: 1698/1610,
  33282. bottom: 32/1730
  33283. }
  33284. },
  33285. frontAlt: {
  33286. height: math.unit(6 + 5/12, "feet"),
  33287. name: "Front (Alt)",
  33288. image: {
  33289. source: "./media/characters/purri/front-alt.svg",
  33290. extra: 450/420,
  33291. bottom: 26/476
  33292. }
  33293. },
  33294. boots: {
  33295. height: math.unit(5.5, "feet"),
  33296. name: "Boots",
  33297. image: {
  33298. source: "./media/characters/purri/boots.svg",
  33299. extra: 905/853,
  33300. bottom: 18/923
  33301. }
  33302. },
  33303. lying: {
  33304. height: math.unit(2, "feet"),
  33305. name: "Lying",
  33306. image: {
  33307. source: "./media/characters/purri/lying.svg",
  33308. extra: 940/843,
  33309. bottom: 146/1086
  33310. }
  33311. },
  33312. devious: {
  33313. height: math.unit(1.77, "feet"),
  33314. name: "Devious",
  33315. image: {
  33316. source: "./media/characters/purri/devious.svg",
  33317. extra: 1440/1155,
  33318. bottom: 147/1587
  33319. }
  33320. },
  33321. bean: {
  33322. height: math.unit(1.94, "feet"),
  33323. name: "Bean",
  33324. image: {
  33325. source: "./media/characters/purri/bean.svg"
  33326. }
  33327. },
  33328. },
  33329. [
  33330. {
  33331. name: "Micro",
  33332. height: math.unit(1, "mm")
  33333. },
  33334. {
  33335. name: "Normal",
  33336. height: math.unit(6 + 5/12, "feet"),
  33337. default: true
  33338. },
  33339. {
  33340. name: "Macro :3c",
  33341. height: math.unit(2, "miles")
  33342. },
  33343. ]
  33344. ))
  33345. characterMakers.push(() => makeCharacter(
  33346. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33347. {
  33348. front: {
  33349. height: math.unit(6 + 2/12, "feet"),
  33350. weight: math.unit(250, "lb"),
  33351. name: "Front",
  33352. image: {
  33353. source: "./media/characters/moonlight/front.svg",
  33354. extra: 1044/908,
  33355. bottom: 56/1100
  33356. }
  33357. },
  33358. feral: {
  33359. height: math.unit(3 + 1/12, "feet"),
  33360. weight: math.unit(50, "kg"),
  33361. name: "Feral",
  33362. image: {
  33363. source: "./media/characters/moonlight/feral.svg",
  33364. extra: 3705/2791,
  33365. bottom: 145/3850
  33366. }
  33367. },
  33368. paw: {
  33369. height: math.unit(1, "feet"),
  33370. name: "Paw",
  33371. image: {
  33372. source: "./media/characters/moonlight/paw.svg"
  33373. }
  33374. },
  33375. paws: {
  33376. height: math.unit(0.98, "feet"),
  33377. name: "Paws",
  33378. image: {
  33379. source: "./media/characters/moonlight/paws.svg",
  33380. extra: 939/939,
  33381. bottom: 50/989
  33382. }
  33383. },
  33384. mouth: {
  33385. height: math.unit(0.48, "feet"),
  33386. name: "Mouth",
  33387. image: {
  33388. source: "./media/characters/moonlight/mouth.svg"
  33389. }
  33390. },
  33391. dick: {
  33392. height: math.unit(1.46, "feet"),
  33393. name: "Dick",
  33394. image: {
  33395. source: "./media/characters/moonlight/dick.svg"
  33396. }
  33397. },
  33398. },
  33399. [
  33400. {
  33401. name: "Normal",
  33402. height: math.unit(6 + 2/12, "feet"),
  33403. default: true
  33404. },
  33405. {
  33406. name: "Macro",
  33407. height: math.unit(300, "feet")
  33408. },
  33409. {
  33410. name: "Macro+",
  33411. height: math.unit(1, "mile")
  33412. },
  33413. {
  33414. name: "Mt. Moon",
  33415. height: math.unit(5, "miles")
  33416. },
  33417. {
  33418. name: "Megamacro",
  33419. height: math.unit(15, "miles")
  33420. },
  33421. ]
  33422. ))
  33423. characterMakers.push(() => makeCharacter(
  33424. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33425. {
  33426. back: {
  33427. height: math.unit(6, "feet"),
  33428. weight: math.unit(150, "lb"),
  33429. name: "Back",
  33430. image: {
  33431. source: "./media/characters/sylen/back.svg",
  33432. extra: 1335/1273,
  33433. bottom: 107/1442
  33434. }
  33435. },
  33436. },
  33437. [
  33438. {
  33439. name: "Normal",
  33440. height: math.unit(5 + 5/12, "feet")
  33441. },
  33442. {
  33443. name: "Megamacro",
  33444. height: math.unit(3, "miles"),
  33445. default: true
  33446. },
  33447. ]
  33448. ))
  33449. characterMakers.push(() => makeCharacter(
  33450. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33451. {
  33452. front: {
  33453. height: math.unit(6, "feet"),
  33454. weight: math.unit(190, "lb"),
  33455. name: "Front",
  33456. image: {
  33457. source: "./media/characters/huttser/front.svg",
  33458. extra: 1152/1058,
  33459. bottom: 23/1175
  33460. }
  33461. },
  33462. side: {
  33463. height: math.unit(6, "feet"),
  33464. weight: math.unit(190, "lb"),
  33465. name: "Side",
  33466. image: {
  33467. source: "./media/characters/huttser/side.svg",
  33468. extra: 1174/1065,
  33469. bottom: 18/1192
  33470. }
  33471. },
  33472. back: {
  33473. height: math.unit(6, "feet"),
  33474. weight: math.unit(190, "lb"),
  33475. name: "Back",
  33476. image: {
  33477. source: "./media/characters/huttser/back.svg",
  33478. extra: 1158/1056,
  33479. bottom: 12/1170
  33480. }
  33481. },
  33482. },
  33483. [
  33484. ]
  33485. ))
  33486. characterMakers.push(() => makeCharacter(
  33487. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33488. {
  33489. side: {
  33490. height: math.unit(12 + 9/12, "feet"),
  33491. weight: math.unit(15000, "lb"),
  33492. name: "Side",
  33493. image: {
  33494. source: "./media/characters/faan/side.svg",
  33495. extra: 2747/2697,
  33496. bottom: 0/2747
  33497. }
  33498. },
  33499. front: {
  33500. height: math.unit(12 + 9/12, "feet"),
  33501. weight: math.unit(15000, "lb"),
  33502. name: "Front",
  33503. image: {
  33504. source: "./media/characters/faan/front.svg",
  33505. extra: 607/571,
  33506. bottom: 24/631
  33507. }
  33508. },
  33509. head: {
  33510. height: math.unit(2.85, "feet"),
  33511. name: "Head",
  33512. image: {
  33513. source: "./media/characters/faan/head.svg"
  33514. }
  33515. },
  33516. headAlt: {
  33517. height: math.unit(3.13, "feet"),
  33518. name: "Head-alt",
  33519. image: {
  33520. source: "./media/characters/faan/head-alt.svg"
  33521. }
  33522. },
  33523. },
  33524. [
  33525. {
  33526. name: "Normal",
  33527. height: math.unit(12 + 9/12, "feet"),
  33528. default: true
  33529. },
  33530. ]
  33531. ))
  33532. characterMakers.push(() => makeCharacter(
  33533. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33534. {
  33535. front: {
  33536. height: math.unit(6, "feet"),
  33537. weight: math.unit(300, "lb"),
  33538. name: "Front",
  33539. image: {
  33540. source: "./media/characters/tanio/front.svg",
  33541. extra: 711/673,
  33542. bottom: 25/736
  33543. }
  33544. },
  33545. },
  33546. [
  33547. {
  33548. name: "Normal",
  33549. height: math.unit(6, "feet"),
  33550. default: true
  33551. },
  33552. ]
  33553. ))
  33554. characterMakers.push(() => makeCharacter(
  33555. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33556. {
  33557. front: {
  33558. height: math.unit(3, "inches"),
  33559. name: "Front",
  33560. image: {
  33561. source: "./media/characters/noboru/front.svg",
  33562. extra: 1039/932,
  33563. bottom: 18/1057
  33564. }
  33565. },
  33566. },
  33567. [
  33568. {
  33569. name: "Micro",
  33570. height: math.unit(3, "inches"),
  33571. default: true
  33572. },
  33573. ]
  33574. ))
  33575. characterMakers.push(() => makeCharacter(
  33576. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33577. {
  33578. front: {
  33579. height: math.unit(1.85, "meters"),
  33580. weight: math.unit(80, "kg"),
  33581. name: "Front",
  33582. image: {
  33583. source: "./media/characters/daniel-barrett/front.svg",
  33584. extra: 355/337,
  33585. bottom: 9/364
  33586. }
  33587. },
  33588. },
  33589. [
  33590. {
  33591. name: "Pico",
  33592. height: math.unit(0.0433, "mm")
  33593. },
  33594. {
  33595. name: "Nano",
  33596. height: math.unit(1.5, "mm")
  33597. },
  33598. {
  33599. name: "Micro",
  33600. height: math.unit(5.3, "cm"),
  33601. default: true
  33602. },
  33603. {
  33604. name: "Normal",
  33605. height: math.unit(1.85, "meters")
  33606. },
  33607. {
  33608. name: "Macro",
  33609. height: math.unit(64.7, "meters")
  33610. },
  33611. {
  33612. name: "Megamacro",
  33613. height: math.unit(2.26, "km")
  33614. },
  33615. {
  33616. name: "Gigamacro",
  33617. height: math.unit(79, "km")
  33618. },
  33619. {
  33620. name: "Teramacro",
  33621. height: math.unit(2765, "km")
  33622. },
  33623. {
  33624. name: "Petamacro",
  33625. height: math.unit(96678, "km")
  33626. },
  33627. ]
  33628. ))
  33629. characterMakers.push(() => makeCharacter(
  33630. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33631. {
  33632. front: {
  33633. height: math.unit(30, "meters"),
  33634. weight: math.unit(400, "tons"),
  33635. name: "Front",
  33636. image: {
  33637. source: "./media/characters/zeel/front.svg",
  33638. extra: 2599/2599,
  33639. bottom: 226/2825
  33640. }
  33641. },
  33642. },
  33643. [
  33644. {
  33645. name: "Macro",
  33646. height: math.unit(30, "meters"),
  33647. default: true
  33648. },
  33649. ]
  33650. ))
  33651. characterMakers.push(() => makeCharacter(
  33652. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33653. {
  33654. front: {
  33655. height: math.unit(6 + 7/12, "feet"),
  33656. weight: math.unit(210, "lb"),
  33657. name: "Front",
  33658. image: {
  33659. source: "./media/characters/tarn/front.svg",
  33660. extra: 3517/3220,
  33661. bottom: 91/3608
  33662. }
  33663. },
  33664. back: {
  33665. height: math.unit(6 + 7/12, "feet"),
  33666. weight: math.unit(210, "lb"),
  33667. name: "Back",
  33668. image: {
  33669. source: "./media/characters/tarn/back.svg",
  33670. extra: 3566/3241,
  33671. bottom: 34/3600
  33672. }
  33673. },
  33674. dick: {
  33675. height: math.unit(1.65, "feet"),
  33676. name: "Dick",
  33677. image: {
  33678. source: "./media/characters/tarn/dick.svg"
  33679. }
  33680. },
  33681. paw: {
  33682. height: math.unit(1.80, "feet"),
  33683. name: "Paw",
  33684. image: {
  33685. source: "./media/characters/tarn/paw.svg"
  33686. }
  33687. },
  33688. tongue: {
  33689. height: math.unit(0.97, "feet"),
  33690. name: "Tongue",
  33691. image: {
  33692. source: "./media/characters/tarn/tongue.svg"
  33693. }
  33694. },
  33695. },
  33696. [
  33697. {
  33698. name: "Micro",
  33699. height: math.unit(4, "inches")
  33700. },
  33701. {
  33702. name: "Normal",
  33703. height: math.unit(6 + 7/12, "feet"),
  33704. default: true
  33705. },
  33706. {
  33707. name: "Macro",
  33708. height: math.unit(300, "feet")
  33709. },
  33710. ]
  33711. ))
  33712. characterMakers.push(() => makeCharacter(
  33713. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33714. {
  33715. front: {
  33716. height: math.unit(5 + 7/12, "feet"),
  33717. weight: math.unit(80, "kg"),
  33718. name: "Front",
  33719. image: {
  33720. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33721. extra: 3023/2865,
  33722. bottom: 33/3056
  33723. }
  33724. },
  33725. back: {
  33726. height: math.unit(5 + 7/12, "feet"),
  33727. weight: math.unit(80, "kg"),
  33728. name: "Back",
  33729. image: {
  33730. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33731. extra: 3020/2886,
  33732. bottom: 30/3050
  33733. }
  33734. },
  33735. dick: {
  33736. height: math.unit(0.98, "feet"),
  33737. name: "Dick",
  33738. image: {
  33739. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33740. }
  33741. },
  33742. anatomy: {
  33743. height: math.unit(2.86, "feet"),
  33744. name: "Anatomy",
  33745. image: {
  33746. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33747. }
  33748. },
  33749. },
  33750. [
  33751. {
  33752. name: "Really Small",
  33753. height: math.unit(2, "inches")
  33754. },
  33755. {
  33756. name: "Micro",
  33757. height: math.unit(5.583, "inches")
  33758. },
  33759. {
  33760. name: "Normal",
  33761. height: math.unit(5 + 7/12, "feet"),
  33762. default: true
  33763. },
  33764. {
  33765. name: "Macro",
  33766. height: math.unit(67, "feet")
  33767. },
  33768. {
  33769. name: "Megamacro",
  33770. height: math.unit(134, "feet")
  33771. },
  33772. ]
  33773. ))
  33774. characterMakers.push(() => makeCharacter(
  33775. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33776. {
  33777. front: {
  33778. height: math.unit(9, "feet"),
  33779. weight: math.unit(120, "lb"),
  33780. name: "Front",
  33781. image: {
  33782. source: "./media/characters/sally/front.svg",
  33783. extra: 1506/1349,
  33784. bottom: 66/1572
  33785. }
  33786. },
  33787. },
  33788. [
  33789. {
  33790. name: "Normal",
  33791. height: math.unit(9, "feet"),
  33792. default: true
  33793. },
  33794. ]
  33795. ))
  33796. characterMakers.push(() => makeCharacter(
  33797. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33798. {
  33799. front: {
  33800. height: math.unit(8, "feet"),
  33801. weight: math.unit(900, "lb"),
  33802. name: "Front",
  33803. image: {
  33804. source: "./media/characters/owen/front.svg",
  33805. extra: 1761/1657,
  33806. bottom: 74/1835
  33807. }
  33808. },
  33809. side: {
  33810. height: math.unit(8, "feet"),
  33811. weight: math.unit(900, "lb"),
  33812. name: "Side",
  33813. image: {
  33814. source: "./media/characters/owen/side.svg",
  33815. extra: 1797/1734,
  33816. bottom: 30/1827
  33817. }
  33818. },
  33819. back: {
  33820. height: math.unit(8, "feet"),
  33821. weight: math.unit(900, "lb"),
  33822. name: "Back",
  33823. image: {
  33824. source: "./media/characters/owen/back.svg",
  33825. extra: 1796/1706,
  33826. bottom: 59/1855
  33827. }
  33828. },
  33829. maw: {
  33830. height: math.unit(1.76, "feet"),
  33831. name: "Maw",
  33832. image: {
  33833. source: "./media/characters/owen/maw.svg"
  33834. }
  33835. },
  33836. },
  33837. [
  33838. {
  33839. name: "Normal",
  33840. height: math.unit(8, "feet"),
  33841. default: true
  33842. },
  33843. ]
  33844. ))
  33845. characterMakers.push(() => makeCharacter(
  33846. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33847. {
  33848. front: {
  33849. height: math.unit(4, "feet"),
  33850. weight: math.unit(400, "lb"),
  33851. name: "Front",
  33852. image: {
  33853. source: "./media/characters/ryth/front.svg",
  33854. extra: 1920/1748,
  33855. bottom: 42/1962
  33856. }
  33857. },
  33858. back: {
  33859. height: math.unit(4, "feet"),
  33860. weight: math.unit(400, "lb"),
  33861. name: "Back",
  33862. image: {
  33863. source: "./media/characters/ryth/back.svg",
  33864. extra: 1897/1690,
  33865. bottom: 89/1986
  33866. }
  33867. },
  33868. mouth: {
  33869. height: math.unit(1.39, "feet"),
  33870. name: "Mouth",
  33871. image: {
  33872. source: "./media/characters/ryth/mouth.svg"
  33873. }
  33874. },
  33875. tailmaw: {
  33876. height: math.unit(1.23, "feet"),
  33877. name: "Tailmaw",
  33878. image: {
  33879. source: "./media/characters/ryth/tailmaw.svg"
  33880. }
  33881. },
  33882. goia: {
  33883. height: math.unit(4, "meters"),
  33884. weight: math.unit(10800, "lb"),
  33885. name: "Goia",
  33886. image: {
  33887. source: "./media/characters/ryth/goia.svg",
  33888. extra: 745/640,
  33889. bottom: 107/852
  33890. }
  33891. },
  33892. goiaFront: {
  33893. height: math.unit(4, "meters"),
  33894. weight: math.unit(10800, "lb"),
  33895. name: "Goia (Front)",
  33896. image: {
  33897. source: "./media/characters/ryth/goia-front.svg",
  33898. extra: 750/586,
  33899. bottom: 114/864
  33900. }
  33901. },
  33902. goiaMaw: {
  33903. height: math.unit(5.55, "feet"),
  33904. name: "Goia Maw",
  33905. image: {
  33906. source: "./media/characters/ryth/goia-maw.svg"
  33907. }
  33908. },
  33909. goiaForepaw: {
  33910. height: math.unit(3.5, "feet"),
  33911. name: "Goia Forepaw",
  33912. image: {
  33913. source: "./media/characters/ryth/goia-forepaw.svg"
  33914. }
  33915. },
  33916. goiaHindpaw: {
  33917. height: math.unit(5.55, "feet"),
  33918. name: "Goia Hindpaw",
  33919. image: {
  33920. source: "./media/characters/ryth/goia-hindpaw.svg"
  33921. }
  33922. },
  33923. },
  33924. [
  33925. {
  33926. name: "Normal",
  33927. height: math.unit(4, "feet"),
  33928. default: true
  33929. },
  33930. ]
  33931. ))
  33932. characterMakers.push(() => makeCharacter(
  33933. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33934. {
  33935. front: {
  33936. height: math.unit(7, "feet"),
  33937. weight: math.unit(180, "lb"),
  33938. name: "Front",
  33939. image: {
  33940. source: "./media/characters/necrolance/front.svg",
  33941. extra: 1062/947,
  33942. bottom: 41/1103
  33943. }
  33944. },
  33945. back: {
  33946. height: math.unit(7, "feet"),
  33947. weight: math.unit(180, "lb"),
  33948. name: "Back",
  33949. image: {
  33950. source: "./media/characters/necrolance/back.svg",
  33951. extra: 1045/984,
  33952. bottom: 14/1059
  33953. }
  33954. },
  33955. wing: {
  33956. height: math.unit(2.67, "feet"),
  33957. name: "Wing",
  33958. image: {
  33959. source: "./media/characters/necrolance/wing.svg"
  33960. }
  33961. },
  33962. },
  33963. [
  33964. {
  33965. name: "Normal",
  33966. height: math.unit(7, "feet"),
  33967. default: true
  33968. },
  33969. ]
  33970. ))
  33971. characterMakers.push(() => makeCharacter(
  33972. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33973. {
  33974. front: {
  33975. height: math.unit(76, "meters"),
  33976. weight: math.unit(30000, "tons"),
  33977. name: "Front",
  33978. image: {
  33979. source: "./media/characters/tyler/front.svg",
  33980. extra: 1640/1640,
  33981. bottom: 114/1754
  33982. }
  33983. },
  33984. },
  33985. [
  33986. {
  33987. name: "Macro",
  33988. height: math.unit(76, "meters"),
  33989. default: true
  33990. },
  33991. ]
  33992. ))
  33993. characterMakers.push(() => makeCharacter(
  33994. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33995. {
  33996. front: {
  33997. height: math.unit(4 + 11/12, "feet"),
  33998. weight: math.unit(132, "lb"),
  33999. name: "Front",
  34000. image: {
  34001. source: "./media/characters/icey/front.svg",
  34002. extra: 2750/2550,
  34003. bottom: 33/2783
  34004. }
  34005. },
  34006. back: {
  34007. height: math.unit(4 + 11/12, "feet"),
  34008. weight: math.unit(132, "lb"),
  34009. name: "Back",
  34010. image: {
  34011. source: "./media/characters/icey/back.svg",
  34012. extra: 2624/2481,
  34013. bottom: 35/2659
  34014. }
  34015. },
  34016. },
  34017. [
  34018. {
  34019. name: "Normal",
  34020. height: math.unit(4 + 11/12, "feet"),
  34021. default: true
  34022. },
  34023. ]
  34024. ))
  34025. characterMakers.push(() => makeCharacter(
  34026. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34027. {
  34028. front: {
  34029. height: math.unit(100, "feet"),
  34030. weight: math.unit(0, "lb"),
  34031. name: "Front",
  34032. image: {
  34033. source: "./media/characters/smile/front.svg",
  34034. extra: 2983/2912,
  34035. bottom: 162/3145
  34036. }
  34037. },
  34038. back: {
  34039. height: math.unit(100, "feet"),
  34040. weight: math.unit(0, "lb"),
  34041. name: "Back",
  34042. image: {
  34043. source: "./media/characters/smile/back.svg",
  34044. extra: 3143/3031,
  34045. bottom: 91/3234
  34046. }
  34047. },
  34048. head: {
  34049. height: math.unit(26.3, "feet"),
  34050. weight: math.unit(0, "lb"),
  34051. name: "Head",
  34052. image: {
  34053. source: "./media/characters/smile/head.svg"
  34054. }
  34055. },
  34056. collar: {
  34057. height: math.unit(5.3, "feet"),
  34058. weight: math.unit(0, "lb"),
  34059. name: "Collar",
  34060. image: {
  34061. source: "./media/characters/smile/collar.svg"
  34062. }
  34063. },
  34064. },
  34065. [
  34066. {
  34067. name: "Macro",
  34068. height: math.unit(100, "feet"),
  34069. default: true
  34070. },
  34071. ]
  34072. ))
  34073. characterMakers.push(() => makeCharacter(
  34074. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34075. {
  34076. dragon: {
  34077. height: math.unit(26, "feet"),
  34078. weight: math.unit(36, "tons"),
  34079. name: "Dragon",
  34080. image: {
  34081. source: "./media/characters/arimphae/dragon.svg",
  34082. extra: 1574/983,
  34083. bottom: 357/1931
  34084. }
  34085. },
  34086. drake: {
  34087. height: math.unit(9, "feet"),
  34088. weight: math.unit(1.5, "tons"),
  34089. name: "Drake",
  34090. image: {
  34091. source: "./media/characters/arimphae/drake.svg",
  34092. extra: 1120/925,
  34093. bottom: 435/1555
  34094. }
  34095. },
  34096. },
  34097. [
  34098. {
  34099. name: "Small",
  34100. height: math.unit(26*5/9, "feet")
  34101. },
  34102. {
  34103. name: "Normal",
  34104. height: math.unit(26, "feet"),
  34105. default: true
  34106. },
  34107. ]
  34108. ))
  34109. characterMakers.push(() => makeCharacter(
  34110. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34111. {
  34112. front: {
  34113. height: math.unit(8 + 9/12, "feet"),
  34114. name: "Front",
  34115. image: {
  34116. source: "./media/characters/xander/front.svg",
  34117. extra: 1237/974,
  34118. bottom: 94/1331
  34119. }
  34120. },
  34121. },
  34122. [
  34123. {
  34124. name: "Normal",
  34125. height: math.unit(8 + 9/12, "feet"),
  34126. default: true
  34127. },
  34128. {
  34129. name: "Gaze Grabber",
  34130. height: math.unit(13 + 8/12, "feet")
  34131. },
  34132. {
  34133. name: "Jaw Dropper",
  34134. height: math.unit(27, "feet")
  34135. },
  34136. {
  34137. name: "Show Stopper",
  34138. height: math.unit(136, "feet")
  34139. },
  34140. {
  34141. name: "Superstar",
  34142. height: math.unit(1.9e6, "miles")
  34143. },
  34144. ]
  34145. ))
  34146. characterMakers.push(() => makeCharacter(
  34147. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34148. {
  34149. side: {
  34150. height: math.unit(2100, "feet"),
  34151. name: "Side",
  34152. image: {
  34153. source: "./media/characters/osiris/side.svg",
  34154. extra: 1105/939,
  34155. bottom: 167/1272
  34156. }
  34157. },
  34158. },
  34159. [
  34160. {
  34161. name: "Macro",
  34162. height: math.unit(2100, "feet"),
  34163. default: true
  34164. },
  34165. ]
  34166. ))
  34167. characterMakers.push(() => makeCharacter(
  34168. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34169. {
  34170. front: {
  34171. height: math.unit(6 + 8/12, "feet"),
  34172. weight: math.unit(225, "lb"),
  34173. name: "Front",
  34174. image: {
  34175. source: "./media/characters/rhys-londe/front.svg",
  34176. extra: 2258/2141,
  34177. bottom: 188/2446
  34178. }
  34179. },
  34180. back: {
  34181. height: math.unit(6 + 8/12, "feet"),
  34182. weight: math.unit(225, "lb"),
  34183. name: "Back",
  34184. image: {
  34185. source: "./media/characters/rhys-londe/back.svg",
  34186. extra: 2237/2137,
  34187. bottom: 63/2300
  34188. }
  34189. },
  34190. frontNsfw: {
  34191. height: math.unit(6 + 8/12, "feet"),
  34192. weight: math.unit(225, "lb"),
  34193. name: "Front (NSFW)",
  34194. image: {
  34195. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34196. extra: 2258/2141,
  34197. bottom: 188/2446
  34198. }
  34199. },
  34200. backNsfw: {
  34201. height: math.unit(6 + 8/12, "feet"),
  34202. weight: math.unit(225, "lb"),
  34203. name: "Back (NSFW)",
  34204. image: {
  34205. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34206. extra: 2237/2137,
  34207. bottom: 63/2300
  34208. }
  34209. },
  34210. dick: {
  34211. height: math.unit(30, "inches"),
  34212. name: "Dick",
  34213. image: {
  34214. source: "./media/characters/rhys-londe/dick.svg"
  34215. }
  34216. },
  34217. maw: {
  34218. height: math.unit(1.6, "feet"),
  34219. name: "Maw",
  34220. image: {
  34221. source: "./media/characters/rhys-londe/maw.svg"
  34222. }
  34223. },
  34224. },
  34225. [
  34226. {
  34227. name: "Normal",
  34228. height: math.unit(6 + 8/12, "feet"),
  34229. default: true
  34230. },
  34231. ]
  34232. ))
  34233. characterMakers.push(() => makeCharacter(
  34234. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34235. {
  34236. front: {
  34237. height: math.unit(3 + 10/12, "feet"),
  34238. weight: math.unit(90, "lb"),
  34239. name: "Front",
  34240. image: {
  34241. source: "./media/characters/taivas-ensim/front.svg",
  34242. extra: 1327/1216,
  34243. bottom: 96/1423
  34244. }
  34245. },
  34246. back: {
  34247. height: math.unit(3 + 10/12, "feet"),
  34248. weight: math.unit(90, "lb"),
  34249. name: "Back",
  34250. image: {
  34251. source: "./media/characters/taivas-ensim/back.svg",
  34252. extra: 1355/1247,
  34253. bottom: 11/1366
  34254. }
  34255. },
  34256. frontNsfw: {
  34257. height: math.unit(3 + 10/12, "feet"),
  34258. weight: math.unit(90, "lb"),
  34259. name: "Front (NSFW)",
  34260. image: {
  34261. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34262. extra: 1327/1216,
  34263. bottom: 96/1423
  34264. }
  34265. },
  34266. backNsfw: {
  34267. height: math.unit(3 + 10/12, "feet"),
  34268. weight: math.unit(90, "lb"),
  34269. name: "Back (NSFW)",
  34270. image: {
  34271. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34272. extra: 1355/1247,
  34273. bottom: 11/1366
  34274. }
  34275. },
  34276. },
  34277. [
  34278. {
  34279. name: "Normal",
  34280. height: math.unit(3 + 10/12, "feet"),
  34281. default: true
  34282. },
  34283. ]
  34284. ))
  34285. characterMakers.push(() => makeCharacter(
  34286. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34287. {
  34288. front: {
  34289. height: math.unit(9 + 6/12, "feet"),
  34290. weight: math.unit(940, "lb"),
  34291. name: "Front",
  34292. image: {
  34293. source: "./media/characters/byliss/front.svg",
  34294. extra: 1327/1290,
  34295. bottom: 82/1409
  34296. }
  34297. },
  34298. back: {
  34299. height: math.unit(9 + 6/12, "feet"),
  34300. weight: math.unit(940, "lb"),
  34301. name: "Back",
  34302. image: {
  34303. source: "./media/characters/byliss/back.svg",
  34304. extra: 1376/1349,
  34305. bottom: 9/1385
  34306. }
  34307. },
  34308. frontNsfw: {
  34309. height: math.unit(9 + 6/12, "feet"),
  34310. weight: math.unit(940, "lb"),
  34311. name: "Front (NSFW)",
  34312. image: {
  34313. source: "./media/characters/byliss/front-nsfw.svg",
  34314. extra: 1327/1290,
  34315. bottom: 82/1409
  34316. }
  34317. },
  34318. backNsfw: {
  34319. height: math.unit(9 + 6/12, "feet"),
  34320. weight: math.unit(940, "lb"),
  34321. name: "Back (NSFW)",
  34322. image: {
  34323. source: "./media/characters/byliss/back-nsfw.svg",
  34324. extra: 1376/1349,
  34325. bottom: 9/1385
  34326. }
  34327. },
  34328. },
  34329. [
  34330. {
  34331. name: "Normal",
  34332. height: math.unit(9 + 6/12, "feet"),
  34333. default: true
  34334. },
  34335. ]
  34336. ))
  34337. characterMakers.push(() => makeCharacter(
  34338. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34339. {
  34340. front: {
  34341. height: math.unit(5 + 2/12, "feet"),
  34342. weight: math.unit(200, "lb"),
  34343. name: "Front",
  34344. image: {
  34345. source: "./media/characters/noraly/front.svg",
  34346. extra: 4985/4773,
  34347. bottom: 150/5135
  34348. }
  34349. },
  34350. full: {
  34351. height: math.unit(5 + 2/12, "feet"),
  34352. weight: math.unit(164, "lb"),
  34353. name: "Full",
  34354. image: {
  34355. source: "./media/characters/noraly/full.svg",
  34356. extra: 1114/1059,
  34357. bottom: 35/1149
  34358. }
  34359. },
  34360. fuller: {
  34361. height: math.unit(5 + 2/12, "feet"),
  34362. weight: math.unit(230, "lb"),
  34363. name: "Fuller",
  34364. image: {
  34365. source: "./media/characters/noraly/fuller.svg",
  34366. extra: 1114/1059,
  34367. bottom: 35/1149
  34368. }
  34369. },
  34370. fullest: {
  34371. height: math.unit(5 + 2/12, "feet"),
  34372. weight: math.unit(300, "lb"),
  34373. name: "Fullest",
  34374. image: {
  34375. source: "./media/characters/noraly/fullest.svg",
  34376. extra: 1114/1059,
  34377. bottom: 35/1149
  34378. }
  34379. },
  34380. },
  34381. [
  34382. {
  34383. name: "Normal",
  34384. height: math.unit(5 + 2/12, "feet"),
  34385. default: true
  34386. },
  34387. ]
  34388. ))
  34389. characterMakers.push(() => makeCharacter(
  34390. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34391. {
  34392. front: {
  34393. height: math.unit(5 + 2/12, "feet"),
  34394. weight: math.unit(210, "lb"),
  34395. name: "Front",
  34396. image: {
  34397. source: "./media/characters/pera/front.svg",
  34398. extra: 1560/1531,
  34399. bottom: 165/1725
  34400. }
  34401. },
  34402. back: {
  34403. height: math.unit(5 + 2/12, "feet"),
  34404. weight: math.unit(210, "lb"),
  34405. name: "Back",
  34406. image: {
  34407. source: "./media/characters/pera/back.svg",
  34408. extra: 1523/1493,
  34409. bottom: 152/1675
  34410. }
  34411. },
  34412. dick: {
  34413. height: math.unit(2.4, "feet"),
  34414. name: "Dick",
  34415. image: {
  34416. source: "./media/characters/pera/dick.svg"
  34417. }
  34418. },
  34419. },
  34420. [
  34421. {
  34422. name: "Normal",
  34423. height: math.unit(5 + 2/12, "feet"),
  34424. default: true
  34425. },
  34426. ]
  34427. ))
  34428. characterMakers.push(() => makeCharacter(
  34429. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34430. {
  34431. front: {
  34432. height: math.unit(12, "feet"),
  34433. weight: math.unit(3200, "lb"),
  34434. name: "Front",
  34435. image: {
  34436. source: "./media/characters/julian/front.svg",
  34437. extra: 2962/2701,
  34438. bottom: 184/3146
  34439. }
  34440. },
  34441. maw: {
  34442. height: math.unit(5.35, "feet"),
  34443. name: "Maw",
  34444. image: {
  34445. source: "./media/characters/julian/maw.svg"
  34446. }
  34447. },
  34448. paw: {
  34449. height: math.unit(3.07, "feet"),
  34450. name: "Paw",
  34451. image: {
  34452. source: "./media/characters/julian/paw.svg"
  34453. }
  34454. },
  34455. },
  34456. [
  34457. {
  34458. name: "Default",
  34459. height: math.unit(12, "feet"),
  34460. default: true
  34461. },
  34462. {
  34463. name: "Big",
  34464. height: math.unit(50, "feet")
  34465. },
  34466. {
  34467. name: "Really Big",
  34468. height: math.unit(1, "mile")
  34469. },
  34470. {
  34471. name: "Extremely Big",
  34472. height: math.unit(100, "miles")
  34473. },
  34474. {
  34475. name: "Planet Hugger",
  34476. height: math.unit(200, "megameters")
  34477. },
  34478. {
  34479. name: "Unreasonably Big",
  34480. height: math.unit(1e300, "meters")
  34481. },
  34482. ]
  34483. ))
  34484. characterMakers.push(() => makeCharacter(
  34485. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34486. {
  34487. solgooleo: {
  34488. height: math.unit(4, "meters"),
  34489. weight: math.unit(6000*1.5, "kg"),
  34490. volume: math.unit(6000, "liters"),
  34491. name: "Solgooleo",
  34492. image: {
  34493. source: "./media/characters/pi/solgooleo.svg",
  34494. extra: 388/331,
  34495. bottom: 29/417
  34496. }
  34497. },
  34498. },
  34499. [
  34500. {
  34501. name: "Normal",
  34502. height: math.unit(4, "meters"),
  34503. default: true
  34504. },
  34505. ]
  34506. ))
  34507. characterMakers.push(() => makeCharacter(
  34508. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34509. {
  34510. front: {
  34511. height: math.unit(8, "feet"),
  34512. weight: math.unit(4, "tons"),
  34513. name: "Front",
  34514. image: {
  34515. source: "./media/characters/shaun/front.svg",
  34516. extra: 503/495,
  34517. bottom: 20/523
  34518. }
  34519. },
  34520. back: {
  34521. height: math.unit(8, "feet"),
  34522. weight: math.unit(4, "tons"),
  34523. name: "Back",
  34524. image: {
  34525. source: "./media/characters/shaun/back.svg",
  34526. extra: 487/480,
  34527. bottom: 20/507
  34528. }
  34529. },
  34530. },
  34531. [
  34532. {
  34533. name: "Lorg",
  34534. height: math.unit(8, "feet"),
  34535. default: true
  34536. },
  34537. ]
  34538. ))
  34539. characterMakers.push(() => makeCharacter(
  34540. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34541. {
  34542. frontAnthro: {
  34543. height: math.unit(7, "feet"),
  34544. name: "Front",
  34545. image: {
  34546. source: "./media/characters/sini/front-anthro.svg",
  34547. extra: 726/678,
  34548. bottom: 35/761
  34549. },
  34550. form: "anthro",
  34551. default: true
  34552. },
  34553. backAnthro: {
  34554. height: math.unit(7, "feet"),
  34555. name: "Back",
  34556. image: {
  34557. source: "./media/characters/sini/back-anthro.svg",
  34558. extra: 743/701,
  34559. bottom: 12/755
  34560. },
  34561. form: "anthro",
  34562. },
  34563. frontAnthroNsfw: {
  34564. height: math.unit(7, "feet"),
  34565. name: "Front (NSFW)",
  34566. image: {
  34567. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34568. extra: 726/678,
  34569. bottom: 35/761
  34570. },
  34571. form: "anthro"
  34572. },
  34573. backAnthroNsfw: {
  34574. height: math.unit(7, "feet"),
  34575. name: "Back (NSFW)",
  34576. image: {
  34577. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34578. extra: 743/701,
  34579. bottom: 12/755
  34580. },
  34581. form: "anthro",
  34582. },
  34583. mawAnthro: {
  34584. height: math.unit(2.14, "feet"),
  34585. name: "Maw",
  34586. image: {
  34587. source: "./media/characters/sini/maw-anthro.svg"
  34588. },
  34589. form: "anthro"
  34590. },
  34591. dick: {
  34592. height: math.unit(1.45, "feet"),
  34593. name: "Dick",
  34594. image: {
  34595. source: "./media/characters/sini/dick-anthro.svg"
  34596. },
  34597. form: "anthro"
  34598. },
  34599. feral: {
  34600. height: math.unit(16, "feet"),
  34601. name: "Feral",
  34602. image: {
  34603. source: "./media/characters/sini/feral.svg",
  34604. extra: 814/605,
  34605. bottom: 11/825
  34606. },
  34607. form: "feral",
  34608. default: true
  34609. },
  34610. feralNsfw: {
  34611. height: math.unit(16, "feet"),
  34612. name: "Feral (NSFW)",
  34613. image: {
  34614. source: "./media/characters/sini/feral-nsfw.svg",
  34615. extra: 814/605,
  34616. bottom: 11/825
  34617. },
  34618. form: "feral"
  34619. },
  34620. mawFeral: {
  34621. height: math.unit(5.66, "feet"),
  34622. name: "Maw",
  34623. image: {
  34624. source: "./media/characters/sini/maw-feral.svg"
  34625. },
  34626. form: "feral",
  34627. },
  34628. pawFeral: {
  34629. height: math.unit(5.17, "feet"),
  34630. name: "Paw",
  34631. image: {
  34632. source: "./media/characters/sini/paw-feral.svg"
  34633. },
  34634. form: "feral",
  34635. },
  34636. rumpFeral: {
  34637. height: math.unit(13.11, "feet"),
  34638. name: "Rump",
  34639. image: {
  34640. source: "./media/characters/sini/rump-feral.svg"
  34641. },
  34642. form: "feral",
  34643. },
  34644. dickFeral: {
  34645. height: math.unit(1, "feet"),
  34646. name: "Dick",
  34647. image: {
  34648. source: "./media/characters/sini/dick-feral.svg"
  34649. },
  34650. form: "feral",
  34651. },
  34652. eyeFeral: {
  34653. height: math.unit(1.23, "feet"),
  34654. name: "Eye",
  34655. image: {
  34656. source: "./media/characters/sini/eye-feral.svg"
  34657. },
  34658. form: "feral",
  34659. },
  34660. },
  34661. [
  34662. {
  34663. name: "Normal",
  34664. height: math.unit(7, "feet"),
  34665. default: true,
  34666. form: "anthro"
  34667. },
  34668. {
  34669. name: "Normal",
  34670. height: math.unit(16, "feet"),
  34671. default: true,
  34672. form: "feral"
  34673. },
  34674. ],
  34675. {
  34676. "anthro": {
  34677. name: "Anthro",
  34678. default: true
  34679. },
  34680. "feral": {
  34681. name: "Feral",
  34682. }
  34683. }
  34684. ))
  34685. characterMakers.push(() => makeCharacter(
  34686. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34687. {
  34688. side: {
  34689. height: math.unit(47.2, "meters"),
  34690. weight: math.unit(10000, "tons"),
  34691. name: "Side",
  34692. image: {
  34693. source: "./media/characters/raylldo/side.svg",
  34694. extra: 2363/642,
  34695. bottom: 221/2584
  34696. }
  34697. },
  34698. top: {
  34699. height: math.unit(240, "meters"),
  34700. weight: math.unit(10000, "tons"),
  34701. name: "Top",
  34702. image: {
  34703. source: "./media/characters/raylldo/top.svg"
  34704. }
  34705. },
  34706. bottom: {
  34707. height: math.unit(240, "meters"),
  34708. weight: math.unit(10000, "tons"),
  34709. name: "Bottom",
  34710. image: {
  34711. source: "./media/characters/raylldo/bottom.svg"
  34712. }
  34713. },
  34714. head: {
  34715. height: math.unit(38.6, "meters"),
  34716. name: "Head",
  34717. image: {
  34718. source: "./media/characters/raylldo/head.svg",
  34719. extra: 1335/1112,
  34720. bottom: 0/1335
  34721. }
  34722. },
  34723. maw: {
  34724. height: math.unit(16.37, "meters"),
  34725. name: "Maw",
  34726. image: {
  34727. source: "./media/characters/raylldo/maw.svg",
  34728. extra: 883/660,
  34729. bottom: 0/883
  34730. },
  34731. extraAttributes: {
  34732. preyCapacity: {
  34733. name: "Capacity",
  34734. power: 3,
  34735. type: "volume",
  34736. base: math.unit(1000, "people")
  34737. },
  34738. tongueSize: {
  34739. name: "Tongue Size",
  34740. power: 2,
  34741. type: "area",
  34742. base: math.unit(21, "m^2")
  34743. }
  34744. }
  34745. },
  34746. forepaw: {
  34747. height: math.unit(18, "meters"),
  34748. name: "Forepaw",
  34749. image: {
  34750. source: "./media/characters/raylldo/forepaw.svg"
  34751. }
  34752. },
  34753. hindpaw: {
  34754. height: math.unit(23, "meters"),
  34755. name: "Hindpaw",
  34756. image: {
  34757. source: "./media/characters/raylldo/hindpaw.svg"
  34758. }
  34759. },
  34760. genitals: {
  34761. height: math.unit(42, "meters"),
  34762. name: "Genitals",
  34763. image: {
  34764. source: "./media/characters/raylldo/genitals.svg"
  34765. }
  34766. },
  34767. },
  34768. [
  34769. {
  34770. name: "Normal",
  34771. height: math.unit(47.2, "meters"),
  34772. default: true
  34773. },
  34774. ]
  34775. ))
  34776. characterMakers.push(() => makeCharacter(
  34777. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34778. {
  34779. anthroFront: {
  34780. height: math.unit(9, "feet"),
  34781. weight: math.unit(600, "lb"),
  34782. name: "Anthro (Front)",
  34783. image: {
  34784. source: "./media/characters/glint/anthro-front.svg",
  34785. extra: 1097/1018,
  34786. bottom: 28/1125
  34787. }
  34788. },
  34789. anthroBack: {
  34790. height: math.unit(9, "feet"),
  34791. weight: math.unit(600, "lb"),
  34792. name: "Anthro (Back)",
  34793. image: {
  34794. source: "./media/characters/glint/anthro-back.svg",
  34795. extra: 1154/997,
  34796. bottom: 36/1190
  34797. }
  34798. },
  34799. feral: {
  34800. height: math.unit(11, "feet"),
  34801. weight: math.unit(50000, "lb"),
  34802. name: "Feral",
  34803. image: {
  34804. source: "./media/characters/glint/feral.svg",
  34805. extra: 3035/1585,
  34806. bottom: 1169/4204
  34807. }
  34808. },
  34809. dickAnthro: {
  34810. height: math.unit(0.7, "meters"),
  34811. name: "Dick (Anthro)",
  34812. image: {
  34813. source: "./media/characters/glint/dick-anthro.svg"
  34814. }
  34815. },
  34816. dickFeral: {
  34817. height: math.unit(2.65, "meters"),
  34818. name: "Dick (Feral)",
  34819. image: {
  34820. source: "./media/characters/glint/dick-feral.svg"
  34821. }
  34822. },
  34823. slitHidden: {
  34824. height: math.unit(5.85, "meters"),
  34825. name: "Slit (Hidden)",
  34826. image: {
  34827. source: "./media/characters/glint/slit-hidden.svg"
  34828. }
  34829. },
  34830. slitErect: {
  34831. height: math.unit(5.85, "meters"),
  34832. name: "Slit (Erect)",
  34833. image: {
  34834. source: "./media/characters/glint/slit-erect.svg"
  34835. }
  34836. },
  34837. mawAnthro: {
  34838. height: math.unit(0.63, "meters"),
  34839. name: "Maw (Anthro)",
  34840. image: {
  34841. source: "./media/characters/glint/maw.svg"
  34842. }
  34843. },
  34844. mawFeral: {
  34845. height: math.unit(2.89, "meters"),
  34846. name: "Maw (Feral)",
  34847. image: {
  34848. source: "./media/characters/glint/maw.svg"
  34849. }
  34850. },
  34851. },
  34852. [
  34853. {
  34854. name: "Normal",
  34855. height: math.unit(9, "feet"),
  34856. default: true
  34857. },
  34858. ]
  34859. ))
  34860. characterMakers.push(() => makeCharacter(
  34861. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34862. {
  34863. side: {
  34864. height: math.unit(15, "feet"),
  34865. weight: math.unit(5000, "kg"),
  34866. name: "Side",
  34867. image: {
  34868. source: "./media/characters/kairne/side.svg",
  34869. extra: 979/811,
  34870. bottom: 13/992
  34871. }
  34872. },
  34873. front: {
  34874. height: math.unit(15, "feet"),
  34875. weight: math.unit(5000, "kg"),
  34876. name: "Front",
  34877. image: {
  34878. source: "./media/characters/kairne/front.svg",
  34879. extra: 908/814,
  34880. bottom: 26/934
  34881. }
  34882. },
  34883. sideNsfw: {
  34884. height: math.unit(15, "feet"),
  34885. weight: math.unit(5000, "kg"),
  34886. name: "Side (NSFW)",
  34887. image: {
  34888. source: "./media/characters/kairne/side-nsfw.svg",
  34889. extra: 979/811,
  34890. bottom: 13/992
  34891. }
  34892. },
  34893. frontNsfw: {
  34894. height: math.unit(15, "feet"),
  34895. weight: math.unit(5000, "kg"),
  34896. name: "Front (NSFW)",
  34897. image: {
  34898. source: "./media/characters/kairne/front-nsfw.svg",
  34899. extra: 908/814,
  34900. bottom: 26/934
  34901. }
  34902. },
  34903. dickCaged: {
  34904. height: math.unit(0.65, "meters"),
  34905. name: "Dick-caged",
  34906. image: {
  34907. source: "./media/characters/kairne/dick-caged.svg"
  34908. }
  34909. },
  34910. dick: {
  34911. height: math.unit(0.79, "meters"),
  34912. name: "Dick",
  34913. image: {
  34914. source: "./media/characters/kairne/dick.svg"
  34915. }
  34916. },
  34917. genitals: {
  34918. height: math.unit(1.29, "meters"),
  34919. name: "Genitals",
  34920. image: {
  34921. source: "./media/characters/kairne/genitals.svg"
  34922. }
  34923. },
  34924. maw: {
  34925. height: math.unit(1.73, "meters"),
  34926. name: "Maw",
  34927. image: {
  34928. source: "./media/characters/kairne/maw.svg"
  34929. }
  34930. },
  34931. },
  34932. [
  34933. {
  34934. name: "Normal",
  34935. height: math.unit(15, "feet"),
  34936. default: true
  34937. },
  34938. ]
  34939. ))
  34940. characterMakers.push(() => makeCharacter(
  34941. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34942. {
  34943. front: {
  34944. height: math.unit(5 + 8/12, "feet"),
  34945. weight: math.unit(139, "lb"),
  34946. name: "Front",
  34947. image: {
  34948. source: "./media/characters/biscuit-jackal/front.svg",
  34949. extra: 2106/1961,
  34950. bottom: 58/2164
  34951. }
  34952. },
  34953. back: {
  34954. height: math.unit(5 + 8/12, "feet"),
  34955. weight: math.unit(139, "lb"),
  34956. name: "Back",
  34957. image: {
  34958. source: "./media/characters/biscuit-jackal/back.svg",
  34959. extra: 2132/1976,
  34960. bottom: 57/2189
  34961. }
  34962. },
  34963. werejackal: {
  34964. height: math.unit(6 + 3/12, "feet"),
  34965. weight: math.unit(188, "lb"),
  34966. name: "Werejackal",
  34967. image: {
  34968. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34969. extra: 2373/2178,
  34970. bottom: 53/2426
  34971. }
  34972. },
  34973. },
  34974. [
  34975. {
  34976. name: "Normal",
  34977. height: math.unit(5 + 8/12, "feet"),
  34978. default: true
  34979. },
  34980. ]
  34981. ))
  34982. characterMakers.push(() => makeCharacter(
  34983. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34984. {
  34985. front: {
  34986. height: math.unit(140, "cm"),
  34987. weight: math.unit(45, "kg"),
  34988. name: "Front",
  34989. image: {
  34990. source: "./media/characters/tayra-white/front.svg",
  34991. extra: 2229/2192,
  34992. bottom: 75/2304
  34993. }
  34994. },
  34995. },
  34996. [
  34997. {
  34998. name: "Normal",
  34999. height: math.unit(140, "cm"),
  35000. default: true
  35001. },
  35002. ]
  35003. ))
  35004. characterMakers.push(() => makeCharacter(
  35005. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35006. {
  35007. front: {
  35008. height: math.unit(4 + 5/12, "feet"),
  35009. name: "Front",
  35010. image: {
  35011. source: "./media/characters/scoop/front.svg",
  35012. extra: 1257/1136,
  35013. bottom: 69/1326
  35014. }
  35015. },
  35016. back: {
  35017. height: math.unit(4 + 5/12, "feet"),
  35018. name: "Back",
  35019. image: {
  35020. source: "./media/characters/scoop/back.svg",
  35021. extra: 1321/1152,
  35022. bottom: 32/1353
  35023. }
  35024. },
  35025. maw: {
  35026. height: math.unit(0.68, "feet"),
  35027. name: "Maw",
  35028. image: {
  35029. source: "./media/characters/scoop/maw.svg"
  35030. }
  35031. },
  35032. },
  35033. [
  35034. {
  35035. name: "Really Small",
  35036. height: math.unit(1, "mm")
  35037. },
  35038. {
  35039. name: "Micro",
  35040. height: math.unit(1, "inch")
  35041. },
  35042. {
  35043. name: "Normal",
  35044. height: math.unit(4 + 5/12, "feet"),
  35045. default: true
  35046. },
  35047. {
  35048. name: "Macro",
  35049. height: math.unit(200, "feet")
  35050. },
  35051. {
  35052. name: "Megamacro",
  35053. height: math.unit(3240, "feet")
  35054. },
  35055. {
  35056. name: "Teramacro",
  35057. height: math.unit(2500, "miles")
  35058. },
  35059. ]
  35060. ))
  35061. characterMakers.push(() => makeCharacter(
  35062. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35063. {
  35064. front: {
  35065. height: math.unit(15 + 7/12, "feet"),
  35066. weight: math.unit(1150, "tons"),
  35067. name: "Front",
  35068. image: {
  35069. source: "./media/characters/saphinara/front.svg",
  35070. extra: 1837/1643,
  35071. bottom: 84/1921
  35072. },
  35073. form: "normal",
  35074. default: true
  35075. },
  35076. side: {
  35077. height: math.unit(15 + 7/12, "feet"),
  35078. weight: math.unit(1150, "tons"),
  35079. name: "Side",
  35080. image: {
  35081. source: "./media/characters/saphinara/side.svg",
  35082. extra: 605/547,
  35083. bottom: 6/611
  35084. },
  35085. form: "normal"
  35086. },
  35087. back: {
  35088. height: math.unit(15 + 7/12, "feet"),
  35089. weight: math.unit(1150, "tons"),
  35090. name: "Back",
  35091. image: {
  35092. source: "./media/characters/saphinara/back.svg",
  35093. extra: 591/531,
  35094. bottom: 13/604
  35095. },
  35096. form: "normal"
  35097. },
  35098. frontTail: {
  35099. height: math.unit(15 + 7/12, "feet"),
  35100. weight: math.unit(1150, "tons"),
  35101. name: "Front (Full Tail)",
  35102. image: {
  35103. source: "./media/characters/saphinara/front-tail.svg",
  35104. extra: 2256/1630,
  35105. bottom: 261/2517
  35106. },
  35107. form: "normal"
  35108. },
  35109. insides: {
  35110. height: math.unit(11.92, "feet"),
  35111. name: "Insides",
  35112. image: {
  35113. source: "./media/characters/saphinara/insides.svg"
  35114. },
  35115. form: "normal"
  35116. },
  35117. head: {
  35118. height: math.unit(4.17, "feet"),
  35119. name: "Head",
  35120. image: {
  35121. source: "./media/characters/saphinara/head.svg"
  35122. },
  35123. form: "normal"
  35124. },
  35125. tongue: {
  35126. height: math.unit(4.60, "feet"),
  35127. name: "Tongue",
  35128. image: {
  35129. source: "./media/characters/saphinara/tongue.svg"
  35130. },
  35131. form: "normal"
  35132. },
  35133. headEnraged: {
  35134. height: math.unit(5.55, "feet"),
  35135. name: "Head (Enraged)",
  35136. image: {
  35137. source: "./media/characters/saphinara/head-enraged.svg"
  35138. },
  35139. form: "normal"
  35140. },
  35141. wings: {
  35142. height: math.unit(11.95, "feet"),
  35143. name: "Wings",
  35144. image: {
  35145. source: "./media/characters/saphinara/wings.svg"
  35146. },
  35147. form: "normal"
  35148. },
  35149. feathers: {
  35150. height: math.unit(8.92, "feet"),
  35151. name: "Feathers",
  35152. image: {
  35153. source: "./media/characters/saphinara/feathers.svg"
  35154. },
  35155. form: "normal"
  35156. },
  35157. shackles: {
  35158. height: math.unit(2, "feet"),
  35159. name: "Shackles",
  35160. image: {
  35161. source: "./media/characters/saphinara/shackles.svg"
  35162. },
  35163. form: "normal"
  35164. },
  35165. eyes: {
  35166. height: math.unit(1.331, "feet"),
  35167. name: "Eyes",
  35168. image: {
  35169. source: "./media/characters/saphinara/eyes.svg"
  35170. },
  35171. form: "normal"
  35172. },
  35173. eyesEnraged: {
  35174. height: math.unit(1.331, "feet"),
  35175. name: "Eyes (Enraged)",
  35176. image: {
  35177. source: "./media/characters/saphinara/eyes-enraged.svg"
  35178. },
  35179. form: "normal"
  35180. },
  35181. trueFormSide: {
  35182. height: math.unit(200, "feet"),
  35183. weight: math.unit(1e7, "tons"),
  35184. name: "Side",
  35185. image: {
  35186. source: "./media/characters/saphinara/true-form-side.svg",
  35187. extra: 1399/770,
  35188. bottom: 97/1496
  35189. },
  35190. form: "true-form",
  35191. default: true
  35192. },
  35193. trueFormMaw: {
  35194. height: math.unit(71.5, "feet"),
  35195. name: "Maw",
  35196. image: {
  35197. source: "./media/characters/saphinara/true-form-maw.svg",
  35198. extra: 2302/1453,
  35199. bottom: 0/2302
  35200. },
  35201. form: "true-form"
  35202. },
  35203. meowberusSide: {
  35204. height: math.unit(75, "feet"),
  35205. weight: math.unit(180000, "kg"),
  35206. preyCapacity: math.unit(50000, "people"),
  35207. name: "Side",
  35208. image: {
  35209. source: "./media/characters/saphinara/meowberus-side.svg",
  35210. extra: 1400/711,
  35211. bottom: 126/1526
  35212. },
  35213. form: "meowberus",
  35214. extraAttributes: {
  35215. "pawArea": {
  35216. name: "Paw Size",
  35217. power: 2,
  35218. type: "area",
  35219. base: math.unit(35, "m^2")
  35220. }
  35221. }
  35222. },
  35223. },
  35224. [
  35225. {
  35226. name: "Normal",
  35227. height: math.unit(15 + 7/12, "feet"),
  35228. default: true,
  35229. form: "normal"
  35230. },
  35231. {
  35232. name: "Angry",
  35233. height: math.unit(30 + 6/12, "feet"),
  35234. form: "normal"
  35235. },
  35236. {
  35237. name: "Enraged",
  35238. height: math.unit(102 + 1/12, "feet"),
  35239. form: "normal"
  35240. },
  35241. {
  35242. name: "True",
  35243. height: math.unit(200, "feet"),
  35244. default: true,
  35245. form: "true-form"
  35246. },
  35247. {
  35248. name: "Normal",
  35249. height: math.unit(75, "feet"),
  35250. default: true,
  35251. form: "meowberus"
  35252. },
  35253. ],
  35254. {
  35255. "normal": {
  35256. name: "Normal",
  35257. default: true
  35258. },
  35259. "true-form": {
  35260. name: "True Form"
  35261. },
  35262. "meowberus": {
  35263. name: "Meowberus",
  35264. },
  35265. }
  35266. ))
  35267. characterMakers.push(() => makeCharacter(
  35268. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35269. {
  35270. front: {
  35271. height: math.unit(6 + 8/12, "feet"),
  35272. weight: math.unit(300, "lb"),
  35273. name: "Front",
  35274. image: {
  35275. source: "./media/characters/jrain/front.svg",
  35276. extra: 3039/2865,
  35277. bottom: 399/3438
  35278. }
  35279. },
  35280. back: {
  35281. height: math.unit(6 + 8/12, "feet"),
  35282. weight: math.unit(300, "lb"),
  35283. name: "Back",
  35284. image: {
  35285. source: "./media/characters/jrain/back.svg",
  35286. extra: 3089/2938,
  35287. bottom: 172/3261
  35288. }
  35289. },
  35290. head: {
  35291. height: math.unit(2.14, "feet"),
  35292. name: "Head",
  35293. image: {
  35294. source: "./media/characters/jrain/head.svg"
  35295. }
  35296. },
  35297. maw: {
  35298. height: math.unit(1.77, "feet"),
  35299. name: "Maw",
  35300. image: {
  35301. source: "./media/characters/jrain/maw.svg"
  35302. }
  35303. },
  35304. leftHand: {
  35305. height: math.unit(1.1, "feet"),
  35306. name: "Left Hand",
  35307. image: {
  35308. source: "./media/characters/jrain/left-hand.svg"
  35309. }
  35310. },
  35311. rightHand: {
  35312. height: math.unit(1.1, "feet"),
  35313. name: "Right Hand",
  35314. image: {
  35315. source: "./media/characters/jrain/right-hand.svg"
  35316. }
  35317. },
  35318. eye: {
  35319. height: math.unit(0.35, "feet"),
  35320. name: "Eye",
  35321. image: {
  35322. source: "./media/characters/jrain/eye.svg"
  35323. }
  35324. },
  35325. },
  35326. [
  35327. {
  35328. name: "Normal",
  35329. height: math.unit(6 + 8/12, "feet"),
  35330. default: true
  35331. },
  35332. {
  35333. name: "Casually Large",
  35334. height: math.unit(25, "feet")
  35335. },
  35336. {
  35337. name: "Giant",
  35338. height: math.unit(100, "feet")
  35339. },
  35340. {
  35341. name: "Kaiju",
  35342. height: math.unit(300, "feet")
  35343. },
  35344. ]
  35345. ))
  35346. characterMakers.push(() => makeCharacter(
  35347. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35348. {
  35349. dragon: {
  35350. height: math.unit(5, "meters"),
  35351. name: "Dragon",
  35352. image: {
  35353. source: "./media/characters/sabrina/dragon.svg",
  35354. extra: 3670 / 2365,
  35355. bottom: 333 / 4003
  35356. }
  35357. },
  35358. gryphon: {
  35359. height: math.unit(3, "meters"),
  35360. name: "Gryphon",
  35361. image: {
  35362. source: "./media/characters/sabrina/gryphon.svg",
  35363. extra: 1576 / 945,
  35364. bottom: 71 / 1647
  35365. }
  35366. },
  35367. snake: {
  35368. height: math.unit(12, "meters"),
  35369. name: "Snake",
  35370. image: {
  35371. source: "./media/characters/sabrina/snake.svg",
  35372. extra: 1758 / 1320,
  35373. bottom: 186 / 1944
  35374. }
  35375. },
  35376. collar: {
  35377. height: math.unit(1.86, "meters"),
  35378. name: "Collar",
  35379. image: {
  35380. source: "./media/characters/sabrina/collar.svg"
  35381. }
  35382. },
  35383. eye: {
  35384. height: math.unit(0.53, "meters"),
  35385. name: "Eye",
  35386. image: {
  35387. source: "./media/characters/sabrina/eye.svg"
  35388. }
  35389. },
  35390. foot: {
  35391. height: math.unit(1.86, "meters"),
  35392. name: "Foot",
  35393. image: {
  35394. source: "./media/characters/sabrina/foot.svg"
  35395. }
  35396. },
  35397. hand: {
  35398. height: math.unit(1.32, "meters"),
  35399. name: "Hand",
  35400. image: {
  35401. source: "./media/characters/sabrina/hand.svg"
  35402. }
  35403. },
  35404. head: {
  35405. height: math.unit(2.44, "meters"),
  35406. name: "Head",
  35407. image: {
  35408. source: "./media/characters/sabrina/head.svg"
  35409. }
  35410. },
  35411. headAngry: {
  35412. height: math.unit(2.44, "meters"),
  35413. name: "Head (Angry))",
  35414. image: {
  35415. source: "./media/characters/sabrina/head-angry.svg"
  35416. }
  35417. },
  35418. maw: {
  35419. height: math.unit(1.65, "meters"),
  35420. name: "Maw",
  35421. image: {
  35422. source: "./media/characters/sabrina/maw.svg"
  35423. }
  35424. },
  35425. spikes: {
  35426. height: math.unit(1.69, "meters"),
  35427. name: "Spikes",
  35428. image: {
  35429. source: "./media/characters/sabrina/spikes.svg"
  35430. }
  35431. },
  35432. stomach: {
  35433. height: math.unit(1.15, "meters"),
  35434. name: "Stomach",
  35435. image: {
  35436. source: "./media/characters/sabrina/stomach.svg"
  35437. }
  35438. },
  35439. tongue: {
  35440. height: math.unit(1.27, "meters"),
  35441. name: "Tongue",
  35442. image: {
  35443. source: "./media/characters/sabrina/tongue.svg"
  35444. }
  35445. },
  35446. wingDorsal: {
  35447. height: math.unit(4.85, "meters"),
  35448. name: "Wing (Dorsal)",
  35449. image: {
  35450. source: "./media/characters/sabrina/wing-dorsal.svg"
  35451. }
  35452. },
  35453. wingVentral: {
  35454. height: math.unit(4.85, "meters"),
  35455. name: "Wing (Ventral)",
  35456. image: {
  35457. source: "./media/characters/sabrina/wing-ventral.svg"
  35458. }
  35459. },
  35460. },
  35461. [
  35462. {
  35463. name: "Normal",
  35464. height: math.unit(5, "meters"),
  35465. default: true
  35466. },
  35467. ]
  35468. ))
  35469. characterMakers.push(() => makeCharacter(
  35470. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35471. {
  35472. frontMaid: {
  35473. height: math.unit(5 + 5/12, "feet"),
  35474. weight: math.unit(130, "lb"),
  35475. name: "Front (Maid)",
  35476. image: {
  35477. source: "./media/characters/midnight-tales/front-maid.svg",
  35478. extra: 489/454,
  35479. bottom: 61/550
  35480. }
  35481. },
  35482. frontFormal: {
  35483. height: math.unit(5 + 5/12, "feet"),
  35484. weight: math.unit(130, "lb"),
  35485. name: "Front (Formal)",
  35486. image: {
  35487. source: "./media/characters/midnight-tales/front-formal.svg",
  35488. extra: 489/454,
  35489. bottom: 61/550
  35490. }
  35491. },
  35492. back: {
  35493. height: math.unit(5 + 5/12, "feet"),
  35494. weight: math.unit(130, "lb"),
  35495. name: "Back",
  35496. image: {
  35497. source: "./media/characters/midnight-tales/back.svg",
  35498. extra: 498/456,
  35499. bottom: 33/531
  35500. }
  35501. },
  35502. frontBeast: {
  35503. height: math.unit(40, "feet"),
  35504. weight: math.unit(64000, "lb"),
  35505. name: "Front (Beast)",
  35506. image: {
  35507. source: "./media/characters/midnight-tales/front-beast.svg",
  35508. extra: 927/860,
  35509. bottom: 53/980
  35510. }
  35511. },
  35512. backBeast: {
  35513. height: math.unit(40, "feet"),
  35514. weight: math.unit(64000, "lb"),
  35515. name: "Back (Beast)",
  35516. image: {
  35517. source: "./media/characters/midnight-tales/back-beast.svg",
  35518. extra: 929/855,
  35519. bottom: 16/945
  35520. }
  35521. },
  35522. footBeast: {
  35523. height: math.unit(6.7, "feet"),
  35524. name: "Foot (Beast)",
  35525. image: {
  35526. source: "./media/characters/midnight-tales/foot-beast.svg"
  35527. }
  35528. },
  35529. headBeast: {
  35530. height: math.unit(8, "feet"),
  35531. name: "Head (Beast)",
  35532. image: {
  35533. source: "./media/characters/midnight-tales/head-beast.svg"
  35534. }
  35535. },
  35536. },
  35537. [
  35538. {
  35539. name: "Normal",
  35540. height: math.unit(5 + 5 / 12, "feet"),
  35541. default: true
  35542. },
  35543. {
  35544. name: "Macro",
  35545. height: math.unit(25, "feet")
  35546. },
  35547. ]
  35548. ))
  35549. characterMakers.push(() => makeCharacter(
  35550. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35551. {
  35552. front: {
  35553. height: math.unit(5 + 10/12, "feet"),
  35554. name: "Front",
  35555. image: {
  35556. source: "./media/characters/argon/front.svg",
  35557. extra: 2009/1935,
  35558. bottom: 118/2127
  35559. }
  35560. },
  35561. back: {
  35562. height: math.unit(5 + 10/12, "feet"),
  35563. name: "Back",
  35564. image: {
  35565. source: "./media/characters/argon/back.svg",
  35566. extra: 2047/1992,
  35567. bottom: 20/2067
  35568. }
  35569. },
  35570. frontDressed: {
  35571. height: math.unit(5 + 10/12, "feet"),
  35572. name: "Front (Dressed)",
  35573. image: {
  35574. source: "./media/characters/argon/front-dressed.svg",
  35575. extra: 2009/1935,
  35576. bottom: 118/2127
  35577. }
  35578. },
  35579. },
  35580. [
  35581. {
  35582. name: "Normal",
  35583. height: math.unit(5 + 10/12, "feet"),
  35584. default: true
  35585. },
  35586. ]
  35587. ))
  35588. characterMakers.push(() => makeCharacter(
  35589. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35590. {
  35591. front: {
  35592. height: math.unit(8 + 6/12, "feet"),
  35593. weight: math.unit(1150, "lb"),
  35594. name: "Front",
  35595. image: {
  35596. source: "./media/characters/kichi/front.svg",
  35597. extra: 1267/1164,
  35598. bottom: 61/1328
  35599. }
  35600. },
  35601. back: {
  35602. height: math.unit(8 + 6/12, "feet"),
  35603. weight: math.unit(1150, "lb"),
  35604. name: "Back",
  35605. image: {
  35606. source: "./media/characters/kichi/back.svg",
  35607. extra: 1273/1166,
  35608. bottom: 33/1306
  35609. }
  35610. },
  35611. },
  35612. [
  35613. {
  35614. name: "Normal",
  35615. height: math.unit(8 + 6/12, "feet"),
  35616. default: true
  35617. },
  35618. ]
  35619. ))
  35620. characterMakers.push(() => makeCharacter(
  35621. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35622. {
  35623. front: {
  35624. height: math.unit(6, "feet"),
  35625. weight: math.unit(210, "lb"),
  35626. name: "Front",
  35627. image: {
  35628. source: "./media/characters/manetel-greyscale/front.svg",
  35629. extra: 350/312,
  35630. bottom: 8/358
  35631. }
  35632. },
  35633. },
  35634. [
  35635. {
  35636. name: "Micro",
  35637. height: math.unit(2, "inches")
  35638. },
  35639. {
  35640. name: "Normal",
  35641. height: math.unit(6, "feet"),
  35642. default: true
  35643. },
  35644. {
  35645. name: "Minimacro",
  35646. height: math.unit(17, "feet")
  35647. },
  35648. {
  35649. name: "Macro",
  35650. height: math.unit(117, "feet")
  35651. },
  35652. ]
  35653. ))
  35654. characterMakers.push(() => makeCharacter(
  35655. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35656. {
  35657. side: {
  35658. height: math.unit(5 + 1/12, "feet"),
  35659. weight: math.unit(418, "lb"),
  35660. name: "Side",
  35661. image: {
  35662. source: "./media/characters/softpurr/side.svg",
  35663. extra: 1993/1945,
  35664. bottom: 134/2127
  35665. }
  35666. },
  35667. front: {
  35668. height: math.unit(5 + 1/12, "feet"),
  35669. weight: math.unit(418, "lb"),
  35670. name: "Front",
  35671. image: {
  35672. source: "./media/characters/softpurr/front.svg",
  35673. extra: 1950/1856,
  35674. bottom: 174/2124
  35675. }
  35676. },
  35677. paw: {
  35678. height: math.unit(1, "feet"),
  35679. name: "Paw",
  35680. image: {
  35681. source: "./media/characters/softpurr/paw.svg"
  35682. }
  35683. },
  35684. },
  35685. [
  35686. {
  35687. name: "Normal",
  35688. height: math.unit(5 + 1/12, "feet"),
  35689. default: true
  35690. },
  35691. ]
  35692. ))
  35693. characterMakers.push(() => makeCharacter(
  35694. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35695. {
  35696. front: {
  35697. height: math.unit(260, "meters"),
  35698. name: "Front",
  35699. image: {
  35700. source: "./media/characters/anahita/front.svg",
  35701. extra: 665/635,
  35702. bottom: 89/754
  35703. }
  35704. },
  35705. },
  35706. [
  35707. {
  35708. name: "Macro",
  35709. height: math.unit(260, "meters"),
  35710. default: true
  35711. },
  35712. ]
  35713. ))
  35714. characterMakers.push(() => makeCharacter(
  35715. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35716. {
  35717. front: {
  35718. height: math.unit(4 + 10/12, "feet"),
  35719. weight: math.unit(160, "lb"),
  35720. name: "Front",
  35721. image: {
  35722. source: "./media/characters/chip-mouse/front.svg",
  35723. extra: 3528/3408,
  35724. bottom: 0/3528
  35725. }
  35726. },
  35727. frontNsfw: {
  35728. height: math.unit(4 + 10/12, "feet"),
  35729. weight: math.unit(160, "lb"),
  35730. name: "Front (NSFW)",
  35731. image: {
  35732. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35733. extra: 3528/3408,
  35734. bottom: 0/3528
  35735. }
  35736. },
  35737. },
  35738. [
  35739. {
  35740. name: "Normal",
  35741. height: math.unit(4 + 10/12, "feet"),
  35742. default: true
  35743. },
  35744. ]
  35745. ))
  35746. characterMakers.push(() => makeCharacter(
  35747. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35748. {
  35749. side: {
  35750. height: math.unit(10, "feet"),
  35751. weight: math.unit(14000, "lb"),
  35752. name: "Side",
  35753. image: {
  35754. source: "./media/characters/kremm/side.svg",
  35755. extra: 1390/1053,
  35756. bottom: 90/1480
  35757. }
  35758. },
  35759. gut: {
  35760. height: math.unit(5.8, "feet"),
  35761. name: "Gut",
  35762. image: {
  35763. source: "./media/characters/kremm/gut.svg"
  35764. }
  35765. },
  35766. ass: {
  35767. height: math.unit(6.1, "feet"),
  35768. name: "Ass",
  35769. image: {
  35770. source: "./media/characters/kremm/ass.svg"
  35771. }
  35772. },
  35773. jaws: {
  35774. height: math.unit(2.2, "feet"),
  35775. name: "Jaws",
  35776. image: {
  35777. source: "./media/characters/kremm/jaws.svg"
  35778. }
  35779. },
  35780. dick: {
  35781. height: math.unit(4.26, "feet"),
  35782. name: "Dick",
  35783. image: {
  35784. source: "./media/characters/kremm/dick.svg"
  35785. }
  35786. },
  35787. },
  35788. [
  35789. {
  35790. name: "Normal",
  35791. height: math.unit(10, "feet"),
  35792. default: true
  35793. },
  35794. ]
  35795. ))
  35796. characterMakers.push(() => makeCharacter(
  35797. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35798. {
  35799. front: {
  35800. height: math.unit(30, "stories"),
  35801. name: "Front",
  35802. image: {
  35803. source: "./media/characters/kai/front.svg",
  35804. extra: 1892/1718,
  35805. bottom: 162/2054
  35806. }
  35807. },
  35808. },
  35809. [
  35810. {
  35811. name: "Macro",
  35812. height: math.unit(30, "stories"),
  35813. default: true
  35814. },
  35815. ]
  35816. ))
  35817. characterMakers.push(() => makeCharacter(
  35818. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35819. {
  35820. front: {
  35821. height: math.unit(6 + 4/12, "feet"),
  35822. weight: math.unit(145, "lb"),
  35823. name: "Front",
  35824. image: {
  35825. source: "./media/characters/sykes/front.svg",
  35826. extra: 1321 / 1187,
  35827. bottom: 66 / 1387
  35828. }
  35829. },
  35830. back: {
  35831. height: math.unit(6 + 4/12, "feet"),
  35832. weight: math.unit(145, "lb"),
  35833. name: "Back",
  35834. image: {
  35835. source: "./media/characters/sykes/back.svg",
  35836. extra: 1326/1181,
  35837. bottom: 31/1357
  35838. }
  35839. },
  35840. traditionalOutfit: {
  35841. height: math.unit(6 + 4/12, "feet"),
  35842. weight: math.unit(145, "lb"),
  35843. name: "Traditional Outfit",
  35844. image: {
  35845. source: "./media/characters/sykes/traditional-outfit.svg",
  35846. extra: 1321 / 1187,
  35847. bottom: 66 / 1387
  35848. }
  35849. },
  35850. adventureOutfit: {
  35851. height: math.unit(6 + 4/12, "feet"),
  35852. weight: math.unit(145, "lb"),
  35853. name: "Adventure Outfit",
  35854. image: {
  35855. source: "./media/characters/sykes/adventure-outfit.svg",
  35856. extra: 1321 / 1187,
  35857. bottom: 66 / 1387
  35858. }
  35859. },
  35860. handLeft: {
  35861. height: math.unit(0.9, "feet"),
  35862. name: "Hand (Left)",
  35863. image: {
  35864. source: "./media/characters/sykes/hand-left.svg"
  35865. }
  35866. },
  35867. handRight: {
  35868. height: math.unit(0.839, "feet"),
  35869. name: "Hand (Right)",
  35870. image: {
  35871. source: "./media/characters/sykes/hand-right.svg"
  35872. }
  35873. },
  35874. leftFoot: {
  35875. height: math.unit(1.2, "feet"),
  35876. name: "Foot (Left)",
  35877. image: {
  35878. source: "./media/characters/sykes/foot-left.svg"
  35879. }
  35880. },
  35881. rightFoot: {
  35882. height: math.unit(1.2, "feet"),
  35883. name: "Foot (Right)",
  35884. image: {
  35885. source: "./media/characters/sykes/foot-right.svg"
  35886. }
  35887. },
  35888. maw: {
  35889. height: math.unit(1.93, "feet"),
  35890. name: "Maw",
  35891. image: {
  35892. source: "./media/characters/sykes/maw.svg"
  35893. }
  35894. },
  35895. teeth: {
  35896. height: math.unit(0.51, "feet"),
  35897. name: "Teeth",
  35898. image: {
  35899. source: "./media/characters/sykes/teeth.svg"
  35900. }
  35901. },
  35902. tongue: {
  35903. height: math.unit(2.13, "feet"),
  35904. name: "Tongue",
  35905. image: {
  35906. source: "./media/characters/sykes/tongue.svg"
  35907. }
  35908. },
  35909. uvula: {
  35910. height: math.unit(0.16, "feet"),
  35911. name: "Uvula",
  35912. image: {
  35913. source: "./media/characters/sykes/uvula.svg"
  35914. }
  35915. },
  35916. collar: {
  35917. height: math.unit(0.287, "feet"),
  35918. name: "Collar",
  35919. image: {
  35920. source: "./media/characters/sykes/collar.svg"
  35921. }
  35922. },
  35923. tail: {
  35924. height: math.unit(3.8, "feet"),
  35925. name: "Tail",
  35926. image: {
  35927. source: "./media/characters/sykes/tail.svg"
  35928. }
  35929. },
  35930. },
  35931. [
  35932. {
  35933. name: "Shrunken",
  35934. height: math.unit(5, "inches")
  35935. },
  35936. {
  35937. name: "Normal",
  35938. height: math.unit(6 + 4 / 12, "feet"),
  35939. default: true
  35940. },
  35941. {
  35942. name: "Big",
  35943. height: math.unit(15, "feet")
  35944. },
  35945. ]
  35946. ))
  35947. characterMakers.push(() => makeCharacter(
  35948. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35949. {
  35950. front: {
  35951. height: math.unit(5 + 8/12, "feet"),
  35952. weight: math.unit(190, "lb"),
  35953. name: "Front",
  35954. image: {
  35955. source: "./media/characters/oven-otter/front.svg",
  35956. extra: 1809/1740,
  35957. bottom: 181/1990
  35958. }
  35959. },
  35960. back: {
  35961. height: math.unit(5 + 8/12, "feet"),
  35962. weight: math.unit(190, "lb"),
  35963. name: "Back",
  35964. image: {
  35965. source: "./media/characters/oven-otter/back.svg",
  35966. extra: 1709/1635,
  35967. bottom: 118/1827
  35968. }
  35969. },
  35970. hand: {
  35971. height: math.unit(1.07, "feet"),
  35972. name: "Hand",
  35973. image: {
  35974. source: "./media/characters/oven-otter/hand.svg"
  35975. }
  35976. },
  35977. beans: {
  35978. height: math.unit(1.74, "feet"),
  35979. name: "Beans",
  35980. image: {
  35981. source: "./media/characters/oven-otter/beans.svg"
  35982. }
  35983. },
  35984. },
  35985. [
  35986. {
  35987. name: "Micro",
  35988. height: math.unit(0.5, "inches")
  35989. },
  35990. {
  35991. name: "Normal",
  35992. height: math.unit(5 + 8/12, "feet"),
  35993. default: true
  35994. },
  35995. {
  35996. name: "Macro",
  35997. height: math.unit(250, "feet")
  35998. },
  35999. {
  36000. name: "Really High",
  36001. height: math.unit(420, "feet")
  36002. },
  36003. ]
  36004. ))
  36005. characterMakers.push(() => makeCharacter(
  36006. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36007. {
  36008. front: {
  36009. height: math.unit(5, "meters"),
  36010. weight: math.unit(292000000000000, "kg"),
  36011. name: "Front",
  36012. image: {
  36013. source: "./media/characters/devourer/front.svg",
  36014. extra: 1800/1733,
  36015. bottom: 211/2011
  36016. }
  36017. },
  36018. maw: {
  36019. height: math.unit(1.1, "meter"),
  36020. name: "Maw",
  36021. image: {
  36022. source: "./media/characters/devourer/maw.svg"
  36023. }
  36024. },
  36025. },
  36026. [
  36027. {
  36028. name: "Small",
  36029. height: math.unit(3, "meters")
  36030. },
  36031. {
  36032. name: "Large",
  36033. height: math.unit(5, "meters"),
  36034. default: true
  36035. },
  36036. ]
  36037. ))
  36038. characterMakers.push(() => makeCharacter(
  36039. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36040. {
  36041. front: {
  36042. height: math.unit(6, "feet"),
  36043. weight: math.unit(400, "lb"),
  36044. name: "Front",
  36045. image: {
  36046. source: "./media/characters/ellarby/front.svg",
  36047. extra: 1909/1763,
  36048. bottom: 80/1989
  36049. }
  36050. },
  36051. back: {
  36052. height: math.unit(6, "feet"),
  36053. weight: math.unit(400, "lb"),
  36054. name: "Back",
  36055. image: {
  36056. source: "./media/characters/ellarby/back.svg",
  36057. extra: 1914/1784,
  36058. bottom: 172/2086
  36059. }
  36060. },
  36061. },
  36062. [
  36063. {
  36064. name: "Mischief",
  36065. height: math.unit(18, "inches")
  36066. },
  36067. {
  36068. name: "Trouble",
  36069. height: math.unit(12, "feet")
  36070. },
  36071. {
  36072. name: "Havoc",
  36073. height: math.unit(200, "feet"),
  36074. default: true
  36075. },
  36076. {
  36077. name: "Pandemonium",
  36078. height: math.unit(1, "mile")
  36079. },
  36080. {
  36081. name: "Catastrophe",
  36082. height: math.unit(100, "miles")
  36083. },
  36084. ]
  36085. ))
  36086. characterMakers.push(() => makeCharacter(
  36087. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36088. {
  36089. front: {
  36090. height: math.unit(4.7, "meters"),
  36091. weight: math.unit(6500, "kg"),
  36092. name: "Front",
  36093. image: {
  36094. source: "./media/characters/vex/front.svg",
  36095. extra: 1288/1140,
  36096. bottom: 100/1388
  36097. }
  36098. },
  36099. },
  36100. [
  36101. {
  36102. name: "Normal",
  36103. height: math.unit(4.7, "meters"),
  36104. default: true
  36105. },
  36106. ]
  36107. ))
  36108. characterMakers.push(() => makeCharacter(
  36109. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36110. {
  36111. normal: {
  36112. height: math.unit(6, "feet"),
  36113. weight: math.unit(350, "lb"),
  36114. name: "Normal",
  36115. image: {
  36116. source: "./media/characters/teshy/normal.svg",
  36117. extra: 1795/1735,
  36118. bottom: 16/1811
  36119. }
  36120. },
  36121. monsterFront: {
  36122. height: math.unit(12, "feet"),
  36123. weight: math.unit(4700, "lb"),
  36124. name: "Monster (Front)",
  36125. image: {
  36126. source: "./media/characters/teshy/monster-front.svg",
  36127. extra: 2042/2034,
  36128. bottom: 128/2170
  36129. }
  36130. },
  36131. monsterSide: {
  36132. height: math.unit(12, "feet"),
  36133. weight: math.unit(4700, "lb"),
  36134. name: "Monster (Side)",
  36135. image: {
  36136. source: "./media/characters/teshy/monster-side.svg",
  36137. extra: 2067/2056,
  36138. bottom: 70/2137
  36139. }
  36140. },
  36141. monsterBack: {
  36142. height: math.unit(12, "feet"),
  36143. weight: math.unit(4700, "lb"),
  36144. name: "Monster (Back)",
  36145. image: {
  36146. source: "./media/characters/teshy/monster-back.svg",
  36147. extra: 1921/1914,
  36148. bottom: 171/2092
  36149. }
  36150. },
  36151. },
  36152. [
  36153. {
  36154. name: "Normal",
  36155. height: math.unit(6, "feet"),
  36156. default: true
  36157. },
  36158. ]
  36159. ))
  36160. characterMakers.push(() => makeCharacter(
  36161. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36162. {
  36163. front: {
  36164. height: math.unit(6, "feet"),
  36165. name: "Front",
  36166. image: {
  36167. source: "./media/characters/ramey/front.svg",
  36168. extra: 790/787,
  36169. bottom: 27/817
  36170. }
  36171. },
  36172. },
  36173. [
  36174. {
  36175. name: "Normal",
  36176. height: math.unit(6, "feet"),
  36177. default: true
  36178. },
  36179. ]
  36180. ))
  36181. characterMakers.push(() => makeCharacter(
  36182. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36183. {
  36184. front: {
  36185. height: math.unit(5 + 5/12, "feet"),
  36186. weight: math.unit(120, "lb"),
  36187. name: "Front",
  36188. image: {
  36189. source: "./media/characters/phirae/front.svg",
  36190. extra: 2491/2436,
  36191. bottom: 38/2529
  36192. }
  36193. },
  36194. },
  36195. [
  36196. {
  36197. name: "Normal",
  36198. height: math.unit(5 + 5/12, "feet"),
  36199. default: true
  36200. },
  36201. ]
  36202. ))
  36203. characterMakers.push(() => makeCharacter(
  36204. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36205. {
  36206. front: {
  36207. height: math.unit(5 + 3/12, "feet"),
  36208. name: "Front",
  36209. image: {
  36210. source: "./media/characters/stagglas/front.svg",
  36211. extra: 962/882,
  36212. bottom: 53/1015
  36213. }
  36214. },
  36215. feral: {
  36216. height: math.unit(335, "cm"),
  36217. name: "Feral",
  36218. image: {
  36219. source: "./media/characters/stagglas/feral.svg",
  36220. extra: 1732/1090,
  36221. bottom: 48/1780
  36222. }
  36223. },
  36224. },
  36225. [
  36226. {
  36227. name: "Normal",
  36228. height: math.unit(5 + 3/12, "feet"),
  36229. default: true
  36230. },
  36231. ]
  36232. ))
  36233. characterMakers.push(() => makeCharacter(
  36234. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36235. {
  36236. front: {
  36237. height: math.unit(5 + 4/12, "feet"),
  36238. weight: math.unit(145, "lb"),
  36239. name: "Front",
  36240. image: {
  36241. source: "./media/characters/starra/front.svg",
  36242. extra: 1790/1691,
  36243. bottom: 91/1881
  36244. }
  36245. },
  36246. },
  36247. [
  36248. {
  36249. name: "Normal",
  36250. height: math.unit(5 + 4/12, "feet"),
  36251. default: true
  36252. },
  36253. ]
  36254. ))
  36255. characterMakers.push(() => makeCharacter(
  36256. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36257. {
  36258. front: {
  36259. height: math.unit(2.2, "meters"),
  36260. name: "Front",
  36261. image: {
  36262. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36263. extra: 1248/972,
  36264. bottom: 38/1286
  36265. }
  36266. },
  36267. },
  36268. [
  36269. {
  36270. name: "Normal",
  36271. height: math.unit(2.2, "meters"),
  36272. default: true
  36273. },
  36274. ]
  36275. ))
  36276. characterMakers.push(() => makeCharacter(
  36277. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36278. {
  36279. side: {
  36280. height: math.unit(8 + 2/12, "feet"),
  36281. weight: math.unit(1240, "lb"),
  36282. name: "Side",
  36283. image: {
  36284. source: "./media/characters/mika-valentine/side.svg",
  36285. extra: 2670/2501,
  36286. bottom: 250/2920
  36287. }
  36288. },
  36289. },
  36290. [
  36291. {
  36292. name: "Normal",
  36293. height: math.unit(8 + 2/12, "feet"),
  36294. default: true
  36295. },
  36296. ]
  36297. ))
  36298. characterMakers.push(() => makeCharacter(
  36299. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36300. {
  36301. front: {
  36302. height: math.unit(7 + 2/12, "feet"),
  36303. name: "Front",
  36304. image: {
  36305. source: "./media/characters/xoltol/front.svg",
  36306. extra: 2212/2124,
  36307. bottom: 84/2296
  36308. }
  36309. },
  36310. side: {
  36311. height: math.unit(7 + 2/12, "feet"),
  36312. name: "Side",
  36313. image: {
  36314. source: "./media/characters/xoltol/side.svg",
  36315. extra: 2273/2197,
  36316. bottom: 26/2299
  36317. }
  36318. },
  36319. hand: {
  36320. height: math.unit(2.5, "feet"),
  36321. name: "Hand",
  36322. image: {
  36323. source: "./media/characters/xoltol/hand.svg"
  36324. }
  36325. },
  36326. },
  36327. [
  36328. {
  36329. name: "Small-ish",
  36330. height: math.unit(5 + 11/12, "feet")
  36331. },
  36332. {
  36333. name: "Normal",
  36334. height: math.unit(7 + 2/12, "feet")
  36335. },
  36336. {
  36337. name: "\"Macro\"",
  36338. height: math.unit(14 + 9/12, "feet"),
  36339. default: true
  36340. },
  36341. {
  36342. name: "Alternate Height",
  36343. height: math.unit(20, "feet")
  36344. },
  36345. {
  36346. name: "Actually Macro",
  36347. height: math.unit(100, "feet")
  36348. },
  36349. ]
  36350. ))
  36351. characterMakers.push(() => makeCharacter(
  36352. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36353. {
  36354. front: {
  36355. height: math.unit(5 + 2/12, "feet"),
  36356. name: "Front",
  36357. image: {
  36358. source: "./media/characters/kotetsu-redwood/front.svg",
  36359. extra: 1053/942,
  36360. bottom: 60/1113
  36361. }
  36362. },
  36363. },
  36364. [
  36365. {
  36366. name: "Normal",
  36367. height: math.unit(5 + 2/12, "feet"),
  36368. default: true
  36369. },
  36370. ]
  36371. ))
  36372. characterMakers.push(() => makeCharacter(
  36373. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36374. {
  36375. front: {
  36376. height: math.unit(2.4, "meters"),
  36377. weight: math.unit(125, "kg"),
  36378. name: "Front",
  36379. image: {
  36380. source: "./media/characters/lilith/front.svg",
  36381. extra: 1590/1513,
  36382. bottom: 203/1793
  36383. }
  36384. },
  36385. },
  36386. [
  36387. {
  36388. name: "Humanoid",
  36389. height: math.unit(2.4, "meters")
  36390. },
  36391. {
  36392. name: "Normal",
  36393. height: math.unit(6, "meters"),
  36394. default: true
  36395. },
  36396. {
  36397. name: "Largest",
  36398. height: math.unit(55, "meters")
  36399. },
  36400. ]
  36401. ))
  36402. characterMakers.push(() => makeCharacter(
  36403. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36404. {
  36405. front: {
  36406. height: math.unit(8 + 4/12, "feet"),
  36407. weight: math.unit(535, "lb"),
  36408. name: "Front",
  36409. image: {
  36410. source: "./media/characters/beh'kah-bolger/front.svg",
  36411. extra: 1660/1603,
  36412. bottom: 37/1697
  36413. }
  36414. },
  36415. },
  36416. [
  36417. {
  36418. name: "Normal",
  36419. height: math.unit(8 + 4/12, "feet"),
  36420. default: true
  36421. },
  36422. {
  36423. name: "Kaiju",
  36424. height: math.unit(250, "feet")
  36425. },
  36426. {
  36427. name: "Still Growing",
  36428. height: math.unit(10, "miles")
  36429. },
  36430. {
  36431. name: "Continental",
  36432. height: math.unit(5000, "miles")
  36433. },
  36434. {
  36435. name: "Final Form",
  36436. height: math.unit(2500000, "miles")
  36437. },
  36438. ]
  36439. ))
  36440. characterMakers.push(() => makeCharacter(
  36441. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36442. {
  36443. front: {
  36444. height: math.unit(7 + 2/12, "feet"),
  36445. weight: math.unit(230, "kg"),
  36446. name: "Front",
  36447. image: {
  36448. source: "./media/characters/tatyana-milewska/front.svg",
  36449. extra: 1199/1150,
  36450. bottom: 86/1285
  36451. }
  36452. },
  36453. },
  36454. [
  36455. {
  36456. name: "Normal",
  36457. height: math.unit(7 + 2/12, "feet"),
  36458. default: true
  36459. },
  36460. {
  36461. name: "Big",
  36462. height: math.unit(12, "feet")
  36463. },
  36464. {
  36465. name: "Minimacro",
  36466. height: math.unit(20, "feet")
  36467. },
  36468. {
  36469. name: "Macro",
  36470. height: math.unit(120, "feet")
  36471. },
  36472. ]
  36473. ))
  36474. characterMakers.push(() => makeCharacter(
  36475. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36476. {
  36477. front: {
  36478. height: math.unit(7 + 8/12, "feet"),
  36479. weight: math.unit(152, "kg"),
  36480. name: "Front",
  36481. image: {
  36482. source: "./media/characters/helen-arri/front.svg",
  36483. extra: 440/423,
  36484. bottom: 14/454
  36485. }
  36486. },
  36487. back: {
  36488. height: math.unit(7 + 8/12, "feet"),
  36489. weight: math.unit(152, "kg"),
  36490. name: "Back",
  36491. image: {
  36492. source: "./media/characters/helen-arri/back.svg",
  36493. extra: 443/426,
  36494. bottom: 8/451
  36495. }
  36496. },
  36497. },
  36498. [
  36499. {
  36500. name: "Normal",
  36501. height: math.unit(7 + 8/12, "feet"),
  36502. default: true
  36503. },
  36504. {
  36505. name: "Big",
  36506. height: math.unit(14, "feet")
  36507. },
  36508. {
  36509. name: "Minimacro",
  36510. height: math.unit(24, "feet")
  36511. },
  36512. {
  36513. name: "Macro",
  36514. height: math.unit(140, "feet")
  36515. },
  36516. ]
  36517. ))
  36518. characterMakers.push(() => makeCharacter(
  36519. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36520. {
  36521. front: {
  36522. height: math.unit(6, "meters"),
  36523. name: "Front",
  36524. image: {
  36525. source: "./media/characters/ehanu-rehu/front.svg",
  36526. extra: 1800/1800,
  36527. bottom: 59/1859
  36528. }
  36529. },
  36530. },
  36531. [
  36532. {
  36533. name: "Normal",
  36534. height: math.unit(6, "meters"),
  36535. default: true
  36536. },
  36537. ]
  36538. ))
  36539. characterMakers.push(() => makeCharacter(
  36540. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36541. {
  36542. front: {
  36543. height: math.unit(7 + 3/12, "feet"),
  36544. name: "Front",
  36545. image: {
  36546. source: "./media/characters/renholder/front.svg",
  36547. extra: 3096/2960,
  36548. bottom: 250/3346
  36549. }
  36550. },
  36551. },
  36552. [
  36553. {
  36554. name: "Normal Bat",
  36555. height: math.unit(7 + 3/12, "feet"),
  36556. default: true
  36557. },
  36558. {
  36559. name: "Slightly Tall Bat",
  36560. height: math.unit(100, "feet")
  36561. },
  36562. {
  36563. name: "Big Bat",
  36564. height: math.unit(1000, "feet")
  36565. },
  36566. {
  36567. name: "City-Sized Bat",
  36568. height: math.unit(200000, "feet")
  36569. },
  36570. {
  36571. name: "Bigger Bat",
  36572. height: math.unit(10000, "miles")
  36573. },
  36574. {
  36575. name: "Solar Sized Bat",
  36576. height: math.unit(100, "AU")
  36577. },
  36578. {
  36579. name: "Galactic Bat",
  36580. height: math.unit(200000, "lightyears")
  36581. },
  36582. {
  36583. name: "Universally Known Bat",
  36584. height: math.unit(1, "universe")
  36585. },
  36586. ]
  36587. ))
  36588. characterMakers.push(() => makeCharacter(
  36589. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36590. {
  36591. front: {
  36592. height: math.unit(6 + 11/12, "feet"),
  36593. weight: math.unit(250, "lb"),
  36594. name: "Front",
  36595. image: {
  36596. source: "./media/characters/cookiecat/front.svg",
  36597. extra: 893/827,
  36598. bottom: 14/907
  36599. }
  36600. },
  36601. },
  36602. [
  36603. {
  36604. name: "Micro",
  36605. height: math.unit(3, "inches")
  36606. },
  36607. {
  36608. name: "Normal",
  36609. height: math.unit(6 + 11/12, "feet"),
  36610. default: true
  36611. },
  36612. {
  36613. name: "Macro",
  36614. height: math.unit(100, "feet")
  36615. },
  36616. {
  36617. name: "Macro+",
  36618. height: math.unit(404, "feet")
  36619. },
  36620. {
  36621. name: "Megamacro",
  36622. height: math.unit(165, "miles")
  36623. },
  36624. {
  36625. name: "Planetary",
  36626. height: math.unit(4600, "miles")
  36627. },
  36628. ]
  36629. ))
  36630. characterMakers.push(() => makeCharacter(
  36631. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36632. {
  36633. front: {
  36634. height: math.unit(10 + 3/12, "feet"),
  36635. weight: math.unit(1500, "lb"),
  36636. name: "Front",
  36637. image: {
  36638. source: "./media/characters/tux-kusanagi/front.svg",
  36639. extra: 944/840,
  36640. bottom: 39/983
  36641. }
  36642. },
  36643. back: {
  36644. height: math.unit(10 + 3/12, "feet"),
  36645. weight: math.unit(1500, "lb"),
  36646. name: "Back",
  36647. image: {
  36648. source: "./media/characters/tux-kusanagi/back.svg",
  36649. extra: 941/842,
  36650. bottom: 28/969
  36651. }
  36652. },
  36653. rump: {
  36654. height: math.unit(5.25, "feet"),
  36655. name: "Rump",
  36656. image: {
  36657. source: "./media/characters/tux-kusanagi/rump.svg"
  36658. }
  36659. },
  36660. beak: {
  36661. height: math.unit(1.54, "feet"),
  36662. name: "Beak",
  36663. image: {
  36664. source: "./media/characters/tux-kusanagi/beak.svg"
  36665. }
  36666. },
  36667. },
  36668. [
  36669. {
  36670. name: "Normal",
  36671. height: math.unit(10 + 3/12, "feet"),
  36672. default: true
  36673. },
  36674. ]
  36675. ))
  36676. characterMakers.push(() => makeCharacter(
  36677. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36678. {
  36679. front: {
  36680. height: math.unit(58, "feet"),
  36681. weight: math.unit(200, "tons"),
  36682. name: "Front",
  36683. image: {
  36684. source: "./media/characters/uzarmazari/front.svg",
  36685. extra: 1575/1455,
  36686. bottom: 152/1727
  36687. }
  36688. },
  36689. back: {
  36690. height: math.unit(58, "feet"),
  36691. weight: math.unit(200, "tons"),
  36692. name: "Back",
  36693. image: {
  36694. source: "./media/characters/uzarmazari/back.svg",
  36695. extra: 1585/1510,
  36696. bottom: 157/1742
  36697. }
  36698. },
  36699. head: {
  36700. height: math.unit(26, "feet"),
  36701. name: "Head",
  36702. image: {
  36703. source: "./media/characters/uzarmazari/head.svg"
  36704. }
  36705. },
  36706. },
  36707. [
  36708. {
  36709. name: "Normal",
  36710. height: math.unit(58, "feet"),
  36711. default: true
  36712. },
  36713. ]
  36714. ))
  36715. characterMakers.push(() => makeCharacter(
  36716. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36717. {
  36718. side: {
  36719. height: math.unit(15, "feet"),
  36720. name: "Side",
  36721. image: {
  36722. source: "./media/characters/akitu/side.svg",
  36723. extra: 1421/1321,
  36724. bottom: 157/1578
  36725. }
  36726. },
  36727. front: {
  36728. height: math.unit(15, "feet"),
  36729. name: "Front",
  36730. image: {
  36731. source: "./media/characters/akitu/front.svg",
  36732. extra: 1435/1326,
  36733. bottom: 232/1667
  36734. }
  36735. },
  36736. },
  36737. [
  36738. {
  36739. name: "Normal",
  36740. height: math.unit(15, "feet"),
  36741. default: true
  36742. },
  36743. ]
  36744. ))
  36745. characterMakers.push(() => makeCharacter(
  36746. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36747. {
  36748. front: {
  36749. height: math.unit(10 + 8/12, "feet"),
  36750. name: "Front",
  36751. image: {
  36752. source: "./media/characters/azalie-croixland/front.svg",
  36753. extra: 1972/1856,
  36754. bottom: 31/2003
  36755. }
  36756. },
  36757. },
  36758. [
  36759. {
  36760. name: "Original Height",
  36761. height: math.unit(5 + 4/12, "feet")
  36762. },
  36763. {
  36764. name: "Normal Height",
  36765. height: math.unit(10 + 8/12, "feet"),
  36766. default: true
  36767. },
  36768. ]
  36769. ))
  36770. characterMakers.push(() => makeCharacter(
  36771. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36772. {
  36773. side: {
  36774. height: math.unit(7 + 1/12, "feet"),
  36775. weight: math.unit(245, "lb"),
  36776. name: "Side",
  36777. image: {
  36778. source: "./media/characters/kavus-kazian/side.svg",
  36779. extra: 349/342,
  36780. bottom: 15/364
  36781. }
  36782. },
  36783. },
  36784. [
  36785. {
  36786. name: "Normal",
  36787. height: math.unit(7 + 1/12, "feet"),
  36788. default: true
  36789. },
  36790. ]
  36791. ))
  36792. characterMakers.push(() => makeCharacter(
  36793. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36794. {
  36795. normalFront: {
  36796. height: math.unit(5 + 11/12, "feet"),
  36797. name: "Front",
  36798. image: {
  36799. source: "./media/characters/moonlight-rose/normal-front.svg",
  36800. extra: 1980/1825,
  36801. bottom: 18/1998
  36802. },
  36803. form: "normal",
  36804. default: true
  36805. },
  36806. normalBack: {
  36807. height: math.unit(5 + 11/12, "feet"),
  36808. name: "Back",
  36809. image: {
  36810. source: "./media/characters/moonlight-rose/normal-back.svg",
  36811. extra: 2010/1839,
  36812. bottom: 10/2020
  36813. },
  36814. form: "normal"
  36815. },
  36816. demonFront: {
  36817. height: math.unit(1.5, "earths"),
  36818. name: "Front",
  36819. image: {
  36820. source: "./media/characters/moonlight-rose/demon.svg",
  36821. extra: 1400/1294,
  36822. bottom: 45/1445
  36823. },
  36824. form: "demon",
  36825. default: true
  36826. },
  36827. terraFront: {
  36828. height: math.unit(1.5, "earths"),
  36829. name: "Front",
  36830. image: {
  36831. source: "./media/characters/moonlight-rose/terra.svg"
  36832. },
  36833. form: "terra",
  36834. default: true
  36835. },
  36836. jupiterFront: {
  36837. height: math.unit(69911*2, "km"),
  36838. name: "Front",
  36839. image: {
  36840. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36841. extra: 1367/1286,
  36842. bottom: 55/1422
  36843. },
  36844. form: "jupiter",
  36845. default: true
  36846. },
  36847. neptuneFront: {
  36848. height: math.unit(24622*2, "feet"),
  36849. name: "Front",
  36850. image: {
  36851. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36852. extra: 1851/1712,
  36853. bottom: 0/1851
  36854. },
  36855. form: "neptune",
  36856. default: true
  36857. },
  36858. },
  36859. [
  36860. {
  36861. name: "\"Natural\" Height",
  36862. height: math.unit(5 + 11/12, "feet"),
  36863. form: "normal"
  36864. },
  36865. {
  36866. name: "Smallest comfortable size",
  36867. height: math.unit(40, "meters"),
  36868. form: "normal"
  36869. },
  36870. {
  36871. name: "Common size",
  36872. height: math.unit(50, "km"),
  36873. form: "normal",
  36874. default: true
  36875. },
  36876. {
  36877. name: "Normal",
  36878. height: math.unit(1.5, "earths"),
  36879. form: "demon",
  36880. default: true
  36881. },
  36882. {
  36883. name: "Universal",
  36884. height: math.unit(15, "universes"),
  36885. form: "demon"
  36886. },
  36887. {
  36888. name: "Earth",
  36889. height: math.unit(1.5, "earths"),
  36890. form: "terra",
  36891. default: true
  36892. },
  36893. {
  36894. name: "Super Earth",
  36895. height: math.unit(67.5, "earths"),
  36896. form: "terra"
  36897. },
  36898. {
  36899. name: "Doesn't fit in a solar system...",
  36900. height: math.unit(1, "galaxy"),
  36901. form: "terra"
  36902. },
  36903. {
  36904. name: "Saturn",
  36905. height: math.unit(58232*2, "km"),
  36906. form: "jupiter"
  36907. },
  36908. {
  36909. name: "Jupiter",
  36910. height: math.unit(69911*2, "km"),
  36911. form: "jupiter",
  36912. default: true
  36913. },
  36914. {
  36915. name: "HD 100546 b",
  36916. height: math.unit(482938, "km"),
  36917. form: "jupiter"
  36918. },
  36919. {
  36920. name: "Enceladus",
  36921. height: math.unit(513*2, "km"),
  36922. form: "neptune"
  36923. },
  36924. {
  36925. name: "Europe",
  36926. height: math.unit(1560*2, "km"),
  36927. form: "neptune"
  36928. },
  36929. {
  36930. name: "Neptune",
  36931. height: math.unit(24622*2, "km"),
  36932. form: "neptune",
  36933. default: true
  36934. },
  36935. {
  36936. name: "CoRoT-9b",
  36937. height: math.unit(75067*2, "km"),
  36938. form: "neptune"
  36939. },
  36940. ],
  36941. {
  36942. "normal": {
  36943. name: "Normal",
  36944. default: true
  36945. },
  36946. "demon": {
  36947. name: "Demon"
  36948. },
  36949. "terra": {
  36950. name: "Terra"
  36951. },
  36952. "jupiter": {
  36953. name: "Jupiter"
  36954. },
  36955. "neptune": {
  36956. name: "Neptune"
  36957. }
  36958. }
  36959. ))
  36960. characterMakers.push(() => makeCharacter(
  36961. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36962. {
  36963. front: {
  36964. height: math.unit(16, "feet"),
  36965. weight: math.unit(610, "kg"),
  36966. name: "Front",
  36967. image: {
  36968. source: "./media/characters/huckle/front.svg",
  36969. extra: 1731/1625,
  36970. bottom: 33/1764
  36971. }
  36972. },
  36973. back: {
  36974. height: math.unit(16, "feet"),
  36975. weight: math.unit(610, "kg"),
  36976. name: "Back",
  36977. image: {
  36978. source: "./media/characters/huckle/back.svg",
  36979. extra: 1738/1651,
  36980. bottom: 37/1775
  36981. }
  36982. },
  36983. laughing: {
  36984. height: math.unit(3.75, "feet"),
  36985. name: "Laughing",
  36986. image: {
  36987. source: "./media/characters/huckle/laughing.svg"
  36988. }
  36989. },
  36990. angry: {
  36991. height: math.unit(4.15, "feet"),
  36992. name: "Angry",
  36993. image: {
  36994. source: "./media/characters/huckle/angry.svg"
  36995. }
  36996. },
  36997. },
  36998. [
  36999. {
  37000. name: "Normal",
  37001. height: math.unit(16, "feet"),
  37002. default: true
  37003. },
  37004. {
  37005. name: "Mini Macro",
  37006. height: math.unit(463, "feet")
  37007. },
  37008. {
  37009. name: "Macro",
  37010. height: math.unit(1680, "meters")
  37011. },
  37012. {
  37013. name: "Mega Macro",
  37014. height: math.unit(175, "km")
  37015. },
  37016. {
  37017. name: "Terra Macro",
  37018. height: math.unit(32, "gigameters")
  37019. },
  37020. {
  37021. name: "Multiverse+",
  37022. height: math.unit(2.56e23, "yottameters")
  37023. },
  37024. ]
  37025. ))
  37026. characterMakers.push(() => makeCharacter(
  37027. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37028. {
  37029. front: {
  37030. height: math.unit(6 + 9/12, "feet"),
  37031. weight: math.unit(280, "lb"),
  37032. name: "Front",
  37033. image: {
  37034. source: "./media/characters/candy/front.svg",
  37035. extra: 234/217,
  37036. bottom: 11/245
  37037. }
  37038. },
  37039. },
  37040. [
  37041. {
  37042. name: "Really Small",
  37043. height: math.unit(0.1, "nm")
  37044. },
  37045. {
  37046. name: "Micro",
  37047. height: math.unit(2, "inches")
  37048. },
  37049. {
  37050. name: "Normal",
  37051. height: math.unit(6 + 9/12, "feet"),
  37052. default: true
  37053. },
  37054. {
  37055. name: "Small Macro",
  37056. height: math.unit(69, "feet")
  37057. },
  37058. {
  37059. name: "Macro",
  37060. height: math.unit(160, "feet")
  37061. },
  37062. {
  37063. name: "Megamacro",
  37064. height: math.unit(22000, "miles")
  37065. },
  37066. {
  37067. name: "Gigamacro",
  37068. height: math.unit(50000, "miles")
  37069. },
  37070. ]
  37071. ))
  37072. characterMakers.push(() => makeCharacter(
  37073. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37074. {
  37075. front: {
  37076. height: math.unit(4, "feet"),
  37077. weight: math.unit(90, "lb"),
  37078. name: "Front",
  37079. image: {
  37080. source: "./media/characters/joey-mcdonald/front.svg",
  37081. extra: 1059/852,
  37082. bottom: 33/1092
  37083. }
  37084. },
  37085. back: {
  37086. height: math.unit(4, "feet"),
  37087. weight: math.unit(90, "lb"),
  37088. name: "Back",
  37089. image: {
  37090. source: "./media/characters/joey-mcdonald/back.svg",
  37091. extra: 1077/879,
  37092. bottom: 5/1082
  37093. }
  37094. },
  37095. frontKobold: {
  37096. height: math.unit(4, "feet"),
  37097. weight: math.unit(100, "lb"),
  37098. name: "Front-kobold",
  37099. image: {
  37100. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37101. extra: 1480/1367,
  37102. bottom: 0/1480
  37103. }
  37104. },
  37105. backKobold: {
  37106. height: math.unit(4, "feet"),
  37107. weight: math.unit(100, "lb"),
  37108. name: "Back-kobold",
  37109. image: {
  37110. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37111. extra: 1449/1361,
  37112. bottom: 0/1449
  37113. }
  37114. },
  37115. },
  37116. [
  37117. {
  37118. name: "Normal",
  37119. height: math.unit(4, "feet"),
  37120. default: true
  37121. },
  37122. ]
  37123. ))
  37124. characterMakers.push(() => makeCharacter(
  37125. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37126. {
  37127. front: {
  37128. height: math.unit(12 + 6/12, "feet"),
  37129. name: "Front",
  37130. image: {
  37131. source: "./media/characters/kass-lockheed/front.svg",
  37132. extra: 354/343,
  37133. bottom: 9/363
  37134. }
  37135. },
  37136. back: {
  37137. height: math.unit(12 + 6/12, "feet"),
  37138. name: "Back",
  37139. image: {
  37140. source: "./media/characters/kass-lockheed/back.svg",
  37141. extra: 364/352,
  37142. bottom: 3/367
  37143. }
  37144. },
  37145. dick: {
  37146. height: math.unit(3.12, "feet"),
  37147. name: "Dick",
  37148. image: {
  37149. source: "./media/characters/kass-lockheed/dick.svg"
  37150. }
  37151. },
  37152. head: {
  37153. height: math.unit(2.6, "feet"),
  37154. name: "Head",
  37155. image: {
  37156. source: "./media/characters/kass-lockheed/head.svg"
  37157. }
  37158. },
  37159. bleh: {
  37160. height: math.unit(2.85, "feet"),
  37161. name: "Bleh",
  37162. image: {
  37163. source: "./media/characters/kass-lockheed/bleh.svg"
  37164. }
  37165. },
  37166. smug: {
  37167. height: math.unit(2.85, "feet"),
  37168. name: "Smug",
  37169. image: {
  37170. source: "./media/characters/kass-lockheed/smug.svg"
  37171. }
  37172. },
  37173. },
  37174. [
  37175. {
  37176. name: "Normal",
  37177. height: math.unit(12 + 6/12, "feet"),
  37178. default: true
  37179. },
  37180. ]
  37181. ))
  37182. characterMakers.push(() => makeCharacter(
  37183. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37184. {
  37185. front: {
  37186. height: math.unit(6 + 2/12, "feet"),
  37187. name: "Front",
  37188. image: {
  37189. source: "./media/characters/taylor/front.svg",
  37190. extra: 639/495,
  37191. bottom: 12/651
  37192. }
  37193. },
  37194. },
  37195. [
  37196. {
  37197. name: "Normal",
  37198. height: math.unit(6 + 2/12, "feet"),
  37199. default: true
  37200. },
  37201. {
  37202. name: "Big",
  37203. height: math.unit(15, "feet")
  37204. },
  37205. {
  37206. name: "Lorg",
  37207. height: math.unit(80, "feet")
  37208. },
  37209. {
  37210. name: "Too Lorg",
  37211. height: math.unit(120, "feet")
  37212. },
  37213. ]
  37214. ))
  37215. characterMakers.push(() => makeCharacter(
  37216. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37217. {
  37218. front: {
  37219. height: math.unit(15, "feet"),
  37220. name: "Front",
  37221. image: {
  37222. source: "./media/characters/kaizer/front.svg",
  37223. extra: 1612/1436,
  37224. bottom: 43/1655
  37225. }
  37226. },
  37227. },
  37228. [
  37229. {
  37230. name: "Normal",
  37231. height: math.unit(15, "feet"),
  37232. default: true
  37233. },
  37234. ]
  37235. ))
  37236. characterMakers.push(() => makeCharacter(
  37237. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37238. {
  37239. front: {
  37240. height: math.unit(2, "feet"),
  37241. weight: math.unit(30, "lb"),
  37242. name: "Front",
  37243. image: {
  37244. source: "./media/characters/sandy/front.svg",
  37245. extra: 1439/1307,
  37246. bottom: 194/1633
  37247. }
  37248. },
  37249. },
  37250. [
  37251. {
  37252. name: "Normal",
  37253. height: math.unit(2, "feet"),
  37254. default: true
  37255. },
  37256. ]
  37257. ))
  37258. characterMakers.push(() => makeCharacter(
  37259. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37260. {
  37261. front: {
  37262. height: math.unit(3, "feet"),
  37263. name: "Front",
  37264. image: {
  37265. source: "./media/characters/mellvi/front.svg",
  37266. extra: 1831/1630,
  37267. bottom: 58/1889
  37268. }
  37269. },
  37270. },
  37271. [
  37272. {
  37273. name: "Normal",
  37274. height: math.unit(3, "feet"),
  37275. default: true
  37276. },
  37277. ]
  37278. ))
  37279. characterMakers.push(() => makeCharacter(
  37280. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37281. {
  37282. front: {
  37283. height: math.unit(5 + 11/12, "feet"),
  37284. weight: math.unit(200, "lb"),
  37285. name: "Front",
  37286. image: {
  37287. source: "./media/characters/shirou/front.svg",
  37288. extra: 2491/2383,
  37289. bottom: 189/2680
  37290. }
  37291. },
  37292. back: {
  37293. height: math.unit(5 + 11/12, "feet"),
  37294. weight: math.unit(200, "lb"),
  37295. name: "Back",
  37296. image: {
  37297. source: "./media/characters/shirou/back.svg",
  37298. extra: 2554/2450,
  37299. bottom: 76/2630
  37300. }
  37301. },
  37302. },
  37303. [
  37304. {
  37305. name: "Normal",
  37306. height: math.unit(5 + 11/12, "feet"),
  37307. default: true
  37308. },
  37309. ]
  37310. ))
  37311. characterMakers.push(() => makeCharacter(
  37312. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37313. {
  37314. front: {
  37315. height: math.unit(6 + 3/12, "feet"),
  37316. weight: math.unit(177, "lb"),
  37317. name: "Front",
  37318. image: {
  37319. source: "./media/characters/noryu/front.svg",
  37320. extra: 973/885,
  37321. bottom: 10/983
  37322. }
  37323. },
  37324. },
  37325. [
  37326. {
  37327. name: "Normal",
  37328. height: math.unit(6 + 3/12, "feet"),
  37329. default: true
  37330. },
  37331. ]
  37332. ))
  37333. characterMakers.push(() => makeCharacter(
  37334. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37335. {
  37336. front: {
  37337. height: math.unit(5 + 6/12, "feet"),
  37338. weight: math.unit(170, "lb"),
  37339. name: "Front",
  37340. image: {
  37341. source: "./media/characters/mevolas-rubenido/front.svg",
  37342. extra: 2109/1901,
  37343. bottom: 96/2205
  37344. }
  37345. },
  37346. },
  37347. [
  37348. {
  37349. name: "Normal",
  37350. height: math.unit(5 + 6/12, "feet"),
  37351. default: true
  37352. },
  37353. ]
  37354. ))
  37355. characterMakers.push(() => makeCharacter(
  37356. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37357. {
  37358. front: {
  37359. height: math.unit(100, "feet"),
  37360. name: "Front",
  37361. image: {
  37362. source: "./media/characters/dee/front.svg",
  37363. extra: 2153/2036,
  37364. bottom: 59/2212
  37365. }
  37366. },
  37367. back: {
  37368. height: math.unit(100, "feet"),
  37369. name: "Back",
  37370. image: {
  37371. source: "./media/characters/dee/back.svg",
  37372. extra: 2183/2058,
  37373. bottom: 75/2258
  37374. }
  37375. },
  37376. foot: {
  37377. height: math.unit(19.43, "feet"),
  37378. name: "Foot",
  37379. image: {
  37380. source: "./media/characters/dee/foot.svg"
  37381. }
  37382. },
  37383. hoof: {
  37384. height: math.unit(20.6, "feet"),
  37385. name: "Hoof",
  37386. image: {
  37387. source: "./media/characters/dee/hoof.svg"
  37388. }
  37389. },
  37390. },
  37391. [
  37392. {
  37393. name: "Macro",
  37394. height: math.unit(100, "feet"),
  37395. default: true
  37396. },
  37397. ]
  37398. ))
  37399. characterMakers.push(() => makeCharacter(
  37400. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37401. {
  37402. front: {
  37403. height: math.unit(5 + 6/12, "feet"),
  37404. name: "Front",
  37405. image: {
  37406. source: "./media/characters/teh/front.svg",
  37407. extra: 1002/847,
  37408. bottom: 62/1064
  37409. }
  37410. },
  37411. },
  37412. [
  37413. {
  37414. name: "Normal",
  37415. height: math.unit(5 + 6/12, "feet"),
  37416. default: true
  37417. },
  37418. ]
  37419. ))
  37420. characterMakers.push(() => makeCharacter(
  37421. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37422. {
  37423. side: {
  37424. height: math.unit(6 + 1/12, "feet"),
  37425. weight: math.unit(204, "lb"),
  37426. name: "Side",
  37427. image: {
  37428. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37429. extra: 974/775,
  37430. bottom: 169/1143
  37431. }
  37432. },
  37433. sitting: {
  37434. height: math.unit(6 + 2/12, "feet"),
  37435. weight: math.unit(204, "lb"),
  37436. name: "Sitting",
  37437. image: {
  37438. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37439. extra: 1175/964,
  37440. bottom: 378/1553
  37441. }
  37442. },
  37443. },
  37444. [
  37445. {
  37446. name: "Normal",
  37447. height: math.unit(6 + 1/12, "feet"),
  37448. default: true
  37449. },
  37450. ]
  37451. ))
  37452. characterMakers.push(() => makeCharacter(
  37453. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37454. {
  37455. front: {
  37456. height: math.unit(6, "inches"),
  37457. name: "Front",
  37458. image: {
  37459. source: "./media/characters/tululi/front.svg",
  37460. extra: 1997/1876,
  37461. bottom: 20/2017
  37462. }
  37463. },
  37464. },
  37465. [
  37466. {
  37467. name: "Normal",
  37468. height: math.unit(6, "inches"),
  37469. default: true
  37470. },
  37471. ]
  37472. ))
  37473. characterMakers.push(() => makeCharacter(
  37474. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37475. {
  37476. front: {
  37477. height: math.unit(4 + 1/12, "feet"),
  37478. name: "Front",
  37479. image: {
  37480. source: "./media/characters/star/front.svg",
  37481. extra: 1493/1189,
  37482. bottom: 48/1541
  37483. }
  37484. },
  37485. },
  37486. [
  37487. {
  37488. name: "Normal",
  37489. height: math.unit(4 + 1/12, "feet"),
  37490. default: true
  37491. },
  37492. ]
  37493. ))
  37494. characterMakers.push(() => makeCharacter(
  37495. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37496. {
  37497. front: {
  37498. height: math.unit(6 + 3/12, "feet"),
  37499. name: "Front",
  37500. image: {
  37501. source: "./media/characters/comet/front.svg",
  37502. extra: 1681/1462,
  37503. bottom: 26/1707
  37504. }
  37505. },
  37506. },
  37507. [
  37508. {
  37509. name: "Normal",
  37510. height: math.unit(6 + 3/12, "feet"),
  37511. default: true
  37512. },
  37513. ]
  37514. ))
  37515. characterMakers.push(() => makeCharacter(
  37516. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37517. {
  37518. front: {
  37519. height: math.unit(950, "feet"),
  37520. name: "Front",
  37521. image: {
  37522. source: "./media/characters/vortex/front.svg",
  37523. extra: 1497/1434,
  37524. bottom: 56/1553
  37525. }
  37526. },
  37527. maw: {
  37528. height: math.unit(285, "feet"),
  37529. name: "Maw",
  37530. image: {
  37531. source: "./media/characters/vortex/maw.svg"
  37532. }
  37533. },
  37534. },
  37535. [
  37536. {
  37537. name: "Macro",
  37538. height: math.unit(950, "feet"),
  37539. default: true
  37540. },
  37541. ]
  37542. ))
  37543. characterMakers.push(() => makeCharacter(
  37544. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37545. {
  37546. front: {
  37547. height: math.unit(600, "feet"),
  37548. weight: math.unit(0.02, "grams"),
  37549. name: "Front",
  37550. image: {
  37551. source: "./media/characters/doodle/front.svg",
  37552. extra: 1578/1413,
  37553. bottom: 37/1615
  37554. }
  37555. },
  37556. },
  37557. [
  37558. {
  37559. name: "Macro",
  37560. height: math.unit(600, "feet"),
  37561. default: true
  37562. },
  37563. ]
  37564. ))
  37565. characterMakers.push(() => makeCharacter(
  37566. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37567. {
  37568. front: {
  37569. height: math.unit(6 + 6/12, "feet"),
  37570. name: "Front",
  37571. image: {
  37572. source: "./media/characters/jai/front.svg",
  37573. extra: 1645/1534,
  37574. bottom: 115/1760
  37575. }
  37576. },
  37577. },
  37578. [
  37579. {
  37580. name: "Normal",
  37581. height: math.unit(6 + 6/12, "feet"),
  37582. default: true
  37583. },
  37584. ]
  37585. ))
  37586. characterMakers.push(() => makeCharacter(
  37587. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37588. {
  37589. front: {
  37590. height: math.unit(6 + 8/12, "feet"),
  37591. name: "Front",
  37592. image: {
  37593. source: "./media/characters/pixel/front.svg",
  37594. extra: 1900/1735,
  37595. bottom: 63/1963
  37596. }
  37597. },
  37598. },
  37599. [
  37600. {
  37601. name: "Normal",
  37602. height: math.unit(6 + 8/12, "feet"),
  37603. default: true
  37604. },
  37605. ]
  37606. ))
  37607. characterMakers.push(() => makeCharacter(
  37608. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37609. {
  37610. back: {
  37611. height: math.unit(4 + 1/12, "feet"),
  37612. weight: math.unit(75, "lb"),
  37613. name: "Back",
  37614. image: {
  37615. source: "./media/characters/rhett/back.svg",
  37616. extra: 930/878,
  37617. bottom: 25/955
  37618. }
  37619. },
  37620. front: {
  37621. height: math.unit(4 + 1/12, "feet"),
  37622. weight: math.unit(75, "lb"),
  37623. name: "Front",
  37624. image: {
  37625. source: "./media/characters/rhett/front.svg",
  37626. extra: 1682/1586,
  37627. bottom: 92/1774
  37628. }
  37629. },
  37630. },
  37631. [
  37632. {
  37633. name: "Micro",
  37634. height: math.unit(8, "inches")
  37635. },
  37636. {
  37637. name: "Tiny",
  37638. height: math.unit(2, "feet")
  37639. },
  37640. {
  37641. name: "Normal",
  37642. height: math.unit(4 + 1/12, "feet"),
  37643. default: true
  37644. },
  37645. ]
  37646. ))
  37647. characterMakers.push(() => makeCharacter(
  37648. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37649. {
  37650. front: {
  37651. height: math.unit(3 + 3/12, "feet"),
  37652. name: "Front",
  37653. image: {
  37654. source: "./media/characters/penny/front.svg",
  37655. extra: 1406/1311,
  37656. bottom: 26/1432
  37657. }
  37658. },
  37659. },
  37660. [
  37661. {
  37662. name: "Normal",
  37663. height: math.unit(3 + 3/12, "feet"),
  37664. default: true
  37665. },
  37666. ]
  37667. ))
  37668. characterMakers.push(() => makeCharacter(
  37669. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37670. {
  37671. front: {
  37672. height: math.unit(4 + 11/12, "feet"),
  37673. name: "Front",
  37674. image: {
  37675. source: "./media/characters/monty/front.svg",
  37676. extra: 1479/1209,
  37677. bottom: 0/1479
  37678. }
  37679. },
  37680. },
  37681. [
  37682. {
  37683. name: "Normal",
  37684. height: math.unit(4 + 11/12, "feet"),
  37685. default: true
  37686. },
  37687. ]
  37688. ))
  37689. characterMakers.push(() => makeCharacter(
  37690. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37691. {
  37692. front: {
  37693. height: math.unit(8 + 4/12, "feet"),
  37694. name: "Front",
  37695. image: {
  37696. source: "./media/characters/sterling/front.svg",
  37697. extra: 1420/1236,
  37698. bottom: 27/1447
  37699. }
  37700. },
  37701. },
  37702. [
  37703. {
  37704. name: "Normal",
  37705. height: math.unit(8 + 4/12, "feet"),
  37706. default: true
  37707. },
  37708. ]
  37709. ))
  37710. characterMakers.push(() => makeCharacter(
  37711. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37712. {
  37713. front: {
  37714. height: math.unit(15, "feet"),
  37715. name: "Front",
  37716. image: {
  37717. source: "./media/characters/marble/front.svg",
  37718. extra: 973/937,
  37719. bottom: 32/1005
  37720. }
  37721. },
  37722. },
  37723. [
  37724. {
  37725. name: "Normal",
  37726. height: math.unit(15, "feet"),
  37727. default: true
  37728. },
  37729. ]
  37730. ))
  37731. characterMakers.push(() => makeCharacter(
  37732. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37733. {
  37734. front: {
  37735. height: math.unit(3, "inches"),
  37736. name: "Front",
  37737. image: {
  37738. source: "./media/characters/powder/front.svg",
  37739. extra: 1504/1334,
  37740. bottom: 518/2022
  37741. }
  37742. },
  37743. },
  37744. [
  37745. {
  37746. name: "Normal",
  37747. height: math.unit(3, "inches"),
  37748. default: true
  37749. },
  37750. ]
  37751. ))
  37752. characterMakers.push(() => makeCharacter(
  37753. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37754. {
  37755. front: {
  37756. height: math.unit(4 + 5/12, "feet"),
  37757. name: "Front",
  37758. image: {
  37759. source: "./media/characters/joey-raccoon/front.svg",
  37760. extra: 1273/1197,
  37761. bottom: 0/1273
  37762. }
  37763. },
  37764. },
  37765. [
  37766. {
  37767. name: "Normal",
  37768. height: math.unit(4 + 5/12, "feet"),
  37769. default: true
  37770. },
  37771. ]
  37772. ))
  37773. characterMakers.push(() => makeCharacter(
  37774. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37775. {
  37776. front: {
  37777. height: math.unit(8 + 4/12, "feet"),
  37778. name: "Front",
  37779. image: {
  37780. source: "./media/characters/vick/front.svg",
  37781. extra: 2187/2118,
  37782. bottom: 47/2234
  37783. }
  37784. },
  37785. },
  37786. [
  37787. {
  37788. name: "Normal",
  37789. height: math.unit(8 + 4/12, "feet"),
  37790. default: true
  37791. },
  37792. ]
  37793. ))
  37794. characterMakers.push(() => makeCharacter(
  37795. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37796. {
  37797. front: {
  37798. height: math.unit(5 + 5/12, "feet"),
  37799. name: "Front",
  37800. image: {
  37801. source: "./media/characters/mitsy/front.svg",
  37802. extra: 1842/1695,
  37803. bottom: 0/1842
  37804. }
  37805. },
  37806. },
  37807. [
  37808. {
  37809. name: "Normal",
  37810. height: math.unit(5 + 5/12, "feet"),
  37811. default: true
  37812. },
  37813. ]
  37814. ))
  37815. characterMakers.push(() => makeCharacter(
  37816. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37817. {
  37818. front: {
  37819. height: math.unit(6 + 3/12, "feet"),
  37820. name: "Front",
  37821. image: {
  37822. source: "./media/characters/silvy/front.svg",
  37823. extra: 1995/1836,
  37824. bottom: 225/2220
  37825. }
  37826. },
  37827. },
  37828. [
  37829. {
  37830. name: "Normal",
  37831. height: math.unit(6 + 3/12, "feet"),
  37832. default: true
  37833. },
  37834. ]
  37835. ))
  37836. characterMakers.push(() => makeCharacter(
  37837. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37838. {
  37839. front: {
  37840. height: math.unit(3 + 8/12, "feet"),
  37841. name: "Front",
  37842. image: {
  37843. source: "./media/characters/rodney/front.svg",
  37844. extra: 1956/1747,
  37845. bottom: 31/1987
  37846. }
  37847. },
  37848. frontDressed: {
  37849. height: math.unit(2.9, "feet"),
  37850. name: "Front (Dressed)",
  37851. image: {
  37852. source: "./media/characters/rodney/front-dressed.svg",
  37853. extra: 1382/1241,
  37854. bottom: 385/1767
  37855. }
  37856. },
  37857. },
  37858. [
  37859. {
  37860. name: "Normal",
  37861. height: math.unit(3 + 8/12, "feet"),
  37862. default: true
  37863. },
  37864. ]
  37865. ))
  37866. characterMakers.push(() => makeCharacter(
  37867. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37868. {
  37869. front: {
  37870. height: math.unit(5 + 9/12, "feet"),
  37871. weight: math.unit(194, "lbs"),
  37872. name: "Front",
  37873. image: {
  37874. source: "./media/characters/zakail-sudekai/front.svg",
  37875. extra: 2696/2533,
  37876. bottom: 248/2944
  37877. }
  37878. },
  37879. maw: {
  37880. height: math.unit(1.35, "feet"),
  37881. name: "Maw",
  37882. image: {
  37883. source: "./media/characters/zakail-sudekai/maw.svg"
  37884. }
  37885. },
  37886. },
  37887. [
  37888. {
  37889. name: "Normal",
  37890. height: math.unit(5 + 9/12, "feet"),
  37891. default: true
  37892. },
  37893. ]
  37894. ))
  37895. characterMakers.push(() => makeCharacter(
  37896. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37897. {
  37898. front: {
  37899. height: math.unit(8 + 4/12, "feet"),
  37900. weight: math.unit(1200, "lb"),
  37901. name: "Front",
  37902. image: {
  37903. source: "./media/characters/eleanor/front.svg",
  37904. extra: 1226/1192,
  37905. bottom: 52/1278
  37906. }
  37907. },
  37908. back: {
  37909. height: math.unit(8 + 4/12, "feet"),
  37910. weight: math.unit(1200, "lb"),
  37911. name: "Back",
  37912. image: {
  37913. source: "./media/characters/eleanor/back.svg",
  37914. extra: 1242/1184,
  37915. bottom: 60/1302
  37916. }
  37917. },
  37918. head: {
  37919. height: math.unit(2.62, "feet"),
  37920. name: "Head",
  37921. image: {
  37922. source: "./media/characters/eleanor/head.svg"
  37923. }
  37924. },
  37925. },
  37926. [
  37927. {
  37928. name: "Normal",
  37929. height: math.unit(8 + 4/12, "feet"),
  37930. default: true
  37931. },
  37932. ]
  37933. ))
  37934. characterMakers.push(() => makeCharacter(
  37935. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37936. {
  37937. front: {
  37938. height: math.unit(8 + 4/12, "feet"),
  37939. weight: math.unit(750, "lb"),
  37940. name: "Front",
  37941. image: {
  37942. source: "./media/characters/tanya/front.svg",
  37943. extra: 1749/1615,
  37944. bottom: 33/1782
  37945. }
  37946. },
  37947. },
  37948. [
  37949. {
  37950. name: "Normal",
  37951. height: math.unit(8 + 4/12, "feet"),
  37952. default: true
  37953. },
  37954. ]
  37955. ))
  37956. characterMakers.push(() => makeCharacter(
  37957. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37958. {
  37959. front: {
  37960. height: math.unit(5, "feet"),
  37961. weight: math.unit(225, "lb"),
  37962. name: "Front",
  37963. image: {
  37964. source: "./media/characters/cindy/front.svg",
  37965. extra: 1320/1250,
  37966. bottom: 42/1362
  37967. }
  37968. },
  37969. frontDressed: {
  37970. height: math.unit(5, "feet"),
  37971. weight: math.unit(225, "lb"),
  37972. name: "Front (Dressed)",
  37973. image: {
  37974. source: "./media/characters/cindy/front-dressed.svg",
  37975. extra: 1320/1250,
  37976. bottom: 42/1362
  37977. }
  37978. },
  37979. back: {
  37980. height: math.unit(5, "feet"),
  37981. weight: math.unit(225, "lb"),
  37982. name: "Back",
  37983. image: {
  37984. source: "./media/characters/cindy/back.svg",
  37985. extra: 1384/1346,
  37986. bottom: 14/1398
  37987. }
  37988. },
  37989. },
  37990. [
  37991. {
  37992. name: "Normal",
  37993. height: math.unit(5, "feet"),
  37994. default: true
  37995. },
  37996. ]
  37997. ))
  37998. characterMakers.push(() => makeCharacter(
  37999. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38000. {
  38001. front: {
  38002. height: math.unit(6 + 9/12, "feet"),
  38003. weight: math.unit(440, "lb"),
  38004. name: "Front",
  38005. image: {
  38006. source: "./media/characters/wilbur-owen/front.svg",
  38007. extra: 1575/1448,
  38008. bottom: 72/1647
  38009. }
  38010. },
  38011. back: {
  38012. height: math.unit(6 + 9/12, "feet"),
  38013. weight: math.unit(440, "lb"),
  38014. name: "Back",
  38015. image: {
  38016. source: "./media/characters/wilbur-owen/back.svg",
  38017. extra: 1578/1445,
  38018. bottom: 36/1614
  38019. }
  38020. },
  38021. },
  38022. [
  38023. {
  38024. name: "Normal",
  38025. height: math.unit(6 + 9/12, "feet"),
  38026. default: true
  38027. },
  38028. ]
  38029. ))
  38030. characterMakers.push(() => makeCharacter(
  38031. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38032. {
  38033. front: {
  38034. height: math.unit(6 + 5/12, "feet"),
  38035. weight: math.unit(650, "lb"),
  38036. name: "Front",
  38037. image: {
  38038. source: "./media/characters/keegan/front.svg",
  38039. extra: 2387/2198,
  38040. bottom: 33/2420
  38041. }
  38042. },
  38043. side: {
  38044. height: math.unit(6 + 5/12, "feet"),
  38045. weight: math.unit(650, "lb"),
  38046. name: "Side",
  38047. image: {
  38048. source: "./media/characters/keegan/side.svg",
  38049. extra: 2390/2202,
  38050. bottom: 47/2437
  38051. }
  38052. },
  38053. back: {
  38054. height: math.unit(6 + 5/12, "feet"),
  38055. weight: math.unit(650, "lb"),
  38056. name: "Back",
  38057. image: {
  38058. source: "./media/characters/keegan/back.svg",
  38059. extra: 2418/2268,
  38060. bottom: 15/2433
  38061. }
  38062. },
  38063. frontSfw: {
  38064. height: math.unit(6 + 5/12, "feet"),
  38065. weight: math.unit(650, "lb"),
  38066. name: "Front (SFW)",
  38067. image: {
  38068. source: "./media/characters/keegan/front-sfw.svg",
  38069. extra: 2387/2198,
  38070. bottom: 33/2420
  38071. }
  38072. },
  38073. beans: {
  38074. height: math.unit(1.85, "feet"),
  38075. name: "Beans",
  38076. image: {
  38077. source: "./media/characters/keegan/beans.svg"
  38078. }
  38079. },
  38080. },
  38081. [
  38082. {
  38083. name: "Normal",
  38084. height: math.unit(6 + 5/12, "feet"),
  38085. default: true
  38086. },
  38087. ]
  38088. ))
  38089. characterMakers.push(() => makeCharacter(
  38090. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38091. {
  38092. front: {
  38093. height: math.unit(9, "feet"),
  38094. name: "Front",
  38095. image: {
  38096. source: "./media/characters/colton/front.svg",
  38097. extra: 1589/1326,
  38098. bottom: 139/1728
  38099. }
  38100. },
  38101. },
  38102. [
  38103. {
  38104. name: "Normal",
  38105. height: math.unit(9, "feet"),
  38106. default: true
  38107. },
  38108. ]
  38109. ))
  38110. characterMakers.push(() => makeCharacter(
  38111. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38112. {
  38113. front: {
  38114. height: math.unit(2 + 9/12, "feet"),
  38115. name: "Front",
  38116. image: {
  38117. source: "./media/characters/bora/front.svg",
  38118. extra: 1265/1250,
  38119. bottom: 24/1289
  38120. }
  38121. },
  38122. },
  38123. [
  38124. {
  38125. name: "Normal",
  38126. height: math.unit(2 + 9/12, "feet"),
  38127. default: true
  38128. },
  38129. ]
  38130. ))
  38131. characterMakers.push(() => makeCharacter(
  38132. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38133. {
  38134. front: {
  38135. height: math.unit(8, "feet"),
  38136. name: "Front",
  38137. image: {
  38138. source: "./media/characters/myu-myu/front.svg",
  38139. extra: 1949/1857,
  38140. bottom: 90/2039
  38141. }
  38142. },
  38143. },
  38144. [
  38145. {
  38146. name: "Normal",
  38147. height: math.unit(8, "feet"),
  38148. default: true
  38149. },
  38150. {
  38151. name: "Big",
  38152. height: math.unit(15, "feet")
  38153. },
  38154. {
  38155. name: "BIG",
  38156. height: math.unit(25, "feet")
  38157. },
  38158. ]
  38159. ))
  38160. characterMakers.push(() => makeCharacter(
  38161. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38162. {
  38163. side: {
  38164. height: math.unit(7 + 5/12, "feet"),
  38165. weight: math.unit(2800, "lb"),
  38166. name: "Side",
  38167. image: {
  38168. source: "./media/characters/haloren/side.svg",
  38169. extra: 1793/409,
  38170. bottom: 59/1852
  38171. }
  38172. },
  38173. frontPaw: {
  38174. height: math.unit(2.36, "feet"),
  38175. name: "Front paw",
  38176. image: {
  38177. source: "./media/characters/haloren/front-paw.svg"
  38178. }
  38179. },
  38180. hindPaw: {
  38181. height: math.unit(3.18, "feet"),
  38182. name: "Hind paw",
  38183. image: {
  38184. source: "./media/characters/haloren/hind-paw.svg"
  38185. }
  38186. },
  38187. maw: {
  38188. height: math.unit(5.05, "feet"),
  38189. name: "Maw",
  38190. image: {
  38191. source: "./media/characters/haloren/maw.svg"
  38192. }
  38193. },
  38194. dick: {
  38195. height: math.unit(2.90, "feet"),
  38196. name: "Dick",
  38197. image: {
  38198. source: "./media/characters/haloren/dick.svg"
  38199. }
  38200. },
  38201. },
  38202. [
  38203. {
  38204. name: "Normal",
  38205. height: math.unit(7 + 5/12, "feet"),
  38206. default: true
  38207. },
  38208. {
  38209. name: "Enhanced",
  38210. height: math.unit(14 + 3/12, "feet")
  38211. },
  38212. ]
  38213. ))
  38214. characterMakers.push(() => makeCharacter(
  38215. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38216. {
  38217. front: {
  38218. height: math.unit(171, "cm"),
  38219. name: "Front",
  38220. image: {
  38221. source: "./media/characters/kimmy/front.svg",
  38222. extra: 1491/1435,
  38223. bottom: 53/1544
  38224. }
  38225. },
  38226. },
  38227. [
  38228. {
  38229. name: "Small",
  38230. height: math.unit(9, "cm")
  38231. },
  38232. {
  38233. name: "Normal",
  38234. height: math.unit(171, "cm"),
  38235. default: true
  38236. },
  38237. ]
  38238. ))
  38239. characterMakers.push(() => makeCharacter(
  38240. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38241. {
  38242. front: {
  38243. height: math.unit(8, "feet"),
  38244. weight: math.unit(300, "lb"),
  38245. name: "Front",
  38246. image: {
  38247. source: "./media/characters/galeboomer/front.svg",
  38248. extra: 4651/4415,
  38249. bottom: 162/4813
  38250. }
  38251. },
  38252. back: {
  38253. height: math.unit(8, "feet"),
  38254. weight: math.unit(300, "lb"),
  38255. name: "Back",
  38256. image: {
  38257. source: "./media/characters/galeboomer/back.svg",
  38258. extra: 4544/4314,
  38259. bottom: 16/4560
  38260. }
  38261. },
  38262. frontAlt: {
  38263. height: math.unit(8, "feet"),
  38264. weight: math.unit(300, "lb"),
  38265. name: "Front (Alt)",
  38266. image: {
  38267. source: "./media/characters/galeboomer/front-alt.svg",
  38268. extra: 4458/4228,
  38269. bottom: 68/4526
  38270. }
  38271. },
  38272. maw: {
  38273. height: math.unit(1.2, "feet"),
  38274. name: "Maw",
  38275. image: {
  38276. source: "./media/characters/galeboomer/maw.svg"
  38277. }
  38278. },
  38279. },
  38280. [
  38281. {
  38282. name: "Normal",
  38283. height: math.unit(8, "feet"),
  38284. default: true
  38285. },
  38286. ]
  38287. ))
  38288. characterMakers.push(() => makeCharacter(
  38289. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38290. {
  38291. front: {
  38292. height: math.unit(5 + 9/12, "feet"),
  38293. weight: math.unit(120, "lb"),
  38294. name: "Front",
  38295. image: {
  38296. source: "./media/characters/chyr/front.svg",
  38297. extra: 1323/1254,
  38298. bottom: 63/1386
  38299. }
  38300. },
  38301. back: {
  38302. height: math.unit(5 + 9/12, "feet"),
  38303. weight: math.unit(120, "lb"),
  38304. name: "Back",
  38305. image: {
  38306. source: "./media/characters/chyr/back.svg",
  38307. extra: 1323/1252,
  38308. bottom: 48/1371
  38309. }
  38310. },
  38311. },
  38312. [
  38313. {
  38314. name: "Normal",
  38315. height: math.unit(5 + 9/12, "feet"),
  38316. default: true
  38317. },
  38318. ]
  38319. ))
  38320. characterMakers.push(() => makeCharacter(
  38321. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38322. {
  38323. front: {
  38324. height: math.unit(7, "feet"),
  38325. weight: math.unit(310, "lb"),
  38326. name: "Front",
  38327. image: {
  38328. source: "./media/characters/solarus/front.svg",
  38329. extra: 2415/2021,
  38330. bottom: 103/2518
  38331. }
  38332. },
  38333. back: {
  38334. height: math.unit(7, "feet"),
  38335. weight: math.unit(310, "lb"),
  38336. name: "Back",
  38337. image: {
  38338. source: "./media/characters/solarus/back.svg",
  38339. extra: 2463/2089,
  38340. bottom: 79/2542
  38341. }
  38342. },
  38343. },
  38344. [
  38345. {
  38346. name: "Normal",
  38347. height: math.unit(7, "feet"),
  38348. default: true
  38349. },
  38350. ]
  38351. ))
  38352. characterMakers.push(() => makeCharacter(
  38353. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38354. {
  38355. front: {
  38356. height: math.unit(16, "feet"),
  38357. name: "Front",
  38358. image: {
  38359. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38360. extra: 1844/1780,
  38361. bottom: 58/1902
  38362. }
  38363. },
  38364. winterCoat: {
  38365. height: math.unit(16, "feet"),
  38366. name: "Winter Coat",
  38367. image: {
  38368. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38369. extra: 1807/1775,
  38370. bottom: 69/1876
  38371. }
  38372. },
  38373. },
  38374. [
  38375. {
  38376. name: "Normal",
  38377. height: math.unit(16, "feet"),
  38378. default: true
  38379. },
  38380. {
  38381. name: "Chicago Size",
  38382. height: math.unit(560, "feet")
  38383. },
  38384. ]
  38385. ))
  38386. characterMakers.push(() => makeCharacter(
  38387. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38388. {
  38389. front: {
  38390. height: math.unit(11 + 6/12, "feet"),
  38391. weight: math.unit(1366, "lb"),
  38392. name: "Front",
  38393. image: {
  38394. source: "./media/characters/lexor/front.svg",
  38395. extra: 1560/1481,
  38396. bottom: 211/1771
  38397. }
  38398. },
  38399. back: {
  38400. height: math.unit(11 + 6/12, "feet"),
  38401. weight: math.unit(1366, "lb"),
  38402. name: "Back",
  38403. image: {
  38404. source: "./media/characters/lexor/back.svg",
  38405. extra: 1614/1533,
  38406. bottom: 76/1690
  38407. }
  38408. },
  38409. maw: {
  38410. height: math.unit(3, "feet"),
  38411. name: "Maw",
  38412. image: {
  38413. source: "./media/characters/lexor/maw.svg"
  38414. }
  38415. },
  38416. dick: {
  38417. height: math.unit(2.59, "feet"),
  38418. name: "Dick",
  38419. image: {
  38420. source: "./media/characters/lexor/dick.svg"
  38421. }
  38422. },
  38423. },
  38424. [
  38425. {
  38426. name: "Normal",
  38427. height: math.unit(11 + 6/12, "feet"),
  38428. default: true
  38429. },
  38430. ]
  38431. ))
  38432. characterMakers.push(() => makeCharacter(
  38433. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38434. {
  38435. front: {
  38436. height: math.unit(5 + 8/12, "feet"),
  38437. name: "Front",
  38438. image: {
  38439. source: "./media/characters/magnum/front.svg",
  38440. extra: 942/855,
  38441. bottom: 26/968
  38442. }
  38443. },
  38444. },
  38445. [
  38446. {
  38447. name: "Normal",
  38448. height: math.unit(5 + 8/12, "feet"),
  38449. default: true
  38450. },
  38451. ]
  38452. ))
  38453. characterMakers.push(() => makeCharacter(
  38454. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38455. {
  38456. front: {
  38457. height: math.unit(18 + 4/12, "feet"),
  38458. weight: math.unit(1500, "kg"),
  38459. name: "Front",
  38460. image: {
  38461. source: "./media/characters/solas-sharpsman/front.svg",
  38462. extra: 1698/1589,
  38463. bottom: 0/1698
  38464. }
  38465. },
  38466. },
  38467. [
  38468. {
  38469. name: "Normal",
  38470. height: math.unit(18 + 4/12, "feet"),
  38471. default: true
  38472. },
  38473. ]
  38474. ))
  38475. characterMakers.push(() => makeCharacter(
  38476. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38477. {
  38478. front: {
  38479. height: math.unit(5 + 5/12, "feet"),
  38480. weight: math.unit(180, "lb"),
  38481. name: "Front",
  38482. image: {
  38483. source: "./media/characters/october/front.svg",
  38484. extra: 1800/1650,
  38485. bottom: 0/1800
  38486. }
  38487. },
  38488. frontNsfw: {
  38489. height: math.unit(5 + 5/12, "feet"),
  38490. weight: math.unit(180, "lb"),
  38491. name: "Front (NSFW)",
  38492. image: {
  38493. source: "./media/characters/october/front-nsfw.svg",
  38494. extra: 1392/1307,
  38495. bottom: 42/1434
  38496. }
  38497. },
  38498. },
  38499. [
  38500. {
  38501. name: "Normal",
  38502. height: math.unit(5 + 5/12, "feet"),
  38503. default: true
  38504. },
  38505. ]
  38506. ))
  38507. characterMakers.push(() => makeCharacter(
  38508. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38509. {
  38510. front: {
  38511. height: math.unit(8 + 6/12, "feet"),
  38512. name: "Front",
  38513. image: {
  38514. source: "./media/characters/essynkardi/front.svg",
  38515. extra: 1914/1846,
  38516. bottom: 22/1936
  38517. }
  38518. },
  38519. },
  38520. [
  38521. {
  38522. name: "Normal",
  38523. height: math.unit(8 + 6/12, "feet"),
  38524. default: true
  38525. },
  38526. ]
  38527. ))
  38528. characterMakers.push(() => makeCharacter(
  38529. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38530. {
  38531. front: {
  38532. height: math.unit(6 + 6/12, "feet"),
  38533. weight: math.unit(7, "lb"),
  38534. name: "Front",
  38535. image: {
  38536. source: "./media/characters/icky/front.svg",
  38537. extra: 813/782,
  38538. bottom: 66/879
  38539. }
  38540. },
  38541. back: {
  38542. height: math.unit(6 + 6/12, "feet"),
  38543. weight: math.unit(7, "lb"),
  38544. name: "Back",
  38545. image: {
  38546. source: "./media/characters/icky/back.svg",
  38547. extra: 754/735,
  38548. bottom: 56/810
  38549. }
  38550. },
  38551. },
  38552. [
  38553. {
  38554. name: "Normal",
  38555. height: math.unit(6 + 6/12, "feet"),
  38556. default: true
  38557. },
  38558. ]
  38559. ))
  38560. characterMakers.push(() => makeCharacter(
  38561. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38562. {
  38563. front: {
  38564. height: math.unit(15, "feet"),
  38565. name: "Front",
  38566. image: {
  38567. source: "./media/characters/rojas/front.svg",
  38568. extra: 1462/1408,
  38569. bottom: 95/1557
  38570. }
  38571. },
  38572. back: {
  38573. height: math.unit(15, "feet"),
  38574. name: "Back",
  38575. image: {
  38576. source: "./media/characters/rojas/back.svg",
  38577. extra: 1023/954,
  38578. bottom: 28/1051
  38579. }
  38580. },
  38581. },
  38582. [
  38583. {
  38584. name: "Normal",
  38585. height: math.unit(15, "feet"),
  38586. default: true
  38587. },
  38588. ]
  38589. ))
  38590. characterMakers.push(() => makeCharacter(
  38591. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38592. {
  38593. frontHuman: {
  38594. height: math.unit(5 + 7/12, "feet"),
  38595. name: "Front (Human)",
  38596. image: {
  38597. source: "./media/characters/alek-dryagan/front-human.svg",
  38598. extra: 1687/1667,
  38599. bottom: 69/1756
  38600. }
  38601. },
  38602. backHuman: {
  38603. height: math.unit(5 + 7/12, "feet"),
  38604. name: "Back (Human)",
  38605. image: {
  38606. source: "./media/characters/alek-dryagan/back-human.svg",
  38607. extra: 1670/1649,
  38608. bottom: 65/1735
  38609. }
  38610. },
  38611. frontDemi: {
  38612. height: math.unit(65, "feet"),
  38613. name: "Front (Demi)",
  38614. image: {
  38615. source: "./media/characters/alek-dryagan/front-demi.svg",
  38616. extra: 1669/1642,
  38617. bottom: 49/1718
  38618. }
  38619. },
  38620. backDemi: {
  38621. height: math.unit(65, "feet"),
  38622. name: "Back (Demi)",
  38623. image: {
  38624. source: "./media/characters/alek-dryagan/back-demi.svg",
  38625. extra: 1658/1637,
  38626. bottom: 40/1698
  38627. }
  38628. },
  38629. mawHuman: {
  38630. height: math.unit(0.3, "feet"),
  38631. name: "Maw (Human)",
  38632. image: {
  38633. source: "./media/characters/alek-dryagan/maw-human.svg"
  38634. }
  38635. },
  38636. mawDemi: {
  38637. height: math.unit(3.8, "feet"),
  38638. name: "Maw (Demi)",
  38639. image: {
  38640. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38641. }
  38642. },
  38643. },
  38644. [
  38645. {
  38646. name: "Normal",
  38647. height: math.unit(5 + 7/12, "feet"),
  38648. default: true
  38649. },
  38650. ]
  38651. ))
  38652. characterMakers.push(() => makeCharacter(
  38653. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38654. {
  38655. frontHuman: {
  38656. height: math.unit(5 + 2/12, "feet"),
  38657. name: "Front (Human)",
  38658. image: {
  38659. source: "./media/characters/gen/front-human.svg",
  38660. extra: 1627/1538,
  38661. bottom: 71/1698
  38662. }
  38663. },
  38664. backHuman: {
  38665. height: math.unit(5 + 2/12, "feet"),
  38666. name: "Back (Human)",
  38667. image: {
  38668. source: "./media/characters/gen/back-human.svg",
  38669. extra: 1638/1548,
  38670. bottom: 69/1707
  38671. }
  38672. },
  38673. frontDemi: {
  38674. height: math.unit(5 + 2/12, "feet"),
  38675. name: "Front (Demi)",
  38676. image: {
  38677. source: "./media/characters/gen/front-demi.svg",
  38678. extra: 1627/1538,
  38679. bottom: 71/1698
  38680. }
  38681. },
  38682. backDemi: {
  38683. height: math.unit(5 + 2/12, "feet"),
  38684. name: "Back (Demi)",
  38685. image: {
  38686. source: "./media/characters/gen/back-demi.svg",
  38687. extra: 1638/1548,
  38688. bottom: 69/1707
  38689. }
  38690. },
  38691. },
  38692. [
  38693. {
  38694. name: "Normal",
  38695. height: math.unit(5 + 2/12, "feet"),
  38696. default: true
  38697. },
  38698. ]
  38699. ))
  38700. characterMakers.push(() => makeCharacter(
  38701. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38702. {
  38703. frontImp: {
  38704. height: math.unit(1 + 11/12, "feet"),
  38705. name: "Front (Imp)",
  38706. image: {
  38707. source: "./media/characters/max-kobold/front-imp.svg",
  38708. extra: 1238/1134,
  38709. bottom: 81/1319
  38710. }
  38711. },
  38712. backImp: {
  38713. height: math.unit(1 + 11/12, "feet"),
  38714. name: "Back (Imp)",
  38715. image: {
  38716. source: "./media/characters/max-kobold/back-imp.svg",
  38717. extra: 1334/1175,
  38718. bottom: 34/1368
  38719. }
  38720. },
  38721. frontDemi: {
  38722. height: math.unit(5 + 9/12, "feet"),
  38723. name: "Front (Demi)",
  38724. image: {
  38725. source: "./media/characters/max-kobold/front-demi.svg",
  38726. extra: 1715/1685,
  38727. bottom: 54/1769
  38728. }
  38729. },
  38730. backDemi: {
  38731. height: math.unit(5 + 9/12, "feet"),
  38732. name: "Back (Demi)",
  38733. image: {
  38734. source: "./media/characters/max-kobold/back-demi.svg",
  38735. extra: 1752/1729,
  38736. bottom: 41/1793
  38737. }
  38738. },
  38739. handImp: {
  38740. height: math.unit(0.45, "feet"),
  38741. name: "Hand (Imp)",
  38742. image: {
  38743. source: "./media/characters/max-kobold/hand.svg"
  38744. }
  38745. },
  38746. pawImp: {
  38747. height: math.unit(0.46, "feet"),
  38748. name: "Paw (Imp)",
  38749. image: {
  38750. source: "./media/characters/max-kobold/paw.svg"
  38751. }
  38752. },
  38753. handDemi: {
  38754. height: math.unit(0.80, "feet"),
  38755. name: "Hand (Demi)",
  38756. image: {
  38757. source: "./media/characters/max-kobold/hand.svg"
  38758. }
  38759. },
  38760. pawDemi: {
  38761. height: math.unit(1.1, "feet"),
  38762. name: "Paw (Demi)",
  38763. image: {
  38764. source: "./media/characters/max-kobold/paw.svg"
  38765. }
  38766. },
  38767. headImp: {
  38768. height: math.unit(1.33, "feet"),
  38769. name: "Head (Imp)",
  38770. image: {
  38771. source: "./media/characters/max-kobold/head-imp.svg"
  38772. }
  38773. },
  38774. mawImp: {
  38775. height: math.unit(0.75, "feet"),
  38776. name: "Maw (Imp)",
  38777. image: {
  38778. source: "./media/characters/max-kobold/maw-imp.svg"
  38779. }
  38780. },
  38781. mawDemi: {
  38782. height: math.unit(0.42, "feet"),
  38783. name: "Maw (Demi)",
  38784. image: {
  38785. source: "./media/characters/max-kobold/maw-demi.svg"
  38786. }
  38787. },
  38788. },
  38789. [
  38790. {
  38791. name: "Normal",
  38792. height: math.unit(1 + 11/12, "feet"),
  38793. default: true
  38794. },
  38795. ]
  38796. ))
  38797. characterMakers.push(() => makeCharacter(
  38798. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38799. {
  38800. front: {
  38801. height: math.unit(7 + 5/12, "feet"),
  38802. name: "Front",
  38803. image: {
  38804. source: "./media/characters/carbon/front.svg",
  38805. extra: 1754/1689,
  38806. bottom: 65/1819
  38807. }
  38808. },
  38809. back: {
  38810. height: math.unit(7 + 5/12, "feet"),
  38811. name: "Back",
  38812. image: {
  38813. source: "./media/characters/carbon/back.svg",
  38814. extra: 1762/1695,
  38815. bottom: 24/1786
  38816. }
  38817. },
  38818. frontGigantamax: {
  38819. height: math.unit(150, "feet"),
  38820. name: "Front (Gigantamax)",
  38821. image: {
  38822. source: "./media/characters/carbon/front-gigantamax.svg",
  38823. extra: 1826/1669,
  38824. bottom: 59/1885
  38825. }
  38826. },
  38827. backGigantamax: {
  38828. height: math.unit(150, "feet"),
  38829. name: "Back (Gigantamax)",
  38830. image: {
  38831. source: "./media/characters/carbon/back-gigantamax.svg",
  38832. extra: 1796/1653,
  38833. bottom: 53/1849
  38834. }
  38835. },
  38836. maw: {
  38837. height: math.unit(0.48, "feet"),
  38838. name: "Maw",
  38839. image: {
  38840. source: "./media/characters/carbon/maw.svg"
  38841. }
  38842. },
  38843. mawGigantamax: {
  38844. height: math.unit(7.5, "feet"),
  38845. name: "Maw (Gigantamax)",
  38846. image: {
  38847. source: "./media/characters/carbon/maw-gigantamax.svg"
  38848. }
  38849. },
  38850. },
  38851. [
  38852. {
  38853. name: "Normal",
  38854. height: math.unit(7 + 5/12, "feet"),
  38855. default: true
  38856. },
  38857. ]
  38858. ))
  38859. characterMakers.push(() => makeCharacter(
  38860. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38861. {
  38862. front: {
  38863. height: math.unit(6, "feet"),
  38864. name: "Front",
  38865. image: {
  38866. source: "./media/characters/maverick/front.svg",
  38867. extra: 1672/1661,
  38868. bottom: 85/1757
  38869. }
  38870. },
  38871. back: {
  38872. height: math.unit(6, "feet"),
  38873. name: "Back",
  38874. image: {
  38875. source: "./media/characters/maverick/back.svg",
  38876. extra: 1642/1631,
  38877. bottom: 38/1680
  38878. }
  38879. },
  38880. },
  38881. [
  38882. {
  38883. name: "Normal",
  38884. height: math.unit(6, "feet"),
  38885. default: true
  38886. },
  38887. ]
  38888. ))
  38889. characterMakers.push(() => makeCharacter(
  38890. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38891. {
  38892. front: {
  38893. height: math.unit(15, "feet"),
  38894. weight: math.unit(615, "lb"),
  38895. name: "Front",
  38896. image: {
  38897. source: "./media/characters/grockle/front.svg",
  38898. extra: 1535/1427,
  38899. bottom: 56/1591
  38900. }
  38901. },
  38902. },
  38903. [
  38904. {
  38905. name: "Normal",
  38906. height: math.unit(15, "feet"),
  38907. default: true
  38908. },
  38909. {
  38910. name: "Large",
  38911. height: math.unit(150, "feet")
  38912. },
  38913. {
  38914. name: "Macro",
  38915. height: math.unit(1876, "feet")
  38916. },
  38917. {
  38918. name: "Mega Macro",
  38919. height: math.unit(121940, "feet")
  38920. },
  38921. {
  38922. name: "Giga Macro",
  38923. height: math.unit(750, "km")
  38924. },
  38925. {
  38926. name: "Tera Macro",
  38927. height: math.unit(750000, "km")
  38928. },
  38929. {
  38930. name: "Galactic",
  38931. height: math.unit(1.4e5, "km")
  38932. },
  38933. {
  38934. name: "Godlike",
  38935. height: math.unit(9.8e280, "galaxies")
  38936. },
  38937. ]
  38938. ))
  38939. characterMakers.push(() => makeCharacter(
  38940. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38941. {
  38942. front: {
  38943. height: math.unit(11, "meters"),
  38944. weight: math.unit(20, "tonnes"),
  38945. name: "Front",
  38946. image: {
  38947. source: "./media/characters/alistair/front.svg",
  38948. extra: 1265/1009,
  38949. bottom: 93/1358
  38950. }
  38951. },
  38952. },
  38953. [
  38954. {
  38955. name: "Normal",
  38956. height: math.unit(11, "meters"),
  38957. default: true
  38958. },
  38959. ]
  38960. ))
  38961. characterMakers.push(() => makeCharacter(
  38962. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38963. {
  38964. front: {
  38965. height: math.unit(5 + 8/12, "feet"),
  38966. name: "Front",
  38967. image: {
  38968. source: "./media/characters/haruka/front.svg",
  38969. extra: 2012/1952,
  38970. bottom: 0/2012
  38971. }
  38972. },
  38973. },
  38974. [
  38975. {
  38976. name: "Normal",
  38977. height: math.unit(5 + 8/12, "feet"),
  38978. default: true
  38979. },
  38980. ]
  38981. ))
  38982. characterMakers.push(() => makeCharacter(
  38983. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38984. {
  38985. back: {
  38986. height: math.unit(9, "feet"),
  38987. name: "Back",
  38988. image: {
  38989. source: "./media/characters/vivian-sylveon/back.svg",
  38990. extra: 1853/1714,
  38991. bottom: 0/1853
  38992. }
  38993. },
  38994. },
  38995. [
  38996. {
  38997. name: "Normal",
  38998. height: math.unit(9, "feet"),
  38999. default: true
  39000. },
  39001. {
  39002. name: "Macro",
  39003. height: math.unit(500, "feet")
  39004. },
  39005. {
  39006. name: "Megamacro",
  39007. height: math.unit(600, "miles")
  39008. },
  39009. {
  39010. name: "Gigamacro",
  39011. height: math.unit(30000, "miles")
  39012. },
  39013. ]
  39014. ))
  39015. characterMakers.push(() => makeCharacter(
  39016. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39017. {
  39018. anthro: {
  39019. height: math.unit(5 + 10/12, "feet"),
  39020. weight: math.unit(100, "lb"),
  39021. name: "Anthro",
  39022. image: {
  39023. source: "./media/characters/daiki/anthro.svg",
  39024. extra: 1115/1027,
  39025. bottom: 69/1184
  39026. }
  39027. },
  39028. feral: {
  39029. height: math.unit(200, "feet"),
  39030. name: "Feral",
  39031. image: {
  39032. source: "./media/characters/daiki/feral.svg",
  39033. extra: 1256/313,
  39034. bottom: 39/1295
  39035. }
  39036. },
  39037. feralHead: {
  39038. height: math.unit(171, "feet"),
  39039. name: "Feral Head",
  39040. image: {
  39041. source: "./media/characters/daiki/feral-head.svg"
  39042. }
  39043. },
  39044. manaDragon: {
  39045. height: math.unit(170, "meters"),
  39046. name: "Mana-dragon",
  39047. image: {
  39048. source: "./media/characters/daiki/mana-dragon.svg",
  39049. extra: 763/420,
  39050. bottom: 97/860
  39051. }
  39052. },
  39053. },
  39054. [
  39055. {
  39056. name: "Normal",
  39057. height: math.unit(5 + 10/12, "feet"),
  39058. default: true
  39059. },
  39060. ]
  39061. ))
  39062. characterMakers.push(() => makeCharacter(
  39063. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39064. {
  39065. fullyEquippedFront: {
  39066. height: math.unit(3 + 1/12, "feet"),
  39067. weight: math.unit(24, "lb"),
  39068. name: "Fully Equipped (Front)",
  39069. image: {
  39070. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39071. extra: 687/605,
  39072. bottom: 18/705
  39073. }
  39074. },
  39075. fullyEquippedBack: {
  39076. height: math.unit(3 + 1/12, "feet"),
  39077. weight: math.unit(24, "lb"),
  39078. name: "Fully Equipped (Back)",
  39079. image: {
  39080. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39081. extra: 689/590,
  39082. bottom: 18/707
  39083. }
  39084. },
  39085. dailyWear: {
  39086. height: math.unit(3 + 1/12, "feet"),
  39087. weight: math.unit(24, "lb"),
  39088. name: "Daily Wear",
  39089. image: {
  39090. source: "./media/characters/tea-spot/daily-wear.svg",
  39091. extra: 701/620,
  39092. bottom: 21/722
  39093. }
  39094. },
  39095. maidWork: {
  39096. height: math.unit(3 + 1/12, "feet"),
  39097. weight: math.unit(24, "lb"),
  39098. name: "Maid Work",
  39099. image: {
  39100. source: "./media/characters/tea-spot/maid-work.svg",
  39101. extra: 693/609,
  39102. bottom: 15/708
  39103. }
  39104. },
  39105. },
  39106. [
  39107. {
  39108. name: "Normal",
  39109. height: math.unit(3 + 1/12, "feet"),
  39110. default: true
  39111. },
  39112. ]
  39113. ))
  39114. characterMakers.push(() => makeCharacter(
  39115. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39116. {
  39117. front: {
  39118. height: math.unit(175, "cm"),
  39119. weight: math.unit(75, "kg"),
  39120. name: "Front",
  39121. image: {
  39122. source: "./media/characters/chee/front.svg",
  39123. extra: 1796/1740,
  39124. bottom: 40/1836
  39125. }
  39126. },
  39127. },
  39128. [
  39129. {
  39130. name: "Micro-Micro",
  39131. height: math.unit(1, "nm")
  39132. },
  39133. {
  39134. name: "Micro-erst",
  39135. height: math.unit(1, "micrometer")
  39136. },
  39137. {
  39138. name: "Micro-er",
  39139. height: math.unit(1, "cm")
  39140. },
  39141. {
  39142. name: "Normal",
  39143. height: math.unit(175, "cm"),
  39144. default: true
  39145. },
  39146. {
  39147. name: "Macro",
  39148. height: math.unit(100, "m")
  39149. },
  39150. {
  39151. name: "Macro-er",
  39152. height: math.unit(1, "km")
  39153. },
  39154. {
  39155. name: "Macro-erst",
  39156. height: math.unit(10, "km")
  39157. },
  39158. {
  39159. name: "Macro-Macro",
  39160. height: math.unit(100, "km")
  39161. },
  39162. ]
  39163. ))
  39164. characterMakers.push(() => makeCharacter(
  39165. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39166. {
  39167. front: {
  39168. height: math.unit(11 + 9/12, "feet"),
  39169. weight: math.unit(935, "lb"),
  39170. name: "Front",
  39171. image: {
  39172. source: "./media/characters/kingsley/front.svg",
  39173. extra: 1803/1674,
  39174. bottom: 127/1930
  39175. }
  39176. },
  39177. frontNude: {
  39178. height: math.unit(11 + 9/12, "feet"),
  39179. weight: math.unit(935, "lb"),
  39180. name: "Front (Nude)",
  39181. image: {
  39182. source: "./media/characters/kingsley/front-nude.svg",
  39183. extra: 1803/1674,
  39184. bottom: 127/1930
  39185. }
  39186. },
  39187. },
  39188. [
  39189. {
  39190. name: "Normal",
  39191. height: math.unit(11 + 9/12, "feet"),
  39192. default: true
  39193. },
  39194. ]
  39195. ))
  39196. characterMakers.push(() => makeCharacter(
  39197. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39198. {
  39199. side: {
  39200. height: math.unit(9, "feet"),
  39201. name: "Side",
  39202. image: {
  39203. source: "./media/characters/rymel/side.svg",
  39204. extra: 792/469,
  39205. bottom: 121/913
  39206. }
  39207. },
  39208. maw: {
  39209. height: math.unit(2.4, "meters"),
  39210. name: "Maw",
  39211. image: {
  39212. source: "./media/characters/rymel/maw.svg"
  39213. }
  39214. },
  39215. },
  39216. [
  39217. {
  39218. name: "House Drake",
  39219. height: math.unit(2, "feet")
  39220. },
  39221. {
  39222. name: "Reduced",
  39223. height: math.unit(4.5, "feet")
  39224. },
  39225. {
  39226. name: "Normal",
  39227. height: math.unit(9, "feet"),
  39228. default: true
  39229. },
  39230. ]
  39231. ))
  39232. characterMakers.push(() => makeCharacter(
  39233. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39234. {
  39235. front: {
  39236. height: math.unit(1.74, "meters"),
  39237. weight: math.unit(55, "kg"),
  39238. name: "Front",
  39239. image: {
  39240. source: "./media/characters/rubus/front.svg",
  39241. extra: 1894/1742,
  39242. bottom: 44/1938
  39243. }
  39244. },
  39245. },
  39246. [
  39247. {
  39248. name: "Normal",
  39249. height: math.unit(1.74, "meters"),
  39250. default: true
  39251. },
  39252. ]
  39253. ))
  39254. characterMakers.push(() => makeCharacter(
  39255. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39256. {
  39257. front: {
  39258. height: math.unit(5 + 2/12, "feet"),
  39259. weight: math.unit(112, "lb"),
  39260. name: "Front",
  39261. image: {
  39262. source: "./media/characters/cassie-kingston/front.svg",
  39263. extra: 1438/1390,
  39264. bottom: 47/1485
  39265. }
  39266. },
  39267. },
  39268. [
  39269. {
  39270. name: "Normal",
  39271. height: math.unit(5 + 2/12, "feet"),
  39272. default: true
  39273. },
  39274. {
  39275. name: "Macro",
  39276. height: math.unit(128, "feet")
  39277. },
  39278. {
  39279. name: "Megamacro",
  39280. height: math.unit(2.56, "miles")
  39281. },
  39282. ]
  39283. ))
  39284. characterMakers.push(() => makeCharacter(
  39285. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39286. {
  39287. front: {
  39288. height: math.unit(7, "feet"),
  39289. name: "Front",
  39290. image: {
  39291. source: "./media/characters/fox/front.svg",
  39292. extra: 1798/1703,
  39293. bottom: 55/1853
  39294. }
  39295. },
  39296. back: {
  39297. height: math.unit(7, "feet"),
  39298. name: "Back",
  39299. image: {
  39300. source: "./media/characters/fox/back.svg",
  39301. extra: 1748/1649,
  39302. bottom: 32/1780
  39303. }
  39304. },
  39305. head: {
  39306. height: math.unit(1.95, "feet"),
  39307. name: "Head",
  39308. image: {
  39309. source: "./media/characters/fox/head.svg"
  39310. }
  39311. },
  39312. dick: {
  39313. height: math.unit(1.33, "feet"),
  39314. name: "Dick",
  39315. image: {
  39316. source: "./media/characters/fox/dick.svg"
  39317. }
  39318. },
  39319. foot: {
  39320. height: math.unit(1, "feet"),
  39321. name: "Foot",
  39322. image: {
  39323. source: "./media/characters/fox/foot.svg"
  39324. }
  39325. },
  39326. paw: {
  39327. height: math.unit(0.92, "feet"),
  39328. name: "Paw",
  39329. image: {
  39330. source: "./media/characters/fox/paw.svg"
  39331. }
  39332. },
  39333. },
  39334. [
  39335. {
  39336. name: "Small",
  39337. height: math.unit(3, "inches")
  39338. },
  39339. {
  39340. name: "\"Realistic\"",
  39341. height: math.unit(7, "feet")
  39342. },
  39343. {
  39344. name: "Normal",
  39345. height: math.unit(150, "feet"),
  39346. default: true
  39347. },
  39348. {
  39349. name: "BIG",
  39350. height: math.unit(1200, "feet")
  39351. },
  39352. {
  39353. name: "👀",
  39354. height: math.unit(5, "miles")
  39355. },
  39356. {
  39357. name: "👀👀👀",
  39358. height: math.unit(64, "miles")
  39359. },
  39360. ]
  39361. ))
  39362. characterMakers.push(() => makeCharacter(
  39363. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39364. {
  39365. front: {
  39366. height: math.unit(625, "feet"),
  39367. name: "Front",
  39368. image: {
  39369. source: "./media/characters/asonja-rossa/front.svg",
  39370. extra: 1833/1686,
  39371. bottom: 24/1857
  39372. }
  39373. },
  39374. back: {
  39375. height: math.unit(625, "feet"),
  39376. name: "Back",
  39377. image: {
  39378. source: "./media/characters/asonja-rossa/back.svg",
  39379. extra: 1852/1753,
  39380. bottom: 26/1878
  39381. }
  39382. },
  39383. },
  39384. [
  39385. {
  39386. name: "Macro",
  39387. height: math.unit(625, "feet"),
  39388. default: true
  39389. },
  39390. ]
  39391. ))
  39392. characterMakers.push(() => makeCharacter(
  39393. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39394. {
  39395. side: {
  39396. height: math.unit(8, "feet"),
  39397. name: "Side",
  39398. image: {
  39399. source: "./media/characters/rezukii/side.svg",
  39400. extra: 979/542,
  39401. bottom: 87/1066
  39402. }
  39403. },
  39404. sitting: {
  39405. height: math.unit(14.6, "feet"),
  39406. name: "Sitting",
  39407. image: {
  39408. source: "./media/characters/rezukii/sitting.svg",
  39409. extra: 1023/813,
  39410. bottom: 45/1068
  39411. }
  39412. },
  39413. },
  39414. [
  39415. {
  39416. name: "Tiny",
  39417. height: math.unit(2, "feet")
  39418. },
  39419. {
  39420. name: "Smol",
  39421. height: math.unit(4, "feet")
  39422. },
  39423. {
  39424. name: "Normal",
  39425. height: math.unit(8, "feet"),
  39426. default: true
  39427. },
  39428. {
  39429. name: "Big",
  39430. height: math.unit(12, "feet")
  39431. },
  39432. {
  39433. name: "Macro",
  39434. height: math.unit(30, "feet")
  39435. },
  39436. ]
  39437. ))
  39438. characterMakers.push(() => makeCharacter(
  39439. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39440. {
  39441. front: {
  39442. height: math.unit(14, "feet"),
  39443. weight: math.unit(9.5, "tonnes"),
  39444. name: "Front",
  39445. image: {
  39446. source: "./media/characters/dawnheart/front.svg",
  39447. extra: 2792/2675,
  39448. bottom: 64/2856
  39449. }
  39450. },
  39451. },
  39452. [
  39453. {
  39454. name: "Normal",
  39455. height: math.unit(14, "feet"),
  39456. default: true
  39457. },
  39458. ]
  39459. ))
  39460. characterMakers.push(() => makeCharacter(
  39461. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39462. {
  39463. front: {
  39464. height: math.unit(1.7, "m"),
  39465. name: "Front",
  39466. image: {
  39467. source: "./media/characters/gladi/front.svg",
  39468. extra: 1460/1362,
  39469. bottom: 19/1479
  39470. }
  39471. },
  39472. back: {
  39473. height: math.unit(1.7, "m"),
  39474. name: "Back",
  39475. image: {
  39476. source: "./media/characters/gladi/back.svg",
  39477. extra: 1459/1357,
  39478. bottom: 12/1471
  39479. }
  39480. },
  39481. feral: {
  39482. height: math.unit(2.05, "m"),
  39483. name: "Feral",
  39484. image: {
  39485. source: "./media/characters/gladi/feral.svg",
  39486. extra: 821/557,
  39487. bottom: 91/912
  39488. }
  39489. },
  39490. },
  39491. [
  39492. {
  39493. name: "Shortest",
  39494. height: math.unit(70, "cm")
  39495. },
  39496. {
  39497. name: "Normal",
  39498. height: math.unit(1.7, "m")
  39499. },
  39500. {
  39501. name: "Macro",
  39502. height: math.unit(10, "m"),
  39503. default: true
  39504. },
  39505. {
  39506. name: "Tallest",
  39507. height: math.unit(200, "m")
  39508. },
  39509. ]
  39510. ))
  39511. characterMakers.push(() => makeCharacter(
  39512. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39513. {
  39514. front: {
  39515. height: math.unit(5 + 7/12, "feet"),
  39516. weight: math.unit(2, "tons"),
  39517. name: "Front",
  39518. image: {
  39519. source: "./media/characters/erdno/front.svg",
  39520. extra: 1234/1129,
  39521. bottom: 35/1269
  39522. }
  39523. },
  39524. angled: {
  39525. height: math.unit(5 + 7/12, "feet"),
  39526. weight: math.unit(2, "tons"),
  39527. name: "Angled",
  39528. image: {
  39529. source: "./media/characters/erdno/angled.svg",
  39530. extra: 1185/1139,
  39531. bottom: 36/1221
  39532. }
  39533. },
  39534. side: {
  39535. height: math.unit(5 + 7/12, "feet"),
  39536. weight: math.unit(2, "tons"),
  39537. name: "Side",
  39538. image: {
  39539. source: "./media/characters/erdno/side.svg",
  39540. extra: 1191/1144,
  39541. bottom: 40/1231
  39542. }
  39543. },
  39544. back: {
  39545. height: math.unit(5 + 7/12, "feet"),
  39546. weight: math.unit(2, "tons"),
  39547. name: "Back",
  39548. image: {
  39549. source: "./media/characters/erdno/back.svg",
  39550. extra: 1202/1146,
  39551. bottom: 17/1219
  39552. }
  39553. },
  39554. frontNsfw: {
  39555. height: math.unit(5 + 7/12, "feet"),
  39556. weight: math.unit(2, "tons"),
  39557. name: "Front (NSFW)",
  39558. image: {
  39559. source: "./media/characters/erdno/front-nsfw.svg",
  39560. extra: 1234/1129,
  39561. bottom: 35/1269
  39562. }
  39563. },
  39564. angledNsfw: {
  39565. height: math.unit(5 + 7/12, "feet"),
  39566. weight: math.unit(2, "tons"),
  39567. name: "Angled (NSFW)",
  39568. image: {
  39569. source: "./media/characters/erdno/angled-nsfw.svg",
  39570. extra: 1185/1139,
  39571. bottom: 36/1221
  39572. }
  39573. },
  39574. sideNsfw: {
  39575. height: math.unit(5 + 7/12, "feet"),
  39576. weight: math.unit(2, "tons"),
  39577. name: "Side (NSFW)",
  39578. image: {
  39579. source: "./media/characters/erdno/side-nsfw.svg",
  39580. extra: 1191/1144,
  39581. bottom: 40/1231
  39582. }
  39583. },
  39584. backNsfw: {
  39585. height: math.unit(5 + 7/12, "feet"),
  39586. weight: math.unit(2, "tons"),
  39587. name: "Back (NSFW)",
  39588. image: {
  39589. source: "./media/characters/erdno/back-nsfw.svg",
  39590. extra: 1202/1146,
  39591. bottom: 17/1219
  39592. }
  39593. },
  39594. frontHyper: {
  39595. height: math.unit(5 + 7/12, "feet"),
  39596. weight: math.unit(2, "tons"),
  39597. name: "Front (Hyper)",
  39598. image: {
  39599. source: "./media/characters/erdno/front-hyper.svg",
  39600. extra: 1298/1136,
  39601. bottom: 35/1333
  39602. }
  39603. },
  39604. },
  39605. [
  39606. {
  39607. name: "Normal",
  39608. height: math.unit(5 + 7/12, "feet"),
  39609. default: true
  39610. },
  39611. {
  39612. name: "Big",
  39613. height: math.unit(5.7, "meters")
  39614. },
  39615. {
  39616. name: "Macro",
  39617. height: math.unit(5.7, "kilometers")
  39618. },
  39619. {
  39620. name: "Megamacro",
  39621. height: math.unit(5.7, "earths")
  39622. },
  39623. ]
  39624. ))
  39625. characterMakers.push(() => makeCharacter(
  39626. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39627. {
  39628. front: {
  39629. height: math.unit(5 + 10/12, "feet"),
  39630. weight: math.unit(150, "lb"),
  39631. name: "Front",
  39632. image: {
  39633. source: "./media/characters/jamie/front.svg",
  39634. extra: 1908/1768,
  39635. bottom: 19/1927
  39636. }
  39637. },
  39638. },
  39639. [
  39640. {
  39641. name: "Minimum",
  39642. height: math.unit(2, "cm")
  39643. },
  39644. {
  39645. name: "Micro",
  39646. height: math.unit(3, "inches")
  39647. },
  39648. {
  39649. name: "Normal",
  39650. height: math.unit(5 + 10/12, "feet"),
  39651. default: true
  39652. },
  39653. {
  39654. name: "Macro",
  39655. height: math.unit(150, "feet")
  39656. },
  39657. {
  39658. name: "Megamacro",
  39659. height: math.unit(10000, "m")
  39660. },
  39661. ]
  39662. ))
  39663. characterMakers.push(() => makeCharacter(
  39664. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39665. {
  39666. front: {
  39667. height: math.unit(2, "meters"),
  39668. weight: math.unit(100, "kg"),
  39669. name: "Front",
  39670. image: {
  39671. source: "./media/characters/shiron/front.svg",
  39672. extra: 2103/1985,
  39673. bottom: 98/2201
  39674. }
  39675. },
  39676. back: {
  39677. height: math.unit(2, "meters"),
  39678. weight: math.unit(100, "kg"),
  39679. name: "Back",
  39680. image: {
  39681. source: "./media/characters/shiron/back.svg",
  39682. extra: 2110/2015,
  39683. bottom: 89/2199
  39684. }
  39685. },
  39686. hand: {
  39687. height: math.unit(0.96, "feet"),
  39688. name: "Hand",
  39689. image: {
  39690. source: "./media/characters/shiron/hand.svg"
  39691. }
  39692. },
  39693. foot: {
  39694. height: math.unit(1.464, "feet"),
  39695. name: "Foot",
  39696. image: {
  39697. source: "./media/characters/shiron/foot.svg"
  39698. }
  39699. },
  39700. },
  39701. [
  39702. {
  39703. name: "Normal",
  39704. height: math.unit(2, "meters")
  39705. },
  39706. {
  39707. name: "Macro",
  39708. height: math.unit(500, "meters"),
  39709. default: true
  39710. },
  39711. {
  39712. name: "Megamacro",
  39713. height: math.unit(20, "km")
  39714. },
  39715. ]
  39716. ))
  39717. characterMakers.push(() => makeCharacter(
  39718. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39719. {
  39720. front: {
  39721. height: math.unit(6, "feet"),
  39722. name: "Front",
  39723. image: {
  39724. source: "./media/characters/sam/front.svg",
  39725. extra: 849/826,
  39726. bottom: 19/868
  39727. }
  39728. },
  39729. },
  39730. [
  39731. {
  39732. name: "Normal",
  39733. height: math.unit(6, "feet"),
  39734. default: true
  39735. },
  39736. ]
  39737. ))
  39738. characterMakers.push(() => makeCharacter(
  39739. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39740. {
  39741. front: {
  39742. height: math.unit(8 + 4/12, "feet"),
  39743. weight: math.unit(122, "kg"),
  39744. name: "Front",
  39745. image: {
  39746. source: "./media/characters/namori-kurogawa/front.svg",
  39747. extra: 1894/1576,
  39748. bottom: 34/1928
  39749. }
  39750. },
  39751. },
  39752. [
  39753. {
  39754. name: "Normal",
  39755. height: math.unit(8 + 4/12, "feet"),
  39756. default: true
  39757. },
  39758. ]
  39759. ))
  39760. characterMakers.push(() => makeCharacter(
  39761. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39762. {
  39763. front: {
  39764. height: math.unit(9, "feet"),
  39765. weight: math.unit(621, "lb"),
  39766. name: "Front",
  39767. image: {
  39768. source: "./media/characters/unmru/front.svg",
  39769. extra: 1853/1747,
  39770. bottom: 73/1926
  39771. }
  39772. },
  39773. side: {
  39774. height: math.unit(9, "feet"),
  39775. weight: math.unit(621, "lb"),
  39776. name: "Side",
  39777. image: {
  39778. source: "./media/characters/unmru/side.svg",
  39779. extra: 1781/1671,
  39780. bottom: 127/1908
  39781. }
  39782. },
  39783. back: {
  39784. height: math.unit(9, "feet"),
  39785. weight: math.unit(621, "lb"),
  39786. name: "Back",
  39787. image: {
  39788. source: "./media/characters/unmru/back.svg",
  39789. extra: 1894/1765,
  39790. bottom: 75/1969
  39791. }
  39792. },
  39793. dick: {
  39794. height: math.unit(3, "feet"),
  39795. weight: math.unit(35, "lb"),
  39796. name: "Dick",
  39797. image: {
  39798. source: "./media/characters/unmru/dick.svg"
  39799. }
  39800. },
  39801. },
  39802. [
  39803. {
  39804. name: "Normal",
  39805. height: math.unit(9, "feet")
  39806. },
  39807. {
  39808. name: "Natural",
  39809. height: math.unit(27, "feet"),
  39810. default: true
  39811. },
  39812. {
  39813. name: "Giant",
  39814. height: math.unit(90, "feet")
  39815. },
  39816. {
  39817. name: "Kaiju",
  39818. height: math.unit(270, "feet")
  39819. },
  39820. {
  39821. name: "Macro",
  39822. height: math.unit(900, "feet")
  39823. },
  39824. {
  39825. name: "Macro+",
  39826. height: math.unit(2700, "feet")
  39827. },
  39828. {
  39829. name: "Megamacro",
  39830. height: math.unit(9000, "feet")
  39831. },
  39832. {
  39833. name: "City-Crushing",
  39834. height: math.unit(27000, "feet")
  39835. },
  39836. {
  39837. name: "Mountain-Mashing",
  39838. height: math.unit(90000, "feet")
  39839. },
  39840. {
  39841. name: "Earth-Eclipsing",
  39842. height: math.unit(2.7e8, "feet")
  39843. },
  39844. {
  39845. name: "Sol-Swallowing",
  39846. height: math.unit(9e10, "feet")
  39847. },
  39848. {
  39849. name: "Majoris-Munching",
  39850. height: math.unit(2.7e13, "feet")
  39851. },
  39852. ]
  39853. ))
  39854. characterMakers.push(() => makeCharacter(
  39855. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39856. {
  39857. front: {
  39858. height: math.unit(1, "inch"),
  39859. name: "Front",
  39860. image: {
  39861. source: "./media/characters/squeaks-mouse/front.svg",
  39862. extra: 352/308,
  39863. bottom: 25/377
  39864. }
  39865. },
  39866. },
  39867. [
  39868. {
  39869. name: "Micro",
  39870. height: math.unit(1, "inch"),
  39871. default: true
  39872. },
  39873. ]
  39874. ))
  39875. characterMakers.push(() => makeCharacter(
  39876. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39877. {
  39878. side: {
  39879. height: math.unit(35, "feet"),
  39880. name: "Side",
  39881. image: {
  39882. source: "./media/characters/sayko/side.svg",
  39883. extra: 1697/1021,
  39884. bottom: 82/1779
  39885. }
  39886. },
  39887. head: {
  39888. height: math.unit(16, "feet"),
  39889. name: "Head",
  39890. image: {
  39891. source: "./media/characters/sayko/head.svg"
  39892. }
  39893. },
  39894. forepaw: {
  39895. height: math.unit(7.85, "feet"),
  39896. name: "Forepaw",
  39897. image: {
  39898. source: "./media/characters/sayko/forepaw.svg"
  39899. }
  39900. },
  39901. hindpaw: {
  39902. height: math.unit(8.8, "feet"),
  39903. name: "Hindpaw",
  39904. image: {
  39905. source: "./media/characters/sayko/hindpaw.svg"
  39906. }
  39907. },
  39908. },
  39909. [
  39910. {
  39911. name: "Normal",
  39912. height: math.unit(35, "feet"),
  39913. default: true
  39914. },
  39915. {
  39916. name: "Colossus",
  39917. height: math.unit(100, "meters")
  39918. },
  39919. {
  39920. name: "\"Small\" Deity",
  39921. height: math.unit(1, "km")
  39922. },
  39923. {
  39924. name: "\"Large\" Deity",
  39925. height: math.unit(15, "km")
  39926. },
  39927. ]
  39928. ))
  39929. characterMakers.push(() => makeCharacter(
  39930. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39931. {
  39932. front: {
  39933. height: math.unit(6, "feet"),
  39934. weight: math.unit(250, "lb"),
  39935. name: "Front",
  39936. image: {
  39937. source: "./media/characters/mukiro/front.svg",
  39938. extra: 1368/1310,
  39939. bottom: 34/1402
  39940. }
  39941. },
  39942. },
  39943. [
  39944. {
  39945. name: "Normal",
  39946. height: math.unit(6, "feet"),
  39947. default: true
  39948. },
  39949. ]
  39950. ))
  39951. characterMakers.push(() => makeCharacter(
  39952. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39953. {
  39954. front: {
  39955. height: math.unit(12 + 4/12, "feet"),
  39956. name: "Front",
  39957. image: {
  39958. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39959. extra: 1346/1311,
  39960. bottom: 65/1411
  39961. }
  39962. },
  39963. },
  39964. [
  39965. {
  39966. name: "Base",
  39967. height: math.unit(12 + 4/12, "feet"),
  39968. default: true
  39969. },
  39970. {
  39971. name: "Macro",
  39972. height: math.unit(150, "feet")
  39973. },
  39974. {
  39975. name: "Mega",
  39976. height: math.unit(2, "miles")
  39977. },
  39978. {
  39979. name: "Demi God",
  39980. height: math.unit(4, "AU")
  39981. },
  39982. {
  39983. name: "God Size",
  39984. height: math.unit(1, "universe")
  39985. },
  39986. ]
  39987. ))
  39988. characterMakers.push(() => makeCharacter(
  39989. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39990. {
  39991. front: {
  39992. height: math.unit(3 + 3/12, "feet"),
  39993. weight: math.unit(88, "lb"),
  39994. name: "Front",
  39995. image: {
  39996. source: "./media/characters/trey/front.svg",
  39997. extra: 1815/1509,
  39998. bottom: 60/1875
  39999. }
  40000. },
  40001. },
  40002. [
  40003. {
  40004. name: "Normal",
  40005. height: math.unit(3 + 3/12, "feet"),
  40006. default: true
  40007. },
  40008. ]
  40009. ))
  40010. characterMakers.push(() => makeCharacter(
  40011. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40012. {
  40013. front: {
  40014. height: math.unit(4, "meters"),
  40015. name: "Front",
  40016. image: {
  40017. source: "./media/characters/adelonda/front.svg",
  40018. extra: 1077/982,
  40019. bottom: 39/1116
  40020. }
  40021. },
  40022. back: {
  40023. height: math.unit(4, "meters"),
  40024. name: "Back",
  40025. image: {
  40026. source: "./media/characters/adelonda/back.svg",
  40027. extra: 1105/1003,
  40028. bottom: 25/1130
  40029. }
  40030. },
  40031. feral: {
  40032. height: math.unit(40/1.5, "meters"),
  40033. name: "Feral",
  40034. image: {
  40035. source: "./media/characters/adelonda/feral.svg",
  40036. extra: 597/271,
  40037. bottom: 387/984
  40038. }
  40039. },
  40040. },
  40041. [
  40042. {
  40043. name: "Normal",
  40044. height: math.unit(4, "meters"),
  40045. default: true
  40046. },
  40047. ]
  40048. ))
  40049. characterMakers.push(() => makeCharacter(
  40050. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40051. {
  40052. front: {
  40053. height: math.unit(8 + 4/12, "feet"),
  40054. weight: math.unit(670, "lb"),
  40055. name: "Front",
  40056. image: {
  40057. source: "./media/characters/acadiel/front.svg",
  40058. extra: 1901/1595,
  40059. bottom: 142/2043
  40060. }
  40061. },
  40062. },
  40063. [
  40064. {
  40065. name: "Normal",
  40066. height: math.unit(8 + 4/12, "feet"),
  40067. default: true
  40068. },
  40069. {
  40070. name: "Macro",
  40071. height: math.unit(200, "feet")
  40072. },
  40073. ]
  40074. ))
  40075. characterMakers.push(() => makeCharacter(
  40076. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40077. {
  40078. front: {
  40079. height: math.unit(6 + 2/12, "feet"),
  40080. weight: math.unit(185, "lb"),
  40081. name: "Front",
  40082. image: {
  40083. source: "./media/characters/kayne-ein/front.svg",
  40084. extra: 1780/1560,
  40085. bottom: 81/1861
  40086. }
  40087. },
  40088. },
  40089. [
  40090. {
  40091. name: "Normal",
  40092. height: math.unit(6 + 2/12, "feet"),
  40093. default: true
  40094. },
  40095. {
  40096. name: "Transformation Stage",
  40097. height: math.unit(15, "feet")
  40098. },
  40099. {
  40100. name: "Macro",
  40101. height: math.unit(150, "feet")
  40102. },
  40103. {
  40104. name: "Earth's Shadow",
  40105. height: math.unit(6200, "miles")
  40106. },
  40107. {
  40108. name: "Universal Demon",
  40109. height: math.unit(28e9, "parsecs")
  40110. },
  40111. {
  40112. name: "Multiverse God",
  40113. height: math.unit(3, "multiverses")
  40114. },
  40115. ]
  40116. ))
  40117. characterMakers.push(() => makeCharacter(
  40118. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40119. {
  40120. front: {
  40121. height: math.unit(5 + 5/12, "feet"),
  40122. name: "Front",
  40123. image: {
  40124. source: "./media/characters/fawn/front.svg",
  40125. extra: 1873/1731,
  40126. bottom: 95/1968
  40127. }
  40128. },
  40129. back: {
  40130. height: math.unit(5 + 5/12, "feet"),
  40131. name: "Back",
  40132. image: {
  40133. source: "./media/characters/fawn/back.svg",
  40134. extra: 1813/1700,
  40135. bottom: 14/1827
  40136. }
  40137. },
  40138. hoof: {
  40139. height: math.unit(1.45, "feet"),
  40140. name: "Hoof",
  40141. image: {
  40142. source: "./media/characters/fawn/hoof.svg"
  40143. }
  40144. },
  40145. },
  40146. [
  40147. {
  40148. name: "Normal",
  40149. height: math.unit(5 + 5/12, "feet"),
  40150. default: true
  40151. },
  40152. ]
  40153. ))
  40154. characterMakers.push(() => makeCharacter(
  40155. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40156. {
  40157. front: {
  40158. height: math.unit(2 + 5/12, "feet"),
  40159. name: "Front",
  40160. image: {
  40161. source: "./media/characters/orion/front.svg",
  40162. extra: 1366/1304,
  40163. bottom: 43/1409
  40164. }
  40165. },
  40166. paw: {
  40167. height: math.unit(0.52, "feet"),
  40168. name: "Paw",
  40169. image: {
  40170. source: "./media/characters/orion/paw.svg"
  40171. }
  40172. },
  40173. },
  40174. [
  40175. {
  40176. name: "Normal",
  40177. height: math.unit(2 + 5/12, "feet"),
  40178. default: true
  40179. },
  40180. ]
  40181. ))
  40182. characterMakers.push(() => makeCharacter(
  40183. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40184. {
  40185. front: {
  40186. height: math.unit(5 + 10/12, "feet"),
  40187. name: "Front",
  40188. image: {
  40189. source: "./media/characters/vera/front.svg",
  40190. extra: 1680/1575,
  40191. bottom: 49/1729
  40192. }
  40193. },
  40194. back: {
  40195. height: math.unit(5 + 10/12, "feet"),
  40196. name: "Back",
  40197. image: {
  40198. source: "./media/characters/vera/back.svg",
  40199. extra: 1700/1588,
  40200. bottom: 18/1718
  40201. }
  40202. },
  40203. arcanine: {
  40204. height: math.unit(6 + 8/12, "feet"),
  40205. name: "Arcanine",
  40206. image: {
  40207. source: "./media/characters/vera/arcanine.svg",
  40208. extra: 1590/1511,
  40209. bottom: 71/1661
  40210. }
  40211. },
  40212. maw: {
  40213. height: math.unit(0.82, "feet"),
  40214. name: "Maw",
  40215. image: {
  40216. source: "./media/characters/vera/maw.svg"
  40217. }
  40218. },
  40219. mawArcanine: {
  40220. height: math.unit(0.97, "feet"),
  40221. name: "Maw (Arcanine)",
  40222. image: {
  40223. source: "./media/characters/vera/maw-arcanine.svg"
  40224. }
  40225. },
  40226. paw: {
  40227. height: math.unit(0.75, "feet"),
  40228. name: "Paw",
  40229. image: {
  40230. source: "./media/characters/vera/paw.svg"
  40231. }
  40232. },
  40233. pawprint: {
  40234. height: math.unit(0.52, "feet"),
  40235. name: "Pawprint",
  40236. image: {
  40237. source: "./media/characters/vera/pawprint.svg"
  40238. }
  40239. },
  40240. },
  40241. [
  40242. {
  40243. name: "Normal",
  40244. height: math.unit(5 + 10/12, "feet"),
  40245. default: true
  40246. },
  40247. {
  40248. name: "Macro",
  40249. height: math.unit(75, "feet")
  40250. },
  40251. ]
  40252. ))
  40253. characterMakers.push(() => makeCharacter(
  40254. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40255. {
  40256. front: {
  40257. height: math.unit(4, "feet"),
  40258. weight: math.unit(40, "lb"),
  40259. name: "Front",
  40260. image: {
  40261. source: "./media/characters/orvan-rabbit/front.svg",
  40262. extra: 1896/1642,
  40263. bottom: 29/1925
  40264. }
  40265. },
  40266. },
  40267. [
  40268. {
  40269. name: "Normal",
  40270. height: math.unit(4, "feet"),
  40271. default: true
  40272. },
  40273. ]
  40274. ))
  40275. characterMakers.push(() => makeCharacter(
  40276. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40277. {
  40278. front: {
  40279. height: math.unit(6, "feet"),
  40280. weight: math.unit(168, "lb"),
  40281. name: "Front",
  40282. image: {
  40283. source: "./media/characters/lisa/front.svg",
  40284. extra: 2065/1867,
  40285. bottom: 46/2111
  40286. }
  40287. },
  40288. back: {
  40289. height: math.unit(6, "feet"),
  40290. weight: math.unit(168, "lb"),
  40291. name: "Back",
  40292. image: {
  40293. source: "./media/characters/lisa/back.svg",
  40294. extra: 1982/1838,
  40295. bottom: 29/2011
  40296. }
  40297. },
  40298. maw: {
  40299. height: math.unit(0.81, "feet"),
  40300. name: "Maw",
  40301. image: {
  40302. source: "./media/characters/lisa/maw.svg"
  40303. }
  40304. },
  40305. paw: {
  40306. height: math.unit(0.9, "feet"),
  40307. name: "Paw",
  40308. image: {
  40309. source: "./media/characters/lisa/paw.svg"
  40310. }
  40311. },
  40312. caribousune: {
  40313. height: math.unit(7 + 2/12, "feet"),
  40314. weight: math.unit(268, "lb"),
  40315. name: "Caribousune",
  40316. image: {
  40317. source: "./media/characters/lisa/caribousune.svg",
  40318. extra: 1843/1633,
  40319. bottom: 29/1872
  40320. }
  40321. },
  40322. frontCaribousune: {
  40323. height: math.unit(7 + 2/12, "feet"),
  40324. weight: math.unit(268, "lb"),
  40325. name: "Front (Caribousune)",
  40326. image: {
  40327. source: "./media/characters/lisa/front-caribousune.svg",
  40328. extra: 1818/1638,
  40329. bottom: 52/1870
  40330. }
  40331. },
  40332. sideCaribousune: {
  40333. height: math.unit(7 + 2/12, "feet"),
  40334. weight: math.unit(268, "lb"),
  40335. name: "Side (Caribousune)",
  40336. image: {
  40337. source: "./media/characters/lisa/side-caribousune.svg",
  40338. extra: 1851/1635,
  40339. bottom: 16/1867
  40340. }
  40341. },
  40342. backCaribousune: {
  40343. height: math.unit(7 + 2/12, "feet"),
  40344. weight: math.unit(268, "lb"),
  40345. name: "Back (Caribousune)",
  40346. image: {
  40347. source: "./media/characters/lisa/back-caribousune.svg",
  40348. extra: 1801/1604,
  40349. bottom: 44/1845
  40350. }
  40351. },
  40352. caribou: {
  40353. height: math.unit(7 + 2/12, "feet"),
  40354. weight: math.unit(268, "lb"),
  40355. name: "Caribou",
  40356. image: {
  40357. source: "./media/characters/lisa/caribou.svg",
  40358. extra: 1843/1633,
  40359. bottom: 29/1872
  40360. }
  40361. },
  40362. frontCaribou: {
  40363. height: math.unit(7 + 2/12, "feet"),
  40364. weight: math.unit(268, "lb"),
  40365. name: "Front (Caribou)",
  40366. image: {
  40367. source: "./media/characters/lisa/front-caribou.svg",
  40368. extra: 1818/1638,
  40369. bottom: 52/1870
  40370. }
  40371. },
  40372. sideCaribou: {
  40373. height: math.unit(7 + 2/12, "feet"),
  40374. weight: math.unit(268, "lb"),
  40375. name: "Side (Caribou)",
  40376. image: {
  40377. source: "./media/characters/lisa/side-caribou.svg",
  40378. extra: 1851/1635,
  40379. bottom: 16/1867
  40380. }
  40381. },
  40382. backCaribou: {
  40383. height: math.unit(7 + 2/12, "feet"),
  40384. weight: math.unit(268, "lb"),
  40385. name: "Back (Caribou)",
  40386. image: {
  40387. source: "./media/characters/lisa/back-caribou.svg",
  40388. extra: 1801/1604,
  40389. bottom: 44/1845
  40390. }
  40391. },
  40392. mawCaribou: {
  40393. height: math.unit(1.45, "feet"),
  40394. name: "Maw (Caribou)",
  40395. image: {
  40396. source: "./media/characters/lisa/maw-caribou.svg"
  40397. }
  40398. },
  40399. mawCaribousune: {
  40400. height: math.unit(1.45, "feet"),
  40401. name: "Maw (Caribousune)",
  40402. image: {
  40403. source: "./media/characters/lisa/maw-caribousune.svg"
  40404. }
  40405. },
  40406. pawCaribousune: {
  40407. height: math.unit(1.61, "feet"),
  40408. name: "Paw (Caribou)",
  40409. image: {
  40410. source: "./media/characters/lisa/paw-caribousune.svg"
  40411. }
  40412. },
  40413. },
  40414. [
  40415. {
  40416. name: "Normal",
  40417. height: math.unit(6, "feet")
  40418. },
  40419. {
  40420. name: "God Size",
  40421. height: math.unit(72, "feet"),
  40422. default: true
  40423. },
  40424. {
  40425. name: "Towering",
  40426. height: math.unit(288, "feet")
  40427. },
  40428. {
  40429. name: "City Size",
  40430. height: math.unit(48384, "feet")
  40431. },
  40432. {
  40433. name: "Continental",
  40434. height: math.unit(4200, "miles")
  40435. },
  40436. {
  40437. name: "Planet Eater",
  40438. height: math.unit(42, "earths")
  40439. },
  40440. {
  40441. name: "Star Swallower",
  40442. height: math.unit(42, "solarradii")
  40443. },
  40444. {
  40445. name: "System Swallower",
  40446. height: math.unit(84000, "AU")
  40447. },
  40448. {
  40449. name: "Galaxy Gobbler",
  40450. height: math.unit(42, "galaxies")
  40451. },
  40452. {
  40453. name: "Universe Devourer",
  40454. height: math.unit(42, "universes")
  40455. },
  40456. {
  40457. name: "Multiverse Muncher",
  40458. height: math.unit(42, "multiverses")
  40459. },
  40460. ]
  40461. ))
  40462. characterMakers.push(() => makeCharacter(
  40463. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40464. {
  40465. front: {
  40466. height: math.unit(36, "feet"),
  40467. name: "Front",
  40468. image: {
  40469. source: "./media/characters/shadow-rat/front.svg",
  40470. extra: 1845/1758,
  40471. bottom: 83/1928
  40472. }
  40473. },
  40474. },
  40475. [
  40476. {
  40477. name: "Macro",
  40478. height: math.unit(36, "feet"),
  40479. default: true
  40480. },
  40481. ]
  40482. ))
  40483. characterMakers.push(() => makeCharacter(
  40484. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40485. {
  40486. side: {
  40487. height: math.unit(8, "feet"),
  40488. weight: math.unit(2630, "lb"),
  40489. name: "Side",
  40490. image: {
  40491. source: "./media/characters/torallia/side.svg",
  40492. extra: 2164/2021,
  40493. bottom: 371/2535
  40494. }
  40495. },
  40496. },
  40497. [
  40498. {
  40499. name: "Mortal Interaction",
  40500. height: math.unit(8, "feet")
  40501. },
  40502. {
  40503. name: "Natural",
  40504. height: math.unit(24, "feet"),
  40505. default: true
  40506. },
  40507. {
  40508. name: "Giant",
  40509. height: math.unit(80, "feet")
  40510. },
  40511. {
  40512. name: "Kaiju",
  40513. height: math.unit(240, "feet")
  40514. },
  40515. {
  40516. name: "Macro",
  40517. height: math.unit(800, "feet")
  40518. },
  40519. {
  40520. name: "Macro+",
  40521. height: math.unit(2400, "feet")
  40522. },
  40523. {
  40524. name: "Macro++",
  40525. height: math.unit(8000, "feet")
  40526. },
  40527. {
  40528. name: "City-Crushing",
  40529. height: math.unit(24000, "feet")
  40530. },
  40531. {
  40532. name: "Mountain-Mashing",
  40533. height: math.unit(80000, "feet")
  40534. },
  40535. {
  40536. name: "District Demolisher",
  40537. height: math.unit(240000, "feet")
  40538. },
  40539. {
  40540. name: "Tri-County Terror",
  40541. height: math.unit(800000, "feet")
  40542. },
  40543. {
  40544. name: "State Smasher",
  40545. height: math.unit(2.4e6, "feet")
  40546. },
  40547. {
  40548. name: "Nation Nemesis",
  40549. height: math.unit(8e6, "feet")
  40550. },
  40551. {
  40552. name: "Continent Cracker",
  40553. height: math.unit(2.4e7, "feet")
  40554. },
  40555. {
  40556. name: "Planet-Pillaging",
  40557. height: math.unit(8e7, "feet")
  40558. },
  40559. {
  40560. name: "Earth-Eclipsing",
  40561. height: math.unit(2.4e8, "feet")
  40562. },
  40563. {
  40564. name: "Jovian-Jostling",
  40565. height: math.unit(8e8, "feet")
  40566. },
  40567. {
  40568. name: "Gas Giant Gulper",
  40569. height: math.unit(2.4e9, "feet")
  40570. },
  40571. {
  40572. name: "Astral Annihilator",
  40573. height: math.unit(8e9, "feet")
  40574. },
  40575. {
  40576. name: "Celestial Conqueror",
  40577. height: math.unit(2.4e10, "feet")
  40578. },
  40579. {
  40580. name: "Sol-Swallowing",
  40581. height: math.unit(8e10, "feet")
  40582. },
  40583. {
  40584. name: "Hunter of the Heavens",
  40585. height: math.unit(2.4e13, "feet")
  40586. },
  40587. ]
  40588. ))
  40589. characterMakers.push(() => makeCharacter(
  40590. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40591. {
  40592. front: {
  40593. height: math.unit(6 + 8/12, "feet"),
  40594. weight: math.unit(250, "kilograms"),
  40595. volume: math.unit(28, "liters"),
  40596. name: "Front",
  40597. image: {
  40598. source: "./media/characters/rebecca-pawlson/front.svg",
  40599. extra: 1737/1596,
  40600. bottom: 107/1844
  40601. }
  40602. },
  40603. back: {
  40604. height: math.unit(6 + 8/12, "feet"),
  40605. weight: math.unit(250, "kilograms"),
  40606. volume: math.unit(28, "liters"),
  40607. name: "Back",
  40608. image: {
  40609. source: "./media/characters/rebecca-pawlson/back.svg",
  40610. extra: 1702/1523,
  40611. bottom: 86/1788
  40612. }
  40613. },
  40614. },
  40615. [
  40616. {
  40617. name: "Normal",
  40618. height: math.unit(6 + 8/12, "feet")
  40619. },
  40620. {
  40621. name: "Mini Macro",
  40622. height: math.unit(10, "feet"),
  40623. default: true
  40624. },
  40625. {
  40626. name: "Macro",
  40627. height: math.unit(100, "feet")
  40628. },
  40629. {
  40630. name: "Mega Macro",
  40631. height: math.unit(2500, "feet")
  40632. },
  40633. {
  40634. name: "Giga Macro",
  40635. height: math.unit(50, "miles")
  40636. },
  40637. ]
  40638. ))
  40639. characterMakers.push(() => makeCharacter(
  40640. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40641. {
  40642. front: {
  40643. height: math.unit(7 + 6/12, "feet"),
  40644. weight: math.unit(600, "lb"),
  40645. name: "Front",
  40646. image: {
  40647. source: "./media/characters/moxie-nova/front.svg",
  40648. extra: 1734/1652,
  40649. bottom: 41/1775
  40650. }
  40651. },
  40652. },
  40653. [
  40654. {
  40655. name: "Normal",
  40656. height: math.unit(7 + 6/12, "feet"),
  40657. default: true
  40658. },
  40659. ]
  40660. ))
  40661. characterMakers.push(() => makeCharacter(
  40662. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40663. {
  40664. goat: {
  40665. height: math.unit(4, "feet"),
  40666. weight: math.unit(180, "lb"),
  40667. name: "Goat",
  40668. image: {
  40669. source: "./media/characters/tiffany/goat.svg",
  40670. extra: 1845/1595,
  40671. bottom: 106/1951
  40672. }
  40673. },
  40674. front: {
  40675. height: math.unit(5, "feet"),
  40676. weight: math.unit(150, "lb"),
  40677. name: "Foxcoon",
  40678. image: {
  40679. source: "./media/characters/tiffany/foxcoon.svg",
  40680. extra: 1941/1845,
  40681. bottom: 58/1999
  40682. }
  40683. },
  40684. },
  40685. [
  40686. {
  40687. name: "Normal",
  40688. height: math.unit(5, "feet"),
  40689. default: true
  40690. },
  40691. ]
  40692. ))
  40693. characterMakers.push(() => makeCharacter(
  40694. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40695. {
  40696. front: {
  40697. height: math.unit(8, "feet"),
  40698. weight: math.unit(300, "lb"),
  40699. name: "Front",
  40700. image: {
  40701. source: "./media/characters/raxinath/front.svg",
  40702. extra: 1407/1309,
  40703. bottom: 39/1446
  40704. }
  40705. },
  40706. back: {
  40707. height: math.unit(8, "feet"),
  40708. weight: math.unit(300, "lb"),
  40709. name: "Back",
  40710. image: {
  40711. source: "./media/characters/raxinath/back.svg",
  40712. extra: 1405/1315,
  40713. bottom: 9/1414
  40714. }
  40715. },
  40716. },
  40717. [
  40718. {
  40719. name: "Speck",
  40720. height: math.unit(0.5, "nm")
  40721. },
  40722. {
  40723. name: "Micro",
  40724. height: math.unit(3, "inches")
  40725. },
  40726. {
  40727. name: "Kobold",
  40728. height: math.unit(3, "feet")
  40729. },
  40730. {
  40731. name: "Normal",
  40732. height: math.unit(8, "feet"),
  40733. default: true
  40734. },
  40735. {
  40736. name: "Giant",
  40737. height: math.unit(50, "feet")
  40738. },
  40739. {
  40740. name: "Macro",
  40741. height: math.unit(1000, "feet")
  40742. },
  40743. {
  40744. name: "Megamacro",
  40745. height: math.unit(1, "mile")
  40746. },
  40747. ]
  40748. ))
  40749. characterMakers.push(() => makeCharacter(
  40750. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40751. {
  40752. front: {
  40753. height: math.unit(10, "feet"),
  40754. weight: math.unit(1442, "lb"),
  40755. name: "Front",
  40756. image: {
  40757. source: "./media/characters/mal-dragon/front.svg",
  40758. extra: 1515/1444,
  40759. bottom: 113/1628
  40760. }
  40761. },
  40762. back: {
  40763. height: math.unit(10, "feet"),
  40764. weight: math.unit(1442, "lb"),
  40765. name: "Back",
  40766. image: {
  40767. source: "./media/characters/mal-dragon/back.svg",
  40768. extra: 1527/1434,
  40769. bottom: 25/1552
  40770. }
  40771. },
  40772. },
  40773. [
  40774. {
  40775. name: "Mortal Interaction",
  40776. height: math.unit(10, "feet"),
  40777. default: true
  40778. },
  40779. {
  40780. name: "Large",
  40781. height: math.unit(30, "feet")
  40782. },
  40783. {
  40784. name: "Kaiju",
  40785. height: math.unit(300, "feet")
  40786. },
  40787. {
  40788. name: "Megamacro",
  40789. height: math.unit(10000, "feet")
  40790. },
  40791. {
  40792. name: "Continent Cracker",
  40793. height: math.unit(30000000, "feet")
  40794. },
  40795. {
  40796. name: "Sol-Swallowing",
  40797. height: math.unit(1e11, "feet")
  40798. },
  40799. {
  40800. name: "Light Universal",
  40801. height: math.unit(5, "universes")
  40802. },
  40803. {
  40804. name: "Universe Atoms",
  40805. height: math.unit(1.829e9, "universes")
  40806. },
  40807. {
  40808. name: "Light Multiversal",
  40809. height: math.unit(5, "multiverses")
  40810. },
  40811. {
  40812. name: "Multiverse Atoms",
  40813. height: math.unit(1.829e9, "multiverses")
  40814. },
  40815. {
  40816. name: "Fabric of Time",
  40817. height: math.unit(1e262, "multiverses")
  40818. },
  40819. ]
  40820. ))
  40821. characterMakers.push(() => makeCharacter(
  40822. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40823. {
  40824. front: {
  40825. height: math.unit(9, "feet"),
  40826. weight: math.unit(1050, "lb"),
  40827. name: "Front",
  40828. image: {
  40829. source: "./media/characters/tabitha/front.svg",
  40830. extra: 2083/1994,
  40831. bottom: 68/2151
  40832. }
  40833. },
  40834. },
  40835. [
  40836. {
  40837. name: "Baseline",
  40838. height: math.unit(9, "feet"),
  40839. default: true
  40840. },
  40841. {
  40842. name: "Giant",
  40843. height: math.unit(90, "feet")
  40844. },
  40845. {
  40846. name: "Macro",
  40847. height: math.unit(900, "feet")
  40848. },
  40849. {
  40850. name: "Megamacro",
  40851. height: math.unit(9000, "feet")
  40852. },
  40853. {
  40854. name: "City-Crushing",
  40855. height: math.unit(27000, "feet")
  40856. },
  40857. {
  40858. name: "Mountain-Mashing",
  40859. height: math.unit(90000, "feet")
  40860. },
  40861. {
  40862. name: "Nation Nemesis",
  40863. height: math.unit(9e6, "feet")
  40864. },
  40865. {
  40866. name: "Continent Cracker",
  40867. height: math.unit(27e6, "feet")
  40868. },
  40869. {
  40870. name: "Earth-Eclipsing",
  40871. height: math.unit(2.7e8, "feet")
  40872. },
  40873. {
  40874. name: "Gas Giant Gulper",
  40875. height: math.unit(2.7e9, "feet")
  40876. },
  40877. {
  40878. name: "Sol-Swallowing",
  40879. height: math.unit(9e10, "feet")
  40880. },
  40881. {
  40882. name: "Galaxy Gulper",
  40883. height: math.unit(9, "galaxies")
  40884. },
  40885. {
  40886. name: "Cosmos Churner",
  40887. height: math.unit(9, "universes")
  40888. },
  40889. ]
  40890. ))
  40891. characterMakers.push(() => makeCharacter(
  40892. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40893. {
  40894. front: {
  40895. height: math.unit(160, "cm"),
  40896. weight: math.unit(55, "kg"),
  40897. name: "Front",
  40898. image: {
  40899. source: "./media/characters/tow/front.svg",
  40900. extra: 1751/1722,
  40901. bottom: 74/1825
  40902. }
  40903. },
  40904. },
  40905. [
  40906. {
  40907. name: "Norm",
  40908. height: math.unit(160, "cm")
  40909. },
  40910. {
  40911. name: "Casual",
  40912. height: math.unit(3200, "m"),
  40913. default: true
  40914. },
  40915. {
  40916. name: "Show-Off",
  40917. height: math.unit(160, "km")
  40918. },
  40919. ]
  40920. ))
  40921. characterMakers.push(() => makeCharacter(
  40922. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40923. {
  40924. front: {
  40925. height: math.unit(7 + 11/12, "feet"),
  40926. weight: math.unit(342.8, "lb"),
  40927. name: "Front",
  40928. image: {
  40929. source: "./media/characters/vivian-orca-dragon/front.svg",
  40930. extra: 1890/1865,
  40931. bottom: 28/1918
  40932. }
  40933. },
  40934. },
  40935. [
  40936. {
  40937. name: "Micro",
  40938. height: math.unit(5, "inches")
  40939. },
  40940. {
  40941. name: "Normal",
  40942. height: math.unit(7 + 11/12, "feet"),
  40943. default: true
  40944. },
  40945. {
  40946. name: "Macro",
  40947. height: math.unit(395 + 7/12, "feet")
  40948. },
  40949. ]
  40950. ))
  40951. characterMakers.push(() => makeCharacter(
  40952. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40953. {
  40954. side: {
  40955. height: math.unit(10, "feet"),
  40956. weight: math.unit(1442, "lb"),
  40957. name: "Side",
  40958. image: {
  40959. source: "./media/characters/lotherakon/side.svg",
  40960. extra: 1604/1497,
  40961. bottom: 89/1693
  40962. }
  40963. },
  40964. },
  40965. [
  40966. {
  40967. name: "Mortal Interaction",
  40968. height: math.unit(10, "feet")
  40969. },
  40970. {
  40971. name: "Large",
  40972. height: math.unit(30, "feet"),
  40973. default: true
  40974. },
  40975. {
  40976. name: "Giant",
  40977. height: math.unit(100, "feet")
  40978. },
  40979. {
  40980. name: "Kaiju",
  40981. height: math.unit(300, "feet")
  40982. },
  40983. {
  40984. name: "Macro",
  40985. height: math.unit(1000, "feet")
  40986. },
  40987. {
  40988. name: "Macro+",
  40989. height: math.unit(3000, "feet")
  40990. },
  40991. {
  40992. name: "Megamacro",
  40993. height: math.unit(10000, "feet")
  40994. },
  40995. {
  40996. name: "City-Crushing",
  40997. height: math.unit(30000, "feet")
  40998. },
  40999. {
  41000. name: "Continent Cracker",
  41001. height: math.unit(30e6, "feet")
  41002. },
  41003. {
  41004. name: "Earth Eclipsing",
  41005. height: math.unit(3e8, "feet")
  41006. },
  41007. {
  41008. name: "Gas Giant Gulper",
  41009. height: math.unit(3e9, "feet")
  41010. },
  41011. {
  41012. name: "Sol-Swallowing",
  41013. height: math.unit(1e11, "feet")
  41014. },
  41015. {
  41016. name: "System Swallower",
  41017. height: math.unit(3e14, "feet")
  41018. },
  41019. {
  41020. name: "Galaxy Gulper",
  41021. height: math.unit(10, "galaxies")
  41022. },
  41023. {
  41024. name: "Light Universal",
  41025. height: math.unit(5, "universes")
  41026. },
  41027. {
  41028. name: "Universe Palm",
  41029. height: math.unit(20, "universes")
  41030. },
  41031. {
  41032. name: "Light Multiversal",
  41033. height: math.unit(5, "multiverses")
  41034. },
  41035. {
  41036. name: "Multiverse Palm",
  41037. height: math.unit(20, "multiverses")
  41038. },
  41039. {
  41040. name: "Inferno Incarnate",
  41041. height: math.unit(1e7, "multiverses")
  41042. },
  41043. ]
  41044. ))
  41045. characterMakers.push(() => makeCharacter(
  41046. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41047. {
  41048. front: {
  41049. height: math.unit(8, "feet"),
  41050. weight: math.unit(1200, "lb"),
  41051. name: "Front",
  41052. image: {
  41053. source: "./media/characters/malithee/front.svg",
  41054. extra: 1675/1640,
  41055. bottom: 162/1837
  41056. }
  41057. },
  41058. },
  41059. [
  41060. {
  41061. name: "Mortal Interaction",
  41062. height: math.unit(8, "feet"),
  41063. default: true
  41064. },
  41065. {
  41066. name: "Large",
  41067. height: math.unit(24, "feet")
  41068. },
  41069. {
  41070. name: "Kaiju",
  41071. height: math.unit(240, "feet")
  41072. },
  41073. {
  41074. name: "Megamacro",
  41075. height: math.unit(8000, "feet")
  41076. },
  41077. {
  41078. name: "Continent Cracker",
  41079. height: math.unit(24e6, "feet")
  41080. },
  41081. {
  41082. name: "Earth-Eclipsing",
  41083. height: math.unit(2.4e8, "feet")
  41084. },
  41085. {
  41086. name: "Sol-Swallowing",
  41087. height: math.unit(8e10, "feet")
  41088. },
  41089. {
  41090. name: "Galaxy Gulper",
  41091. height: math.unit(8, "galaxies")
  41092. },
  41093. {
  41094. name: "Light Universal",
  41095. height: math.unit(4, "universes")
  41096. },
  41097. {
  41098. name: "Universe Atoms",
  41099. height: math.unit(1.829e9, "universes")
  41100. },
  41101. {
  41102. name: "Light Multiversal",
  41103. height: math.unit(4, "multiverses")
  41104. },
  41105. {
  41106. name: "Multiverse Atoms",
  41107. height: math.unit(1.829e9, "multiverses")
  41108. },
  41109. {
  41110. name: "Nigh-Omnipresence",
  41111. height: math.unit(8e261, "multiverses")
  41112. },
  41113. ]
  41114. ))
  41115. characterMakers.push(() => makeCharacter(
  41116. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41117. {
  41118. front: {
  41119. height: math.unit(10, "feet"),
  41120. weight: math.unit(1500, "lb"),
  41121. name: "Front",
  41122. image: {
  41123. source: "./media/characters/miles-thestia/front.svg",
  41124. extra: 1812/1727,
  41125. bottom: 86/1898
  41126. }
  41127. },
  41128. back: {
  41129. height: math.unit(10, "feet"),
  41130. weight: math.unit(1500, "lb"),
  41131. name: "Back",
  41132. image: {
  41133. source: "./media/characters/miles-thestia/back.svg",
  41134. extra: 1799/1690,
  41135. bottom: 47/1846
  41136. }
  41137. },
  41138. frontNsfw: {
  41139. height: math.unit(10, "feet"),
  41140. weight: math.unit(1500, "lb"),
  41141. name: "Front (NSFW)",
  41142. image: {
  41143. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41144. extra: 1812/1727,
  41145. bottom: 86/1898
  41146. }
  41147. },
  41148. },
  41149. [
  41150. {
  41151. name: "Mini-Macro",
  41152. height: math.unit(10, "feet"),
  41153. default: true
  41154. },
  41155. ]
  41156. ))
  41157. characterMakers.push(() => makeCharacter(
  41158. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41159. {
  41160. front: {
  41161. height: math.unit(25, "feet"),
  41162. name: "Front",
  41163. image: {
  41164. source: "./media/characters/titan-s-wulf/front.svg",
  41165. extra: 1560/1484,
  41166. bottom: 76/1636
  41167. }
  41168. },
  41169. },
  41170. [
  41171. {
  41172. name: "Smallest",
  41173. height: math.unit(25, "feet"),
  41174. default: true
  41175. },
  41176. {
  41177. name: "Normal",
  41178. height: math.unit(200, "feet")
  41179. },
  41180. {
  41181. name: "Macro",
  41182. height: math.unit(200000, "feet")
  41183. },
  41184. {
  41185. name: "Multiversal Original",
  41186. height: math.unit(10000, "multiverses")
  41187. },
  41188. ]
  41189. ))
  41190. characterMakers.push(() => makeCharacter(
  41191. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41192. {
  41193. front: {
  41194. height: math.unit(8, "feet"),
  41195. weight: math.unit(553, "lb"),
  41196. name: "Front",
  41197. image: {
  41198. source: "./media/characters/tawendeh/front.svg",
  41199. extra: 2365/2268,
  41200. bottom: 83/2448
  41201. }
  41202. },
  41203. frontClothed: {
  41204. height: math.unit(8, "feet"),
  41205. weight: math.unit(553, "lb"),
  41206. name: "Front (Clothed)",
  41207. image: {
  41208. source: "./media/characters/tawendeh/front-clothed.svg",
  41209. extra: 2365/2268,
  41210. bottom: 83/2448
  41211. }
  41212. },
  41213. back: {
  41214. height: math.unit(8, "feet"),
  41215. weight: math.unit(553, "lb"),
  41216. name: "Back",
  41217. image: {
  41218. source: "./media/characters/tawendeh/back.svg",
  41219. extra: 2397/2294,
  41220. bottom: 42/2439
  41221. }
  41222. },
  41223. },
  41224. [
  41225. {
  41226. name: "Mortal Interaction",
  41227. height: math.unit(8, "feet"),
  41228. default: true
  41229. },
  41230. {
  41231. name: "Giant",
  41232. height: math.unit(80, "feet")
  41233. },
  41234. {
  41235. name: "Macro",
  41236. height: math.unit(800, "feet")
  41237. },
  41238. {
  41239. name: "Megamacro",
  41240. height: math.unit(8000, "feet")
  41241. },
  41242. {
  41243. name: "City-Crushing",
  41244. height: math.unit(24000, "feet")
  41245. },
  41246. {
  41247. name: "Mountain-Mashing",
  41248. height: math.unit(80000, "feet")
  41249. },
  41250. {
  41251. name: "Nation Nemesis",
  41252. height: math.unit(8e6, "feet")
  41253. },
  41254. {
  41255. name: "Continent Cracker",
  41256. height: math.unit(24e6, "feet")
  41257. },
  41258. {
  41259. name: "Earth-Eclipsing",
  41260. height: math.unit(2.4e8, "feet")
  41261. },
  41262. {
  41263. name: "Gas Giant Gulper",
  41264. height: math.unit(2.4e9, "feet")
  41265. },
  41266. {
  41267. name: "Sol-Swallowing",
  41268. height: math.unit(8e10, "feet")
  41269. },
  41270. {
  41271. name: "Galaxy Gulper",
  41272. height: math.unit(8, "galaxies")
  41273. },
  41274. {
  41275. name: "Cosmos Churner",
  41276. height: math.unit(8, "universes")
  41277. },
  41278. {
  41279. name: "Omnipotent Otter",
  41280. height: math.unit(80, "universes")
  41281. },
  41282. ]
  41283. ))
  41284. characterMakers.push(() => makeCharacter(
  41285. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41286. {
  41287. front: {
  41288. height: math.unit(2.6, "meters"),
  41289. weight: math.unit(900, "kg"),
  41290. name: "Front",
  41291. image: {
  41292. source: "./media/characters/neesha/front.svg",
  41293. extra: 1803/1653,
  41294. bottom: 128/1931
  41295. }
  41296. },
  41297. },
  41298. [
  41299. {
  41300. name: "Normal",
  41301. height: math.unit(2.6, "meters"),
  41302. default: true
  41303. },
  41304. {
  41305. name: "Macro",
  41306. height: math.unit(50, "meters")
  41307. },
  41308. ]
  41309. ))
  41310. characterMakers.push(() => makeCharacter(
  41311. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41312. {
  41313. front: {
  41314. height: math.unit(5, "feet"),
  41315. weight: math.unit(185, "lb"),
  41316. name: "Front",
  41317. image: {
  41318. source: "./media/characters/kyera/front.svg",
  41319. extra: 1875/1790,
  41320. bottom: 96/1971
  41321. }
  41322. },
  41323. },
  41324. [
  41325. {
  41326. name: "Normal",
  41327. height: math.unit(5, "feet"),
  41328. default: true
  41329. },
  41330. ]
  41331. ))
  41332. characterMakers.push(() => makeCharacter(
  41333. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41334. {
  41335. front: {
  41336. height: math.unit(7 + 6/12, "feet"),
  41337. weight: math.unit(540, "lb"),
  41338. name: "Front",
  41339. image: {
  41340. source: "./media/characters/yuko/front.svg",
  41341. extra: 1282/1222,
  41342. bottom: 101/1383
  41343. }
  41344. },
  41345. frontClothed: {
  41346. height: math.unit(7 + 6/12, "feet"),
  41347. weight: math.unit(540, "lb"),
  41348. name: "Front (Clothed)",
  41349. image: {
  41350. source: "./media/characters/yuko/front-clothed.svg",
  41351. extra: 1282/1222,
  41352. bottom: 101/1383
  41353. }
  41354. },
  41355. },
  41356. [
  41357. {
  41358. name: "Normal",
  41359. height: math.unit(7 + 6/12, "feet"),
  41360. default: true
  41361. },
  41362. {
  41363. name: "Macro",
  41364. height: math.unit(26 + 9/12, "feet")
  41365. },
  41366. {
  41367. name: "Megamacro",
  41368. height: math.unit(300, "feet")
  41369. },
  41370. {
  41371. name: "Gigamacro",
  41372. height: math.unit(5000, "feet")
  41373. },
  41374. {
  41375. name: "Planetary",
  41376. height: math.unit(10000, "miles")
  41377. },
  41378. ]
  41379. ))
  41380. characterMakers.push(() => makeCharacter(
  41381. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41382. {
  41383. front: {
  41384. height: math.unit(8 + 2/12, "feet"),
  41385. weight: math.unit(600, "lb"),
  41386. name: "Front",
  41387. image: {
  41388. source: "./media/characters/deam-nitrel/front.svg",
  41389. extra: 1308/1234,
  41390. bottom: 125/1433
  41391. }
  41392. },
  41393. },
  41394. [
  41395. {
  41396. name: "Normal",
  41397. height: math.unit(8 + 2/12, "feet"),
  41398. default: true
  41399. },
  41400. ]
  41401. ))
  41402. characterMakers.push(() => makeCharacter(
  41403. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41404. {
  41405. front: {
  41406. height: math.unit(6.1, "feet"),
  41407. weight: math.unit(180, "lb"),
  41408. name: "Front",
  41409. image: {
  41410. source: "./media/characters/skyress/front.svg",
  41411. extra: 1045/915,
  41412. bottom: 28/1073
  41413. }
  41414. },
  41415. maw: {
  41416. height: math.unit(1, "feet"),
  41417. name: "Maw",
  41418. image: {
  41419. source: "./media/characters/skyress/maw.svg"
  41420. }
  41421. },
  41422. },
  41423. [
  41424. {
  41425. name: "Normal",
  41426. height: math.unit(6.1, "feet"),
  41427. default: true
  41428. },
  41429. {
  41430. name: "Macro",
  41431. height: math.unit(200, "feet")
  41432. },
  41433. ]
  41434. ))
  41435. characterMakers.push(() => makeCharacter(
  41436. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41437. {
  41438. front: {
  41439. height: math.unit(4 + 2/12, "feet"),
  41440. weight: math.unit(40, "kg"),
  41441. name: "Front",
  41442. image: {
  41443. source: "./media/characters/amethyst-jones/front.svg",
  41444. extra: 1220/1150,
  41445. bottom: 101/1321
  41446. }
  41447. },
  41448. },
  41449. [
  41450. {
  41451. name: "Normal",
  41452. height: math.unit(4 + 2/12, "feet"),
  41453. default: true
  41454. },
  41455. ]
  41456. ))
  41457. characterMakers.push(() => makeCharacter(
  41458. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41459. {
  41460. front: {
  41461. height: math.unit(1.7, "m"),
  41462. weight: math.unit(135, "lb"),
  41463. name: "Front",
  41464. image: {
  41465. source: "./media/characters/jade/front.svg",
  41466. extra: 1818/1767,
  41467. bottom: 32/1850
  41468. }
  41469. },
  41470. back: {
  41471. height: math.unit(1.7, "m"),
  41472. weight: math.unit(135, "lb"),
  41473. name: "Back",
  41474. image: {
  41475. source: "./media/characters/jade/back.svg",
  41476. extra: 1869/1809,
  41477. bottom: 35/1904
  41478. }
  41479. },
  41480. hand: {
  41481. height: math.unit(0.24, "m"),
  41482. name: "Hand",
  41483. image: {
  41484. source: "./media/characters/jade/hand.svg"
  41485. }
  41486. },
  41487. foot: {
  41488. height: math.unit(0.263, "m"),
  41489. name: "Foot",
  41490. image: {
  41491. source: "./media/characters/jade/foot.svg"
  41492. }
  41493. },
  41494. dick: {
  41495. height: math.unit(0.47, "m"),
  41496. name: "Dick",
  41497. image: {
  41498. source: "./media/characters/jade/dick.svg"
  41499. }
  41500. },
  41501. },
  41502. [
  41503. {
  41504. name: "Micro",
  41505. height: math.unit(22, "cm")
  41506. },
  41507. {
  41508. name: "Normal",
  41509. height: math.unit(1.7, "m"),
  41510. default: true
  41511. },
  41512. {
  41513. name: "Macro",
  41514. height: math.unit(152, "m")
  41515. },
  41516. ]
  41517. ))
  41518. characterMakers.push(() => makeCharacter(
  41519. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41520. {
  41521. front: {
  41522. height: math.unit(100, "miles"),
  41523. weight: math.unit(20000, "tons"),
  41524. name: "Front",
  41525. image: {
  41526. source: "./media/characters/cookie/front.svg",
  41527. extra: 1125/1070,
  41528. bottom: 30/1155
  41529. }
  41530. },
  41531. },
  41532. [
  41533. {
  41534. name: "Big",
  41535. height: math.unit(50, "feet")
  41536. },
  41537. {
  41538. name: "Macro",
  41539. height: math.unit(100, "miles"),
  41540. default: true
  41541. },
  41542. {
  41543. name: "Megamacro",
  41544. height: math.unit(90000, "miles")
  41545. },
  41546. ]
  41547. ))
  41548. characterMakers.push(() => makeCharacter(
  41549. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41550. {
  41551. front: {
  41552. height: math.unit(6, "feet"),
  41553. weight: math.unit(145, "lb"),
  41554. name: "Front",
  41555. image: {
  41556. source: "./media/characters/farzian/front.svg",
  41557. extra: 1902/1693,
  41558. bottom: 108/2010
  41559. }
  41560. },
  41561. },
  41562. [
  41563. {
  41564. name: "Macro",
  41565. height: math.unit(500, "feet"),
  41566. default: true
  41567. },
  41568. ]
  41569. ))
  41570. characterMakers.push(() => makeCharacter(
  41571. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41572. {
  41573. front: {
  41574. height: math.unit(3 + 6/12, "feet"),
  41575. weight: math.unit(50, "lb"),
  41576. name: "Front",
  41577. image: {
  41578. source: "./media/characters/kimberly-tilson/front.svg",
  41579. extra: 1400/1322,
  41580. bottom: 36/1436
  41581. }
  41582. },
  41583. back: {
  41584. height: math.unit(3 + 6/12, "feet"),
  41585. weight: math.unit(50, "lb"),
  41586. name: "Back",
  41587. image: {
  41588. source: "./media/characters/kimberly-tilson/back.svg",
  41589. extra: 1370/1307,
  41590. bottom: 20/1390
  41591. }
  41592. },
  41593. },
  41594. [
  41595. {
  41596. name: "Normal",
  41597. height: math.unit(3 + 6/12, "feet"),
  41598. default: true
  41599. },
  41600. ]
  41601. ))
  41602. characterMakers.push(() => makeCharacter(
  41603. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41604. {
  41605. front: {
  41606. height: math.unit(1148, "feet"),
  41607. weight: math.unit(34057, "lb"),
  41608. name: "Front",
  41609. image: {
  41610. source: "./media/characters/harthos/front.svg",
  41611. extra: 1391/1339,
  41612. bottom: 13/1404
  41613. }
  41614. },
  41615. },
  41616. [
  41617. {
  41618. name: "Macro",
  41619. height: math.unit(1148, "feet"),
  41620. default: true
  41621. },
  41622. ]
  41623. ))
  41624. characterMakers.push(() => makeCharacter(
  41625. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41626. {
  41627. front: {
  41628. height: math.unit(15, "feet"),
  41629. name: "Front",
  41630. image: {
  41631. source: "./media/characters/hypatia/front.svg",
  41632. extra: 1653/1591,
  41633. bottom: 79/1732
  41634. }
  41635. },
  41636. },
  41637. [
  41638. {
  41639. name: "Normal",
  41640. height: math.unit(15, "feet")
  41641. },
  41642. {
  41643. name: "Small",
  41644. height: math.unit(300, "feet")
  41645. },
  41646. {
  41647. name: "Macro",
  41648. height: math.unit(2500, "feet"),
  41649. default: true
  41650. },
  41651. {
  41652. name: "Mega Macro",
  41653. height: math.unit(1500, "miles")
  41654. },
  41655. {
  41656. name: "Giga Macro",
  41657. height: math.unit(1.5e6, "miles")
  41658. },
  41659. ]
  41660. ))
  41661. characterMakers.push(() => makeCharacter(
  41662. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41663. {
  41664. front: {
  41665. height: math.unit(6, "feet"),
  41666. weight: math.unit(200, "lb"),
  41667. name: "Front",
  41668. image: {
  41669. source: "./media/characters/wulver/front.svg",
  41670. extra: 1724/1632,
  41671. bottom: 130/1854
  41672. }
  41673. },
  41674. frontNsfw: {
  41675. height: math.unit(6, "feet"),
  41676. weight: math.unit(200, "lb"),
  41677. name: "Front (NSFW)",
  41678. image: {
  41679. source: "./media/characters/wulver/front-nsfw.svg",
  41680. extra: 1724/1632,
  41681. bottom: 130/1854
  41682. }
  41683. },
  41684. },
  41685. [
  41686. {
  41687. name: "Human-Sized",
  41688. height: math.unit(6, "feet")
  41689. },
  41690. {
  41691. name: "Normal",
  41692. height: math.unit(4, "meters"),
  41693. default: true
  41694. },
  41695. {
  41696. name: "Large",
  41697. height: math.unit(6, "m")
  41698. },
  41699. ]
  41700. ))
  41701. characterMakers.push(() => makeCharacter(
  41702. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41703. {
  41704. front: {
  41705. height: math.unit(7, "feet"),
  41706. name: "Front",
  41707. image: {
  41708. source: "./media/characters/maru/front.svg",
  41709. extra: 1595/1570,
  41710. bottom: 0/1595
  41711. }
  41712. },
  41713. },
  41714. [
  41715. {
  41716. name: "Normal",
  41717. height: math.unit(7, "feet"),
  41718. default: true
  41719. },
  41720. {
  41721. name: "Macro",
  41722. height: math.unit(700, "feet")
  41723. },
  41724. {
  41725. name: "Mega Macro",
  41726. height: math.unit(25, "miles")
  41727. },
  41728. ]
  41729. ))
  41730. characterMakers.push(() => makeCharacter(
  41731. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41732. {
  41733. front: {
  41734. height: math.unit(6, "feet"),
  41735. weight: math.unit(170, "lb"),
  41736. name: "Front",
  41737. image: {
  41738. source: "./media/characters/xenon/front.svg",
  41739. extra: 1376/1305,
  41740. bottom: 56/1432
  41741. }
  41742. },
  41743. back: {
  41744. height: math.unit(6, "feet"),
  41745. weight: math.unit(170, "lb"),
  41746. name: "Back",
  41747. image: {
  41748. source: "./media/characters/xenon/back.svg",
  41749. extra: 1328/1259,
  41750. bottom: 95/1423
  41751. }
  41752. },
  41753. maw: {
  41754. height: math.unit(0.52, "feet"),
  41755. name: "Maw",
  41756. image: {
  41757. source: "./media/characters/xenon/maw.svg"
  41758. }
  41759. },
  41760. handLeft: {
  41761. height: math.unit(0.82 * 169 / 153, "feet"),
  41762. name: "Hand (Left)",
  41763. image: {
  41764. source: "./media/characters/xenon/hand-left.svg"
  41765. }
  41766. },
  41767. handRight: {
  41768. height: math.unit(0.82, "feet"),
  41769. name: "Hand (Right)",
  41770. image: {
  41771. source: "./media/characters/xenon/hand-right.svg"
  41772. }
  41773. },
  41774. footLeft: {
  41775. height: math.unit(1.13, "feet"),
  41776. name: "Foot (Left)",
  41777. image: {
  41778. source: "./media/characters/xenon/foot-left.svg"
  41779. }
  41780. },
  41781. footRight: {
  41782. height: math.unit(1.13 * 194 / 196, "feet"),
  41783. name: "Foot (Right)",
  41784. image: {
  41785. source: "./media/characters/xenon/foot-right.svg"
  41786. }
  41787. },
  41788. },
  41789. [
  41790. {
  41791. name: "Micro",
  41792. height: math.unit(0.8, "inches")
  41793. },
  41794. {
  41795. name: "Normal",
  41796. height: math.unit(6, "feet")
  41797. },
  41798. {
  41799. name: "Macro",
  41800. height: math.unit(50, "feet"),
  41801. default: true
  41802. },
  41803. {
  41804. name: "Macro+",
  41805. height: math.unit(250, "feet")
  41806. },
  41807. {
  41808. name: "Megamacro",
  41809. height: math.unit(1500, "feet")
  41810. },
  41811. ]
  41812. ))
  41813. characterMakers.push(() => makeCharacter(
  41814. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41815. {
  41816. front: {
  41817. height: math.unit(7 + 5/12, "feet"),
  41818. name: "Front",
  41819. image: {
  41820. source: "./media/characters/zane/front.svg",
  41821. extra: 1260/1203,
  41822. bottom: 94/1354
  41823. }
  41824. },
  41825. back: {
  41826. height: math.unit(5.05, "feet"),
  41827. name: "Back",
  41828. image: {
  41829. source: "./media/characters/zane/back.svg",
  41830. extra: 893/829,
  41831. bottom: 30/923
  41832. }
  41833. },
  41834. werewolf: {
  41835. height: math.unit(11, "feet"),
  41836. name: "Werewolf",
  41837. image: {
  41838. source: "./media/characters/zane/werewolf.svg",
  41839. extra: 1383/1323,
  41840. bottom: 89/1472
  41841. }
  41842. },
  41843. foot: {
  41844. height: math.unit(1.46, "feet"),
  41845. name: "Foot",
  41846. image: {
  41847. source: "./media/characters/zane/foot.svg"
  41848. }
  41849. },
  41850. footFront: {
  41851. height: math.unit(0.784, "feet"),
  41852. name: "Foot (Front)",
  41853. image: {
  41854. source: "./media/characters/zane/foot-front.svg"
  41855. }
  41856. },
  41857. dick: {
  41858. height: math.unit(1.95, "feet"),
  41859. name: "Dick",
  41860. image: {
  41861. source: "./media/characters/zane/dick.svg"
  41862. }
  41863. },
  41864. dickWerewolf: {
  41865. height: math.unit(3.77, "feet"),
  41866. name: "Dick (Werewolf)",
  41867. image: {
  41868. source: "./media/characters/zane/dick.svg"
  41869. }
  41870. },
  41871. },
  41872. [
  41873. {
  41874. name: "Normal",
  41875. height: math.unit(7 + 5/12, "feet"),
  41876. default: true
  41877. },
  41878. ]
  41879. ))
  41880. characterMakers.push(() => makeCharacter(
  41881. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41882. {
  41883. front: {
  41884. height: math.unit(6 + 2/12, "feet"),
  41885. weight: math.unit(284, "lb"),
  41886. name: "Front",
  41887. image: {
  41888. source: "./media/characters/benni-desparque/front.svg",
  41889. extra: 1353/1126,
  41890. bottom: 69/1422
  41891. }
  41892. },
  41893. },
  41894. [
  41895. {
  41896. name: "Civilian",
  41897. height: math.unit(6 + 2/12, "feet")
  41898. },
  41899. {
  41900. name: "Normal",
  41901. height: math.unit(98, "feet"),
  41902. default: true
  41903. },
  41904. {
  41905. name: "Kaiju Fighter",
  41906. height: math.unit(268, "feet")
  41907. },
  41908. ]
  41909. ))
  41910. characterMakers.push(() => makeCharacter(
  41911. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41912. {
  41913. front: {
  41914. height: math.unit(5, "feet"),
  41915. weight: math.unit(105, "lb"),
  41916. name: "Front",
  41917. image: {
  41918. source: "./media/characters/maxine/front.svg",
  41919. extra: 1386/1250,
  41920. bottom: 71/1457
  41921. }
  41922. },
  41923. },
  41924. [
  41925. {
  41926. name: "Normal",
  41927. height: math.unit(5, "feet"),
  41928. default: true
  41929. },
  41930. ]
  41931. ))
  41932. characterMakers.push(() => makeCharacter(
  41933. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41934. {
  41935. front: {
  41936. height: math.unit(11 + 7/12, "feet"),
  41937. weight: math.unit(9576, "lb"),
  41938. name: "Front",
  41939. image: {
  41940. source: "./media/characters/scaly/front.svg",
  41941. extra: 888/867,
  41942. bottom: 36/924
  41943. }
  41944. },
  41945. },
  41946. [
  41947. {
  41948. name: "Normal",
  41949. height: math.unit(11 + 7/12, "feet"),
  41950. default: true
  41951. },
  41952. ]
  41953. ))
  41954. characterMakers.push(() => makeCharacter(
  41955. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41956. {
  41957. front: {
  41958. height: math.unit(6 + 3/12, "feet"),
  41959. name: "Front",
  41960. image: {
  41961. source: "./media/characters/saelria/front.svg",
  41962. extra: 1243/1138,
  41963. bottom: 46/1289
  41964. }
  41965. },
  41966. },
  41967. [
  41968. {
  41969. name: "Micro",
  41970. height: math.unit(6, "inches"),
  41971. },
  41972. {
  41973. name: "Normal",
  41974. height: math.unit(6 + 3/12, "feet"),
  41975. default: true
  41976. },
  41977. {
  41978. name: "Macro",
  41979. height: math.unit(25, "feet")
  41980. },
  41981. ]
  41982. ))
  41983. characterMakers.push(() => makeCharacter(
  41984. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41985. {
  41986. front: {
  41987. height: math.unit(80, "meters"),
  41988. weight: math.unit(7000, "tonnes"),
  41989. name: "Front",
  41990. image: {
  41991. source: "./media/characters/tef/front.svg",
  41992. extra: 2036/1991,
  41993. bottom: 54/2090
  41994. }
  41995. },
  41996. back: {
  41997. height: math.unit(80, "meters"),
  41998. weight: math.unit(7000, "tonnes"),
  41999. name: "Back",
  42000. image: {
  42001. source: "./media/characters/tef/back.svg",
  42002. extra: 2036/1991,
  42003. bottom: 54/2090
  42004. }
  42005. },
  42006. },
  42007. [
  42008. {
  42009. name: "Macro",
  42010. height: math.unit(80, "meters"),
  42011. default: true
  42012. },
  42013. ]
  42014. ))
  42015. characterMakers.push(() => makeCharacter(
  42016. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42017. {
  42018. front: {
  42019. height: math.unit(13, "feet"),
  42020. weight: math.unit(6, "tons"),
  42021. name: "Front",
  42022. image: {
  42023. source: "./media/characters/rover/front.svg",
  42024. extra: 1233/1156,
  42025. bottom: 50/1283
  42026. }
  42027. },
  42028. back: {
  42029. height: math.unit(13, "feet"),
  42030. weight: math.unit(6, "tons"),
  42031. name: "Back",
  42032. image: {
  42033. source: "./media/characters/rover/back.svg",
  42034. extra: 1327/1258,
  42035. bottom: 39/1366
  42036. }
  42037. },
  42038. },
  42039. [
  42040. {
  42041. name: "Normal",
  42042. height: math.unit(13, "feet"),
  42043. default: true
  42044. },
  42045. {
  42046. name: "Macro",
  42047. height: math.unit(1300, "feet")
  42048. },
  42049. {
  42050. name: "Megamacro",
  42051. height: math.unit(1300, "miles")
  42052. },
  42053. {
  42054. name: "Gigamacro",
  42055. height: math.unit(1300000, "miles")
  42056. },
  42057. ]
  42058. ))
  42059. characterMakers.push(() => makeCharacter(
  42060. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42061. {
  42062. front: {
  42063. height: math.unit(6, "feet"),
  42064. weight: math.unit(150, "lb"),
  42065. name: "Front",
  42066. image: {
  42067. source: "./media/characters/ariz/front.svg",
  42068. extra: 1401/1346,
  42069. bottom: 5/1406
  42070. }
  42071. },
  42072. },
  42073. [
  42074. {
  42075. name: "Normal",
  42076. height: math.unit(10, "feet"),
  42077. default: true
  42078. },
  42079. ]
  42080. ))
  42081. characterMakers.push(() => makeCharacter(
  42082. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42083. {
  42084. front: {
  42085. height: math.unit(6, "feet"),
  42086. weight: math.unit(140, "lb"),
  42087. name: "Front",
  42088. image: {
  42089. source: "./media/characters/sigrun/front.svg",
  42090. extra: 1418/1359,
  42091. bottom: 27/1445
  42092. }
  42093. },
  42094. },
  42095. [
  42096. {
  42097. name: "Macro",
  42098. height: math.unit(35, "feet"),
  42099. default: true
  42100. },
  42101. ]
  42102. ))
  42103. characterMakers.push(() => makeCharacter(
  42104. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42105. {
  42106. front: {
  42107. height: math.unit(6, "feet"),
  42108. weight: math.unit(150, "lb"),
  42109. name: "Front",
  42110. image: {
  42111. source: "./media/characters/numin/front.svg",
  42112. extra: 1433/1388,
  42113. bottom: 12/1445
  42114. }
  42115. },
  42116. },
  42117. [
  42118. {
  42119. name: "Macro",
  42120. height: math.unit(21.5, "km"),
  42121. default: true
  42122. },
  42123. ]
  42124. ))
  42125. characterMakers.push(() => makeCharacter(
  42126. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42127. {
  42128. front: {
  42129. height: math.unit(6, "feet"),
  42130. weight: math.unit(463, "lb"),
  42131. name: "Front",
  42132. image: {
  42133. source: "./media/characters/melwa/front.svg",
  42134. extra: 1307/1248,
  42135. bottom: 93/1400
  42136. }
  42137. },
  42138. },
  42139. [
  42140. {
  42141. name: "Macro",
  42142. height: math.unit(50, "meters"),
  42143. default: true
  42144. },
  42145. ]
  42146. ))
  42147. characterMakers.push(() => makeCharacter(
  42148. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42149. {
  42150. front: {
  42151. height: math.unit(325, "feet"),
  42152. name: "Front",
  42153. image: {
  42154. source: "./media/characters/zorkaiju/front.svg",
  42155. extra: 1955/1814,
  42156. bottom: 40/1995
  42157. }
  42158. },
  42159. frontExtended: {
  42160. height: math.unit(325, "feet"),
  42161. name: "Front (Extended)",
  42162. image: {
  42163. source: "./media/characters/zorkaiju/front-extended.svg",
  42164. extra: 1955/1814,
  42165. bottom: 40/1995
  42166. }
  42167. },
  42168. side: {
  42169. height: math.unit(325, "feet"),
  42170. name: "Side",
  42171. image: {
  42172. source: "./media/characters/zorkaiju/side.svg",
  42173. extra: 1495/1396,
  42174. bottom: 17/1512
  42175. }
  42176. },
  42177. sideExtended: {
  42178. height: math.unit(325, "feet"),
  42179. name: "Side (Extended)",
  42180. image: {
  42181. source: "./media/characters/zorkaiju/side-extended.svg",
  42182. extra: 1495/1396,
  42183. bottom: 17/1512
  42184. }
  42185. },
  42186. back: {
  42187. height: math.unit(325, "feet"),
  42188. name: "Back",
  42189. image: {
  42190. source: "./media/characters/zorkaiju/back.svg",
  42191. extra: 1959/1821,
  42192. bottom: 31/1990
  42193. }
  42194. },
  42195. backExtended: {
  42196. height: math.unit(325, "feet"),
  42197. name: "Back (Extended)",
  42198. image: {
  42199. source: "./media/characters/zorkaiju/back-extended.svg",
  42200. extra: 1959/1821,
  42201. bottom: 31/1990
  42202. }
  42203. },
  42204. hand: {
  42205. height: math.unit(58.4, "feet"),
  42206. name: "Hand",
  42207. image: {
  42208. source: "./media/characters/zorkaiju/hand.svg"
  42209. }
  42210. },
  42211. handExtended: {
  42212. height: math.unit(61.4, "feet"),
  42213. name: "Hand (Extended)",
  42214. image: {
  42215. source: "./media/characters/zorkaiju/hand-extended.svg"
  42216. }
  42217. },
  42218. foot: {
  42219. height: math.unit(95, "feet"),
  42220. name: "Foot",
  42221. image: {
  42222. source: "./media/characters/zorkaiju/foot.svg"
  42223. }
  42224. },
  42225. leftArm: {
  42226. height: math.unit(59, "feet"),
  42227. name: "Left Arm",
  42228. image: {
  42229. source: "./media/characters/zorkaiju/left-arm.svg"
  42230. }
  42231. },
  42232. rightArm: {
  42233. height: math.unit(59, "feet"),
  42234. name: "Right Arm",
  42235. image: {
  42236. source: "./media/characters/zorkaiju/right-arm.svg"
  42237. }
  42238. },
  42239. leftArmExtended: {
  42240. height: math.unit(59 * 1.033546, "feet"),
  42241. name: "Left Arm (Extended)",
  42242. image: {
  42243. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42244. }
  42245. },
  42246. rightArmExtended: {
  42247. height: math.unit(59 * 1.0496, "feet"),
  42248. name: "Right Arm (Extended)",
  42249. image: {
  42250. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42251. }
  42252. },
  42253. tail: {
  42254. height: math.unit(104, "feet"),
  42255. name: "Tail",
  42256. image: {
  42257. source: "./media/characters/zorkaiju/tail.svg"
  42258. }
  42259. },
  42260. tailExtended: {
  42261. height: math.unit(104, "feet"),
  42262. name: "Tail (Extended)",
  42263. image: {
  42264. source: "./media/characters/zorkaiju/tail-extended.svg"
  42265. }
  42266. },
  42267. tailBottom: {
  42268. height: math.unit(104, "feet"),
  42269. name: "Tail Bottom",
  42270. image: {
  42271. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42272. }
  42273. },
  42274. crystal: {
  42275. height: math.unit(27.54, "feet"),
  42276. name: "Crystal",
  42277. image: {
  42278. source: "./media/characters/zorkaiju/crystal.svg"
  42279. }
  42280. },
  42281. },
  42282. [
  42283. {
  42284. name: "Kaiju",
  42285. height: math.unit(325, "feet"),
  42286. default: true
  42287. },
  42288. ]
  42289. ))
  42290. characterMakers.push(() => makeCharacter(
  42291. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42292. {
  42293. front: {
  42294. height: math.unit(6 + 1/12, "feet"),
  42295. weight: math.unit(115, "lb"),
  42296. name: "Front",
  42297. image: {
  42298. source: "./media/characters/bailey-belfry/front.svg",
  42299. extra: 1240/1121,
  42300. bottom: 101/1341
  42301. }
  42302. },
  42303. },
  42304. [
  42305. {
  42306. name: "Normal",
  42307. height: math.unit(6 + 1/12, "feet"),
  42308. default: true
  42309. },
  42310. ]
  42311. ))
  42312. characterMakers.push(() => makeCharacter(
  42313. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42314. {
  42315. side: {
  42316. height: math.unit(4, "meters"),
  42317. weight: math.unit(250, "kg"),
  42318. name: "Side",
  42319. image: {
  42320. source: "./media/characters/blacky/side.svg",
  42321. extra: 1027/919,
  42322. bottom: 43/1070
  42323. }
  42324. },
  42325. maw: {
  42326. height: math.unit(1, "meters"),
  42327. name: "Maw",
  42328. image: {
  42329. source: "./media/characters/blacky/maw.svg"
  42330. }
  42331. },
  42332. paw: {
  42333. height: math.unit(1, "meters"),
  42334. name: "Paw",
  42335. image: {
  42336. source: "./media/characters/blacky/paw.svg"
  42337. }
  42338. },
  42339. },
  42340. [
  42341. {
  42342. name: "Normal",
  42343. height: math.unit(4, "meters"),
  42344. default: true
  42345. },
  42346. ]
  42347. ))
  42348. characterMakers.push(() => makeCharacter(
  42349. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42350. {
  42351. front: {
  42352. height: math.unit(170, "cm"),
  42353. weight: math.unit(66, "kg"),
  42354. name: "Front",
  42355. image: {
  42356. source: "./media/characters/thux-ei/front.svg",
  42357. extra: 1109/1011,
  42358. bottom: 8/1117
  42359. }
  42360. },
  42361. },
  42362. [
  42363. {
  42364. name: "Normal",
  42365. height: math.unit(170, "cm"),
  42366. default: true
  42367. },
  42368. ]
  42369. ))
  42370. characterMakers.push(() => makeCharacter(
  42371. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42372. {
  42373. front: {
  42374. height: math.unit(5, "feet"),
  42375. weight: math.unit(120, "lb"),
  42376. name: "Front",
  42377. image: {
  42378. source: "./media/characters/roxanne-voltaire/front.svg",
  42379. extra: 1901/1779,
  42380. bottom: 53/1954
  42381. }
  42382. },
  42383. },
  42384. [
  42385. {
  42386. name: "Normal",
  42387. height: math.unit(5, "feet"),
  42388. default: true
  42389. },
  42390. {
  42391. name: "Giant",
  42392. height: math.unit(50, "feet")
  42393. },
  42394. {
  42395. name: "Titan",
  42396. height: math.unit(500, "feet")
  42397. },
  42398. {
  42399. name: "Macro",
  42400. height: math.unit(5000, "feet")
  42401. },
  42402. {
  42403. name: "Megamacro",
  42404. height: math.unit(50000, "feet")
  42405. },
  42406. {
  42407. name: "Gigamacro",
  42408. height: math.unit(500000, "feet")
  42409. },
  42410. {
  42411. name: "Teramacro",
  42412. height: math.unit(5e6, "feet")
  42413. },
  42414. ]
  42415. ))
  42416. characterMakers.push(() => makeCharacter(
  42417. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42418. {
  42419. front: {
  42420. height: math.unit(6 + 2/12, "feet"),
  42421. name: "Front",
  42422. image: {
  42423. source: "./media/characters/squeaks/front.svg",
  42424. extra: 1823/1768,
  42425. bottom: 138/1961
  42426. }
  42427. },
  42428. },
  42429. [
  42430. {
  42431. name: "Micro",
  42432. height: math.unit(0.5, "inches")
  42433. },
  42434. {
  42435. name: "Normal",
  42436. height: math.unit(6 + 2/12, "feet"),
  42437. default: true
  42438. },
  42439. {
  42440. name: "Macro",
  42441. height: math.unit(600, "feet")
  42442. },
  42443. ]
  42444. ))
  42445. characterMakers.push(() => makeCharacter(
  42446. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42447. {
  42448. front: {
  42449. height: math.unit(1.72, "meters"),
  42450. name: "Front",
  42451. image: {
  42452. source: "./media/characters/archinger/front.svg",
  42453. extra: 1861/1675,
  42454. bottom: 125/1986
  42455. }
  42456. },
  42457. back: {
  42458. height: math.unit(1.72, "meters"),
  42459. name: "Back",
  42460. image: {
  42461. source: "./media/characters/archinger/back.svg",
  42462. extra: 1844/1701,
  42463. bottom: 104/1948
  42464. }
  42465. },
  42466. cock: {
  42467. height: math.unit(0.59, "feet"),
  42468. name: "Cock",
  42469. image: {
  42470. source: "./media/characters/archinger/cock.svg"
  42471. }
  42472. },
  42473. },
  42474. [
  42475. {
  42476. name: "Normal",
  42477. height: math.unit(1.72, "meters"),
  42478. default: true
  42479. },
  42480. {
  42481. name: "Macro",
  42482. height: math.unit(84, "meters")
  42483. },
  42484. {
  42485. name: "Macro+",
  42486. height: math.unit(112, "meters")
  42487. },
  42488. {
  42489. name: "Macro++",
  42490. height: math.unit(960, "meters")
  42491. },
  42492. {
  42493. name: "Macro+++",
  42494. height: math.unit(4, "km")
  42495. },
  42496. {
  42497. name: "Macro++++",
  42498. height: math.unit(48, "km")
  42499. },
  42500. {
  42501. name: "Macro+++++",
  42502. height: math.unit(4500, "km")
  42503. },
  42504. ]
  42505. ))
  42506. characterMakers.push(() => makeCharacter(
  42507. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42508. {
  42509. front: {
  42510. height: math.unit(5 + 5/12, "feet"),
  42511. name: "Front",
  42512. image: {
  42513. source: "./media/characters/alsnapz/front.svg",
  42514. extra: 1157/1065,
  42515. bottom: 42/1199
  42516. }
  42517. },
  42518. },
  42519. [
  42520. {
  42521. name: "Normal",
  42522. height: math.unit(5 + 5/12, "feet"),
  42523. default: true
  42524. },
  42525. ]
  42526. ))
  42527. characterMakers.push(() => makeCharacter(
  42528. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42529. {
  42530. side: {
  42531. height: math.unit(3.2, "earths"),
  42532. name: "Side",
  42533. image: {
  42534. source: "./media/characters/mag/side.svg",
  42535. extra: 1331/1008,
  42536. bottom: 52/1383
  42537. }
  42538. },
  42539. wing: {
  42540. height: math.unit(1.94, "earths"),
  42541. name: "Wing",
  42542. image: {
  42543. source: "./media/characters/mag/wing.svg"
  42544. }
  42545. },
  42546. dick: {
  42547. height: math.unit(1.8, "earths"),
  42548. name: "Dick",
  42549. image: {
  42550. source: "./media/characters/mag/dick.svg"
  42551. }
  42552. },
  42553. ass: {
  42554. height: math.unit(1.33, "earths"),
  42555. name: "Ass",
  42556. image: {
  42557. source: "./media/characters/mag/ass.svg"
  42558. }
  42559. },
  42560. head: {
  42561. height: math.unit(1.1, "earths"),
  42562. name: "Head",
  42563. image: {
  42564. source: "./media/characters/mag/head.svg"
  42565. }
  42566. },
  42567. maw: {
  42568. height: math.unit(1.62, "earths"),
  42569. name: "Maw",
  42570. image: {
  42571. source: "./media/characters/mag/maw.svg"
  42572. }
  42573. },
  42574. },
  42575. [
  42576. {
  42577. name: "Small",
  42578. height: math.unit(162, "feet")
  42579. },
  42580. {
  42581. name: "Normal",
  42582. height: math.unit(3.2, "earths"),
  42583. default: true
  42584. },
  42585. ]
  42586. ))
  42587. characterMakers.push(() => makeCharacter(
  42588. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42589. {
  42590. front: {
  42591. height: math.unit(512, "feet"),
  42592. weight: math.unit(63509, "tonnes"),
  42593. name: "Front",
  42594. image: {
  42595. source: "./media/characters/vorrel-harroc/front.svg",
  42596. extra: 1075/1063,
  42597. bottom: 62/1137
  42598. }
  42599. },
  42600. },
  42601. [
  42602. {
  42603. name: "Normal",
  42604. height: math.unit(10, "feet")
  42605. },
  42606. {
  42607. name: "Macro",
  42608. height: math.unit(512, "feet"),
  42609. default: true
  42610. },
  42611. {
  42612. name: "Megamacro",
  42613. height: math.unit(256, "miles")
  42614. },
  42615. {
  42616. name: "Gigamacro",
  42617. height: math.unit(4096, "miles")
  42618. },
  42619. ]
  42620. ))
  42621. characterMakers.push(() => makeCharacter(
  42622. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42623. {
  42624. side: {
  42625. height: math.unit(50, "feet"),
  42626. name: "Side",
  42627. image: {
  42628. source: "./media/characters/froimar/side.svg",
  42629. extra: 855/638,
  42630. bottom: 99/954
  42631. }
  42632. },
  42633. },
  42634. [
  42635. {
  42636. name: "Macro",
  42637. height: math.unit(50, "feet"),
  42638. default: true
  42639. },
  42640. ]
  42641. ))
  42642. characterMakers.push(() => makeCharacter(
  42643. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42644. {
  42645. front: {
  42646. height: math.unit(210, "miles"),
  42647. name: "Front",
  42648. image: {
  42649. source: "./media/characters/timothy/front.svg",
  42650. extra: 1007/943,
  42651. bottom: 62/1069
  42652. }
  42653. },
  42654. frontSkirt: {
  42655. height: math.unit(210, "miles"),
  42656. name: "Front (Skirt)",
  42657. image: {
  42658. source: "./media/characters/timothy/front-skirt.svg",
  42659. extra: 1007/943,
  42660. bottom: 62/1069
  42661. }
  42662. },
  42663. frontCoat: {
  42664. height: math.unit(210, "miles"),
  42665. name: "Front (Coat)",
  42666. image: {
  42667. source: "./media/characters/timothy/front-coat.svg",
  42668. extra: 1007/943,
  42669. bottom: 62/1069
  42670. }
  42671. },
  42672. },
  42673. [
  42674. {
  42675. name: "Macro",
  42676. height: math.unit(210, "miles"),
  42677. default: true
  42678. },
  42679. {
  42680. name: "Megamacro",
  42681. height: math.unit(210000, "miles")
  42682. },
  42683. ]
  42684. ))
  42685. characterMakers.push(() => makeCharacter(
  42686. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42687. {
  42688. front: {
  42689. height: math.unit(188, "feet"),
  42690. name: "Front",
  42691. image: {
  42692. source: "./media/characters/pyotr/front.svg",
  42693. extra: 1912/1826,
  42694. bottom: 18/1930
  42695. }
  42696. },
  42697. },
  42698. [
  42699. {
  42700. name: "Macro",
  42701. height: math.unit(188, "feet"),
  42702. default: true
  42703. },
  42704. {
  42705. name: "Megamacro",
  42706. height: math.unit(8, "miles")
  42707. },
  42708. ]
  42709. ))
  42710. characterMakers.push(() => makeCharacter(
  42711. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42712. {
  42713. side: {
  42714. height: math.unit(10, "feet"),
  42715. weight: math.unit(4500, "lb"),
  42716. name: "Side",
  42717. image: {
  42718. source: "./media/characters/ackart/side.svg",
  42719. extra: 1776/1668,
  42720. bottom: 116/1892
  42721. }
  42722. },
  42723. },
  42724. [
  42725. {
  42726. name: "Normal",
  42727. height: math.unit(10, "feet"),
  42728. default: true
  42729. },
  42730. ]
  42731. ))
  42732. characterMakers.push(() => makeCharacter(
  42733. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42734. {
  42735. side: {
  42736. height: math.unit(21, "feet"),
  42737. name: "Side",
  42738. image: {
  42739. source: "./media/characters/nolow/side.svg",
  42740. extra: 1484/1434,
  42741. bottom: 85/1569
  42742. }
  42743. },
  42744. sideErect: {
  42745. height: math.unit(21, "feet"),
  42746. name: "Side-erect",
  42747. image: {
  42748. source: "./media/characters/nolow/side-erect.svg",
  42749. extra: 1484/1434,
  42750. bottom: 85/1569
  42751. }
  42752. },
  42753. },
  42754. [
  42755. {
  42756. name: "Regular",
  42757. height: math.unit(12, "feet")
  42758. },
  42759. {
  42760. name: "Big Chee",
  42761. height: math.unit(21, "feet"),
  42762. default: true
  42763. },
  42764. ]
  42765. ))
  42766. characterMakers.push(() => makeCharacter(
  42767. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42768. {
  42769. front: {
  42770. height: math.unit(7, "feet"),
  42771. weight: math.unit(250, "lb"),
  42772. name: "Front",
  42773. image: {
  42774. source: "./media/characters/nines/front.svg",
  42775. extra: 1741/1607,
  42776. bottom: 41/1782
  42777. }
  42778. },
  42779. side: {
  42780. height: math.unit(7, "feet"),
  42781. weight: math.unit(250, "lb"),
  42782. name: "Side",
  42783. image: {
  42784. source: "./media/characters/nines/side.svg",
  42785. extra: 1854/1735,
  42786. bottom: 93/1947
  42787. }
  42788. },
  42789. back: {
  42790. height: math.unit(7, "feet"),
  42791. weight: math.unit(250, "lb"),
  42792. name: "Back",
  42793. image: {
  42794. source: "./media/characters/nines/back.svg",
  42795. extra: 1748/1615,
  42796. bottom: 20/1768
  42797. }
  42798. },
  42799. },
  42800. [
  42801. {
  42802. name: "Megamacro",
  42803. height: math.unit(99, "km"),
  42804. default: true
  42805. },
  42806. ]
  42807. ))
  42808. characterMakers.push(() => makeCharacter(
  42809. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42810. {
  42811. front: {
  42812. height: math.unit(5 + 10/12, "feet"),
  42813. weight: math.unit(210, "lb"),
  42814. name: "Front",
  42815. image: {
  42816. source: "./media/characters/zenith/front.svg",
  42817. extra: 1531/1452,
  42818. bottom: 198/1729
  42819. }
  42820. },
  42821. back: {
  42822. height: math.unit(5 + 10/12, "feet"),
  42823. weight: math.unit(210, "lb"),
  42824. name: "Back",
  42825. image: {
  42826. source: "./media/characters/zenith/back.svg",
  42827. extra: 1571/1487,
  42828. bottom: 75/1646
  42829. }
  42830. },
  42831. },
  42832. [
  42833. {
  42834. name: "Normal",
  42835. height: math.unit(5 + 10/12, "feet"),
  42836. default: true
  42837. }
  42838. ]
  42839. ))
  42840. characterMakers.push(() => makeCharacter(
  42841. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42842. {
  42843. front: {
  42844. height: math.unit(4, "feet"),
  42845. weight: math.unit(60, "lb"),
  42846. name: "Front",
  42847. image: {
  42848. source: "./media/characters/jasper/front.svg",
  42849. extra: 1450/1379,
  42850. bottom: 19/1469
  42851. }
  42852. },
  42853. },
  42854. [
  42855. {
  42856. name: "Normal",
  42857. height: math.unit(4, "feet"),
  42858. default: true
  42859. },
  42860. ]
  42861. ))
  42862. characterMakers.push(() => makeCharacter(
  42863. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42864. {
  42865. front: {
  42866. height: math.unit(6 + 5/12, "feet"),
  42867. weight: math.unit(290, "lb"),
  42868. name: "Front",
  42869. image: {
  42870. source: "./media/characters/tiberius-thyben/front.svg",
  42871. extra: 757/739,
  42872. bottom: 39/796
  42873. }
  42874. },
  42875. },
  42876. [
  42877. {
  42878. name: "Micro",
  42879. height: math.unit(1.5, "inches")
  42880. },
  42881. {
  42882. name: "Normal",
  42883. height: math.unit(6 + 5/12, "feet"),
  42884. default: true
  42885. },
  42886. {
  42887. name: "Macro",
  42888. height: math.unit(300, "feet")
  42889. },
  42890. ]
  42891. ))
  42892. characterMakers.push(() => makeCharacter(
  42893. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42894. {
  42895. front: {
  42896. height: math.unit(5 + 6/12, "feet"),
  42897. weight: math.unit(60, "kg"),
  42898. name: "Front",
  42899. image: {
  42900. source: "./media/characters/sabre/front.svg",
  42901. extra: 738/671,
  42902. bottom: 27/765
  42903. }
  42904. },
  42905. },
  42906. [
  42907. {
  42908. name: "Teeny",
  42909. height: math.unit(2, "inches")
  42910. },
  42911. {
  42912. name: "Smol",
  42913. height: math.unit(8, "inches")
  42914. },
  42915. {
  42916. name: "Normal",
  42917. height: math.unit(5 + 6/12, "feet"),
  42918. default: true
  42919. },
  42920. {
  42921. name: "Mini-Macro",
  42922. height: math.unit(15, "feet")
  42923. },
  42924. {
  42925. name: "Macro",
  42926. height: math.unit(50, "feet")
  42927. },
  42928. ]
  42929. ))
  42930. characterMakers.push(() => makeCharacter(
  42931. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42932. {
  42933. front: {
  42934. height: math.unit(6 + 4/12, "feet"),
  42935. weight: math.unit(170, "lb"),
  42936. name: "Front",
  42937. image: {
  42938. source: "./media/characters/charlie/front.svg",
  42939. extra: 1348/1228,
  42940. bottom: 15/1363
  42941. }
  42942. },
  42943. },
  42944. [
  42945. {
  42946. name: "Macro",
  42947. height: math.unit(1700, "meters"),
  42948. default: true
  42949. },
  42950. {
  42951. name: "MegaMacro",
  42952. height: math.unit(20400, "meters")
  42953. },
  42954. ]
  42955. ))
  42956. characterMakers.push(() => makeCharacter(
  42957. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42958. {
  42959. front: {
  42960. height: math.unit(6 + 3/12, "feet"),
  42961. weight: math.unit(185, "lb"),
  42962. name: "Front",
  42963. image: {
  42964. source: "./media/characters/susan-grant/front.svg",
  42965. extra: 1351/1327,
  42966. bottom: 26/1377
  42967. }
  42968. },
  42969. },
  42970. [
  42971. {
  42972. name: "Normal",
  42973. height: math.unit(6 + 3/12, "feet"),
  42974. default: true
  42975. },
  42976. {
  42977. name: "Macro",
  42978. height: math.unit(225, "feet")
  42979. },
  42980. {
  42981. name: "Macro+",
  42982. height: math.unit(900, "feet")
  42983. },
  42984. {
  42985. name: "MegaMacro",
  42986. height: math.unit(14400, "feet")
  42987. },
  42988. ]
  42989. ))
  42990. characterMakers.push(() => makeCharacter(
  42991. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42992. {
  42993. front: {
  42994. height: math.unit(5 + 4/12, "feet"),
  42995. weight: math.unit(110, "lb"),
  42996. name: "Front",
  42997. image: {
  42998. source: "./media/characters/axel-isanov/front.svg",
  42999. extra: 1096/1065,
  43000. bottom: 13/1109
  43001. }
  43002. },
  43003. },
  43004. [
  43005. {
  43006. name: "Normal",
  43007. height: math.unit(5 + 4/12, "feet"),
  43008. default: true
  43009. },
  43010. ]
  43011. ))
  43012. characterMakers.push(() => makeCharacter(
  43013. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43014. {
  43015. front: {
  43016. height: math.unit(9, "feet"),
  43017. weight: math.unit(467, "lb"),
  43018. name: "Front",
  43019. image: {
  43020. source: "./media/characters/necahual/front.svg",
  43021. extra: 920/873,
  43022. bottom: 26/946
  43023. }
  43024. },
  43025. back: {
  43026. height: math.unit(9, "feet"),
  43027. weight: math.unit(467, "lb"),
  43028. name: "Back",
  43029. image: {
  43030. source: "./media/characters/necahual/back.svg",
  43031. extra: 930/884,
  43032. bottom: 16/946
  43033. }
  43034. },
  43035. frontUnderwear: {
  43036. height: math.unit(9, "feet"),
  43037. weight: math.unit(467, "lb"),
  43038. name: "Front (Underwear)",
  43039. image: {
  43040. source: "./media/characters/necahual/front-underwear.svg",
  43041. extra: 920/873,
  43042. bottom: 26/946
  43043. }
  43044. },
  43045. frontDressed: {
  43046. height: math.unit(9, "feet"),
  43047. weight: math.unit(467, "lb"),
  43048. name: "Front (Dressed)",
  43049. image: {
  43050. source: "./media/characters/necahual/front-dressed.svg",
  43051. extra: 920/873,
  43052. bottom: 26/946
  43053. }
  43054. },
  43055. },
  43056. [
  43057. {
  43058. name: "Comprsesed",
  43059. height: math.unit(9, "feet")
  43060. },
  43061. {
  43062. name: "Natural",
  43063. height: math.unit(15, "feet"),
  43064. default: true
  43065. },
  43066. {
  43067. name: "Boosted",
  43068. height: math.unit(50, "feet")
  43069. },
  43070. {
  43071. name: "Boosted+",
  43072. height: math.unit(150, "feet")
  43073. },
  43074. {
  43075. name: "Max",
  43076. height: math.unit(500, "feet")
  43077. },
  43078. ]
  43079. ))
  43080. characterMakers.push(() => makeCharacter(
  43081. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43082. {
  43083. front: {
  43084. height: math.unit(22 + 1/12, "feet"),
  43085. weight: math.unit(3200, "lb"),
  43086. name: "Front",
  43087. image: {
  43088. source: "./media/characters/theo-acacia/front.svg",
  43089. extra: 1796/1741,
  43090. bottom: 83/1879
  43091. }
  43092. },
  43093. frontUnderwear: {
  43094. height: math.unit(22 + 1/12, "feet"),
  43095. weight: math.unit(3200, "lb"),
  43096. name: "Front (Underwear)",
  43097. image: {
  43098. source: "./media/characters/theo-acacia/front-underwear.svg",
  43099. extra: 1796/1741,
  43100. bottom: 83/1879
  43101. }
  43102. },
  43103. frontNude: {
  43104. height: math.unit(22 + 1/12, "feet"),
  43105. weight: math.unit(3200, "lb"),
  43106. name: "Front (Nude)",
  43107. image: {
  43108. source: "./media/characters/theo-acacia/front-nude.svg",
  43109. extra: 1796/1741,
  43110. bottom: 83/1879
  43111. }
  43112. },
  43113. },
  43114. [
  43115. {
  43116. name: "Normal",
  43117. height: math.unit(22 + 1/12, "feet"),
  43118. default: true
  43119. },
  43120. ]
  43121. ))
  43122. characterMakers.push(() => makeCharacter(
  43123. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43124. {
  43125. front: {
  43126. height: math.unit(20, "feet"),
  43127. name: "Front",
  43128. image: {
  43129. source: "./media/characters/astra/front.svg",
  43130. extra: 1850/1714,
  43131. bottom: 106/1956
  43132. }
  43133. },
  43134. frontUndressed: {
  43135. height: math.unit(20, "feet"),
  43136. name: "Front (Undressed)",
  43137. image: {
  43138. source: "./media/characters/astra/front-undressed.svg",
  43139. extra: 1926/1749,
  43140. bottom: 0/1926
  43141. }
  43142. },
  43143. hand: {
  43144. height: math.unit(1.53, "feet"),
  43145. name: "Hand",
  43146. image: {
  43147. source: "./media/characters/astra/hand.svg"
  43148. }
  43149. },
  43150. paw: {
  43151. height: math.unit(1.53, "feet"),
  43152. name: "Paw",
  43153. image: {
  43154. source: "./media/characters/astra/paw.svg"
  43155. }
  43156. },
  43157. },
  43158. [
  43159. {
  43160. name: "Smallest",
  43161. height: math.unit(20, "feet")
  43162. },
  43163. {
  43164. name: "Normal",
  43165. height: math.unit(1e9, "miles"),
  43166. default: true
  43167. },
  43168. {
  43169. name: "Larger",
  43170. height: math.unit(5, "multiverses")
  43171. },
  43172. {
  43173. name: "Largest",
  43174. height: math.unit(1e9, "multiverses")
  43175. },
  43176. ]
  43177. ))
  43178. characterMakers.push(() => makeCharacter(
  43179. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43180. {
  43181. front: {
  43182. height: math.unit(8, "feet"),
  43183. name: "Front",
  43184. image: {
  43185. source: "./media/characters/breanna/front.svg",
  43186. extra: 1912/1632,
  43187. bottom: 33/1945
  43188. }
  43189. },
  43190. },
  43191. [
  43192. {
  43193. name: "Smallest",
  43194. height: math.unit(8, "feet")
  43195. },
  43196. {
  43197. name: "Normal",
  43198. height: math.unit(1, "mile"),
  43199. default: true
  43200. },
  43201. {
  43202. name: "Maximum",
  43203. height: math.unit(1500000000000, "lightyears")
  43204. },
  43205. ]
  43206. ))
  43207. characterMakers.push(() => makeCharacter(
  43208. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43209. {
  43210. front: {
  43211. height: math.unit(5 + 11/12, "feet"),
  43212. weight: math.unit(155, "lb"),
  43213. name: "Front",
  43214. image: {
  43215. source: "./media/characters/cai/front.svg",
  43216. extra: 1823/1702,
  43217. bottom: 32/1855
  43218. }
  43219. },
  43220. back: {
  43221. height: math.unit(5 + 11/12, "feet"),
  43222. weight: math.unit(155, "lb"),
  43223. name: "Back",
  43224. image: {
  43225. source: "./media/characters/cai/back.svg",
  43226. extra: 1809/1708,
  43227. bottom: 31/1840
  43228. }
  43229. },
  43230. },
  43231. [
  43232. {
  43233. name: "Normal",
  43234. height: math.unit(5 + 11/12, "feet"),
  43235. default: true
  43236. },
  43237. {
  43238. name: "Big",
  43239. height: math.unit(15, "feet")
  43240. },
  43241. {
  43242. name: "Macro",
  43243. height: math.unit(200, "feet")
  43244. },
  43245. ]
  43246. ))
  43247. characterMakers.push(() => makeCharacter(
  43248. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43249. {
  43250. front: {
  43251. height: math.unit(5 + 6/12, "feet"),
  43252. weight: math.unit(160, "lb"),
  43253. name: "Front",
  43254. image: {
  43255. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43256. extra: 1227/1174,
  43257. bottom: 37/1264
  43258. }
  43259. },
  43260. },
  43261. [
  43262. {
  43263. name: "Macro",
  43264. height: math.unit(444, "meters"),
  43265. default: true
  43266. },
  43267. ]
  43268. ))
  43269. characterMakers.push(() => makeCharacter(
  43270. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43271. {
  43272. front: {
  43273. height: math.unit(18 + 7/12, "feet"),
  43274. name: "Front",
  43275. image: {
  43276. source: "./media/characters/rex/front.svg",
  43277. extra: 1941/1807,
  43278. bottom: 66/2007
  43279. }
  43280. },
  43281. back: {
  43282. height: math.unit(18 + 7/12, "feet"),
  43283. name: "Back",
  43284. image: {
  43285. source: "./media/characters/rex/back.svg",
  43286. extra: 1937/1822,
  43287. bottom: 42/1979
  43288. }
  43289. },
  43290. boot: {
  43291. height: math.unit(3.45, "feet"),
  43292. name: "Boot",
  43293. image: {
  43294. source: "./media/characters/rex/boot.svg"
  43295. }
  43296. },
  43297. paw: {
  43298. height: math.unit(4.17, "feet"),
  43299. name: "Paw",
  43300. image: {
  43301. source: "./media/characters/rex/paw.svg"
  43302. }
  43303. },
  43304. head: {
  43305. height: math.unit(6.728, "feet"),
  43306. name: "Head",
  43307. image: {
  43308. source: "./media/characters/rex/head.svg"
  43309. }
  43310. },
  43311. },
  43312. [
  43313. {
  43314. name: "Nano",
  43315. height: math.unit(18 + 7/12, "feet")
  43316. },
  43317. {
  43318. name: "Micro",
  43319. height: math.unit(1.5, "megameters")
  43320. },
  43321. {
  43322. name: "Normal",
  43323. height: math.unit(440, "megameters"),
  43324. default: true
  43325. },
  43326. {
  43327. name: "Macro",
  43328. height: math.unit(2.5, "gigameters")
  43329. },
  43330. {
  43331. name: "Gigamacro",
  43332. height: math.unit(2, "galaxies")
  43333. },
  43334. ]
  43335. ))
  43336. characterMakers.push(() => makeCharacter(
  43337. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43338. {
  43339. side: {
  43340. height: math.unit(32, "feet"),
  43341. weight: math.unit(250000, "lb"),
  43342. name: "Side",
  43343. image: {
  43344. source: "./media/characters/silverwing/side.svg",
  43345. extra: 1100/1019,
  43346. bottom: 204/1304
  43347. }
  43348. },
  43349. },
  43350. [
  43351. {
  43352. name: "Normal",
  43353. height: math.unit(32, "feet"),
  43354. default: true
  43355. },
  43356. ]
  43357. ))
  43358. characterMakers.push(() => makeCharacter(
  43359. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43360. {
  43361. front: {
  43362. height: math.unit(6 + 6/12, "feet"),
  43363. weight: math.unit(350, "lb"),
  43364. name: "Front",
  43365. image: {
  43366. source: "./media/characters/tristan-hawthorne/front.svg",
  43367. extra: 1159/1124,
  43368. bottom: 37/1196
  43369. },
  43370. form: "labrador",
  43371. default: true
  43372. },
  43373. skunkFront: {
  43374. height: math.unit(4 + 6/12, "feet"),
  43375. weight: math.unit(120, "lb"),
  43376. name: "Front",
  43377. image: {
  43378. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43379. extra: 1609/1551,
  43380. bottom: 169/1778
  43381. },
  43382. form: "skunk",
  43383. default: true
  43384. },
  43385. },
  43386. [
  43387. {
  43388. name: "Normal",
  43389. height: math.unit(6 + 6/12, "feet"),
  43390. form: "labrador",
  43391. default: true
  43392. },
  43393. {
  43394. name: "Normal",
  43395. height: math.unit(4 + 6/12, "feet"),
  43396. form: "skunk",
  43397. default: true
  43398. },
  43399. ],
  43400. {
  43401. "labrador": {
  43402. name: "Labrador",
  43403. default: true
  43404. },
  43405. "skunk": {
  43406. name: "Skunk"
  43407. }
  43408. }
  43409. ))
  43410. characterMakers.push(() => makeCharacter(
  43411. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43412. {
  43413. front: {
  43414. height: math.unit(5 + 11/12, "feet"),
  43415. weight: math.unit(190, "lb"),
  43416. name: "Front",
  43417. image: {
  43418. source: "./media/characters/mizu/front.svg",
  43419. extra: 1988/1788,
  43420. bottom: 14/2002
  43421. }
  43422. },
  43423. },
  43424. [
  43425. {
  43426. name: "Normal",
  43427. height: math.unit(5 + 11/12, "feet"),
  43428. default: true
  43429. },
  43430. ]
  43431. ))
  43432. characterMakers.push(() => makeCharacter(
  43433. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43434. {
  43435. front: {
  43436. height: math.unit(1.7, "feet"),
  43437. weight: math.unit(50, "lb"),
  43438. name: "Front",
  43439. image: {
  43440. source: "./media/characters/dechroma/front.svg",
  43441. extra: 1095/859,
  43442. bottom: 64/1159
  43443. }
  43444. },
  43445. },
  43446. [
  43447. {
  43448. name: "Normal",
  43449. height: math.unit(1.7, "feet"),
  43450. default: true
  43451. },
  43452. ]
  43453. ))
  43454. characterMakers.push(() => makeCharacter(
  43455. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43456. {
  43457. side: {
  43458. height: math.unit(30, "feet"),
  43459. name: "Side",
  43460. image: {
  43461. source: "./media/characters/veluren-thanazel/side.svg",
  43462. extra: 1611/633,
  43463. bottom: 118/1729
  43464. }
  43465. },
  43466. front: {
  43467. height: math.unit(30, "feet"),
  43468. name: "Front",
  43469. image: {
  43470. source: "./media/characters/veluren-thanazel/front.svg",
  43471. extra: 1486/636,
  43472. bottom: 238/1724
  43473. }
  43474. },
  43475. head: {
  43476. height: math.unit(21.4, "feet"),
  43477. name: "Head",
  43478. image: {
  43479. source: "./media/characters/veluren-thanazel/head.svg"
  43480. }
  43481. },
  43482. genitals: {
  43483. height: math.unit(19.4, "feet"),
  43484. name: "Genitals",
  43485. image: {
  43486. source: "./media/characters/veluren-thanazel/genitals.svg"
  43487. }
  43488. },
  43489. },
  43490. [
  43491. {
  43492. name: "Social",
  43493. height: math.unit(6, "feet")
  43494. },
  43495. {
  43496. name: "Play",
  43497. height: math.unit(12, "feet")
  43498. },
  43499. {
  43500. name: "True",
  43501. height: math.unit(30, "feet"),
  43502. default: true
  43503. },
  43504. ]
  43505. ))
  43506. characterMakers.push(() => makeCharacter(
  43507. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43508. {
  43509. front: {
  43510. height: math.unit(7 + 6/12, "feet"),
  43511. weight: math.unit(500, "kg"),
  43512. name: "Front",
  43513. image: {
  43514. source: "./media/characters/arcturas/front.svg",
  43515. extra: 1700/1500,
  43516. bottom: 145/1845
  43517. }
  43518. },
  43519. },
  43520. [
  43521. {
  43522. name: "Normal",
  43523. height: math.unit(7 + 6/12, "feet"),
  43524. default: true
  43525. },
  43526. ]
  43527. ))
  43528. characterMakers.push(() => makeCharacter(
  43529. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43530. {
  43531. side: {
  43532. height: math.unit(6, "feet"),
  43533. weight: math.unit(2, "tons"),
  43534. name: "Side",
  43535. image: {
  43536. source: "./media/characters/vitaen/side.svg",
  43537. extra: 1157/617,
  43538. bottom: 122/1279
  43539. }
  43540. },
  43541. },
  43542. [
  43543. {
  43544. name: "Normal",
  43545. height: math.unit(6, "feet"),
  43546. default: true
  43547. },
  43548. ]
  43549. ))
  43550. characterMakers.push(() => makeCharacter(
  43551. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43552. {
  43553. front: {
  43554. height: math.unit(19, "feet"),
  43555. name: "Front",
  43556. image: {
  43557. source: "./media/characters/fia-dreamweaver/front.svg",
  43558. extra: 1630/1504,
  43559. bottom: 25/1655
  43560. }
  43561. },
  43562. },
  43563. [
  43564. {
  43565. name: "Normal",
  43566. height: math.unit(19, "feet"),
  43567. default: true
  43568. },
  43569. ]
  43570. ))
  43571. characterMakers.push(() => makeCharacter(
  43572. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43573. {
  43574. front: {
  43575. height: math.unit(5 + 4/12, "feet"),
  43576. name: "Front",
  43577. image: {
  43578. source: "./media/characters/artan/front.svg",
  43579. extra: 1618/1535,
  43580. bottom: 46/1664
  43581. }
  43582. },
  43583. back: {
  43584. height: math.unit(5 + 4/12, "feet"),
  43585. name: "Back",
  43586. image: {
  43587. source: "./media/characters/artan/back.svg",
  43588. extra: 1618/1543,
  43589. bottom: 31/1649
  43590. }
  43591. },
  43592. },
  43593. [
  43594. {
  43595. name: "Normal",
  43596. height: math.unit(5 + 4/12, "feet"),
  43597. default: true
  43598. },
  43599. ]
  43600. ))
  43601. characterMakers.push(() => makeCharacter(
  43602. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43603. {
  43604. side: {
  43605. height: math.unit(182, "cm"),
  43606. weight: math.unit(1000, "lb"),
  43607. name: "Side",
  43608. image: {
  43609. source: "./media/characters/silver-dragon/side.svg",
  43610. extra: 710/287,
  43611. bottom: 88/798
  43612. }
  43613. },
  43614. },
  43615. [
  43616. {
  43617. name: "Normal",
  43618. height: math.unit(182, "cm"),
  43619. default: true
  43620. },
  43621. ]
  43622. ))
  43623. characterMakers.push(() => makeCharacter(
  43624. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43625. {
  43626. side: {
  43627. height: math.unit(6 + 6/12, "feet"),
  43628. weight: math.unit(1.5, "tons"),
  43629. name: "Side",
  43630. image: {
  43631. source: "./media/characters/zephyr/side.svg",
  43632. extra: 1433/586,
  43633. bottom: 109/1542
  43634. }
  43635. },
  43636. },
  43637. [
  43638. {
  43639. name: "Normal",
  43640. height: math.unit(6 + 6/12, "feet"),
  43641. default: true
  43642. },
  43643. ]
  43644. ))
  43645. characterMakers.push(() => makeCharacter(
  43646. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43647. {
  43648. side: {
  43649. height: math.unit(1, "feet"),
  43650. name: "Side",
  43651. image: {
  43652. source: "./media/characters/vixye/side.svg",
  43653. extra: 632/541,
  43654. bottom: 0/632
  43655. }
  43656. },
  43657. },
  43658. [
  43659. {
  43660. name: "Normal",
  43661. height: math.unit(1, "feet"),
  43662. default: true
  43663. },
  43664. {
  43665. name: "True",
  43666. height: math.unit(1e15, "multiverses")
  43667. },
  43668. ]
  43669. ))
  43670. characterMakers.push(() => makeCharacter(
  43671. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43672. {
  43673. front: {
  43674. height: math.unit(8 + 2/12, "feet"),
  43675. weight: math.unit(650, "lb"),
  43676. name: "Front",
  43677. image: {
  43678. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43679. extra: 1174/1137,
  43680. bottom: 82/1256
  43681. }
  43682. },
  43683. back: {
  43684. height: math.unit(8 + 2/12, "feet"),
  43685. weight: math.unit(650, "lb"),
  43686. name: "Back",
  43687. image: {
  43688. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43689. extra: 1204/1157,
  43690. bottom: 46/1250
  43691. }
  43692. },
  43693. },
  43694. [
  43695. {
  43696. name: "Wildform",
  43697. height: math.unit(8 + 2/12, "feet"),
  43698. default: true
  43699. },
  43700. ]
  43701. ))
  43702. characterMakers.push(() => makeCharacter(
  43703. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43704. {
  43705. front: {
  43706. height: math.unit(18, "feet"),
  43707. name: "Front",
  43708. image: {
  43709. source: "./media/characters/cyphin/front.svg",
  43710. extra: 970/886,
  43711. bottom: 42/1012
  43712. }
  43713. },
  43714. back: {
  43715. height: math.unit(18, "feet"),
  43716. name: "Back",
  43717. image: {
  43718. source: "./media/characters/cyphin/back.svg",
  43719. extra: 1009/894,
  43720. bottom: 24/1033
  43721. }
  43722. },
  43723. head: {
  43724. height: math.unit(5.05, "feet"),
  43725. name: "Head",
  43726. image: {
  43727. source: "./media/characters/cyphin/head.svg"
  43728. }
  43729. },
  43730. tailbud: {
  43731. height: math.unit(5, "feet"),
  43732. name: "Tailbud",
  43733. image: {
  43734. source: "./media/characters/cyphin/tailbud.svg"
  43735. }
  43736. },
  43737. },
  43738. [
  43739. ]
  43740. ))
  43741. characterMakers.push(() => makeCharacter(
  43742. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43743. {
  43744. side: {
  43745. height: math.unit(10, "feet"),
  43746. weight: math.unit(6, "tons"),
  43747. name: "Side",
  43748. image: {
  43749. source: "./media/characters/raijin/side.svg",
  43750. extra: 1529/613,
  43751. bottom: 337/1866
  43752. }
  43753. },
  43754. },
  43755. [
  43756. {
  43757. name: "Normal",
  43758. height: math.unit(10, "feet"),
  43759. default: true
  43760. },
  43761. ]
  43762. ))
  43763. characterMakers.push(() => makeCharacter(
  43764. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43765. {
  43766. side: {
  43767. height: math.unit(9, "feet"),
  43768. name: "Side",
  43769. image: {
  43770. source: "./media/characters/nilghais/side.svg",
  43771. extra: 1047/744,
  43772. bottom: 91/1138
  43773. }
  43774. },
  43775. head: {
  43776. height: math.unit(3.14, "feet"),
  43777. name: "Head",
  43778. image: {
  43779. source: "./media/characters/nilghais/head.svg"
  43780. }
  43781. },
  43782. mouth: {
  43783. height: math.unit(4.6, "feet"),
  43784. name: "Mouth",
  43785. image: {
  43786. source: "./media/characters/nilghais/mouth.svg"
  43787. }
  43788. },
  43789. wings: {
  43790. height: math.unit(24, "feet"),
  43791. name: "Wings",
  43792. image: {
  43793. source: "./media/characters/nilghais/wings.svg"
  43794. }
  43795. },
  43796. ass: {
  43797. height: math.unit(6.12, "feet"),
  43798. name: "Ass",
  43799. image: {
  43800. source: "./media/characters/nilghais/ass.svg"
  43801. }
  43802. },
  43803. },
  43804. [
  43805. {
  43806. name: "Normal",
  43807. height: math.unit(9, "feet"),
  43808. default: true
  43809. },
  43810. ]
  43811. ))
  43812. characterMakers.push(() => makeCharacter(
  43813. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43814. {
  43815. regular: {
  43816. height: math.unit(16 + 2/12, "feet"),
  43817. weight: math.unit(2300, "lb"),
  43818. name: "Regular",
  43819. image: {
  43820. source: "./media/characters/zolgar/regular.svg",
  43821. extra: 1246/1004,
  43822. bottom: 124/1370
  43823. }
  43824. },
  43825. boxers: {
  43826. height: math.unit(16 + 2/12, "feet"),
  43827. weight: math.unit(2300, "lb"),
  43828. name: "Boxers",
  43829. image: {
  43830. source: "./media/characters/zolgar/boxers.svg",
  43831. extra: 1246/1004,
  43832. bottom: 124/1370
  43833. }
  43834. },
  43835. armored: {
  43836. height: math.unit(16 + 2/12, "feet"),
  43837. weight: math.unit(2300, "lb"),
  43838. name: "Armored",
  43839. image: {
  43840. source: "./media/characters/zolgar/armored.svg",
  43841. extra: 1246/1004,
  43842. bottom: 124/1370
  43843. }
  43844. },
  43845. goth: {
  43846. height: math.unit(16 + 2/12, "feet"),
  43847. weight: math.unit(2300, "lb"),
  43848. name: "Goth",
  43849. image: {
  43850. source: "./media/characters/zolgar/goth.svg",
  43851. extra: 1246/1004,
  43852. bottom: 124/1370
  43853. }
  43854. },
  43855. },
  43856. [
  43857. {
  43858. name: "Shrunken Down",
  43859. height: math.unit(9 + 2/12, "feet")
  43860. },
  43861. {
  43862. name: "Normal",
  43863. height: math.unit(16 + 2/12, "feet"),
  43864. default: true
  43865. },
  43866. ]
  43867. ))
  43868. characterMakers.push(() => makeCharacter(
  43869. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43870. {
  43871. front: {
  43872. height: math.unit(6, "feet"),
  43873. weight: math.unit(168, "lb"),
  43874. name: "Front",
  43875. image: {
  43876. source: "./media/characters/luca/front.svg",
  43877. extra: 841/667,
  43878. bottom: 102/943
  43879. }
  43880. },
  43881. },
  43882. [
  43883. {
  43884. name: "Normal",
  43885. height: math.unit(6, "feet"),
  43886. default: true
  43887. },
  43888. ]
  43889. ))
  43890. characterMakers.push(() => makeCharacter(
  43891. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43892. {
  43893. side: {
  43894. height: math.unit(7 + 3/12, "feet"),
  43895. weight: math.unit(312, "lb"),
  43896. name: "Side",
  43897. image: {
  43898. source: "./media/characters/zezo/side.svg",
  43899. extra: 1192/1067,
  43900. bottom: 63/1255
  43901. }
  43902. },
  43903. },
  43904. [
  43905. {
  43906. name: "Normal",
  43907. height: math.unit(7 + 3/12, "feet"),
  43908. default: true
  43909. },
  43910. ]
  43911. ))
  43912. characterMakers.push(() => makeCharacter(
  43913. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43914. {
  43915. front: {
  43916. height: math.unit(5 + 5/12, "feet"),
  43917. weight: math.unit(170, "lb"),
  43918. name: "Front",
  43919. image: {
  43920. source: "./media/characters/mayso/front.svg",
  43921. extra: 1215/1108,
  43922. bottom: 16/1231
  43923. }
  43924. },
  43925. },
  43926. [
  43927. {
  43928. name: "Normal",
  43929. height: math.unit(5 + 5/12, "feet"),
  43930. default: true
  43931. },
  43932. ]
  43933. ))
  43934. characterMakers.push(() => makeCharacter(
  43935. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43936. {
  43937. front: {
  43938. height: math.unit(4 + 3/12, "feet"),
  43939. weight: math.unit(80, "lb"),
  43940. name: "Front",
  43941. image: {
  43942. source: "./media/characters/hess/front.svg",
  43943. extra: 1200/1123,
  43944. bottom: 16/1216
  43945. }
  43946. },
  43947. },
  43948. [
  43949. {
  43950. name: "Normal",
  43951. height: math.unit(4 + 3/12, "feet"),
  43952. default: true
  43953. },
  43954. ]
  43955. ))
  43956. characterMakers.push(() => makeCharacter(
  43957. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43958. {
  43959. front: {
  43960. height: math.unit(1.9, "meters"),
  43961. name: "Front",
  43962. image: {
  43963. source: "./media/characters/ashgar/front.svg",
  43964. extra: 1177/1146,
  43965. bottom: 99/1276
  43966. }
  43967. },
  43968. back: {
  43969. height: math.unit(1.9, "meters"),
  43970. name: "Back",
  43971. image: {
  43972. source: "./media/characters/ashgar/back.svg",
  43973. extra: 1201/1183,
  43974. bottom: 53/1254
  43975. }
  43976. },
  43977. feral: {
  43978. height: math.unit(1.4, "meters"),
  43979. name: "Feral",
  43980. image: {
  43981. source: "./media/characters/ashgar/feral.svg",
  43982. extra: 370/345,
  43983. bottom: 45/415
  43984. }
  43985. },
  43986. },
  43987. [
  43988. {
  43989. name: "Normal",
  43990. height: math.unit(1.9, "meters"),
  43991. default: true
  43992. },
  43993. ]
  43994. ))
  43995. characterMakers.push(() => makeCharacter(
  43996. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43997. {
  43998. regular: {
  43999. height: math.unit(6, "feet"),
  44000. weight: math.unit(220, "lb"),
  44001. name: "Regular",
  44002. image: {
  44003. source: "./media/characters/phillip/regular.svg",
  44004. extra: 1373/1277,
  44005. bottom: 75/1448
  44006. }
  44007. },
  44008. dressed: {
  44009. height: math.unit(6, "feet"),
  44010. weight: math.unit(220, "lb"),
  44011. name: "Dressed",
  44012. image: {
  44013. source: "./media/characters/phillip/dressed.svg",
  44014. extra: 1373/1277,
  44015. bottom: 75/1448
  44016. }
  44017. },
  44018. paw: {
  44019. height: math.unit(1.44, "feet"),
  44020. name: "Paw",
  44021. image: {
  44022. source: "./media/characters/phillip/paw.svg"
  44023. }
  44024. },
  44025. },
  44026. [
  44027. {
  44028. name: "Normal",
  44029. height: math.unit(6, "feet"),
  44030. default: true
  44031. },
  44032. ]
  44033. ))
  44034. characterMakers.push(() => makeCharacter(
  44035. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44036. {
  44037. side: {
  44038. height: math.unit(42, "feet"),
  44039. name: "Side",
  44040. image: {
  44041. source: "./media/characters/uvula/side.svg",
  44042. extra: 683/586,
  44043. bottom: 60/743
  44044. }
  44045. },
  44046. front: {
  44047. height: math.unit(42, "feet"),
  44048. name: "Front",
  44049. image: {
  44050. source: "./media/characters/uvula/front.svg",
  44051. extra: 705/613,
  44052. bottom: 54/759
  44053. }
  44054. },
  44055. maw: {
  44056. height: math.unit(23.5, "feet"),
  44057. name: "Maw",
  44058. image: {
  44059. source: "./media/characters/uvula/maw.svg"
  44060. }
  44061. },
  44062. },
  44063. [
  44064. {
  44065. name: "Original Size",
  44066. height: math.unit(14, "inches")
  44067. },
  44068. {
  44069. name: "Human Size",
  44070. height: math.unit(6, "feet")
  44071. },
  44072. {
  44073. name: "Big",
  44074. height: math.unit(42, "feet"),
  44075. default: true
  44076. },
  44077. {
  44078. name: "Bigger",
  44079. height: math.unit(100, "feet")
  44080. },
  44081. ]
  44082. ))
  44083. characterMakers.push(() => makeCharacter(
  44084. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44085. {
  44086. front: {
  44087. height: math.unit(5 + 11/12, "feet"),
  44088. name: "Front",
  44089. image: {
  44090. source: "./media/characters/lannah/front.svg",
  44091. extra: 1208/1113,
  44092. bottom: 97/1305
  44093. }
  44094. },
  44095. },
  44096. [
  44097. {
  44098. name: "Normal",
  44099. height: math.unit(5 + 11/12, "feet"),
  44100. default: true
  44101. },
  44102. ]
  44103. ))
  44104. characterMakers.push(() => makeCharacter(
  44105. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44106. {
  44107. front: {
  44108. height: math.unit(6 + 3/12, "feet"),
  44109. weight: math.unit(3.5, "tons"),
  44110. name: "Front",
  44111. image: {
  44112. source: "./media/characters/emberflame/front.svg",
  44113. extra: 1198/672,
  44114. bottom: 82/1280
  44115. }
  44116. },
  44117. side: {
  44118. height: math.unit(6 + 3/12, "feet"),
  44119. weight: math.unit(3.5, "tons"),
  44120. name: "Side",
  44121. image: {
  44122. source: "./media/characters/emberflame/side.svg",
  44123. extra: 938/527,
  44124. bottom: 56/994
  44125. }
  44126. },
  44127. },
  44128. [
  44129. {
  44130. name: "Normal",
  44131. height: math.unit(6 + 3/12, "feet"),
  44132. default: true
  44133. },
  44134. ]
  44135. ))
  44136. characterMakers.push(() => makeCharacter(
  44137. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44138. {
  44139. side: {
  44140. height: math.unit(17.5, "feet"),
  44141. weight: math.unit(35, "tons"),
  44142. name: "Side",
  44143. image: {
  44144. source: "./media/characters/sophie-ambrose/side.svg",
  44145. extra: 1573/1242,
  44146. bottom: 71/1644
  44147. }
  44148. },
  44149. maw: {
  44150. height: math.unit(7.4, "feet"),
  44151. name: "Maw",
  44152. image: {
  44153. source: "./media/characters/sophie-ambrose/maw.svg"
  44154. }
  44155. },
  44156. },
  44157. [
  44158. {
  44159. name: "Normal",
  44160. height: math.unit(17.5, "feet"),
  44161. default: true
  44162. },
  44163. ]
  44164. ))
  44165. characterMakers.push(() => makeCharacter(
  44166. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44167. {
  44168. front: {
  44169. height: math.unit(280, "feet"),
  44170. weight: math.unit(550, "tons"),
  44171. name: "Front",
  44172. image: {
  44173. source: "./media/characters/king-mugi/front.svg",
  44174. extra: 1102/947,
  44175. bottom: 104/1206
  44176. }
  44177. },
  44178. },
  44179. [
  44180. {
  44181. name: "King Mugi",
  44182. height: math.unit(280, "feet"),
  44183. default: true
  44184. },
  44185. ]
  44186. ))
  44187. characterMakers.push(() => makeCharacter(
  44188. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44189. {
  44190. front: {
  44191. height: math.unit(64, "meters"),
  44192. name: "Front",
  44193. image: {
  44194. source: "./media/characters/nova-fox/front.svg",
  44195. extra: 1310/1246,
  44196. bottom: 65/1375
  44197. }
  44198. },
  44199. },
  44200. [
  44201. {
  44202. name: "Macro",
  44203. height: math.unit(64, "meters"),
  44204. default: true
  44205. },
  44206. ]
  44207. ))
  44208. characterMakers.push(() => makeCharacter(
  44209. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44210. {
  44211. front: {
  44212. height: math.unit(6 + 3/12, "feet"),
  44213. weight: math.unit(170, "lb"),
  44214. name: "Front",
  44215. image: {
  44216. source: "./media/characters/sam-bat/front.svg",
  44217. extra: 1601/1411,
  44218. bottom: 125/1726
  44219. }
  44220. },
  44221. back: {
  44222. height: math.unit(6 + 3/12, "feet"),
  44223. weight: math.unit(170, "lb"),
  44224. name: "Back",
  44225. image: {
  44226. source: "./media/characters/sam-bat/back.svg",
  44227. extra: 1577/1405,
  44228. bottom: 58/1635
  44229. }
  44230. },
  44231. },
  44232. [
  44233. {
  44234. name: "Normal",
  44235. height: math.unit(6 + 3/12, "feet"),
  44236. default: true
  44237. },
  44238. ]
  44239. ))
  44240. characterMakers.push(() => makeCharacter(
  44241. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44242. {
  44243. front: {
  44244. height: math.unit(59, "feet"),
  44245. weight: math.unit(40000, "lb"),
  44246. name: "Front",
  44247. image: {
  44248. source: "./media/characters/inari/front.svg",
  44249. extra: 1884/1350,
  44250. bottom: 95/1979
  44251. }
  44252. },
  44253. },
  44254. [
  44255. {
  44256. name: "Gigantamax",
  44257. height: math.unit(59, "feet"),
  44258. default: true
  44259. },
  44260. ]
  44261. ))
  44262. characterMakers.push(() => makeCharacter(
  44263. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44264. {
  44265. front: {
  44266. height: math.unit(5 + 8/12, "feet"),
  44267. name: "Front",
  44268. image: {
  44269. source: "./media/characters/elizabeth/front.svg",
  44270. extra: 1395/1298,
  44271. bottom: 54/1449
  44272. }
  44273. },
  44274. mouth: {
  44275. height: math.unit(1.97, "feet"),
  44276. name: "Mouth",
  44277. image: {
  44278. source: "./media/characters/elizabeth/mouth.svg"
  44279. }
  44280. },
  44281. foot: {
  44282. height: math.unit(1.17, "feet"),
  44283. name: "Foot",
  44284. image: {
  44285. source: "./media/characters/elizabeth/foot.svg"
  44286. }
  44287. },
  44288. },
  44289. [
  44290. {
  44291. name: "Normal",
  44292. height: math.unit(5 + 8/12, "feet"),
  44293. default: true
  44294. },
  44295. {
  44296. name: "Minimacro",
  44297. height: math.unit(18, "feet")
  44298. },
  44299. {
  44300. name: "Macro",
  44301. height: math.unit(180, "feet")
  44302. },
  44303. ]
  44304. ))
  44305. characterMakers.push(() => makeCharacter(
  44306. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44307. {
  44308. front: {
  44309. height: math.unit(5 + 2/12, "feet"),
  44310. name: "Front",
  44311. image: {
  44312. source: "./media/characters/october-gossamer/front.svg",
  44313. extra: 505/454,
  44314. bottom: 7/512
  44315. }
  44316. },
  44317. back: {
  44318. height: math.unit(5 + 2/12, "feet"),
  44319. name: "Back",
  44320. image: {
  44321. source: "./media/characters/october-gossamer/back.svg",
  44322. extra: 501/454,
  44323. bottom: 11/512
  44324. }
  44325. },
  44326. },
  44327. [
  44328. {
  44329. name: "Normal",
  44330. height: math.unit(5 + 2/12, "feet"),
  44331. default: true
  44332. },
  44333. ]
  44334. ))
  44335. characterMakers.push(() => makeCharacter(
  44336. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44337. {
  44338. front: {
  44339. height: math.unit(5, "feet"),
  44340. name: "Front",
  44341. image: {
  44342. source: "./media/characters/epiglottis/front.svg",
  44343. extra: 923/849,
  44344. bottom: 17/940
  44345. }
  44346. },
  44347. },
  44348. [
  44349. {
  44350. name: "Original Size",
  44351. height: math.unit(10, "inches")
  44352. },
  44353. {
  44354. name: "Human Size",
  44355. height: math.unit(5, "feet"),
  44356. default: true
  44357. },
  44358. {
  44359. name: "Big",
  44360. height: math.unit(25, "feet")
  44361. },
  44362. {
  44363. name: "Bigger",
  44364. height: math.unit(50, "feet")
  44365. },
  44366. {
  44367. name: "oh lawd",
  44368. height: math.unit(75, "feet")
  44369. },
  44370. ]
  44371. ))
  44372. characterMakers.push(() => makeCharacter(
  44373. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44374. {
  44375. front: {
  44376. height: math.unit(2 + 4/12, "feet"),
  44377. weight: math.unit(60, "lb"),
  44378. name: "Front",
  44379. image: {
  44380. source: "./media/characters/lerm/front.svg",
  44381. extra: 796/790,
  44382. bottom: 79/875
  44383. }
  44384. },
  44385. },
  44386. [
  44387. {
  44388. name: "Normal",
  44389. height: math.unit(2 + 4/12, "feet"),
  44390. default: true
  44391. },
  44392. ]
  44393. ))
  44394. characterMakers.push(() => makeCharacter(
  44395. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44396. {
  44397. front: {
  44398. height: math.unit(5.5, "feet"),
  44399. weight: math.unit(130, "lb"),
  44400. name: "Front",
  44401. image: {
  44402. source: "./media/characters/xena-nebadon/front.svg",
  44403. extra: 1828/1730,
  44404. bottom: 79/1907
  44405. }
  44406. },
  44407. },
  44408. [
  44409. {
  44410. name: "Tiny Puppy",
  44411. height: math.unit(3, "inches")
  44412. },
  44413. {
  44414. name: "Normal",
  44415. height: math.unit(5.5, "feet"),
  44416. default: true
  44417. },
  44418. {
  44419. name: "Lotta Lady",
  44420. height: math.unit(12, "feet")
  44421. },
  44422. {
  44423. name: "Pretty Big",
  44424. height: math.unit(100, "feet")
  44425. },
  44426. {
  44427. name: "Big",
  44428. height: math.unit(500, "feet")
  44429. },
  44430. {
  44431. name: "Skyscraper Toys",
  44432. height: math.unit(2500, "feet")
  44433. },
  44434. {
  44435. name: "Plane Catcher",
  44436. height: math.unit(8, "miles")
  44437. },
  44438. {
  44439. name: "Planet Toys",
  44440. height: math.unit(15, "earths")
  44441. },
  44442. {
  44443. name: "Stardust",
  44444. height: math.unit(0.25, "galaxies")
  44445. },
  44446. {
  44447. name: "Snacks",
  44448. height: math.unit(70, "universes")
  44449. },
  44450. ]
  44451. ))
  44452. characterMakers.push(() => makeCharacter(
  44453. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44454. {
  44455. front: {
  44456. height: math.unit(1.6, "meters"),
  44457. weight: math.unit(60, "kg"),
  44458. name: "Front",
  44459. image: {
  44460. source: "./media/characters/bounty/front.svg",
  44461. extra: 1426/1308,
  44462. bottom: 15/1441
  44463. }
  44464. },
  44465. back: {
  44466. height: math.unit(1.6, "meters"),
  44467. weight: math.unit(60, "kg"),
  44468. name: "Back",
  44469. image: {
  44470. source: "./media/characters/bounty/back.svg",
  44471. extra: 1417/1307,
  44472. bottom: 8/1425
  44473. }
  44474. },
  44475. },
  44476. [
  44477. {
  44478. name: "Normal",
  44479. height: math.unit(1.6, "meters"),
  44480. default: true
  44481. },
  44482. {
  44483. name: "Macro",
  44484. height: math.unit(300, "meters")
  44485. },
  44486. ]
  44487. ))
  44488. characterMakers.push(() => makeCharacter(
  44489. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44490. {
  44491. front: {
  44492. height: math.unit(2 + 8/12, "feet"),
  44493. weight: math.unit(15, "lb"),
  44494. name: "Front",
  44495. image: {
  44496. source: "./media/characters/mochi/front.svg",
  44497. extra: 1022/852,
  44498. bottom: 435/1457
  44499. }
  44500. },
  44501. back: {
  44502. height: math.unit(2 + 8/12, "feet"),
  44503. weight: math.unit(15, "lb"),
  44504. name: "Back",
  44505. image: {
  44506. source: "./media/characters/mochi/back.svg",
  44507. extra: 1335/1119,
  44508. bottom: 39/1374
  44509. }
  44510. },
  44511. bird: {
  44512. height: math.unit(2 + 8/12, "feet"),
  44513. weight: math.unit(15, "lb"),
  44514. name: "Bird",
  44515. image: {
  44516. source: "./media/characters/mochi/bird.svg",
  44517. extra: 1251/1113,
  44518. bottom: 178/1429
  44519. }
  44520. },
  44521. kaiju: {
  44522. height: math.unit(154, "feet"),
  44523. weight: math.unit(1e7, "lb"),
  44524. name: "Kaiju",
  44525. image: {
  44526. source: "./media/characters/mochi/kaiju.svg",
  44527. extra: 460/324,
  44528. bottom: 40/500
  44529. }
  44530. },
  44531. head: {
  44532. height: math.unit(1.21, "feet"),
  44533. name: "Head",
  44534. image: {
  44535. source: "./media/characters/mochi/head.svg"
  44536. }
  44537. },
  44538. alternateTail: {
  44539. height: math.unit(2 + 8/12, "feet"),
  44540. weight: math.unit(45, "lb"),
  44541. name: "Alternate Tail",
  44542. image: {
  44543. source: "./media/characters/mochi/alternate-tail.svg",
  44544. extra: 139/76,
  44545. bottom: 45/184
  44546. }
  44547. },
  44548. },
  44549. [
  44550. {
  44551. name: "Micro",
  44552. height: math.unit(2, "inches")
  44553. },
  44554. {
  44555. name: "Normal",
  44556. height: math.unit(2 + 8/12, "feet"),
  44557. default: true
  44558. },
  44559. {
  44560. name: "Macro",
  44561. height: math.unit(106, "feet")
  44562. },
  44563. ]
  44564. ))
  44565. characterMakers.push(() => makeCharacter(
  44566. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44567. {
  44568. front: {
  44569. height: math.unit(5.67, "feet"),
  44570. weight: math.unit(135, "lb"),
  44571. name: "Front",
  44572. image: {
  44573. source: "./media/characters/sarel/front.svg",
  44574. extra: 865/788,
  44575. bottom: 97/962
  44576. }
  44577. },
  44578. back: {
  44579. height: math.unit(5.67, "feet"),
  44580. weight: math.unit(135, "lb"),
  44581. name: "Back",
  44582. image: {
  44583. source: "./media/characters/sarel/back.svg",
  44584. extra: 857/777,
  44585. bottom: 32/889
  44586. }
  44587. },
  44588. chozoan: {
  44589. height: math.unit(5.67, "feet"),
  44590. weight: math.unit(135, "lb"),
  44591. name: "Chozoan",
  44592. image: {
  44593. source: "./media/characters/sarel/chozoan.svg",
  44594. extra: 865/788,
  44595. bottom: 97/962
  44596. }
  44597. },
  44598. current: {
  44599. height: math.unit(5.67, "feet"),
  44600. weight: math.unit(135, "lb"),
  44601. name: "Current",
  44602. image: {
  44603. source: "./media/characters/sarel/current.svg",
  44604. extra: 865/788,
  44605. bottom: 97/962
  44606. }
  44607. },
  44608. head: {
  44609. height: math.unit(1.77, "feet"),
  44610. name: "Head",
  44611. image: {
  44612. source: "./media/characters/sarel/head.svg"
  44613. }
  44614. },
  44615. claws: {
  44616. height: math.unit(1.8, "feet"),
  44617. name: "Claws",
  44618. image: {
  44619. source: "./media/characters/sarel/claws.svg"
  44620. }
  44621. },
  44622. clawsAlt: {
  44623. height: math.unit(1.8, "feet"),
  44624. name: "Claws-alt",
  44625. image: {
  44626. source: "./media/characters/sarel/claws-alt.svg"
  44627. }
  44628. },
  44629. },
  44630. [
  44631. {
  44632. name: "Normal",
  44633. height: math.unit(5.67, "feet"),
  44634. default: true
  44635. },
  44636. ]
  44637. ))
  44638. characterMakers.push(() => makeCharacter(
  44639. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44640. {
  44641. front: {
  44642. height: math.unit(5500, "feet"),
  44643. name: "Front",
  44644. image: {
  44645. source: "./media/characters/alyonia/front.svg",
  44646. extra: 1200/1135,
  44647. bottom: 29/1229
  44648. }
  44649. },
  44650. back: {
  44651. height: math.unit(5500, "feet"),
  44652. name: "Back",
  44653. image: {
  44654. source: "./media/characters/alyonia/back.svg",
  44655. extra: 1205/1138,
  44656. bottom: 10/1215
  44657. }
  44658. },
  44659. },
  44660. [
  44661. {
  44662. name: "Small",
  44663. height: math.unit(10, "feet")
  44664. },
  44665. {
  44666. name: "Macro",
  44667. height: math.unit(500, "feet")
  44668. },
  44669. {
  44670. name: "Mega Macro",
  44671. height: math.unit(5500, "feet"),
  44672. default: true
  44673. },
  44674. {
  44675. name: "Mega Macro+",
  44676. height: math.unit(500000, "feet")
  44677. },
  44678. {
  44679. name: "Giga Macro",
  44680. height: math.unit(3000, "miles")
  44681. },
  44682. {
  44683. name: "Tera Macro",
  44684. height: math.unit(2.8e6, "miles")
  44685. },
  44686. {
  44687. name: "Galactic",
  44688. height: math.unit(120000, "lightyears")
  44689. },
  44690. ]
  44691. ))
  44692. characterMakers.push(() => makeCharacter(
  44693. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44694. {
  44695. werewolf: {
  44696. height: math.unit(8, "feet"),
  44697. weight: math.unit(425, "lb"),
  44698. name: "Werewolf",
  44699. image: {
  44700. source: "./media/characters/autumn/werewolf.svg",
  44701. extra: 2154/2031,
  44702. bottom: 160/2314
  44703. }
  44704. },
  44705. human: {
  44706. height: math.unit(5 + 8/12, "feet"),
  44707. weight: math.unit(150, "lb"),
  44708. name: "Human",
  44709. image: {
  44710. source: "./media/characters/autumn/human.svg",
  44711. extra: 1200/1149,
  44712. bottom: 30/1230
  44713. }
  44714. },
  44715. },
  44716. [
  44717. {
  44718. name: "Normal",
  44719. height: math.unit(8, "feet"),
  44720. default: true
  44721. },
  44722. ]
  44723. ))
  44724. characterMakers.push(() => makeCharacter(
  44725. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44726. {
  44727. front: {
  44728. height: math.unit(8 + 5/12, "feet"),
  44729. weight: math.unit(825, "lb"),
  44730. name: "Front",
  44731. image: {
  44732. source: "./media/characters/cobalt-charizard/front.svg",
  44733. extra: 1268/1155,
  44734. bottom: 122/1390
  44735. }
  44736. },
  44737. side: {
  44738. height: math.unit(8 + 5/12, "feet"),
  44739. weight: math.unit(825, "lb"),
  44740. name: "Side",
  44741. image: {
  44742. source: "./media/characters/cobalt-charizard/side.svg",
  44743. extra: 1348/1257,
  44744. bottom: 58/1406
  44745. }
  44746. },
  44747. gMax: {
  44748. height: math.unit(134 + 11/12, "feet"),
  44749. name: "G-Max",
  44750. image: {
  44751. source: "./media/characters/cobalt-charizard/g-max.svg",
  44752. extra: 1835/1541,
  44753. bottom: 151/1986
  44754. }
  44755. },
  44756. },
  44757. [
  44758. {
  44759. name: "Normal",
  44760. height: math.unit(8 + 5/12, "feet"),
  44761. default: true
  44762. },
  44763. ]
  44764. ))
  44765. characterMakers.push(() => makeCharacter(
  44766. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44767. {
  44768. front: {
  44769. height: math.unit(6 + 3/12, "feet"),
  44770. weight: math.unit(210, "lb"),
  44771. name: "Front",
  44772. image: {
  44773. source: "./media/characters/stella/front.svg",
  44774. extra: 3549/3335,
  44775. bottom: 51/3600
  44776. }
  44777. },
  44778. },
  44779. [
  44780. {
  44781. name: "Normal",
  44782. height: math.unit(6 + 3/12, "feet"),
  44783. default: true
  44784. },
  44785. ]
  44786. ))
  44787. characterMakers.push(() => makeCharacter(
  44788. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44789. {
  44790. front: {
  44791. height: math.unit(5, "feet"),
  44792. weight: math.unit(90, "lb"),
  44793. name: "Front",
  44794. image: {
  44795. source: "./media/characters/riley-bishop/front.svg",
  44796. extra: 1450/1428,
  44797. bottom: 152/1602
  44798. }
  44799. },
  44800. },
  44801. [
  44802. {
  44803. name: "Normal",
  44804. height: math.unit(5, "feet"),
  44805. default: true
  44806. },
  44807. ]
  44808. ))
  44809. characterMakers.push(() => makeCharacter(
  44810. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44811. {
  44812. side: {
  44813. height: math.unit(8 + 2/12, "feet"),
  44814. weight: math.unit(500, "kg"),
  44815. name: "Side",
  44816. image: {
  44817. source: "./media/characters/theo-arcanine/side.svg",
  44818. extra: 1342/1074,
  44819. bottom: 111/1453
  44820. }
  44821. },
  44822. },
  44823. [
  44824. {
  44825. name: "Normal",
  44826. height: math.unit(8 + 2/12, "feet"),
  44827. default: true
  44828. },
  44829. ]
  44830. ))
  44831. characterMakers.push(() => makeCharacter(
  44832. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44833. {
  44834. front: {
  44835. height: math.unit(4, "feet"),
  44836. name: "Front",
  44837. image: {
  44838. source: "./media/characters/kali/front.svg",
  44839. extra: 1921/1357,
  44840. bottom: 70/1991
  44841. }
  44842. },
  44843. },
  44844. [
  44845. {
  44846. name: "Normal",
  44847. height: math.unit(4, "feet"),
  44848. default: true
  44849. },
  44850. {
  44851. name: "Macro",
  44852. height: math.unit(32, "meters")
  44853. },
  44854. {
  44855. name: "Macro+",
  44856. height: math.unit(150, "meters")
  44857. },
  44858. {
  44859. name: "Megamacro",
  44860. height: math.unit(7500, "meters")
  44861. },
  44862. {
  44863. name: "Megamacro+",
  44864. height: math.unit(80, "kilometers")
  44865. },
  44866. ]
  44867. ))
  44868. characterMakers.push(() => makeCharacter(
  44869. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44870. {
  44871. side: {
  44872. height: math.unit(5 + 11/12, "feet"),
  44873. weight: math.unit(236, "lb"),
  44874. name: "Side",
  44875. image: {
  44876. source: "./media/characters/gapp/side.svg",
  44877. extra: 775/340,
  44878. bottom: 58/833
  44879. }
  44880. },
  44881. mouth: {
  44882. height: math.unit(2.98, "feet"),
  44883. name: "Mouth",
  44884. image: {
  44885. source: "./media/characters/gapp/mouth.svg"
  44886. }
  44887. },
  44888. },
  44889. [
  44890. {
  44891. name: "Normal",
  44892. height: math.unit(5 + 1/12, "feet"),
  44893. default: true
  44894. },
  44895. ]
  44896. ))
  44897. characterMakers.push(() => makeCharacter(
  44898. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44899. {
  44900. front: {
  44901. height: math.unit(6, "feet"),
  44902. name: "Front",
  44903. image: {
  44904. source: "./media/characters/persephone/front.svg",
  44905. extra: 1895/1717,
  44906. bottom: 96/1991
  44907. }
  44908. },
  44909. back: {
  44910. height: math.unit(6, "feet"),
  44911. name: "Back",
  44912. image: {
  44913. source: "./media/characters/persephone/back.svg",
  44914. extra: 1868/1679,
  44915. bottom: 26/1894
  44916. }
  44917. },
  44918. casual: {
  44919. height: math.unit(6, "feet"),
  44920. name: "Casual",
  44921. image: {
  44922. source: "./media/characters/persephone/casual.svg",
  44923. extra: 1713/1541,
  44924. bottom: 76/1789
  44925. }
  44926. },
  44927. },
  44928. [
  44929. {
  44930. name: "Human Size",
  44931. height: math.unit(6, "feet")
  44932. },
  44933. {
  44934. name: "Big Steppy",
  44935. height: math.unit(600, "meters"),
  44936. default: true
  44937. },
  44938. {
  44939. name: "Galaxy Brain",
  44940. height: math.unit(1, "zettameter")
  44941. },
  44942. ]
  44943. ))
  44944. characterMakers.push(() => makeCharacter(
  44945. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44946. {
  44947. front: {
  44948. height: math.unit(1.85, "meters"),
  44949. name: "Front",
  44950. image: {
  44951. source: "./media/characters/riley-foxthing/front.svg",
  44952. extra: 1495/1354,
  44953. bottom: 122/1617
  44954. }
  44955. },
  44956. frontAlt: {
  44957. height: math.unit(1.85, "meters"),
  44958. name: "Front (Alt)",
  44959. image: {
  44960. source: "./media/characters/riley-foxthing/front-alt.svg",
  44961. extra: 1572/1389,
  44962. bottom: 116/1688
  44963. }
  44964. },
  44965. },
  44966. [
  44967. {
  44968. name: "Normal Sized",
  44969. height: math.unit(1.85, "meters"),
  44970. default: true
  44971. },
  44972. {
  44973. name: "Quite Sizable",
  44974. height: math.unit(5, "meters")
  44975. },
  44976. {
  44977. name: "Rather Large",
  44978. height: math.unit(20, "meters")
  44979. },
  44980. {
  44981. name: "Macro",
  44982. height: math.unit(450, "meters")
  44983. },
  44984. {
  44985. name: "Giga",
  44986. height: math.unit(5, "km")
  44987. },
  44988. ]
  44989. ))
  44990. characterMakers.push(() => makeCharacter(
  44991. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44992. {
  44993. front: {
  44994. height: math.unit(6, "feet"),
  44995. weight: math.unit(200, "lb"),
  44996. name: "Front",
  44997. image: {
  44998. source: "./media/characters/blizzard/front.svg",
  44999. extra: 1136/990,
  45000. bottom: 136/1272
  45001. }
  45002. },
  45003. back: {
  45004. height: math.unit(6, "feet"),
  45005. weight: math.unit(200, "lb"),
  45006. name: "Back",
  45007. image: {
  45008. source: "./media/characters/blizzard/back.svg",
  45009. extra: 1175/1034,
  45010. bottom: 97/1272
  45011. }
  45012. },
  45013. sitting: {
  45014. height: math.unit(3.725, "feet"),
  45015. weight: math.unit(200, "lb"),
  45016. name: "Sitting",
  45017. image: {
  45018. source: "./media/characters/blizzard/sitting.svg",
  45019. extra: 581/485,
  45020. bottom: 90/671
  45021. }
  45022. },
  45023. frontWizard: {
  45024. height: math.unit(7.9, "feet"),
  45025. weight: math.unit(200, "lb"),
  45026. name: "Front (Wizard)",
  45027. image: {
  45028. source: "./media/characters/blizzard/front-wizard.svg"
  45029. }
  45030. },
  45031. backWizard: {
  45032. height: math.unit(7.9, "feet"),
  45033. weight: math.unit(200, "lb"),
  45034. name: "Back (Wizard)",
  45035. image: {
  45036. source: "./media/characters/blizzard/back-wizard.svg"
  45037. }
  45038. },
  45039. frontNsfw: {
  45040. height: math.unit(6, "feet"),
  45041. weight: math.unit(200, "lb"),
  45042. name: "Front (NSFW)",
  45043. image: {
  45044. source: "./media/characters/blizzard/front-nsfw.svg",
  45045. extra: 1136/990,
  45046. bottom: 136/1272
  45047. }
  45048. },
  45049. backNsfw: {
  45050. height: math.unit(6, "feet"),
  45051. weight: math.unit(200, "lb"),
  45052. name: "Back (NSFW)",
  45053. image: {
  45054. source: "./media/characters/blizzard/back-nsfw.svg",
  45055. extra: 1175/1034,
  45056. bottom: 97/1272
  45057. }
  45058. },
  45059. sittingNsfw: {
  45060. height: math.unit(3.725, "feet"),
  45061. weight: math.unit(200, "lb"),
  45062. name: "Sitting (NSFW)",
  45063. image: {
  45064. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45065. extra: 581/485,
  45066. bottom: 90/671
  45067. }
  45068. },
  45069. wizardFrontNsfw: {
  45070. height: math.unit(7.9, "feet"),
  45071. weight: math.unit(200, "lb"),
  45072. name: "Wizard (Front, NSFW)",
  45073. image: {
  45074. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45075. }
  45076. },
  45077. },
  45078. [
  45079. {
  45080. name: "Normal",
  45081. height: math.unit(6, "feet"),
  45082. default: true
  45083. },
  45084. ]
  45085. ))
  45086. characterMakers.push(() => makeCharacter(
  45087. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45088. {
  45089. front: {
  45090. height: math.unit(5 + 2/12, "feet"),
  45091. name: "Front",
  45092. image: {
  45093. source: "./media/characters/lumi/front.svg",
  45094. extra: 1328/1268,
  45095. bottom: 103/1431
  45096. }
  45097. },
  45098. back: {
  45099. height: math.unit(5 + 2/12, "feet"),
  45100. name: "Back",
  45101. image: {
  45102. source: "./media/characters/lumi/back.svg",
  45103. extra: 1381/1327,
  45104. bottom: 43/1424
  45105. }
  45106. },
  45107. },
  45108. [
  45109. {
  45110. name: "Normal",
  45111. height: math.unit(5 + 2/12, "feet"),
  45112. default: true
  45113. },
  45114. ]
  45115. ))
  45116. characterMakers.push(() => makeCharacter(
  45117. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45118. {
  45119. front: {
  45120. height: math.unit(5 + 9/12, "feet"),
  45121. name: "Front",
  45122. image: {
  45123. source: "./media/characters/aliya-cotton/front.svg",
  45124. extra: 577/564,
  45125. bottom: 29/606
  45126. }
  45127. },
  45128. },
  45129. [
  45130. {
  45131. name: "Normal",
  45132. height: math.unit(5 + 9/12, "feet"),
  45133. default: true
  45134. },
  45135. ]
  45136. ))
  45137. characterMakers.push(() => makeCharacter(
  45138. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45139. {
  45140. front: {
  45141. height: math.unit(2.7, "meters"),
  45142. weight: math.unit(25000, "lb"),
  45143. name: "Front",
  45144. image: {
  45145. source: "./media/characters/noah-luxray/front.svg",
  45146. extra: 1644/825,
  45147. bottom: 339/1983
  45148. }
  45149. },
  45150. side: {
  45151. height: math.unit(2.97, "meters"),
  45152. weight: math.unit(25000, "lb"),
  45153. name: "Side",
  45154. image: {
  45155. source: "./media/characters/noah-luxray/side.svg",
  45156. extra: 1319/650,
  45157. bottom: 163/1482
  45158. }
  45159. },
  45160. dick: {
  45161. height: math.unit(7.4, "feet"),
  45162. weight: math.unit(2500, "lb"),
  45163. name: "Dick",
  45164. image: {
  45165. source: "./media/characters/noah-luxray/dick.svg"
  45166. }
  45167. },
  45168. dickAlt: {
  45169. height: math.unit(10.83, "feet"),
  45170. weight: math.unit(2500, "lb"),
  45171. name: "Dick-alt",
  45172. image: {
  45173. source: "./media/characters/noah-luxray/dick-alt.svg"
  45174. }
  45175. },
  45176. },
  45177. [
  45178. {
  45179. name: "BIG",
  45180. height: math.unit(2.7, "meters"),
  45181. default: true
  45182. },
  45183. ]
  45184. ))
  45185. characterMakers.push(() => makeCharacter(
  45186. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45187. {
  45188. standing: {
  45189. height: math.unit(183, "cm"),
  45190. weight: math.unit(68, "kg"),
  45191. name: "Standing",
  45192. image: {
  45193. source: "./media/characters/arion/standing.svg",
  45194. extra: 1869/1807,
  45195. bottom: 93/1962
  45196. }
  45197. },
  45198. reclining: {
  45199. height: math.unit(70.5, "cm"),
  45200. weight: math.unit(68, "lb"),
  45201. name: "Reclining",
  45202. image: {
  45203. source: "./media/characters/arion/reclining.svg",
  45204. extra: 937/870,
  45205. bottom: 63/1000
  45206. }
  45207. },
  45208. },
  45209. [
  45210. {
  45211. name: "Colossus Size, Low",
  45212. height: math.unit(33, "meters"),
  45213. default: true
  45214. },
  45215. {
  45216. name: "Colossus Size, Mid",
  45217. height: math.unit(52, "meters")
  45218. },
  45219. {
  45220. name: "Colossus Size, High",
  45221. height: math.unit(60, "meters")
  45222. },
  45223. {
  45224. name: "Titan Size, Low",
  45225. height: math.unit(91, "meters"),
  45226. },
  45227. {
  45228. name: "Titan Size, Mid",
  45229. height: math.unit(122, "meters")
  45230. },
  45231. {
  45232. name: "Titan Size, High",
  45233. height: math.unit(162, "meters")
  45234. },
  45235. ]
  45236. ))
  45237. characterMakers.push(() => makeCharacter(
  45238. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45239. {
  45240. front: {
  45241. height: math.unit(53, "meters"),
  45242. name: "Front",
  45243. image: {
  45244. source: "./media/characters/stellar-marbey/front.svg",
  45245. extra: 1913/1805,
  45246. bottom: 92/2005
  45247. }
  45248. },
  45249. back: {
  45250. height: math.unit(53, "meters"),
  45251. name: "Back",
  45252. image: {
  45253. source: "./media/characters/stellar-marbey/back.svg",
  45254. extra: 1960/1851,
  45255. bottom: 28/1988
  45256. }
  45257. },
  45258. mouth: {
  45259. height: math.unit(3.5, "meters"),
  45260. name: "Mouth",
  45261. image: {
  45262. source: "./media/characters/stellar-marbey/mouth.svg"
  45263. }
  45264. },
  45265. },
  45266. [
  45267. {
  45268. name: "Macro",
  45269. height: math.unit(53, "meters"),
  45270. default: true
  45271. },
  45272. ]
  45273. ))
  45274. characterMakers.push(() => makeCharacter(
  45275. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45276. {
  45277. front: {
  45278. height: math.unit(8 + 1/12, "feet"),
  45279. weight: math.unit(233, "lb"),
  45280. name: "Front",
  45281. image: {
  45282. source: "./media/characters/matsu/front.svg",
  45283. extra: 832/772,
  45284. bottom: 40/872
  45285. }
  45286. },
  45287. back: {
  45288. height: math.unit(8 + 1/12, "feet"),
  45289. weight: math.unit(233, "lb"),
  45290. name: "Back",
  45291. image: {
  45292. source: "./media/characters/matsu/back.svg",
  45293. extra: 839/780,
  45294. bottom: 47/886
  45295. }
  45296. },
  45297. },
  45298. [
  45299. {
  45300. name: "Normal",
  45301. height: math.unit(8 + 1/12, "feet"),
  45302. default: true
  45303. },
  45304. ]
  45305. ))
  45306. characterMakers.push(() => makeCharacter(
  45307. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45308. {
  45309. front: {
  45310. height: math.unit(4, "feet"),
  45311. weight: math.unit(148, "lb"),
  45312. name: "Front",
  45313. image: {
  45314. source: "./media/characters/thiz/front.svg",
  45315. extra: 1913/1748,
  45316. bottom: 62/1975
  45317. }
  45318. },
  45319. },
  45320. [
  45321. {
  45322. name: "Normal",
  45323. height: math.unit(4, "feet"),
  45324. default: true
  45325. },
  45326. ]
  45327. ))
  45328. characterMakers.push(() => makeCharacter(
  45329. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45330. {
  45331. front: {
  45332. height: math.unit(7 + 6/12, "feet"),
  45333. weight: math.unit(267, "lb"),
  45334. name: "Front",
  45335. image: {
  45336. source: "./media/characters/marcel/front.svg",
  45337. extra: 1221/1096,
  45338. bottom: 76/1297
  45339. }
  45340. },
  45341. },
  45342. [
  45343. {
  45344. name: "Normal",
  45345. height: math.unit(7 + 6/12, "feet"),
  45346. default: true
  45347. },
  45348. ]
  45349. ))
  45350. characterMakers.push(() => makeCharacter(
  45351. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45352. {
  45353. side: {
  45354. height: math.unit(42, "meters"),
  45355. name: "Side",
  45356. image: {
  45357. source: "./media/characters/flake/side.svg",
  45358. extra: 1525/1306,
  45359. bottom: 209/1734
  45360. }
  45361. },
  45362. },
  45363. [
  45364. {
  45365. name: "Normal",
  45366. height: math.unit(42, "meters"),
  45367. default: true
  45368. },
  45369. ]
  45370. ))
  45371. characterMakers.push(() => makeCharacter(
  45372. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45373. {
  45374. dressed: {
  45375. height: math.unit(6 + 4/12, "feet"),
  45376. weight: math.unit(520, "lb"),
  45377. name: "Dressed",
  45378. image: {
  45379. source: "./media/characters/someonne/dressed.svg",
  45380. extra: 1020/1010,
  45381. bottom: 178/1198
  45382. }
  45383. },
  45384. undressed: {
  45385. height: math.unit(6 + 4/12, "feet"),
  45386. weight: math.unit(520, "lb"),
  45387. name: "Undressed",
  45388. image: {
  45389. source: "./media/characters/someonne/undressed.svg",
  45390. extra: 1019/1014,
  45391. bottom: 169/1188
  45392. }
  45393. },
  45394. },
  45395. [
  45396. {
  45397. name: "Normal",
  45398. height: math.unit(6 + 4/12, "feet"),
  45399. default: true
  45400. },
  45401. ]
  45402. ))
  45403. characterMakers.push(() => makeCharacter(
  45404. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45405. {
  45406. front: {
  45407. height: math.unit(3, "feet"),
  45408. weight: math.unit(30, "lb"),
  45409. name: "Front",
  45410. image: {
  45411. source: "./media/characters/till/front.svg",
  45412. extra: 892/823,
  45413. bottom: 55/947
  45414. }
  45415. },
  45416. },
  45417. [
  45418. {
  45419. name: "Normal",
  45420. height: math.unit(3, "feet"),
  45421. default: true
  45422. },
  45423. ]
  45424. ))
  45425. characterMakers.push(() => makeCharacter(
  45426. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45427. {
  45428. front: {
  45429. height: math.unit(9 + 8/12, "feet"),
  45430. weight: math.unit(800, "lb"),
  45431. name: "Front",
  45432. image: {
  45433. source: "./media/characters/sydney-heki/front.svg",
  45434. extra: 1360/1300,
  45435. bottom: 22/1382
  45436. }
  45437. },
  45438. back: {
  45439. height: math.unit(9 + 8/12, "feet"),
  45440. weight: math.unit(800, "lb"),
  45441. name: "Back",
  45442. image: {
  45443. source: "./media/characters/sydney-heki/back.svg",
  45444. extra: 1356/1293,
  45445. bottom: 12/1368
  45446. }
  45447. },
  45448. frontDressed: {
  45449. height: math.unit(9 + 8/12, "feet"),
  45450. weight: math.unit(800, "lb"),
  45451. name: "Front-dressed",
  45452. image: {
  45453. source: "./media/characters/sydney-heki/front-dressed.svg",
  45454. extra: 1360/1300,
  45455. bottom: 22/1382
  45456. }
  45457. },
  45458. },
  45459. [
  45460. {
  45461. name: "Normal",
  45462. height: math.unit(9 + 8/12, "feet"),
  45463. default: true
  45464. },
  45465. {
  45466. name: "Macro",
  45467. height: math.unit(500, "feet")
  45468. },
  45469. {
  45470. name: "Megamacro",
  45471. height: math.unit(3.6, "miles")
  45472. },
  45473. ]
  45474. ))
  45475. characterMakers.push(() => makeCharacter(
  45476. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45477. {
  45478. front: {
  45479. height: math.unit(200, "cm"),
  45480. weight: math.unit(250, "lb"),
  45481. name: "Front",
  45482. image: {
  45483. source: "./media/characters/fowler-karlsson/front.svg",
  45484. extra: 897/845,
  45485. bottom: 123/1020
  45486. }
  45487. },
  45488. back: {
  45489. height: math.unit(200, "cm"),
  45490. weight: math.unit(250, "lb"),
  45491. name: "Back",
  45492. image: {
  45493. source: "./media/characters/fowler-karlsson/back.svg",
  45494. extra: 999/944,
  45495. bottom: 26/1025
  45496. }
  45497. },
  45498. dick: {
  45499. height: math.unit(1.92, "feet"),
  45500. weight: math.unit(150, "lb"),
  45501. name: "Dick",
  45502. image: {
  45503. source: "./media/characters/fowler-karlsson/dick.svg"
  45504. }
  45505. },
  45506. },
  45507. [
  45508. {
  45509. name: "Normal",
  45510. height: math.unit(200, "cm"),
  45511. default: true
  45512. },
  45513. {
  45514. name: "Smaller Macro",
  45515. height: math.unit(90, "m")
  45516. },
  45517. {
  45518. name: "Macro",
  45519. height: math.unit(150, "m")
  45520. },
  45521. {
  45522. name: "Bigger Macro",
  45523. height: math.unit(300, "m")
  45524. },
  45525. ]
  45526. ))
  45527. characterMakers.push(() => makeCharacter(
  45528. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45529. {
  45530. side: {
  45531. height: math.unit(8 + 2/12, "feet"),
  45532. weight: math.unit(1, "tonne"),
  45533. name: "Side",
  45534. image: {
  45535. source: "./media/characters/rylide/side.svg",
  45536. extra: 1318/1034,
  45537. bottom: 106/1424
  45538. }
  45539. },
  45540. sitting: {
  45541. height: math.unit(303, "cm"),
  45542. weight: math.unit(1, "tonne"),
  45543. name: "Sitting",
  45544. image: {
  45545. source: "./media/characters/rylide/sitting.svg",
  45546. extra: 1303/1103,
  45547. bottom: 36/1339
  45548. }
  45549. },
  45550. },
  45551. [
  45552. {
  45553. name: "Normal",
  45554. height: math.unit(8 + 2/12, "feet"),
  45555. default: true
  45556. },
  45557. ]
  45558. ))
  45559. characterMakers.push(() => makeCharacter(
  45560. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45561. {
  45562. front: {
  45563. height: math.unit(5 + 10/12, "feet"),
  45564. weight: math.unit(160, "lb"),
  45565. name: "Front",
  45566. image: {
  45567. source: "./media/characters/pudask/front.svg",
  45568. extra: 1616/1590,
  45569. bottom: 161/1777
  45570. }
  45571. },
  45572. },
  45573. [
  45574. {
  45575. name: "Ferret Height",
  45576. height: math.unit(2 + 5/12, "feet")
  45577. },
  45578. {
  45579. name: "Canon Height",
  45580. height: math.unit(5 + 10/12, "feet"),
  45581. default: true
  45582. },
  45583. ]
  45584. ))
  45585. characterMakers.push(() => makeCharacter(
  45586. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45587. {
  45588. front: {
  45589. height: math.unit(3 + 6/12, "feet"),
  45590. weight: math.unit(60, "lb"),
  45591. name: "Front",
  45592. image: {
  45593. source: "./media/characters/ramita/front.svg",
  45594. extra: 1402/1232,
  45595. bottom: 62/1464
  45596. }
  45597. },
  45598. dressed: {
  45599. height: math.unit(3 + 6/12, "feet"),
  45600. weight: math.unit(60, "lb"),
  45601. name: "Dressed",
  45602. image: {
  45603. source: "./media/characters/ramita/dressed.svg",
  45604. extra: 1534/1249,
  45605. bottom: 50/1584
  45606. }
  45607. },
  45608. },
  45609. [
  45610. {
  45611. name: "Normal",
  45612. height: math.unit(3 + 6/12, "feet"),
  45613. default: true
  45614. },
  45615. ]
  45616. ))
  45617. characterMakers.push(() => makeCharacter(
  45618. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45619. {
  45620. front: {
  45621. height: math.unit(8, "feet"),
  45622. name: "Front",
  45623. image: {
  45624. source: "./media/characters/ark/front.svg",
  45625. extra: 772/693,
  45626. bottom: 45/817
  45627. }
  45628. },
  45629. },
  45630. [
  45631. {
  45632. name: "Normal",
  45633. height: math.unit(8, "feet"),
  45634. default: true
  45635. },
  45636. ]
  45637. ))
  45638. characterMakers.push(() => makeCharacter(
  45639. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45640. {
  45641. front: {
  45642. height: math.unit(6, "feet"),
  45643. weight: math.unit(250, "lb"),
  45644. volume: math.unit(5/8, "gallons"),
  45645. name: "Front",
  45646. image: {
  45647. source: "./media/characters/ludwig-horn/front.svg",
  45648. extra: 1782/1635,
  45649. bottom: 96/1878
  45650. }
  45651. },
  45652. back: {
  45653. height: math.unit(6, "feet"),
  45654. weight: math.unit(250, "lb"),
  45655. volume: math.unit(5/8, "gallons"),
  45656. name: "Back",
  45657. image: {
  45658. source: "./media/characters/ludwig-horn/back.svg",
  45659. extra: 1874/1729,
  45660. bottom: 27/1901
  45661. }
  45662. },
  45663. dick: {
  45664. height: math.unit(1.05, "feet"),
  45665. weight: math.unit(15, "lb"),
  45666. volume: math.unit(5/8, "gallons"),
  45667. name: "Dick",
  45668. image: {
  45669. source: "./media/characters/ludwig-horn/dick.svg"
  45670. }
  45671. },
  45672. },
  45673. [
  45674. {
  45675. name: "Small",
  45676. height: math.unit(6, "feet")
  45677. },
  45678. {
  45679. name: "Typical",
  45680. height: math.unit(12, "feet"),
  45681. default: true
  45682. },
  45683. {
  45684. name: "Building",
  45685. height: math.unit(80, "feet")
  45686. },
  45687. {
  45688. name: "Town",
  45689. height: math.unit(800, "feet")
  45690. },
  45691. {
  45692. name: "Kingdom",
  45693. height: math.unit(80000, "feet")
  45694. },
  45695. {
  45696. name: "Planet",
  45697. height: math.unit(8000000, "feet")
  45698. },
  45699. {
  45700. name: "Universe",
  45701. height: math.unit(8000000000, "feet")
  45702. },
  45703. {
  45704. name: "Transcended",
  45705. height: math.unit(8e27, "feet")
  45706. },
  45707. ]
  45708. ))
  45709. characterMakers.push(() => makeCharacter(
  45710. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45711. {
  45712. front: {
  45713. height: math.unit(5, "feet"),
  45714. weight: math.unit(50, "kg"),
  45715. name: "Front",
  45716. image: {
  45717. source: "./media/characters/biot-avery/front.svg",
  45718. extra: 1295/1232,
  45719. bottom: 86/1381
  45720. }
  45721. },
  45722. },
  45723. [
  45724. {
  45725. name: "Normal",
  45726. height: math.unit(5, "feet"),
  45727. default: true
  45728. },
  45729. ]
  45730. ))
  45731. characterMakers.push(() => makeCharacter(
  45732. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45733. {
  45734. front: {
  45735. height: math.unit(6, "feet"),
  45736. name: "Front",
  45737. image: {
  45738. source: "./media/characters/kitsune-kiro/front.svg",
  45739. extra: 1270/1158,
  45740. bottom: 42/1312
  45741. }
  45742. },
  45743. frontAlt: {
  45744. height: math.unit(6, "feet"),
  45745. name: "Front-alt",
  45746. image: {
  45747. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45748. extra: 1130/1081,
  45749. bottom: 36/1166
  45750. }
  45751. },
  45752. },
  45753. [
  45754. {
  45755. name: "Smol",
  45756. height: math.unit(3, "feet")
  45757. },
  45758. {
  45759. name: "Normal",
  45760. height: math.unit(6, "feet"),
  45761. default: true
  45762. },
  45763. ]
  45764. ))
  45765. characterMakers.push(() => makeCharacter(
  45766. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45767. {
  45768. front: {
  45769. height: math.unit(6, "feet"),
  45770. weight: math.unit(125, "lb"),
  45771. name: "Front",
  45772. image: {
  45773. source: "./media/characters/jack-thatcher/front.svg",
  45774. extra: 1474/1370,
  45775. bottom: 26/1500
  45776. }
  45777. },
  45778. back: {
  45779. height: math.unit(6, "feet"),
  45780. weight: math.unit(125, "lb"),
  45781. name: "Back",
  45782. image: {
  45783. source: "./media/characters/jack-thatcher/back.svg",
  45784. extra: 1489/1384,
  45785. bottom: 18/1507
  45786. }
  45787. },
  45788. },
  45789. [
  45790. {
  45791. name: "Normal",
  45792. height: math.unit(6, "feet"),
  45793. default: true
  45794. },
  45795. {
  45796. name: "Macro",
  45797. height: math.unit(75, "feet")
  45798. },
  45799. {
  45800. name: "Macro-er",
  45801. height: math.unit(250, "feet")
  45802. },
  45803. ]
  45804. ))
  45805. characterMakers.push(() => makeCharacter(
  45806. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45807. {
  45808. front: {
  45809. height: math.unit(7, "feet"),
  45810. weight: math.unit(110, "kg"),
  45811. name: "Front",
  45812. image: {
  45813. source: "./media/characters/max-hyper/front.svg",
  45814. extra: 1969/1881,
  45815. bottom: 49/2018
  45816. }
  45817. },
  45818. },
  45819. [
  45820. {
  45821. name: "Normal",
  45822. height: math.unit(7, "feet"),
  45823. default: true
  45824. },
  45825. ]
  45826. ))
  45827. characterMakers.push(() => makeCharacter(
  45828. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45829. {
  45830. front: {
  45831. height: math.unit(5 + 5/12, "feet"),
  45832. weight: math.unit(160, "lb"),
  45833. name: "Front",
  45834. image: {
  45835. source: "./media/characters/spook/front.svg",
  45836. extra: 794/791,
  45837. bottom: 54/848
  45838. }
  45839. },
  45840. back: {
  45841. height: math.unit(5 + 5/12, "feet"),
  45842. weight: math.unit(160, "lb"),
  45843. name: "Back",
  45844. image: {
  45845. source: "./media/characters/spook/back.svg",
  45846. extra: 812/798,
  45847. bottom: 32/844
  45848. }
  45849. },
  45850. },
  45851. [
  45852. {
  45853. name: "Normal",
  45854. height: math.unit(5 + 5/12, "feet"),
  45855. default: true
  45856. },
  45857. ]
  45858. ))
  45859. characterMakers.push(() => makeCharacter(
  45860. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45861. {
  45862. front: {
  45863. height: math.unit(18, "feet"),
  45864. name: "Front",
  45865. image: {
  45866. source: "./media/characters/xeaduulix/front.svg",
  45867. extra: 1380/1166,
  45868. bottom: 110/1490
  45869. }
  45870. },
  45871. back: {
  45872. height: math.unit(18, "feet"),
  45873. name: "Back",
  45874. image: {
  45875. source: "./media/characters/xeaduulix/back.svg",
  45876. extra: 1592/1170,
  45877. bottom: 128/1720
  45878. }
  45879. },
  45880. frontNsfw: {
  45881. height: math.unit(18, "feet"),
  45882. name: "Front (NSFW)",
  45883. image: {
  45884. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45885. extra: 1380/1166,
  45886. bottom: 110/1490
  45887. }
  45888. },
  45889. backNsfw: {
  45890. height: math.unit(18, "feet"),
  45891. name: "Back (NSFW)",
  45892. image: {
  45893. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45894. extra: 1592/1170,
  45895. bottom: 128/1720
  45896. }
  45897. },
  45898. },
  45899. [
  45900. {
  45901. name: "Normal",
  45902. height: math.unit(18, "feet"),
  45903. default: true
  45904. },
  45905. ]
  45906. ))
  45907. characterMakers.push(() => makeCharacter(
  45908. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45909. {
  45910. spreadWings: {
  45911. height: math.unit(20, "feet"),
  45912. name: "Spread Wings",
  45913. image: {
  45914. source: "./media/characters/fledge/spread-wings.svg",
  45915. extra: 693/635,
  45916. bottom: 26/719
  45917. }
  45918. },
  45919. front: {
  45920. height: math.unit(20, "feet"),
  45921. name: "Front",
  45922. image: {
  45923. source: "./media/characters/fledge/front.svg",
  45924. extra: 684/637,
  45925. bottom: 18/702
  45926. }
  45927. },
  45928. frontAlt: {
  45929. height: math.unit(20, "feet"),
  45930. name: "Front (Alt)",
  45931. image: {
  45932. source: "./media/characters/fledge/front-alt.svg",
  45933. extra: 708/664,
  45934. bottom: 13/721
  45935. }
  45936. },
  45937. back: {
  45938. height: math.unit(20, "feet"),
  45939. name: "Back",
  45940. image: {
  45941. source: "./media/characters/fledge/back.svg",
  45942. extra: 718/634,
  45943. bottom: 22/740
  45944. }
  45945. },
  45946. head: {
  45947. height: math.unit(5.55, "feet"),
  45948. name: "Head",
  45949. image: {
  45950. source: "./media/characters/fledge/head.svg"
  45951. }
  45952. },
  45953. headAlt: {
  45954. height: math.unit(5.1, "feet"),
  45955. name: "Head (Alt)",
  45956. image: {
  45957. source: "./media/characters/fledge/head-alt.svg"
  45958. }
  45959. },
  45960. },
  45961. [
  45962. {
  45963. name: "Small",
  45964. height: math.unit(6 + 2/12, "feet")
  45965. },
  45966. {
  45967. name: "Big",
  45968. height: math.unit(20, "feet"),
  45969. default: true
  45970. },
  45971. {
  45972. name: "Giant",
  45973. height: math.unit(100, "feet")
  45974. },
  45975. {
  45976. name: "Macro",
  45977. height: math.unit(200, "feet")
  45978. },
  45979. ]
  45980. ))
  45981. characterMakers.push(() => makeCharacter(
  45982. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45983. {
  45984. front: {
  45985. height: math.unit(1, "meter"),
  45986. name: "Front",
  45987. image: {
  45988. source: "./media/characters/atlas-morenai/front.svg",
  45989. extra: 1275/1043,
  45990. bottom: 19/1294
  45991. }
  45992. },
  45993. back: {
  45994. height: math.unit(1, "meter"),
  45995. name: "Back",
  45996. image: {
  45997. source: "./media/characters/atlas-morenai/back.svg",
  45998. extra: 1141/1001,
  45999. bottom: 25/1166
  46000. }
  46001. },
  46002. },
  46003. [
  46004. {
  46005. name: "Normal",
  46006. height: math.unit(1, "meter"),
  46007. default: true
  46008. },
  46009. {
  46010. name: "Magic-Infused",
  46011. height: math.unit(5, "meters")
  46012. },
  46013. ]
  46014. ))
  46015. characterMakers.push(() => makeCharacter(
  46016. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46017. {
  46018. front: {
  46019. height: math.unit(5, "meters"),
  46020. name: "Front",
  46021. image: {
  46022. source: "./media/characters/cintia/front.svg",
  46023. extra: 1312/1228,
  46024. bottom: 38/1350
  46025. }
  46026. },
  46027. back: {
  46028. height: math.unit(5, "meters"),
  46029. name: "Back",
  46030. image: {
  46031. source: "./media/characters/cintia/back.svg",
  46032. extra: 1260/1166,
  46033. bottom: 98/1358
  46034. }
  46035. },
  46036. frontDick: {
  46037. height: math.unit(5, "meters"),
  46038. name: "Front (Dick)",
  46039. image: {
  46040. source: "./media/characters/cintia/front-dick.svg",
  46041. extra: 1312/1228,
  46042. bottom: 38/1350
  46043. }
  46044. },
  46045. backDick: {
  46046. height: math.unit(5, "meters"),
  46047. name: "Back (Dick)",
  46048. image: {
  46049. source: "./media/characters/cintia/back-dick.svg",
  46050. extra: 1260/1166,
  46051. bottom: 98/1358
  46052. }
  46053. },
  46054. bust: {
  46055. height: math.unit(1.97, "meters"),
  46056. name: "Bust",
  46057. image: {
  46058. source: "./media/characters/cintia/bust.svg",
  46059. extra: 617/565,
  46060. bottom: 0/617
  46061. }
  46062. },
  46063. },
  46064. [
  46065. {
  46066. name: "Normal",
  46067. height: math.unit(5, "meters"),
  46068. default: true
  46069. },
  46070. ]
  46071. ))
  46072. characterMakers.push(() => makeCharacter(
  46073. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46074. {
  46075. side: {
  46076. height: math.unit(100, "feet"),
  46077. name: "Side",
  46078. image: {
  46079. source: "./media/characters/denora/side.svg",
  46080. extra: 875/803,
  46081. bottom: 9/884
  46082. }
  46083. },
  46084. },
  46085. [
  46086. {
  46087. name: "Standard",
  46088. height: math.unit(100, "feet"),
  46089. default: true
  46090. },
  46091. {
  46092. name: "Grand",
  46093. height: math.unit(1000, "feet")
  46094. },
  46095. {
  46096. name: "Conquering",
  46097. height: math.unit(10000, "feet")
  46098. },
  46099. ]
  46100. ))
  46101. characterMakers.push(() => makeCharacter(
  46102. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46103. {
  46104. dressed: {
  46105. height: math.unit(8 + 5/12, "feet"),
  46106. weight: math.unit(700, "lb"),
  46107. name: "Dressed",
  46108. image: {
  46109. source: "./media/characters/kiva/dressed.svg",
  46110. extra: 1102/1055,
  46111. bottom: 60/1162
  46112. }
  46113. },
  46114. nude: {
  46115. height: math.unit(8 + 5/12, "feet"),
  46116. weight: math.unit(700, "lb"),
  46117. name: "Nude",
  46118. image: {
  46119. source: "./media/characters/kiva/nude.svg",
  46120. extra: 1102/1055,
  46121. bottom: 60/1162
  46122. }
  46123. },
  46124. },
  46125. [
  46126. {
  46127. name: "Base Height",
  46128. height: math.unit(8 + 5/12, "feet"),
  46129. default: true
  46130. },
  46131. {
  46132. name: "Macro",
  46133. height: math.unit(100, "feet")
  46134. },
  46135. {
  46136. name: "Max",
  46137. height: math.unit(3280, "feet")
  46138. },
  46139. ]
  46140. ))
  46141. characterMakers.push(() => makeCharacter(
  46142. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46143. {
  46144. front: {
  46145. height: math.unit(6 + 8/12, "feet"),
  46146. weight: math.unit(250, "lb"),
  46147. name: "Front",
  46148. image: {
  46149. source: "./media/characters/ztragon/front.svg",
  46150. extra: 1825/1684,
  46151. bottom: 98/1923
  46152. }
  46153. },
  46154. },
  46155. [
  46156. {
  46157. name: "Normal",
  46158. height: math.unit(6 + 8/12, "feet"),
  46159. default: true
  46160. },
  46161. {
  46162. name: "Macro",
  46163. height: math.unit(80, "feet")
  46164. },
  46165. ]
  46166. ))
  46167. characterMakers.push(() => makeCharacter(
  46168. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46169. {
  46170. front: {
  46171. height: math.unit(10.4, "feet"),
  46172. weight: math.unit(2, "tons"),
  46173. name: "Front",
  46174. image: {
  46175. source: "./media/characters/yesenia/front.svg",
  46176. extra: 1479/1474,
  46177. bottom: 233/1712
  46178. }
  46179. },
  46180. },
  46181. [
  46182. {
  46183. name: "Normal",
  46184. height: math.unit(10.4, "feet"),
  46185. default: true
  46186. },
  46187. ]
  46188. ))
  46189. characterMakers.push(() => makeCharacter(
  46190. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46191. {
  46192. normal: {
  46193. height: math.unit(6 + 1/12, "feet"),
  46194. weight: math.unit(180, "lb"),
  46195. name: "Normal",
  46196. image: {
  46197. source: "./media/characters/leanne-lycheborne/normal.svg",
  46198. extra: 1748/1660,
  46199. bottom: 98/1846
  46200. }
  46201. },
  46202. were: {
  46203. height: math.unit(12, "feet"),
  46204. weight: math.unit(1600, "lb"),
  46205. name: "Were",
  46206. image: {
  46207. source: "./media/characters/leanne-lycheborne/were.svg",
  46208. extra: 1485/1432,
  46209. bottom: 66/1551
  46210. }
  46211. },
  46212. },
  46213. [
  46214. {
  46215. name: "Normal",
  46216. height: math.unit(6 + 1/12, "feet"),
  46217. default: true
  46218. },
  46219. ]
  46220. ))
  46221. characterMakers.push(() => makeCharacter(
  46222. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46223. {
  46224. side: {
  46225. height: math.unit(13, "feet"),
  46226. name: "Side",
  46227. image: {
  46228. source: "./media/characters/kira-tyler/side.svg",
  46229. extra: 693/393,
  46230. bottom: 58/751
  46231. }
  46232. },
  46233. },
  46234. [
  46235. {
  46236. name: "Normal",
  46237. height: math.unit(13, "feet"),
  46238. default: true
  46239. },
  46240. ]
  46241. ))
  46242. characterMakers.push(() => makeCharacter(
  46243. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46244. {
  46245. front: {
  46246. height: math.unit(10.3, "feet"),
  46247. weight: math.unit(150, "lb"),
  46248. name: "Front",
  46249. image: {
  46250. source: "./media/characters/blaze/front.svg",
  46251. extra: 1378/1286,
  46252. bottom: 172/1550
  46253. }
  46254. },
  46255. },
  46256. [
  46257. {
  46258. name: "Normal",
  46259. height: math.unit(10.3, "feet"),
  46260. default: true
  46261. },
  46262. ]
  46263. ))
  46264. characterMakers.push(() => makeCharacter(
  46265. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46266. {
  46267. side: {
  46268. height: math.unit(2, "meters"),
  46269. weight: math.unit(400, "kg"),
  46270. name: "Side",
  46271. image: {
  46272. source: "./media/characters/anu/side.svg",
  46273. extra: 506/394,
  46274. bottom: 18/524
  46275. }
  46276. },
  46277. },
  46278. [
  46279. {
  46280. name: "Humanoid",
  46281. height: math.unit(2, "meters")
  46282. },
  46283. {
  46284. name: "Normal",
  46285. height: math.unit(5, "meters"),
  46286. default: true
  46287. },
  46288. ]
  46289. ))
  46290. characterMakers.push(() => makeCharacter(
  46291. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46292. {
  46293. front: {
  46294. height: math.unit(5 + 5/12, "feet"),
  46295. weight: math.unit(170, "lb"),
  46296. name: "Front",
  46297. image: {
  46298. source: "./media/characters/synx-the-lynx/front.svg",
  46299. extra: 1893/1745,
  46300. bottom: 17/1910
  46301. }
  46302. },
  46303. side: {
  46304. height: math.unit(5 + 5/12, "feet"),
  46305. weight: math.unit(170, "lb"),
  46306. name: "Side",
  46307. image: {
  46308. source: "./media/characters/synx-the-lynx/side.svg",
  46309. extra: 1884/1740,
  46310. bottom: 39/1923
  46311. }
  46312. },
  46313. back: {
  46314. height: math.unit(5 + 5/12, "feet"),
  46315. weight: math.unit(170, "lb"),
  46316. name: "Back",
  46317. image: {
  46318. source: "./media/characters/synx-the-lynx/back.svg",
  46319. extra: 1903/1755,
  46320. bottom: 14/1917
  46321. }
  46322. },
  46323. },
  46324. [
  46325. {
  46326. name: "Normal",
  46327. height: math.unit(5 + 5/12, "feet"),
  46328. default: true
  46329. },
  46330. ]
  46331. ))
  46332. characterMakers.push(() => makeCharacter(
  46333. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46334. {
  46335. back: {
  46336. height: math.unit(15, "feet"),
  46337. name: "Back",
  46338. image: {
  46339. source: "./media/characters/nadezda-fex/back.svg",
  46340. extra: 1695/1481,
  46341. bottom: 25/1720
  46342. }
  46343. },
  46344. },
  46345. [
  46346. {
  46347. name: "Normal",
  46348. height: math.unit(15, "feet"),
  46349. default: true
  46350. },
  46351. {
  46352. name: "Macro",
  46353. height: math.unit(2.5, "miles")
  46354. },
  46355. {
  46356. name: "Goddess",
  46357. height: math.unit(2, "multiverses")
  46358. },
  46359. ]
  46360. ))
  46361. characterMakers.push(() => makeCharacter(
  46362. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46363. {
  46364. front: {
  46365. height: math.unit(216, "cm"),
  46366. name: "Front",
  46367. image: {
  46368. source: "./media/characters/lev/front.svg",
  46369. extra: 1728/1670,
  46370. bottom: 82/1810
  46371. }
  46372. },
  46373. back: {
  46374. height: math.unit(216, "cm"),
  46375. name: "Back",
  46376. image: {
  46377. source: "./media/characters/lev/back.svg",
  46378. extra: 1738/1675,
  46379. bottom: 24/1762
  46380. }
  46381. },
  46382. dressed: {
  46383. height: math.unit(216, "cm"),
  46384. name: "Dressed",
  46385. image: {
  46386. source: "./media/characters/lev/dressed.svg",
  46387. extra: 1397/1351,
  46388. bottom: 73/1470
  46389. }
  46390. },
  46391. head: {
  46392. height: math.unit(0.51, "meter"),
  46393. name: "Head",
  46394. image: {
  46395. source: "./media/characters/lev/head.svg"
  46396. }
  46397. },
  46398. },
  46399. [
  46400. {
  46401. name: "Normal",
  46402. height: math.unit(216, "cm"),
  46403. default: true
  46404. },
  46405. {
  46406. name: "Relatively Macro",
  46407. height: math.unit(80, "meters")
  46408. },
  46409. {
  46410. name: "Megamacro",
  46411. height: math.unit(21600, "meters")
  46412. },
  46413. {
  46414. name: "Megamacro+",
  46415. height: math.unit(64800, "meters")
  46416. },
  46417. ]
  46418. ))
  46419. characterMakers.push(() => makeCharacter(
  46420. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46421. {
  46422. front: {
  46423. height: math.unit(2, "meters"),
  46424. weight: math.unit(80, "kg"),
  46425. name: "Front",
  46426. image: {
  46427. source: "./media/characters/moka/front.svg",
  46428. extra: 1337/1255,
  46429. bottom: 58/1395
  46430. }
  46431. },
  46432. },
  46433. [
  46434. {
  46435. name: "Micro",
  46436. height: math.unit(15, "cm")
  46437. },
  46438. {
  46439. name: "Normal",
  46440. height: math.unit(2, "meters"),
  46441. default: true
  46442. },
  46443. {
  46444. name: "Macro",
  46445. height: math.unit(20, "meters"),
  46446. },
  46447. ]
  46448. ))
  46449. characterMakers.push(() => makeCharacter(
  46450. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46451. {
  46452. front: {
  46453. height: math.unit(9, "feet"),
  46454. weight: math.unit(240, "lb"),
  46455. name: "Front",
  46456. image: {
  46457. source: "./media/characters/kuzco/front.svg",
  46458. extra: 1593/1487,
  46459. bottom: 32/1625
  46460. }
  46461. },
  46462. side: {
  46463. height: math.unit(9, "feet"),
  46464. weight: math.unit(240, "lb"),
  46465. name: "Side",
  46466. image: {
  46467. source: "./media/characters/kuzco/side.svg",
  46468. extra: 1575/1485,
  46469. bottom: 30/1605
  46470. }
  46471. },
  46472. back: {
  46473. height: math.unit(9, "feet"),
  46474. weight: math.unit(240, "lb"),
  46475. name: "Back",
  46476. image: {
  46477. source: "./media/characters/kuzco/back.svg",
  46478. extra: 1603/1514,
  46479. bottom: 14/1617
  46480. }
  46481. },
  46482. },
  46483. [
  46484. {
  46485. name: "Normal",
  46486. height: math.unit(9, "feet"),
  46487. default: true
  46488. },
  46489. ]
  46490. ))
  46491. characterMakers.push(() => makeCharacter(
  46492. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46493. {
  46494. side: {
  46495. height: math.unit(2, "meters"),
  46496. weight: math.unit(300, "kg"),
  46497. name: "Side",
  46498. image: {
  46499. source: "./media/characters/ceruleus/side.svg",
  46500. extra: 1068/974,
  46501. bottom: 126/1194
  46502. }
  46503. },
  46504. },
  46505. [
  46506. {
  46507. name: "Normal",
  46508. height: math.unit(16, "meters"),
  46509. default: true
  46510. },
  46511. ]
  46512. ))
  46513. characterMakers.push(() => makeCharacter(
  46514. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46515. {
  46516. front: {
  46517. height: math.unit(9, "feet"),
  46518. weight: math.unit(500, "kg"),
  46519. name: "Front",
  46520. image: {
  46521. source: "./media/characters/acouya/front.svg",
  46522. extra: 1660/1473,
  46523. bottom: 28/1688
  46524. }
  46525. },
  46526. },
  46527. [
  46528. {
  46529. name: "Normal",
  46530. height: math.unit(9, "feet"),
  46531. default: true
  46532. },
  46533. ]
  46534. ))
  46535. characterMakers.push(() => makeCharacter(
  46536. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46537. {
  46538. front: {
  46539. height: math.unit(5 + 6/12, "feet"),
  46540. weight: math.unit(195, "lb"),
  46541. name: "Front",
  46542. image: {
  46543. source: "./media/characters/vant/front.svg",
  46544. extra: 1396/1320,
  46545. bottom: 20/1416
  46546. }
  46547. },
  46548. back: {
  46549. height: math.unit(5 + 6/12, "feet"),
  46550. weight: math.unit(195, "lb"),
  46551. name: "Back",
  46552. image: {
  46553. source: "./media/characters/vant/back.svg",
  46554. extra: 1396/1320,
  46555. bottom: 20/1416
  46556. }
  46557. },
  46558. maw: {
  46559. height: math.unit(0.75, "feet"),
  46560. name: "Maw",
  46561. image: {
  46562. source: "./media/characters/vant/maw.svg"
  46563. }
  46564. },
  46565. paw: {
  46566. height: math.unit(1.07, "feet"),
  46567. name: "Paw",
  46568. image: {
  46569. source: "./media/characters/vant/paw.svg"
  46570. }
  46571. },
  46572. },
  46573. [
  46574. {
  46575. name: "Micro",
  46576. height: math.unit(0.25, "inches")
  46577. },
  46578. {
  46579. name: "Normal",
  46580. height: math.unit(5 + 6/12, "feet"),
  46581. default: true
  46582. },
  46583. {
  46584. name: "Macro",
  46585. height: math.unit(75, "feet")
  46586. },
  46587. ]
  46588. ))
  46589. characterMakers.push(() => makeCharacter(
  46590. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46591. {
  46592. front: {
  46593. height: math.unit(30, "meters"),
  46594. weight: math.unit(363, "tons"),
  46595. name: "Front",
  46596. image: {
  46597. source: "./media/characters/ahra/front.svg",
  46598. extra: 1914/1814,
  46599. bottom: 46/1960
  46600. }
  46601. },
  46602. },
  46603. [
  46604. {
  46605. name: "Macro",
  46606. height: math.unit(30, "meters"),
  46607. default: true
  46608. },
  46609. ]
  46610. ))
  46611. characterMakers.push(() => makeCharacter(
  46612. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46613. {
  46614. undressed: {
  46615. height: math.unit(2, "m"),
  46616. weight: math.unit(250, "kg"),
  46617. name: "Undressed",
  46618. image: {
  46619. source: "./media/characters/coriander/undressed.svg",
  46620. extra: 1757/1606,
  46621. bottom: 107/1864
  46622. }
  46623. },
  46624. dressed: {
  46625. height: math.unit(2, "m"),
  46626. weight: math.unit(250, "kg"),
  46627. name: "Dressed",
  46628. image: {
  46629. source: "./media/characters/coriander/dressed.svg",
  46630. extra: 1757/1606,
  46631. bottom: 107/1864
  46632. }
  46633. },
  46634. },
  46635. [
  46636. {
  46637. name: "Normal",
  46638. height: math.unit(4, "meters"),
  46639. default: true
  46640. },
  46641. {
  46642. name: "XL",
  46643. height: math.unit(6, "meters")
  46644. },
  46645. {
  46646. name: "XXL",
  46647. height: math.unit(8, "meters")
  46648. },
  46649. ]
  46650. ))
  46651. characterMakers.push(() => makeCharacter(
  46652. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46653. {
  46654. front: {
  46655. height: math.unit(6, "feet"),
  46656. name: "Front",
  46657. image: {
  46658. source: "./media/characters/syrinx/front.svg",
  46659. extra: 1557/1259,
  46660. bottom: 171/1728
  46661. }
  46662. },
  46663. },
  46664. [
  46665. {
  46666. name: "Normal",
  46667. height: math.unit(6 + 3/12, "feet"),
  46668. default: true
  46669. },
  46670. ]
  46671. ))
  46672. characterMakers.push(() => makeCharacter(
  46673. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46674. {
  46675. front: {
  46676. height: math.unit(11 + 6/12, "feet"),
  46677. weight: math.unit(1.5, "tons"),
  46678. name: "Front",
  46679. image: {
  46680. source: "./media/characters/bor/front.svg",
  46681. extra: 1189/1109,
  46682. bottom: 170/1359
  46683. }
  46684. },
  46685. },
  46686. [
  46687. {
  46688. name: "Normal",
  46689. height: math.unit(11 + 6/12, "feet"),
  46690. default: true
  46691. },
  46692. {
  46693. name: "Macro",
  46694. height: math.unit(32 + 9/12, "feet")
  46695. },
  46696. ]
  46697. ))
  46698. characterMakers.push(() => makeCharacter(
  46699. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46700. {
  46701. anthro: {
  46702. height: math.unit(9, "feet"),
  46703. weight: math.unit(2076, "lb"),
  46704. name: "Anthro",
  46705. image: {
  46706. source: "./media/characters/abacus/anthro.svg",
  46707. extra: 1540/1494,
  46708. bottom: 233/1773
  46709. }
  46710. },
  46711. pigeon: {
  46712. height: math.unit(1, "feet"),
  46713. name: "Pigeon",
  46714. image: {
  46715. source: "./media/characters/abacus/pigeon.svg",
  46716. extra: 528/525,
  46717. bottom: 46/574
  46718. }
  46719. },
  46720. },
  46721. [
  46722. {
  46723. name: "Normal",
  46724. height: math.unit(9, "feet"),
  46725. default: true
  46726. },
  46727. ]
  46728. ))
  46729. characterMakers.push(() => makeCharacter(
  46730. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46731. {
  46732. side: {
  46733. height: math.unit(6, "feet"),
  46734. name: "Side",
  46735. image: {
  46736. source: "./media/characters/delkhan/side.svg",
  46737. extra: 1884/1786,
  46738. bottom: 308/2192
  46739. }
  46740. },
  46741. head: {
  46742. height: math.unit(3.38, "feet"),
  46743. name: "Head",
  46744. image: {
  46745. source: "./media/characters/delkhan/head.svg"
  46746. }
  46747. },
  46748. },
  46749. [
  46750. {
  46751. name: "Normal",
  46752. height: math.unit(72, "feet"),
  46753. default: true
  46754. },
  46755. {
  46756. name: "Giant",
  46757. height: math.unit(172, "feet")
  46758. },
  46759. ]
  46760. ))
  46761. characterMakers.push(() => makeCharacter(
  46762. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46763. {
  46764. standing: {
  46765. height: math.unit(6, "feet"),
  46766. name: "Standing",
  46767. image: {
  46768. source: "./media/characters/euchidat/standing.svg",
  46769. extra: 1612/1553,
  46770. bottom: 116/1728
  46771. }
  46772. },
  46773. leaning: {
  46774. height: math.unit(6, "feet"),
  46775. name: "Leaning",
  46776. image: {
  46777. source: "./media/characters/euchidat/leaning.svg",
  46778. extra: 1719/1674,
  46779. bottom: 27/1746
  46780. }
  46781. },
  46782. },
  46783. [
  46784. {
  46785. name: "Normal",
  46786. height: math.unit(175, "feet"),
  46787. default: true
  46788. },
  46789. {
  46790. name: "Megamacro",
  46791. height: math.unit(190, "miles")
  46792. },
  46793. {
  46794. name: "Gigamacro",
  46795. height: math.unit(190000, "miles")
  46796. },
  46797. ]
  46798. ))
  46799. characterMakers.push(() => makeCharacter(
  46800. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46801. {
  46802. front: {
  46803. height: math.unit(6, "feet"),
  46804. weight: math.unit(150, "lb"),
  46805. name: "Front",
  46806. image: {
  46807. source: "./media/characters/rebecca-stack/front.svg",
  46808. extra: 1256/1201,
  46809. bottom: 18/1274
  46810. }
  46811. },
  46812. },
  46813. [
  46814. {
  46815. name: "Normal",
  46816. height: math.unit(5 + 8/12, "feet"),
  46817. default: true
  46818. },
  46819. {
  46820. name: "Demolitionist",
  46821. height: math.unit(200, "feet")
  46822. },
  46823. {
  46824. name: "Out of Control",
  46825. height: math.unit(2, "miles")
  46826. },
  46827. {
  46828. name: "Giga",
  46829. height: math.unit(7200, "miles")
  46830. },
  46831. ]
  46832. ))
  46833. characterMakers.push(() => makeCharacter(
  46834. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46835. {
  46836. front: {
  46837. height: math.unit(6, "feet"),
  46838. weight: math.unit(150, "lb"),
  46839. name: "Front",
  46840. image: {
  46841. source: "./media/characters/jenny-cartwright/front.svg",
  46842. extra: 1384/1376,
  46843. bottom: 58/1442
  46844. }
  46845. },
  46846. },
  46847. [
  46848. {
  46849. name: "Normal",
  46850. height: math.unit(6 + 7/12, "feet"),
  46851. default: true
  46852. },
  46853. {
  46854. name: "Librarian",
  46855. height: math.unit(55, "feet")
  46856. },
  46857. {
  46858. name: "Sightseer",
  46859. height: math.unit(50, "miles")
  46860. },
  46861. {
  46862. name: "Giga",
  46863. height: math.unit(30000, "miles")
  46864. },
  46865. ]
  46866. ))
  46867. characterMakers.push(() => makeCharacter(
  46868. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46869. {
  46870. nude: {
  46871. height: math.unit(8, "feet"),
  46872. weight: math.unit(225, "lb"),
  46873. name: "Nude",
  46874. image: {
  46875. source: "./media/characters/marvy/nude.svg",
  46876. extra: 1900/1683,
  46877. bottom: 89/1989
  46878. }
  46879. },
  46880. dressed: {
  46881. height: math.unit(8, "feet"),
  46882. weight: math.unit(225, "lb"),
  46883. name: "Dressed",
  46884. image: {
  46885. source: "./media/characters/marvy/dressed.svg",
  46886. extra: 1900/1683,
  46887. bottom: 89/1989
  46888. }
  46889. },
  46890. head: {
  46891. height: math.unit(2.85, "feet"),
  46892. name: "Head",
  46893. image: {
  46894. source: "./media/characters/marvy/head.svg"
  46895. }
  46896. },
  46897. },
  46898. [
  46899. {
  46900. name: "Normal",
  46901. height: math.unit(8, "feet"),
  46902. default: true
  46903. },
  46904. ]
  46905. ))
  46906. characterMakers.push(() => makeCharacter(
  46907. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46908. {
  46909. front: {
  46910. height: math.unit(8, "feet"),
  46911. weight: math.unit(250, "lb"),
  46912. name: "Front",
  46913. image: {
  46914. source: "./media/characters/leah/front.svg",
  46915. extra: 1257/1149,
  46916. bottom: 109/1366
  46917. }
  46918. },
  46919. },
  46920. [
  46921. {
  46922. name: "Normal",
  46923. height: math.unit(8, "feet"),
  46924. default: true
  46925. },
  46926. {
  46927. name: "Minimacro",
  46928. height: math.unit(40, "feet")
  46929. },
  46930. {
  46931. name: "Macro",
  46932. height: math.unit(124, "feet")
  46933. },
  46934. {
  46935. name: "Megamacro",
  46936. height: math.unit(850, "feet")
  46937. },
  46938. ]
  46939. ))
  46940. characterMakers.push(() => makeCharacter(
  46941. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46942. {
  46943. side: {
  46944. height: math.unit(13 + 6/12, "feet"),
  46945. weight: math.unit(3200, "lb"),
  46946. name: "Side",
  46947. image: {
  46948. source: "./media/characters/alvir/side.svg",
  46949. extra: 896/589,
  46950. bottom: 26/922
  46951. }
  46952. },
  46953. },
  46954. [
  46955. {
  46956. name: "Normal",
  46957. height: math.unit(13 + 6/12, "feet"),
  46958. default: true
  46959. },
  46960. ]
  46961. ))
  46962. characterMakers.push(() => makeCharacter(
  46963. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46964. {
  46965. front: {
  46966. height: math.unit(5 + 4/12, "feet"),
  46967. weight: math.unit(236, "lb"),
  46968. name: "Front",
  46969. image: {
  46970. source: "./media/characters/zaina-khalil/front.svg",
  46971. extra: 1533/1485,
  46972. bottom: 94/1627
  46973. }
  46974. },
  46975. side: {
  46976. height: math.unit(5 + 4/12, "feet"),
  46977. weight: math.unit(236, "lb"),
  46978. name: "Side",
  46979. image: {
  46980. source: "./media/characters/zaina-khalil/side.svg",
  46981. extra: 1537/1498,
  46982. bottom: 66/1603
  46983. }
  46984. },
  46985. back: {
  46986. height: math.unit(5 + 4/12, "feet"),
  46987. weight: math.unit(236, "lb"),
  46988. name: "Back",
  46989. image: {
  46990. source: "./media/characters/zaina-khalil/back.svg",
  46991. extra: 1546/1494,
  46992. bottom: 89/1635
  46993. }
  46994. },
  46995. },
  46996. [
  46997. {
  46998. name: "Normal",
  46999. height: math.unit(5 + 4/12, "feet"),
  47000. default: true
  47001. },
  47002. ]
  47003. ))
  47004. characterMakers.push(() => makeCharacter(
  47005. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47006. {
  47007. side: {
  47008. height: math.unit(12, "feet"),
  47009. weight: math.unit(4000, "lb"),
  47010. name: "Side",
  47011. image: {
  47012. source: "./media/characters/terry/side.svg",
  47013. extra: 1518/1439,
  47014. bottom: 149/1667
  47015. }
  47016. },
  47017. },
  47018. [
  47019. {
  47020. name: "Normal",
  47021. height: math.unit(12, "feet"),
  47022. default: true
  47023. },
  47024. ]
  47025. ))
  47026. characterMakers.push(() => makeCharacter(
  47027. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47028. {
  47029. front: {
  47030. height: math.unit(12, "feet"),
  47031. weight: math.unit(1500, "lb"),
  47032. name: "Front",
  47033. image: {
  47034. source: "./media/characters/kahea/front.svg",
  47035. extra: 1722/1617,
  47036. bottom: 179/1901
  47037. }
  47038. },
  47039. },
  47040. [
  47041. {
  47042. name: "Normal",
  47043. height: math.unit(12, "feet"),
  47044. default: true
  47045. },
  47046. ]
  47047. ))
  47048. characterMakers.push(() => makeCharacter(
  47049. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47050. {
  47051. demonFront: {
  47052. height: math.unit(36, "feet"),
  47053. name: "Front",
  47054. image: {
  47055. source: "./media/characters/alex-xuria/demon-front.svg",
  47056. extra: 1705/1673,
  47057. bottom: 198/1903
  47058. },
  47059. form: "demon",
  47060. default: true
  47061. },
  47062. demonBack: {
  47063. height: math.unit(36, "feet"),
  47064. name: "Back",
  47065. image: {
  47066. source: "./media/characters/alex-xuria/demon-back.svg",
  47067. extra: 1725/1693,
  47068. bottom: 70/1795
  47069. },
  47070. form: "demon"
  47071. },
  47072. demonHead: {
  47073. height: math.unit(2.14, "meters"),
  47074. name: "Head",
  47075. image: {
  47076. source: "./media/characters/alex-xuria/demon-head.svg"
  47077. },
  47078. form: "demon"
  47079. },
  47080. demonHand: {
  47081. height: math.unit(1.61, "meters"),
  47082. name: "Hand",
  47083. image: {
  47084. source: "./media/characters/alex-xuria/demon-hand.svg"
  47085. },
  47086. form: "demon"
  47087. },
  47088. demonPaw: {
  47089. height: math.unit(1.35, "meters"),
  47090. name: "Paw",
  47091. image: {
  47092. source: "./media/characters/alex-xuria/demon-paw.svg"
  47093. },
  47094. form: "demon"
  47095. },
  47096. demonFoot: {
  47097. height: math.unit(2.2, "meters"),
  47098. name: "Foot",
  47099. image: {
  47100. source: "./media/characters/alex-xuria/demon-foot.svg"
  47101. },
  47102. form: "demon"
  47103. },
  47104. demonCock: {
  47105. height: math.unit(1.74, "meters"),
  47106. name: "Cock",
  47107. image: {
  47108. source: "./media/characters/alex-xuria/demon-cock.svg"
  47109. },
  47110. form: "demon"
  47111. },
  47112. demonTailClosed: {
  47113. height: math.unit(1.47, "meters"),
  47114. name: "Tail (Closed)",
  47115. image: {
  47116. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47117. },
  47118. form: "demon"
  47119. },
  47120. demonTailOpen: {
  47121. height: math.unit(2.85, "meters"),
  47122. name: "Tail (Open)",
  47123. image: {
  47124. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47125. },
  47126. form: "demon"
  47127. },
  47128. incubusFront: {
  47129. height: math.unit(12, "feet"),
  47130. name: "Front",
  47131. image: {
  47132. source: "./media/characters/alex-xuria/incubus-front.svg",
  47133. extra: 1754/1677,
  47134. bottom: 125/1879
  47135. },
  47136. form: "incubus",
  47137. default: true
  47138. },
  47139. incubusBack: {
  47140. height: math.unit(12, "feet"),
  47141. name: "Back",
  47142. image: {
  47143. source: "./media/characters/alex-xuria/incubus-back.svg",
  47144. extra: 1702/1647,
  47145. bottom: 30/1732
  47146. },
  47147. form: "incubus"
  47148. },
  47149. incubusHead: {
  47150. height: math.unit(3.45, "feet"),
  47151. name: "Head",
  47152. image: {
  47153. source: "./media/characters/alex-xuria/incubus-head.svg"
  47154. },
  47155. form: "incubus"
  47156. },
  47157. rabbitFront: {
  47158. height: math.unit(6, "feet"),
  47159. name: "Front",
  47160. image: {
  47161. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47162. extra: 1369/1349,
  47163. bottom: 45/1414
  47164. },
  47165. form: "rabbit",
  47166. default: true
  47167. },
  47168. rabbitSide: {
  47169. height: math.unit(6, "feet"),
  47170. name: "Side",
  47171. image: {
  47172. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47173. extra: 1370/1356,
  47174. bottom: 37/1407
  47175. },
  47176. form: "rabbit"
  47177. },
  47178. rabbitBack: {
  47179. height: math.unit(6, "feet"),
  47180. name: "Back",
  47181. image: {
  47182. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47183. extra: 1375/1358,
  47184. bottom: 43/1418
  47185. },
  47186. form: "rabbit"
  47187. },
  47188. },
  47189. [
  47190. {
  47191. name: "Normal",
  47192. height: math.unit(6, "feet"),
  47193. default: true,
  47194. form: "rabbit"
  47195. },
  47196. {
  47197. name: "Incubus",
  47198. height: math.unit(12, "feet"),
  47199. default: true,
  47200. form: "incubus"
  47201. },
  47202. {
  47203. name: "Demon",
  47204. height: math.unit(36, "feet"),
  47205. default: true,
  47206. form: "demon"
  47207. }
  47208. ],
  47209. {
  47210. "demon": {
  47211. name: "Demon",
  47212. default: true
  47213. },
  47214. "incubus": {
  47215. name: "Incubus",
  47216. },
  47217. "rabbit": {
  47218. name: "Rabbit"
  47219. }
  47220. }
  47221. ))
  47222. characterMakers.push(() => makeCharacter(
  47223. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47224. {
  47225. front: {
  47226. height: math.unit(7 + 5/12, "feet"),
  47227. weight: math.unit(510, "lb"),
  47228. name: "Front",
  47229. image: {
  47230. source: "./media/characters/syrup/front.svg",
  47231. extra: 932/916,
  47232. bottom: 26/958
  47233. }
  47234. },
  47235. },
  47236. [
  47237. {
  47238. name: "Normal",
  47239. height: math.unit(7 + 5/12, "feet"),
  47240. default: true
  47241. },
  47242. {
  47243. name: "Big",
  47244. height: math.unit(50, "feet")
  47245. },
  47246. {
  47247. name: "Macro",
  47248. height: math.unit(300, "feet")
  47249. },
  47250. {
  47251. name: "Megamacro",
  47252. height: math.unit(1, "mile")
  47253. },
  47254. ]
  47255. ))
  47256. characterMakers.push(() => makeCharacter(
  47257. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47258. {
  47259. front: {
  47260. height: math.unit(6 + 9/12, "feet"),
  47261. name: "Front",
  47262. image: {
  47263. source: "./media/characters/zeimne/front.svg",
  47264. extra: 1969/1806,
  47265. bottom: 53/2022
  47266. }
  47267. },
  47268. },
  47269. [
  47270. {
  47271. name: "Normal",
  47272. height: math.unit(6 + 9/12, "feet"),
  47273. default: true
  47274. },
  47275. {
  47276. name: "Giant",
  47277. height: math.unit(550, "feet")
  47278. },
  47279. {
  47280. name: "Mega",
  47281. height: math.unit(3, "miles")
  47282. },
  47283. {
  47284. name: "Giga",
  47285. height: math.unit(250, "miles")
  47286. },
  47287. {
  47288. name: "Tera",
  47289. height: math.unit(1, "AU")
  47290. },
  47291. ]
  47292. ))
  47293. characterMakers.push(() => makeCharacter(
  47294. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47295. {
  47296. front: {
  47297. height: math.unit(5 + 2/12, "feet"),
  47298. name: "Front",
  47299. image: {
  47300. source: "./media/characters/grar/front.svg",
  47301. extra: 1331/1119,
  47302. bottom: 60/1391
  47303. }
  47304. },
  47305. back: {
  47306. height: math.unit(5 + 2/12, "feet"),
  47307. name: "Back",
  47308. image: {
  47309. source: "./media/characters/grar/back.svg",
  47310. extra: 1385/1169,
  47311. bottom: 23/1408
  47312. }
  47313. },
  47314. },
  47315. [
  47316. {
  47317. name: "Normal",
  47318. height: math.unit(5 + 2/12, "feet"),
  47319. default: true
  47320. },
  47321. ]
  47322. ))
  47323. characterMakers.push(() => makeCharacter(
  47324. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47325. {
  47326. front: {
  47327. height: math.unit(13 + 7/12, "feet"),
  47328. weight: math.unit(2200, "lb"),
  47329. name: "Front",
  47330. image: {
  47331. source: "./media/characters/endraya/front.svg",
  47332. extra: 1289/1215,
  47333. bottom: 50/1339
  47334. }
  47335. },
  47336. nude: {
  47337. height: math.unit(13 + 7/12, "feet"),
  47338. weight: math.unit(2200, "lb"),
  47339. name: "Nude",
  47340. image: {
  47341. source: "./media/characters/endraya/nude.svg",
  47342. extra: 1247/1171,
  47343. bottom: 40/1287
  47344. }
  47345. },
  47346. head: {
  47347. height: math.unit(2.6, "feet"),
  47348. name: "Head",
  47349. image: {
  47350. source: "./media/characters/endraya/head.svg"
  47351. }
  47352. },
  47353. slit: {
  47354. height: math.unit(3.4, "feet"),
  47355. name: "Slit",
  47356. image: {
  47357. source: "./media/characters/endraya/slit.svg"
  47358. }
  47359. },
  47360. },
  47361. [
  47362. {
  47363. name: "Normal",
  47364. height: math.unit(13 + 7/12, "feet"),
  47365. default: true
  47366. },
  47367. {
  47368. name: "Macro",
  47369. height: math.unit(200, "feet")
  47370. },
  47371. ]
  47372. ))
  47373. characterMakers.push(() => makeCharacter(
  47374. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47375. {
  47376. front: {
  47377. height: math.unit(1.81, "meters"),
  47378. weight: math.unit(69, "kg"),
  47379. name: "Front",
  47380. image: {
  47381. source: "./media/characters/rodryana/front.svg",
  47382. extra: 2002/1921,
  47383. bottom: 53/2055
  47384. }
  47385. },
  47386. back: {
  47387. height: math.unit(1.81, "meters"),
  47388. weight: math.unit(69, "kg"),
  47389. name: "Back",
  47390. image: {
  47391. source: "./media/characters/rodryana/back.svg",
  47392. extra: 1993/1926,
  47393. bottom: 48/2041
  47394. }
  47395. },
  47396. maw: {
  47397. height: math.unit(0.19769417475, "meters"),
  47398. name: "Maw",
  47399. image: {
  47400. source: "./media/characters/rodryana/maw.svg"
  47401. }
  47402. },
  47403. slit: {
  47404. height: math.unit(0.31631067961, "meters"),
  47405. name: "Slit",
  47406. image: {
  47407. source: "./media/characters/rodryana/slit.svg"
  47408. }
  47409. },
  47410. },
  47411. [
  47412. {
  47413. name: "Normal",
  47414. height: math.unit(1.81, "meters")
  47415. },
  47416. {
  47417. name: "Mini Macro",
  47418. height: math.unit(181, "meters")
  47419. },
  47420. {
  47421. name: "Macro",
  47422. height: math.unit(452, "meters"),
  47423. default: true
  47424. },
  47425. {
  47426. name: "Mega Macro",
  47427. height: math.unit(1.375, "km")
  47428. },
  47429. {
  47430. name: "Giga Macro",
  47431. height: math.unit(13.575, "km")
  47432. },
  47433. ]
  47434. ))
  47435. characterMakers.push(() => makeCharacter(
  47436. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47437. {
  47438. front: {
  47439. height: math.unit(6, "feet"),
  47440. weight: math.unit(1000, "lb"),
  47441. name: "Front",
  47442. image: {
  47443. source: "./media/characters/asaya/front.svg",
  47444. extra: 1460/1200,
  47445. bottom: 71/1531
  47446. }
  47447. },
  47448. },
  47449. [
  47450. {
  47451. name: "Normal",
  47452. height: math.unit(8, "km"),
  47453. default: true
  47454. },
  47455. ]
  47456. ))
  47457. characterMakers.push(() => makeCharacter(
  47458. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47459. {
  47460. front: {
  47461. height: math.unit(3.5, "meters"),
  47462. name: "Front",
  47463. image: {
  47464. source: "./media/characters/sarzu-and-israz/front.svg",
  47465. extra: 1570/1558,
  47466. bottom: 150/1720
  47467. },
  47468. },
  47469. back: {
  47470. height: math.unit(3.5, "meters"),
  47471. name: "Back",
  47472. image: {
  47473. source: "./media/characters/sarzu-and-israz/back.svg",
  47474. extra: 1523/1509,
  47475. bottom: 132/1655
  47476. },
  47477. },
  47478. frontFemale: {
  47479. height: math.unit(3.5, "meters"),
  47480. name: "Front (Female)",
  47481. image: {
  47482. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47483. extra: 1570/1558,
  47484. bottom: 150/1720
  47485. },
  47486. },
  47487. frontHerm: {
  47488. height: math.unit(3.5, "meters"),
  47489. name: "Front (Herm)",
  47490. image: {
  47491. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47492. extra: 1570/1558,
  47493. bottom: 150/1720
  47494. },
  47495. },
  47496. },
  47497. [
  47498. {
  47499. name: "Normal",
  47500. height: math.unit(3.5, "meters"),
  47501. default: true,
  47502. },
  47503. {
  47504. name: "Macro",
  47505. height: math.unit(65.5, "meters"),
  47506. },
  47507. ],
  47508. ))
  47509. characterMakers.push(() => makeCharacter(
  47510. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47511. {
  47512. front: {
  47513. height: math.unit(6, "feet"),
  47514. weight: math.unit(250, "lb"),
  47515. name: "Front",
  47516. image: {
  47517. source: "./media/characters/zenimma/front.svg",
  47518. extra: 1346/1320,
  47519. bottom: 58/1404
  47520. }
  47521. },
  47522. back: {
  47523. height: math.unit(6, "feet"),
  47524. weight: math.unit(250, "lb"),
  47525. name: "Back",
  47526. image: {
  47527. source: "./media/characters/zenimma/back.svg",
  47528. extra: 1324/1308,
  47529. bottom: 44/1368
  47530. }
  47531. },
  47532. dick: {
  47533. height: math.unit(1.44, "feet"),
  47534. name: "Dick",
  47535. image: {
  47536. source: "./media/characters/zenimma/dick.svg"
  47537. }
  47538. },
  47539. },
  47540. [
  47541. {
  47542. name: "Canon Height",
  47543. height: math.unit(66, "miles"),
  47544. default: true
  47545. },
  47546. ]
  47547. ))
  47548. characterMakers.push(() => makeCharacter(
  47549. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47550. {
  47551. nude: {
  47552. height: math.unit(6, "feet"),
  47553. weight: math.unit(150, "lb"),
  47554. name: "Nude",
  47555. image: {
  47556. source: "./media/characters/shavon/nude.svg",
  47557. extra: 1242/1096,
  47558. bottom: 98/1340
  47559. }
  47560. },
  47561. dressed: {
  47562. height: math.unit(6, "feet"),
  47563. weight: math.unit(150, "lb"),
  47564. name: "Dressed",
  47565. image: {
  47566. source: "./media/characters/shavon/dressed.svg",
  47567. extra: 1242/1096,
  47568. bottom: 98/1340
  47569. }
  47570. },
  47571. },
  47572. [
  47573. {
  47574. name: "Macro",
  47575. height: math.unit(255, "feet"),
  47576. default: true
  47577. },
  47578. ]
  47579. ))
  47580. characterMakers.push(() => makeCharacter(
  47581. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47582. {
  47583. front: {
  47584. height: math.unit(6, "feet"),
  47585. name: "Front",
  47586. image: {
  47587. source: "./media/characters/steph/front.svg",
  47588. extra: 1430/1330,
  47589. bottom: 54/1484
  47590. }
  47591. },
  47592. },
  47593. [
  47594. {
  47595. name: "Normal",
  47596. height: math.unit(6, "feet"),
  47597. default: true
  47598. },
  47599. ]
  47600. ))
  47601. characterMakers.push(() => makeCharacter(
  47602. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47603. {
  47604. front: {
  47605. height: math.unit(9, "feet"),
  47606. weight: math.unit(400, "lb"),
  47607. name: "Front",
  47608. image: {
  47609. source: "./media/characters/kil'aman/front.svg",
  47610. extra: 1210/1159,
  47611. bottom: 109/1319
  47612. }
  47613. },
  47614. head: {
  47615. height: math.unit(2.14, "feet"),
  47616. name: "Head",
  47617. image: {
  47618. source: "./media/characters/kil'aman/head.svg"
  47619. }
  47620. },
  47621. maw: {
  47622. height: math.unit(1.21, "feet"),
  47623. name: "Maw",
  47624. image: {
  47625. source: "./media/characters/kil'aman/maw.svg"
  47626. }
  47627. },
  47628. foot: {
  47629. height: math.unit(1.7, "feet"),
  47630. name: "Foot",
  47631. image: {
  47632. source: "./media/characters/kil'aman/foot.svg"
  47633. }
  47634. },
  47635. dick: {
  47636. height: math.unit(2.1, "feet"),
  47637. name: "Dick",
  47638. image: {
  47639. source: "./media/characters/kil'aman/dick.svg"
  47640. }
  47641. },
  47642. },
  47643. [
  47644. {
  47645. name: "Normal",
  47646. height: math.unit(9, "feet")
  47647. },
  47648. {
  47649. name: "Canon Height",
  47650. height: math.unit(10, "miles"),
  47651. default: true
  47652. },
  47653. {
  47654. name: "Maximum",
  47655. height: math.unit(6e9, "miles")
  47656. },
  47657. ]
  47658. ))
  47659. characterMakers.push(() => makeCharacter(
  47660. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47661. {
  47662. front: {
  47663. height: math.unit(90, "feet"),
  47664. weight: math.unit(675000, "lb"),
  47665. name: "Front",
  47666. image: {
  47667. source: "./media/characters/qadan/front.svg",
  47668. extra: 1012/1004,
  47669. bottom: 78/1090
  47670. }
  47671. },
  47672. back: {
  47673. height: math.unit(90, "feet"),
  47674. weight: math.unit(675000, "lb"),
  47675. name: "Back",
  47676. image: {
  47677. source: "./media/characters/qadan/back.svg",
  47678. extra: 1042/1031,
  47679. bottom: 55/1097
  47680. }
  47681. },
  47682. armored: {
  47683. height: math.unit(90, "feet"),
  47684. weight: math.unit(675000, "lb"),
  47685. name: "Armored",
  47686. image: {
  47687. source: "./media/characters/qadan/armored.svg",
  47688. extra: 1047/1037,
  47689. bottom: 48/1095
  47690. }
  47691. },
  47692. },
  47693. [
  47694. {
  47695. name: "Normal",
  47696. height: math.unit(90, "feet"),
  47697. default: true
  47698. },
  47699. ]
  47700. ))
  47701. characterMakers.push(() => makeCharacter(
  47702. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47703. {
  47704. front: {
  47705. height: math.unit(6, "feet"),
  47706. weight: math.unit(225, "lb"),
  47707. name: "Front",
  47708. image: {
  47709. source: "./media/characters/brooke/front.svg",
  47710. extra: 1050/1010,
  47711. bottom: 66/1116
  47712. }
  47713. },
  47714. back: {
  47715. height: math.unit(6, "feet"),
  47716. weight: math.unit(225, "lb"),
  47717. name: "Back",
  47718. image: {
  47719. source: "./media/characters/brooke/back.svg",
  47720. extra: 1053/1013,
  47721. bottom: 41/1094
  47722. }
  47723. },
  47724. dressed: {
  47725. height: math.unit(6, "feet"),
  47726. weight: math.unit(225, "lb"),
  47727. name: "Dressed",
  47728. image: {
  47729. source: "./media/characters/brooke/dressed.svg",
  47730. extra: 1050/1010,
  47731. bottom: 66/1116
  47732. }
  47733. },
  47734. },
  47735. [
  47736. {
  47737. name: "Canon Height",
  47738. height: math.unit(500, "miles"),
  47739. default: true
  47740. },
  47741. ]
  47742. ))
  47743. characterMakers.push(() => makeCharacter(
  47744. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47745. {
  47746. front: {
  47747. height: math.unit(6 + 2/12, "feet"),
  47748. weight: math.unit(210, "lb"),
  47749. name: "Front",
  47750. image: {
  47751. source: "./media/characters/wubs/front.svg",
  47752. extra: 1345/1325,
  47753. bottom: 70/1415
  47754. }
  47755. },
  47756. back: {
  47757. height: math.unit(6 + 2/12, "feet"),
  47758. weight: math.unit(210, "lb"),
  47759. name: "Back",
  47760. image: {
  47761. source: "./media/characters/wubs/back.svg",
  47762. extra: 1296/1275,
  47763. bottom: 58/1354
  47764. }
  47765. },
  47766. },
  47767. [
  47768. {
  47769. name: "Normal",
  47770. height: math.unit(6 + 2/12, "feet"),
  47771. default: true
  47772. },
  47773. {
  47774. name: "Macro",
  47775. height: math.unit(1000, "feet")
  47776. },
  47777. {
  47778. name: "Megamacro",
  47779. height: math.unit(1, "mile")
  47780. },
  47781. ]
  47782. ))
  47783. characterMakers.push(() => makeCharacter(
  47784. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47785. {
  47786. front: {
  47787. height: math.unit(4, "feet"),
  47788. weight: math.unit(120, "lb"),
  47789. name: "Front",
  47790. image: {
  47791. source: "./media/characters/blue/front.svg",
  47792. extra: 1636/1525,
  47793. bottom: 43/1679
  47794. }
  47795. },
  47796. back: {
  47797. height: math.unit(4, "feet"),
  47798. weight: math.unit(120, "lb"),
  47799. name: "Back",
  47800. image: {
  47801. source: "./media/characters/blue/back.svg",
  47802. extra: 1660/1560,
  47803. bottom: 57/1717
  47804. }
  47805. },
  47806. paws: {
  47807. height: math.unit(0.826, "feet"),
  47808. name: "Paws",
  47809. image: {
  47810. source: "./media/characters/blue/paws.svg"
  47811. }
  47812. },
  47813. },
  47814. [
  47815. {
  47816. name: "Micro",
  47817. height: math.unit(3, "inches")
  47818. },
  47819. {
  47820. name: "Normal",
  47821. height: math.unit(4, "feet"),
  47822. default: true
  47823. },
  47824. {
  47825. name: "Femenine Form",
  47826. height: math.unit(14, "feet")
  47827. },
  47828. {
  47829. name: "Werebat Form",
  47830. height: math.unit(18, "feet")
  47831. },
  47832. ]
  47833. ))
  47834. characterMakers.push(() => makeCharacter(
  47835. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47836. {
  47837. female: {
  47838. height: math.unit(7 + 4/12, "feet"),
  47839. weight: math.unit(243, "lb"),
  47840. name: "Female",
  47841. image: {
  47842. source: "./media/characters/kaya/female.svg",
  47843. extra: 975/898,
  47844. bottom: 34/1009
  47845. }
  47846. },
  47847. herm: {
  47848. height: math.unit(7 + 4/12, "feet"),
  47849. weight: math.unit(243, "lb"),
  47850. name: "Herm",
  47851. image: {
  47852. source: "./media/characters/kaya/herm.svg",
  47853. extra: 975/898,
  47854. bottom: 34/1009
  47855. }
  47856. },
  47857. },
  47858. [
  47859. {
  47860. name: "Normal",
  47861. height: math.unit(7 + 4/12, "feet"),
  47862. default: true
  47863. },
  47864. ]
  47865. ))
  47866. characterMakers.push(() => makeCharacter(
  47867. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47868. {
  47869. female: {
  47870. height: math.unit(9 + 4/12, "feet"),
  47871. weight: math.unit(398, "lb"),
  47872. name: "Female",
  47873. image: {
  47874. source: "./media/characters/kassandra/female.svg",
  47875. extra: 908/839,
  47876. bottom: 61/969
  47877. }
  47878. },
  47879. intersex: {
  47880. height: math.unit(9 + 4/12, "feet"),
  47881. weight: math.unit(398, "lb"),
  47882. name: "Intersex",
  47883. image: {
  47884. source: "./media/characters/kassandra/intersex.svg",
  47885. extra: 908/839,
  47886. bottom: 61/969
  47887. }
  47888. },
  47889. },
  47890. [
  47891. {
  47892. name: "Normal",
  47893. height: math.unit(9 + 4/12, "feet"),
  47894. default: true
  47895. },
  47896. ]
  47897. ))
  47898. characterMakers.push(() => makeCharacter(
  47899. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47900. {
  47901. front: {
  47902. height: math.unit(3, "meters"),
  47903. name: "Front",
  47904. image: {
  47905. source: "./media/characters/amy/front.svg",
  47906. extra: 1380/1343,
  47907. bottom: 70/1450
  47908. }
  47909. },
  47910. back: {
  47911. height: math.unit(3, "meters"),
  47912. name: "Back",
  47913. image: {
  47914. source: "./media/characters/amy/back.svg",
  47915. extra: 1380/1347,
  47916. bottom: 66/1446
  47917. }
  47918. },
  47919. },
  47920. [
  47921. {
  47922. name: "Normal",
  47923. height: math.unit(3, "meters"),
  47924. default: true
  47925. },
  47926. ]
  47927. ))
  47928. characterMakers.push(() => makeCharacter(
  47929. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47930. {
  47931. side: {
  47932. height: math.unit(47, "cm"),
  47933. weight: math.unit(10.8, "kg"),
  47934. name: "Side",
  47935. image: {
  47936. source: "./media/characters/alphaschakal/side.svg",
  47937. extra: 1058/568,
  47938. bottom: 62/1120
  47939. }
  47940. },
  47941. back: {
  47942. height: math.unit(78, "cm"),
  47943. weight: math.unit(10.8, "kg"),
  47944. name: "Back",
  47945. image: {
  47946. source: "./media/characters/alphaschakal/back.svg",
  47947. extra: 1102/942,
  47948. bottom: 185/1287
  47949. }
  47950. },
  47951. head: {
  47952. height: math.unit(28, "cm"),
  47953. name: "Head",
  47954. image: {
  47955. source: "./media/characters/alphaschakal/head.svg",
  47956. extra: 696/508,
  47957. bottom: 0/696
  47958. }
  47959. },
  47960. paw: {
  47961. height: math.unit(16, "cm"),
  47962. name: "Paw",
  47963. image: {
  47964. source: "./media/characters/alphaschakal/paw.svg"
  47965. }
  47966. },
  47967. },
  47968. [
  47969. {
  47970. name: "Normal",
  47971. height: math.unit(47, "cm"),
  47972. default: true
  47973. },
  47974. {
  47975. name: "Macro",
  47976. height: math.unit(340, "cm")
  47977. },
  47978. ]
  47979. ))
  47980. characterMakers.push(() => makeCharacter(
  47981. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47982. {
  47983. front: {
  47984. height: math.unit(36, "earths"),
  47985. name: "Front",
  47986. image: {
  47987. source: "./media/characters/ecobyss/front.svg",
  47988. extra: 1282/1215,
  47989. bottom: 11/1293
  47990. }
  47991. },
  47992. back: {
  47993. height: math.unit(36, "earths"),
  47994. name: "Back",
  47995. image: {
  47996. source: "./media/characters/ecobyss/back.svg",
  47997. extra: 1291/1222,
  47998. bottom: 8/1299
  47999. }
  48000. },
  48001. },
  48002. [
  48003. {
  48004. name: "Normal",
  48005. height: math.unit(36, "earths"),
  48006. default: true
  48007. },
  48008. ]
  48009. ))
  48010. characterMakers.push(() => makeCharacter(
  48011. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48012. {
  48013. front: {
  48014. height: math.unit(12, "feet"),
  48015. name: "Front",
  48016. image: {
  48017. source: "./media/characters/vasuk/front.svg",
  48018. extra: 1326/1207,
  48019. bottom: 64/1390
  48020. }
  48021. },
  48022. },
  48023. [
  48024. {
  48025. name: "Normal",
  48026. height: math.unit(12, "feet"),
  48027. default: true
  48028. },
  48029. ]
  48030. ))
  48031. characterMakers.push(() => makeCharacter(
  48032. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48033. {
  48034. side: {
  48035. height: math.unit(100, "feet"),
  48036. name: "Side",
  48037. image: {
  48038. source: "./media/characters/linneaus/side.svg",
  48039. extra: 987/807,
  48040. bottom: 47/1034
  48041. }
  48042. },
  48043. },
  48044. [
  48045. {
  48046. name: "Macro",
  48047. height: math.unit(100, "feet"),
  48048. default: true
  48049. },
  48050. ]
  48051. ))
  48052. characterMakers.push(() => makeCharacter(
  48053. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48054. {
  48055. front: {
  48056. height: math.unit(8, "feet"),
  48057. weight: math.unit(1200, "lb"),
  48058. name: "Front",
  48059. image: {
  48060. source: "./media/characters/nyterious-daligdig/front.svg",
  48061. extra: 1284/1094,
  48062. bottom: 84/1368
  48063. }
  48064. },
  48065. back: {
  48066. height: math.unit(8, "feet"),
  48067. weight: math.unit(1200, "lb"),
  48068. name: "Back",
  48069. image: {
  48070. source: "./media/characters/nyterious-daligdig/back.svg",
  48071. extra: 1301/1121,
  48072. bottom: 129/1430
  48073. }
  48074. },
  48075. mouth: {
  48076. height: math.unit(1.464, "feet"),
  48077. name: "Mouth",
  48078. image: {
  48079. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48080. }
  48081. },
  48082. },
  48083. [
  48084. {
  48085. name: "Small",
  48086. height: math.unit(8, "feet"),
  48087. default: true
  48088. },
  48089. {
  48090. name: "Normal",
  48091. height: math.unit(15, "feet")
  48092. },
  48093. {
  48094. name: "Macro",
  48095. height: math.unit(90, "feet")
  48096. },
  48097. ]
  48098. ))
  48099. characterMakers.push(() => makeCharacter(
  48100. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48101. {
  48102. front: {
  48103. height: math.unit(7 + 4/12, "feet"),
  48104. weight: math.unit(252, "lb"),
  48105. name: "Front",
  48106. image: {
  48107. source: "./media/characters/bandel/front.svg",
  48108. extra: 1946/1775,
  48109. bottom: 26/1972
  48110. }
  48111. },
  48112. back: {
  48113. height: math.unit(7 + 4/12, "feet"),
  48114. weight: math.unit(252, "lb"),
  48115. name: "Back",
  48116. image: {
  48117. source: "./media/characters/bandel/back.svg",
  48118. extra: 1940/1770,
  48119. bottom: 25/1965
  48120. }
  48121. },
  48122. maw: {
  48123. height: math.unit(2.15, "feet"),
  48124. name: "Maw",
  48125. image: {
  48126. source: "./media/characters/bandel/maw.svg"
  48127. }
  48128. },
  48129. stomach: {
  48130. height: math.unit(1.95, "feet"),
  48131. name: "Stomach",
  48132. image: {
  48133. source: "./media/characters/bandel/stomach.svg"
  48134. }
  48135. },
  48136. },
  48137. [
  48138. {
  48139. name: "Normal",
  48140. height: math.unit(7 + 4/12, "feet"),
  48141. default: true
  48142. },
  48143. ]
  48144. ))
  48145. characterMakers.push(() => makeCharacter(
  48146. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48147. {
  48148. front: {
  48149. height: math.unit(10 + 5/12, "feet"),
  48150. weight: math.unit(773.5, "kg"),
  48151. name: "Front",
  48152. image: {
  48153. source: "./media/characters/zed/front.svg",
  48154. extra: 987/941,
  48155. bottom: 52/1039
  48156. }
  48157. },
  48158. },
  48159. [
  48160. {
  48161. name: "Short",
  48162. height: math.unit(5 + 4/12, "feet")
  48163. },
  48164. {
  48165. name: "Average",
  48166. height: math.unit(10 + 5/12, "feet"),
  48167. default: true
  48168. },
  48169. {
  48170. name: "Mini-Macro",
  48171. height: math.unit(24 + 9/12, "feet")
  48172. },
  48173. {
  48174. name: "Macro",
  48175. height: math.unit(249, "feet")
  48176. },
  48177. {
  48178. name: "Mega-Macro",
  48179. height: math.unit(12490, "feet")
  48180. },
  48181. {
  48182. name: "Giga-Macro",
  48183. height: math.unit(24.9, "miles")
  48184. },
  48185. {
  48186. name: "Tera-Macro",
  48187. height: math.unit(24900, "miles")
  48188. },
  48189. {
  48190. name: "Cosmic Scale",
  48191. height: math.unit(38.9, "lightyears")
  48192. },
  48193. {
  48194. name: "Universal Scale",
  48195. height: math.unit(138e12, "lightyears")
  48196. },
  48197. ]
  48198. ))
  48199. characterMakers.push(() => makeCharacter(
  48200. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48201. {
  48202. front: {
  48203. height: math.unit(1561, "inches"),
  48204. name: "Front",
  48205. image: {
  48206. source: "./media/characters/ivan/front.svg",
  48207. extra: 1126/1071,
  48208. bottom: 26/1152
  48209. }
  48210. },
  48211. back: {
  48212. height: math.unit(1561, "inches"),
  48213. name: "Back",
  48214. image: {
  48215. source: "./media/characters/ivan/back.svg",
  48216. extra: 1134/1079,
  48217. bottom: 30/1164
  48218. }
  48219. },
  48220. },
  48221. [
  48222. {
  48223. name: "Normal",
  48224. height: math.unit(1561, "inches"),
  48225. default: true
  48226. },
  48227. ]
  48228. ))
  48229. characterMakers.push(() => makeCharacter(
  48230. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48231. {
  48232. front: {
  48233. height: math.unit(5 + 7/12, "feet"),
  48234. weight: math.unit(150, "lb"),
  48235. name: "Front",
  48236. image: {
  48237. source: "./media/characters/robin-arctic-hare/front.svg",
  48238. extra: 1148/974,
  48239. bottom: 20/1168
  48240. }
  48241. },
  48242. },
  48243. [
  48244. {
  48245. name: "Normal",
  48246. height: math.unit(5 + 7/12, "feet"),
  48247. default: true
  48248. },
  48249. ]
  48250. ))
  48251. characterMakers.push(() => makeCharacter(
  48252. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48253. {
  48254. side: {
  48255. height: math.unit(5, "feet"),
  48256. name: "Side",
  48257. image: {
  48258. source: "./media/characters/birch/side.svg",
  48259. extra: 985/796,
  48260. bottom: 111/1096
  48261. }
  48262. },
  48263. },
  48264. [
  48265. {
  48266. name: "Normal",
  48267. height: math.unit(5, "feet"),
  48268. default: true
  48269. },
  48270. ]
  48271. ))
  48272. characterMakers.push(() => makeCharacter(
  48273. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48274. {
  48275. front: {
  48276. height: math.unit(4, "feet"),
  48277. name: "Front",
  48278. image: {
  48279. source: "./media/characters/rasp/front.svg",
  48280. extra: 561/478,
  48281. bottom: 74/635
  48282. }
  48283. },
  48284. },
  48285. [
  48286. {
  48287. name: "Normal",
  48288. height: math.unit(4, "feet"),
  48289. default: true
  48290. },
  48291. ]
  48292. ))
  48293. characterMakers.push(() => makeCharacter(
  48294. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48295. {
  48296. front: {
  48297. height: math.unit(4 + 6/12, "feet"),
  48298. name: "Front",
  48299. image: {
  48300. source: "./media/characters/agatha/front.svg",
  48301. extra: 947/933,
  48302. bottom: 42/989
  48303. }
  48304. },
  48305. back: {
  48306. height: math.unit(4 + 6/12, "feet"),
  48307. name: "Back",
  48308. image: {
  48309. source: "./media/characters/agatha/back.svg",
  48310. extra: 935/922,
  48311. bottom: 48/983
  48312. }
  48313. },
  48314. },
  48315. [
  48316. {
  48317. name: "Normal",
  48318. height: math.unit(4 + 6 /12, "feet"),
  48319. default: true
  48320. },
  48321. {
  48322. name: "Max Size",
  48323. height: math.unit(500, "feet")
  48324. },
  48325. ]
  48326. ))
  48327. characterMakers.push(() => makeCharacter(
  48328. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48329. {
  48330. side: {
  48331. height: math.unit(30, "feet"),
  48332. name: "Side",
  48333. image: {
  48334. source: "./media/characters/roggy/side.svg",
  48335. extra: 909/643,
  48336. bottom: 63/972
  48337. }
  48338. },
  48339. lounging: {
  48340. height: math.unit(20, "feet"),
  48341. name: "Lounging",
  48342. image: {
  48343. source: "./media/characters/roggy/lounging.svg",
  48344. extra: 643/479,
  48345. bottom: 145/788
  48346. }
  48347. },
  48348. handpaw: {
  48349. height: math.unit(13.1, "feet"),
  48350. name: "Handpaw",
  48351. image: {
  48352. source: "./media/characters/roggy/handpaw.svg"
  48353. }
  48354. },
  48355. footpaw: {
  48356. height: math.unit(15.8, "feet"),
  48357. name: "Footpaw",
  48358. image: {
  48359. source: "./media/characters/roggy/footpaw.svg"
  48360. }
  48361. },
  48362. },
  48363. [
  48364. {
  48365. name: "Menacing",
  48366. height: math.unit(30, "feet"),
  48367. default: true
  48368. },
  48369. ]
  48370. ))
  48371. characterMakers.push(() => makeCharacter(
  48372. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48373. {
  48374. front: {
  48375. height: math.unit(5 + 7/12, "feet"),
  48376. weight: math.unit(135, "lb"),
  48377. name: "Front",
  48378. image: {
  48379. source: "./media/characters/naomi/front.svg",
  48380. extra: 1209/1154,
  48381. bottom: 129/1338
  48382. }
  48383. },
  48384. back: {
  48385. height: math.unit(5 + 7/12, "feet"),
  48386. weight: math.unit(135, "lb"),
  48387. name: "Back",
  48388. image: {
  48389. source: "./media/characters/naomi/back.svg",
  48390. extra: 1252/1190,
  48391. bottom: 23/1275
  48392. }
  48393. },
  48394. },
  48395. [
  48396. {
  48397. name: "Normal",
  48398. height: math.unit(5 + 7 /12, "feet"),
  48399. default: true
  48400. },
  48401. ]
  48402. ))
  48403. characterMakers.push(() => makeCharacter(
  48404. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48405. {
  48406. side: {
  48407. height: math.unit(35, "meters"),
  48408. name: "Side",
  48409. image: {
  48410. source: "./media/characters/kimpi/side.svg",
  48411. extra: 419/382,
  48412. bottom: 63/482
  48413. }
  48414. },
  48415. hand: {
  48416. height: math.unit(8.96, "meters"),
  48417. name: "Hand",
  48418. image: {
  48419. source: "./media/characters/kimpi/hand.svg"
  48420. }
  48421. },
  48422. },
  48423. [
  48424. {
  48425. name: "Normal",
  48426. height: math.unit(35, "meters"),
  48427. default: true
  48428. },
  48429. ]
  48430. ))
  48431. characterMakers.push(() => makeCharacter(
  48432. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48433. {
  48434. front: {
  48435. height: math.unit(4 + 4/12, "feet"),
  48436. name: "Front",
  48437. image: {
  48438. source: "./media/characters/pepper-purrloin/front.svg",
  48439. extra: 1141/1024,
  48440. bottom: 21/1162
  48441. }
  48442. },
  48443. },
  48444. [
  48445. {
  48446. name: "Normal",
  48447. height: math.unit(4 + 4/12, "feet"),
  48448. default: true
  48449. },
  48450. ]
  48451. ))
  48452. characterMakers.push(() => makeCharacter(
  48453. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48454. {
  48455. front: {
  48456. height: math.unit(6 + 2/12, "feet"),
  48457. name: "Front",
  48458. image: {
  48459. source: "./media/characters/raphael/front.svg",
  48460. extra: 1101/962,
  48461. bottom: 59/1160
  48462. }
  48463. },
  48464. },
  48465. [
  48466. {
  48467. name: "Normal",
  48468. height: math.unit(6 + 2/12, "feet"),
  48469. default: true
  48470. },
  48471. ]
  48472. ))
  48473. characterMakers.push(() => makeCharacter(
  48474. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48475. {
  48476. front: {
  48477. height: math.unit(6, "feet"),
  48478. weight: math.unit(150, "lb"),
  48479. name: "Front",
  48480. image: {
  48481. source: "./media/characters/victor-williams/front.svg",
  48482. extra: 1894/1825,
  48483. bottom: 67/1961
  48484. }
  48485. },
  48486. },
  48487. [
  48488. {
  48489. name: "Normal",
  48490. height: math.unit(6, "feet"),
  48491. default: true
  48492. },
  48493. ]
  48494. ))
  48495. characterMakers.push(() => makeCharacter(
  48496. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48497. {
  48498. front: {
  48499. height: math.unit(5 + 8/12, "feet"),
  48500. weight: math.unit(150, "lb"),
  48501. name: "Front",
  48502. image: {
  48503. source: "./media/characters/rachel/front.svg",
  48504. extra: 1902/1787,
  48505. bottom: 46/1948
  48506. }
  48507. },
  48508. },
  48509. [
  48510. {
  48511. name: "Base Height",
  48512. height: math.unit(5 + 8/12, "feet"),
  48513. default: true
  48514. },
  48515. {
  48516. name: "Macro",
  48517. height: math.unit(200, "feet")
  48518. },
  48519. {
  48520. name: "Mega Macro",
  48521. height: math.unit(1, "mile")
  48522. },
  48523. {
  48524. name: "Giga Macro",
  48525. height: math.unit(1500, "miles")
  48526. },
  48527. {
  48528. name: "Tera Macro",
  48529. height: math.unit(8000, "miles")
  48530. },
  48531. {
  48532. name: "Tera Macro+",
  48533. height: math.unit(2e5, "miles")
  48534. },
  48535. ]
  48536. ))
  48537. characterMakers.push(() => makeCharacter(
  48538. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48539. {
  48540. front: {
  48541. height: math.unit(6.5, "feet"),
  48542. name: "Front",
  48543. image: {
  48544. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48545. extra: 860/819,
  48546. bottom: 307/1167
  48547. }
  48548. },
  48549. back: {
  48550. height: math.unit(6.5, "feet"),
  48551. name: "Back",
  48552. image: {
  48553. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48554. extra: 880/837,
  48555. bottom: 395/1275
  48556. }
  48557. },
  48558. sleeping: {
  48559. height: math.unit(2.79, "feet"),
  48560. name: "Sleeping",
  48561. image: {
  48562. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48563. extra: 465/383,
  48564. bottom: 263/728
  48565. }
  48566. },
  48567. maw: {
  48568. height: math.unit(2.52, "feet"),
  48569. name: "Maw",
  48570. image: {
  48571. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48572. }
  48573. },
  48574. },
  48575. [
  48576. {
  48577. name: "Normal",
  48578. height: math.unit(6.5, "feet"),
  48579. default: true
  48580. },
  48581. ]
  48582. ))
  48583. characterMakers.push(() => makeCharacter(
  48584. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48585. {
  48586. front: {
  48587. height: math.unit(5, "feet"),
  48588. name: "Front",
  48589. image: {
  48590. source: "./media/characters/nova-nerium/front.svg",
  48591. extra: 1548/1392,
  48592. bottom: 374/1922
  48593. }
  48594. },
  48595. back: {
  48596. height: math.unit(5, "feet"),
  48597. name: "Back",
  48598. image: {
  48599. source: "./media/characters/nova-nerium/back.svg",
  48600. extra: 1658/1468,
  48601. bottom: 257/1915
  48602. }
  48603. },
  48604. },
  48605. [
  48606. {
  48607. name: "Normal",
  48608. height: math.unit(5, "feet"),
  48609. default: true
  48610. },
  48611. ]
  48612. ))
  48613. characterMakers.push(() => makeCharacter(
  48614. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48615. {
  48616. front: {
  48617. height: math.unit(5 + 4/12, "feet"),
  48618. name: "Front",
  48619. image: {
  48620. source: "./media/characters/ashe-pyriph/front.svg",
  48621. extra: 1935/1747,
  48622. bottom: 60/1995
  48623. }
  48624. },
  48625. },
  48626. [
  48627. {
  48628. name: "Normal",
  48629. height: math.unit(5 + 4/12, "feet"),
  48630. default: true
  48631. },
  48632. ]
  48633. ))
  48634. characterMakers.push(() => makeCharacter(
  48635. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48636. {
  48637. front: {
  48638. height: math.unit(8.7, "feet"),
  48639. name: "Front",
  48640. image: {
  48641. source: "./media/characters/flicker-wisp/front.svg",
  48642. extra: 1835/1613,
  48643. bottom: 449/2284
  48644. }
  48645. },
  48646. side: {
  48647. height: math.unit(8.7, "feet"),
  48648. name: "Side",
  48649. image: {
  48650. source: "./media/characters/flicker-wisp/side.svg",
  48651. extra: 1841/1642,
  48652. bottom: 336/2177
  48653. },
  48654. default: true
  48655. },
  48656. maw: {
  48657. height: math.unit(3.35, "feet"),
  48658. name: "Maw",
  48659. image: {
  48660. source: "./media/characters/flicker-wisp/maw.svg",
  48661. extra: 2338/1506,
  48662. bottom: 0/2338
  48663. }
  48664. },
  48665. ovipositor: {
  48666. height: math.unit(4.95, "feet"),
  48667. name: "Ovipositor",
  48668. image: {
  48669. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48670. }
  48671. },
  48672. egg: {
  48673. height: math.unit(0.385, "feet"),
  48674. weight: math.unit(2, "lb"),
  48675. name: "Egg",
  48676. image: {
  48677. source: "./media/characters/flicker-wisp/egg.svg"
  48678. }
  48679. },
  48680. },
  48681. [
  48682. {
  48683. name: "Normal",
  48684. height: math.unit(8.7, "feet"),
  48685. default: true
  48686. },
  48687. ]
  48688. ))
  48689. characterMakers.push(() => makeCharacter(
  48690. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48691. {
  48692. side: {
  48693. height: math.unit(11, "feet"),
  48694. name: "Side",
  48695. image: {
  48696. source: "./media/characters/faefnul/side.svg",
  48697. extra: 1100/1007,
  48698. bottom: 0/1100
  48699. }
  48700. },
  48701. },
  48702. [
  48703. {
  48704. name: "Normal",
  48705. height: math.unit(11, "feet"),
  48706. default: true
  48707. },
  48708. ]
  48709. ))
  48710. characterMakers.push(() => makeCharacter(
  48711. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48712. {
  48713. front: {
  48714. height: math.unit(6 + 2/12, "feet"),
  48715. name: "Front",
  48716. image: {
  48717. source: "./media/characters/shady/front.svg",
  48718. extra: 502/461,
  48719. bottom: 9/511
  48720. }
  48721. },
  48722. kneeling: {
  48723. height: math.unit(4.6, "feet"),
  48724. name: "Kneeling",
  48725. image: {
  48726. source: "./media/characters/shady/kneeling.svg",
  48727. extra: 1328/1219,
  48728. bottom: 117/1445
  48729. }
  48730. },
  48731. maw: {
  48732. height: math.unit(2, "feet"),
  48733. name: "Maw",
  48734. image: {
  48735. source: "./media/characters/shady/maw.svg"
  48736. }
  48737. },
  48738. },
  48739. [
  48740. {
  48741. name: "Nano",
  48742. height: math.unit(1, "mm")
  48743. },
  48744. {
  48745. name: "Micro",
  48746. height: math.unit(12, "mm")
  48747. },
  48748. {
  48749. name: "Tiny",
  48750. height: math.unit(3, "inches")
  48751. },
  48752. {
  48753. name: "Normal",
  48754. height: math.unit(6 + 2/12, "feet"),
  48755. default: true
  48756. },
  48757. {
  48758. name: "Big",
  48759. height: math.unit(15, "feet")
  48760. },
  48761. {
  48762. name: "Macro",
  48763. height: math.unit(150, "feet")
  48764. },
  48765. {
  48766. name: "Titanic",
  48767. height: math.unit(500, "feet")
  48768. },
  48769. ]
  48770. ))
  48771. characterMakers.push(() => makeCharacter(
  48772. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48773. {
  48774. front: {
  48775. height: math.unit(12, "feet"),
  48776. name: "Front",
  48777. image: {
  48778. source: "./media/characters/fenrir/front.svg",
  48779. extra: 968/875,
  48780. bottom: 22/990
  48781. }
  48782. },
  48783. },
  48784. [
  48785. {
  48786. name: "Big",
  48787. height: math.unit(12, "feet"),
  48788. default: true
  48789. },
  48790. ]
  48791. ))
  48792. characterMakers.push(() => makeCharacter(
  48793. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48794. {
  48795. front: {
  48796. height: math.unit(5 + 4/12, "feet"),
  48797. name: "Front",
  48798. image: {
  48799. source: "./media/characters/makar/front.svg",
  48800. extra: 1181/1112,
  48801. bottom: 78/1259
  48802. }
  48803. },
  48804. },
  48805. [
  48806. {
  48807. name: "Normal",
  48808. height: math.unit(5 + 4/12, "feet"),
  48809. default: true
  48810. },
  48811. ]
  48812. ))
  48813. characterMakers.push(() => makeCharacter(
  48814. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48815. {
  48816. front: {
  48817. height: math.unit(5 + 7/12, "feet"),
  48818. name: "Front",
  48819. image: {
  48820. source: "./media/characters/callow/front.svg",
  48821. extra: 1482/1304,
  48822. bottom: 23/1505
  48823. }
  48824. },
  48825. back: {
  48826. height: math.unit(5 + 7/12, "feet"),
  48827. name: "Back",
  48828. image: {
  48829. source: "./media/characters/callow/back.svg",
  48830. extra: 1484/1296,
  48831. bottom: 25/1509
  48832. }
  48833. },
  48834. },
  48835. [
  48836. {
  48837. name: "Micro",
  48838. height: math.unit(3, "inches"),
  48839. default: true
  48840. },
  48841. {
  48842. name: "Normal",
  48843. height: math.unit(5 + 7/12, "feet")
  48844. },
  48845. ]
  48846. ))
  48847. characterMakers.push(() => makeCharacter(
  48848. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48849. {
  48850. front: {
  48851. height: math.unit(6 + 2/12, "feet"),
  48852. name: "Front",
  48853. image: {
  48854. source: "./media/characters/natel/front.svg",
  48855. extra: 1833/1692,
  48856. bottom: 166/1999
  48857. }
  48858. },
  48859. },
  48860. [
  48861. {
  48862. name: "Normal",
  48863. height: math.unit(6 + 2/12, "feet"),
  48864. default: true
  48865. },
  48866. ]
  48867. ))
  48868. characterMakers.push(() => makeCharacter(
  48869. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48870. {
  48871. front: {
  48872. height: math.unit(1.75, "meters"),
  48873. name: "Front",
  48874. image: {
  48875. source: "./media/characters/misu/front.svg",
  48876. extra: 1690/1558,
  48877. bottom: 234/1924
  48878. }
  48879. },
  48880. back: {
  48881. height: math.unit(1.75, "meters"),
  48882. name: "Back",
  48883. image: {
  48884. source: "./media/characters/misu/back.svg",
  48885. extra: 1762/1618,
  48886. bottom: 146/1908
  48887. }
  48888. },
  48889. frontNude: {
  48890. height: math.unit(1.75, "meters"),
  48891. name: "Front (Nude)",
  48892. image: {
  48893. source: "./media/characters/misu/front-nude.svg",
  48894. extra: 1690/1558,
  48895. bottom: 234/1924
  48896. }
  48897. },
  48898. backNude: {
  48899. height: math.unit(1.75, "meters"),
  48900. name: "Back (Nude)",
  48901. image: {
  48902. source: "./media/characters/misu/back-nude.svg",
  48903. extra: 1762/1618,
  48904. bottom: 146/1908
  48905. }
  48906. },
  48907. frontErect: {
  48908. height: math.unit(1.75, "meters"),
  48909. name: "Front (Erect)",
  48910. image: {
  48911. source: "./media/characters/misu/front-erect.svg",
  48912. extra: 1690/1558,
  48913. bottom: 234/1924
  48914. }
  48915. },
  48916. maw: {
  48917. height: math.unit(0.47, "meters"),
  48918. name: "Maw",
  48919. image: {
  48920. source: "./media/characters/misu/maw.svg"
  48921. }
  48922. },
  48923. head: {
  48924. height: math.unit(0.35, "meters"),
  48925. name: "Head",
  48926. image: {
  48927. source: "./media/characters/misu/head.svg"
  48928. }
  48929. },
  48930. rear: {
  48931. height: math.unit(0.47, "meters"),
  48932. name: "Rear",
  48933. image: {
  48934. source: "./media/characters/misu/rear.svg"
  48935. }
  48936. },
  48937. },
  48938. [
  48939. {
  48940. name: "Normal",
  48941. height: math.unit(1.75, "meters")
  48942. },
  48943. {
  48944. name: "Not good for the people",
  48945. height: math.unit(42, "meters")
  48946. },
  48947. {
  48948. name: "Not good for the neighborhood",
  48949. height: math.unit(135, "meters")
  48950. },
  48951. {
  48952. name: "Bit bigger problem",
  48953. height: math.unit(380, "meters"),
  48954. default: true
  48955. },
  48956. {
  48957. name: "Not good for the city",
  48958. height: math.unit(1.5, "km")
  48959. },
  48960. {
  48961. name: "Not good for the county",
  48962. height: math.unit(5.5, "km")
  48963. },
  48964. {
  48965. name: "Not good for the state",
  48966. height: math.unit(25, "km")
  48967. },
  48968. {
  48969. name: "Not good for the country",
  48970. height: math.unit(125, "km")
  48971. },
  48972. {
  48973. name: "Not good for the continent",
  48974. height: math.unit(2100, "km")
  48975. },
  48976. {
  48977. name: "Not good for the planet",
  48978. height: math.unit(35000, "km")
  48979. },
  48980. {
  48981. name: "Just no",
  48982. height: math.unit(8.5e18, "km")
  48983. },
  48984. ]
  48985. ))
  48986. characterMakers.push(() => makeCharacter(
  48987. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48988. {
  48989. front: {
  48990. height: math.unit(6.5, "feet"),
  48991. name: "Front",
  48992. image: {
  48993. source: "./media/characters/poppy/front.svg",
  48994. extra: 1878/1812,
  48995. bottom: 43/1921
  48996. }
  48997. },
  48998. feet: {
  48999. height: math.unit(1.06, "feet"),
  49000. name: "Feet",
  49001. image: {
  49002. source: "./media/characters/poppy/feet.svg",
  49003. extra: 1083/1083,
  49004. bottom: 87/1170
  49005. }
  49006. },
  49007. },
  49008. [
  49009. {
  49010. name: "Human",
  49011. height: math.unit(6.5, "feet")
  49012. },
  49013. {
  49014. name: "Default",
  49015. height: math.unit(300, "feet"),
  49016. default: true
  49017. },
  49018. {
  49019. name: "Huge",
  49020. height: math.unit(850, "feet")
  49021. },
  49022. {
  49023. name: "Mega",
  49024. height: math.unit(8000, "feet")
  49025. },
  49026. {
  49027. name: "Giga",
  49028. height: math.unit(300, "miles")
  49029. },
  49030. ]
  49031. ))
  49032. characterMakers.push(() => makeCharacter(
  49033. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49034. {
  49035. bipedal: {
  49036. height: math.unit(7, "feet"),
  49037. name: "Bipedal",
  49038. image: {
  49039. source: "./media/characters/zener/bipedal.svg",
  49040. extra: 874/805,
  49041. bottom: 109/983
  49042. }
  49043. },
  49044. quadrupedal: {
  49045. height: math.unit(4.64, "feet"),
  49046. name: "Quadrupedal",
  49047. image: {
  49048. source: "./media/characters/zener/quadrupedal.svg",
  49049. extra: 638/507,
  49050. bottom: 190/828
  49051. }
  49052. },
  49053. cock: {
  49054. height: math.unit(18, "inches"),
  49055. name: "Cock",
  49056. image: {
  49057. source: "./media/characters/zener/cock.svg"
  49058. }
  49059. },
  49060. },
  49061. [
  49062. {
  49063. name: "Normal",
  49064. height: math.unit(7, "feet"),
  49065. default: true
  49066. },
  49067. ]
  49068. ))
  49069. characterMakers.push(() => makeCharacter(
  49070. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49071. {
  49072. nude: {
  49073. height: math.unit(5 + 6/12, "feet"),
  49074. name: "Nude",
  49075. image: {
  49076. source: "./media/characters/charlie-dog/nude.svg",
  49077. extra: 768/734,
  49078. bottom: 26/794
  49079. }
  49080. },
  49081. dressed: {
  49082. height: math.unit(5 + 6/12, "feet"),
  49083. name: "Dressed",
  49084. image: {
  49085. source: "./media/characters/charlie-dog/dressed.svg",
  49086. extra: 768/734,
  49087. bottom: 26/794
  49088. }
  49089. },
  49090. },
  49091. [
  49092. {
  49093. name: "Normal",
  49094. height: math.unit(5 + 6/12, "feet"),
  49095. default: true
  49096. },
  49097. ]
  49098. ))
  49099. characterMakers.push(() => makeCharacter(
  49100. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49101. {
  49102. front: {
  49103. height: math.unit(6 + 4/12, "feet"),
  49104. name: "Front",
  49105. image: {
  49106. source: "./media/characters/ir'istrasz/front.svg",
  49107. extra: 1014/977,
  49108. bottom: 65/1079
  49109. }
  49110. },
  49111. back: {
  49112. height: math.unit(6 + 4/12, "feet"),
  49113. name: "Back",
  49114. image: {
  49115. source: "./media/characters/ir'istrasz/back.svg",
  49116. extra: 1024/992,
  49117. bottom: 34/1058
  49118. }
  49119. },
  49120. },
  49121. [
  49122. {
  49123. name: "Normal",
  49124. height: math.unit(6 + 4/12, "feet"),
  49125. default: true
  49126. },
  49127. ]
  49128. ))
  49129. characterMakers.push(() => makeCharacter(
  49130. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49131. {
  49132. front: {
  49133. height: math.unit(5 + 8/12, "feet"),
  49134. name: "Front",
  49135. image: {
  49136. source: "./media/characters/dee-ditto/front.svg",
  49137. extra: 1874/1785,
  49138. bottom: 68/1942
  49139. }
  49140. },
  49141. back: {
  49142. height: math.unit(5 + 8/12, "feet"),
  49143. name: "Back",
  49144. image: {
  49145. source: "./media/characters/dee-ditto/back.svg",
  49146. extra: 1870/1783,
  49147. bottom: 77/1947
  49148. }
  49149. },
  49150. },
  49151. [
  49152. {
  49153. name: "Normal",
  49154. height: math.unit(5 + 8/12, "feet"),
  49155. default: true
  49156. },
  49157. ]
  49158. ))
  49159. characterMakers.push(() => makeCharacter(
  49160. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49161. {
  49162. front: {
  49163. height: math.unit(7 + 6/12, "feet"),
  49164. name: "Front",
  49165. image: {
  49166. source: "./media/characters/fey/front.svg",
  49167. extra: 995/979,
  49168. bottom: 30/1025
  49169. }
  49170. },
  49171. back: {
  49172. height: math.unit(7 + 6/12, "feet"),
  49173. name: "Back",
  49174. image: {
  49175. source: "./media/characters/fey/back.svg",
  49176. extra: 1079/1008,
  49177. bottom: 5/1084
  49178. }
  49179. },
  49180. dressed: {
  49181. height: math.unit(7 + 6/12, "feet"),
  49182. name: "Dressed",
  49183. image: {
  49184. source: "./media/characters/fey/dressed.svg",
  49185. extra: 995/979,
  49186. bottom: 30/1025
  49187. }
  49188. },
  49189. },
  49190. [
  49191. {
  49192. name: "Normal",
  49193. height: math.unit(7 + 6/12, "feet"),
  49194. default: true
  49195. },
  49196. ]
  49197. ))
  49198. characterMakers.push(() => makeCharacter(
  49199. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49200. {
  49201. standing: {
  49202. height: math.unit(17, "feet"),
  49203. name: "Standing",
  49204. image: {
  49205. source: "./media/characters/aster/standing.svg",
  49206. extra: 1798/1598,
  49207. bottom: 117/1915
  49208. }
  49209. },
  49210. },
  49211. [
  49212. {
  49213. name: "Normal",
  49214. height: math.unit(17, "feet"),
  49215. default: true
  49216. },
  49217. {
  49218. name: "Homewrecker",
  49219. height: math.unit(95, "feet")
  49220. },
  49221. {
  49222. name: "Planet Devourer",
  49223. height: math.unit(1008000, "miles")
  49224. },
  49225. ]
  49226. ))
  49227. characterMakers.push(() => makeCharacter(
  49228. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49229. {
  49230. front: {
  49231. height: math.unit(6 + 5/12, "feet"),
  49232. weight: math.unit(265, "lb"),
  49233. name: "Front",
  49234. image: {
  49235. source: "./media/characters/devon-childs/front.svg",
  49236. extra: 1795/1721,
  49237. bottom: 41/1836
  49238. }
  49239. },
  49240. side: {
  49241. height: math.unit(6 + 5/12, "feet"),
  49242. weight: math.unit(265, "lb"),
  49243. name: "Side",
  49244. image: {
  49245. source: "./media/characters/devon-childs/side.svg",
  49246. extra: 1812/1738,
  49247. bottom: 30/1842
  49248. }
  49249. },
  49250. back: {
  49251. height: math.unit(6 + 5/12, "feet"),
  49252. weight: math.unit(265, "lb"),
  49253. name: "Back",
  49254. image: {
  49255. source: "./media/characters/devon-childs/back.svg",
  49256. extra: 1808/1735,
  49257. bottom: 23/1831
  49258. }
  49259. },
  49260. hand: {
  49261. height: math.unit(1.464, "feet"),
  49262. name: "Hand",
  49263. image: {
  49264. source: "./media/characters/devon-childs/hand.svg"
  49265. }
  49266. },
  49267. foot: {
  49268. height: math.unit(1.6, "feet"),
  49269. name: "Foot",
  49270. image: {
  49271. source: "./media/characters/devon-childs/foot.svg"
  49272. }
  49273. },
  49274. },
  49275. [
  49276. {
  49277. name: "Micro",
  49278. height: math.unit(7, "cm")
  49279. },
  49280. {
  49281. name: "Normal",
  49282. height: math.unit(6 + 5/12, "feet"),
  49283. default: true
  49284. },
  49285. {
  49286. name: "Macro",
  49287. height: math.unit(154, "feet")
  49288. },
  49289. ]
  49290. ))
  49291. characterMakers.push(() => makeCharacter(
  49292. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49293. {
  49294. front: {
  49295. height: math.unit(6, "feet"),
  49296. weight: math.unit(180, "lb"),
  49297. name: "Front",
  49298. image: {
  49299. source: "./media/characters/lydemox-vir/front.svg",
  49300. extra: 1632/1435,
  49301. bottom: 58/1690
  49302. }
  49303. },
  49304. frontSFW: {
  49305. height: math.unit(6, "feet"),
  49306. weight: math.unit(180, "lb"),
  49307. name: "Front (SFW)",
  49308. image: {
  49309. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49310. extra: 1632/1435,
  49311. bottom: 58/1690
  49312. }
  49313. },
  49314. back: {
  49315. height: math.unit(6, "feet"),
  49316. weight: math.unit(180, "lb"),
  49317. name: "Back",
  49318. image: {
  49319. source: "./media/characters/lydemox-vir/back.svg",
  49320. extra: 1593/1408,
  49321. bottom: 31/1624
  49322. }
  49323. },
  49324. paw: {
  49325. height: math.unit(1.85, "feet"),
  49326. name: "Paw",
  49327. image: {
  49328. source: "./media/characters/lydemox-vir/paw.svg"
  49329. }
  49330. },
  49331. dick: {
  49332. height: math.unit(1.8, "feet"),
  49333. name: "Dick",
  49334. image: {
  49335. source: "./media/characters/lydemox-vir/dick.svg"
  49336. }
  49337. },
  49338. },
  49339. [
  49340. {
  49341. name: "Macro",
  49342. height: math.unit(100, "feet"),
  49343. default: true
  49344. },
  49345. {
  49346. name: "Teramacro",
  49347. height: math.unit(1, "earth")
  49348. },
  49349. {
  49350. name: "Planetary",
  49351. height: math.unit(20, "earths")
  49352. },
  49353. ]
  49354. ))
  49355. characterMakers.push(() => makeCharacter(
  49356. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49357. {
  49358. front: {
  49359. height: math.unit(15 + 8/12, "feet"),
  49360. weight: math.unit(1237, "kg"),
  49361. name: "Front",
  49362. image: {
  49363. source: "./media/characters/mia/front.svg",
  49364. extra: 1573/1446,
  49365. bottom: 58/1631
  49366. }
  49367. },
  49368. },
  49369. [
  49370. {
  49371. name: "Small",
  49372. height: math.unit(9 + 5/12, "feet")
  49373. },
  49374. {
  49375. name: "Normal",
  49376. height: math.unit(15 + 8/12, "feet"),
  49377. default: true
  49378. },
  49379. ]
  49380. ))
  49381. characterMakers.push(() => makeCharacter(
  49382. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49383. {
  49384. front: {
  49385. height: math.unit(10 + 6/12, "feet"),
  49386. weight: math.unit(1.3, "tons"),
  49387. name: "Front",
  49388. image: {
  49389. source: "./media/characters/mr-graves/front.svg",
  49390. extra: 1779/1695,
  49391. bottom: 198/1977
  49392. }
  49393. },
  49394. },
  49395. [
  49396. {
  49397. name: "Normal",
  49398. height: math.unit(10 + 6 /12, "feet"),
  49399. default: true
  49400. },
  49401. ]
  49402. ))
  49403. characterMakers.push(() => makeCharacter(
  49404. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49405. {
  49406. dressedFront: {
  49407. height: math.unit(5 + 8/12, "feet"),
  49408. weight: math.unit(125, "lb"),
  49409. name: "Dressed (Front)",
  49410. image: {
  49411. source: "./media/characters/jess/dressed-front.svg",
  49412. extra: 1176/1152,
  49413. bottom: 42/1218
  49414. }
  49415. },
  49416. dressedSide: {
  49417. height: math.unit(5 + 8/12, "feet"),
  49418. weight: math.unit(125, "lb"),
  49419. name: "Dressed (Side)",
  49420. image: {
  49421. source: "./media/characters/jess/dressed-side.svg",
  49422. extra: 1204/1190,
  49423. bottom: 6/1210
  49424. }
  49425. },
  49426. nudeFront: {
  49427. height: math.unit(5 + 8/12, "feet"),
  49428. weight: math.unit(125, "lb"),
  49429. name: "Nude (Front)",
  49430. image: {
  49431. source: "./media/characters/jess/nude-front.svg",
  49432. extra: 1176/1152,
  49433. bottom: 42/1218
  49434. }
  49435. },
  49436. nudeSide: {
  49437. height: math.unit(5 + 8/12, "feet"),
  49438. weight: math.unit(125, "lb"),
  49439. name: "Nude (Side)",
  49440. image: {
  49441. source: "./media/characters/jess/nude-side.svg",
  49442. extra: 1204/1190,
  49443. bottom: 6/1210
  49444. }
  49445. },
  49446. organsFront: {
  49447. height: math.unit(2.83799342105, "feet"),
  49448. name: "Organs (Front)",
  49449. image: {
  49450. source: "./media/characters/jess/organs-front.svg"
  49451. }
  49452. },
  49453. organsSide: {
  49454. height: math.unit(2.64225290474, "feet"),
  49455. name: "Organs (Side)",
  49456. image: {
  49457. source: "./media/characters/jess/organs-side.svg"
  49458. }
  49459. },
  49460. digestiveTractFront: {
  49461. height: math.unit(2.8106580871, "feet"),
  49462. name: "Digestive Tract (Front)",
  49463. image: {
  49464. source: "./media/characters/jess/digestive-tract-front.svg"
  49465. }
  49466. },
  49467. digestiveTractSide: {
  49468. height: math.unit(2.54365045014, "feet"),
  49469. name: "Digestive Tract (Side)",
  49470. image: {
  49471. source: "./media/characters/jess/digestive-tract-side.svg"
  49472. }
  49473. },
  49474. respiratorySystemFront: {
  49475. height: math.unit(1.11196233456, "feet"),
  49476. name: "Respiratory System (Front)",
  49477. image: {
  49478. source: "./media/characters/jess/respiratory-system-front.svg"
  49479. }
  49480. },
  49481. respiratorySystemSide: {
  49482. height: math.unit(0.89327966297, "feet"),
  49483. name: "Respiratory System (Side)",
  49484. image: {
  49485. source: "./media/characters/jess/respiratory-system-side.svg"
  49486. }
  49487. },
  49488. urinaryTractFront: {
  49489. height: math.unit(1.16126356186, "feet"),
  49490. name: "Urinary Tract (Front)",
  49491. image: {
  49492. source: "./media/characters/jess/urinary-tract-front.svg"
  49493. }
  49494. },
  49495. urinaryTractSide: {
  49496. height: math.unit(1.20910039627, "feet"),
  49497. name: "Urinary Tract (Side)",
  49498. image: {
  49499. source: "./media/characters/jess/urinary-tract-side.svg"
  49500. }
  49501. },
  49502. reproductiveOrgansFront: {
  49503. height: math.unit(0.48422591566, "feet"),
  49504. name: "Reproductive Organs (Front)",
  49505. image: {
  49506. source: "./media/characters/jess/reproductive-organs-front.svg"
  49507. }
  49508. },
  49509. reproductiveOrgansSide: {
  49510. height: math.unit(0.61553314481, "feet"),
  49511. name: "Reproductive Organs (Side)",
  49512. image: {
  49513. source: "./media/characters/jess/reproductive-organs-side.svg"
  49514. }
  49515. },
  49516. breastsFront: {
  49517. height: math.unit(0.47690395121, "feet"),
  49518. name: "Breasts (Front)",
  49519. image: {
  49520. source: "./media/characters/jess/breasts-front.svg"
  49521. }
  49522. },
  49523. breastsSide: {
  49524. height: math.unit(0.30556998307, "feet"),
  49525. name: "Breasts (Side)",
  49526. image: {
  49527. source: "./media/characters/jess/breasts-side.svg"
  49528. }
  49529. },
  49530. heartFront: {
  49531. height: math.unit(0.53011022622, "feet"),
  49532. name: "Heart (Front)",
  49533. image: {
  49534. source: "./media/characters/jess/heart-front.svg"
  49535. }
  49536. },
  49537. heartSide: {
  49538. height: math.unit(0.51790695213, "feet"),
  49539. name: "Heart (Side)",
  49540. image: {
  49541. source: "./media/characters/jess/heart-side.svg"
  49542. }
  49543. },
  49544. earsAndNoseFront: {
  49545. height: math.unit(0.29385483995, "feet"),
  49546. name: "Ears and Nose (Front)",
  49547. image: {
  49548. source: "./media/characters/jess/ears-and-nose-front.svg"
  49549. }
  49550. },
  49551. earsAndNoseSide: {
  49552. height: math.unit(0.18109658741, "feet"),
  49553. name: "Ears and Nose (Side)",
  49554. image: {
  49555. source: "./media/characters/jess/ears-and-nose-side.svg"
  49556. }
  49557. },
  49558. },
  49559. [
  49560. {
  49561. name: "Normal",
  49562. height: math.unit(5 + 8/12, "feet"),
  49563. default: true
  49564. },
  49565. ]
  49566. ))
  49567. characterMakers.push(() => makeCharacter(
  49568. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49569. {
  49570. front: {
  49571. height: math.unit(6, "feet"),
  49572. weight: math.unit(6.64467e-7, "grams"),
  49573. name: "Front",
  49574. image: {
  49575. source: "./media/characters/wimpering/front.svg",
  49576. extra: 597/587,
  49577. bottom: 34/631
  49578. }
  49579. },
  49580. },
  49581. [
  49582. {
  49583. name: "Micro",
  49584. height: math.unit(0.4, "mm"),
  49585. default: true
  49586. },
  49587. ]
  49588. ))
  49589. characterMakers.push(() => makeCharacter(
  49590. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49591. {
  49592. front: {
  49593. height: math.unit(5 + 2/12, "feet"),
  49594. weight: math.unit(110, "lb"),
  49595. name: "Front",
  49596. image: {
  49597. source: "./media/characters/keltre/front.svg",
  49598. extra: 1099/1057,
  49599. bottom: 22/1121
  49600. }
  49601. },
  49602. back: {
  49603. height: math.unit(5 + 2/12, "feet"),
  49604. weight: math.unit(110, "lb"),
  49605. name: "Back",
  49606. image: {
  49607. source: "./media/characters/keltre/back.svg",
  49608. extra: 1095/1053,
  49609. bottom: 17/1112
  49610. }
  49611. },
  49612. dressed: {
  49613. height: math.unit(5 + 2/12, "feet"),
  49614. weight: math.unit(110, "lb"),
  49615. name: "Dressed",
  49616. image: {
  49617. source: "./media/characters/keltre/dressed.svg",
  49618. extra: 1099/1057,
  49619. bottom: 22/1121
  49620. }
  49621. },
  49622. winter: {
  49623. height: math.unit(5 + 2/12, "feet"),
  49624. weight: math.unit(110, "lb"),
  49625. name: "Winter",
  49626. image: {
  49627. source: "./media/characters/keltre/winter.svg",
  49628. extra: 1099/1057,
  49629. bottom: 22/1121
  49630. }
  49631. },
  49632. head: {
  49633. height: math.unit(1.61 * 0.86, "feet"),
  49634. name: "Head",
  49635. image: {
  49636. source: "./media/characters/keltre/head.svg",
  49637. extra: 534/421,
  49638. bottom: 0/534
  49639. }
  49640. },
  49641. hand: {
  49642. height: math.unit(1.3 * 0.86, "feet"),
  49643. name: "Hand",
  49644. image: {
  49645. source: "./media/characters/keltre/hand.svg"
  49646. }
  49647. },
  49648. foot: {
  49649. height: math.unit(1.8 * 0.86, "feet"),
  49650. name: "Foot",
  49651. image: {
  49652. source: "./media/characters/keltre/foot.svg"
  49653. }
  49654. },
  49655. },
  49656. [
  49657. {
  49658. name: "Fine",
  49659. height: math.unit(1, "inch")
  49660. },
  49661. {
  49662. name: "Dimnutive",
  49663. height: math.unit(4, "inches")
  49664. },
  49665. {
  49666. name: "Tiny",
  49667. height: math.unit(1, "foot")
  49668. },
  49669. {
  49670. name: "Small",
  49671. height: math.unit(3, "feet")
  49672. },
  49673. {
  49674. name: "Normal",
  49675. height: math.unit(5 + 2/12, "feet"),
  49676. default: true
  49677. },
  49678. ]
  49679. ))
  49680. characterMakers.push(() => makeCharacter(
  49681. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49682. {
  49683. front: {
  49684. height: math.unit(6 + 2/12, "feet"),
  49685. name: "Front",
  49686. image: {
  49687. source: "./media/characters/nox/front.svg",
  49688. extra: 1917/1830,
  49689. bottom: 74/1991
  49690. }
  49691. },
  49692. back: {
  49693. height: math.unit(6 + 2/12, "feet"),
  49694. name: "Back",
  49695. image: {
  49696. source: "./media/characters/nox/back.svg",
  49697. extra: 1896/1815,
  49698. bottom: 21/1917
  49699. }
  49700. },
  49701. head: {
  49702. height: math.unit(1.1, "feet"),
  49703. name: "Head",
  49704. image: {
  49705. source: "./media/characters/nox/head.svg",
  49706. extra: 874/704,
  49707. bottom: 0/874
  49708. }
  49709. },
  49710. tattoo: {
  49711. height: math.unit(0.729, "feet"),
  49712. name: "Tattoo",
  49713. image: {
  49714. source: "./media/characters/nox/tattoo.svg"
  49715. }
  49716. },
  49717. },
  49718. [
  49719. {
  49720. name: "Normal",
  49721. height: math.unit(6 + 2/12, "feet")
  49722. },
  49723. {
  49724. name: "Gigamacro",
  49725. height: math.unit(2, "earths"),
  49726. default: true
  49727. },
  49728. {
  49729. name: "Cosmic",
  49730. height: math.unit(867, "yottameters")
  49731. },
  49732. ]
  49733. ))
  49734. characterMakers.push(() => makeCharacter(
  49735. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49736. {
  49737. front: {
  49738. height: math.unit(6, "feet"),
  49739. weight: math.unit(150, "lb"),
  49740. name: "Front",
  49741. image: {
  49742. source: "./media/characters/caspian/front.svg",
  49743. extra: 1443/1359,
  49744. bottom: 0/1443
  49745. }
  49746. },
  49747. back: {
  49748. height: math.unit(6, "feet"),
  49749. weight: math.unit(150, "lb"),
  49750. name: "Back",
  49751. image: {
  49752. source: "./media/characters/caspian/back.svg",
  49753. extra: 1379/1309,
  49754. bottom: 0/1379
  49755. }
  49756. },
  49757. head: {
  49758. height: math.unit(0.9, "feet"),
  49759. name: "Head",
  49760. image: {
  49761. source: "./media/characters/caspian/head.svg",
  49762. extra: 692/492,
  49763. bottom: 0/692
  49764. }
  49765. },
  49766. headAlt: {
  49767. height: math.unit(0.95, "feet"),
  49768. name: "Head (Alt)",
  49769. image: {
  49770. source: "./media/characters/caspian/head-alt.svg",
  49771. extra: 668/508,
  49772. bottom: 0/668
  49773. }
  49774. },
  49775. hand: {
  49776. height: math.unit(0.8, "feet"),
  49777. name: "Hand",
  49778. image: {
  49779. source: "./media/characters/caspian/hand.svg"
  49780. }
  49781. },
  49782. paw: {
  49783. height: math.unit(0.95, "feet"),
  49784. name: "Paw",
  49785. image: {
  49786. source: "./media/characters/caspian/paw.svg"
  49787. }
  49788. },
  49789. },
  49790. [
  49791. {
  49792. name: "Normal",
  49793. height: math.unit(162, "feet"),
  49794. default: true
  49795. },
  49796. ]
  49797. ))
  49798. characterMakers.push(() => makeCharacter(
  49799. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49800. {
  49801. front: {
  49802. height: math.unit(6, "feet"),
  49803. name: "Front",
  49804. image: {
  49805. source: "./media/characters/myra-aisling/front.svg",
  49806. extra: 1268/1166,
  49807. bottom: 73/1341
  49808. }
  49809. },
  49810. back: {
  49811. height: math.unit(6, "feet"),
  49812. name: "Back",
  49813. image: {
  49814. source: "./media/characters/myra-aisling/back.svg",
  49815. extra: 1249/1149,
  49816. bottom: 79/1328
  49817. }
  49818. },
  49819. dressed: {
  49820. height: math.unit(6, "feet"),
  49821. name: "Dressed",
  49822. image: {
  49823. source: "./media/characters/myra-aisling/dressed.svg",
  49824. extra: 1290/1189,
  49825. bottom: 47/1337
  49826. }
  49827. },
  49828. hand: {
  49829. height: math.unit(1.1, "feet"),
  49830. name: "Hand",
  49831. image: {
  49832. source: "./media/characters/myra-aisling/hand.svg"
  49833. }
  49834. },
  49835. paw: {
  49836. height: math.unit(1.23, "feet"),
  49837. name: "Paw",
  49838. image: {
  49839. source: "./media/characters/myra-aisling/paw.svg"
  49840. }
  49841. },
  49842. },
  49843. [
  49844. {
  49845. name: "Normal",
  49846. height: math.unit(160, "feet"),
  49847. default: true
  49848. },
  49849. ]
  49850. ))
  49851. characterMakers.push(() => makeCharacter(
  49852. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49853. {
  49854. front: {
  49855. height: math.unit(6, "feet"),
  49856. name: "Front",
  49857. image: {
  49858. source: "./media/characters/tenley-sidero/front.svg",
  49859. extra: 1365/1276,
  49860. bottom: 47/1412
  49861. }
  49862. },
  49863. back: {
  49864. height: math.unit(6, "feet"),
  49865. name: "Back",
  49866. image: {
  49867. source: "./media/characters/tenley-sidero/back.svg",
  49868. extra: 1383/1283,
  49869. bottom: 35/1418
  49870. }
  49871. },
  49872. dressed: {
  49873. height: math.unit(6, "feet"),
  49874. name: "Dressed",
  49875. image: {
  49876. source: "./media/characters/tenley-sidero/dressed.svg",
  49877. extra: 1364/1275,
  49878. bottom: 42/1406
  49879. }
  49880. },
  49881. head: {
  49882. height: math.unit(1.47, "feet"),
  49883. name: "Head",
  49884. image: {
  49885. source: "./media/characters/tenley-sidero/head.svg",
  49886. extra: 610/490,
  49887. bottom: 0/610
  49888. }
  49889. },
  49890. },
  49891. [
  49892. {
  49893. name: "Normal",
  49894. height: math.unit(154, "feet"),
  49895. default: true
  49896. },
  49897. ]
  49898. ))
  49899. characterMakers.push(() => makeCharacter(
  49900. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49901. {
  49902. front: {
  49903. height: math.unit(5, "inches"),
  49904. name: "Front",
  49905. image: {
  49906. source: "./media/characters/mallory/front.svg",
  49907. extra: 1919/1678,
  49908. bottom: 29/1948
  49909. }
  49910. },
  49911. hand: {
  49912. height: math.unit(0.73, "inches"),
  49913. name: "Hand",
  49914. image: {
  49915. source: "./media/characters/mallory/hand.svg"
  49916. }
  49917. },
  49918. paw: {
  49919. height: math.unit(0.68, "inches"),
  49920. name: "Paw",
  49921. image: {
  49922. source: "./media/characters/mallory/paw.svg"
  49923. }
  49924. },
  49925. },
  49926. [
  49927. {
  49928. name: "Small",
  49929. height: math.unit(5, "inches"),
  49930. default: true
  49931. },
  49932. ]
  49933. ))
  49934. characterMakers.push(() => makeCharacter(
  49935. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49936. {
  49937. naked: {
  49938. height: math.unit(6, "feet"),
  49939. name: "Naked",
  49940. image: {
  49941. source: "./media/characters/mab/naked.svg",
  49942. extra: 1855/1757,
  49943. bottom: 208/2063
  49944. }
  49945. },
  49946. outside: {
  49947. height: math.unit(6, "feet"),
  49948. name: "Outside",
  49949. image: {
  49950. source: "./media/characters/mab/outside.svg",
  49951. extra: 1855/1757,
  49952. bottom: 208/2063
  49953. }
  49954. },
  49955. party: {
  49956. height: math.unit(6, "feet"),
  49957. name: "Party",
  49958. image: {
  49959. source: "./media/characters/mab/party.svg",
  49960. extra: 1855/1757,
  49961. bottom: 208/2063
  49962. }
  49963. },
  49964. },
  49965. [
  49966. {
  49967. name: "Normal",
  49968. height: math.unit(165, "feet"),
  49969. default: true
  49970. },
  49971. ]
  49972. ))
  49973. characterMakers.push(() => makeCharacter(
  49974. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49975. {
  49976. feral: {
  49977. height: math.unit(12, "feet"),
  49978. weight: math.unit(20000, "lb"),
  49979. name: "Side",
  49980. image: {
  49981. source: "./media/characters/winter/feral.svg",
  49982. extra: 1286/943,
  49983. bottom: 112/1398
  49984. },
  49985. form: "feral",
  49986. default: true
  49987. },
  49988. feralNsfw: {
  49989. height: math.unit(12, "feet"),
  49990. weight: math.unit(20000, "lb"),
  49991. name: "Side (NSFW)",
  49992. image: {
  49993. source: "./media/characters/winter/feral-nsfw.svg",
  49994. extra: 1286/943,
  49995. bottom: 112/1398
  49996. },
  49997. form: "feral"
  49998. },
  49999. dick: {
  50000. height: math.unit(3.79, "feet"),
  50001. name: "Dick",
  50002. image: {
  50003. source: "./media/characters/winter/dick.svg"
  50004. },
  50005. form: "feral"
  50006. },
  50007. anthro: {
  50008. height: math.unit(12, "feet"),
  50009. weight: math.unit(10, "tons"),
  50010. name: "Anthro",
  50011. image: {
  50012. source: "./media/characters/winter/anthro.svg",
  50013. extra: 1701/1553,
  50014. bottom: 64/1765
  50015. },
  50016. form: "anthro",
  50017. default: true
  50018. },
  50019. },
  50020. [
  50021. {
  50022. name: "Big",
  50023. height: math.unit(12, "feet"),
  50024. default: true,
  50025. form: "feral"
  50026. },
  50027. {
  50028. name: "Big",
  50029. height: math.unit(12, "feet"),
  50030. default: true,
  50031. form: "anthro"
  50032. },
  50033. ],
  50034. {
  50035. "feral": {
  50036. name: "Feral",
  50037. default: true
  50038. },
  50039. "anthro": {
  50040. name: "Anthro"
  50041. }
  50042. }
  50043. ))
  50044. characterMakers.push(() => makeCharacter(
  50045. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50046. {
  50047. front: {
  50048. height: math.unit(4.1, "inches"),
  50049. name: "Front",
  50050. image: {
  50051. source: "./media/characters/alto/front.svg",
  50052. extra: 736/627,
  50053. bottom: 90/826
  50054. }
  50055. },
  50056. },
  50057. [
  50058. {
  50059. name: "Normal",
  50060. height: math.unit(4.1, "inches"),
  50061. default: true
  50062. },
  50063. ]
  50064. ))
  50065. characterMakers.push(() => makeCharacter(
  50066. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50067. {
  50068. sitting: {
  50069. height: math.unit(3, "feet"),
  50070. name: "Sitting",
  50071. image: {
  50072. source: "./media/characters/ratstrid-v/sitting.svg",
  50073. extra: 355/310,
  50074. bottom: 136/491
  50075. }
  50076. },
  50077. },
  50078. [
  50079. {
  50080. name: "Normal",
  50081. height: math.unit(3, "feet"),
  50082. default: true
  50083. },
  50084. ]
  50085. ))
  50086. characterMakers.push(() => makeCharacter(
  50087. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50088. {
  50089. back: {
  50090. height: math.unit(6, "feet"),
  50091. weight: math.unit(350, "lb"),
  50092. name: "Back",
  50093. image: {
  50094. source: "./media/characters/siz/back.svg",
  50095. extra: 1449/1274,
  50096. bottom: 13/1462
  50097. }
  50098. },
  50099. },
  50100. [
  50101. {
  50102. name: "Over-Overcompressed",
  50103. height: math.unit(8, "feet")
  50104. },
  50105. {
  50106. name: "Overcompressed",
  50107. height: math.unit(32, "feet")
  50108. },
  50109. {
  50110. name: "Compressed",
  50111. height: math.unit(128, "feet"),
  50112. default: true
  50113. },
  50114. {
  50115. name: "Half-Compressed",
  50116. height: math.unit(512, "feet")
  50117. },
  50118. {
  50119. name: "Quarter-Compressed",
  50120. height: math.unit(2048, "feet")
  50121. },
  50122. {
  50123. name: "Uncompressed?",
  50124. height: math.unit(8192, "feet")
  50125. },
  50126. ]
  50127. ))
  50128. characterMakers.push(() => makeCharacter(
  50129. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50130. {
  50131. front: {
  50132. height: math.unit(5 + 9/12, "feet"),
  50133. weight: math.unit(150, "lb"),
  50134. name: "Front",
  50135. image: {
  50136. source: "./media/characters/ven/front.svg",
  50137. extra: 1372/1320,
  50138. bottom: 73/1445
  50139. }
  50140. },
  50141. side: {
  50142. height: math.unit(5 + 9/12, "feet"),
  50143. weight: math.unit(1150, "lb"),
  50144. name: "Side",
  50145. image: {
  50146. source: "./media/characters/ven/side.svg",
  50147. extra: 1119/1070,
  50148. bottom: 42/1161
  50149. },
  50150. default: true
  50151. },
  50152. },
  50153. [
  50154. {
  50155. name: "Normal",
  50156. height: math.unit(5 + 9/12, "feet"),
  50157. default: true
  50158. },
  50159. ]
  50160. ))
  50161. characterMakers.push(() => makeCharacter(
  50162. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50163. {
  50164. front: {
  50165. height: math.unit(12, "feet"),
  50166. weight: math.unit(1000, "kg"),
  50167. name: "Front",
  50168. image: {
  50169. source: "./media/characters/maple/front.svg",
  50170. extra: 1193/1081,
  50171. bottom: 22/1215
  50172. }
  50173. },
  50174. },
  50175. [
  50176. {
  50177. name: "Compressed",
  50178. height: math.unit(7, "feet")
  50179. },
  50180. {
  50181. name: "Normal",
  50182. height: math.unit(12, "feet"),
  50183. default: true
  50184. },
  50185. ]
  50186. ))
  50187. characterMakers.push(() => makeCharacter(
  50188. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50189. {
  50190. front: {
  50191. height: math.unit(9, "feet"),
  50192. weight: math.unit(1500, "lb"),
  50193. name: "Front",
  50194. image: {
  50195. source: "./media/characters/nora/front.svg",
  50196. extra: 1348/1286,
  50197. bottom: 218/1566
  50198. }
  50199. },
  50200. erect: {
  50201. height: math.unit(9, "feet"),
  50202. weight: math.unit(11500, "lb"),
  50203. name: "Erect",
  50204. image: {
  50205. source: "./media/characters/nora/erect.svg",
  50206. extra: 1488/1433,
  50207. bottom: 133/1621
  50208. }
  50209. },
  50210. },
  50211. [
  50212. {
  50213. name: "Normal",
  50214. height: math.unit(9, "feet"),
  50215. default: true
  50216. },
  50217. ]
  50218. ))
  50219. characterMakers.push(() => makeCharacter(
  50220. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50221. {
  50222. front: {
  50223. height: math.unit(25, "feet"),
  50224. weight: math.unit(27500, "lb"),
  50225. name: "Front",
  50226. image: {
  50227. source: "./media/characters/north-caudin/front.svg",
  50228. extra: 1184/1082,
  50229. bottom: 23/1207
  50230. }
  50231. },
  50232. },
  50233. [
  50234. {
  50235. name: "Compressed",
  50236. height: math.unit(10, "feet")
  50237. },
  50238. {
  50239. name: "Normal",
  50240. height: math.unit(25, "feet"),
  50241. default: true
  50242. },
  50243. ]
  50244. ))
  50245. characterMakers.push(() => makeCharacter(
  50246. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50247. {
  50248. front: {
  50249. height: math.unit(9, "feet"),
  50250. weight: math.unit(1250, "lb"),
  50251. name: "Front",
  50252. image: {
  50253. source: "./media/characters/merrian/front.svg",
  50254. extra: 2393/2304,
  50255. bottom: 40/2433
  50256. }
  50257. },
  50258. },
  50259. [
  50260. {
  50261. name: "Normal",
  50262. height: math.unit(9, "feet"),
  50263. default: true
  50264. },
  50265. ]
  50266. ))
  50267. characterMakers.push(() => makeCharacter(
  50268. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50269. {
  50270. front: {
  50271. height: math.unit(9, "feet"),
  50272. weight: math.unit(1000, "lb"),
  50273. name: "Front",
  50274. image: {
  50275. source: "./media/characters/hazel/front.svg",
  50276. extra: 2351/2298,
  50277. bottom: 38/2389
  50278. }
  50279. },
  50280. },
  50281. [
  50282. {
  50283. name: "Normal",
  50284. height: math.unit(9, "feet"),
  50285. default: true
  50286. },
  50287. ]
  50288. ))
  50289. characterMakers.push(() => makeCharacter(
  50290. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50291. {
  50292. front: {
  50293. height: math.unit(13, "feet"),
  50294. weight: math.unit(3200, "lb"),
  50295. name: "Front",
  50296. image: {
  50297. source: "./media/characters/emma/front.svg",
  50298. extra: 2263/2029,
  50299. bottom: 68/2331
  50300. }
  50301. },
  50302. },
  50303. [
  50304. {
  50305. name: "Normal",
  50306. height: math.unit(13, "feet"),
  50307. default: true
  50308. },
  50309. ]
  50310. ))
  50311. characterMakers.push(() => makeCharacter(
  50312. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50313. {
  50314. front: {
  50315. height: math.unit(11 + 9/12, "feet"),
  50316. weight: math.unit(2500, "lb"),
  50317. name: "Front",
  50318. image: {
  50319. source: "./media/characters/ilumina/front.svg",
  50320. extra: 2248/2209,
  50321. bottom: 164/2412
  50322. }
  50323. },
  50324. },
  50325. [
  50326. {
  50327. name: "Normal",
  50328. height: math.unit(11 + 9/12, "feet"),
  50329. default: true
  50330. },
  50331. ]
  50332. ))
  50333. characterMakers.push(() => makeCharacter(
  50334. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50335. {
  50336. front: {
  50337. height: math.unit(8 + 10/12, "feet"),
  50338. weight: math.unit(1350, "lb"),
  50339. name: "Front",
  50340. image: {
  50341. source: "./media/characters/moonshine/front.svg",
  50342. extra: 2395/2288,
  50343. bottom: 40/2435
  50344. }
  50345. },
  50346. },
  50347. [
  50348. {
  50349. name: "Normal",
  50350. height: math.unit(8 + 10/12, "feet"),
  50351. default: true
  50352. },
  50353. ]
  50354. ))
  50355. characterMakers.push(() => makeCharacter(
  50356. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50357. {
  50358. front: {
  50359. height: math.unit(14, "feet"),
  50360. weight: math.unit(3400, "lb"),
  50361. name: "Front",
  50362. image: {
  50363. source: "./media/characters/aletia/front.svg",
  50364. extra: 1185/1052,
  50365. bottom: 21/1206
  50366. }
  50367. },
  50368. },
  50369. [
  50370. {
  50371. name: "Compressed",
  50372. height: math.unit(8, "feet")
  50373. },
  50374. {
  50375. name: "Normal",
  50376. height: math.unit(14, "feet"),
  50377. default: true
  50378. },
  50379. ]
  50380. ))
  50381. characterMakers.push(() => makeCharacter(
  50382. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50383. {
  50384. front: {
  50385. height: math.unit(17, "feet"),
  50386. weight: math.unit(6500, "lb"),
  50387. name: "Front",
  50388. image: {
  50389. source: "./media/characters/deidra/front.svg",
  50390. extra: 1201/1081,
  50391. bottom: 16/1217
  50392. }
  50393. },
  50394. },
  50395. [
  50396. {
  50397. name: "Compressed",
  50398. height: math.unit(9 + 6/12, "feet")
  50399. },
  50400. {
  50401. name: "Normal",
  50402. height: math.unit(17, "feet"),
  50403. default: true
  50404. },
  50405. ]
  50406. ))
  50407. characterMakers.push(() => makeCharacter(
  50408. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50409. {
  50410. front: {
  50411. height: math.unit(7 + 4/12, "feet"),
  50412. weight: math.unit(280, "lb"),
  50413. name: "Front",
  50414. image: {
  50415. source: "./media/characters/freki-yrmori/front.svg",
  50416. extra: 1286/1182,
  50417. bottom: 29/1315
  50418. }
  50419. },
  50420. maw: {
  50421. height: math.unit(0.9, "feet"),
  50422. name: "Maw",
  50423. image: {
  50424. source: "./media/characters/freki-yrmori/maw.svg"
  50425. }
  50426. },
  50427. },
  50428. [
  50429. {
  50430. name: "Normal",
  50431. height: math.unit(7 + 4/12, "feet"),
  50432. default: true
  50433. },
  50434. {
  50435. name: "Macro",
  50436. height: math.unit(38.5, "meters")
  50437. },
  50438. ]
  50439. ))
  50440. characterMakers.push(() => makeCharacter(
  50441. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50442. {
  50443. side: {
  50444. height: math.unit(47.2, "meters"),
  50445. weight: math.unit(10000, "tons"),
  50446. name: "Side",
  50447. image: {
  50448. source: "./media/characters/aetherios/side.svg",
  50449. extra: 2363/642,
  50450. bottom: 221/2584
  50451. }
  50452. },
  50453. top: {
  50454. height: math.unit(240, "meters"),
  50455. weight: math.unit(10000, "tons"),
  50456. name: "Top",
  50457. image: {
  50458. source: "./media/characters/aetherios/top.svg"
  50459. }
  50460. },
  50461. bottom: {
  50462. height: math.unit(240, "meters"),
  50463. weight: math.unit(10000, "tons"),
  50464. name: "Bottom",
  50465. image: {
  50466. source: "./media/characters/aetherios/bottom.svg"
  50467. }
  50468. },
  50469. head: {
  50470. height: math.unit(38.6, "meters"),
  50471. name: "Head",
  50472. image: {
  50473. source: "./media/characters/aetherios/head.svg",
  50474. extra: 1335/1112,
  50475. bottom: 0/1335
  50476. }
  50477. },
  50478. front: {
  50479. height: math.unit(29, "meters"),
  50480. name: "Front",
  50481. image: {
  50482. source: "./media/characters/aetherios/front.svg",
  50483. extra: 1266/953,
  50484. bottom: 158/1424
  50485. }
  50486. },
  50487. maw: {
  50488. height: math.unit(16.37, "meters"),
  50489. name: "Maw",
  50490. image: {
  50491. source: "./media/characters/aetherios/maw.svg",
  50492. extra: 748/637,
  50493. bottom: 0/748
  50494. },
  50495. extraAttributes: {
  50496. preyCapacity: {
  50497. name: "Capacity",
  50498. power: 3,
  50499. type: "volume",
  50500. base: math.unit(1000, "people")
  50501. },
  50502. tongueSize: {
  50503. name: "Tongue Size",
  50504. power: 2,
  50505. type: "area",
  50506. base: math.unit(21, "m^2")
  50507. }
  50508. }
  50509. },
  50510. forepaw: {
  50511. height: math.unit(18, "meters"),
  50512. name: "Forepaw",
  50513. image: {
  50514. source: "./media/characters/aetherios/forepaw.svg"
  50515. }
  50516. },
  50517. hindpaw: {
  50518. height: math.unit(23, "meters"),
  50519. name: "Hindpaw",
  50520. image: {
  50521. source: "./media/characters/aetherios/hindpaw.svg"
  50522. }
  50523. },
  50524. genitals: {
  50525. height: math.unit(42, "meters"),
  50526. name: "Genitals",
  50527. image: {
  50528. source: "./media/characters/aetherios/genitals.svg"
  50529. }
  50530. },
  50531. },
  50532. [
  50533. {
  50534. name: "Normal",
  50535. height: math.unit(47.2, "meters"),
  50536. default: true
  50537. },
  50538. {
  50539. name: "Macro",
  50540. height: math.unit(160, "meters")
  50541. },
  50542. {
  50543. name: "Mega",
  50544. height: math.unit(1.87, "km")
  50545. },
  50546. {
  50547. name: "Giga",
  50548. height: math.unit(40000, "km")
  50549. },
  50550. {
  50551. name: "Stellar",
  50552. height: math.unit(158000000, "km")
  50553. },
  50554. {
  50555. name: "Cosmic",
  50556. height: math.unit(9.46e12, "km")
  50557. },
  50558. ]
  50559. ))
  50560. characterMakers.push(() => makeCharacter(
  50561. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50562. {
  50563. front: {
  50564. height: math.unit(5 + 4/12, "feet"),
  50565. weight: math.unit(80, "lb"),
  50566. name: "Front",
  50567. image: {
  50568. source: "./media/characters/mizu-gieeg/front.svg",
  50569. extra: 850/709,
  50570. bottom: 52/902
  50571. }
  50572. },
  50573. back: {
  50574. height: math.unit(5 + 4/12, "feet"),
  50575. weight: math.unit(80, "lb"),
  50576. name: "Back",
  50577. image: {
  50578. source: "./media/characters/mizu-gieeg/back.svg",
  50579. extra: 882/745,
  50580. bottom: 25/907
  50581. }
  50582. },
  50583. },
  50584. [
  50585. {
  50586. name: "Normal",
  50587. height: math.unit(5 + 4/12, "feet"),
  50588. default: true
  50589. },
  50590. ]
  50591. ))
  50592. characterMakers.push(() => makeCharacter(
  50593. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50594. {
  50595. front: {
  50596. height: math.unit(6, "feet"),
  50597. name: "Front",
  50598. image: {
  50599. source: "./media/characters/roselle-st-papier/front.svg",
  50600. extra: 1430/1280,
  50601. bottom: 37/1467
  50602. }
  50603. },
  50604. back: {
  50605. height: math.unit(6, "feet"),
  50606. name: "Back",
  50607. image: {
  50608. source: "./media/characters/roselle-st-papier/back.svg",
  50609. extra: 1491/1296,
  50610. bottom: 23/1514
  50611. }
  50612. },
  50613. ear: {
  50614. height: math.unit(1.26, "feet"),
  50615. name: "Ear",
  50616. image: {
  50617. source: "./media/characters/roselle-st-papier/ear.svg"
  50618. }
  50619. },
  50620. },
  50621. [
  50622. {
  50623. name: "Normal",
  50624. height: math.unit(150, "feet"),
  50625. default: true
  50626. },
  50627. ]
  50628. ))
  50629. characterMakers.push(() => makeCharacter(
  50630. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50631. {
  50632. front: {
  50633. height: math.unit(1, "inches"),
  50634. name: "Front",
  50635. image: {
  50636. source: "./media/characters/valargent/front.svg",
  50637. extra: 1825/1694,
  50638. bottom: 62/1887
  50639. }
  50640. },
  50641. back: {
  50642. height: math.unit(1, "inches"),
  50643. name: "Back",
  50644. image: {
  50645. source: "./media/characters/valargent/back.svg",
  50646. extra: 1775/1682,
  50647. bottom: 88/1863
  50648. }
  50649. },
  50650. },
  50651. [
  50652. {
  50653. name: "Micro",
  50654. height: math.unit(1, "inch"),
  50655. default: true
  50656. },
  50657. ]
  50658. ))
  50659. characterMakers.push(() => makeCharacter(
  50660. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50661. {
  50662. front: {
  50663. height: math.unit(3.4, "meters"),
  50664. name: "Front",
  50665. image: {
  50666. source: "./media/characters/zarina/front.svg",
  50667. extra: 1733/1425,
  50668. bottom: 93/1826
  50669. }
  50670. },
  50671. squatting: {
  50672. height: math.unit(2.14, "meters"),
  50673. name: "Squatting",
  50674. image: {
  50675. source: "./media/characters/zarina/squatting.svg",
  50676. extra: 1073/788,
  50677. bottom: 63/1136
  50678. }
  50679. },
  50680. back: {
  50681. height: math.unit(2.14, "meters"),
  50682. name: "Back",
  50683. image: {
  50684. source: "./media/characters/zarina/back.svg",
  50685. extra: 1128/885,
  50686. bottom: 0/1128
  50687. }
  50688. },
  50689. },
  50690. [
  50691. {
  50692. name: "Normal",
  50693. height: math.unit(3.4, "meters"),
  50694. default: true
  50695. },
  50696. {
  50697. name: "Big",
  50698. height: math.unit(5, "meters")
  50699. },
  50700. {
  50701. name: "Macro",
  50702. height: math.unit(110, "meters")
  50703. },
  50704. ]
  50705. ))
  50706. characterMakers.push(() => makeCharacter(
  50707. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50708. {
  50709. front: {
  50710. height: math.unit(7, "feet"),
  50711. name: "Front",
  50712. image: {
  50713. source: "./media/characters/ventus-astro-fox/front.svg",
  50714. extra: 1792/1623,
  50715. bottom: 28/1820
  50716. }
  50717. },
  50718. back: {
  50719. height: math.unit(7, "feet"),
  50720. name: "Back",
  50721. image: {
  50722. source: "./media/characters/ventus-astro-fox/back.svg",
  50723. extra: 1789/1620,
  50724. bottom: 31/1820
  50725. }
  50726. },
  50727. outfit: {
  50728. height: math.unit(7, "feet"),
  50729. name: "Outfit",
  50730. image: {
  50731. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50732. extra: 1054/925,
  50733. bottom: 15/1069
  50734. }
  50735. },
  50736. head: {
  50737. height: math.unit(1.12, "feet"),
  50738. name: "Head",
  50739. image: {
  50740. source: "./media/characters/ventus-astro-fox/head.svg",
  50741. extra: 866/504,
  50742. bottom: 0/866
  50743. }
  50744. },
  50745. hand: {
  50746. height: math.unit(1, "feet"),
  50747. name: "Hand",
  50748. image: {
  50749. source: "./media/characters/ventus-astro-fox/hand.svg"
  50750. }
  50751. },
  50752. paw: {
  50753. height: math.unit(1.5, "feet"),
  50754. name: "Paw",
  50755. image: {
  50756. source: "./media/characters/ventus-astro-fox/paw.svg"
  50757. }
  50758. },
  50759. },
  50760. [
  50761. {
  50762. name: "Normal",
  50763. height: math.unit(7, "feet"),
  50764. default: true
  50765. },
  50766. {
  50767. name: "Macro",
  50768. height: math.unit(200, "feet")
  50769. },
  50770. {
  50771. name: "Cosmic",
  50772. height: math.unit(3, "universes")
  50773. },
  50774. ]
  50775. ))
  50776. characterMakers.push(() => makeCharacter(
  50777. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50778. {
  50779. front: {
  50780. height: math.unit(3, "meters"),
  50781. weight: math.unit(7000, "lb"),
  50782. name: "Front",
  50783. image: {
  50784. source: "./media/characters/core-t/front.svg",
  50785. extra: 5729/4941,
  50786. bottom: 1129/6858
  50787. }
  50788. },
  50789. },
  50790. [
  50791. {
  50792. name: "Big",
  50793. height: math.unit(3, "meters"),
  50794. default: true
  50795. },
  50796. ]
  50797. ))
  50798. characterMakers.push(() => makeCharacter(
  50799. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50800. {
  50801. normal: {
  50802. height: math.unit(6 + 6/12, "feet"),
  50803. weight: math.unit(275, "lb"),
  50804. name: "Front",
  50805. image: {
  50806. source: "./media/characters/cadbunny/normal.svg",
  50807. extra: 1129/947,
  50808. bottom: 93/1222
  50809. },
  50810. default: true,
  50811. form: "normal"
  50812. },
  50813. gigantamax: {
  50814. height: math.unit(26, "feet"),
  50815. weight: math.unit(16000, "lb"),
  50816. name: "Front",
  50817. image: {
  50818. source: "./media/characters/cadbunny/gigantamax.svg",
  50819. extra: 1133/944,
  50820. bottom: 90/1223
  50821. },
  50822. default: true,
  50823. form: "gigantamax"
  50824. },
  50825. },
  50826. [
  50827. {
  50828. name: "Normal",
  50829. height: math.unit(6 + 6/12, "feet"),
  50830. default: true,
  50831. form: "normal"
  50832. },
  50833. {
  50834. name: "Small",
  50835. height: math.unit(26, "feet"),
  50836. default: true,
  50837. form: "gigantamax"
  50838. },
  50839. {
  50840. name: "Large",
  50841. height: math.unit(78, "feet"),
  50842. form: "gigantamax"
  50843. },
  50844. ],
  50845. {
  50846. "normal": {
  50847. name: "Normal",
  50848. default: true
  50849. },
  50850. "gigantamax": {
  50851. name: "Gigantamax"
  50852. }
  50853. }
  50854. ))
  50855. characterMakers.push(() => makeCharacter(
  50856. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50857. {
  50858. anthroFront: {
  50859. height: math.unit(8, "feet"),
  50860. weight: math.unit(300, "lb"),
  50861. name: "Front",
  50862. image: {
  50863. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50864. extra: 1272/1176,
  50865. bottom: 53/1325
  50866. },
  50867. form: "anthro",
  50868. default: true
  50869. },
  50870. feralSide: {
  50871. height: math.unit(4, "feet"),
  50872. weight: math.unit(250, "lb"),
  50873. name: "Side",
  50874. image: {
  50875. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50876. extra: 731/621,
  50877. bottom: 0/731
  50878. },
  50879. form: "feral",
  50880. default: true
  50881. },
  50882. },
  50883. [
  50884. {
  50885. name: "Regular",
  50886. height: math.unit(8, "feet"),
  50887. form: "anthro"
  50888. },
  50889. {
  50890. name: "Macro",
  50891. height: math.unit(250, "feet"),
  50892. form: "anthro",
  50893. default: true
  50894. },
  50895. {
  50896. name: "Regular",
  50897. height: math.unit(4, "feet"),
  50898. form: "feral"
  50899. },
  50900. {
  50901. name: "Macro",
  50902. height: math.unit(125, "feet"),
  50903. form: "feral",
  50904. default: true
  50905. },
  50906. ],
  50907. {
  50908. "anthro": {
  50909. name: "Anthro",
  50910. default: true
  50911. },
  50912. "feral": {
  50913. name: "Feral",
  50914. },
  50915. }
  50916. ))
  50917. characterMakers.push(() => makeCharacter(
  50918. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50919. {
  50920. front: {
  50921. height: math.unit(11 + 10/12, "feet"),
  50922. weight: math.unit(1587, "kg"),
  50923. name: "Front",
  50924. image: {
  50925. source: "./media/characters/maple-javira-dragon/front.svg",
  50926. extra: 1136/744,
  50927. bottom: 73/1209
  50928. }
  50929. },
  50930. side: {
  50931. height: math.unit(11 + 10/12, "feet"),
  50932. weight: math.unit(1587, "kg"),
  50933. name: "Side",
  50934. image: {
  50935. source: "./media/characters/maple-javira-dragon/side.svg",
  50936. extra: 712/505,
  50937. bottom: 17/729
  50938. }
  50939. },
  50940. head: {
  50941. height: math.unit(8.05, "feet"),
  50942. name: "Head",
  50943. image: {
  50944. source: "./media/characters/maple-javira-dragon/head.svg",
  50945. extra: 1420/1344,
  50946. bottom: 0/1420
  50947. }
  50948. },
  50949. },
  50950. [
  50951. {
  50952. name: "Normal",
  50953. height: math.unit(11 + 10/12, "feet"),
  50954. default: true
  50955. },
  50956. ]
  50957. ))
  50958. characterMakers.push(() => makeCharacter(
  50959. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50960. {
  50961. front: {
  50962. height: math.unit(117, "cm"),
  50963. weight: math.unit(50, "kg"),
  50964. name: "Front",
  50965. image: {
  50966. source: "./media/characters/sonia-wyverntail/front.svg",
  50967. extra: 708/592,
  50968. bottom: 25/733
  50969. }
  50970. },
  50971. },
  50972. [
  50973. {
  50974. name: "Normal",
  50975. height: math.unit(117, "cm"),
  50976. default: true
  50977. },
  50978. ]
  50979. ))
  50980. characterMakers.push(() => makeCharacter(
  50981. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50982. {
  50983. front: {
  50984. height: math.unit(6 + 5/12, "feet"),
  50985. name: "Front",
  50986. image: {
  50987. source: "./media/characters/micah/front.svg",
  50988. extra: 1758/1546,
  50989. bottom: 214/1972
  50990. }
  50991. },
  50992. },
  50993. [
  50994. {
  50995. name: "Normal",
  50996. height: math.unit(6 + 5/12, "feet"),
  50997. default: true
  50998. },
  50999. ]
  51000. ))
  51001. characterMakers.push(() => makeCharacter(
  51002. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  51003. {
  51004. front: {
  51005. height: math.unit(5 + 10/12, "feet"),
  51006. weight: math.unit(220, "lb"),
  51007. name: "Front",
  51008. image: {
  51009. source: "./media/characters/zarya/front.svg",
  51010. extra: 593/572,
  51011. bottom: 50/643
  51012. }
  51013. },
  51014. back: {
  51015. height: math.unit(5 + 10/12, "feet"),
  51016. weight: math.unit(220, "lb"),
  51017. name: "Back",
  51018. image: {
  51019. source: "./media/characters/zarya/back.svg",
  51020. extra: 603/582,
  51021. bottom: 38/641
  51022. }
  51023. },
  51024. },
  51025. [
  51026. {
  51027. name: "Normal",
  51028. height: math.unit(5 + 10/12, "feet"),
  51029. default: true
  51030. },
  51031. ]
  51032. ))
  51033. characterMakers.push(() => makeCharacter(
  51034. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51035. {
  51036. front: {
  51037. height: math.unit(7.5, "feet"),
  51038. name: "Front",
  51039. image: {
  51040. source: "./media/characters/sven-hatisson/front.svg",
  51041. extra: 917/857,
  51042. bottom: 42/959
  51043. }
  51044. },
  51045. back: {
  51046. height: math.unit(7.5, "feet"),
  51047. name: "Back",
  51048. image: {
  51049. source: "./media/characters/sven-hatisson/back.svg",
  51050. extra: 903/856,
  51051. bottom: 15/918
  51052. }
  51053. },
  51054. },
  51055. [
  51056. {
  51057. name: "Base Height",
  51058. height: math.unit(7.5, "feet")
  51059. },
  51060. {
  51061. name: "Usual Height",
  51062. height: math.unit(13.5, "feet"),
  51063. default: true
  51064. },
  51065. {
  51066. name: "Smaller Macro",
  51067. height: math.unit(85, "feet")
  51068. },
  51069. {
  51070. name: "Moderate Macro",
  51071. height: math.unit(320, "feet")
  51072. },
  51073. {
  51074. name: "Large Macro",
  51075. height: math.unit(1000, "feet")
  51076. },
  51077. {
  51078. name: "Largest Size",
  51079. height: math.unit(2, "miles")
  51080. },
  51081. ]
  51082. ))
  51083. characterMakers.push(() => makeCharacter(
  51084. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51085. {
  51086. side: {
  51087. height: math.unit(1.8, "meters"),
  51088. weight: math.unit(275, "kg"),
  51089. name: "Side",
  51090. image: {
  51091. source: "./media/characters/terra/side.svg",
  51092. extra: 1273/1147,
  51093. bottom: 0/1273
  51094. }
  51095. },
  51096. },
  51097. [
  51098. {
  51099. name: "Normal",
  51100. height: math.unit(16.2, "meters"),
  51101. default: true
  51102. },
  51103. ]
  51104. ))
  51105. characterMakers.push(() => makeCharacter(
  51106. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51107. {
  51108. borzoiFront: {
  51109. height: math.unit(6 + 9/12, "feet"),
  51110. name: "Front",
  51111. image: {
  51112. source: "./media/characters/rae/borzoi-front.svg",
  51113. extra: 1161/1098,
  51114. bottom: 31/1192
  51115. },
  51116. form: "borzoi",
  51117. default: true
  51118. },
  51119. werewolfFront: {
  51120. height: math.unit(8 + 7/12, "feet"),
  51121. name: "Front",
  51122. image: {
  51123. source: "./media/characters/rae/werewolf-front.svg",
  51124. extra: 1411/1334,
  51125. bottom: 127/1538
  51126. },
  51127. form: "werewolf",
  51128. default: true
  51129. },
  51130. },
  51131. [
  51132. {
  51133. name: "Normal",
  51134. height: math.unit(6 + 9/12, "feet"),
  51135. default: true,
  51136. form: "borzoi"
  51137. },
  51138. {
  51139. name: "Normal",
  51140. height: math.unit(8 + 7/12, "feet"),
  51141. default: true,
  51142. form: "werewolf"
  51143. },
  51144. ],
  51145. {
  51146. "borzoi": {
  51147. name: "Borzoi",
  51148. default: true
  51149. },
  51150. "werewolf": {
  51151. name: "Werewolf",
  51152. },
  51153. }
  51154. ))
  51155. characterMakers.push(() => makeCharacter(
  51156. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51157. {
  51158. front: {
  51159. height: math.unit(8 + 7/12, "feet"),
  51160. weight: math.unit(482, "lb"),
  51161. name: "Front",
  51162. image: {
  51163. source: "./media/characters/kit/front.svg",
  51164. extra: 1247/1103,
  51165. bottom: 41/1288
  51166. }
  51167. },
  51168. back: {
  51169. height: math.unit(8 + 7/12, "feet"),
  51170. weight: math.unit(482, "lb"),
  51171. name: "Back",
  51172. image: {
  51173. source: "./media/characters/kit/back.svg",
  51174. extra: 1252/1123,
  51175. bottom: 21/1273
  51176. }
  51177. },
  51178. paw: {
  51179. height: math.unit(1.46, "feet"),
  51180. name: "Paw",
  51181. image: {
  51182. source: "./media/characters/kit/paw.svg"
  51183. }
  51184. },
  51185. },
  51186. [
  51187. {
  51188. name: "Normal",
  51189. height: math.unit(2.61, "meters"),
  51190. default: true
  51191. },
  51192. {
  51193. name: "\"Tall\"",
  51194. height: math.unit(8.21, "meters")
  51195. },
  51196. {
  51197. name: "Tall",
  51198. height: math.unit(19.6, "meters")
  51199. },
  51200. {
  51201. name: "Very Tall",
  51202. height: math.unit(57.91, "meters")
  51203. },
  51204. {
  51205. name: "Semi-Macro",
  51206. height: math.unit(138.64, "meters")
  51207. },
  51208. {
  51209. name: "Macro",
  51210. height: math.unit(831.99, "meters")
  51211. },
  51212. {
  51213. name: "EX-Macro",
  51214. height: math.unit(96451121, "meters")
  51215. },
  51216. {
  51217. name: "S1-Omnipotent",
  51218. height: math.unit(4.42074e+9, "meters")
  51219. },
  51220. {
  51221. name: "S2-Omnipotent",
  51222. height: math.unit(9.42074e+17, "meters")
  51223. },
  51224. {
  51225. name: "Omnipotent",
  51226. height: math.unit(4.23112e+24, "meters")
  51227. },
  51228. {
  51229. name: "Hypergod",
  51230. height: math.unit(5.05176e+27, "meters")
  51231. },
  51232. {
  51233. name: "Hypergod-EX",
  51234. height: math.unit(9.45532e+49, "meters")
  51235. },
  51236. {
  51237. name: "Hypergod-SP",
  51238. height: math.unit(9.45532e+195, "meters")
  51239. },
  51240. ]
  51241. ))
  51242. characterMakers.push(() => makeCharacter(
  51243. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51244. {
  51245. side: {
  51246. height: math.unit(0.6, "meters"),
  51247. weight: math.unit(24, "kg"),
  51248. name: "Side",
  51249. image: {
  51250. source: "./media/characters/celeste/side.svg",
  51251. extra: 810/517,
  51252. bottom: 53/863
  51253. }
  51254. },
  51255. },
  51256. [
  51257. {
  51258. name: "Velociraptor",
  51259. height: math.unit(0.6, "meters"),
  51260. default: true
  51261. },
  51262. {
  51263. name: "Utahraptor",
  51264. height: math.unit(1.8, "meters")
  51265. },
  51266. {
  51267. name: "Gallimimus",
  51268. height: math.unit(4.0, "meters")
  51269. },
  51270. {
  51271. name: "Large",
  51272. height: math.unit(20, "meters")
  51273. },
  51274. {
  51275. name: "Planetary",
  51276. height: math.unit(50, "megameters")
  51277. },
  51278. {
  51279. name: "Stellar",
  51280. height: math.unit(1.5, "gigameters")
  51281. },
  51282. {
  51283. name: "Galactic",
  51284. height: math.unit(100, "exameters")
  51285. },
  51286. ]
  51287. ))
  51288. characterMakers.push(() => makeCharacter(
  51289. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51290. {
  51291. front: {
  51292. height: math.unit(6, "feet"),
  51293. weight: math.unit(210, "lb"),
  51294. name: "Front",
  51295. image: {
  51296. source: "./media/characters/glacia/front.svg",
  51297. extra: 958/901,
  51298. bottom: 45/1003
  51299. }
  51300. },
  51301. },
  51302. [
  51303. {
  51304. name: "Macro",
  51305. height: math.unit(1000, "meters"),
  51306. default: true
  51307. },
  51308. ]
  51309. ))
  51310. characterMakers.push(() => makeCharacter(
  51311. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51312. {
  51313. front: {
  51314. height: math.unit(4, "meters"),
  51315. name: "Front",
  51316. image: {
  51317. source: "./media/characters/giri/front.svg",
  51318. extra: 966/894,
  51319. bottom: 21/987
  51320. }
  51321. },
  51322. },
  51323. [
  51324. {
  51325. name: "Normal",
  51326. height: math.unit(4, "meters"),
  51327. default: true
  51328. },
  51329. ]
  51330. ))
  51331. characterMakers.push(() => makeCharacter(
  51332. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51333. {
  51334. back: {
  51335. height: math.unit(4, "feet"),
  51336. weight: math.unit(37, "lb"),
  51337. name: "Back",
  51338. image: {
  51339. source: "./media/characters/tin/back.svg",
  51340. extra: 845/780,
  51341. bottom: 28/873
  51342. }
  51343. },
  51344. },
  51345. [
  51346. {
  51347. name: "Normal",
  51348. height: math.unit(4, "feet"),
  51349. default: true
  51350. },
  51351. ]
  51352. ))
  51353. characterMakers.push(() => makeCharacter(
  51354. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51355. {
  51356. front: {
  51357. height: math.unit(25, "feet"),
  51358. name: "Front",
  51359. image: {
  51360. source: "./media/characters/cadenza-vivace/front.svg",
  51361. extra: 1842/1578,
  51362. bottom: 30/1872
  51363. }
  51364. },
  51365. },
  51366. [
  51367. {
  51368. name: "Macro",
  51369. height: math.unit(25, "feet"),
  51370. default: true
  51371. },
  51372. ]
  51373. ))
  51374. characterMakers.push(() => makeCharacter(
  51375. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51376. {
  51377. front: {
  51378. height: math.unit(10, "feet"),
  51379. weight: math.unit(625, "kg"),
  51380. name: "Front",
  51381. image: {
  51382. source: "./media/characters/zain/front.svg",
  51383. extra: 1682/1498,
  51384. bottom: 223/1905
  51385. }
  51386. },
  51387. back: {
  51388. height: math.unit(10, "feet"),
  51389. weight: math.unit(625, "kg"),
  51390. name: "Back",
  51391. image: {
  51392. source: "./media/characters/zain/back.svg",
  51393. extra: 1814/1657,
  51394. bottom: 152/1966
  51395. }
  51396. },
  51397. head: {
  51398. height: math.unit(10, "feet"),
  51399. weight: math.unit(625, "kg"),
  51400. name: "Head",
  51401. image: {
  51402. source: "./media/characters/zain/head.svg",
  51403. extra: 1059/762,
  51404. bottom: 0/1059
  51405. }
  51406. },
  51407. },
  51408. [
  51409. {
  51410. name: "Normal",
  51411. height: math.unit(10, "feet"),
  51412. default: true
  51413. },
  51414. ]
  51415. ))
  51416. characterMakers.push(() => makeCharacter(
  51417. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51418. {
  51419. front: {
  51420. height: math.unit(6 + 5/12, "feet"),
  51421. weight: math.unit(750, "lb"),
  51422. name: "Front",
  51423. image: {
  51424. source: "./media/characters/ruchex/front.svg",
  51425. extra: 877/820,
  51426. bottom: 17/894
  51427. },
  51428. extraAttributes: {
  51429. "width": {
  51430. name: "Width",
  51431. power: 1,
  51432. type: "length",
  51433. base: math.unit(4.757, "feet")
  51434. },
  51435. }
  51436. },
  51437. },
  51438. [
  51439. {
  51440. name: "Normal",
  51441. height: math.unit(6 + 5/12, "feet"),
  51442. default: true
  51443. },
  51444. ]
  51445. ))
  51446. characterMakers.push(() => makeCharacter(
  51447. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51448. {
  51449. dressedFront: {
  51450. height: math.unit(191, "cm"),
  51451. weight: math.unit(80, "kg"),
  51452. name: "Front",
  51453. image: {
  51454. source: "./media/characters/buster/dressed-front.svg",
  51455. extra: 1022/973,
  51456. bottom: 69/1091
  51457. }
  51458. },
  51459. dressedBack: {
  51460. height: math.unit(191, "cm"),
  51461. weight: math.unit(80, "kg"),
  51462. name: "Back",
  51463. image: {
  51464. source: "./media/characters/buster/dressed-back.svg",
  51465. extra: 1018/970,
  51466. bottom: 55/1073
  51467. }
  51468. },
  51469. nudeFront: {
  51470. height: math.unit(191, "cm"),
  51471. weight: math.unit(80, "kg"),
  51472. name: "Front (Nude)",
  51473. image: {
  51474. source: "./media/characters/buster/nude-front.svg",
  51475. extra: 1022/973,
  51476. bottom: 69/1091
  51477. }
  51478. },
  51479. nudeBack: {
  51480. height: math.unit(191, "cm"),
  51481. weight: math.unit(80, "kg"),
  51482. name: "Back (Nude)",
  51483. image: {
  51484. source: "./media/characters/buster/nude-back.svg",
  51485. extra: 1018/970,
  51486. bottom: 55/1073
  51487. }
  51488. },
  51489. dick: {
  51490. height: math.unit(2.59, "feet"),
  51491. name: "Dick",
  51492. image: {
  51493. source: "./media/characters/buster/dick.svg"
  51494. }
  51495. },
  51496. ass: {
  51497. height: math.unit(1.2, "feet"),
  51498. name: "Ass",
  51499. image: {
  51500. source: "./media/characters/buster/ass.svg"
  51501. }
  51502. },
  51503. },
  51504. [
  51505. {
  51506. name: "Normal",
  51507. height: math.unit(191, "cm"),
  51508. default: true
  51509. },
  51510. ]
  51511. ))
  51512. characterMakers.push(() => makeCharacter(
  51513. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51514. {
  51515. side: {
  51516. height: math.unit(8.1, "feet"),
  51517. weight: math.unit(3500, "lb"),
  51518. name: "Side",
  51519. image: {
  51520. source: "./media/characters/sonya/side.svg",
  51521. extra: 1730/1317,
  51522. bottom: 86/1816
  51523. }
  51524. },
  51525. },
  51526. [
  51527. {
  51528. name: "Normal",
  51529. height: math.unit(8.1, "feet"),
  51530. default: true
  51531. },
  51532. ]
  51533. ))
  51534. characterMakers.push(() => makeCharacter(
  51535. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51536. {
  51537. front: {
  51538. height: math.unit(6, "feet"),
  51539. weight: math.unit(150, "lb"),
  51540. name: "Front",
  51541. image: {
  51542. source: "./media/characters/cadence-andrysiak/front.svg",
  51543. extra: 1164/1121,
  51544. bottom: 60/1224
  51545. }
  51546. },
  51547. back: {
  51548. height: math.unit(6, "feet"),
  51549. weight: math.unit(150, "lb"),
  51550. name: "Back",
  51551. image: {
  51552. source: "./media/characters/cadence-andrysiak/back.svg",
  51553. extra: 1200/1165,
  51554. bottom: 9/1209
  51555. }
  51556. },
  51557. dressed: {
  51558. height: math.unit(6, "feet"),
  51559. weight: math.unit(150, "lb"),
  51560. name: "Dressed",
  51561. image: {
  51562. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51563. extra: 1164/1121,
  51564. bottom: 60/1224
  51565. }
  51566. },
  51567. },
  51568. [
  51569. {
  51570. name: "Micro",
  51571. height: math.unit(1, "mm")
  51572. },
  51573. {
  51574. name: "Normal",
  51575. height: math.unit(6, "feet"),
  51576. default: true
  51577. },
  51578. ]
  51579. ))
  51580. characterMakers.push(() => makeCharacter(
  51581. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51582. {
  51583. front: {
  51584. height: math.unit(60, "inches"),
  51585. weight: math.unit(16, "lb"),
  51586. preyCapacity: math.unit(80, "liters"),
  51587. name: "Front",
  51588. image: {
  51589. source: "./media/characters/penny-lynx/front.svg",
  51590. extra: 1959/1769,
  51591. bottom: 49/2008
  51592. }
  51593. },
  51594. },
  51595. [
  51596. {
  51597. name: "Nokia",
  51598. height: math.unit(2, "inches")
  51599. },
  51600. {
  51601. name: "Desktop",
  51602. height: math.unit(24, "inches")
  51603. },
  51604. {
  51605. name: "TV",
  51606. height: math.unit(60, "inches")
  51607. },
  51608. {
  51609. name: "Jumbotron",
  51610. height: math.unit(12, "feet")
  51611. },
  51612. {
  51613. name: "Billboard",
  51614. height: math.unit(48, "feet"),
  51615. default: true
  51616. },
  51617. {
  51618. name: "IMAX",
  51619. height: math.unit(96, "feet")
  51620. },
  51621. {
  51622. name: "SINGULARITY",
  51623. height: math.unit(864938, "miles")
  51624. },
  51625. ]
  51626. ))
  51627. characterMakers.push(() => makeCharacter(
  51628. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51629. {
  51630. front: {
  51631. height: math.unit(5 + 4/12, "feet"),
  51632. weight: math.unit(230, "lb"),
  51633. name: "Front",
  51634. image: {
  51635. source: "./media/characters/sukebe/front.svg",
  51636. extra: 2130/2038,
  51637. bottom: 90/2220
  51638. }
  51639. },
  51640. back: {
  51641. height: math.unit(3.48, "feet"),
  51642. weight: math.unit(230, "lb"),
  51643. name: "Back",
  51644. image: {
  51645. source: "./media/characters/sukebe/back.svg",
  51646. extra: 1670/1604,
  51647. bottom: 0/1670
  51648. }
  51649. },
  51650. },
  51651. [
  51652. {
  51653. name: "Normal",
  51654. height: math.unit(5 + 4/12, "feet"),
  51655. default: true
  51656. },
  51657. ]
  51658. ))
  51659. characterMakers.push(() => makeCharacter(
  51660. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51661. {
  51662. front: {
  51663. height: math.unit(6, "feet"),
  51664. name: "Front",
  51665. image: {
  51666. source: "./media/characters/nylla/front.svg",
  51667. extra: 1868/1699,
  51668. bottom: 97/1965
  51669. }
  51670. },
  51671. back: {
  51672. height: math.unit(6, "feet"),
  51673. name: "Back",
  51674. image: {
  51675. source: "./media/characters/nylla/back.svg",
  51676. extra: 1889/1712,
  51677. bottom: 93/1982
  51678. }
  51679. },
  51680. frontNsfw: {
  51681. height: math.unit(6, "feet"),
  51682. name: "Front (NSFW)",
  51683. image: {
  51684. source: "./media/characters/nylla/front-nsfw.svg",
  51685. extra: 1868/1699,
  51686. bottom: 97/1965
  51687. },
  51688. extraAttributes: {
  51689. "dickLength": {
  51690. name: "Dick Length",
  51691. power: 1,
  51692. type: "length",
  51693. base: math.unit(1.4, "feet")
  51694. },
  51695. "cumVolume": {
  51696. name: "Cum Volume",
  51697. power: 3,
  51698. type: "volume",
  51699. base: math.unit(100, "mL")
  51700. },
  51701. }
  51702. },
  51703. backNsfw: {
  51704. height: math.unit(6, "feet"),
  51705. name: "Back (NSFW)",
  51706. image: {
  51707. source: "./media/characters/nylla/back-nsfw.svg",
  51708. extra: 1889/1712,
  51709. bottom: 93/1982
  51710. }
  51711. },
  51712. maw: {
  51713. height: math.unit(2.10, "feet"),
  51714. name: "Maw",
  51715. image: {
  51716. source: "./media/characters/nylla/maw.svg"
  51717. }
  51718. },
  51719. paws: {
  51720. height: math.unit(2.06, "feet"),
  51721. name: "Paws",
  51722. image: {
  51723. source: "./media/characters/nylla/paws.svg"
  51724. }
  51725. },
  51726. muzzle: {
  51727. height: math.unit(0.61, "feet"),
  51728. name: "Muzzle",
  51729. image: {
  51730. source: "./media/characters/nylla/muzzle.svg"
  51731. }
  51732. },
  51733. sheath: {
  51734. height: math.unit(1.305, "feet"),
  51735. name: "Sheath",
  51736. image: {
  51737. source: "./media/characters/nylla/sheath.svg"
  51738. }
  51739. },
  51740. },
  51741. [
  51742. {
  51743. name: "Micro",
  51744. height: math.unit(7.5, "inches")
  51745. },
  51746. {
  51747. name: "Normal",
  51748. height: math.unit(7, "feet"),
  51749. default: true
  51750. },
  51751. {
  51752. name: "Macro",
  51753. height: math.unit(60, "feet")
  51754. },
  51755. {
  51756. name: "Mega",
  51757. height: math.unit(200, "feet")
  51758. },
  51759. ]
  51760. ))
  51761. characterMakers.push(() => makeCharacter(
  51762. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51763. {
  51764. front: {
  51765. height: math.unit(10, "feet"),
  51766. weight: math.unit(2300, "lb"),
  51767. name: "Front",
  51768. image: {
  51769. source: "./media/characters/hunt3r/front.svg",
  51770. extra: 1909/1742,
  51771. bottom: 46/1955
  51772. }
  51773. },
  51774. },
  51775. [
  51776. {
  51777. name: "Normal",
  51778. height: math.unit(10, "feet"),
  51779. default: true
  51780. },
  51781. ]
  51782. ))
  51783. characterMakers.push(() => makeCharacter(
  51784. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51785. {
  51786. dressed: {
  51787. height: math.unit(11, "feet"),
  51788. weight: math.unit(18500, "lb"),
  51789. preyCapacity: math.unit(9, "people"),
  51790. name: "Dressed",
  51791. image: {
  51792. source: "./media/characters/cylphis/dressed.svg",
  51793. extra: 1028/1003,
  51794. bottom: 75/1103
  51795. },
  51796. },
  51797. undressed: {
  51798. height: math.unit(11, "feet"),
  51799. weight: math.unit(18500, "lb"),
  51800. preyCapacity: math.unit(9, "people"),
  51801. name: "Undressed",
  51802. image: {
  51803. source: "./media/characters/cylphis/undressed.svg",
  51804. extra: 1028/1003,
  51805. bottom: 75/1103
  51806. }
  51807. },
  51808. full: {
  51809. height: math.unit(11, "feet"),
  51810. weight: math.unit(18500 + 150*9, "lb"),
  51811. preyCapacity: math.unit(9, "people"),
  51812. name: "Full",
  51813. image: {
  51814. source: "./media/characters/cylphis/full.svg",
  51815. extra: 1028/1003,
  51816. bottom: 75/1103
  51817. }
  51818. },
  51819. },
  51820. [
  51821. {
  51822. name: "Small",
  51823. height: math.unit(8, "feet")
  51824. },
  51825. {
  51826. name: "Normal",
  51827. height: math.unit(11, "feet"),
  51828. default: true
  51829. },
  51830. ]
  51831. ))
  51832. characterMakers.push(() => makeCharacter(
  51833. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51834. {
  51835. front: {
  51836. height: math.unit(2 + 7/12, "feet"),
  51837. name: "Front",
  51838. image: {
  51839. source: "./media/characters/orishan/front.svg",
  51840. extra: 1058/1023,
  51841. bottom: 23/1081
  51842. }
  51843. },
  51844. back: {
  51845. height: math.unit(2 + 7/12, "feet"),
  51846. name: "Back",
  51847. image: {
  51848. source: "./media/characters/orishan/back.svg",
  51849. extra: 1058/1023,
  51850. bottom: 23/1081
  51851. }
  51852. },
  51853. },
  51854. [
  51855. {
  51856. name: "Micro",
  51857. height: math.unit(2, "cm")
  51858. },
  51859. {
  51860. name: "Normal",
  51861. height: math.unit(2 + 7/12, "feet"),
  51862. default: true
  51863. },
  51864. ]
  51865. ))
  51866. characterMakers.push(() => makeCharacter(
  51867. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51868. {
  51869. front: {
  51870. height: math.unit(3, "meters"),
  51871. weight: math.unit(508, "kg"),
  51872. name: "Front",
  51873. image: {
  51874. source: "./media/characters/seranis/front.svg",
  51875. extra: 1478/1454,
  51876. bottom: 41/1519
  51877. }
  51878. },
  51879. },
  51880. [
  51881. {
  51882. name: "Normal",
  51883. height: math.unit(3, "meters"),
  51884. default: true
  51885. },
  51886. {
  51887. name: "Macro",
  51888. height: math.unit(108, "meters")
  51889. },
  51890. {
  51891. name: "Megamacro",
  51892. height: math.unit(1250, "meters")
  51893. },
  51894. ]
  51895. ))
  51896. characterMakers.push(() => makeCharacter(
  51897. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51898. {
  51899. undressed: {
  51900. height: math.unit(5 + 3/12, "feet"),
  51901. name: "Undressed",
  51902. image: {
  51903. source: "./media/characters/ankou/undressed.svg",
  51904. extra: 1301/1213,
  51905. bottom: 87/1388
  51906. }
  51907. },
  51908. dressed: {
  51909. height: math.unit(5 + 3/12, "feet"),
  51910. name: "Dressed",
  51911. image: {
  51912. source: "./media/characters/ankou/dressed.svg",
  51913. extra: 1301/1213,
  51914. bottom: 87/1388
  51915. }
  51916. },
  51917. head: {
  51918. height: math.unit(1.61, "feet"),
  51919. name: "Head",
  51920. image: {
  51921. source: "./media/characters/ankou/head.svg"
  51922. }
  51923. },
  51924. },
  51925. [
  51926. {
  51927. name: "Normal",
  51928. height: math.unit(5 + 3/12, "feet"),
  51929. default: true
  51930. },
  51931. ]
  51932. ))
  51933. characterMakers.push(() => makeCharacter(
  51934. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51935. {
  51936. side: {
  51937. height: math.unit(6 + 3/12, "feet"),
  51938. weight: math.unit(200, "kg"),
  51939. name: "Side",
  51940. image: {
  51941. source: "./media/characters/juniper-skunktaur/side.svg",
  51942. extra: 1574/1229,
  51943. bottom: 38/1612
  51944. }
  51945. },
  51946. front: {
  51947. height: math.unit(6 + 3/12, "feet"),
  51948. weight: math.unit(200, "kg"),
  51949. name: "Front",
  51950. image: {
  51951. source: "./media/characters/juniper-skunktaur/front.svg",
  51952. extra: 1337/1278,
  51953. bottom: 22/1359
  51954. }
  51955. },
  51956. back: {
  51957. height: math.unit(6 + 3/12, "feet"),
  51958. weight: math.unit(200, "kg"),
  51959. name: "Back",
  51960. image: {
  51961. source: "./media/characters/juniper-skunktaur/back.svg",
  51962. extra: 1618/1273,
  51963. bottom: 13/1631
  51964. }
  51965. },
  51966. top: {
  51967. height: math.unit(2.62, "feet"),
  51968. weight: math.unit(200, "kg"),
  51969. name: "Top",
  51970. image: {
  51971. source: "./media/characters/juniper-skunktaur/top.svg"
  51972. }
  51973. },
  51974. },
  51975. [
  51976. {
  51977. name: "Normal",
  51978. height: math.unit(6 + 3/12, "feet"),
  51979. default: true
  51980. },
  51981. ]
  51982. ))
  51983. characterMakers.push(() => makeCharacter(
  51984. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51985. {
  51986. front: {
  51987. height: math.unit(20.5, "feet"),
  51988. name: "Front",
  51989. image: {
  51990. source: "./media/characters/rei/front.svg",
  51991. extra: 1349/1195,
  51992. bottom: 31/1380
  51993. }
  51994. },
  51995. back: {
  51996. height: math.unit(20.5, "feet"),
  51997. name: "Back",
  51998. image: {
  51999. source: "./media/characters/rei/back.svg",
  52000. extra: 1358/1204,
  52001. bottom: 22/1380
  52002. }
  52003. },
  52004. pawsDigi: {
  52005. height: math.unit(3.45, "feet"),
  52006. name: "Paws (Digi)",
  52007. image: {
  52008. source: "./media/characters/rei/paws-digi.svg"
  52009. }
  52010. },
  52011. pawsPlanti: {
  52012. height: math.unit(3.45, "feet"),
  52013. name: "Paws (Planti)",
  52014. image: {
  52015. source: "./media/characters/rei/paws-planti.svg"
  52016. }
  52017. },
  52018. },
  52019. [
  52020. {
  52021. name: "Normal",
  52022. height: math.unit(20.5, "feet"),
  52023. default: true
  52024. },
  52025. ]
  52026. ))
  52027. characterMakers.push(() => makeCharacter(
  52028. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52029. {
  52030. front: {
  52031. height: math.unit(5 + 11/12, "feet"),
  52032. name: "Front",
  52033. image: {
  52034. source: "./media/characters/carina/front.svg",
  52035. extra: 1720/1449,
  52036. bottom: 14/1734
  52037. }
  52038. },
  52039. back: {
  52040. height: math.unit(5 + 11/12, "feet"),
  52041. name: "Back",
  52042. image: {
  52043. source: "./media/characters/carina/back.svg",
  52044. extra: 1493/1445,
  52045. bottom: 17/1510
  52046. }
  52047. },
  52048. paw: {
  52049. height: math.unit(0.92, "feet"),
  52050. name: "Paw",
  52051. image: {
  52052. source: "./media/characters/carina/paw.svg"
  52053. }
  52054. },
  52055. },
  52056. [
  52057. {
  52058. name: "Normal",
  52059. height: math.unit(5 + 11/12, "feet"),
  52060. default: true
  52061. },
  52062. ]
  52063. ))
  52064. characterMakers.push(() => makeCharacter(
  52065. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52066. {
  52067. front: {
  52068. height: math.unit(4.88, "meters"),
  52069. name: "Front",
  52070. image: {
  52071. source: "./media/characters/maya/front.svg",
  52072. extra: 1222/1145,
  52073. bottom: 57/1279
  52074. }
  52075. },
  52076. },
  52077. [
  52078. {
  52079. name: "Normal",
  52080. height: math.unit(4.88, "meters"),
  52081. default: true
  52082. },
  52083. {
  52084. name: "Macro",
  52085. height: math.unit(38.1, "meters")
  52086. },
  52087. {
  52088. name: "Macro+",
  52089. height: math.unit(152.4, "meters")
  52090. },
  52091. {
  52092. name: "Macro++",
  52093. height: math.unit(16.09, "km")
  52094. },
  52095. {
  52096. name: "Mega-macro",
  52097. height: math.unit(700, "megameters")
  52098. },
  52099. ]
  52100. ))
  52101. characterMakers.push(() => makeCharacter(
  52102. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52103. {
  52104. front: {
  52105. height: math.unit(6 + 2/12, "feet"),
  52106. weight: math.unit(500, "lb"),
  52107. preyCapacity: math.unit(4, "people"),
  52108. name: "Front",
  52109. image: {
  52110. source: "./media/characters/yepir/front.svg"
  52111. }
  52112. },
  52113. side: {
  52114. height: math.unit(6 + 2/12, "feet"),
  52115. weight: math.unit(500, "lb"),
  52116. preyCapacity: math.unit(4, "people"),
  52117. name: "Side",
  52118. image: {
  52119. source: "./media/characters/yepir/side.svg"
  52120. }
  52121. },
  52122. paw: {
  52123. height: math.unit(1.05, "feet"),
  52124. name: "Paw",
  52125. image: {
  52126. source: "./media/characters/yepir/paw.svg"
  52127. }
  52128. },
  52129. },
  52130. [
  52131. {
  52132. name: "Normal",
  52133. height: math.unit(6 + 2/12, "feet"),
  52134. default: true
  52135. },
  52136. ]
  52137. ))
  52138. characterMakers.push(() => makeCharacter(
  52139. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52140. {
  52141. front: {
  52142. height: math.unit(5 + 4/12, "feet"),
  52143. name: "Front",
  52144. image: {
  52145. source: "./media/characters/russec/front.svg",
  52146. extra: 1926/1626,
  52147. bottom: 72/1998
  52148. }
  52149. },
  52150. back: {
  52151. height: math.unit(5 + 4/12, "feet"),
  52152. name: "Back",
  52153. image: {
  52154. source: "./media/characters/russec/back.svg",
  52155. extra: 1910/1591,
  52156. bottom: 48/1958
  52157. }
  52158. },
  52159. },
  52160. [
  52161. {
  52162. name: "Small",
  52163. height: math.unit(5 + 4/12, "feet")
  52164. },
  52165. {
  52166. name: "Normal",
  52167. height: math.unit(72, "feet"),
  52168. default: true
  52169. },
  52170. ]
  52171. ))
  52172. characterMakers.push(() => makeCharacter(
  52173. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52174. {
  52175. side: {
  52176. height: math.unit(12, "feet"),
  52177. name: "Side",
  52178. image: {
  52179. source: "./media/characters/cianus/side.svg",
  52180. extra: 808/526,
  52181. bottom: 61/869
  52182. }
  52183. },
  52184. },
  52185. [
  52186. {
  52187. name: "Normal",
  52188. height: math.unit(12, "feet"),
  52189. default: true
  52190. },
  52191. ]
  52192. ))
  52193. characterMakers.push(() => makeCharacter(
  52194. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52195. {
  52196. front: {
  52197. height: math.unit(9 + 6/12, "feet"),
  52198. weight: math.unit(300, "lb"),
  52199. name: "Front",
  52200. image: {
  52201. source: "./media/characters/ahab/front.svg",
  52202. extra: 1897/1868,
  52203. bottom: 121/2018
  52204. }
  52205. },
  52206. frontNsfw: {
  52207. height: math.unit(9 + 6/12, "feet"),
  52208. weight: math.unit(300, "lb"),
  52209. name: "Front-nsfw",
  52210. image: {
  52211. source: "./media/characters/ahab/front-nsfw.svg",
  52212. extra: 1897/1868,
  52213. bottom: 121/2018
  52214. }
  52215. },
  52216. },
  52217. [
  52218. {
  52219. name: "Normal",
  52220. height: math.unit(9 + 6/12, "feet")
  52221. },
  52222. {
  52223. name: "Macro",
  52224. height: math.unit(657, "feet"),
  52225. default: true
  52226. },
  52227. ]
  52228. ))
  52229. characterMakers.push(() => makeCharacter(
  52230. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52231. {
  52232. front: {
  52233. height: math.unit(2.69, "meters"),
  52234. weight: math.unit(132, "kg"),
  52235. name: "Front",
  52236. image: {
  52237. source: "./media/characters/aarkus/front.svg",
  52238. extra: 1400/1231,
  52239. bottom: 34/1434
  52240. }
  52241. },
  52242. back: {
  52243. height: math.unit(2.69, "meters"),
  52244. weight: math.unit(132, "kg"),
  52245. name: "Back",
  52246. image: {
  52247. source: "./media/characters/aarkus/back.svg",
  52248. extra: 1381/1218,
  52249. bottom: 30/1411
  52250. }
  52251. },
  52252. frontNsfw: {
  52253. height: math.unit(2.69, "meters"),
  52254. weight: math.unit(132, "kg"),
  52255. name: "Front (NSFW)",
  52256. image: {
  52257. source: "./media/characters/aarkus/front-nsfw.svg",
  52258. extra: 1400/1231,
  52259. bottom: 34/1434
  52260. }
  52261. },
  52262. foot: {
  52263. height: math.unit(1.45, "feet"),
  52264. name: "Foot",
  52265. image: {
  52266. source: "./media/characters/aarkus/foot.svg"
  52267. }
  52268. },
  52269. head: {
  52270. height: math.unit(2.85, "feet"),
  52271. name: "Head",
  52272. image: {
  52273. source: "./media/characters/aarkus/head.svg"
  52274. }
  52275. },
  52276. headAlt: {
  52277. height: math.unit(3.07, "feet"),
  52278. name: "Head (Alt)",
  52279. image: {
  52280. source: "./media/characters/aarkus/head-alt.svg"
  52281. }
  52282. },
  52283. mouth: {
  52284. height: math.unit(1.25, "feet"),
  52285. name: "Mouth",
  52286. image: {
  52287. source: "./media/characters/aarkus/mouth.svg"
  52288. }
  52289. },
  52290. dick: {
  52291. height: math.unit(1.77, "feet"),
  52292. name: "Dick",
  52293. image: {
  52294. source: "./media/characters/aarkus/dick.svg"
  52295. }
  52296. },
  52297. },
  52298. [
  52299. {
  52300. name: "Normal",
  52301. height: math.unit(2.69, "meters"),
  52302. default: true
  52303. },
  52304. {
  52305. name: "Macro",
  52306. height: math.unit(269, "meters")
  52307. },
  52308. {
  52309. name: "Macro+",
  52310. height: math.unit(672.5, "meters")
  52311. },
  52312. {
  52313. name: "Megamacro",
  52314. height: math.unit(2.017, "km")
  52315. },
  52316. ]
  52317. ))
  52318. characterMakers.push(() => makeCharacter(
  52319. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52320. {
  52321. front: {
  52322. height: math.unit(23.47, "cm"),
  52323. weight: math.unit(600, "grams"),
  52324. name: "Front",
  52325. image: {
  52326. source: "./media/characters/diode/front.svg",
  52327. extra: 1778/1396,
  52328. bottom: 95/1873
  52329. }
  52330. },
  52331. side: {
  52332. height: math.unit(23.47, "cm"),
  52333. weight: math.unit(600, "grams"),
  52334. name: "Side",
  52335. image: {
  52336. source: "./media/characters/diode/side.svg",
  52337. extra: 1831/1404,
  52338. bottom: 86/1917
  52339. }
  52340. },
  52341. wings: {
  52342. height: math.unit(0.683, "feet"),
  52343. name: "Wings",
  52344. image: {
  52345. source: "./media/characters/diode/wings.svg"
  52346. }
  52347. },
  52348. },
  52349. [
  52350. {
  52351. name: "Normal",
  52352. height: math.unit(23.47, "cm"),
  52353. default: true
  52354. },
  52355. ]
  52356. ))
  52357. characterMakers.push(() => makeCharacter(
  52358. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52359. {
  52360. front: {
  52361. height: math.unit(6 + 3/12, "feet"),
  52362. weight: math.unit(250, "lb"),
  52363. name: "Front",
  52364. image: {
  52365. source: "./media/characters/reika/front.svg",
  52366. extra: 1120/1078,
  52367. bottom: 86/1206
  52368. }
  52369. },
  52370. },
  52371. [
  52372. {
  52373. name: "Normal",
  52374. height: math.unit(6 + 3/12, "feet"),
  52375. default: true
  52376. },
  52377. ]
  52378. ))
  52379. characterMakers.push(() => makeCharacter(
  52380. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52381. {
  52382. front: {
  52383. height: math.unit(16 + 8/12, "feet"),
  52384. weight: math.unit(9000, "lb"),
  52385. name: "Front",
  52386. image: {
  52387. source: "./media/characters/lokuto-takama/front.svg",
  52388. extra: 1774/1632,
  52389. bottom: 147/1921
  52390. },
  52391. extraAttributes: {
  52392. "bustWidth": {
  52393. name: "Bust Width",
  52394. power: 1,
  52395. type: "length",
  52396. base: math.unit(2.4, "meters")
  52397. },
  52398. "breastWeight": {
  52399. name: "Breast Weight",
  52400. power: 3,
  52401. type: "mass",
  52402. base: math.unit(1000, "kg")
  52403. },
  52404. }
  52405. },
  52406. },
  52407. [
  52408. {
  52409. name: "Normal",
  52410. height: math.unit(16 + 8/12, "feet"),
  52411. default: true
  52412. },
  52413. ]
  52414. ))
  52415. characterMakers.push(() => makeCharacter(
  52416. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52417. {
  52418. front: {
  52419. height: math.unit(10, "cm"),
  52420. weight: math.unit(850, "grams"),
  52421. name: "Front",
  52422. image: {
  52423. source: "./media/characters/owak-bone/front.svg",
  52424. extra: 1965/1801,
  52425. bottom: 31/1996
  52426. }
  52427. },
  52428. },
  52429. [
  52430. {
  52431. name: "Normal",
  52432. height: math.unit(10, "cm"),
  52433. default: true
  52434. },
  52435. ]
  52436. ))
  52437. characterMakers.push(() => makeCharacter(
  52438. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52439. {
  52440. front: {
  52441. height: math.unit(2 + 6/12, "feet"),
  52442. weight: math.unit(9, "lb"),
  52443. name: "Front",
  52444. image: {
  52445. source: "./media/characters/muffin/front.svg",
  52446. extra: 1220/1195,
  52447. bottom: 84/1304
  52448. }
  52449. },
  52450. },
  52451. [
  52452. {
  52453. name: "Normal",
  52454. height: math.unit(2 + 6/12, "feet"),
  52455. default: true
  52456. },
  52457. ]
  52458. ))
  52459. characterMakers.push(() => makeCharacter(
  52460. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52461. {
  52462. front: {
  52463. height: math.unit(7, "feet"),
  52464. name: "Front",
  52465. image: {
  52466. source: "./media/characters/chimera/front.svg",
  52467. extra: 1752/1614,
  52468. bottom: 68/1820
  52469. }
  52470. },
  52471. },
  52472. [
  52473. {
  52474. name: "Normal",
  52475. height: math.unit(7, "feet")
  52476. },
  52477. {
  52478. name: "Gigamacro",
  52479. height: math.unit(2.9, "gigameters"),
  52480. default: true
  52481. },
  52482. {
  52483. name: "Universal",
  52484. height: math.unit(1.56e26, "yottameters")
  52485. },
  52486. ]
  52487. ))
  52488. characterMakers.push(() => makeCharacter(
  52489. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52490. {
  52491. front: {
  52492. height: math.unit(3, "feet"),
  52493. weight: math.unit(20, "lb"),
  52494. name: "Front",
  52495. image: {
  52496. source: "./media/characters/kit-fennec-fox/front.svg",
  52497. extra: 1027/932,
  52498. bottom: 16/1043
  52499. }
  52500. },
  52501. back: {
  52502. height: math.unit(3, "feet"),
  52503. weight: math.unit(20, "lb"),
  52504. name: "Back",
  52505. image: {
  52506. source: "./media/characters/kit-fennec-fox/back.svg",
  52507. extra: 1027/932,
  52508. bottom: 16/1043
  52509. }
  52510. },
  52511. },
  52512. [
  52513. {
  52514. name: "Normal",
  52515. height: math.unit(3, "feet"),
  52516. default: true
  52517. },
  52518. ]
  52519. ))
  52520. characterMakers.push(() => makeCharacter(
  52521. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52522. {
  52523. front: {
  52524. height: math.unit(167, "cm"),
  52525. name: "Front",
  52526. image: {
  52527. source: "./media/characters/blue-otter/front.svg",
  52528. extra: 1951/1920,
  52529. bottom: 31/1982
  52530. }
  52531. },
  52532. },
  52533. [
  52534. {
  52535. name: "Otter-Sized",
  52536. height: math.unit(100, "cm")
  52537. },
  52538. {
  52539. name: "Normal",
  52540. height: math.unit(167, "cm"),
  52541. default: true
  52542. },
  52543. ]
  52544. ))
  52545. characterMakers.push(() => makeCharacter(
  52546. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52547. {
  52548. front: {
  52549. height: math.unit(4 + 4/12, "feet"),
  52550. name: "Front",
  52551. image: {
  52552. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52553. extra: 1072/1067,
  52554. bottom: 117/1189
  52555. }
  52556. },
  52557. back: {
  52558. height: math.unit(4 + 4/12, "feet"),
  52559. name: "Back",
  52560. image: {
  52561. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52562. extra: 1135/1129,
  52563. bottom: 57/1192
  52564. }
  52565. },
  52566. head: {
  52567. height: math.unit(1.77, "feet"),
  52568. name: "Head",
  52569. image: {
  52570. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52571. }
  52572. },
  52573. },
  52574. [
  52575. {
  52576. name: "Normal",
  52577. height: math.unit(4 + 4/12, "feet"),
  52578. default: true
  52579. },
  52580. ]
  52581. ))
  52582. characterMakers.push(() => makeCharacter(
  52583. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52584. {
  52585. front: {
  52586. height: math.unit(2, "inches"),
  52587. name: "Front",
  52588. image: {
  52589. source: "./media/characters/carley-hartford/front.svg",
  52590. extra: 1035/988,
  52591. bottom: 23/1058
  52592. }
  52593. },
  52594. back: {
  52595. height: math.unit(2, "inches"),
  52596. name: "Back",
  52597. image: {
  52598. source: "./media/characters/carley-hartford/back.svg",
  52599. extra: 1035/988,
  52600. bottom: 23/1058
  52601. }
  52602. },
  52603. dressed: {
  52604. height: math.unit(2, "inches"),
  52605. name: "Dressed",
  52606. image: {
  52607. source: "./media/characters/carley-hartford/dressed.svg",
  52608. extra: 651/620,
  52609. bottom: 0/651
  52610. }
  52611. },
  52612. },
  52613. [
  52614. {
  52615. name: "Micro",
  52616. height: math.unit(2, "inches"),
  52617. default: true
  52618. },
  52619. {
  52620. name: "Macro",
  52621. height: math.unit(6 + 3/12, "feet")
  52622. },
  52623. ]
  52624. ))
  52625. characterMakers.push(() => makeCharacter(
  52626. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52627. {
  52628. front: {
  52629. height: math.unit(2 + 3/12, "feet"),
  52630. weight: math.unit(15 + 7/16, "lb"),
  52631. name: "Front",
  52632. image: {
  52633. source: "./media/characters/duke/front.svg",
  52634. extra: 910/815,
  52635. bottom: 30/940
  52636. }
  52637. },
  52638. },
  52639. [
  52640. {
  52641. name: "Normal",
  52642. height: math.unit(2 + 3/12, "feet"),
  52643. default: true
  52644. },
  52645. ]
  52646. ))
  52647. characterMakers.push(() => makeCharacter(
  52648. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52649. {
  52650. front: {
  52651. height: math.unit(5 + 4/12, "feet"),
  52652. weight: math.unit(156, "lb"),
  52653. name: "Front",
  52654. image: {
  52655. source: "./media/characters/dein/front.svg",
  52656. extra: 855/815,
  52657. bottom: 48/903
  52658. }
  52659. },
  52660. side: {
  52661. height: math.unit(5 + 4/12, "feet"),
  52662. weight: math.unit(156, "lb"),
  52663. name: "side",
  52664. image: {
  52665. source: "./media/characters/dein/side.svg",
  52666. extra: 846/803,
  52667. bottom: 25/871
  52668. }
  52669. },
  52670. maw: {
  52671. height: math.unit(1.45, "feet"),
  52672. name: "Maw",
  52673. image: {
  52674. source: "./media/characters/dein/maw.svg"
  52675. }
  52676. },
  52677. },
  52678. [
  52679. {
  52680. name: "Ferret Sized",
  52681. height: math.unit(2 + 5/12, "feet")
  52682. },
  52683. {
  52684. name: "Normal",
  52685. height: math.unit(5 + 4/12, "feet"),
  52686. default: true
  52687. },
  52688. ]
  52689. ))
  52690. characterMakers.push(() => makeCharacter(
  52691. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52692. {
  52693. front: {
  52694. height: math.unit(84 + 8/12, "feet"),
  52695. weight: math.unit(942180, "lb"),
  52696. name: "Front",
  52697. image: {
  52698. source: "./media/characters/daurine-arima/front.svg",
  52699. extra: 1989/1782,
  52700. bottom: 37/2026
  52701. }
  52702. },
  52703. side: {
  52704. height: math.unit(84 + 8/12, "feet"),
  52705. weight: math.unit(942180, "lb"),
  52706. name: "Side",
  52707. image: {
  52708. source: "./media/characters/daurine-arima/side.svg",
  52709. extra: 1997/1790,
  52710. bottom: 21/2018
  52711. }
  52712. },
  52713. back: {
  52714. height: math.unit(84 + 8/12, "feet"),
  52715. weight: math.unit(942180, "lb"),
  52716. name: "Back",
  52717. image: {
  52718. source: "./media/characters/daurine-arima/back.svg",
  52719. extra: 1992/1800,
  52720. bottom: 12/2004
  52721. }
  52722. },
  52723. head: {
  52724. height: math.unit(15.5, "feet"),
  52725. name: "Head",
  52726. image: {
  52727. source: "./media/characters/daurine-arima/head.svg"
  52728. }
  52729. },
  52730. headAlt: {
  52731. height: math.unit(19.19, "feet"),
  52732. name: "Head (Alt)",
  52733. image: {
  52734. source: "./media/characters/daurine-arima/head-alt.svg"
  52735. }
  52736. },
  52737. },
  52738. [
  52739. {
  52740. name: "Minimum height",
  52741. height: math.unit(8 + 10/12, "feet")
  52742. },
  52743. {
  52744. name: "Comfort height",
  52745. height: math.unit(19 + 6 /12, "feet")
  52746. },
  52747. {
  52748. name: "\"Normal\" height",
  52749. height: math.unit(28 + 10/12, "feet")
  52750. },
  52751. {
  52752. name: "Base height",
  52753. height: math.unit(84 + 8/12, "feet"),
  52754. default: true
  52755. },
  52756. {
  52757. name: "Mini-macro",
  52758. height: math.unit(2360, "feet")
  52759. },
  52760. {
  52761. name: "Macro",
  52762. height: math.unit(10, "miles")
  52763. },
  52764. {
  52765. name: "Goddess",
  52766. height: math.unit(9.99e40, "yottameters")
  52767. },
  52768. ]
  52769. ))
  52770. characterMakers.push(() => makeCharacter(
  52771. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52772. {
  52773. front: {
  52774. height: math.unit(2.3, "meters"),
  52775. name: "Front",
  52776. image: {
  52777. source: "./media/characters/cilenomon/front.svg",
  52778. extra: 1963/1778,
  52779. bottom: 54/2017
  52780. }
  52781. },
  52782. },
  52783. [
  52784. {
  52785. name: "Normal",
  52786. height: math.unit(2.3, "meters"),
  52787. default: true
  52788. },
  52789. {
  52790. name: "Big",
  52791. height: math.unit(5, "meters")
  52792. },
  52793. {
  52794. name: "Macro",
  52795. height: math.unit(30, "meters")
  52796. },
  52797. {
  52798. name: "True",
  52799. height: math.unit(1, "universe")
  52800. },
  52801. ]
  52802. ))
  52803. characterMakers.push(() => makeCharacter(
  52804. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52805. {
  52806. front: {
  52807. height: math.unit(5, "feet"),
  52808. name: "Front",
  52809. image: {
  52810. source: "./media/characters/sen-mink/front.svg",
  52811. extra: 1727/1675,
  52812. bottom: 35/1762
  52813. }
  52814. },
  52815. },
  52816. [
  52817. {
  52818. name: "Normal",
  52819. height: math.unit(5, "feet"),
  52820. default: true
  52821. },
  52822. ]
  52823. ))
  52824. characterMakers.push(() => makeCharacter(
  52825. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52826. {
  52827. front: {
  52828. height: math.unit(5.42999, "feet"),
  52829. weight: math.unit(100, "lb"),
  52830. name: "Front",
  52831. image: {
  52832. source: "./media/characters/ophois/front.svg",
  52833. extra: 1429/1286,
  52834. bottom: 60/1489
  52835. }
  52836. },
  52837. },
  52838. [
  52839. {
  52840. name: "Normal",
  52841. height: math.unit(5.42999, "feet"),
  52842. default: true
  52843. },
  52844. ]
  52845. ))
  52846. characterMakers.push(() => makeCharacter(
  52847. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52848. {
  52849. front: {
  52850. height: math.unit(2, "meters"),
  52851. name: "Front",
  52852. image: {
  52853. source: "./media/characters/riley/front.svg",
  52854. extra: 1779/1754,
  52855. bottom: 139/1918
  52856. }
  52857. },
  52858. },
  52859. [
  52860. {
  52861. name: "Normal",
  52862. height: math.unit(2, "meters"),
  52863. default: true
  52864. },
  52865. ]
  52866. ))
  52867. characterMakers.push(() => makeCharacter(
  52868. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  52869. {
  52870. front: {
  52871. height: math.unit(6 + 2/12, "feet"),
  52872. weight: math.unit(195, "lb"),
  52873. preyCapacity: math.unit(6, "people"),
  52874. name: "Front",
  52875. image: {
  52876. source: "./media/characters/shuken-flash/front.svg",
  52877. extra: 1905/1739,
  52878. bottom: 65/1970
  52879. }
  52880. },
  52881. back: {
  52882. height: math.unit(6 + 2/12, "feet"),
  52883. weight: math.unit(195, "lb"),
  52884. preyCapacity: math.unit(6, "people"),
  52885. name: "Back",
  52886. image: {
  52887. source: "./media/characters/shuken-flash/back.svg",
  52888. extra: 1912/1751,
  52889. bottom: 13/1925
  52890. }
  52891. },
  52892. },
  52893. [
  52894. {
  52895. name: "Normal",
  52896. height: math.unit(6 + 2/12, "feet"),
  52897. default: true
  52898. },
  52899. ]
  52900. ))
  52901. characterMakers.push(() => makeCharacter(
  52902. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  52903. {
  52904. front: {
  52905. height: math.unit(5 + 9/12, "feet"),
  52906. weight: math.unit(150, "lb"),
  52907. name: "Front",
  52908. image: {
  52909. source: "./media/characters/plat/front.svg",
  52910. extra: 1816/1703,
  52911. bottom: 43/1859
  52912. }
  52913. },
  52914. side: {
  52915. height: math.unit(5 + 9/12, "feet"),
  52916. weight: math.unit(300, "lb"),
  52917. name: "Side",
  52918. image: {
  52919. source: "./media/characters/plat/side.svg",
  52920. extra: 1824/1699,
  52921. bottom: 18/1842
  52922. }
  52923. },
  52924. },
  52925. [
  52926. {
  52927. name: "Normal",
  52928. height: math.unit(5 + 9/12, "feet"),
  52929. default: true
  52930. },
  52931. ]
  52932. ))
  52933. characterMakers.push(() => makeCharacter(
  52934. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  52935. {
  52936. front: {
  52937. height: math.unit(9, "feet"),
  52938. weight: math.unit(1800, "lb"),
  52939. name: "Front",
  52940. image: {
  52941. source: "./media/characters/elaine/front.svg",
  52942. extra: 1833/1354,
  52943. bottom: 25/1858
  52944. }
  52945. },
  52946. back: {
  52947. height: math.unit(8.8, "feet"),
  52948. weight: math.unit(1800, "lb"),
  52949. name: "Back",
  52950. image: {
  52951. source: "./media/characters/elaine/back.svg",
  52952. extra: 1641/1233,
  52953. bottom: 53/1694
  52954. }
  52955. },
  52956. },
  52957. [
  52958. {
  52959. name: "Normal",
  52960. height: math.unit(9, "feet"),
  52961. default: true
  52962. },
  52963. ]
  52964. ))
  52965. characterMakers.push(() => makeCharacter(
  52966. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  52967. {
  52968. front: {
  52969. height: math.unit(17 + 9/12, "feet"),
  52970. weight: math.unit(8000, "lb"),
  52971. name: "Front",
  52972. image: {
  52973. source: "./media/characters/vera-raven/front.svg",
  52974. extra: 1457/1412,
  52975. bottom: 121/1578
  52976. }
  52977. },
  52978. side: {
  52979. height: math.unit(17 + 9/12, "feet"),
  52980. weight: math.unit(8000, "lb"),
  52981. name: "Side",
  52982. image: {
  52983. source: "./media/characters/vera-raven/side.svg",
  52984. extra: 1510/1464,
  52985. bottom: 54/1564
  52986. }
  52987. },
  52988. },
  52989. [
  52990. {
  52991. name: "Normal",
  52992. height: math.unit(17 + 9/12, "feet"),
  52993. default: true
  52994. },
  52995. ]
  52996. ))
  52997. characterMakers.push(() => makeCharacter(
  52998. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  52999. {
  53000. dressed: {
  53001. height: math.unit(6 + 9/12, "feet"),
  53002. name: "Dressed",
  53003. image: {
  53004. source: "./media/characters/nakisha/dressed.svg",
  53005. extra: 1909/1757,
  53006. bottom: 48/1957
  53007. }
  53008. },
  53009. nude: {
  53010. height: math.unit(6 + 9/12, "feet"),
  53011. name: "Nude",
  53012. image: {
  53013. source: "./media/characters/nakisha/nude.svg",
  53014. extra: 1917/1765,
  53015. bottom: 34/1951
  53016. }
  53017. },
  53018. },
  53019. [
  53020. {
  53021. name: "Normal",
  53022. height: math.unit(6 + 9/12, "feet"),
  53023. default: true
  53024. },
  53025. ]
  53026. ))
  53027. characterMakers.push(() => makeCharacter(
  53028. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53029. {
  53030. front: {
  53031. height: math.unit(87, "meters"),
  53032. name: "Front",
  53033. image: {
  53034. source: "./media/characters/serafin/front.svg",
  53035. extra: 1919/1776,
  53036. bottom: 65/1984
  53037. }
  53038. },
  53039. },
  53040. [
  53041. {
  53042. name: "Normal",
  53043. height: math.unit(87, "meters"),
  53044. default: true
  53045. },
  53046. ]
  53047. ))
  53048. characterMakers.push(() => makeCharacter(
  53049. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53050. {
  53051. front: {
  53052. height: math.unit(6, "feet"),
  53053. weight: math.unit(200, "lb"),
  53054. name: "Front",
  53055. image: {
  53056. source: "./media/characters/poptart/front.svg",
  53057. extra: 615/583,
  53058. bottom: 23/638
  53059. }
  53060. },
  53061. back: {
  53062. height: math.unit(6, "feet"),
  53063. weight: math.unit(200, "lb"),
  53064. name: "Back",
  53065. image: {
  53066. source: "./media/characters/poptart/back.svg",
  53067. extra: 617/584,
  53068. bottom: 22/639
  53069. }
  53070. },
  53071. frontNsfw: {
  53072. height: math.unit(6, "feet"),
  53073. weight: math.unit(200, "lb"),
  53074. name: "Front (NSFW)",
  53075. image: {
  53076. source: "./media/characters/poptart/front-nsfw.svg",
  53077. extra: 615/583,
  53078. bottom: 23/638
  53079. }
  53080. },
  53081. backNsfw: {
  53082. height: math.unit(6, "feet"),
  53083. weight: math.unit(200, "lb"),
  53084. name: "Back (NSFW)",
  53085. image: {
  53086. source: "./media/characters/poptart/back-nsfw.svg",
  53087. extra: 617/584,
  53088. bottom: 22/639
  53089. }
  53090. },
  53091. hand: {
  53092. height: math.unit(1.14, "feet"),
  53093. name: "Hand",
  53094. image: {
  53095. source: "./media/characters/poptart/hand.svg"
  53096. }
  53097. },
  53098. foot: {
  53099. height: math.unit(1.5, "feet"),
  53100. name: "Foot",
  53101. image: {
  53102. source: "./media/characters/poptart/foot.svg"
  53103. }
  53104. },
  53105. },
  53106. [
  53107. {
  53108. name: "Normal",
  53109. height: math.unit(6, "feet"),
  53110. default: true
  53111. },
  53112. {
  53113. name: "Grande",
  53114. height: math.unit(350, "feet")
  53115. },
  53116. {
  53117. name: "Massif",
  53118. height: math.unit(967, "feet")
  53119. },
  53120. ]
  53121. ))
  53122. characterMakers.push(() => makeCharacter(
  53123. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53124. {
  53125. hyenaSide: {
  53126. height: math.unit(120, "cm"),
  53127. weight: math.unit(120, "lb"),
  53128. name: "Side",
  53129. image: {
  53130. source: "./media/characters/trance/hyena-side.svg",
  53131. extra: 998/904,
  53132. bottom: 76/1074
  53133. }
  53134. },
  53135. },
  53136. [
  53137. {
  53138. name: "Normal",
  53139. height: math.unit(120, "cm"),
  53140. default: true
  53141. },
  53142. {
  53143. name: "Dire",
  53144. height: math.unit(230, "cm")
  53145. },
  53146. {
  53147. name: "Macro",
  53148. height: math.unit(37, "feet")
  53149. },
  53150. ]
  53151. ))
  53152. characterMakers.push(() => makeCharacter(
  53153. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53154. {
  53155. front: {
  53156. height: math.unit(6 + 3/12, "feet"),
  53157. name: "Front",
  53158. image: {
  53159. source: "./media/characters/michael-berretta/front.svg",
  53160. extra: 515/494,
  53161. bottom: 20/535
  53162. }
  53163. },
  53164. back: {
  53165. height: math.unit(6 + 3/12, "feet"),
  53166. name: "Back",
  53167. image: {
  53168. source: "./media/characters/michael-berretta/back.svg",
  53169. extra: 520/497,
  53170. bottom: 21/541
  53171. }
  53172. },
  53173. frontNsfw: {
  53174. height: math.unit(6 + 3/12, "feet"),
  53175. name: "Front (NSFW)",
  53176. image: {
  53177. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53178. extra: 515/494,
  53179. bottom: 20/535
  53180. }
  53181. },
  53182. dick: {
  53183. height: math.unit(1, "feet"),
  53184. name: "Dick",
  53185. image: {
  53186. source: "./media/characters/michael-berretta/dick.svg"
  53187. }
  53188. },
  53189. },
  53190. [
  53191. {
  53192. name: "Normal",
  53193. height: math.unit(6 + 3/12, "feet"),
  53194. default: true
  53195. },
  53196. {
  53197. name: "Big",
  53198. height: math.unit(12, "feet")
  53199. },
  53200. {
  53201. name: "Macro",
  53202. height: math.unit(187.5, "feet")
  53203. },
  53204. ]
  53205. ))
  53206. characterMakers.push(() => makeCharacter(
  53207. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53208. {
  53209. front: {
  53210. height: math.unit(9 + 9/12, "feet"),
  53211. weight: math.unit(1244, "lb"),
  53212. name: "Front",
  53213. image: {
  53214. source: "./media/characters/stella-edgecomb/front.svg",
  53215. extra: 1835/1706,
  53216. bottom: 49/1884
  53217. }
  53218. },
  53219. pen: {
  53220. height: math.unit(0.95, "feet"),
  53221. name: "Pen",
  53222. image: {
  53223. source: "./media/characters/stella-edgecomb/pen.svg"
  53224. }
  53225. },
  53226. },
  53227. [
  53228. {
  53229. name: "Cozy Bear",
  53230. height: math.unit(0.5, "inches")
  53231. },
  53232. {
  53233. name: "Normal",
  53234. height: math.unit(9 + 9/12, "feet"),
  53235. default: true
  53236. },
  53237. {
  53238. name: "Giga Bear",
  53239. height: math.unit(1, "mile")
  53240. },
  53241. {
  53242. name: "Great Bear",
  53243. height: math.unit(53, "miles")
  53244. },
  53245. {
  53246. name: "Goddess Bear",
  53247. height: math.unit(40000, "miles")
  53248. },
  53249. {
  53250. name: "Sun Bear",
  53251. height: math.unit(900000, "miles")
  53252. },
  53253. ]
  53254. ))
  53255. characterMakers.push(() => makeCharacter(
  53256. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53257. {
  53258. anthroFront: {
  53259. height: math.unit(556, "cm"),
  53260. weight: math.unit(2650, "kg"),
  53261. preyCapacity: math.unit(3, "people"),
  53262. name: "Front",
  53263. image: {
  53264. source: "./media/characters/ash´iika/front.svg",
  53265. extra: 710/673,
  53266. bottom: 15/725
  53267. },
  53268. form: "anthro",
  53269. default: true
  53270. },
  53271. anthroSide: {
  53272. height: math.unit(556, "cm"),
  53273. weight: math.unit(2650, "kg"),
  53274. preyCapacity: math.unit(3, "people"),
  53275. name: "Side",
  53276. image: {
  53277. source: "./media/characters/ash´iika/side.svg",
  53278. extra: 696/676,
  53279. bottom: 13/709
  53280. },
  53281. form: "anthro"
  53282. },
  53283. anthroDressed: {
  53284. height: math.unit(556, "cm"),
  53285. weight: math.unit(2650, "kg"),
  53286. preyCapacity: math.unit(3, "people"),
  53287. name: "Dressed",
  53288. image: {
  53289. source: "./media/characters/ash´iika/dressed.svg",
  53290. extra: 710/673,
  53291. bottom: 15/725
  53292. },
  53293. form: "anthro"
  53294. },
  53295. anthroHead: {
  53296. height: math.unit(3.5, "feet"),
  53297. name: "Head",
  53298. image: {
  53299. source: "./media/characters/ash´iika/head.svg",
  53300. extra: 348/291,
  53301. bottom: 45/393
  53302. },
  53303. form: "anthro"
  53304. },
  53305. feralSide: {
  53306. height: math.unit(870, "cm"),
  53307. weight: math.unit(17500, "kg"),
  53308. preyCapacity: math.unit(15, "people"),
  53309. name: "Side",
  53310. image: {
  53311. source: "./media/characters/ash´iika/feral.svg",
  53312. extra: 595/199,
  53313. bottom: 7/602
  53314. },
  53315. form: "feral",
  53316. default: true,
  53317. },
  53318. },
  53319. [
  53320. {
  53321. name: "Normal",
  53322. height: math.unit(556, "cm"),
  53323. default: true,
  53324. form: "anthro"
  53325. },
  53326. {
  53327. name: "Macro",
  53328. height: math.unit(88, "meters"),
  53329. form: "anthro"
  53330. },
  53331. {
  53332. name: "Normal",
  53333. height: math.unit(870, "cm"),
  53334. default: true,
  53335. form: "feral"
  53336. },
  53337. {
  53338. name: "Large",
  53339. height: math.unit(25, "meters"),
  53340. form: "feral"
  53341. },
  53342. ],
  53343. {
  53344. "anthro": {
  53345. name: "Anthro",
  53346. default: true
  53347. },
  53348. "feral": {
  53349. name: "Feral",
  53350. },
  53351. }
  53352. ))
  53353. characterMakers.push(() => makeCharacter(
  53354. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53355. {
  53356. front: {
  53357. height: math.unit(10, "feet"),
  53358. weight: math.unit(800, "lb"),
  53359. name: "Front",
  53360. image: {
  53361. source: "./media/characters/yen/front.svg",
  53362. extra: 443/411,
  53363. bottom: 6/449
  53364. }
  53365. },
  53366. sleeping: {
  53367. height: math.unit(10, "feet"),
  53368. weight: math.unit(800, "lb"),
  53369. name: "Sleeping",
  53370. image: {
  53371. source: "./media/characters/yen/sleeping.svg",
  53372. extra: 470/422,
  53373. bottom: 0/470
  53374. }
  53375. },
  53376. head: {
  53377. height: math.unit(2.2, "feet"),
  53378. name: "Head",
  53379. image: {
  53380. source: "./media/characters/yen/head.svg"
  53381. }
  53382. },
  53383. headAlt: {
  53384. height: math.unit(2.1, "feet"),
  53385. name: "Head (Alt)",
  53386. image: {
  53387. source: "./media/characters/yen/head-alt.svg"
  53388. }
  53389. },
  53390. },
  53391. [
  53392. {
  53393. name: "Normal",
  53394. height: math.unit(10, "feet"),
  53395. default: true
  53396. },
  53397. ]
  53398. ))
  53399. characterMakers.push(() => makeCharacter(
  53400. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53401. {
  53402. front: {
  53403. height: math.unit(12, "feet"),
  53404. name: "Front",
  53405. image: {
  53406. source: "./media/characters/citra/front.svg",
  53407. extra: 1950/1710,
  53408. bottom: 47/1997
  53409. }
  53410. },
  53411. },
  53412. [
  53413. {
  53414. name: "Normal",
  53415. height: math.unit(12, "feet"),
  53416. default: true
  53417. },
  53418. ]
  53419. ))
  53420. characterMakers.push(() => makeCharacter(
  53421. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53422. {
  53423. side: {
  53424. height: math.unit(7 + 10/12, "feet"),
  53425. name: "Side",
  53426. image: {
  53427. source: "./media/characters/sholstim/side.svg",
  53428. extra: 786/682,
  53429. bottom: 40/826
  53430. }
  53431. },
  53432. },
  53433. [
  53434. {
  53435. name: "Normal",
  53436. height: math.unit(7 + 10/12, "feet"),
  53437. default: true
  53438. },
  53439. ]
  53440. ))
  53441. characterMakers.push(() => makeCharacter(
  53442. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53443. {
  53444. front: {
  53445. height: math.unit(3.10, "meters"),
  53446. name: "Front",
  53447. image: {
  53448. source: "./media/characters/aggyn/front.svg",
  53449. extra: 1188/963,
  53450. bottom: 24/1212
  53451. }
  53452. },
  53453. },
  53454. [
  53455. {
  53456. name: "Normal",
  53457. height: math.unit(3.10, "meters"),
  53458. default: true
  53459. },
  53460. ]
  53461. ))
  53462. characterMakers.push(() => makeCharacter(
  53463. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53464. {
  53465. front: {
  53466. height: math.unit(7 + 5/12, "feet"),
  53467. weight: math.unit(687, "lb"),
  53468. name: "Front",
  53469. image: {
  53470. source: "./media/characters/alsandair-hergenroether/front.svg",
  53471. extra: 1251/1186,
  53472. bottom: 75/1326
  53473. }
  53474. },
  53475. back: {
  53476. height: math.unit(7 + 5/12, "feet"),
  53477. weight: math.unit(687, "lb"),
  53478. name: "Back",
  53479. image: {
  53480. source: "./media/characters/alsandair-hergenroether/back.svg",
  53481. extra: 1290/1229,
  53482. bottom: 17/1307
  53483. }
  53484. },
  53485. },
  53486. [
  53487. {
  53488. name: "Max Compression",
  53489. height: math.unit(7 + 5/12, "feet"),
  53490. default: true
  53491. },
  53492. {
  53493. name: "\"Normal\"",
  53494. height: math.unit(2, "universes")
  53495. },
  53496. ]
  53497. ))
  53498. characterMakers.push(() => makeCharacter(
  53499. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53500. {
  53501. front: {
  53502. height: math.unit(4 + 1/12, "feet"),
  53503. weight: math.unit(92, "lb"),
  53504. name: "Front",
  53505. image: {
  53506. source: "./media/characters/ie/front.svg",
  53507. extra: 1585/1352,
  53508. bottom: 91/1676
  53509. }
  53510. },
  53511. },
  53512. [
  53513. {
  53514. name: "Normal",
  53515. height: math.unit(4 + 1/12, "feet"),
  53516. default: true
  53517. },
  53518. ]
  53519. ))
  53520. characterMakers.push(() => makeCharacter(
  53521. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53522. {
  53523. anthro: {
  53524. height: math.unit(6, "feet"),
  53525. weight: math.unit(150, "lb"),
  53526. name: "Front",
  53527. image: {
  53528. source: "./media/characters/willow/anthro.svg",
  53529. extra: 1073/986,
  53530. bottom: 34/1107
  53531. },
  53532. form: "anthro",
  53533. default: true
  53534. },
  53535. taur: {
  53536. height: math.unit(6, "feet"),
  53537. weight: math.unit(150, "lb"),
  53538. name: "Side",
  53539. image: {
  53540. source: "./media/characters/willow/taur.svg",
  53541. extra: 647/512,
  53542. bottom: 136/783
  53543. },
  53544. form: "taur",
  53545. default: true
  53546. },
  53547. },
  53548. [
  53549. {
  53550. name: "Humanoid",
  53551. height: math.unit(2.7, "meters"),
  53552. form: "anthro"
  53553. },
  53554. {
  53555. name: "Normal",
  53556. height: math.unit(9, "meters"),
  53557. form: "anthro",
  53558. default: true
  53559. },
  53560. {
  53561. name: "Humanoid",
  53562. height: math.unit(2.1, "meters"),
  53563. form: "taur"
  53564. },
  53565. {
  53566. name: "Normal",
  53567. height: math.unit(7, "meters"),
  53568. form: "taur",
  53569. default: true
  53570. },
  53571. ],
  53572. {
  53573. "anthro": {
  53574. name: "Anthro",
  53575. default: true
  53576. },
  53577. "taur": {
  53578. name: "Taur",
  53579. },
  53580. }
  53581. ))
  53582. characterMakers.push(() => makeCharacter(
  53583. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53584. {
  53585. front: {
  53586. height: math.unit(2 + 5/12, "feet"),
  53587. name: "Front",
  53588. image: {
  53589. source: "./media/characters/kyan/front.svg",
  53590. extra: 460/334,
  53591. bottom: 23/483
  53592. },
  53593. extraAttributes: {
  53594. "toeLength": {
  53595. name: "Toe Length",
  53596. power: 1,
  53597. type: "length",
  53598. base: math.unit(7, "cm")
  53599. },
  53600. "toeclawLength": {
  53601. name: "Toeclaw Length",
  53602. power: 1,
  53603. type: "length",
  53604. base: math.unit(4.7, "cm")
  53605. },
  53606. "earHeight": {
  53607. name: "Ear Height",
  53608. power: 1,
  53609. type: "length",
  53610. base: math.unit(14.1, "cm")
  53611. },
  53612. }
  53613. },
  53614. paws: {
  53615. height: math.unit(0.45, "feet"),
  53616. name: "Paws",
  53617. image: {
  53618. source: "./media/characters/kyan/paws.svg",
  53619. extra: 581/581,
  53620. bottom: 114/695
  53621. }
  53622. },
  53623. },
  53624. [
  53625. {
  53626. name: "Normal",
  53627. height: math.unit(2 + 5/12, "feet"),
  53628. default: true
  53629. },
  53630. ]
  53631. ))
  53632. characterMakers.push(() => makeCharacter(
  53633. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53634. {
  53635. front: {
  53636. height: math.unit(2 + 2/3, "feet"),
  53637. name: "Front",
  53638. image: {
  53639. source: "./media/characters/xazzon/front.svg",
  53640. extra: 1109/984,
  53641. bottom: 42/1151
  53642. }
  53643. },
  53644. back: {
  53645. height: math.unit(2 + 2/3, "feet"),
  53646. name: "Back",
  53647. image: {
  53648. source: "./media/characters/xazzon/back.svg",
  53649. extra: 1095/971,
  53650. bottom: 23/1118
  53651. }
  53652. },
  53653. },
  53654. [
  53655. {
  53656. name: "Normal",
  53657. height: math.unit(2 + 2/3, "feet"),
  53658. default: true
  53659. },
  53660. ]
  53661. ))
  53662. characterMakers.push(() => makeCharacter(
  53663. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53664. {
  53665. dressed: {
  53666. height: math.unit(5 + 7/12, "feet"),
  53667. weight: math.unit(173, "lb"),
  53668. name: "Dressed",
  53669. image: {
  53670. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53671. extra: 3262/2862,
  53672. bottom: 188/3450
  53673. }
  53674. },
  53675. undressed: {
  53676. height: math.unit(5 + 7/12, "feet"),
  53677. weight: math.unit(173, "lb"),
  53678. name: "Undressed",
  53679. image: {
  53680. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53681. extra: 3262/2862,
  53682. bottom: 188/3450
  53683. }
  53684. },
  53685. },
  53686. [
  53687. {
  53688. name: "The void",
  53689. height: math.unit(7.29193e-34, "angstroms")
  53690. },
  53691. {
  53692. name: "Uh-Oh.",
  53693. height: math.unit(5.734e-7, "angstroms")
  53694. },
  53695. {
  53696. name: "Pico",
  53697. height: math.unit(0.876, "angstroms")
  53698. },
  53699. {
  53700. name: "Nano",
  53701. height: math.unit(0.000134200, "mm")
  53702. },
  53703. {
  53704. name: "Micro",
  53705. height: math.unit(0.0673020, "mm")
  53706. },
  53707. {
  53708. name: "Tiny",
  53709. height: math.unit(2.4, "mm")
  53710. },
  53711. {
  53712. name: "Actual Normal",
  53713. height: math.unit(3, "inches"),
  53714. default: true
  53715. },
  53716. {
  53717. name: "Normal",
  53718. height: math.unit(5 + 8/12, "feet")
  53719. },
  53720. {
  53721. name: "Giant",
  53722. height: math.unit(12, "feet")
  53723. },
  53724. {
  53725. name: "City Ruler",
  53726. height: math.unit(270, "meters")
  53727. },
  53728. {
  53729. name: "Giga",
  53730. height: math.unit(1117.6, "km")
  53731. },
  53732. {
  53733. name: "All-Powerful Queen",
  53734. height: math.unit(70.8, "gigameters")
  53735. },
  53736. {
  53737. name: "'Goddess'",
  53738. height: math.unit(600, "yottameters")
  53739. },
  53740. {
  53741. name: "Biggest!",
  53742. height: math.unit(4.23e5, "yottameters")
  53743. },
  53744. ]
  53745. ))
  53746. characterMakers.push(() => makeCharacter(
  53747. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53748. {
  53749. front: {
  53750. height: math.unit(8, "feet"),
  53751. weight: math.unit(300, "lb"),
  53752. name: "Front",
  53753. image: {
  53754. source: "./media/characters/khyla-shadowsong/front.svg",
  53755. extra: 861/798,
  53756. bottom: 32/893
  53757. }
  53758. },
  53759. side: {
  53760. height: math.unit(8, "feet"),
  53761. weight: math.unit(300, "lb"),
  53762. name: "Side",
  53763. image: {
  53764. source: "./media/characters/khyla-shadowsong/side.svg",
  53765. extra: 790/750,
  53766. bottom: 87/877
  53767. }
  53768. },
  53769. back: {
  53770. height: math.unit(8, "feet"),
  53771. weight: math.unit(300, "lb"),
  53772. name: "Back",
  53773. image: {
  53774. source: "./media/characters/khyla-shadowsong/back.svg",
  53775. extra: 855/808,
  53776. bottom: 14/869
  53777. }
  53778. },
  53779. head: {
  53780. height: math.unit(2.7, "feet"),
  53781. name: "Head",
  53782. image: {
  53783. source: "./media/characters/khyla-shadowsong/head.svg"
  53784. }
  53785. },
  53786. },
  53787. [
  53788. {
  53789. name: "Micro",
  53790. height: math.unit(6, "inches")
  53791. },
  53792. {
  53793. name: "Normal",
  53794. height: math.unit(8, "feet"),
  53795. default: true
  53796. },
  53797. ]
  53798. ))
  53799. characterMakers.push(() => makeCharacter(
  53800. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53801. {
  53802. hyperFront: {
  53803. height: math.unit(9 + 4/12, "feet"),
  53804. weight: math.unit(2000, "lb"),
  53805. name: "Front",
  53806. image: {
  53807. source: "./media/characters/tiden/hyper-front.svg",
  53808. extra: 400/382,
  53809. bottom: 6/406
  53810. },
  53811. form: "hyper",
  53812. },
  53813. regularFront: {
  53814. height: math.unit(7 + 10/12, "feet"),
  53815. weight: math.unit(470, "lb"),
  53816. name: "Front",
  53817. image: {
  53818. source: "./media/characters/tiden/regular-front.svg",
  53819. extra: 468/442,
  53820. bottom: 6/474
  53821. },
  53822. form: "regular",
  53823. },
  53824. },
  53825. [
  53826. {
  53827. name: "Normal",
  53828. height: math.unit(9 + 4/12, "feet"),
  53829. default: true,
  53830. form: "hyper"
  53831. },
  53832. {
  53833. name: "Normal",
  53834. height: math.unit(7 + 10/12, "feet"),
  53835. default: true,
  53836. form: "regular"
  53837. },
  53838. ],
  53839. {
  53840. "hyper": {
  53841. name: "Hyper",
  53842. default: true
  53843. },
  53844. "regular": {
  53845. name: "Regular",
  53846. },
  53847. }
  53848. ))
  53849. characterMakers.push(() => makeCharacter(
  53850. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  53851. {
  53852. side: {
  53853. height: math.unit(6, "feet"),
  53854. weight: math.unit(150, "lb"),
  53855. name: "Side",
  53856. image: {
  53857. source: "./media/characters/jason-crowe/side.svg",
  53858. extra: 1771/766,
  53859. bottom: 219/1990
  53860. }
  53861. },
  53862. },
  53863. [
  53864. {
  53865. name: "Pocket Gryphon",
  53866. height: math.unit(6, "cm")
  53867. },
  53868. {
  53869. name: "Raven",
  53870. height: math.unit(60, "cm")
  53871. },
  53872. {
  53873. name: "Normal",
  53874. height: math.unit(1, "meter"),
  53875. default: true
  53876. },
  53877. ]
  53878. ))
  53879. characterMakers.push(() => makeCharacter(
  53880. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  53881. {
  53882. front: {
  53883. height: math.unit(9 + 6/12, "feet"),
  53884. weight: math.unit(1100, "lb"),
  53885. name: "Front",
  53886. image: {
  53887. source: "./media/characters/django/front.svg",
  53888. extra: 1231/1136,
  53889. bottom: 34/1265
  53890. }
  53891. },
  53892. side: {
  53893. height: math.unit(9 + 6/12, "feet"),
  53894. weight: math.unit(1100, "lb"),
  53895. name: "Side",
  53896. image: {
  53897. source: "./media/characters/django/side.svg",
  53898. extra: 1267/1174,
  53899. bottom: 9/1276
  53900. }
  53901. },
  53902. },
  53903. [
  53904. {
  53905. name: "Normal",
  53906. height: math.unit(9 + 6/12, "feet"),
  53907. default: true
  53908. },
  53909. {
  53910. name: "Macro 1",
  53911. height: math.unit(50, "feet")
  53912. },
  53913. {
  53914. name: "Macro 2",
  53915. height: math.unit(500, "feet")
  53916. },
  53917. {
  53918. name: "Mega Macro",
  53919. height: math.unit(5300, "feet")
  53920. },
  53921. ]
  53922. ))
  53923. characterMakers.push(() => makeCharacter(
  53924. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  53925. {
  53926. frontSfw: {
  53927. height: math.unit(120, "cm"),
  53928. weight: math.unit(15, "kg"),
  53929. name: "Front (SFW)",
  53930. image: {
  53931. source: "./media/characters/eri/front-sfw.svg",
  53932. extra: 1014/939,
  53933. bottom: 37/1051
  53934. },
  53935. form: "moth",
  53936. },
  53937. frontNsfw: {
  53938. height: math.unit(120, "cm"),
  53939. weight: math.unit(15, "kg"),
  53940. name: "Front (NSFW)",
  53941. image: {
  53942. source: "./media/characters/eri/front-nsfw.svg",
  53943. extra: 1014/939,
  53944. bottom: 37/1051
  53945. },
  53946. form: "moth",
  53947. default: true
  53948. },
  53949. egg: {
  53950. height: math.unit(10, "cm"),
  53951. name: "Egg",
  53952. image: {
  53953. source: "./media/characters/eri/egg.svg"
  53954. },
  53955. form: "egg",
  53956. default: true
  53957. },
  53958. },
  53959. [
  53960. {
  53961. name: "Normal",
  53962. height: math.unit(120, "cm"),
  53963. default: true,
  53964. form: "moth"
  53965. },
  53966. {
  53967. name: "Normal",
  53968. height: math.unit(10, "cm"),
  53969. default: true,
  53970. form: "egg"
  53971. },
  53972. ],
  53973. {
  53974. "moth": {
  53975. name: "Moth",
  53976. default: true
  53977. },
  53978. "egg": {
  53979. name: "Egg",
  53980. },
  53981. }
  53982. ))
  53983. characterMakers.push(() => makeCharacter(
  53984. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  53985. {
  53986. front: {
  53987. height: math.unit(200, "feet"),
  53988. name: "Front",
  53989. image: {
  53990. source: "./media/characters/bishop-dowser/front.svg",
  53991. extra: 933/868,
  53992. bottom: 106/1039
  53993. }
  53994. },
  53995. },
  53996. [
  53997. {
  53998. name: "Giant",
  53999. height: math.unit(200, "feet"),
  54000. default: true
  54001. },
  54002. ]
  54003. ))
  54004. characterMakers.push(() => makeCharacter(
  54005. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54006. {
  54007. front: {
  54008. height: math.unit(2, "meters"),
  54009. preyCapacity: math.unit(3, "people"),
  54010. name: "Front",
  54011. image: {
  54012. source: "./media/characters/fryra/front.svg",
  54013. extra: 1025/948,
  54014. bottom: 30/1055
  54015. },
  54016. extraAttributes: {
  54017. "breastVolume": {
  54018. name: "Breast Volume",
  54019. power: 3,
  54020. type: "volume",
  54021. base: math.unit(8, "liters")
  54022. },
  54023. }
  54024. },
  54025. back: {
  54026. height: math.unit(2, "meters"),
  54027. preyCapacity: math.unit(3, "people"),
  54028. name: "Back",
  54029. image: {
  54030. source: "./media/characters/fryra/back.svg",
  54031. extra: 993/938,
  54032. bottom: 38/1031
  54033. },
  54034. extraAttributes: {
  54035. "breastVolume": {
  54036. name: "Breast Volume",
  54037. power: 3,
  54038. type: "volume",
  54039. base: math.unit(8, "liters")
  54040. },
  54041. }
  54042. },
  54043. head: {
  54044. height: math.unit(1.33, "feet"),
  54045. name: "Head",
  54046. image: {
  54047. source: "./media/characters/fryra/head.svg"
  54048. }
  54049. },
  54050. maw: {
  54051. height: math.unit(0.56, "feet"),
  54052. name: "Maw",
  54053. image: {
  54054. source: "./media/characters/fryra/maw.svg"
  54055. }
  54056. },
  54057. },
  54058. [
  54059. {
  54060. name: "Micro",
  54061. height: math.unit(5, "cm")
  54062. },
  54063. {
  54064. name: "Normal",
  54065. height: math.unit(2, "meters"),
  54066. default: true
  54067. },
  54068. {
  54069. name: "Small Macro",
  54070. height: math.unit(8, "meters")
  54071. },
  54072. {
  54073. name: "Macro",
  54074. height: math.unit(50, "meters")
  54075. },
  54076. {
  54077. name: "Megamacro",
  54078. height: math.unit(1, "km")
  54079. },
  54080. {
  54081. name: "Planetary",
  54082. height: math.unit(300000, "km")
  54083. },
  54084. {
  54085. name: "Universal",
  54086. height: math.unit(250, "lightyears")
  54087. },
  54088. {
  54089. name: "Fabric of Reality",
  54090. height: math.unit(1000, "multiverses")
  54091. },
  54092. ]
  54093. ))
  54094. characterMakers.push(() => makeCharacter(
  54095. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54096. {
  54097. frontDressed: {
  54098. height: math.unit(6 + 2/12, "feet"),
  54099. name: "Front (Dressed)",
  54100. image: {
  54101. source: "./media/characters/fiera/front-dressed.svg",
  54102. extra: 1883/1793,
  54103. bottom: 70/1953
  54104. }
  54105. },
  54106. backDressed: {
  54107. height: math.unit(6 + 2/12, "feet"),
  54108. name: "Back (Dressed)",
  54109. image: {
  54110. source: "./media/characters/fiera/back-dressed.svg",
  54111. extra: 1847/1780,
  54112. bottom: 70/1917
  54113. }
  54114. },
  54115. frontNude: {
  54116. height: math.unit(6 + 2/12, "feet"),
  54117. name: "Front (Nude)",
  54118. image: {
  54119. source: "./media/characters/fiera/front-nude.svg",
  54120. extra: 1875/1785,
  54121. bottom: 66/1941
  54122. }
  54123. },
  54124. backNude: {
  54125. height: math.unit(6 + 2/12, "feet"),
  54126. name: "Back (Nude)",
  54127. image: {
  54128. source: "./media/characters/fiera/back-nude.svg",
  54129. extra: 1855/1788,
  54130. bottom: 44/1899
  54131. }
  54132. },
  54133. maw: {
  54134. height: math.unit(1.3, "feet"),
  54135. name: "Maw",
  54136. image: {
  54137. source: "./media/characters/fiera/maw.svg"
  54138. }
  54139. },
  54140. paw: {
  54141. height: math.unit(1, "feet"),
  54142. name: "Paw",
  54143. image: {
  54144. source: "./media/characters/fiera/paw.svg"
  54145. }
  54146. },
  54147. shoe: {
  54148. height: math.unit(1.05, "feet"),
  54149. name: "Shoe",
  54150. image: {
  54151. source: "./media/characters/fiera/shoe.svg"
  54152. }
  54153. },
  54154. },
  54155. [
  54156. {
  54157. name: "Normal",
  54158. height: math.unit(6 + 2/12, "feet"),
  54159. default: true
  54160. },
  54161. {
  54162. name: "Size Difference",
  54163. height: math.unit(13, "feet")
  54164. },
  54165. {
  54166. name: "Macro",
  54167. height: math.unit(60, "feet")
  54168. },
  54169. {
  54170. name: "Mega Macro",
  54171. height: math.unit(200, "feet")
  54172. },
  54173. ]
  54174. ))
  54175. characterMakers.push(() => makeCharacter(
  54176. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54177. {
  54178. back: {
  54179. height: math.unit(6, "feet"),
  54180. name: "Back",
  54181. image: {
  54182. source: "./media/characters/flare/back.svg",
  54183. extra: 1883/1765,
  54184. bottom: 32/1915
  54185. }
  54186. },
  54187. },
  54188. [
  54189. {
  54190. name: "Normal",
  54191. height: math.unit(6 + 2/12, "feet"),
  54192. default: true
  54193. },
  54194. {
  54195. name: "Size Difference",
  54196. height: math.unit(13, "feet")
  54197. },
  54198. {
  54199. name: "Macro",
  54200. height: math.unit(60, "feet")
  54201. },
  54202. {
  54203. name: "Macro 2",
  54204. height: math.unit(100, "feet")
  54205. },
  54206. {
  54207. name: "Mega Macro",
  54208. height: math.unit(200, "feet")
  54209. },
  54210. ]
  54211. ))
  54212. characterMakers.push(() => makeCharacter(
  54213. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54214. {
  54215. front: {
  54216. height: math.unit(2.2, "m"),
  54217. weight: math.unit(300, "kg"),
  54218. name: "Front",
  54219. image: {
  54220. source: "./media/characters/hanna/front.svg",
  54221. extra: 1696/1502,
  54222. bottom: 206/1902
  54223. }
  54224. },
  54225. },
  54226. [
  54227. {
  54228. name: "Humanoid",
  54229. height: math.unit(2.2, "meters")
  54230. },
  54231. {
  54232. name: "Normal",
  54233. height: math.unit(4.8, "meters"),
  54234. default: true
  54235. },
  54236. ]
  54237. ))
  54238. characterMakers.push(() => makeCharacter(
  54239. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54240. {
  54241. front: {
  54242. height: math.unit(2.8, "meters"),
  54243. name: "Front",
  54244. image: {
  54245. source: "./media/characters/argo/front.svg",
  54246. extra: 731/518,
  54247. bottom: 84/815
  54248. }
  54249. },
  54250. },
  54251. [
  54252. {
  54253. name: "Normal",
  54254. height: math.unit(3, "meters"),
  54255. default: true
  54256. },
  54257. ]
  54258. ))
  54259. characterMakers.push(() => makeCharacter(
  54260. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54261. {
  54262. side: {
  54263. height: math.unit(3.8, "meters"),
  54264. name: "Side",
  54265. image: {
  54266. source: "./media/characters/sybil/side.svg",
  54267. extra: 382/361,
  54268. bottom: 25/407
  54269. }
  54270. },
  54271. },
  54272. [
  54273. {
  54274. name: "Normal",
  54275. height: math.unit(3.8, "meters"),
  54276. default: true
  54277. },
  54278. ]
  54279. ))
  54280. characterMakers.push(() => makeCharacter(
  54281. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54282. {
  54283. side: {
  54284. height: math.unit(6, "meters"),
  54285. name: "Side",
  54286. image: {
  54287. source: "./media/characters/plum/side.svg",
  54288. extra: 858/755,
  54289. bottom: 45/903
  54290. },
  54291. form: "taur",
  54292. default: true
  54293. },
  54294. back: {
  54295. height: math.unit(6.3, "meters"),
  54296. name: "Back",
  54297. image: {
  54298. source: "./media/characters/plum/back.svg",
  54299. extra: 887/813,
  54300. bottom: 32/919
  54301. },
  54302. form: "taur",
  54303. },
  54304. feral: {
  54305. height: math.unit(5.5, "meter"),
  54306. name: "Front",
  54307. image: {
  54308. source: "./media/characters/plum/feral.svg",
  54309. extra: 568/403,
  54310. bottom: 51/619
  54311. },
  54312. form: "feral",
  54313. default: true
  54314. },
  54315. head: {
  54316. height: math.unit(1.46, "meter"),
  54317. name: "Head",
  54318. image: {
  54319. source: "./media/characters/plum/head.svg"
  54320. },
  54321. form: "taur"
  54322. },
  54323. tailTop: {
  54324. height: math.unit(5.6, "meter"),
  54325. name: "Tail (Top)",
  54326. image: {
  54327. source: "./media/characters/plum/tail-top.svg"
  54328. },
  54329. form: "taur",
  54330. },
  54331. tailBottom: {
  54332. height: math.unit(5.6, "meter"),
  54333. name: "Tail (Bottom)",
  54334. image: {
  54335. source: "./media/characters/plum/tail-bottom.svg"
  54336. },
  54337. form: "taur",
  54338. },
  54339. feralHead: {
  54340. height: math.unit(2.56549521, "meter"),
  54341. name: "Head",
  54342. image: {
  54343. source: "./media/characters/plum/head.svg"
  54344. },
  54345. form: "feral"
  54346. },
  54347. feralTailTop: {
  54348. height: math.unit(5.44728435, "meter"),
  54349. name: "Tail (Top)",
  54350. image: {
  54351. source: "./media/characters/plum/tail-top.svg"
  54352. },
  54353. form: "feral",
  54354. },
  54355. feralTailBottom: {
  54356. height: math.unit(5.44728435, "meter"),
  54357. name: "Tail (Bottom)",
  54358. image: {
  54359. source: "./media/characters/plum/tail-bottom.svg"
  54360. },
  54361. form: "feral",
  54362. },
  54363. },
  54364. [
  54365. {
  54366. name: "Normal",
  54367. height: math.unit(6, "meters"),
  54368. default: true,
  54369. form: "taur"
  54370. },
  54371. {
  54372. name: "Normal",
  54373. height: math.unit(5.5, "meters"),
  54374. default: true,
  54375. form: "feral"
  54376. },
  54377. ],
  54378. {
  54379. "taur": {
  54380. name: "Taur",
  54381. default: true
  54382. },
  54383. "feral": {
  54384. name: "Feral",
  54385. },
  54386. }
  54387. ))
  54388. characterMakers.push(() => makeCharacter(
  54389. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54390. {
  54391. front: {
  54392. height: math.unit(6, "feet"),
  54393. weight: math.unit(115, "lb"),
  54394. name: "Front",
  54395. image: {
  54396. source: "./media/characters/celeste-kitsune/front.svg",
  54397. extra: 393/366,
  54398. bottom: 7/400
  54399. }
  54400. },
  54401. side: {
  54402. height: math.unit(6, "feet"),
  54403. weight: math.unit(115, "lb"),
  54404. name: "Side",
  54405. image: {
  54406. source: "./media/characters/celeste-kitsune/side.svg",
  54407. extra: 818/765,
  54408. bottom: 40/858
  54409. }
  54410. },
  54411. },
  54412. [
  54413. {
  54414. name: "Megamacro",
  54415. height: math.unit(1500, "miles"),
  54416. default: true
  54417. },
  54418. ]
  54419. ))
  54420. characterMakers.push(() => makeCharacter(
  54421. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54422. {
  54423. front: {
  54424. height: math.unit(8, "meters"),
  54425. name: "Front",
  54426. image: {
  54427. source: "./media/characters/io/front.svg",
  54428. extra: 865/722,
  54429. bottom: 58/923
  54430. }
  54431. },
  54432. back: {
  54433. height: math.unit(8, "meters"),
  54434. name: "Back",
  54435. image: {
  54436. source: "./media/characters/io/back.svg",
  54437. extra: 920/776,
  54438. bottom: 42/962
  54439. }
  54440. },
  54441. head: {
  54442. height: math.unit(5.09, "meters"),
  54443. name: "Head",
  54444. image: {
  54445. source: "./media/characters/io/head.svg"
  54446. }
  54447. },
  54448. hand: {
  54449. height: math.unit(1.6, "meters"),
  54450. name: "Hand",
  54451. image: {
  54452. source: "./media/characters/io/hand.svg"
  54453. }
  54454. },
  54455. foot: {
  54456. height: math.unit(2.4, "meters"),
  54457. name: "Foot",
  54458. image: {
  54459. source: "./media/characters/io/foot.svg"
  54460. }
  54461. },
  54462. },
  54463. [
  54464. {
  54465. name: "Normal",
  54466. height: math.unit(8, "meters"),
  54467. default: true
  54468. },
  54469. ]
  54470. ))
  54471. //characters
  54472. function makeCharacters() {
  54473. const results = [];
  54474. characterMakers.forEach(character => {
  54475. results.push(character());
  54476. });
  54477. return results;
  54478. }