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.
 
 
 

51779 lines
1.3 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.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. if (value.extraAttributes) {
  54. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  55. views[key].attributes[attrKey] = attrValue
  56. })
  57. }
  58. });
  59. return createEntityMaker(info, views, defaultSizes, forms);
  60. }
  61. const speciesData = {
  62. animal: {
  63. name: "Animal"
  64. },
  65. dog: {
  66. name: "Dog",
  67. parents: [
  68. "canine"
  69. ]
  70. },
  71. canine: {
  72. name: "Canine",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. crux: {
  78. name: "Crux",
  79. parents: [
  80. "mammal"
  81. ]
  82. },
  83. mammal: {
  84. name: "Mammal",
  85. parents: [
  86. "animal"
  87. ]
  88. },
  89. "rough-collie": {
  90. name: "Rough Collie",
  91. parents: [
  92. "dog"
  93. ]
  94. },
  95. dragon: {
  96. name: "Dragon",
  97. parents: [
  98. "reptile"
  99. ]
  100. },
  101. reptile: {
  102. name: "Reptile",
  103. parents: [
  104. "animal"
  105. ]
  106. },
  107. woodpecker: {
  108. name: "Woodpecker",
  109. parents: [
  110. "avian"
  111. ]
  112. },
  113. avian: {
  114. name: "Avian",
  115. parents: [
  116. "animal"
  117. ]
  118. },
  119. kitsune: {
  120. name: "Kitsune",
  121. parents: [
  122. "fox"
  123. ]
  124. },
  125. fox: {
  126. name: "Fox",
  127. parents: [
  128. "mammal"
  129. ]
  130. },
  131. pokemon: {
  132. name: "Pokemon",
  133. },
  134. tiger: {
  135. name: "Tiger",
  136. parents: [
  137. "cat"
  138. ]
  139. },
  140. cat: {
  141. name: "Cat",
  142. parents: [
  143. "feliform"
  144. ]
  145. },
  146. "blue-jay": {
  147. name: "Blue Jay",
  148. parents: [
  149. "avian"
  150. ]
  151. },
  152. wolf: {
  153. name: "Wolf",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. coyote: {
  159. name: "Coyote",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. raccoon: {
  165. name: "Raccoon",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. weasel: {
  171. name: "Weasel",
  172. parents: [
  173. "mustelid"
  174. ]
  175. },
  176. "red-panda": {
  177. name: "Red Panda",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. dolphin: {
  183. name: "Dolphin",
  184. parents: [
  185. "mammal"
  186. ]
  187. },
  188. "african-wild-dog": {
  189. name: "African Wild Dog",
  190. parents: [
  191. "canine"
  192. ]
  193. },
  194. "hyena": {
  195. name: "Hyena",
  196. parents: [
  197. "feliform"
  198. ]
  199. },
  200. "carbuncle": {
  201. name: "Carbuncle",
  202. parents: [
  203. "animal"
  204. ]
  205. },
  206. bat: {
  207. name: "Bat",
  208. parents: [
  209. "mammal"
  210. ]
  211. },
  212. "leaf-nosed-bat": {
  213. name: "Leaf-Nosed Bat",
  214. parents: [
  215. "bat"
  216. ]
  217. },
  218. "fish": {
  219. name: "Fish",
  220. parents: [
  221. "animal"
  222. ]
  223. },
  224. "ram": {
  225. name: "Ram",
  226. parents: [
  227. "mammal"
  228. ]
  229. },
  230. "demon": {
  231. name: "Demon",
  232. parents: [
  233. "supernatural"
  234. ]
  235. },
  236. "cougar": {
  237. name: "Cougar",
  238. parents: [
  239. "cat"
  240. ]
  241. },
  242. "goat": {
  243. name: "Goat",
  244. parents: [
  245. "mammal"
  246. ]
  247. },
  248. "lion": {
  249. name: "Lion",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "harpy-eager": {
  255. name: "Harpy Eagle",
  256. parents: [
  257. "avian"
  258. ]
  259. },
  260. "deer": {
  261. name: "Deer",
  262. parents: [
  263. "mammal"
  264. ]
  265. },
  266. "phoenix": {
  267. name: "Phoenix",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "aeromorph": {
  273. name: "Aeromorph",
  274. parents: [
  275. "machine"
  276. ]
  277. },
  278. "machine": {
  279. name: "Machine",
  280. },
  281. "android": {
  282. name: "Android",
  283. parents: [
  284. "machine"
  285. ]
  286. },
  287. "jackal": {
  288. name: "Jackal",
  289. parents: [
  290. "canine"
  291. ]
  292. },
  293. "corvid": {
  294. name: "Corvid",
  295. parents: [
  296. "avian"
  297. ]
  298. },
  299. "pharaoh-hound": {
  300. name: "Pharaoh Hound",
  301. parents: [
  302. "dog"
  303. ]
  304. },
  305. "skunk": {
  306. name: "Skunk",
  307. parents: [
  308. "mammal"
  309. ]
  310. },
  311. "shark": {
  312. name: "Shark",
  313. parents: [
  314. "fish"
  315. ]
  316. },
  317. "black-panther": {
  318. name: "Black Panther",
  319. parents: [
  320. "cat"
  321. ]
  322. },
  323. "umbra": {
  324. name: "Umbra",
  325. parents: [
  326. "animal"
  327. ]
  328. },
  329. "raven": {
  330. name: "Raven",
  331. parents: [
  332. "corvid"
  333. ]
  334. },
  335. "snow-leopard": {
  336. name: "Snow Leopard",
  337. parents: [
  338. "cat"
  339. ]
  340. },
  341. "barbary-lion": {
  342. name: "Barbary Lion",
  343. parents: [
  344. "lion"
  345. ]
  346. },
  347. "dra'gal": {
  348. name: "Dra'Gal",
  349. parents: [
  350. "mammal"
  351. ]
  352. },
  353. "german-shepherd": {
  354. name: "German Shepherd",
  355. parents: [
  356. "dog"
  357. ]
  358. },
  359. "bayleef": {
  360. name: "Bayleef",
  361. parents: [
  362. "pokemon",
  363. "plant",
  364. "animal"
  365. ]
  366. },
  367. "mouse": {
  368. name: "Mouse",
  369. parents: [
  370. "rodent"
  371. ]
  372. },
  373. "rat": {
  374. name: "Rat",
  375. parents: [
  376. "mammal"
  377. ]
  378. },
  379. "hoshiko-beast": {
  380. name: "Hoshiko Beast",
  381. parents: ["animal"]
  382. },
  383. "snow-jugani": {
  384. name: "Snow Jugani",
  385. parents: ["cat"]
  386. },
  387. "patamon": {
  388. name: "Patamon",
  389. parents: ["digimon", "guinea-pig"]
  390. },
  391. "digimon": {
  392. name: "Digimon",
  393. },
  394. "jugani": {
  395. name: "Jugani",
  396. parents: ["cat"]
  397. },
  398. "luxray": {
  399. name: "Luxray",
  400. parents: ["pokemon", "lion"]
  401. },
  402. "mech": {
  403. name: "Mech",
  404. parents: ["machine"]
  405. },
  406. "zoid": {
  407. name: "Zoid",
  408. parents: ["mech"]
  409. },
  410. "monster": {
  411. name: "Monster",
  412. parents: ["animal"]
  413. },
  414. "foo-dog": {
  415. name: "Foo Dog",
  416. parents: ["mammal"]
  417. },
  418. "elephant": {
  419. name: "Elephant",
  420. parents: ["mammal"]
  421. },
  422. "eagle": {
  423. name: "Eagle",
  424. parents: ["avian"]
  425. },
  426. "cow": {
  427. name: "Cow",
  428. parents: ["mammal"]
  429. },
  430. "crocodile": {
  431. name: "Crocodile",
  432. parents: ["reptile"]
  433. },
  434. "borzoi": {
  435. name: "Borzoi",
  436. parents: ["dog"]
  437. },
  438. "snake": {
  439. name: "Snake",
  440. parents: ["reptile"]
  441. },
  442. "horned-bush-viper": {
  443. name: "Horned Bush Viper",
  444. parents: ["viper"]
  445. },
  446. "cobra": {
  447. name: "Cobra",
  448. parents: ["snake"]
  449. },
  450. "harpy-eagle": {
  451. name: "Harpy Eagle",
  452. parents: ["eagle"]
  453. },
  454. "raptor": {
  455. name: "Raptor",
  456. parents: ["dinosaur"]
  457. },
  458. "dinosaur": {
  459. name: "Dinosaur",
  460. parents: ["reptile"]
  461. },
  462. "veilhound": {
  463. name: "Veilhound",
  464. parents: ["hellhound"]
  465. },
  466. "hellhound": {
  467. name: "Hellhound",
  468. parents: ["canine", "demon"]
  469. },
  470. "insect": {
  471. name: "Insect",
  472. parents: ["animal"]
  473. },
  474. "beetle": {
  475. name: "Beetle",
  476. parents: ["insect"]
  477. },
  478. "moth": {
  479. name: "Moth",
  480. parents: ["insect"]
  481. },
  482. "eastern-dragon": {
  483. name: "Eastern Dragon",
  484. parents: ["dragon"]
  485. },
  486. "jaguar": {
  487. name: "Jaguar",
  488. parents: ["cat"]
  489. },
  490. "horse": {
  491. name: "Horse",
  492. parents: ["mammal"]
  493. },
  494. "sergal": {
  495. name: "Sergal",
  496. parents: ["mammal", "avian", "vilous"]
  497. },
  498. "gryphon": {
  499. name: "Gryphon",
  500. parents: ["lion", "eagle"]
  501. },
  502. "robot": {
  503. name: "Robot",
  504. parents: ["machine"]
  505. },
  506. "medihound": {
  507. name: "Medihound",
  508. parents: ["robot", "dog"]
  509. },
  510. "sylveon": {
  511. name: "Sylveon",
  512. parents: ["pokemon"]
  513. },
  514. "catgirl": {
  515. name: "Catgirl",
  516. parents: ["mammal"]
  517. },
  518. "cowgirl": {
  519. name: "Cowgirl",
  520. parents: ["mammal"]
  521. },
  522. "pony": {
  523. name: "Pony",
  524. parents: ["horse"]
  525. },
  526. "rabbit": {
  527. name: "Rabbit",
  528. parents: ["leporidae"]
  529. },
  530. "fennec-fox": {
  531. name: "Fennec Fox",
  532. parents: ["fox"]
  533. },
  534. "azodian": {
  535. name: "Azodian",
  536. parents: ["mouse"]
  537. },
  538. "shiba-inu": {
  539. name: "Shiba Inu",
  540. parents: ["dog"]
  541. },
  542. "changeling": {
  543. name: "Changeling",
  544. parents: ["insect"]
  545. },
  546. "cheetah": {
  547. name: "Cheetah",
  548. parents: ["cat"]
  549. },
  550. "golden-jackal": {
  551. name: "Golden Jackal",
  552. parents: ["jackal"]
  553. },
  554. "manectric": {
  555. name: "Manectric",
  556. parents: ["pokemon", "wolf"]
  557. },
  558. "rat": {
  559. name: "Rat",
  560. parents: ["rodent"]
  561. },
  562. "rodent": {
  563. name: "Rodent",
  564. parents: ["mammal"]
  565. },
  566. "octocoon": {
  567. name: "Octocoon",
  568. parents: ["raccoon", "octopus"]
  569. },
  570. "octopus": {
  571. name: "Octopus",
  572. parents: ["fish"]
  573. },
  574. "werewolf": {
  575. name: "Werewolf",
  576. parents: ["wolf", "werebeast"]
  577. },
  578. "werebeast": {
  579. name: "Werebeast",
  580. parents: ["monster"]
  581. },
  582. "meerkat": {
  583. name: "Meerkat",
  584. parents: ["mammal"]
  585. },
  586. "human": {
  587. name: "Human",
  588. parents: ["mammal"]
  589. },
  590. "geth": {
  591. name: "Geth",
  592. parents: ["android"]
  593. },
  594. "husky": {
  595. name: "Husky",
  596. parents: ["dog"]
  597. },
  598. "long-eared-bat": {
  599. name: "Long Eared Bat",
  600. parents: ["bat"]
  601. },
  602. "lizard": {
  603. name: "Lizard",
  604. parents: ["reptile"]
  605. },
  606. "salamander": {
  607. name: "Salamander",
  608. parents: ["lizard"]
  609. },
  610. "chameleon": {
  611. name: "Chameleon",
  612. parents: ["lizard"]
  613. },
  614. "gecko": {
  615. name: "Gecko",
  616. parents: ["lizard"]
  617. },
  618. "kobold": {
  619. name: "Kobold",
  620. parents: ["reptile"]
  621. },
  622. "charizard": {
  623. name: "Charizard",
  624. parents: ["pokemon", "dragon"]
  625. },
  626. "lugia": {
  627. name: "Lugia",
  628. parents: ["pokemon", "avian"]
  629. },
  630. "cerberus": {
  631. name: "Cerberus",
  632. parents: ["dog"]
  633. },
  634. "tyrantrum": {
  635. name: "Tyrantrum",
  636. parents: ["pokemon"]
  637. },
  638. "lemur": {
  639. name: "Lemur",
  640. parents: ["mammal"]
  641. },
  642. "kelpie": {
  643. name: "Kelpie",
  644. parents: ["horse", "monster"]
  645. },
  646. "labrador": {
  647. name: "Labrador",
  648. parents: ["dog"]
  649. },
  650. "sylveon": {
  651. name: "Sylveon",
  652. parents: ["eeveelution"]
  653. },
  654. "eeveelution": {
  655. name: "Eeveelution",
  656. parents: ["pokemon", "cat"]
  657. },
  658. "polar-bear": {
  659. name: "Polar Bear",
  660. parents: ["bear"]
  661. },
  662. "bear": {
  663. name: "Bear",
  664. parents: ["mammal"]
  665. },
  666. "absol": {
  667. name: "Absol",
  668. parents: ["pokemon", "cat"]
  669. },
  670. "wolver": {
  671. name: "Wolver",
  672. parents: ["mammal"]
  673. },
  674. "rottweiler": {
  675. name: "Rottweiler",
  676. parents: ["dog"]
  677. },
  678. "zebra": {
  679. name: "Zebra",
  680. parents: ["horse"]
  681. },
  682. "yoshi": {
  683. name: "Yoshi",
  684. parents: ["lizard"]
  685. },
  686. "lynx": {
  687. name: "Lynx",
  688. parents: ["cat"]
  689. },
  690. "unknown": {
  691. name: "Unknown",
  692. parents: []
  693. },
  694. "thylacine": {
  695. name: "Thylacine",
  696. parents: ["mammal"]
  697. },
  698. "gabumon": {
  699. name: "Gabumon",
  700. parents: ["digimon"]
  701. },
  702. "border-collie": {
  703. name: "Border Collie",
  704. parents: ["dog"]
  705. },
  706. "imp": {
  707. name: "Imp",
  708. parents: ["demon"]
  709. },
  710. "kangaroo": {
  711. name: "Kangaroo",
  712. parents: ["marsupial"]
  713. },
  714. "renamon": {
  715. name: "Renamon",
  716. parents: ["digimon", "fox"]
  717. },
  718. "candy-orca-dragon": {
  719. name: "Candy Orca Dragon",
  720. parents: ["fish", "dragon", "candy"]
  721. },
  722. "sabertooth-tiger": {
  723. name: "Sabertooth Tiger",
  724. parents: ["cat"]
  725. },
  726. "espurr": {
  727. name: "Espurr",
  728. parents: ["pokemon", "cat"]
  729. },
  730. "otter": {
  731. name: "Otter",
  732. parents: ["mustelid"]
  733. },
  734. "elemental": {
  735. name: "Elemental",
  736. parents: ["mammal"]
  737. },
  738. "mew": {
  739. name: "Mew",
  740. parents: ["pokemon"]
  741. },
  742. "goodra": {
  743. name: "Goodra",
  744. parents: ["pokemon"]
  745. },
  746. "fairy": {
  747. name: "Fairy",
  748. parents: ["magical"]
  749. },
  750. "typhlosion": {
  751. name: "Typhlosion",
  752. parents: ["pokemon"]
  753. },
  754. "magical": {
  755. name: "Magical",
  756. parents: []
  757. },
  758. "xenomorph": {
  759. name: "Xenomorph",
  760. parents: ["monster", "alien"]
  761. },
  762. "charr": {
  763. name: "Charr",
  764. parents: ["cat"]
  765. },
  766. "siberian-husky": {
  767. name: "Siberian Husky",
  768. parents: ["husky"]
  769. },
  770. "alligator": {
  771. name: "Alligator",
  772. parents: ["reptile"]
  773. },
  774. "bernese-mountain-dog": {
  775. name: "Bernese Mountain Dog",
  776. parents: ["dog"]
  777. },
  778. "reshiram": {
  779. name: "Reshiram",
  780. parents: ["pokemon", "dragon"]
  781. },
  782. "grizzly-bear": {
  783. name: "Grizzly Bear",
  784. parents: ["bear"]
  785. },
  786. "water-monitor": {
  787. name: "Water Monitor",
  788. parents: ["lizard"]
  789. },
  790. "banchofossa": {
  791. name: "Banchofossa",
  792. parents: ["mammal"]
  793. },
  794. "kirin": {
  795. name: "Kirin",
  796. parents: ["monster"]
  797. },
  798. "quilava": {
  799. name: "Quilava",
  800. parents: ["pokemon"]
  801. },
  802. "seviper": {
  803. name: "Seviper",
  804. parents: ["pokemon", "viper"]
  805. },
  806. "flying-fox": {
  807. name: "Flying Fox",
  808. parents: ["bat"]
  809. },
  810. "keynain": {
  811. name: "Keynain",
  812. parents: ["avian"]
  813. },
  814. "lucario": {
  815. name: "Lucario",
  816. parents: ["pokemon", "jackal"]
  817. },
  818. "siamese-cat": {
  819. name: "Siamese Cat",
  820. parents: ["cat"]
  821. },
  822. "spider": {
  823. name: "Spider",
  824. parents: ["insect"]
  825. },
  826. "samurott": {
  827. name: "Samurott",
  828. parents: ["pokemon", "otter"]
  829. },
  830. "megalodon": {
  831. name: "Megalodon",
  832. parents: ["shark"]
  833. },
  834. "unicorn": {
  835. name: "Unicorn",
  836. parents: ["horse"]
  837. },
  838. "greninja": {
  839. name: "Greninja",
  840. parents: ["pokemon", "frog"]
  841. },
  842. "water-dragon": {
  843. name: "Water Dragon",
  844. parents: ["dragon"]
  845. },
  846. "cross-fox": {
  847. name: "Cross Fox",
  848. parents: ["fox"]
  849. },
  850. "synth": {
  851. name: "Synth",
  852. parents: ["machine"]
  853. },
  854. "construct": {
  855. name: "Construct",
  856. parents: []
  857. },
  858. "mexican-wolf": {
  859. name: "Mexican Wolf",
  860. parents: ["wolf"]
  861. },
  862. "leopard": {
  863. name: "Leopard",
  864. parents: ["cat"]
  865. },
  866. "pig": {
  867. name: "Pig",
  868. parents: ["mammal"]
  869. },
  870. "ampharos": {
  871. name: "Ampharos",
  872. parents: ["pokemon", "sheep"]
  873. },
  874. "orca": {
  875. name: "Orca",
  876. parents: ["fish"]
  877. },
  878. "lycanroc": {
  879. name: "Lycanroc",
  880. parents: ["pokemon", "wolf"]
  881. },
  882. "surkanu": {
  883. name: "Surkanu",
  884. parents: ["monster"]
  885. },
  886. "seal": {
  887. name: "Seal",
  888. parents: ["mammal"]
  889. },
  890. "keldeo": {
  891. name: "Keldeo",
  892. parents: ["pokemon"]
  893. },
  894. "great-dane": {
  895. name: "Great Dane",
  896. parents: ["dog"]
  897. },
  898. "black-backed-jackal": {
  899. name: "Black Backed Jackal",
  900. parents: ["jackal"]
  901. },
  902. "sheep": {
  903. name: "Sheep",
  904. parents: ["mammal"]
  905. },
  906. "leopard-seal": {
  907. name: "Leopard Seal",
  908. parents: ["seal"]
  909. },
  910. "zoroark": {
  911. name: "Zoroark",
  912. parents: ["pokemon", "fox"]
  913. },
  914. "maned-wolf": {
  915. name: "Maned Wolf",
  916. parents: ["canine"]
  917. },
  918. "dracha": {
  919. name: "Dracha",
  920. parents: ["dragon"]
  921. },
  922. "wolxi": {
  923. name: "Wolxi",
  924. parents: ["mammal", "alien"]
  925. },
  926. "dratini": {
  927. name: "Dratini",
  928. parents: ["pokemon", "dragon"]
  929. },
  930. "skaven": {
  931. name: "Skaven",
  932. parents: ["rat"]
  933. },
  934. "mongoose": {
  935. name: "Mongoose",
  936. parents: ["mammal"]
  937. },
  938. "lopunny": {
  939. name: "Lopunny",
  940. parents: ["pokemon", "rabbit"]
  941. },
  942. "feraligatr": {
  943. name: "Feraligatr",
  944. parents: ["pokemon", "alligator"]
  945. },
  946. "houndoom": {
  947. name: "Houndoom",
  948. parents: ["pokemon", "dog"]
  949. },
  950. "protogen": {
  951. name: "Protogen",
  952. parents: ["machine"]
  953. },
  954. "saint-bernard": {
  955. name: "Saint Bernard",
  956. parents: ["dog"]
  957. },
  958. "crow": {
  959. name: "Crow",
  960. parents: ["corvid"]
  961. },
  962. "delphox": {
  963. name: "Delphox",
  964. parents: ["pokemon", "fox"]
  965. },
  966. "moose": {
  967. name: "Moose",
  968. parents: ["mammal"]
  969. },
  970. "joraxian": {
  971. name: "Joraxian",
  972. parents: ["monster", "canine", "demon"]
  973. },
  974. "nimbat": {
  975. name: "Nimbat",
  976. parents: ["mammal"]
  977. },
  978. "aardwolf": {
  979. name: "Aardwolf",
  980. parents: ["canine"]
  981. },
  982. "fluudrani": {
  983. name: "Fluudrani",
  984. parents: ["animal"]
  985. },
  986. "arcanine": {
  987. name: "Arcanine",
  988. parents: ["pokemon", "dog"]
  989. },
  990. "inteleon": {
  991. name: "Inteleon",
  992. parents: ["pokemon", "fish"]
  993. },
  994. "ninetales": {
  995. name: "Ninetales",
  996. parents: ["pokemon", "kitsune"]
  997. },
  998. "tigrex": {
  999. name: "Tigrex",
  1000. parents: ["tiger"]
  1001. },
  1002. "zorua": {
  1003. name: "Zorua",
  1004. parents: ["pokemon", "fox"]
  1005. },
  1006. "vulpix": {
  1007. name: "Vulpix",
  1008. parents: ["pokemon", "fox"]
  1009. },
  1010. "barghest": {
  1011. name: "Barghest",
  1012. parents: ["monster"]
  1013. },
  1014. "gray-wolf": {
  1015. name: "Gray Wolf",
  1016. parents: ["wolf"]
  1017. },
  1018. "ruppells-fox": {
  1019. name: "Rüppell's Fox",
  1020. parents: ["fox"]
  1021. },
  1022. "bull-terrier": {
  1023. name: "Bull Terrier",
  1024. parents: ["dog"]
  1025. },
  1026. "european-honey-buzzard": {
  1027. name: "European Honey Buzzard",
  1028. parents: ["avian"]
  1029. },
  1030. "t-rex": {
  1031. name: "Tyrannosaurus Rex",
  1032. parents: ["dinosaur"]
  1033. },
  1034. "mactarian": {
  1035. name: "Mactarian",
  1036. parents: ["shark", "monster"]
  1037. },
  1038. "mewtwo-y": {
  1039. name: "Mewtwo Y",
  1040. parents: ["mewtwo"]
  1041. },
  1042. "mewtwo": {
  1043. name: "Mewtwo",
  1044. parents: ["pokemon"]
  1045. },
  1046. "eevee": {
  1047. name: "Eevee",
  1048. parents: ["eeveelution"]
  1049. },
  1050. "mienshao": {
  1051. name: "Mienshao",
  1052. parents: ["pokemon"]
  1053. },
  1054. "sugar-glider": {
  1055. name: "Sugar Glider",
  1056. parents: ["opossum"]
  1057. },
  1058. "spectral-bat": {
  1059. name: "Spectral Bat",
  1060. parents: ["bat"]
  1061. },
  1062. "scolipede": {
  1063. name: "Scolipede",
  1064. parents: ["pokemon", "insect"]
  1065. },
  1066. "jackalope": {
  1067. name: "Jackalope",
  1068. parents: ["rabbit", "antelope"]
  1069. },
  1070. "caracal": {
  1071. name: "Caracal",
  1072. parents: ["cat"]
  1073. },
  1074. "stoat": {
  1075. name: "Stoat",
  1076. parents: ["mammal"]
  1077. },
  1078. "african-golden-cat": {
  1079. name: "African Golden Cat",
  1080. parents: ["cat"]
  1081. },
  1082. "gigantosaurus": {
  1083. name: "Gigantosaurus",
  1084. parents: ["dinosaur"]
  1085. },
  1086. "zorgoia": {
  1087. name: "Zorgoia",
  1088. parents: ["mammal"]
  1089. },
  1090. "monitor-lizard": {
  1091. name: "Monitor Lizard",
  1092. parents: ["lizard"]
  1093. },
  1094. "ziralkia": {
  1095. name: "Ziralkia",
  1096. parents: ["mammal"]
  1097. },
  1098. "kiiasi": {
  1099. name: "Kiiasi",
  1100. parents: ["animal"]
  1101. },
  1102. "synx": {
  1103. name: "Synx",
  1104. parents: ["monster"]
  1105. },
  1106. "panther": {
  1107. name: "Panther",
  1108. parents: ["cat"]
  1109. },
  1110. "azumarill": {
  1111. name: "Azumarill",
  1112. parents: ["pokemon"]
  1113. },
  1114. "river-snaptail": {
  1115. name: "River Snaptail",
  1116. parents: ["otter", "crocodile"]
  1117. },
  1118. "great-blue-heron": {
  1119. name: "Great Blue Heron",
  1120. parents: ["avian"]
  1121. },
  1122. "smeargle": {
  1123. name: "Smeargle",
  1124. parents: ["pokemon"]
  1125. },
  1126. "vendeilen": {
  1127. name: "Vendeilen",
  1128. parents: ["monster"]
  1129. },
  1130. "ventura": {
  1131. name: "Ventura",
  1132. parents: ["canine"]
  1133. },
  1134. "clouded-leopard": {
  1135. name: "Clouded Leopard",
  1136. parents: ["leopard"]
  1137. },
  1138. "argonian": {
  1139. name: "Argonian",
  1140. parents: ["lizard"]
  1141. },
  1142. "salazzle": {
  1143. name: "Salazzle",
  1144. parents: ["pokemon", "lizard"]
  1145. },
  1146. "je-stoff-drachen": {
  1147. name: "Je-Stoff Drachen",
  1148. parents: ["dragon"]
  1149. },
  1150. "finnish-spitz-dog": {
  1151. name: "Finnish Spitz Dog",
  1152. parents: ["dog"]
  1153. },
  1154. "gray-fox": {
  1155. name: "Gray Fox",
  1156. parents: ["fox"]
  1157. },
  1158. "opossum": {
  1159. name: "Opossum",
  1160. parents: ["mammal"]
  1161. },
  1162. "antelope": {
  1163. name: "Antelope",
  1164. parents: ["mammal"]
  1165. },
  1166. "weavile": {
  1167. name: "Weavile",
  1168. parents: ["pokemon"]
  1169. },
  1170. "pikachu": {
  1171. name: "Pikachu",
  1172. parents: ["pokemon", "mouse"]
  1173. },
  1174. "grovyle": {
  1175. name: "Grovyle",
  1176. parents: ["pokemon", "plant"]
  1177. },
  1178. "sthara": {
  1179. name: "Sthara",
  1180. parents: ["snow-leopard", "reptile"]
  1181. },
  1182. "star-warrior": {
  1183. name: "Star Warrior",
  1184. parents: ["magical"]
  1185. },
  1186. "dragonoid": {
  1187. name: "Dragonoid",
  1188. parents: ["dragon"]
  1189. },
  1190. "suicune": {
  1191. name: "Suicune",
  1192. parents: ["pokemon"]
  1193. },
  1194. "vole": {
  1195. name: "Vole",
  1196. parents: ["mammal"]
  1197. },
  1198. "blaziken": {
  1199. name: "Blaziken",
  1200. parents: ["pokemon", "avian"]
  1201. },
  1202. "buizel": {
  1203. name: "Buizel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "floatzel": {
  1207. name: "Floatzel",
  1208. parents: ["pokemon", "fish"]
  1209. },
  1210. "umok": {
  1211. name: "Umok",
  1212. parents: ["avian"]
  1213. },
  1214. "sea-monster": {
  1215. name: "Sea Monster",
  1216. parents: ["monster", "fish"]
  1217. },
  1218. "egyptian-vulture": {
  1219. name: "Egyptian Vulture",
  1220. parents: ["avian"]
  1221. },
  1222. "doberman": {
  1223. name: "Doberman",
  1224. parents: ["dog"]
  1225. },
  1226. "zangoose": {
  1227. name: "Zangoose",
  1228. parents: ["pokemon", "mongoose"]
  1229. },
  1230. "mongoose": {
  1231. name: "Mongoose",
  1232. parents: ["mammal"]
  1233. },
  1234. "wickerbeast": {
  1235. name: "Wickerbeast",
  1236. parents: ["monster"]
  1237. },
  1238. "zenari": {
  1239. name: "Zenari",
  1240. parents: ["lizard"]
  1241. },
  1242. "plant": {
  1243. name: "Plant",
  1244. parents: []
  1245. },
  1246. "raskatox": {
  1247. name: "Raskatox",
  1248. parents: ["raccoon", "skunk", "cat", "fox"]
  1249. },
  1250. "mikromare": {
  1251. name: "mikromare",
  1252. parents: ["alien"]
  1253. },
  1254. "alien": {
  1255. name: "Alien",
  1256. parents: ["animal"]
  1257. },
  1258. "deity": {
  1259. name: "Deity",
  1260. parents: []
  1261. },
  1262. "skarlan": {
  1263. name: "Skarlan",
  1264. parents: ["slug", "dragon"]
  1265. },
  1266. "slug": {
  1267. name: "Slug",
  1268. parents: ["mollusk"]
  1269. },
  1270. "mollusk": {
  1271. name: "Mollusk",
  1272. parents: ["animal"]
  1273. },
  1274. "chimera": {
  1275. name: "Chimera",
  1276. parents: ["monster"]
  1277. },
  1278. "gestalt": {
  1279. name: "Gestalt",
  1280. parents: ["construct"]
  1281. },
  1282. "mimic": {
  1283. name: "Mimic",
  1284. parents: ["monster"]
  1285. },
  1286. "calico-rat": {
  1287. name: "Calico Rat",
  1288. parents: ["rat"]
  1289. },
  1290. "panda": {
  1291. name: "Panda",
  1292. parents: ["mammal"]
  1293. },
  1294. "oni": {
  1295. name: "Oni",
  1296. parents: ["monster"]
  1297. },
  1298. "pegasus": {
  1299. name: "Pegasus",
  1300. parents: ["horse"]
  1301. },
  1302. "vulpera": {
  1303. name: "Vulpera",
  1304. parents: ["fennec-fox"]
  1305. },
  1306. "ceratosaurus": {
  1307. name: "Ceratosaurus",
  1308. parents: ["dinosaur"]
  1309. },
  1310. "nykur": {
  1311. name: "Nykur",
  1312. parents: ["horse", "monster"]
  1313. },
  1314. "giraffe": {
  1315. name: "Giraffe",
  1316. parents: ["mammal"]
  1317. },
  1318. "tauren": {
  1319. name: "Tauren",
  1320. parents: ["cow"]
  1321. },
  1322. "draconi": {
  1323. name: "Draconi",
  1324. parents: ["alien", "cat", "cyborg"]
  1325. },
  1326. "dire-wolf": {
  1327. name: "Dire Wolf",
  1328. parents: ["wolf"]
  1329. },
  1330. "ferromorph": {
  1331. name: "Ferromorph",
  1332. parents: ["construct"]
  1333. },
  1334. "meowth": {
  1335. name: "Meowth",
  1336. parents: ["cat", "pokemon"]
  1337. },
  1338. "pavodragon": {
  1339. name: "Pavodragon",
  1340. parents: ["dragon"]
  1341. },
  1342. "aaltranae": {
  1343. name: "Aaltranae",
  1344. parents: ["dragon"]
  1345. },
  1346. "cyborg": {
  1347. name: "Cyborg",
  1348. parents: ["machine"]
  1349. },
  1350. "draptor": {
  1351. name: "Draptor",
  1352. parents: ["dragon"]
  1353. },
  1354. "candy": {
  1355. name: "Candy",
  1356. parents: []
  1357. },
  1358. "drenath": {
  1359. name: "Drenath",
  1360. parents: ["dragon", "snake", "rabbit"]
  1361. },
  1362. "coyju": {
  1363. name: "Coyju",
  1364. parents: ["coyote", "kaiju"]
  1365. },
  1366. "kaiju": {
  1367. name: "Kaiju",
  1368. parents: ["monster"]
  1369. },
  1370. "nickit": {
  1371. name: "Nickit",
  1372. parents: ["pokemon", "cat"]
  1373. },
  1374. "lopunny": {
  1375. name: "Lopunny",
  1376. parents: ["pokemon", "rabbit"]
  1377. },
  1378. "korean-jindo-dog": {
  1379. name: "Korean Jindo Dog",
  1380. parents: ["dog"]
  1381. },
  1382. "naga": {
  1383. name: "Naga",
  1384. parents: ["snake", "monster"]
  1385. },
  1386. "undead": {
  1387. name: "Undead",
  1388. parents: ["monster"]
  1389. },
  1390. "whale": {
  1391. name: "Whale",
  1392. parents: ["fish"]
  1393. },
  1394. "gelato-bee": {
  1395. name: "Gelato Bee",
  1396. parents: ["bee"]
  1397. },
  1398. "bee": {
  1399. name: "Bee",
  1400. parents: ["insect"]
  1401. },
  1402. "gardevoir": {
  1403. name: "Gardevoir",
  1404. parents: ["pokemon"]
  1405. },
  1406. "ant": {
  1407. name: "Ant",
  1408. parents: ["insect"]
  1409. },
  1410. "frog": {
  1411. name: "Frog",
  1412. parents: ["amphibian"]
  1413. },
  1414. "amphibian": {
  1415. name: "Amphibian",
  1416. parents: ["animal"]
  1417. },
  1418. "pangolin": {
  1419. name: "Pangolin",
  1420. parents: ["mammal"]
  1421. },
  1422. "uragi'viidorn": {
  1423. name: "Uragi'viidorn",
  1424. parents: ["avian", "bear"]
  1425. },
  1426. "gryphdelphais": {
  1427. name: "Gryphdelphais",
  1428. parents: ["dolphin", "gryphon"]
  1429. },
  1430. "plush": {
  1431. name: "Plush",
  1432. parents: ["construct"]
  1433. },
  1434. "draiger": {
  1435. name: "Draiger",
  1436. parents: ["dragon","tiger"]
  1437. },
  1438. "foxsky": {
  1439. name: "Foxsky",
  1440. parents: ["fox", "husky"]
  1441. },
  1442. "umbreon": {
  1443. name: "Umbreon",
  1444. parents: ["eeveelution"]
  1445. },
  1446. "slime-dragon": {
  1447. name: "Slime Dragon",
  1448. parents: ["dragon", "goo"]
  1449. },
  1450. "enderman": {
  1451. name: "Enderman",
  1452. parents: ["monster"]
  1453. },
  1454. "gremlin": {
  1455. name: "Gremlin",
  1456. parents: ["monster"]
  1457. },
  1458. "dragonsune": {
  1459. name: "Dragonsune",
  1460. parents: ["dragon", "kitsune"]
  1461. },
  1462. "ghost": {
  1463. name: "Ghost",
  1464. parents: ["supernatural"]
  1465. },
  1466. "false-vampire-bat": {
  1467. name: "False Vampire Bat",
  1468. parents: ["bat"]
  1469. },
  1470. "succubus": {
  1471. name: "Succubus",
  1472. parents: ["demon"]
  1473. },
  1474. "mia": {
  1475. name: "Mia",
  1476. parents: ["canine"]
  1477. },
  1478. "rainbow": {
  1479. name: "Rainbow",
  1480. parents: ["monster"]
  1481. },
  1482. "solgaleo": {
  1483. name: "Solgaleo",
  1484. parents: ["pokemon"]
  1485. },
  1486. "lucent-nargacuga": {
  1487. name: "Lucent Nargacuga",
  1488. parents: ["monster-hunter"]
  1489. },
  1490. "monster-hunter": {
  1491. name: "Monster Hunter",
  1492. parents: ["monster"]
  1493. },
  1494. "leviathan": {
  1495. "name": "Leviathan",
  1496. "url": "sea-monster"
  1497. },
  1498. "bull": {
  1499. name: "Bull",
  1500. parents: ["mammal"]
  1501. },
  1502. "tanuki": {
  1503. name: "Tanuki",
  1504. parents: ["monster"]
  1505. },
  1506. "chakat": {
  1507. name: "Chakat",
  1508. parents: ["cat"]
  1509. },
  1510. "hydra": {
  1511. name: "Hydra",
  1512. parents: ["monster"]
  1513. },
  1514. "zigzagoon": {
  1515. name: "Zigzagoon",
  1516. parents: ["raccoon", "pokemon"]
  1517. },
  1518. "vulture": {
  1519. name: "Vulture",
  1520. parents: ["avian"]
  1521. },
  1522. "eastern-dragon": {
  1523. name: "Eastern Dragon",
  1524. parents: ["dragon"]
  1525. },
  1526. "gryffon": {
  1527. name: "Gryffon",
  1528. parents: ["phoenix", "red-panda"]
  1529. },
  1530. "amtsvane": {
  1531. name: "Amtsvane",
  1532. parents: ["reptile"]
  1533. },
  1534. "kigavi": {
  1535. name: "Kigavi",
  1536. parents: ["avian"]
  1537. },
  1538. "turian": {
  1539. name: "Turian",
  1540. parents: ["avian"]
  1541. },
  1542. "zeraora": {
  1543. name: "Zeraora",
  1544. parents: ["pokemon", "cat"]
  1545. },
  1546. "sandshrew": {
  1547. name: "Sandshrew",
  1548. parents: ["pokemon", "pangolin"]
  1549. },
  1550. "valais-blacknose-sheep": {
  1551. name: "Valais Blacknose Sheep",
  1552. parents: ["sheep"]
  1553. },
  1554. "novaleit": {
  1555. name: "Novaleit",
  1556. parents: ["mammal"]
  1557. },
  1558. "dunnoh": {
  1559. name: "Dunnoh",
  1560. parents: ["mammal"]
  1561. },
  1562. "lunaral-dragon": {
  1563. name: "Lunaral Dragon",
  1564. parents: ["dragon"]
  1565. },
  1566. "arctic-wolf": {
  1567. name: "Arctic Wolf",
  1568. parents: ["wolf"]
  1569. },
  1570. "donkey": {
  1571. name: "Donkey",
  1572. parents: ["horse"]
  1573. },
  1574. "chinchilla": {
  1575. name: "Chinchilla",
  1576. parents: ["rodent"]
  1577. },
  1578. "felkin": {
  1579. name: "Felkin",
  1580. parents: ["dragon"]
  1581. },
  1582. "tykeriel": {
  1583. name: "Tykeriel",
  1584. parents: ["avian"]
  1585. },
  1586. "folf": {
  1587. name: "Folf",
  1588. parents: ["fox", "wolf"]
  1589. },
  1590. "pooltoy": {
  1591. name: "Pooltoy",
  1592. parents: ["construct"]
  1593. },
  1594. "demi": {
  1595. name: "Demi",
  1596. parents: ["human"]
  1597. },
  1598. "stegosaurus": {
  1599. name: "Stegosaurus",
  1600. parents: ["dinosaur"]
  1601. },
  1602. "computer-virus": {
  1603. name: "Computer Virus",
  1604. parents: ["program"]
  1605. },
  1606. "program": {
  1607. name: "Program",
  1608. parents: ["construct"]
  1609. },
  1610. "space-springhare": {
  1611. name: "Space Springhare",
  1612. parents: ["hare"]
  1613. },
  1614. "river-drake": {
  1615. name: "River Drake",
  1616. parents: ["dragon"]
  1617. },
  1618. "djinn": {
  1619. "name": "Djinn",
  1620. "url": "supernatural"
  1621. },
  1622. "supernatural": {
  1623. name: "Supernatural",
  1624. parents: ["monster"]
  1625. },
  1626. "grasshopper-mouse": {
  1627. name: "Grasshopper Mouse",
  1628. parents: ["mouse"]
  1629. },
  1630. "somali-cat": {
  1631. name: "Somali Cat",
  1632. parents: ["cat"]
  1633. },
  1634. "minccino": {
  1635. name: "Minccino",
  1636. parents: ["pokemon", "chinchilla"]
  1637. },
  1638. "pine-marten": {
  1639. name: "Pine Marten",
  1640. parents: ["marten"]
  1641. },
  1642. "marten": {
  1643. name: "Marten",
  1644. parents: ["mustelid"]
  1645. },
  1646. "mustelid": {
  1647. name: "Mustelid",
  1648. parents: ["mammal"]
  1649. },
  1650. "caribou": {
  1651. name: "Caribou",
  1652. parents: ["deer"]
  1653. },
  1654. "gnoll": {
  1655. name: "Gnoll",
  1656. parents: ["hyena", "monster"]
  1657. },
  1658. "peacekeeper": {
  1659. name: "Peacekeeper",
  1660. parents: ["human"]
  1661. },
  1662. "river-otter": {
  1663. name: "River Otter",
  1664. parents: ["otter"]
  1665. },
  1666. "dhole": {
  1667. name: "Dhole",
  1668. parents: ["canine"]
  1669. },
  1670. "springbok": {
  1671. name: "Springbok",
  1672. parents: ["antelope"]
  1673. },
  1674. "marsupial": {
  1675. name: "Marsupial",
  1676. parents: ["mammal"]
  1677. },
  1678. "townsend-big-eared-bat": {
  1679. name: "Townsend Big-eared Bat",
  1680. parents: ["bat"]
  1681. },
  1682. "squirrel": {
  1683. name: "Squirrel",
  1684. parents: ["rodent"]
  1685. },
  1686. "magpie": {
  1687. name: "Magpie",
  1688. parents: ["corvid"]
  1689. },
  1690. "civet": {
  1691. name: "Civet",
  1692. parents: ["feliform"]
  1693. },
  1694. "feliform": {
  1695. name: "Feliform",
  1696. parents: ["mammal"]
  1697. },
  1698. "tiefling": {
  1699. name: "Tiefling",
  1700. parents: ["devil"]
  1701. },
  1702. "devil": {
  1703. name: "Devil",
  1704. parents: ["supernatural"]
  1705. },
  1706. "sika-deer": {
  1707. name: "Sika Deer",
  1708. parents: ["deer"]
  1709. },
  1710. "vaporeon": {
  1711. name: "Vaporeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "leafeon": {
  1715. name: "Leafeon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "jolteon": {
  1719. name: "Jolteon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "spireborn": {
  1723. name: "Spireborn",
  1724. parents: ["zorgoia"]
  1725. },
  1726. "vampire": {
  1727. name: "Vampire",
  1728. parents: ["monster"]
  1729. },
  1730. "extraplanar": {
  1731. name: "Extraplanar",
  1732. parents: []
  1733. },
  1734. "goo": {
  1735. name: "Goo",
  1736. parents: []
  1737. },
  1738. "skink": {
  1739. name: "Skink",
  1740. parents: ["lizard"]
  1741. },
  1742. "bat-eared-fox": {
  1743. name: "Bat-eared Fox",
  1744. parents: ["fox"]
  1745. },
  1746. "belted-kingfisher": {
  1747. name: "Belted Kingfisher",
  1748. parents: ["avian"]
  1749. },
  1750. "omnifalcon": {
  1751. name: "Omnifalcon",
  1752. parents: ["gryphon", "falcon", "harpy-eagle"]
  1753. },
  1754. "falcon": {
  1755. name: "Falcon",
  1756. parents: ["avian"]
  1757. },
  1758. "avali": {
  1759. name: "Avali",
  1760. parents: ["avian", "alien"]
  1761. },
  1762. "arctic-fox": {
  1763. name: "Arctic Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "snow-tiger": {
  1767. name: "Snow Tiger",
  1768. parents: ["tiger"]
  1769. },
  1770. "marble-fox": {
  1771. name: "Marble Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "king-wickerbeast": {
  1775. name: "King Wickerbeast",
  1776. parents: ["wickerbeast"]
  1777. },
  1778. "wickerbeast": {
  1779. name: "Wickerbeast",
  1780. parents: ["mammal"]
  1781. },
  1782. "european-polecat": {
  1783. name: "European Polecat",
  1784. parents: ["mustelid"]
  1785. },
  1786. "teshari": {
  1787. name: "Teshari",
  1788. parents: ["avian", "raptor"]
  1789. },
  1790. "alicorn": {
  1791. name: "Alicorn",
  1792. parents: ["horse"]
  1793. },
  1794. "atlas-moth": {
  1795. name: "Atlas Moth",
  1796. parents: ["moth"]
  1797. },
  1798. "owlbear": {
  1799. name: "Owlbear",
  1800. parents: ["owl", "bear", "monster"]
  1801. },
  1802. "owl": {
  1803. name: "Owl",
  1804. parents: ["avian"]
  1805. },
  1806. "silvertongue": {
  1807. name: "Silvertongue",
  1808. parents: ["reptile"]
  1809. },
  1810. "ahuizotl": {
  1811. name: "Ahuizotl",
  1812. parents: ["monster"]
  1813. },
  1814. "ender-dragon": {
  1815. name: "Ender Dragon",
  1816. parents: ["dragon"]
  1817. },
  1818. "bruhathkayosaurus": {
  1819. name: "Bruhathkayosaurus",
  1820. parents: ["sauropod"]
  1821. },
  1822. "sauropod": {
  1823. name: "Sauropod",
  1824. parents: ["dinosaur"]
  1825. },
  1826. "black-sable-antelope": {
  1827. name: "Black Sable Antelope",
  1828. parents: ["antelope"]
  1829. },
  1830. "slime": {
  1831. name: "Slime",
  1832. parents: ["goo"]
  1833. },
  1834. "utahraptor": {
  1835. name: "Utahraptor",
  1836. parents: ["raptor"]
  1837. },
  1838. "indian-giant-squirrel": {
  1839. name: "Indian Giant Squirrel",
  1840. parents: ["squirrel"]
  1841. },
  1842. "golden-retriever": {
  1843. name: "Golden Retriever",
  1844. parents: ["dog"]
  1845. },
  1846. "triceratops": {
  1847. name: "Triceratops",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "drake": {
  1851. name: "Drake",
  1852. parents: ["dragon"]
  1853. },
  1854. "okapi": {
  1855. name: "Okapi",
  1856. parents: ["giraffe"]
  1857. },
  1858. "arctic-hare": {
  1859. name: "Arctic Hare",
  1860. parents: ["hare"]
  1861. },
  1862. "hare": {
  1863. name: "Hare",
  1864. parents: ["leporidae"]
  1865. },
  1866. "leporidae": {
  1867. name: "Leporidae",
  1868. parents: ["mammal"]
  1869. },
  1870. "leopard-gecko": {
  1871. name: "Leopard Gecko",
  1872. parents: ["gecko"]
  1873. },
  1874. "dreamspawn": {
  1875. name: "Dreamspawn",
  1876. parents: ["illusion"]
  1877. },
  1878. "illusion": {
  1879. name: "Illusion",
  1880. parents: []
  1881. },
  1882. "purrloin": {
  1883. name: "Purrloin",
  1884. parents: ["cat", "pokemon"]
  1885. },
  1886. "noivern": {
  1887. name: "Noivern",
  1888. parents: ["bat", "dragon", "pokemon"]
  1889. },
  1890. "hedgehog": {
  1891. name: "Hedgehog",
  1892. parents: ["mammal"]
  1893. },
  1894. "liger": {
  1895. name: "Liger",
  1896. parents: ["lion", "tiger", "hybrid"]
  1897. },
  1898. "hybrid": {
  1899. name: "Hybrid",
  1900. parents: []
  1901. },
  1902. "drider": {
  1903. name: "Drider",
  1904. parents: ["spider"]
  1905. },
  1906. "sabresune": {
  1907. name: "Sabresune",
  1908. parents: ["kitsune", "sabertooth-tiger"]
  1909. },
  1910. "ditto": {
  1911. name: "Ditto",
  1912. parents: ["pokemon", "goo"]
  1913. },
  1914. "amogus": {
  1915. name: "Amogus",
  1916. parents: ["deity"]
  1917. },
  1918. "ferret": {
  1919. name: "Ferret",
  1920. parents: ["mustelid"]
  1921. },
  1922. "guinea-pig": {
  1923. name: "Guinea Pig",
  1924. parents: ["rodent"]
  1925. },
  1926. "viper": {
  1927. name: "Viper",
  1928. parents: ["snake"]
  1929. },
  1930. "cinderace": {
  1931. name: "Cinderace",
  1932. parents: ["pokemon", "rabbit"]
  1933. },
  1934. "caudin": {
  1935. name: "Caudin",
  1936. parents: ["dragon"]
  1937. },
  1938. "red-winged-blackbird": {
  1939. name: "Red-Winged Blackbird",
  1940. parents: ["avian"]
  1941. },
  1942. "hooded-wheater": {
  1943. name: "Hooded Wheater",
  1944. parents: ["passerine"]
  1945. },
  1946. "passerine": {
  1947. name: "Passerine",
  1948. parents: ["avian"]
  1949. },
  1950. "gieeg": {
  1951. name: "Gieeg",
  1952. parents: ["alien"]
  1953. },
  1954. "ringtail": {
  1955. name: "Ringtail",
  1956. parents: ["raccoon"]
  1957. },
  1958. "hisuian-zoroark": {
  1959. name: "Hisuian Zoroark",
  1960. parents: ["zoroark", "hisuian"]
  1961. },
  1962. "hisuian": {
  1963. name: "Hisuian",
  1964. parents: ["regional-pokemon"]
  1965. },
  1966. "regional-pokemon": {
  1967. name: "Regional Pokemon",
  1968. parents: ["pokemon"]
  1969. },
  1970. "cybeast": {
  1971. name: "Cybeast",
  1972. parents: ["computer-virus"]
  1973. },
  1974. "javira-dragon": {
  1975. name: "Javira Dragon",
  1976. parents: ["dragon"]
  1977. },
  1978. "koopew": {
  1979. name: "Koopew",
  1980. parents: ["dragon", "alien"]
  1981. },
  1982. "nevrean": {
  1983. name: "Nevrean",
  1984. parents: ["avian", "vilous"]
  1985. },
  1986. "vilous": {
  1987. name: "Vilous Species",
  1988. parents: []
  1989. },
  1990. "titanoboa": {
  1991. name: "Titanoboa",
  1992. parents: ["snake"]
  1993. },
  1994. }
  1995. //species
  1996. function getSpeciesInfo(speciesList) {
  1997. let result = new Set();
  1998. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1999. result.add(entry)
  2000. });
  2001. return Array.from(result);
  2002. };
  2003. function getSpeciesInfoHelper(species) {
  2004. if (!speciesData[species]) {
  2005. console.warn(species + " doesn't exist");
  2006. return [];
  2007. }
  2008. if (speciesData[species].parents) {
  2009. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2010. } else {
  2011. return [species];
  2012. }
  2013. }
  2014. characterMakers.push(() => makeCharacter(
  2015. {
  2016. name: "Fen",
  2017. species: ["crux"],
  2018. description: {
  2019. title: "Bio",
  2020. text: "Very furry. Sheds on everything."
  2021. },
  2022. tags: [
  2023. "anthro",
  2024. "goo"
  2025. ]
  2026. },
  2027. {
  2028. front: {
  2029. height: math.unit(12, "feet"),
  2030. weight: math.unit(2400, "lb"),
  2031. name: "Front",
  2032. image: {
  2033. source: "./media/characters/fen/front.svg",
  2034. extra: 1804/1562,
  2035. bottom: 205/2009
  2036. }
  2037. },
  2038. diving: {
  2039. height: math.unit(4.9, "meters"),
  2040. weight: math.unit(2400, "lb"),
  2041. name: "Diving",
  2042. image: {
  2043. source: "./media/characters/fen/diving.svg"
  2044. }
  2045. },
  2046. goo: {
  2047. height: math.unit(12, "feet"),
  2048. weight: math.unit(3600, "lb"),
  2049. volume: math.unit(1000, "liters"),
  2050. capacity: math.unit(6, "people"),
  2051. name: "Goo",
  2052. image: {
  2053. source: "./media/characters/fen/goo.svg",
  2054. extra: 1307/1071,
  2055. bottom: 134/1441
  2056. }
  2057. },
  2058. maw: {
  2059. height: math.unit(5.03, "feet"),
  2060. name: "Maw",
  2061. image: {
  2062. source: "./media/characters/fen/maw.svg"
  2063. }
  2064. },
  2065. gooCeiling: {
  2066. height: math.unit(6.6, "feet"),
  2067. weight: math.unit(3000, "lb"),
  2068. volume: math.unit(1000, "liters"),
  2069. capacity: math.unit(6, "people"),
  2070. name: "Goo (Ceiling)",
  2071. image: {
  2072. source: "./media/characters/fen/goo-ceiling.svg"
  2073. }
  2074. },
  2075. back: {
  2076. height: math.unit(12, "feet"),
  2077. weight: math.unit(2400, "lb"),
  2078. name: "Back",
  2079. image: {
  2080. source: "./media/characters/fen/back.svg",
  2081. },
  2082. info: {
  2083. description: {
  2084. mode: "append",
  2085. text: "\n\nHe is not currently looking at you."
  2086. }
  2087. }
  2088. },
  2089. full: {
  2090. height: math.unit(1.85, "meter"),
  2091. weight: math.unit(3200, "lb"),
  2092. name: "Full",
  2093. image: {
  2094. source: "./media/characters/fen/full.svg",
  2095. extra: 1133/859,
  2096. bottom: 145/1278
  2097. },
  2098. info: {
  2099. description: {
  2100. mode: "append",
  2101. text: "\n\nMunch."
  2102. }
  2103. }
  2104. },
  2105. gooLounging: {
  2106. height: math.unit(4.53, "feet"),
  2107. weight: math.unit(3000, "lb"),
  2108. capacity: math.unit(6, "people"),
  2109. name: "Goo (Lounging)",
  2110. image: {
  2111. source: "./media/characters/fen/goo-lounging.svg",
  2112. bottom: 116 / 613
  2113. }
  2114. },
  2115. lounging: {
  2116. height: math.unit(10.52, "feet"),
  2117. weight: math.unit(2400, "lb"),
  2118. name: "Lounging",
  2119. image: {
  2120. source: "./media/characters/fen/lounging.svg"
  2121. }
  2122. },
  2123. },
  2124. [
  2125. {
  2126. name: "Small",
  2127. height: math.unit(2.2428, "meter")
  2128. },
  2129. {
  2130. name: "Normal",
  2131. height: math.unit(12, "feet"),
  2132. default: true,
  2133. },
  2134. {
  2135. name: "Big",
  2136. height: math.unit(20, "feet")
  2137. },
  2138. {
  2139. name: "Minimacro",
  2140. height: math.unit(40, "feet"),
  2141. info: {
  2142. description: {
  2143. mode: "append",
  2144. text: "\n\nTOO DAMN BIG"
  2145. }
  2146. }
  2147. },
  2148. {
  2149. name: "Macro",
  2150. height: math.unit(100, "feet"),
  2151. info: {
  2152. description: {
  2153. mode: "append",
  2154. text: "\n\nTOO DAMN BIG"
  2155. }
  2156. }
  2157. },
  2158. {
  2159. name: "Megamacro",
  2160. height: math.unit(2, "miles")
  2161. },
  2162. {
  2163. name: "Gigamacro",
  2164. height: math.unit(10, "earths")
  2165. },
  2166. ]
  2167. ))
  2168. characterMakers.push(() => makeCharacter(
  2169. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2170. {
  2171. front: {
  2172. height: math.unit(183, "cm"),
  2173. weight: math.unit(80, "kg"),
  2174. name: "Front",
  2175. image: {
  2176. source: "./media/characters/sofia-fluttertail/front.svg",
  2177. bottom: 0.01,
  2178. extra: 2154 / 2081
  2179. }
  2180. },
  2181. frontAlt: {
  2182. height: math.unit(183, "cm"),
  2183. weight: math.unit(80, "kg"),
  2184. name: "Front (alt)",
  2185. image: {
  2186. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2187. }
  2188. },
  2189. back: {
  2190. height: math.unit(183, "cm"),
  2191. weight: math.unit(80, "kg"),
  2192. name: "Back",
  2193. image: {
  2194. source: "./media/characters/sofia-fluttertail/back.svg"
  2195. }
  2196. },
  2197. kneeling: {
  2198. height: math.unit(125, "cm"),
  2199. weight: math.unit(80, "kg"),
  2200. name: "Kneeling",
  2201. image: {
  2202. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2203. extra: 1033 / 977,
  2204. bottom: 23.7 / 1057
  2205. }
  2206. },
  2207. maw: {
  2208. height: math.unit(183 / 5, "cm"),
  2209. name: "Maw",
  2210. image: {
  2211. source: "./media/characters/sofia-fluttertail/maw.svg"
  2212. }
  2213. },
  2214. mawcloseup: {
  2215. height: math.unit(183 / 5 * 0.41, "cm"),
  2216. name: "Maw (Closeup)",
  2217. image: {
  2218. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2219. }
  2220. },
  2221. paws: {
  2222. height: math.unit(1.17, "feet"),
  2223. name: "Paws",
  2224. image: {
  2225. source: "./media/characters/sofia-fluttertail/paws.svg",
  2226. extra: 851 / 851,
  2227. bottom: 17 / 868
  2228. }
  2229. },
  2230. },
  2231. [
  2232. {
  2233. name: "Normal",
  2234. height: math.unit(1.83, "meter")
  2235. },
  2236. {
  2237. name: "Size Thief",
  2238. height: math.unit(18, "feet")
  2239. },
  2240. {
  2241. name: "50 Foot Collie",
  2242. height: math.unit(50, "feet")
  2243. },
  2244. {
  2245. name: "Macro",
  2246. height: math.unit(96, "feet"),
  2247. default: true
  2248. },
  2249. {
  2250. name: "Megamerger",
  2251. height: math.unit(650, "feet")
  2252. },
  2253. ]
  2254. ))
  2255. characterMakers.push(() => makeCharacter(
  2256. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2257. {
  2258. front: {
  2259. height: math.unit(7, "feet"),
  2260. weight: math.unit(100, "kg"),
  2261. name: "Front",
  2262. image: {
  2263. source: "./media/characters/march/front.svg",
  2264. extra: 1992/1851,
  2265. bottom: 39/2031
  2266. }
  2267. },
  2268. foot: {
  2269. height: math.unit(0.9, "feet"),
  2270. name: "Foot",
  2271. image: {
  2272. source: "./media/characters/march/foot.svg"
  2273. }
  2274. },
  2275. },
  2276. [
  2277. {
  2278. name: "Normal",
  2279. height: math.unit(7.9, "feet")
  2280. },
  2281. {
  2282. name: "Macro",
  2283. height: math.unit(220, "meters")
  2284. },
  2285. {
  2286. name: "Megamacro",
  2287. height: math.unit(2.98, "km"),
  2288. default: true
  2289. },
  2290. {
  2291. name: "Gigamacro",
  2292. height: math.unit(15963, "km")
  2293. },
  2294. {
  2295. name: "Teramacro",
  2296. height: math.unit(2980000000, "km")
  2297. },
  2298. {
  2299. name: "Examacro",
  2300. height: math.unit(250, "parsecs")
  2301. },
  2302. ]
  2303. ))
  2304. characterMakers.push(() => makeCharacter(
  2305. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2306. {
  2307. front: {
  2308. height: math.unit(6, "feet"),
  2309. weight: math.unit(60, "kg"),
  2310. name: "Front",
  2311. image: {
  2312. source: "./media/characters/noir/front.svg",
  2313. extra: 1,
  2314. bottom: 0.032
  2315. }
  2316. },
  2317. },
  2318. [
  2319. {
  2320. name: "Normal",
  2321. height: math.unit(6.6, "feet")
  2322. },
  2323. {
  2324. name: "Macro",
  2325. height: math.unit(500, "feet")
  2326. },
  2327. {
  2328. name: "Megamacro",
  2329. height: math.unit(2.5, "km"),
  2330. default: true
  2331. },
  2332. {
  2333. name: "Gigamacro",
  2334. height: math.unit(22500, "km")
  2335. },
  2336. {
  2337. name: "Teramacro",
  2338. height: math.unit(2500000000, "km")
  2339. },
  2340. {
  2341. name: "Examacro",
  2342. height: math.unit(200, "parsecs")
  2343. },
  2344. ]
  2345. ))
  2346. characterMakers.push(() => makeCharacter(
  2347. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2348. {
  2349. front: {
  2350. height: math.unit(7, "feet"),
  2351. weight: math.unit(100, "kg"),
  2352. name: "Front",
  2353. image: {
  2354. source: "./media/characters/okuri/front.svg",
  2355. extra: 739/665,
  2356. bottom: 39/778
  2357. }
  2358. },
  2359. back: {
  2360. height: math.unit(7, "feet"),
  2361. weight: math.unit(100, "kg"),
  2362. name: "Back",
  2363. image: {
  2364. source: "./media/characters/okuri/back.svg",
  2365. extra: 734/653,
  2366. bottom: 13/747
  2367. }
  2368. },
  2369. sitting: {
  2370. height: math.unit(2.95, "feet"),
  2371. weight: math.unit(100, "kg"),
  2372. name: "Sitting",
  2373. image: {
  2374. source: "./media/characters/okuri/sitting.svg",
  2375. extra: 370/318,
  2376. bottom: 99/469
  2377. }
  2378. },
  2379. },
  2380. [
  2381. {
  2382. name: "Smallest",
  2383. height: math.unit(5 + 2/12, "feet")
  2384. },
  2385. {
  2386. name: "Smaller",
  2387. height: math.unit(300, "feet")
  2388. },
  2389. {
  2390. name: "Small",
  2391. height: math.unit(1000, "feet")
  2392. },
  2393. {
  2394. name: "Macro",
  2395. height: math.unit(1, "mile")
  2396. },
  2397. {
  2398. name: "Mega Macro (Small)",
  2399. height: math.unit(20, "km")
  2400. },
  2401. {
  2402. name: "Mega Macro (Large)",
  2403. height: math.unit(600, "km")
  2404. },
  2405. {
  2406. name: "Giga Macro",
  2407. height: math.unit(10000, "km")
  2408. },
  2409. {
  2410. name: "Normal",
  2411. height: math.unit(577560, "km"),
  2412. default: true
  2413. },
  2414. {
  2415. name: "Large",
  2416. height: math.unit(4, "galaxies")
  2417. },
  2418. {
  2419. name: "Largest",
  2420. height: math.unit(15, "multiverses")
  2421. },
  2422. ]
  2423. ))
  2424. characterMakers.push(() => makeCharacter(
  2425. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2426. {
  2427. front: {
  2428. height: math.unit(7, "feet"),
  2429. weight: math.unit(100, "kg"),
  2430. name: "Front",
  2431. image: {
  2432. source: "./media/characters/manny/front.svg",
  2433. extra: 1,
  2434. bottom: 0.06
  2435. }
  2436. },
  2437. back: {
  2438. height: math.unit(7, "feet"),
  2439. weight: math.unit(100, "kg"),
  2440. name: "Back",
  2441. image: {
  2442. source: "./media/characters/manny/back.svg",
  2443. extra: 1,
  2444. bottom: 0.014
  2445. }
  2446. },
  2447. },
  2448. [
  2449. {
  2450. name: "Normal",
  2451. height: math.unit(7, "feet"),
  2452. },
  2453. {
  2454. name: "Macro",
  2455. height: math.unit(78, "feet"),
  2456. default: true
  2457. },
  2458. {
  2459. name: "Macro+",
  2460. height: math.unit(300, "meters")
  2461. },
  2462. {
  2463. name: "Macro++",
  2464. height: math.unit(2400, "meters")
  2465. },
  2466. {
  2467. name: "Megamacro",
  2468. height: math.unit(5167, "meters")
  2469. },
  2470. {
  2471. name: "Gigamacro",
  2472. height: math.unit(41769, "miles")
  2473. },
  2474. ]
  2475. ))
  2476. characterMakers.push(() => makeCharacter(
  2477. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2478. {
  2479. front: {
  2480. height: math.unit(7, "feet"),
  2481. weight: math.unit(100, "kg"),
  2482. name: "Front",
  2483. image: {
  2484. source: "./media/characters/adake/front-1.svg"
  2485. }
  2486. },
  2487. frontAlt: {
  2488. height: math.unit(7, "feet"),
  2489. weight: math.unit(100, "kg"),
  2490. name: "Front (Alt)",
  2491. image: {
  2492. source: "./media/characters/adake/front-2.svg",
  2493. extra: 1,
  2494. bottom: 0.01
  2495. }
  2496. },
  2497. back: {
  2498. height: math.unit(7, "feet"),
  2499. weight: math.unit(100, "kg"),
  2500. name: "Back",
  2501. image: {
  2502. source: "./media/characters/adake/back.svg",
  2503. }
  2504. },
  2505. kneel: {
  2506. height: math.unit(5.385, "feet"),
  2507. weight: math.unit(100, "kg"),
  2508. name: "Kneeling",
  2509. image: {
  2510. source: "./media/characters/adake/kneel.svg",
  2511. bottom: 0.052
  2512. }
  2513. },
  2514. },
  2515. [
  2516. {
  2517. name: "Normal",
  2518. height: math.unit(7, "feet"),
  2519. },
  2520. {
  2521. name: "Macro",
  2522. height: math.unit(78, "feet"),
  2523. default: true
  2524. },
  2525. {
  2526. name: "Macro+",
  2527. height: math.unit(300, "meters")
  2528. },
  2529. {
  2530. name: "Macro++",
  2531. height: math.unit(2400, "meters")
  2532. },
  2533. {
  2534. name: "Megamacro",
  2535. height: math.unit(5167, "meters")
  2536. },
  2537. {
  2538. name: "Gigamacro",
  2539. height: math.unit(41769, "miles")
  2540. },
  2541. ]
  2542. ))
  2543. characterMakers.push(() => makeCharacter(
  2544. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2545. {
  2546. front: {
  2547. height: math.unit(1.65, "meters"),
  2548. weight: math.unit(50, "kg"),
  2549. name: "Front",
  2550. image: {
  2551. source: "./media/characters/elijah/front.svg",
  2552. extra: 858 / 830,
  2553. bottom: 95.5 / 953.8559
  2554. }
  2555. },
  2556. back: {
  2557. height: math.unit(1.65, "meters"),
  2558. weight: math.unit(50, "kg"),
  2559. name: "Back",
  2560. image: {
  2561. source: "./media/characters/elijah/back.svg",
  2562. extra: 895 / 850,
  2563. bottom: 5.3 / 897.956
  2564. }
  2565. },
  2566. frontNsfw: {
  2567. height: math.unit(1.65, "meters"),
  2568. weight: math.unit(50, "kg"),
  2569. name: "Front (NSFW)",
  2570. image: {
  2571. source: "./media/characters/elijah/front-nsfw.svg",
  2572. extra: 858 / 830,
  2573. bottom: 95.5 / 953.8559
  2574. }
  2575. },
  2576. backNsfw: {
  2577. height: math.unit(1.65, "meters"),
  2578. weight: math.unit(50, "kg"),
  2579. name: "Back (NSFW)",
  2580. image: {
  2581. source: "./media/characters/elijah/back-nsfw.svg",
  2582. extra: 895 / 850,
  2583. bottom: 5.3 / 897.956
  2584. }
  2585. },
  2586. dick: {
  2587. height: math.unit(1, "feet"),
  2588. name: "Dick",
  2589. image: {
  2590. source: "./media/characters/elijah/dick.svg"
  2591. }
  2592. },
  2593. beakOpen: {
  2594. height: math.unit(1.25, "feet"),
  2595. name: "Beak (Open)",
  2596. image: {
  2597. source: "./media/characters/elijah/beak-open.svg"
  2598. }
  2599. },
  2600. beakShut: {
  2601. height: math.unit(1.25, "feet"),
  2602. name: "Beak (Shut)",
  2603. image: {
  2604. source: "./media/characters/elijah/beak-shut.svg"
  2605. }
  2606. },
  2607. footFlexing: {
  2608. height: math.unit(1.61, "feet"),
  2609. name: "Foot (Flexing)",
  2610. image: {
  2611. source: "./media/characters/elijah/foot-flexing.svg"
  2612. }
  2613. },
  2614. footStepping: {
  2615. height: math.unit(1.44, "feet"),
  2616. name: "Foot (Stepping)",
  2617. image: {
  2618. source: "./media/characters/elijah/foot-stepping.svg"
  2619. }
  2620. },
  2621. plantigradeLeg: {
  2622. height: math.unit(2.34, "feet"),
  2623. name: "Plantigrade Leg",
  2624. image: {
  2625. source: "./media/characters/elijah/plantigrade-leg.svg"
  2626. }
  2627. },
  2628. plantigradeFootLeft: {
  2629. height: math.unit(0.9, "feet"),
  2630. name: "Plantigrade Foot (Left)",
  2631. image: {
  2632. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2633. }
  2634. },
  2635. plantigradeFootRight: {
  2636. height: math.unit(0.9, "feet"),
  2637. name: "Plantigrade Foot (Right)",
  2638. image: {
  2639. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2640. }
  2641. },
  2642. },
  2643. [
  2644. {
  2645. name: "Normal",
  2646. height: math.unit(1.65, "meters")
  2647. },
  2648. {
  2649. name: "Macro",
  2650. height: math.unit(55, "meters"),
  2651. default: true
  2652. },
  2653. {
  2654. name: "Macro+",
  2655. height: math.unit(105, "meters")
  2656. },
  2657. ]
  2658. ))
  2659. characterMakers.push(() => makeCharacter(
  2660. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2661. {
  2662. front: {
  2663. height: math.unit(7 + 2/12, "feet"),
  2664. weight: math.unit(320, "kg"),
  2665. name: "Front",
  2666. image: {
  2667. source: "./media/characters/rai/front.svg",
  2668. extra: 1802/1696,
  2669. bottom: 68/1870
  2670. }
  2671. },
  2672. frontDressed: {
  2673. height: math.unit(7 + 2/12, "feet"),
  2674. weight: math.unit(320, "kg"),
  2675. name: "Front (Dressed)",
  2676. image: {
  2677. source: "./media/characters/rai/front-dressed.svg",
  2678. extra: 1802/1696,
  2679. bottom: 68/1870
  2680. }
  2681. },
  2682. side: {
  2683. height: math.unit(7 + 2/12, "feet"),
  2684. weight: math.unit(320, "kg"),
  2685. name: "Side",
  2686. image: {
  2687. source: "./media/characters/rai/side.svg",
  2688. extra: 1789/1710,
  2689. bottom: 115/1904
  2690. }
  2691. },
  2692. back: {
  2693. height: math.unit(7 + 2/12, "feet"),
  2694. weight: math.unit(320, "kg"),
  2695. name: "Back",
  2696. image: {
  2697. source: "./media/characters/rai/back.svg",
  2698. extra: 1770/1707,
  2699. bottom: 28/1798
  2700. }
  2701. },
  2702. feral: {
  2703. height: math.unit(9.5, "feet"),
  2704. weight: math.unit(640, "kg"),
  2705. name: "Feral",
  2706. image: {
  2707. source: "./media/characters/rai/feral.svg",
  2708. extra: 945/553,
  2709. bottom: 176/1121
  2710. }
  2711. },
  2712. dragon: {
  2713. height: math.unit(23, "feet"),
  2714. weight: math.unit(50000, "lb"),
  2715. name: "Dragon",
  2716. image: {
  2717. source: "./media/characters/rai/dragon.svg",
  2718. extra: 2498 / 2030,
  2719. bottom: 85.2 / 2584
  2720. }
  2721. },
  2722. maw: {
  2723. height: math.unit(1.69, "feet"),
  2724. name: "Maw",
  2725. image: {
  2726. source: "./media/characters/rai/maw.svg"
  2727. }
  2728. },
  2729. },
  2730. [
  2731. {
  2732. name: "Normal",
  2733. height: math.unit(7 + 2/12, "feet")
  2734. },
  2735. {
  2736. name: "Big",
  2737. height: math.unit(11, "feet")
  2738. },
  2739. {
  2740. name: "Macro",
  2741. height: math.unit(302, "feet"),
  2742. default: true
  2743. },
  2744. ]
  2745. ))
  2746. characterMakers.push(() => makeCharacter(
  2747. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2748. {
  2749. frontDressed: {
  2750. height: math.unit(216, "feet"),
  2751. weight: math.unit(7000000, "lb"),
  2752. name: "Front (Dressed)",
  2753. image: {
  2754. source: "./media/characters/jazzy/front-dressed.svg",
  2755. extra: 2738 / 2651,
  2756. bottom: 41.8 / 2786
  2757. }
  2758. },
  2759. backDressed: {
  2760. height: math.unit(216, "feet"),
  2761. weight: math.unit(7000000, "lb"),
  2762. name: "Back (Dressed)",
  2763. image: {
  2764. source: "./media/characters/jazzy/back-dressed.svg",
  2765. extra: 2775 / 2673,
  2766. bottom: 36.8 / 2817
  2767. }
  2768. },
  2769. front: {
  2770. height: math.unit(216, "feet"),
  2771. weight: math.unit(7000000, "lb"),
  2772. name: "Front",
  2773. image: {
  2774. source: "./media/characters/jazzy/front.svg",
  2775. extra: 2738 / 2651,
  2776. bottom: 41.8 / 2786
  2777. }
  2778. },
  2779. back: {
  2780. height: math.unit(216, "feet"),
  2781. weight: math.unit(7000000, "lb"),
  2782. name: "Back",
  2783. image: {
  2784. source: "./media/characters/jazzy/back.svg",
  2785. extra: 2775 / 2673,
  2786. bottom: 36.8 / 2817
  2787. }
  2788. },
  2789. maw: {
  2790. height: math.unit(20, "feet"),
  2791. name: "Maw",
  2792. image: {
  2793. source: "./media/characters/jazzy/maw.svg"
  2794. }
  2795. },
  2796. paws: {
  2797. height: math.unit(27.5, "feet"),
  2798. name: "Paws",
  2799. image: {
  2800. source: "./media/characters/jazzy/paws.svg"
  2801. }
  2802. },
  2803. eye: {
  2804. height: math.unit(4.4, "feet"),
  2805. name: "Eye",
  2806. image: {
  2807. source: "./media/characters/jazzy/eye.svg"
  2808. }
  2809. },
  2810. droneOffense: {
  2811. height: math.unit(9.5, "inches"),
  2812. name: "Drone (Offense)",
  2813. image: {
  2814. source: "./media/characters/jazzy/drone-offense.svg"
  2815. }
  2816. },
  2817. droneRecon: {
  2818. height: math.unit(9.5, "inches"),
  2819. name: "Drone (Recon)",
  2820. image: {
  2821. source: "./media/characters/jazzy/drone-recon.svg"
  2822. }
  2823. },
  2824. droneDefense: {
  2825. height: math.unit(9.5, "inches"),
  2826. name: "Drone (Defense)",
  2827. image: {
  2828. source: "./media/characters/jazzy/drone-defense.svg"
  2829. }
  2830. },
  2831. },
  2832. [
  2833. {
  2834. name: "Macro",
  2835. height: math.unit(216, "feet"),
  2836. default: true
  2837. },
  2838. ]
  2839. ))
  2840. characterMakers.push(() => makeCharacter(
  2841. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2842. {
  2843. front: {
  2844. height: math.unit(9 + 6/12, "feet"),
  2845. weight: math.unit(700, "lb"),
  2846. name: "Front",
  2847. image: {
  2848. source: "./media/characters/flamm/front.svg",
  2849. extra: 1751/1632,
  2850. bottom: 46/1797
  2851. }
  2852. },
  2853. buff: {
  2854. height: math.unit(9 + 6/12, "feet"),
  2855. weight: math.unit(950, "lb"),
  2856. name: "Buff",
  2857. image: {
  2858. source: "./media/characters/flamm/buff.svg",
  2859. extra: 3018/2874,
  2860. bottom: 221/3239
  2861. }
  2862. },
  2863. },
  2864. [
  2865. {
  2866. name: "Normal",
  2867. height: math.unit(9.5, "feet")
  2868. },
  2869. {
  2870. name: "Macro",
  2871. height: math.unit(200, "feet"),
  2872. default: true
  2873. },
  2874. ]
  2875. ))
  2876. characterMakers.push(() => makeCharacter(
  2877. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2878. {
  2879. front: {
  2880. height: math.unit(5 + 3/12, "feet"),
  2881. weight: math.unit(60, "kg"),
  2882. name: "Front",
  2883. image: {
  2884. source: "./media/characters/zephiro/front.svg",
  2885. extra: 2309 / 2162,
  2886. bottom: 0.069
  2887. }
  2888. },
  2889. side: {
  2890. height: math.unit(5 + 3/12, "feet"),
  2891. weight: math.unit(60, "kg"),
  2892. name: "Side",
  2893. image: {
  2894. source: "./media/characters/zephiro/side.svg",
  2895. extra: 2403 / 2279,
  2896. bottom: 0.015
  2897. }
  2898. },
  2899. back: {
  2900. height: math.unit(5 + 3/12, "feet"),
  2901. weight: math.unit(60, "kg"),
  2902. name: "Back",
  2903. image: {
  2904. source: "./media/characters/zephiro/back.svg",
  2905. extra: 2373 / 2244,
  2906. bottom: 0.013
  2907. }
  2908. },
  2909. hand: {
  2910. height: math.unit(0.68, "feet"),
  2911. name: "Hand",
  2912. image: {
  2913. source: "./media/characters/zephiro/hand.svg"
  2914. }
  2915. },
  2916. paw: {
  2917. height: math.unit(1, "feet"),
  2918. name: "Paw",
  2919. image: {
  2920. source: "./media/characters/zephiro/paw.svg"
  2921. }
  2922. },
  2923. beans: {
  2924. height: math.unit(0.93, "feet"),
  2925. name: "Beans",
  2926. image: {
  2927. source: "./media/characters/zephiro/beans.svg"
  2928. }
  2929. },
  2930. },
  2931. [
  2932. {
  2933. name: "Micro",
  2934. height: math.unit(3, "inches")
  2935. },
  2936. {
  2937. name: "Normal",
  2938. height: math.unit(5 + 3 / 12, "feet"),
  2939. default: true
  2940. },
  2941. {
  2942. name: "Macro",
  2943. height: math.unit(118, "feet")
  2944. },
  2945. ]
  2946. ))
  2947. characterMakers.push(() => makeCharacter(
  2948. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2949. {
  2950. front: {
  2951. height: math.unit(5, "feet"),
  2952. weight: math.unit(90, "kg"),
  2953. name: "Front",
  2954. image: {
  2955. source: "./media/characters/fory/front.svg",
  2956. extra: 2862 / 2674,
  2957. bottom: 180 / 3043.8
  2958. }
  2959. },
  2960. back: {
  2961. height: math.unit(5, "feet"),
  2962. weight: math.unit(90, "kg"),
  2963. name: "Back",
  2964. image: {
  2965. source: "./media/characters/fory/back.svg",
  2966. extra: 2962 / 2791,
  2967. bottom: 106 / 3071.8
  2968. }
  2969. },
  2970. foot: {
  2971. height: math.unit(2.14, "feet"),
  2972. name: "Foot",
  2973. image: {
  2974. source: "./media/characters/fory/foot.svg"
  2975. }
  2976. },
  2977. },
  2978. [
  2979. {
  2980. name: "Normal",
  2981. height: math.unit(5, "feet")
  2982. },
  2983. {
  2984. name: "Macro",
  2985. height: math.unit(50, "feet"),
  2986. default: true
  2987. },
  2988. {
  2989. name: "Megamacro",
  2990. height: math.unit(10, "miles")
  2991. },
  2992. {
  2993. name: "Gigamacro",
  2994. height: math.unit(5, "earths")
  2995. },
  2996. ]
  2997. ))
  2998. characterMakers.push(() => makeCharacter(
  2999. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3000. {
  3001. front: {
  3002. height: math.unit(7, "feet"),
  3003. weight: math.unit(90, "kg"),
  3004. name: "Front",
  3005. image: {
  3006. source: "./media/characters/kurrikage/front.svg",
  3007. extra: 1845/1733,
  3008. bottom: 119/1964
  3009. }
  3010. },
  3011. back: {
  3012. height: math.unit(7, "feet"),
  3013. weight: math.unit(90, "kg"),
  3014. name: "Back",
  3015. image: {
  3016. source: "./media/characters/kurrikage/back.svg",
  3017. extra: 1790/1677,
  3018. bottom: 61/1851
  3019. }
  3020. },
  3021. dressed: {
  3022. height: math.unit(7, "feet"),
  3023. weight: math.unit(90, "kg"),
  3024. name: "Dressed",
  3025. image: {
  3026. source: "./media/characters/kurrikage/dressed.svg",
  3027. extra: 1845/1733,
  3028. bottom: 119/1964
  3029. }
  3030. },
  3031. foot: {
  3032. height: math.unit(1.5, "feet"),
  3033. name: "Foot",
  3034. image: {
  3035. source: "./media/characters/kurrikage/foot.svg"
  3036. }
  3037. },
  3038. staff: {
  3039. height: math.unit(6.7, "feet"),
  3040. name: "Staff",
  3041. image: {
  3042. source: "./media/characters/kurrikage/staff.svg"
  3043. }
  3044. },
  3045. peek: {
  3046. height: math.unit(1.05, "feet"),
  3047. name: "Peeking",
  3048. image: {
  3049. source: "./media/characters/kurrikage/peek.svg",
  3050. bottom: 0.08
  3051. }
  3052. },
  3053. },
  3054. [
  3055. {
  3056. name: "Normal",
  3057. height: math.unit(12, "feet"),
  3058. default: true
  3059. },
  3060. {
  3061. name: "Big",
  3062. height: math.unit(20, "feet")
  3063. },
  3064. {
  3065. name: "Macro",
  3066. height: math.unit(500, "feet")
  3067. },
  3068. {
  3069. name: "Megamacro",
  3070. height: math.unit(20, "miles")
  3071. },
  3072. ]
  3073. ))
  3074. characterMakers.push(() => makeCharacter(
  3075. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3076. {
  3077. front: {
  3078. height: math.unit(6, "feet"),
  3079. weight: math.unit(75, "kg"),
  3080. name: "Front",
  3081. image: {
  3082. source: "./media/characters/shingo/front.svg",
  3083. extra: 1900/1825,
  3084. bottom: 82/1982
  3085. }
  3086. },
  3087. side: {
  3088. height: math.unit(6, "feet"),
  3089. weight: math.unit(75, "kg"),
  3090. name: "Side",
  3091. image: {
  3092. source: "./media/characters/shingo/side.svg",
  3093. extra: 1930/1865,
  3094. bottom: 16/1946
  3095. }
  3096. },
  3097. back: {
  3098. height: math.unit(6, "feet"),
  3099. weight: math.unit(75, "kg"),
  3100. name: "Back",
  3101. image: {
  3102. source: "./media/characters/shingo/back.svg",
  3103. extra: 1922/1852,
  3104. bottom: 16/1938
  3105. }
  3106. },
  3107. frontDressed: {
  3108. height: math.unit(6, "feet"),
  3109. weight: math.unit(150, "lb"),
  3110. name: "Front-dressed",
  3111. image: {
  3112. source: "./media/characters/shingo/front-dressed.svg",
  3113. extra: 1900/1825,
  3114. bottom: 82/1982
  3115. }
  3116. },
  3117. paw: {
  3118. height: math.unit(1.29, "feet"),
  3119. name: "Paw",
  3120. image: {
  3121. source: "./media/characters/shingo/paw.svg"
  3122. }
  3123. },
  3124. hand: {
  3125. height: math.unit(1.07, "feet"),
  3126. name: "Hand",
  3127. image: {
  3128. source: "./media/characters/shingo/hand.svg"
  3129. }
  3130. },
  3131. frontAlt: {
  3132. height: math.unit(6, "feet"),
  3133. weight: math.unit(75, "kg"),
  3134. name: "Front (Alt)",
  3135. image: {
  3136. source: "./media/characters/shingo/front-alt.svg",
  3137. extra: 3511 / 3338,
  3138. bottom: 0.005
  3139. }
  3140. },
  3141. frontAlt2: {
  3142. height: math.unit(6, "feet"),
  3143. weight: math.unit(75, "kg"),
  3144. name: "Front (Alt 2)",
  3145. image: {
  3146. source: "./media/characters/shingo/front-alt-2.svg",
  3147. extra: 706/681,
  3148. bottom: 11/717
  3149. }
  3150. },
  3151. pawAlt: {
  3152. height: math.unit(1, "feet"),
  3153. name: "Paw (Alt)",
  3154. image: {
  3155. source: "./media/characters/shingo/paw-alt.svg"
  3156. }
  3157. },
  3158. },
  3159. [
  3160. {
  3161. name: "Micro",
  3162. height: math.unit(4, "inches")
  3163. },
  3164. {
  3165. name: "Normal",
  3166. height: math.unit(6, "feet"),
  3167. default: true
  3168. },
  3169. {
  3170. name: "Macro",
  3171. height: math.unit(108, "feet")
  3172. },
  3173. {
  3174. name: "Macro+",
  3175. height: math.unit(1500, "feet")
  3176. },
  3177. ]
  3178. ))
  3179. characterMakers.push(() => makeCharacter(
  3180. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3181. {
  3182. side: {
  3183. height: math.unit(6, "feet"),
  3184. weight: math.unit(75, "kg"),
  3185. name: "Side",
  3186. image: {
  3187. source: "./media/characters/aigey/side.svg"
  3188. }
  3189. },
  3190. },
  3191. [
  3192. {
  3193. name: "Macro",
  3194. height: math.unit(200, "feet"),
  3195. default: true
  3196. },
  3197. {
  3198. name: "Megamacro",
  3199. height: math.unit(100, "miles")
  3200. },
  3201. ]
  3202. )
  3203. )
  3204. characterMakers.push(() => makeCharacter(
  3205. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3206. {
  3207. front: {
  3208. height: math.unit(5 + 5 / 12, "feet"),
  3209. weight: math.unit(75, "kg"),
  3210. name: "Front",
  3211. image: {
  3212. source: "./media/characters/natasha/front.svg",
  3213. extra: 859 / 824,
  3214. bottom: 23 / 879.6
  3215. }
  3216. },
  3217. frontNsfw: {
  3218. height: math.unit(5 + 5 / 12, "feet"),
  3219. weight: math.unit(75, "kg"),
  3220. name: "Front (NSFW)",
  3221. image: {
  3222. source: "./media/characters/natasha/front-nsfw.svg",
  3223. extra: 859 / 824,
  3224. bottom: 23 / 879.6
  3225. }
  3226. },
  3227. frontErect: {
  3228. height: math.unit(5 + 5 / 12, "feet"),
  3229. weight: math.unit(75, "kg"),
  3230. name: "Front (Erect)",
  3231. image: {
  3232. source: "./media/characters/natasha/front-erect.svg",
  3233. extra: 859 / 824,
  3234. bottom: 23 / 879.6
  3235. }
  3236. },
  3237. back: {
  3238. height: math.unit(5 + 5 / 12, "feet"),
  3239. weight: math.unit(75, "kg"),
  3240. name: "Back",
  3241. image: {
  3242. source: "./media/characters/natasha/back.svg",
  3243. extra: 887.9 / 852.6,
  3244. bottom: 9.7 / 896.4
  3245. }
  3246. },
  3247. backAlt: {
  3248. height: math.unit(5 + 5 / 12, "feet"),
  3249. weight: math.unit(75, "kg"),
  3250. name: "Back (Alt)",
  3251. image: {
  3252. source: "./media/characters/natasha/back-alt.svg",
  3253. extra: 1236.7 / 1192,
  3254. bottom: 22.3 / 1258.2
  3255. }
  3256. },
  3257. dick: {
  3258. height: math.unit(1.772, "feet"),
  3259. name: "Dick",
  3260. image: {
  3261. source: "./media/characters/natasha/dick.svg"
  3262. }
  3263. },
  3264. paw: {
  3265. height: math.unit(0.250, "meters"),
  3266. name: "Paw",
  3267. image: {
  3268. source: "./media/characters/natasha/paw.svg"
  3269. }
  3270. },
  3271. },
  3272. [
  3273. {
  3274. name: "Normal",
  3275. height: math.unit(5 + 5 / 12, "feet")
  3276. },
  3277. {
  3278. name: "Large",
  3279. height: math.unit(12, "feet")
  3280. },
  3281. {
  3282. name: "Macro",
  3283. height: math.unit(100, "feet"),
  3284. default: true
  3285. },
  3286. {
  3287. name: "Macro+",
  3288. height: math.unit(260, "feet")
  3289. },
  3290. {
  3291. name: "Macro++",
  3292. height: math.unit(1, "mile")
  3293. },
  3294. ]
  3295. ))
  3296. characterMakers.push(() => makeCharacter(
  3297. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3298. {
  3299. front: {
  3300. height: math.unit(6, "feet"),
  3301. weight: math.unit(75, "kg"),
  3302. name: "Front",
  3303. image: {
  3304. source: "./media/characters/malik/front.svg"
  3305. }
  3306. },
  3307. side: {
  3308. height: math.unit(6, "feet"),
  3309. weight: math.unit(75, "kg"),
  3310. name: "Side",
  3311. image: {
  3312. source: "./media/characters/malik/side.svg",
  3313. extra: 1.1539
  3314. }
  3315. },
  3316. back: {
  3317. height: math.unit(6, "feet"),
  3318. weight: math.unit(75, "kg"),
  3319. name: "Back",
  3320. image: {
  3321. source: "./media/characters/malik/back.svg"
  3322. }
  3323. },
  3324. },
  3325. [
  3326. {
  3327. name: "Macro",
  3328. height: math.unit(156, "feet"),
  3329. default: true
  3330. },
  3331. {
  3332. name: "Macro+",
  3333. height: math.unit(1188, "feet")
  3334. },
  3335. ]
  3336. ))
  3337. characterMakers.push(() => makeCharacter(
  3338. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3339. {
  3340. front: {
  3341. height: math.unit(6, "feet"),
  3342. weight: math.unit(75, "kg"),
  3343. name: "Front",
  3344. image: {
  3345. source: "./media/characters/sefer/front.svg",
  3346. extra: 848 / 659,
  3347. bottom: 28.3 / 876.442
  3348. }
  3349. },
  3350. back: {
  3351. height: math.unit(6, "feet"),
  3352. weight: math.unit(75, "kg"),
  3353. name: "Back",
  3354. image: {
  3355. source: "./media/characters/sefer/back.svg",
  3356. extra: 864 / 695,
  3357. bottom: 10 / 871
  3358. }
  3359. },
  3360. frontDressed: {
  3361. height: math.unit(6, "feet"),
  3362. weight: math.unit(75, "kg"),
  3363. name: "Front (Dressed)",
  3364. image: {
  3365. source: "./media/characters/sefer/front-dressed.svg",
  3366. extra: 839 / 653,
  3367. bottom: 37.6 / 878
  3368. }
  3369. },
  3370. },
  3371. [
  3372. {
  3373. name: "Normal",
  3374. height: math.unit(6, "feet"),
  3375. default: true
  3376. },
  3377. ]
  3378. ))
  3379. characterMakers.push(() => makeCharacter(
  3380. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3381. {
  3382. body: {
  3383. height: math.unit(2.2428, "meter"),
  3384. weight: math.unit(124.738, "kg"),
  3385. name: "Body",
  3386. image: {
  3387. extra: 1225 / 1050,
  3388. source: "./media/characters/north/front.svg"
  3389. }
  3390. }
  3391. },
  3392. [
  3393. {
  3394. name: "Micro",
  3395. height: math.unit(4, "inches")
  3396. },
  3397. {
  3398. name: "Macro",
  3399. height: math.unit(63, "meters")
  3400. },
  3401. {
  3402. name: "Megamacro",
  3403. height: math.unit(101, "miles"),
  3404. default: true
  3405. }
  3406. ]
  3407. ))
  3408. characterMakers.push(() => makeCharacter(
  3409. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3410. {
  3411. angled: {
  3412. height: math.unit(4, "meter"),
  3413. weight: math.unit(150, "kg"),
  3414. name: "Angled",
  3415. image: {
  3416. source: "./media/characters/talan/angled-sfw.svg",
  3417. bottom: 29 / 3734
  3418. }
  3419. },
  3420. angledNsfw: {
  3421. height: math.unit(4, "meter"),
  3422. weight: math.unit(150, "kg"),
  3423. name: "Angled (NSFW)",
  3424. image: {
  3425. source: "./media/characters/talan/angled-nsfw.svg",
  3426. bottom: 29 / 3734
  3427. }
  3428. },
  3429. frontNsfw: {
  3430. height: math.unit(4, "meter"),
  3431. weight: math.unit(150, "kg"),
  3432. name: "Front (NSFW)",
  3433. image: {
  3434. source: "./media/characters/talan/front-nsfw.svg",
  3435. bottom: 29 / 3734
  3436. }
  3437. },
  3438. sideNsfw: {
  3439. height: math.unit(4, "meter"),
  3440. weight: math.unit(150, "kg"),
  3441. name: "Side (NSFW)",
  3442. image: {
  3443. source: "./media/characters/talan/side-nsfw.svg",
  3444. bottom: 29 / 3734
  3445. }
  3446. },
  3447. back: {
  3448. height: math.unit(4, "meter"),
  3449. weight: math.unit(150, "kg"),
  3450. name: "Back",
  3451. image: {
  3452. source: "./media/characters/talan/back.svg"
  3453. }
  3454. },
  3455. dickBottom: {
  3456. height: math.unit(0.621, "meter"),
  3457. name: "Dick (Bottom)",
  3458. image: {
  3459. source: "./media/characters/talan/dick-bottom.svg"
  3460. }
  3461. },
  3462. dickTop: {
  3463. height: math.unit(0.621, "meter"),
  3464. name: "Dick (Top)",
  3465. image: {
  3466. source: "./media/characters/talan/dick-top.svg"
  3467. }
  3468. },
  3469. dickSide: {
  3470. height: math.unit(0.305, "meter"),
  3471. name: "Dick (Side)",
  3472. image: {
  3473. source: "./media/characters/talan/dick-side.svg"
  3474. }
  3475. },
  3476. dickFront: {
  3477. height: math.unit(0.305, "meter"),
  3478. name: "Dick (Front)",
  3479. image: {
  3480. source: "./media/characters/talan/dick-front.svg"
  3481. }
  3482. },
  3483. },
  3484. [
  3485. {
  3486. name: "Normal",
  3487. height: math.unit(4, "meters")
  3488. },
  3489. {
  3490. name: "Macro",
  3491. height: math.unit(100, "meters")
  3492. },
  3493. {
  3494. name: "Megamacro",
  3495. height: math.unit(2, "miles"),
  3496. default: true
  3497. },
  3498. {
  3499. name: "Gigamacro",
  3500. height: math.unit(5000, "miles")
  3501. },
  3502. {
  3503. name: "Teramacro",
  3504. height: math.unit(100, "parsecs")
  3505. }
  3506. ]
  3507. ))
  3508. characterMakers.push(() => makeCharacter(
  3509. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3510. {
  3511. front: {
  3512. height: math.unit(2, "meter"),
  3513. weight: math.unit(90, "kg"),
  3514. name: "Front",
  3515. image: {
  3516. source: "./media/characters/gael'rathus/front.svg"
  3517. }
  3518. },
  3519. frontAlt: {
  3520. height: math.unit(2, "meter"),
  3521. weight: math.unit(90, "kg"),
  3522. name: "Front (alt)",
  3523. image: {
  3524. source: "./media/characters/gael'rathus/front-alt.svg"
  3525. }
  3526. },
  3527. frontAlt2: {
  3528. height: math.unit(2, "meter"),
  3529. weight: math.unit(90, "kg"),
  3530. name: "Front (alt 2)",
  3531. image: {
  3532. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3533. }
  3534. }
  3535. },
  3536. [
  3537. {
  3538. name: "Normal",
  3539. height: math.unit(9, "feet"),
  3540. default: true
  3541. },
  3542. {
  3543. name: "Large",
  3544. height: math.unit(25, "feet")
  3545. },
  3546. {
  3547. name: "Macro",
  3548. height: math.unit(0.25, "miles")
  3549. },
  3550. {
  3551. name: "Megamacro",
  3552. height: math.unit(10, "miles")
  3553. }
  3554. ]
  3555. ))
  3556. characterMakers.push(() => makeCharacter(
  3557. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3558. {
  3559. side: {
  3560. height: math.unit(2, "meter"),
  3561. weight: math.unit(140, "kg"),
  3562. name: "Side",
  3563. image: {
  3564. source: "./media/characters/sosha/side.svg",
  3565. bottom: 0.042
  3566. }
  3567. },
  3568. },
  3569. [
  3570. {
  3571. name: "Normal",
  3572. height: math.unit(12, "feet"),
  3573. default: true
  3574. }
  3575. ]
  3576. ))
  3577. characterMakers.push(() => makeCharacter(
  3578. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3579. {
  3580. side: {
  3581. height: math.unit(5 + 5 / 12, "feet"),
  3582. weight: math.unit(170, "kg"),
  3583. name: "Side",
  3584. image: {
  3585. source: "./media/characters/runnola/side.svg",
  3586. extra: 741 / 448,
  3587. bottom: 0.05
  3588. }
  3589. },
  3590. },
  3591. [
  3592. {
  3593. name: "Small",
  3594. height: math.unit(3, "feet")
  3595. },
  3596. {
  3597. name: "Normal",
  3598. height: math.unit(5 + 5 / 12, "feet"),
  3599. default: true
  3600. },
  3601. {
  3602. name: "Big",
  3603. height: math.unit(10, "feet")
  3604. },
  3605. ]
  3606. ))
  3607. characterMakers.push(() => makeCharacter(
  3608. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3609. {
  3610. front: {
  3611. height: math.unit(2, "meter"),
  3612. weight: math.unit(50, "kg"),
  3613. name: "Front",
  3614. image: {
  3615. source: "./media/characters/kurribird/front.svg",
  3616. bottom: 0.015
  3617. }
  3618. },
  3619. frontAlt: {
  3620. height: math.unit(1.5, "meter"),
  3621. weight: math.unit(50, "kg"),
  3622. name: "Front (Alt)",
  3623. image: {
  3624. source: "./media/characters/kurribird/front-alt.svg",
  3625. extra: 1.45
  3626. }
  3627. },
  3628. },
  3629. [
  3630. {
  3631. name: "Normal",
  3632. height: math.unit(7, "feet")
  3633. },
  3634. {
  3635. name: "Big",
  3636. height: math.unit(12, "feet"),
  3637. default: true
  3638. },
  3639. {
  3640. name: "Macro",
  3641. height: math.unit(1500, "feet")
  3642. },
  3643. {
  3644. name: "Megamacro",
  3645. height: math.unit(2, "miles")
  3646. }
  3647. ]
  3648. ))
  3649. characterMakers.push(() => makeCharacter(
  3650. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3651. {
  3652. front: {
  3653. height: math.unit(2, "meter"),
  3654. weight: math.unit(80, "kg"),
  3655. name: "Front",
  3656. image: {
  3657. source: "./media/characters/elbial/front.svg",
  3658. extra: 1643 / 1556,
  3659. bottom: 60.2 / 1696
  3660. }
  3661. },
  3662. side: {
  3663. height: math.unit(2, "meter"),
  3664. weight: math.unit(80, "kg"),
  3665. name: "Side",
  3666. image: {
  3667. source: "./media/characters/elbial/side.svg",
  3668. extra: 1601/1528,
  3669. bottom: 97/1698
  3670. }
  3671. },
  3672. back: {
  3673. height: math.unit(2, "meter"),
  3674. weight: math.unit(80, "kg"),
  3675. name: "Back",
  3676. image: {
  3677. source: "./media/characters/elbial/back.svg",
  3678. extra: 1653/1569,
  3679. bottom: 20/1673
  3680. }
  3681. },
  3682. frontDressed: {
  3683. height: math.unit(2, "meter"),
  3684. weight: math.unit(80, "kg"),
  3685. name: "Front (Dressed)",
  3686. image: {
  3687. source: "./media/characters/elbial/front-dressed.svg",
  3688. extra: 1638/1569,
  3689. bottom: 70/1708
  3690. }
  3691. },
  3692. genitals: {
  3693. height: math.unit(2 / 3.367, "meter"),
  3694. name: "Genitals",
  3695. image: {
  3696. source: "./media/characters/elbial/genitals.svg"
  3697. }
  3698. },
  3699. },
  3700. [
  3701. {
  3702. name: "Large",
  3703. height: math.unit(100, "feet")
  3704. },
  3705. {
  3706. name: "Macro",
  3707. height: math.unit(500, "feet"),
  3708. default: true
  3709. },
  3710. {
  3711. name: "Megamacro",
  3712. height: math.unit(10, "miles")
  3713. },
  3714. {
  3715. name: "Gigamacro",
  3716. height: math.unit(25000, "miles")
  3717. },
  3718. {
  3719. name: "Full-Size",
  3720. height: math.unit(8000000, "gigaparsecs")
  3721. }
  3722. ]
  3723. ))
  3724. characterMakers.push(() => makeCharacter(
  3725. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3726. {
  3727. front: {
  3728. height: math.unit(2, "meter"),
  3729. weight: math.unit(60, "kg"),
  3730. name: "Front",
  3731. image: {
  3732. source: "./media/characters/noah/front.svg"
  3733. }
  3734. },
  3735. talons: {
  3736. height: math.unit(0.315, "meter"),
  3737. name: "Talons",
  3738. image: {
  3739. source: "./media/characters/noah/talons.svg"
  3740. }
  3741. }
  3742. },
  3743. [
  3744. {
  3745. name: "Large",
  3746. height: math.unit(50, "feet")
  3747. },
  3748. {
  3749. name: "Macro",
  3750. height: math.unit(750, "feet"),
  3751. default: true
  3752. },
  3753. {
  3754. name: "Megamacro",
  3755. height: math.unit(50, "miles")
  3756. },
  3757. {
  3758. name: "Gigamacro",
  3759. height: math.unit(100000, "miles")
  3760. },
  3761. {
  3762. name: "Full-Size",
  3763. height: math.unit(3000000000, "miles")
  3764. }
  3765. ]
  3766. ))
  3767. characterMakers.push(() => makeCharacter(
  3768. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3769. {
  3770. front: {
  3771. height: math.unit(2, "meter"),
  3772. weight: math.unit(80, "kg"),
  3773. name: "Front",
  3774. image: {
  3775. source: "./media/characters/natalya/front.svg"
  3776. }
  3777. },
  3778. back: {
  3779. height: math.unit(2, "meter"),
  3780. weight: math.unit(80, "kg"),
  3781. name: "Back",
  3782. image: {
  3783. source: "./media/characters/natalya/back.svg"
  3784. }
  3785. }
  3786. },
  3787. [
  3788. {
  3789. name: "Normal",
  3790. height: math.unit(150, "feet"),
  3791. default: true
  3792. },
  3793. {
  3794. name: "Megamacro",
  3795. height: math.unit(5, "miles")
  3796. },
  3797. {
  3798. name: "Full-Size",
  3799. height: math.unit(600, "kiloparsecs")
  3800. }
  3801. ]
  3802. ))
  3803. characterMakers.push(() => makeCharacter(
  3804. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3805. {
  3806. front: {
  3807. height: math.unit(2, "meter"),
  3808. weight: math.unit(50, "kg"),
  3809. name: "Front",
  3810. image: {
  3811. source: "./media/characters/erestrebah/front.svg",
  3812. extra: 1262/1162,
  3813. bottom: 96/1358
  3814. }
  3815. },
  3816. back: {
  3817. height: math.unit(2, "meter"),
  3818. weight: math.unit(50, "kg"),
  3819. name: "Back",
  3820. image: {
  3821. source: "./media/characters/erestrebah/back.svg",
  3822. extra: 1257/1139,
  3823. bottom: 13/1270
  3824. }
  3825. },
  3826. wing: {
  3827. height: math.unit(2, "meter"),
  3828. weight: math.unit(50, "kg"),
  3829. name: "Wing",
  3830. image: {
  3831. source: "./media/characters/erestrebah/wing.svg",
  3832. extra: 1262/1162,
  3833. bottom: 96/1358
  3834. }
  3835. },
  3836. mouth: {
  3837. height: math.unit(0.39, "feet"),
  3838. name: "Mouth",
  3839. image: {
  3840. source: "./media/characters/erestrebah/mouth.svg"
  3841. }
  3842. }
  3843. },
  3844. [
  3845. {
  3846. name: "Normal",
  3847. height: math.unit(10, "feet")
  3848. },
  3849. {
  3850. name: "Large",
  3851. height: math.unit(50, "feet"),
  3852. default: true
  3853. },
  3854. {
  3855. name: "Macro",
  3856. height: math.unit(300, "feet")
  3857. },
  3858. {
  3859. name: "Macro+",
  3860. height: math.unit(750, "feet")
  3861. },
  3862. {
  3863. name: "Megamacro",
  3864. height: math.unit(3, "miles")
  3865. }
  3866. ]
  3867. ))
  3868. characterMakers.push(() => makeCharacter(
  3869. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3870. {
  3871. front: {
  3872. height: math.unit(2, "meter"),
  3873. weight: math.unit(80, "kg"),
  3874. name: "Front",
  3875. image: {
  3876. source: "./media/characters/jennifer/front.svg",
  3877. bottom: 0.11,
  3878. extra: 1.16
  3879. }
  3880. },
  3881. frontAlt: {
  3882. height: math.unit(2, "meter"),
  3883. weight: math.unit(80, "kg"),
  3884. name: "Front (Alt)",
  3885. image: {
  3886. source: "./media/characters/jennifer/front-alt.svg"
  3887. }
  3888. }
  3889. },
  3890. [
  3891. {
  3892. name: "Canon Height",
  3893. height: math.unit(120, "feet"),
  3894. default: true
  3895. },
  3896. {
  3897. name: "Macro+",
  3898. height: math.unit(300, "feet")
  3899. },
  3900. {
  3901. name: "Megamacro",
  3902. height: math.unit(20000, "feet")
  3903. }
  3904. ]
  3905. ))
  3906. characterMakers.push(() => makeCharacter(
  3907. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3908. {
  3909. front: {
  3910. height: math.unit(2, "meter"),
  3911. weight: math.unit(50, "kg"),
  3912. name: "Front",
  3913. image: {
  3914. source: "./media/characters/kalista/front.svg",
  3915. extra: 1314/1145,
  3916. bottom: 101/1415
  3917. }
  3918. },
  3919. back: {
  3920. height: math.unit(2, "meter"),
  3921. weight: math.unit(50, "kg"),
  3922. name: "Back",
  3923. image: {
  3924. source: "./media/characters/kalista/back.svg",
  3925. extra: 1366 / 1156,
  3926. bottom: 33.9 / 1362.78
  3927. }
  3928. }
  3929. },
  3930. [
  3931. {
  3932. name: "Uncomfortably Small",
  3933. height: math.unit(10, "feet")
  3934. },
  3935. {
  3936. name: "Small",
  3937. height: math.unit(30, "feet")
  3938. },
  3939. {
  3940. name: "Macro",
  3941. height: math.unit(100, "feet"),
  3942. default: true
  3943. },
  3944. {
  3945. name: "Macro+",
  3946. height: math.unit(2000, "feet")
  3947. },
  3948. {
  3949. name: "True Form",
  3950. height: math.unit(8924, "miles")
  3951. }
  3952. ]
  3953. ))
  3954. characterMakers.push(() => makeCharacter(
  3955. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3956. {
  3957. front: {
  3958. height: math.unit(2, "meter"),
  3959. weight: math.unit(120, "kg"),
  3960. name: "Front",
  3961. image: {
  3962. source: "./media/characters/ggv/front.svg"
  3963. }
  3964. },
  3965. side: {
  3966. height: math.unit(2, "meter"),
  3967. weight: math.unit(120, "kg"),
  3968. name: "Side",
  3969. image: {
  3970. source: "./media/characters/ggv/side.svg"
  3971. }
  3972. }
  3973. },
  3974. [
  3975. {
  3976. name: "Extremely Puny",
  3977. height: math.unit(9 + 5 / 12, "feet")
  3978. },
  3979. {
  3980. name: "Horribly Small",
  3981. height: math.unit(47.7, "miles"),
  3982. default: true
  3983. },
  3984. {
  3985. name: "Reasonably Sized",
  3986. height: math.unit(25000, "parsecs")
  3987. },
  3988. {
  3989. name: "Slightly Uncompressed",
  3990. height: math.unit(7.77e31, "parsecs")
  3991. },
  3992. {
  3993. name: "Omniversal",
  3994. height: math.unit(1e300, "meters")
  3995. },
  3996. ]
  3997. ))
  3998. characterMakers.push(() => makeCharacter(
  3999. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4000. {
  4001. front: {
  4002. height: math.unit(2, "meter"),
  4003. weight: math.unit(75, "lb"),
  4004. name: "Front",
  4005. image: {
  4006. source: "./media/characters/napalm/front.svg"
  4007. }
  4008. },
  4009. back: {
  4010. height: math.unit(2, "meter"),
  4011. weight: math.unit(75, "lb"),
  4012. name: "Back",
  4013. image: {
  4014. source: "./media/characters/napalm/back.svg"
  4015. }
  4016. }
  4017. },
  4018. [
  4019. {
  4020. name: "Standard",
  4021. height: math.unit(55, "feet"),
  4022. default: true
  4023. }
  4024. ]
  4025. ))
  4026. characterMakers.push(() => makeCharacter(
  4027. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4028. {
  4029. front: {
  4030. height: math.unit(7 + 5 / 6, "feet"),
  4031. weight: math.unit(325, "lb"),
  4032. name: "Front",
  4033. image: {
  4034. source: "./media/characters/asana/front.svg",
  4035. extra: 1133 / 1060,
  4036. bottom: 15.2 / 1148.6
  4037. }
  4038. },
  4039. back: {
  4040. height: math.unit(7 + 5 / 6, "feet"),
  4041. weight: math.unit(325, "lb"),
  4042. name: "Back",
  4043. image: {
  4044. source: "./media/characters/asana/back.svg",
  4045. extra: 1114 / 1043,
  4046. bottom: 5 / 1120
  4047. }
  4048. },
  4049. dressedDark: {
  4050. height: math.unit(7 + 5 / 6, "feet"),
  4051. weight: math.unit(325, "lb"),
  4052. name: "Dressed (Dark)",
  4053. image: {
  4054. source: "./media/characters/asana/dressed-dark.svg",
  4055. extra: 1133 / 1060,
  4056. bottom: 15.2 / 1148.6
  4057. }
  4058. },
  4059. dressedLight: {
  4060. height: math.unit(7 + 5 / 6, "feet"),
  4061. weight: math.unit(325, "lb"),
  4062. name: "Dressed (Light)",
  4063. image: {
  4064. source: "./media/characters/asana/dressed-light.svg",
  4065. extra: 1133 / 1060,
  4066. bottom: 15.2 / 1148.6
  4067. }
  4068. },
  4069. },
  4070. [
  4071. {
  4072. name: "Standard",
  4073. height: math.unit(7 + 5 / 6, "feet"),
  4074. default: true
  4075. },
  4076. {
  4077. name: "Large",
  4078. height: math.unit(10, "meters")
  4079. },
  4080. {
  4081. name: "Macro",
  4082. height: math.unit(2500, "meters")
  4083. },
  4084. {
  4085. name: "Megamacro",
  4086. height: math.unit(5e6, "meters")
  4087. },
  4088. {
  4089. name: "Examacro",
  4090. height: math.unit(5e12, "lightyears")
  4091. },
  4092. {
  4093. name: "Max Size",
  4094. height: math.unit(1e31, "lightyears")
  4095. }
  4096. ]
  4097. ))
  4098. characterMakers.push(() => makeCharacter(
  4099. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4100. {
  4101. front: {
  4102. height: math.unit(2, "meter"),
  4103. weight: math.unit(60, "kg"),
  4104. name: "Front",
  4105. image: {
  4106. source: "./media/characters/ebony/front.svg",
  4107. bottom: 0.03,
  4108. extra: 1045 / 810 + 0.03
  4109. }
  4110. },
  4111. side: {
  4112. height: math.unit(2, "meter"),
  4113. weight: math.unit(60, "kg"),
  4114. name: "Side",
  4115. image: {
  4116. source: "./media/characters/ebony/side.svg",
  4117. bottom: 0.03,
  4118. extra: 1045 / 810 + 0.03
  4119. }
  4120. },
  4121. back: {
  4122. height: math.unit(2, "meter"),
  4123. weight: math.unit(60, "kg"),
  4124. name: "Back",
  4125. image: {
  4126. source: "./media/characters/ebony/back.svg",
  4127. bottom: 0.01,
  4128. extra: 1045 / 810 + 0.01
  4129. }
  4130. },
  4131. },
  4132. [
  4133. // TODO check why I did this lol
  4134. {
  4135. name: "Standard",
  4136. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4137. default: true
  4138. },
  4139. {
  4140. name: "Macro",
  4141. height: math.unit(200, "feet")
  4142. },
  4143. {
  4144. name: "Gigamacro",
  4145. height: math.unit(13000, "km")
  4146. }
  4147. ]
  4148. ))
  4149. characterMakers.push(() => makeCharacter(
  4150. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4151. {
  4152. front: {
  4153. height: math.unit(6, "feet"),
  4154. weight: math.unit(175, "lb"),
  4155. name: "Front",
  4156. image: {
  4157. source: "./media/characters/mountain/front.svg",
  4158. extra: 972 / 955,
  4159. bottom: 64 / 1036.6
  4160. }
  4161. },
  4162. back: {
  4163. height: math.unit(6, "feet"),
  4164. weight: math.unit(175, "lb"),
  4165. name: "Back",
  4166. image: {
  4167. source: "./media/characters/mountain/back.svg",
  4168. extra: 970 / 950,
  4169. bottom: 28.25 / 999
  4170. }
  4171. },
  4172. },
  4173. [
  4174. {
  4175. name: "Large",
  4176. height: math.unit(20, "meters")
  4177. },
  4178. {
  4179. name: "Macro",
  4180. height: math.unit(300, "meters")
  4181. },
  4182. {
  4183. name: "Gigamacro",
  4184. height: math.unit(10000, "km"),
  4185. default: true
  4186. },
  4187. {
  4188. name: "Examacro",
  4189. height: math.unit(10e9, "lightyears")
  4190. }
  4191. ]
  4192. ))
  4193. characterMakers.push(() => makeCharacter(
  4194. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4195. {
  4196. front: {
  4197. height: math.unit(8, "feet"),
  4198. weight: math.unit(500, "lb"),
  4199. name: "Front",
  4200. image: {
  4201. source: "./media/characters/rick/front.svg"
  4202. }
  4203. }
  4204. },
  4205. [
  4206. {
  4207. name: "Normal",
  4208. height: math.unit(8, "feet"),
  4209. default: true
  4210. },
  4211. {
  4212. name: "Macro",
  4213. height: math.unit(5, "km")
  4214. }
  4215. ]
  4216. ))
  4217. characterMakers.push(() => makeCharacter(
  4218. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4219. {
  4220. front: {
  4221. height: math.unit(8, "feet"),
  4222. weight: math.unit(120, "lb"),
  4223. name: "Front",
  4224. image: {
  4225. source: "./media/characters/ona/front.svg"
  4226. }
  4227. },
  4228. frontAlt: {
  4229. height: math.unit(8, "feet"),
  4230. weight: math.unit(120, "lb"),
  4231. name: "Front (Alt)",
  4232. image: {
  4233. source: "./media/characters/ona/front-alt.svg"
  4234. }
  4235. },
  4236. back: {
  4237. height: math.unit(8, "feet"),
  4238. weight: math.unit(120, "lb"),
  4239. name: "Back",
  4240. image: {
  4241. source: "./media/characters/ona/back.svg"
  4242. }
  4243. },
  4244. foot: {
  4245. height: math.unit(1.1, "feet"),
  4246. name: "Foot",
  4247. image: {
  4248. source: "./media/characters/ona/foot.svg"
  4249. }
  4250. }
  4251. },
  4252. [
  4253. {
  4254. name: "Megamacro",
  4255. height: math.unit(70, "km"),
  4256. default: true
  4257. },
  4258. {
  4259. name: "Gigamacro",
  4260. height: math.unit(681818, "miles")
  4261. },
  4262. {
  4263. name: "Examacro",
  4264. height: math.unit(3800000, "lightyears")
  4265. },
  4266. ]
  4267. ))
  4268. characterMakers.push(() => makeCharacter(
  4269. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4270. {
  4271. front: {
  4272. height: math.unit(12, "feet"),
  4273. weight: math.unit(3000, "lb"),
  4274. name: "Front",
  4275. image: {
  4276. source: "./media/characters/mech/front.svg",
  4277. extra: 2900 / 2770,
  4278. bottom: 110 / 3010
  4279. }
  4280. },
  4281. back: {
  4282. height: math.unit(12, "feet"),
  4283. weight: math.unit(3000, "lb"),
  4284. name: "Back",
  4285. image: {
  4286. source: "./media/characters/mech/back.svg",
  4287. extra: 3011 / 2890,
  4288. bottom: 94 / 3105
  4289. }
  4290. },
  4291. maw: {
  4292. height: math.unit(3.07, "feet"),
  4293. name: "Maw",
  4294. image: {
  4295. source: "./media/characters/mech/maw.svg"
  4296. }
  4297. },
  4298. head: {
  4299. height: math.unit(2.82, "feet"),
  4300. name: "Head",
  4301. image: {
  4302. source: "./media/characters/mech/head.svg"
  4303. }
  4304. },
  4305. dick: {
  4306. height: math.unit(1.43, "feet"),
  4307. name: "Dick",
  4308. image: {
  4309. source: "./media/characters/mech/dick.svg"
  4310. }
  4311. },
  4312. },
  4313. [
  4314. {
  4315. name: "Normal",
  4316. height: math.unit(12, "feet")
  4317. },
  4318. {
  4319. name: "Macro",
  4320. height: math.unit(300, "feet"),
  4321. default: true
  4322. },
  4323. {
  4324. name: "Macro+",
  4325. height: math.unit(1500, "feet")
  4326. },
  4327. ]
  4328. ))
  4329. characterMakers.push(() => makeCharacter(
  4330. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4331. {
  4332. front: {
  4333. height: math.unit(1.3, "meter"),
  4334. weight: math.unit(30, "kg"),
  4335. name: "Front",
  4336. image: {
  4337. source: "./media/characters/gregory/front.svg",
  4338. }
  4339. }
  4340. },
  4341. [
  4342. {
  4343. name: "Normal",
  4344. height: math.unit(1.3, "meter"),
  4345. default: true
  4346. },
  4347. {
  4348. name: "Macro",
  4349. height: math.unit(20, "meter")
  4350. }
  4351. ]
  4352. ))
  4353. characterMakers.push(() => makeCharacter(
  4354. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4355. {
  4356. front: {
  4357. height: math.unit(2.8, "meter"),
  4358. weight: math.unit(200, "kg"),
  4359. name: "Front",
  4360. image: {
  4361. source: "./media/characters/elory/front.svg",
  4362. }
  4363. }
  4364. },
  4365. [
  4366. {
  4367. name: "Normal",
  4368. height: math.unit(2.8, "meter"),
  4369. default: true
  4370. },
  4371. {
  4372. name: "Macro",
  4373. height: math.unit(38, "meter")
  4374. }
  4375. ]
  4376. ))
  4377. characterMakers.push(() => makeCharacter(
  4378. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4379. {
  4380. front: {
  4381. height: math.unit(470, "feet"),
  4382. weight: math.unit(924, "tons"),
  4383. name: "Front",
  4384. image: {
  4385. source: "./media/characters/angelpatamon/front.svg",
  4386. }
  4387. }
  4388. },
  4389. [
  4390. {
  4391. name: "Normal",
  4392. height: math.unit(470, "feet"),
  4393. default: true
  4394. },
  4395. {
  4396. name: "Deity Size I",
  4397. height: math.unit(28651.2, "km")
  4398. },
  4399. {
  4400. name: "Deity Size II",
  4401. height: math.unit(171907.2, "km")
  4402. }
  4403. ]
  4404. ))
  4405. characterMakers.push(() => makeCharacter(
  4406. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4407. {
  4408. side: {
  4409. height: math.unit(7.2, "meter"),
  4410. weight: math.unit(8.2, "tons"),
  4411. name: "Side",
  4412. image: {
  4413. source: "./media/characters/cryae/side.svg",
  4414. extra: 3500 / 1500
  4415. }
  4416. }
  4417. },
  4418. [
  4419. {
  4420. name: "Normal",
  4421. height: math.unit(7.2, "meter"),
  4422. default: true
  4423. }
  4424. ]
  4425. ))
  4426. characterMakers.push(() => makeCharacter(
  4427. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4428. {
  4429. front: {
  4430. height: math.unit(6, "feet"),
  4431. weight: math.unit(175, "lb"),
  4432. name: "Front",
  4433. image: {
  4434. source: "./media/characters/xera/front.svg",
  4435. extra: 2377 / 1972,
  4436. bottom: 75.5 / 2452
  4437. }
  4438. },
  4439. side: {
  4440. height: math.unit(6, "feet"),
  4441. weight: math.unit(175, "lb"),
  4442. name: "Side",
  4443. image: {
  4444. source: "./media/characters/xera/side.svg",
  4445. extra: 2345 / 2019,
  4446. bottom: 39.7 / 2384
  4447. }
  4448. },
  4449. back: {
  4450. height: math.unit(6, "feet"),
  4451. weight: math.unit(175, "lb"),
  4452. name: "Back",
  4453. image: {
  4454. source: "./media/characters/xera/back.svg",
  4455. extra: 2095 / 1984,
  4456. bottom: 67 / 2166
  4457. }
  4458. },
  4459. },
  4460. [
  4461. {
  4462. name: "Small",
  4463. height: math.unit(10, "feet")
  4464. },
  4465. {
  4466. name: "Macro",
  4467. height: math.unit(500, "meters"),
  4468. default: true
  4469. },
  4470. {
  4471. name: "Macro+",
  4472. height: math.unit(10, "km")
  4473. },
  4474. {
  4475. name: "Gigamacro",
  4476. height: math.unit(25000, "km")
  4477. },
  4478. {
  4479. name: "Teramacro",
  4480. height: math.unit(3e6, "km")
  4481. }
  4482. ]
  4483. ))
  4484. characterMakers.push(() => makeCharacter(
  4485. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4486. {
  4487. front: {
  4488. height: math.unit(6, "feet"),
  4489. weight: math.unit(175, "lb"),
  4490. name: "Front",
  4491. image: {
  4492. source: "./media/characters/nebula/front.svg",
  4493. extra: 2566 / 2362,
  4494. bottom: 81 / 2644
  4495. }
  4496. }
  4497. },
  4498. [
  4499. {
  4500. name: "Small",
  4501. height: math.unit(4.5, "meters")
  4502. },
  4503. {
  4504. name: "Macro",
  4505. height: math.unit(1500, "meters"),
  4506. default: true
  4507. },
  4508. {
  4509. name: "Megamacro",
  4510. height: math.unit(150, "km")
  4511. },
  4512. {
  4513. name: "Gigamacro",
  4514. height: math.unit(27000, "km")
  4515. }
  4516. ]
  4517. ))
  4518. characterMakers.push(() => makeCharacter(
  4519. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4520. {
  4521. front: {
  4522. height: math.unit(6, "feet"),
  4523. weight: math.unit(225, "lb"),
  4524. name: "Front",
  4525. image: {
  4526. source: "./media/characters/abysgar/front.svg",
  4527. extra: 1739/1614,
  4528. bottom: 71/1810
  4529. }
  4530. },
  4531. frontNsfw: {
  4532. height: math.unit(6, "feet"),
  4533. weight: math.unit(225, "lb"),
  4534. name: "Front (NSFW)",
  4535. image: {
  4536. source: "./media/characters/abysgar/front-nsfw.svg",
  4537. extra: 1739/1614,
  4538. bottom: 71/1810
  4539. }
  4540. },
  4541. back: {
  4542. height: math.unit(4.6, "feet"),
  4543. weight: math.unit(225, "lb"),
  4544. name: "Back",
  4545. image: {
  4546. source: "./media/characters/abysgar/back.svg",
  4547. extra: 1384/1327,
  4548. bottom: 0/1384
  4549. }
  4550. },
  4551. head: {
  4552. height: math.unit(1.25, "feet"),
  4553. name: "Head",
  4554. image: {
  4555. source: "./media/characters/abysgar/head.svg",
  4556. extra: 669/569,
  4557. bottom: 0/669
  4558. }
  4559. },
  4560. },
  4561. [
  4562. {
  4563. name: "Small",
  4564. height: math.unit(4.5, "meters")
  4565. },
  4566. {
  4567. name: "Macro",
  4568. height: math.unit(1250, "meters"),
  4569. default: true
  4570. },
  4571. {
  4572. name: "Megamacro",
  4573. height: math.unit(125, "km")
  4574. },
  4575. {
  4576. name: "Gigamacro",
  4577. height: math.unit(26000, "km")
  4578. }
  4579. ]
  4580. ))
  4581. characterMakers.push(() => makeCharacter(
  4582. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4583. {
  4584. front: {
  4585. height: math.unit(6, "feet"),
  4586. weight: math.unit(180, "lb"),
  4587. name: "Front",
  4588. image: {
  4589. source: "./media/characters/yakuz/front.svg"
  4590. }
  4591. }
  4592. },
  4593. [
  4594. {
  4595. name: "Small",
  4596. height: math.unit(5, "meters")
  4597. },
  4598. {
  4599. name: "Macro",
  4600. height: math.unit(1500, "meters"),
  4601. default: true
  4602. },
  4603. {
  4604. name: "Megamacro",
  4605. height: math.unit(200, "km")
  4606. },
  4607. {
  4608. name: "Gigamacro",
  4609. height: math.unit(100000, "km")
  4610. }
  4611. ]
  4612. ))
  4613. characterMakers.push(() => makeCharacter(
  4614. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4615. {
  4616. front: {
  4617. height: math.unit(6, "feet"),
  4618. weight: math.unit(175, "lb"),
  4619. name: "Front",
  4620. image: {
  4621. source: "./media/characters/mirova/front.svg",
  4622. extra: 3334 / 3071,
  4623. bottom: 42 / 3375.6
  4624. }
  4625. }
  4626. },
  4627. [
  4628. {
  4629. name: "Small",
  4630. height: math.unit(5, "meters")
  4631. },
  4632. {
  4633. name: "Macro",
  4634. height: math.unit(900, "meters"),
  4635. default: true
  4636. },
  4637. {
  4638. name: "Megamacro",
  4639. height: math.unit(135, "km")
  4640. },
  4641. {
  4642. name: "Gigamacro",
  4643. height: math.unit(20000, "km")
  4644. }
  4645. ]
  4646. ))
  4647. characterMakers.push(() => makeCharacter(
  4648. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4649. {
  4650. side: {
  4651. height: math.unit(28.35, "feet"),
  4652. weight: math.unit(99.75, "tons"),
  4653. name: "Side",
  4654. image: {
  4655. source: "./media/characters/asana-mech/side.svg",
  4656. extra: 923 / 699,
  4657. bottom: 50 / 975
  4658. }
  4659. },
  4660. chaingun: {
  4661. height: math.unit(7, "feet"),
  4662. weight: math.unit(2400, "lb"),
  4663. name: "Chaingun",
  4664. image: {
  4665. source: "./media/characters/asana-mech/chaingun.svg"
  4666. }
  4667. },
  4668. laser: {
  4669. height: math.unit(7.12, "feet"),
  4670. weight: math.unit(2000, "lb"),
  4671. name: "Laser",
  4672. image: {
  4673. source: "./media/characters/asana-mech/laser.svg"
  4674. }
  4675. },
  4676. },
  4677. [
  4678. {
  4679. name: "Normal",
  4680. height: math.unit(28.35, "feet"),
  4681. default: true
  4682. },
  4683. {
  4684. name: "Macro",
  4685. height: math.unit(2500, "feet")
  4686. },
  4687. {
  4688. name: "Megamacro",
  4689. height: math.unit(25, "miles")
  4690. },
  4691. {
  4692. name: "Examacro",
  4693. height: math.unit(6e8, "lightyears")
  4694. },
  4695. ]
  4696. ))
  4697. characterMakers.push(() => makeCharacter(
  4698. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4699. {
  4700. front: {
  4701. height: math.unit(5, "meters"),
  4702. weight: math.unit(1000, "kg"),
  4703. name: "Front",
  4704. image: {
  4705. source: "./media/characters/asche/front.svg",
  4706. extra: 1258 / 1190,
  4707. bottom: 47 / 1305
  4708. }
  4709. },
  4710. frontUnderwear: {
  4711. height: math.unit(5, "meters"),
  4712. weight: math.unit(1000, "kg"),
  4713. name: "Front (Underwear)",
  4714. image: {
  4715. source: "./media/characters/asche/front-underwear.svg",
  4716. extra: 1258 / 1190,
  4717. bottom: 47 / 1305
  4718. }
  4719. },
  4720. frontDressed: {
  4721. height: math.unit(5, "meters"),
  4722. weight: math.unit(1000, "kg"),
  4723. name: "Front (Dressed)",
  4724. image: {
  4725. source: "./media/characters/asche/front-dressed.svg",
  4726. extra: 1258 / 1190,
  4727. bottom: 47 / 1305
  4728. }
  4729. },
  4730. frontArmor: {
  4731. height: math.unit(5, "meters"),
  4732. weight: math.unit(1000, "kg"),
  4733. name: "Front (Armored)",
  4734. image: {
  4735. source: "./media/characters/asche/front-armored.svg",
  4736. extra: 1374 / 1308,
  4737. bottom: 23 / 1397
  4738. }
  4739. },
  4740. mp724: {
  4741. height: math.unit(0.96, "meters"),
  4742. weight: math.unit(38, "kg"),
  4743. name: "H&K MP724",
  4744. image: {
  4745. source: "./media/characters/asche/h&k-mp724.svg"
  4746. }
  4747. },
  4748. side: {
  4749. height: math.unit(5, "meters"),
  4750. weight: math.unit(1000, "kg"),
  4751. name: "Side",
  4752. image: {
  4753. source: "./media/characters/asche/side.svg",
  4754. extra: 1717 / 1609,
  4755. bottom: 0.005
  4756. }
  4757. },
  4758. back: {
  4759. height: math.unit(5, "meters"),
  4760. weight: math.unit(1000, "kg"),
  4761. name: "Back",
  4762. image: {
  4763. source: "./media/characters/asche/back.svg",
  4764. extra: 1570 / 1501
  4765. }
  4766. },
  4767. },
  4768. [
  4769. {
  4770. name: "DEFCON 5",
  4771. height: math.unit(5, "meters")
  4772. },
  4773. {
  4774. name: "DEFCON 4",
  4775. height: math.unit(500, "meters"),
  4776. default: true
  4777. },
  4778. {
  4779. name: "DEFCON 3",
  4780. height: math.unit(5, "km")
  4781. },
  4782. {
  4783. name: "DEFCON 2",
  4784. height: math.unit(500, "km")
  4785. },
  4786. {
  4787. name: "DEFCON 1",
  4788. height: math.unit(500000, "km")
  4789. },
  4790. {
  4791. name: "DEFCON 0",
  4792. height: math.unit(3, "gigaparsecs")
  4793. },
  4794. ]
  4795. ))
  4796. characterMakers.push(() => makeCharacter(
  4797. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4798. {
  4799. front: {
  4800. height: math.unit(2, "meters"),
  4801. weight: math.unit(76, "kg"),
  4802. name: "Front",
  4803. image: {
  4804. source: "./media/characters/gale/front.svg"
  4805. }
  4806. },
  4807. frontAlt1: {
  4808. height: math.unit(2, "meters"),
  4809. weight: math.unit(76, "kg"),
  4810. name: "Front (Alt 1)",
  4811. image: {
  4812. source: "./media/characters/gale/front-alt-1.svg"
  4813. }
  4814. },
  4815. frontAlt2: {
  4816. height: math.unit(2, "meters"),
  4817. weight: math.unit(76, "kg"),
  4818. name: "Front (Alt 2)",
  4819. image: {
  4820. source: "./media/characters/gale/front-alt-2.svg"
  4821. }
  4822. },
  4823. },
  4824. [
  4825. {
  4826. name: "Normal",
  4827. height: math.unit(7, "feet")
  4828. },
  4829. {
  4830. name: "Macro",
  4831. height: math.unit(150, "feet"),
  4832. default: true
  4833. },
  4834. {
  4835. name: "Macro+",
  4836. height: math.unit(300, "feet")
  4837. },
  4838. ]
  4839. ))
  4840. characterMakers.push(() => makeCharacter(
  4841. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4842. {
  4843. front: {
  4844. height: math.unit(5 + 10/12, "feet"),
  4845. weight: math.unit(67, "kg"),
  4846. name: "Front",
  4847. image: {
  4848. source: "./media/characters/draylen/front.svg",
  4849. extra: 832/777,
  4850. bottom: 85/917
  4851. }
  4852. }
  4853. },
  4854. [
  4855. {
  4856. name: "Normal",
  4857. height: math.unit(5 + 10/12, "feet")
  4858. },
  4859. {
  4860. name: "Macro",
  4861. height: math.unit(150, "feet"),
  4862. default: true
  4863. }
  4864. ]
  4865. ))
  4866. characterMakers.push(() => makeCharacter(
  4867. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4868. {
  4869. front: {
  4870. height: math.unit(7 + 9 / 12, "feet"),
  4871. weight: math.unit(379, "lbs"),
  4872. name: "Front",
  4873. image: {
  4874. source: "./media/characters/chez/front.svg"
  4875. }
  4876. },
  4877. side: {
  4878. height: math.unit(7 + 9 / 12, "feet"),
  4879. weight: math.unit(379, "lbs"),
  4880. name: "Side",
  4881. image: {
  4882. source: "./media/characters/chez/side.svg"
  4883. }
  4884. }
  4885. },
  4886. [
  4887. {
  4888. name: "Normal",
  4889. height: math.unit(7 + 9 / 12, "feet"),
  4890. default: true
  4891. },
  4892. {
  4893. name: "God King",
  4894. height: math.unit(9750000, "meters")
  4895. }
  4896. ]
  4897. ))
  4898. characterMakers.push(() => makeCharacter(
  4899. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4900. {
  4901. front: {
  4902. height: math.unit(6, "feet"),
  4903. weight: math.unit(275, "lbs"),
  4904. name: "Front",
  4905. image: {
  4906. source: "./media/characters/kaylum/front.svg",
  4907. bottom: 0.01,
  4908. extra: 1166 / 1031
  4909. }
  4910. },
  4911. frontWingless: {
  4912. height: math.unit(6, "feet"),
  4913. weight: math.unit(275, "lbs"),
  4914. name: "Front (Wingless)",
  4915. image: {
  4916. source: "./media/characters/kaylum/front-wingless.svg",
  4917. bottom: 0.01,
  4918. extra: 1117 / 1031
  4919. }
  4920. }
  4921. },
  4922. [
  4923. {
  4924. name: "Normal",
  4925. height: math.unit(3.05, "meters")
  4926. },
  4927. {
  4928. name: "Master",
  4929. height: math.unit(5.5, "meters")
  4930. },
  4931. {
  4932. name: "Rampage",
  4933. height: math.unit(19, "meters")
  4934. },
  4935. {
  4936. name: "Macro Lite",
  4937. height: math.unit(37, "meters")
  4938. },
  4939. {
  4940. name: "Hyper Predator",
  4941. height: math.unit(61, "meters")
  4942. },
  4943. {
  4944. name: "Macro",
  4945. height: math.unit(138, "meters"),
  4946. default: true
  4947. }
  4948. ]
  4949. ))
  4950. characterMakers.push(() => makeCharacter(
  4951. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4952. {
  4953. front: {
  4954. height: math.unit(5 + 5 / 12, "feet"),
  4955. weight: math.unit(120, "lbs"),
  4956. name: "Front",
  4957. image: {
  4958. source: "./media/characters/geta/front.svg",
  4959. extra: 1003/933,
  4960. bottom: 21/1024
  4961. }
  4962. },
  4963. paw: {
  4964. height: math.unit(0.35, "feet"),
  4965. name: "Paw",
  4966. image: {
  4967. source: "./media/characters/geta/paw.svg"
  4968. }
  4969. },
  4970. },
  4971. [
  4972. {
  4973. name: "Micro",
  4974. height: math.unit(3, "inches"),
  4975. default: true
  4976. },
  4977. {
  4978. name: "Normal",
  4979. height: math.unit(5 + 5 / 12, "feet")
  4980. }
  4981. ]
  4982. ))
  4983. characterMakers.push(() => makeCharacter(
  4984. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4985. {
  4986. front: {
  4987. height: math.unit(6, "feet"),
  4988. weight: math.unit(300, "lbs"),
  4989. name: "Front",
  4990. image: {
  4991. source: "./media/characters/tyrnn/front.svg"
  4992. }
  4993. }
  4994. },
  4995. [
  4996. {
  4997. name: "Main Height",
  4998. height: math.unit(355, "feet"),
  4999. default: true
  5000. },
  5001. {
  5002. name: "Fave. Height",
  5003. height: math.unit(2400, "feet")
  5004. }
  5005. ]
  5006. ))
  5007. characterMakers.push(() => makeCharacter(
  5008. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5009. {
  5010. front: {
  5011. height: math.unit(6, "feet"),
  5012. weight: math.unit(300, "lbs"),
  5013. name: "Front",
  5014. image: {
  5015. source: "./media/characters/appledectomy/front.svg"
  5016. }
  5017. }
  5018. },
  5019. [
  5020. {
  5021. name: "Macro",
  5022. height: math.unit(2500, "feet")
  5023. },
  5024. {
  5025. name: "Megamacro",
  5026. height: math.unit(50, "miles"),
  5027. default: true
  5028. },
  5029. {
  5030. name: "Gigamacro",
  5031. height: math.unit(5000, "miles")
  5032. },
  5033. {
  5034. name: "Teramacro",
  5035. height: math.unit(250000, "miles")
  5036. },
  5037. ]
  5038. ))
  5039. characterMakers.push(() => makeCharacter(
  5040. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5041. {
  5042. front: {
  5043. height: math.unit(6, "feet"),
  5044. weight: math.unit(200, "lbs"),
  5045. name: "Front",
  5046. image: {
  5047. source: "./media/characters/vulpes/front.svg",
  5048. extra: 573 / 543,
  5049. bottom: 0.033
  5050. }
  5051. },
  5052. side: {
  5053. height: math.unit(6, "feet"),
  5054. weight: math.unit(200, "lbs"),
  5055. name: "Side",
  5056. image: {
  5057. source: "./media/characters/vulpes/side.svg",
  5058. extra: 577 / 549,
  5059. bottom: 11 / 588
  5060. }
  5061. },
  5062. back: {
  5063. height: math.unit(6, "feet"),
  5064. weight: math.unit(200, "lbs"),
  5065. name: "Back",
  5066. image: {
  5067. source: "./media/characters/vulpes/back.svg",
  5068. extra: 573 / 549,
  5069. bottom: 20 / 593
  5070. }
  5071. },
  5072. feet: {
  5073. height: math.unit(1.276, "feet"),
  5074. name: "Feet",
  5075. image: {
  5076. source: "./media/characters/vulpes/feet.svg"
  5077. }
  5078. },
  5079. maw: {
  5080. height: math.unit(1.18, "feet"),
  5081. name: "Maw",
  5082. image: {
  5083. source: "./media/characters/vulpes/maw.svg"
  5084. }
  5085. },
  5086. },
  5087. [
  5088. {
  5089. name: "Micro",
  5090. height: math.unit(2, "inches")
  5091. },
  5092. {
  5093. name: "Normal",
  5094. height: math.unit(6.3, "feet")
  5095. },
  5096. {
  5097. name: "Macro",
  5098. height: math.unit(850, "feet")
  5099. },
  5100. {
  5101. name: "Megamacro",
  5102. height: math.unit(7500, "feet"),
  5103. default: true
  5104. },
  5105. {
  5106. name: "Gigamacro",
  5107. height: math.unit(570000, "miles")
  5108. }
  5109. ]
  5110. ))
  5111. characterMakers.push(() => makeCharacter(
  5112. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5113. {
  5114. front: {
  5115. height: math.unit(6, "feet"),
  5116. weight: math.unit(210, "lbs"),
  5117. name: "Front",
  5118. image: {
  5119. source: "./media/characters/rain-fallen/front.svg"
  5120. }
  5121. },
  5122. side: {
  5123. height: math.unit(6, "feet"),
  5124. weight: math.unit(210, "lbs"),
  5125. name: "Side",
  5126. image: {
  5127. source: "./media/characters/rain-fallen/side.svg"
  5128. }
  5129. },
  5130. back: {
  5131. height: math.unit(6, "feet"),
  5132. weight: math.unit(210, "lbs"),
  5133. name: "Back",
  5134. image: {
  5135. source: "./media/characters/rain-fallen/back.svg"
  5136. }
  5137. },
  5138. feral: {
  5139. height: math.unit(9, "feet"),
  5140. weight: math.unit(700, "lbs"),
  5141. name: "Feral",
  5142. image: {
  5143. source: "./media/characters/rain-fallen/feral.svg"
  5144. }
  5145. },
  5146. },
  5147. [
  5148. {
  5149. name: "Meddling with Mortals",
  5150. height: math.unit(8 + 8/12, "feet")
  5151. },
  5152. {
  5153. name: "Normal",
  5154. height: math.unit(5, "meter")
  5155. },
  5156. {
  5157. name: "Macro",
  5158. height: math.unit(150, "meter"),
  5159. default: true
  5160. },
  5161. {
  5162. name: "Megamacro",
  5163. height: math.unit(278e6, "meter")
  5164. },
  5165. {
  5166. name: "Gigamacro",
  5167. height: math.unit(2e9, "meter")
  5168. },
  5169. {
  5170. name: "Teramacro",
  5171. height: math.unit(8e12, "meter")
  5172. },
  5173. {
  5174. name: "Devourer",
  5175. height: math.unit(14, "zettameters")
  5176. },
  5177. {
  5178. name: "Scarlet King",
  5179. height: math.unit(18, "yottameters")
  5180. },
  5181. {
  5182. name: "Void",
  5183. height: math.unit(1e88, "yottameters")
  5184. }
  5185. ]
  5186. ))
  5187. characterMakers.push(() => makeCharacter(
  5188. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5189. {
  5190. standing: {
  5191. height: math.unit(6, "feet"),
  5192. weight: math.unit(180, "lbs"),
  5193. name: "Standing",
  5194. image: {
  5195. source: "./media/characters/zaakira/standing.svg",
  5196. extra: 1599/1504,
  5197. bottom: 39/1638
  5198. }
  5199. },
  5200. laying: {
  5201. height: math.unit(3.3, "feet"),
  5202. weight: math.unit(180, "lbs"),
  5203. name: "Laying",
  5204. image: {
  5205. source: "./media/characters/zaakira/laying.svg"
  5206. }
  5207. },
  5208. },
  5209. [
  5210. {
  5211. name: "Normal",
  5212. height: math.unit(12, "feet")
  5213. },
  5214. {
  5215. name: "Macro",
  5216. height: math.unit(279, "feet"),
  5217. default: true
  5218. }
  5219. ]
  5220. ))
  5221. characterMakers.push(() => makeCharacter(
  5222. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5223. {
  5224. femSfw: {
  5225. height: math.unit(8, "feet"),
  5226. weight: math.unit(350, "lb"),
  5227. name: "Fem",
  5228. image: {
  5229. source: "./media/characters/sigvald/fem-sfw.svg",
  5230. extra: 182 / 164,
  5231. bottom: 8.7 / 190.5
  5232. }
  5233. },
  5234. femNsfw: {
  5235. height: math.unit(8, "feet"),
  5236. weight: math.unit(350, "lb"),
  5237. name: "Fem (NSFW)",
  5238. image: {
  5239. source: "./media/characters/sigvald/fem-nsfw.svg",
  5240. extra: 182 / 164,
  5241. bottom: 8.7 / 190.5
  5242. }
  5243. },
  5244. maleNsfw: {
  5245. height: math.unit(8, "feet"),
  5246. weight: math.unit(350, "lb"),
  5247. name: "Male (NSFW)",
  5248. image: {
  5249. source: "./media/characters/sigvald/male-nsfw.svg",
  5250. extra: 182 / 164,
  5251. bottom: 8.7 / 190.5
  5252. }
  5253. },
  5254. hermNsfw: {
  5255. height: math.unit(8, "feet"),
  5256. weight: math.unit(350, "lb"),
  5257. name: "Herm (NSFW)",
  5258. image: {
  5259. source: "./media/characters/sigvald/herm-nsfw.svg",
  5260. extra: 182 / 164,
  5261. bottom: 8.7 / 190.5
  5262. }
  5263. },
  5264. dick: {
  5265. height: math.unit(2.36, "feet"),
  5266. name: "Dick",
  5267. image: {
  5268. source: "./media/characters/sigvald/dick.svg"
  5269. }
  5270. },
  5271. eye: {
  5272. height: math.unit(0.31, "feet"),
  5273. name: "Eye",
  5274. image: {
  5275. source: "./media/characters/sigvald/eye.svg"
  5276. }
  5277. },
  5278. mouth: {
  5279. height: math.unit(0.92, "feet"),
  5280. name: "Mouth",
  5281. image: {
  5282. source: "./media/characters/sigvald/mouth.svg"
  5283. }
  5284. },
  5285. paws: {
  5286. height: math.unit(2.2, "feet"),
  5287. name: "Paws",
  5288. image: {
  5289. source: "./media/characters/sigvald/paws.svg"
  5290. }
  5291. }
  5292. },
  5293. [
  5294. {
  5295. name: "Normal",
  5296. height: math.unit(8, "feet")
  5297. },
  5298. {
  5299. name: "Large",
  5300. height: math.unit(12, "feet")
  5301. },
  5302. {
  5303. name: "Larger",
  5304. height: math.unit(20, "feet")
  5305. },
  5306. {
  5307. name: "Macro",
  5308. height: math.unit(150, "feet")
  5309. },
  5310. {
  5311. name: "Macro+",
  5312. height: math.unit(200, "feet"),
  5313. default: true
  5314. },
  5315. ]
  5316. ))
  5317. characterMakers.push(() => makeCharacter(
  5318. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5319. {
  5320. side: {
  5321. height: math.unit(12, "feet"),
  5322. weight: math.unit(2000, "kg"),
  5323. name: "Side",
  5324. image: {
  5325. source: "./media/characters/scott/side.svg",
  5326. extra: 754 / 724,
  5327. bottom: 0.069
  5328. }
  5329. },
  5330. upright: {
  5331. height: math.unit(12, "feet"),
  5332. weight: math.unit(2000, "kg"),
  5333. name: "Upright",
  5334. image: {
  5335. source: "./media/characters/scott/upright.svg",
  5336. extra: 3881 / 3722,
  5337. bottom: 0.05
  5338. }
  5339. },
  5340. },
  5341. [
  5342. {
  5343. name: "Normal",
  5344. height: math.unit(12, "feet"),
  5345. default: true
  5346. },
  5347. ]
  5348. ))
  5349. characterMakers.push(() => makeCharacter(
  5350. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5351. {
  5352. side: {
  5353. height: math.unit(8, "meters"),
  5354. weight: math.unit(84755, "lbs"),
  5355. name: "Side",
  5356. image: {
  5357. source: "./media/characters/tobias/side.svg",
  5358. extra: 1474 / 1096,
  5359. bottom: 38.9 / 1513.1235
  5360. }
  5361. },
  5362. },
  5363. [
  5364. {
  5365. name: "Normal",
  5366. height: math.unit(8, "meters"),
  5367. default: true
  5368. },
  5369. ]
  5370. ))
  5371. characterMakers.push(() => makeCharacter(
  5372. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5373. {
  5374. front: {
  5375. height: math.unit(5.5, "feet"),
  5376. weight: math.unit(400, "lbs"),
  5377. name: "Front",
  5378. image: {
  5379. source: "./media/characters/kieran/front.svg",
  5380. extra: 2694 / 2364,
  5381. bottom: 217 / 2908
  5382. }
  5383. },
  5384. side: {
  5385. height: math.unit(5.5, "feet"),
  5386. weight: math.unit(400, "lbs"),
  5387. name: "Side",
  5388. image: {
  5389. source: "./media/characters/kieran/side.svg",
  5390. extra: 875 / 777,
  5391. bottom: 84.6 / 959
  5392. }
  5393. },
  5394. },
  5395. [
  5396. {
  5397. name: "Normal",
  5398. height: math.unit(5.5, "feet"),
  5399. default: true
  5400. },
  5401. ]
  5402. ))
  5403. characterMakers.push(() => makeCharacter(
  5404. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5405. {
  5406. side: {
  5407. height: math.unit(2, "meters"),
  5408. weight: math.unit(70, "kg"),
  5409. name: "Side",
  5410. image: {
  5411. source: "./media/characters/sanya/side.svg",
  5412. bottom: 0.02,
  5413. extra: 1.02
  5414. }
  5415. },
  5416. },
  5417. [
  5418. {
  5419. name: "Small",
  5420. height: math.unit(2, "meters")
  5421. },
  5422. {
  5423. name: "Normal",
  5424. height: math.unit(3, "meters")
  5425. },
  5426. {
  5427. name: "Macro",
  5428. height: math.unit(16, "meters"),
  5429. default: true
  5430. },
  5431. ]
  5432. ))
  5433. characterMakers.push(() => makeCharacter(
  5434. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5435. {
  5436. front: {
  5437. height: math.unit(2, "meters"),
  5438. weight: math.unit(120, "kg"),
  5439. name: "Front",
  5440. image: {
  5441. source: "./media/characters/miranda/front.svg",
  5442. extra: 195 / 185,
  5443. bottom: 10.9 / 206.5
  5444. }
  5445. },
  5446. back: {
  5447. height: math.unit(2, "meters"),
  5448. weight: math.unit(120, "kg"),
  5449. name: "Back",
  5450. image: {
  5451. source: "./media/characters/miranda/back.svg",
  5452. extra: 201 / 193,
  5453. bottom: 2.3 / 203.7
  5454. }
  5455. },
  5456. },
  5457. [
  5458. {
  5459. name: "Normal",
  5460. height: math.unit(10, "feet"),
  5461. default: true
  5462. }
  5463. ]
  5464. ))
  5465. characterMakers.push(() => makeCharacter(
  5466. { name: "James", species: ["deer"], tags: ["anthro"] },
  5467. {
  5468. side: {
  5469. height: math.unit(2, "meters"),
  5470. weight: math.unit(100, "kg"),
  5471. name: "Front",
  5472. image: {
  5473. source: "./media/characters/james/front.svg",
  5474. extra: 10 / 8.5
  5475. }
  5476. },
  5477. },
  5478. [
  5479. {
  5480. name: "Normal",
  5481. height: math.unit(8.5, "feet"),
  5482. default: true
  5483. }
  5484. ]
  5485. ))
  5486. characterMakers.push(() => makeCharacter(
  5487. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5488. {
  5489. side: {
  5490. height: math.unit(9.5, "feet"),
  5491. weight: math.unit(2500, "lbs"),
  5492. name: "Side",
  5493. image: {
  5494. source: "./media/characters/heather/side.svg"
  5495. }
  5496. },
  5497. },
  5498. [
  5499. {
  5500. name: "Normal",
  5501. height: math.unit(9.5, "feet"),
  5502. default: true
  5503. }
  5504. ]
  5505. ))
  5506. characterMakers.push(() => makeCharacter(
  5507. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5508. {
  5509. side: {
  5510. height: math.unit(6.5, "feet"),
  5511. weight: math.unit(400, "lbs"),
  5512. name: "Side",
  5513. image: {
  5514. source: "./media/characters/lukas/side.svg",
  5515. extra: 7.25 / 6.5
  5516. }
  5517. },
  5518. },
  5519. [
  5520. {
  5521. name: "Normal",
  5522. height: math.unit(6.5, "feet"),
  5523. default: true
  5524. }
  5525. ]
  5526. ))
  5527. characterMakers.push(() => makeCharacter(
  5528. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5529. {
  5530. side: {
  5531. height: math.unit(5, "feet"),
  5532. weight: math.unit(3000, "lbs"),
  5533. name: "Side",
  5534. image: {
  5535. source: "./media/characters/louise/side.svg"
  5536. }
  5537. },
  5538. },
  5539. [
  5540. {
  5541. name: "Normal",
  5542. height: math.unit(5, "feet"),
  5543. default: true
  5544. }
  5545. ]
  5546. ))
  5547. characterMakers.push(() => makeCharacter(
  5548. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5549. {
  5550. side: {
  5551. height: math.unit(6, "feet"),
  5552. weight: math.unit(150, "lbs"),
  5553. name: "Side",
  5554. image: {
  5555. source: "./media/characters/ramona/side.svg",
  5556. extra: 871/854,
  5557. bottom: 41/912
  5558. }
  5559. },
  5560. },
  5561. [
  5562. {
  5563. name: "Normal",
  5564. height: math.unit(5.3, "meters"),
  5565. default: true
  5566. },
  5567. {
  5568. name: "Macro",
  5569. height: math.unit(20, "stories")
  5570. },
  5571. {
  5572. name: "Macro+",
  5573. height: math.unit(50, "stories")
  5574. },
  5575. ]
  5576. ))
  5577. characterMakers.push(() => makeCharacter(
  5578. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5579. {
  5580. standing: {
  5581. height: math.unit(5.75, "feet"),
  5582. weight: math.unit(160, "lbs"),
  5583. name: "Standing",
  5584. image: {
  5585. source: "./media/characters/deerpuff/standing.svg",
  5586. extra: 682 / 624
  5587. }
  5588. },
  5589. sitting: {
  5590. height: math.unit(5.75 / 1.79, "feet"),
  5591. weight: math.unit(160, "lbs"),
  5592. name: "Sitting",
  5593. image: {
  5594. source: "./media/characters/deerpuff/sitting.svg",
  5595. bottom: 44 / 400,
  5596. extra: 1
  5597. }
  5598. },
  5599. taurLaying: {
  5600. height: math.unit(6, "feet"),
  5601. weight: math.unit(400, "lbs"),
  5602. name: "Taur (Laying)",
  5603. image: {
  5604. source: "./media/characters/deerpuff/taur-laying.svg"
  5605. }
  5606. },
  5607. },
  5608. [
  5609. {
  5610. name: "Puffball",
  5611. height: math.unit(6, "inches")
  5612. },
  5613. {
  5614. name: "Normalpuff",
  5615. height: math.unit(5.75, "feet")
  5616. },
  5617. {
  5618. name: "Macropuff",
  5619. height: math.unit(1500, "feet"),
  5620. default: true
  5621. },
  5622. {
  5623. name: "Megapuff",
  5624. height: math.unit(500, "miles")
  5625. },
  5626. {
  5627. name: "Gigapuff",
  5628. height: math.unit(250000, "miles")
  5629. },
  5630. {
  5631. name: "Omegapuff",
  5632. height: math.unit(1000, "lightyears")
  5633. },
  5634. ]
  5635. ))
  5636. characterMakers.push(() => makeCharacter(
  5637. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5638. {
  5639. stomping: {
  5640. height: math.unit(6, "feet"),
  5641. weight: math.unit(170, "lbs"),
  5642. name: "Stomping",
  5643. image: {
  5644. source: "./media/characters/vivian/stomping.svg"
  5645. }
  5646. },
  5647. sitting: {
  5648. height: math.unit(6 / 1.75, "feet"),
  5649. weight: math.unit(170, "lbs"),
  5650. name: "Sitting",
  5651. image: {
  5652. source: "./media/characters/vivian/sitting.svg",
  5653. bottom: 1 / 6.4,
  5654. extra: 1,
  5655. }
  5656. },
  5657. },
  5658. [
  5659. {
  5660. name: "Normal",
  5661. height: math.unit(7, "feet"),
  5662. default: true
  5663. },
  5664. {
  5665. name: "Macro",
  5666. height: math.unit(10, "stories")
  5667. },
  5668. {
  5669. name: "Macro+",
  5670. height: math.unit(30, "stories")
  5671. },
  5672. {
  5673. name: "Megamacro",
  5674. height: math.unit(10, "miles")
  5675. },
  5676. {
  5677. name: "Megamacro+",
  5678. height: math.unit(2750000, "meters")
  5679. },
  5680. ]
  5681. ))
  5682. characterMakers.push(() => makeCharacter(
  5683. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5684. {
  5685. front: {
  5686. height: math.unit(6, "feet"),
  5687. weight: math.unit(160, "lbs"),
  5688. name: "Front",
  5689. image: {
  5690. source: "./media/characters/prince/front.svg",
  5691. extra: 3400 / 3000
  5692. }
  5693. },
  5694. jumping: {
  5695. height: math.unit(6, "feet"),
  5696. weight: math.unit(160, "lbs"),
  5697. name: "Jumping",
  5698. image: {
  5699. source: "./media/characters/prince/jump.svg",
  5700. extra: 2555 / 2134
  5701. }
  5702. },
  5703. },
  5704. [
  5705. {
  5706. name: "Normal",
  5707. height: math.unit(7.75, "feet"),
  5708. default: true
  5709. },
  5710. {
  5711. name: "Not cute",
  5712. height: math.unit(17, "feet")
  5713. },
  5714. {
  5715. name: "I said NOT",
  5716. height: math.unit(91, "feet")
  5717. },
  5718. {
  5719. name: "Please stop",
  5720. height: math.unit(560, "feet")
  5721. },
  5722. {
  5723. name: "What have you done",
  5724. height: math.unit(2200, "feet")
  5725. },
  5726. {
  5727. name: "Deer God",
  5728. height: math.unit(3.6, "miles")
  5729. },
  5730. ]
  5731. ))
  5732. characterMakers.push(() => makeCharacter(
  5733. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5734. {
  5735. standing: {
  5736. height: math.unit(6, "feet"),
  5737. weight: math.unit(300, "lbs"),
  5738. name: "Standing",
  5739. image: {
  5740. source: "./media/characters/psymon/standing.svg",
  5741. extra: 1888 / 1810,
  5742. bottom: 0.05
  5743. }
  5744. },
  5745. slithering: {
  5746. height: math.unit(6, "feet"),
  5747. weight: math.unit(300, "lbs"),
  5748. name: "Slithering",
  5749. image: {
  5750. source: "./media/characters/psymon/slithering.svg",
  5751. extra: 1330 / 1224
  5752. }
  5753. },
  5754. slitheringAlt: {
  5755. height: math.unit(6, "feet"),
  5756. weight: math.unit(300, "lbs"),
  5757. name: "Slithering (Alt)",
  5758. image: {
  5759. source: "./media/characters/psymon/slithering-alt.svg",
  5760. extra: 1330 / 1224
  5761. }
  5762. },
  5763. },
  5764. [
  5765. {
  5766. name: "Normal",
  5767. height: math.unit(11.25, "feet"),
  5768. default: true
  5769. },
  5770. {
  5771. name: "Large",
  5772. height: math.unit(27, "feet")
  5773. },
  5774. {
  5775. name: "Giant",
  5776. height: math.unit(87, "feet")
  5777. },
  5778. {
  5779. name: "Macro",
  5780. height: math.unit(365, "feet")
  5781. },
  5782. {
  5783. name: "Megamacro",
  5784. height: math.unit(3, "miles")
  5785. },
  5786. {
  5787. name: "World Serpent",
  5788. height: math.unit(8000, "miles")
  5789. },
  5790. ]
  5791. ))
  5792. characterMakers.push(() => makeCharacter(
  5793. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5794. {
  5795. front: {
  5796. height: math.unit(6, "feet"),
  5797. weight: math.unit(180, "lbs"),
  5798. name: "Front",
  5799. image: {
  5800. source: "./media/characters/daimos/front.svg",
  5801. extra: 4160 / 3897,
  5802. bottom: 0.021
  5803. }
  5804. }
  5805. },
  5806. [
  5807. {
  5808. name: "Normal",
  5809. height: math.unit(8, "feet"),
  5810. default: true
  5811. },
  5812. {
  5813. name: "Big Dog",
  5814. height: math.unit(22, "feet")
  5815. },
  5816. {
  5817. name: "Macro",
  5818. height: math.unit(127, "feet")
  5819. },
  5820. {
  5821. name: "Megamacro",
  5822. height: math.unit(3600, "feet")
  5823. },
  5824. ]
  5825. ))
  5826. characterMakers.push(() => makeCharacter(
  5827. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5828. {
  5829. side: {
  5830. height: math.unit(6, "feet"),
  5831. weight: math.unit(180, "lbs"),
  5832. name: "Side",
  5833. image: {
  5834. source: "./media/characters/blake/side.svg",
  5835. extra: 1212 / 1120,
  5836. bottom: 0.05
  5837. }
  5838. },
  5839. crouched: {
  5840. height: math.unit(6 * 0.57, "feet"),
  5841. weight: math.unit(180, "lbs"),
  5842. name: "Crouched",
  5843. image: {
  5844. source: "./media/characters/blake/crouched.svg",
  5845. extra: 840 / 587,
  5846. bottom: 0.04
  5847. }
  5848. },
  5849. bent: {
  5850. height: math.unit(6 * 0.75, "feet"),
  5851. weight: math.unit(180, "lbs"),
  5852. name: "Bent",
  5853. image: {
  5854. source: "./media/characters/blake/bent.svg",
  5855. extra: 592 / 544,
  5856. bottom: 0.035
  5857. }
  5858. },
  5859. },
  5860. [
  5861. {
  5862. name: "Normal",
  5863. height: math.unit(8 + 1 / 6, "feet"),
  5864. default: true
  5865. },
  5866. {
  5867. name: "Big Backside",
  5868. height: math.unit(37, "feet")
  5869. },
  5870. {
  5871. name: "Subway Shredder",
  5872. height: math.unit(72, "feet")
  5873. },
  5874. {
  5875. name: "City Carver",
  5876. height: math.unit(1675, "feet")
  5877. },
  5878. {
  5879. name: "Tectonic Tweaker",
  5880. height: math.unit(2300, "miles")
  5881. },
  5882. ]
  5883. ))
  5884. characterMakers.push(() => makeCharacter(
  5885. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5886. {
  5887. front: {
  5888. height: math.unit(6, "feet"),
  5889. weight: math.unit(180, "lbs"),
  5890. name: "Front",
  5891. image: {
  5892. source: "./media/characters/guisetto/front.svg",
  5893. extra: 856 / 817,
  5894. bottom: 0.06
  5895. }
  5896. },
  5897. airborne: {
  5898. height: math.unit(6, "feet"),
  5899. weight: math.unit(180, "lbs"),
  5900. name: "Airborne",
  5901. image: {
  5902. source: "./media/characters/guisetto/airborne.svg",
  5903. extra: 584 / 525
  5904. }
  5905. },
  5906. },
  5907. [
  5908. {
  5909. name: "Normal",
  5910. height: math.unit(10 + 11 / 12, "feet"),
  5911. default: true
  5912. },
  5913. {
  5914. name: "Large",
  5915. height: math.unit(35, "feet")
  5916. },
  5917. {
  5918. name: "Macro",
  5919. height: math.unit(475, "feet")
  5920. },
  5921. ]
  5922. ))
  5923. characterMakers.push(() => makeCharacter(
  5924. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5925. {
  5926. front: {
  5927. height: math.unit(6, "feet"),
  5928. weight: math.unit(180, "lbs"),
  5929. name: "Front",
  5930. image: {
  5931. source: "./media/characters/luxor/front.svg",
  5932. extra: 2940 / 2152
  5933. }
  5934. },
  5935. back: {
  5936. height: math.unit(6, "feet"),
  5937. weight: math.unit(180, "lbs"),
  5938. name: "Back",
  5939. image: {
  5940. source: "./media/characters/luxor/back.svg",
  5941. extra: 1083 / 960
  5942. }
  5943. },
  5944. },
  5945. [
  5946. {
  5947. name: "Normal",
  5948. height: math.unit(5 + 5 / 6, "feet"),
  5949. default: true
  5950. },
  5951. {
  5952. name: "Lamp",
  5953. height: math.unit(50, "feet")
  5954. },
  5955. {
  5956. name: "Lämp",
  5957. height: math.unit(300, "feet")
  5958. },
  5959. {
  5960. name: "The sun is a lamp",
  5961. height: math.unit(250000, "miles")
  5962. },
  5963. ]
  5964. ))
  5965. characterMakers.push(() => makeCharacter(
  5966. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5967. {
  5968. front: {
  5969. height: math.unit(6, "feet"),
  5970. weight: math.unit(50, "lbs"),
  5971. name: "Front",
  5972. image: {
  5973. source: "./media/characters/huoyan/front.svg"
  5974. }
  5975. },
  5976. side: {
  5977. height: math.unit(6, "feet"),
  5978. weight: math.unit(180, "lbs"),
  5979. name: "Side",
  5980. image: {
  5981. source: "./media/characters/huoyan/side.svg"
  5982. }
  5983. },
  5984. },
  5985. [
  5986. {
  5987. name: "Chef",
  5988. height: math.unit(9, "feet")
  5989. },
  5990. {
  5991. name: "Normal",
  5992. height: math.unit(65, "feet"),
  5993. default: true
  5994. },
  5995. {
  5996. name: "Macro",
  5997. height: math.unit(780, "feet")
  5998. },
  5999. {
  6000. name: "Flaming Mountain",
  6001. height: math.unit(4.8, "miles")
  6002. },
  6003. {
  6004. name: "Celestial",
  6005. height: math.unit(765000, "miles")
  6006. },
  6007. ]
  6008. ))
  6009. characterMakers.push(() => makeCharacter(
  6010. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6011. {
  6012. front: {
  6013. height: math.unit(5 + 3 / 4, "feet"),
  6014. weight: math.unit(120, "lbs"),
  6015. name: "Front",
  6016. image: {
  6017. source: "./media/characters/tails/front.svg"
  6018. }
  6019. }
  6020. },
  6021. [
  6022. {
  6023. name: "Normal",
  6024. height: math.unit(5 + 3 / 4, "feet"),
  6025. default: true
  6026. }
  6027. ]
  6028. ))
  6029. characterMakers.push(() => makeCharacter(
  6030. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6031. {
  6032. front: {
  6033. height: math.unit(4, "feet"),
  6034. weight: math.unit(50, "lbs"),
  6035. name: "Front",
  6036. image: {
  6037. source: "./media/characters/rainy/front.svg"
  6038. }
  6039. }
  6040. },
  6041. [
  6042. {
  6043. name: "Macro",
  6044. height: math.unit(800, "feet"),
  6045. default: true
  6046. }
  6047. ]
  6048. ))
  6049. characterMakers.push(() => makeCharacter(
  6050. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6051. {
  6052. front: {
  6053. height: math.unit(6, "feet"),
  6054. weight: math.unit(150, "lbs"),
  6055. name: "Front",
  6056. image: {
  6057. source: "./media/characters/rainier/front.svg"
  6058. }
  6059. }
  6060. },
  6061. [
  6062. {
  6063. name: "Micro",
  6064. height: math.unit(2, "mm"),
  6065. default: true
  6066. }
  6067. ]
  6068. ))
  6069. characterMakers.push(() => makeCharacter(
  6070. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6071. {
  6072. front: {
  6073. height: math.unit(8 + 4/12, "feet"),
  6074. weight: math.unit(450, "kilograms"),
  6075. volume: math.unit(5, "cups"),
  6076. name: "Front",
  6077. image: {
  6078. source: "./media/characters/andy-renard/front.svg",
  6079. extra: 1839/1726,
  6080. bottom: 134/1973
  6081. }
  6082. },
  6083. back: {
  6084. height: math.unit(8 + 4/12, "feet"),
  6085. weight: math.unit(450, "kilograms"),
  6086. volume: math.unit(5, "cups"),
  6087. name: "Back",
  6088. image: {
  6089. source: "./media/characters/andy-renard/back.svg",
  6090. extra: 1838/1710,
  6091. bottom: 105/1943
  6092. }
  6093. },
  6094. },
  6095. [
  6096. {
  6097. name: "Tall",
  6098. height: math.unit(8 + 4/12, "feet")
  6099. },
  6100. {
  6101. name: "Mini Macro",
  6102. height: math.unit(15, "feet"),
  6103. default: true
  6104. },
  6105. {
  6106. name: "Macro",
  6107. height: math.unit(100, "feet")
  6108. },
  6109. {
  6110. name: "Mega Macro",
  6111. height: math.unit(1000, "feet")
  6112. },
  6113. {
  6114. name: "Giga Macro",
  6115. height: math.unit(10, "miles")
  6116. },
  6117. {
  6118. name: "God Macro",
  6119. height: math.unit(1, "multiverse")
  6120. },
  6121. ]
  6122. ))
  6123. characterMakers.push(() => makeCharacter(
  6124. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6125. {
  6126. front: {
  6127. height: math.unit(6, "feet"),
  6128. weight: math.unit(210, "lbs"),
  6129. name: "Front",
  6130. image: {
  6131. source: "./media/characters/cimmaron/front-sfw.svg",
  6132. extra: 701 / 676,
  6133. bottom: 0.046
  6134. }
  6135. },
  6136. back: {
  6137. height: math.unit(6, "feet"),
  6138. weight: math.unit(210, "lbs"),
  6139. name: "Back",
  6140. image: {
  6141. source: "./media/characters/cimmaron/back-sfw.svg",
  6142. extra: 701 / 676,
  6143. bottom: 0.046
  6144. }
  6145. },
  6146. frontNsfw: {
  6147. height: math.unit(6, "feet"),
  6148. weight: math.unit(210, "lbs"),
  6149. name: "Front (NSFW)",
  6150. image: {
  6151. source: "./media/characters/cimmaron/front-nsfw.svg",
  6152. extra: 701 / 676,
  6153. bottom: 0.046
  6154. }
  6155. },
  6156. backNsfw: {
  6157. height: math.unit(6, "feet"),
  6158. weight: math.unit(210, "lbs"),
  6159. name: "Back (NSFW)",
  6160. image: {
  6161. source: "./media/characters/cimmaron/back-nsfw.svg",
  6162. extra: 701 / 676,
  6163. bottom: 0.046
  6164. }
  6165. },
  6166. dick: {
  6167. height: math.unit(1.714, "feet"),
  6168. name: "Dick",
  6169. image: {
  6170. source: "./media/characters/cimmaron/dick.svg"
  6171. }
  6172. },
  6173. },
  6174. [
  6175. {
  6176. name: "Normal",
  6177. height: math.unit(6, "feet"),
  6178. default: true
  6179. },
  6180. {
  6181. name: "Macro Mayor",
  6182. height: math.unit(350, "meters")
  6183. },
  6184. ]
  6185. ))
  6186. characterMakers.push(() => makeCharacter(
  6187. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6188. {
  6189. front: {
  6190. height: math.unit(6, "feet"),
  6191. weight: math.unit(200, "lbs"),
  6192. name: "Front",
  6193. image: {
  6194. source: "./media/characters/akari/front.svg",
  6195. extra: 962 / 901,
  6196. bottom: 0.04
  6197. }
  6198. }
  6199. },
  6200. [
  6201. {
  6202. name: "Micro",
  6203. height: math.unit(5, "inches"),
  6204. default: true
  6205. },
  6206. {
  6207. name: "Normal",
  6208. height: math.unit(7, "feet")
  6209. },
  6210. ]
  6211. ))
  6212. characterMakers.push(() => makeCharacter(
  6213. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6214. {
  6215. front: {
  6216. height: math.unit(6, "feet"),
  6217. weight: math.unit(140, "lbs"),
  6218. name: "Front",
  6219. image: {
  6220. source: "./media/characters/cynosura/front.svg",
  6221. extra: 896 / 847
  6222. }
  6223. },
  6224. back: {
  6225. height: math.unit(6, "feet"),
  6226. weight: math.unit(140, "lbs"),
  6227. name: "Back",
  6228. image: {
  6229. source: "./media/characters/cynosura/back.svg",
  6230. extra: 1365 / 1250
  6231. }
  6232. },
  6233. },
  6234. [
  6235. {
  6236. name: "Micro",
  6237. height: math.unit(4, "inches")
  6238. },
  6239. {
  6240. name: "Normal",
  6241. height: math.unit(5.75, "feet"),
  6242. default: true
  6243. },
  6244. {
  6245. name: "Tall",
  6246. height: math.unit(10, "feet")
  6247. },
  6248. {
  6249. name: "Big",
  6250. height: math.unit(20, "feet")
  6251. },
  6252. {
  6253. name: "Macro",
  6254. height: math.unit(50, "feet")
  6255. },
  6256. ]
  6257. ))
  6258. characterMakers.push(() => makeCharacter(
  6259. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6260. {
  6261. front: {
  6262. height: math.unit(13 + 2/12, "feet"),
  6263. weight: math.unit(800, "kg"),
  6264. name: "Front",
  6265. image: {
  6266. source: "./media/characters/gin/front.svg",
  6267. extra: 1312/1191,
  6268. bottom: 45/1357
  6269. }
  6270. },
  6271. mouth: {
  6272. height: math.unit(2.39 * 1.8, "feet"),
  6273. name: "Mouth",
  6274. image: {
  6275. source: "./media/characters/gin/mouth.svg"
  6276. }
  6277. },
  6278. hand: {
  6279. height: math.unit(1.57 * 2.19, "feet"),
  6280. name: "Hand",
  6281. image: {
  6282. source: "./media/characters/gin/hand.svg"
  6283. }
  6284. },
  6285. foot: {
  6286. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6287. name: "Foot",
  6288. image: {
  6289. source: "./media/characters/gin/foot.svg"
  6290. }
  6291. },
  6292. sole: {
  6293. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6294. name: "Sole",
  6295. image: {
  6296. source: "./media/characters/gin/sole.svg"
  6297. }
  6298. },
  6299. },
  6300. [
  6301. {
  6302. name: "Very Small",
  6303. height: math.unit(13 + 2 / 12, "feet")
  6304. },
  6305. {
  6306. name: "Micro",
  6307. height: math.unit(600, "miles")
  6308. },
  6309. {
  6310. name: "Regular",
  6311. height: math.unit(20, "earths"),
  6312. default: true
  6313. },
  6314. {
  6315. name: "Macro",
  6316. height: math.unit(2.2, "solarradii")
  6317. },
  6318. {
  6319. name: "Teramacro",
  6320. height: math.unit(1.2, "galaxies")
  6321. },
  6322. {
  6323. name: "Omegamacro",
  6324. height: math.unit(200, "universes")
  6325. },
  6326. ]
  6327. ))
  6328. characterMakers.push(() => makeCharacter(
  6329. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6330. {
  6331. front: {
  6332. height: math.unit(6 + 1 / 6, "feet"),
  6333. weight: math.unit(178, "lbs"),
  6334. name: "Front",
  6335. image: {
  6336. source: "./media/characters/guy/front.svg"
  6337. }
  6338. }
  6339. },
  6340. [
  6341. {
  6342. name: "Normal",
  6343. height: math.unit(6 + 1 / 6, "feet"),
  6344. default: true
  6345. },
  6346. {
  6347. name: "Large",
  6348. height: math.unit(25 + 7 / 12, "feet")
  6349. },
  6350. {
  6351. name: "Macro",
  6352. height: math.unit(60 + 9 / 12, "feet")
  6353. },
  6354. {
  6355. name: "Macro+",
  6356. height: math.unit(246, "feet")
  6357. },
  6358. {
  6359. name: "Macro++",
  6360. height: math.unit(878, "feet")
  6361. }
  6362. ]
  6363. ))
  6364. characterMakers.push(() => makeCharacter(
  6365. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6366. {
  6367. front: {
  6368. height: math.unit(9, "feet"),
  6369. weight: math.unit(800, "lbs"),
  6370. name: "Front",
  6371. image: {
  6372. source: "./media/characters/tiberius/front.svg",
  6373. extra: 2295 / 2071
  6374. }
  6375. },
  6376. back: {
  6377. height: math.unit(9, "feet"),
  6378. weight: math.unit(800, "lbs"),
  6379. name: "Back",
  6380. image: {
  6381. source: "./media/characters/tiberius/back.svg",
  6382. extra: 2373 / 2160
  6383. }
  6384. },
  6385. },
  6386. [
  6387. {
  6388. name: "Normal",
  6389. height: math.unit(9, "feet"),
  6390. default: true
  6391. }
  6392. ]
  6393. ))
  6394. characterMakers.push(() => makeCharacter(
  6395. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6396. {
  6397. front: {
  6398. height: math.unit(6, "feet"),
  6399. weight: math.unit(600, "lbs"),
  6400. name: "Front",
  6401. image: {
  6402. source: "./media/characters/surgo/front.svg",
  6403. extra: 3591 / 2227
  6404. }
  6405. },
  6406. back: {
  6407. height: math.unit(6, "feet"),
  6408. weight: math.unit(600, "lbs"),
  6409. name: "Back",
  6410. image: {
  6411. source: "./media/characters/surgo/back.svg",
  6412. extra: 3557 / 2228
  6413. }
  6414. },
  6415. laying: {
  6416. height: math.unit(6 * 0.85, "feet"),
  6417. weight: math.unit(600, "lbs"),
  6418. name: "Laying",
  6419. image: {
  6420. source: "./media/characters/surgo/laying.svg"
  6421. }
  6422. },
  6423. },
  6424. [
  6425. {
  6426. name: "Normal",
  6427. height: math.unit(6, "feet"),
  6428. default: true
  6429. }
  6430. ]
  6431. ))
  6432. characterMakers.push(() => makeCharacter(
  6433. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6434. {
  6435. side: {
  6436. height: math.unit(6, "feet"),
  6437. weight: math.unit(150, "lbs"),
  6438. name: "Side",
  6439. image: {
  6440. source: "./media/characters/cibus/side.svg",
  6441. extra: 800 / 400
  6442. }
  6443. },
  6444. },
  6445. [
  6446. {
  6447. name: "Normal",
  6448. height: math.unit(6, "feet"),
  6449. default: true
  6450. }
  6451. ]
  6452. ))
  6453. characterMakers.push(() => makeCharacter(
  6454. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6455. {
  6456. front: {
  6457. height: math.unit(6, "feet"),
  6458. weight: math.unit(240, "lbs"),
  6459. name: "Front",
  6460. image: {
  6461. source: "./media/characters/nibbles/front.svg"
  6462. }
  6463. },
  6464. side: {
  6465. height: math.unit(6, "feet"),
  6466. weight: math.unit(240, "lbs"),
  6467. name: "Side",
  6468. image: {
  6469. source: "./media/characters/nibbles/side.svg"
  6470. }
  6471. },
  6472. },
  6473. [
  6474. {
  6475. name: "Normal",
  6476. height: math.unit(9, "feet"),
  6477. default: true
  6478. }
  6479. ]
  6480. ))
  6481. characterMakers.push(() => makeCharacter(
  6482. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6483. {
  6484. side: {
  6485. height: math.unit(5 + 1 / 6, "feet"),
  6486. weight: math.unit(130, "lbs"),
  6487. name: "Side",
  6488. image: {
  6489. source: "./media/characters/rikky/side.svg",
  6490. extra: 851 / 801
  6491. }
  6492. },
  6493. },
  6494. [
  6495. {
  6496. name: "Normal",
  6497. height: math.unit(5 + 1 / 6, "feet")
  6498. },
  6499. {
  6500. name: "Macro",
  6501. height: math.unit(152, "feet"),
  6502. default: true
  6503. },
  6504. {
  6505. name: "Megamacro",
  6506. height: math.unit(7, "miles")
  6507. }
  6508. ]
  6509. ))
  6510. characterMakers.push(() => makeCharacter(
  6511. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6512. {
  6513. side: {
  6514. height: math.unit(370, "cm"),
  6515. weight: math.unit(350, "lbs"),
  6516. name: "Side",
  6517. image: {
  6518. source: "./media/characters/malfressa/side.svg"
  6519. }
  6520. },
  6521. walking: {
  6522. height: math.unit(370, "cm"),
  6523. weight: math.unit(350, "lbs"),
  6524. name: "Walking",
  6525. image: {
  6526. source: "./media/characters/malfressa/walking.svg"
  6527. }
  6528. },
  6529. feral: {
  6530. height: math.unit(2500, "cm"),
  6531. weight: math.unit(100000, "lbs"),
  6532. name: "Feral",
  6533. image: {
  6534. source: "./media/characters/malfressa/feral.svg",
  6535. extra: 2108 / 837,
  6536. bottom: 0.02
  6537. }
  6538. },
  6539. },
  6540. [
  6541. {
  6542. name: "Normal",
  6543. height: math.unit(370, "cm")
  6544. },
  6545. {
  6546. name: "Macro",
  6547. height: math.unit(300, "meters"),
  6548. default: true
  6549. }
  6550. ]
  6551. ))
  6552. characterMakers.push(() => makeCharacter(
  6553. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6554. {
  6555. front: {
  6556. height: math.unit(6, "feet"),
  6557. weight: math.unit(60, "kg"),
  6558. name: "Front",
  6559. image: {
  6560. source: "./media/characters/jaro/front.svg",
  6561. extra: 845/817,
  6562. bottom: 45/890
  6563. }
  6564. },
  6565. back: {
  6566. height: math.unit(6, "feet"),
  6567. weight: math.unit(60, "kg"),
  6568. name: "Back",
  6569. image: {
  6570. source: "./media/characters/jaro/back.svg",
  6571. extra: 847/817,
  6572. bottom: 34/881
  6573. }
  6574. },
  6575. },
  6576. [
  6577. {
  6578. name: "Micro",
  6579. height: math.unit(7, "inches")
  6580. },
  6581. {
  6582. name: "Normal",
  6583. height: math.unit(5.5, "feet"),
  6584. default: true
  6585. },
  6586. {
  6587. name: "Minimacro",
  6588. height: math.unit(20, "feet")
  6589. },
  6590. {
  6591. name: "Macro",
  6592. height: math.unit(200, "meters")
  6593. }
  6594. ]
  6595. ))
  6596. characterMakers.push(() => makeCharacter(
  6597. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6598. {
  6599. front: {
  6600. height: math.unit(6, "feet"),
  6601. weight: math.unit(195, "lb"),
  6602. name: "Front",
  6603. image: {
  6604. source: "./media/characters/rogue/front.svg"
  6605. }
  6606. },
  6607. },
  6608. [
  6609. {
  6610. name: "Macro",
  6611. height: math.unit(90, "feet"),
  6612. default: true
  6613. },
  6614. ]
  6615. ))
  6616. characterMakers.push(() => makeCharacter(
  6617. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6618. {
  6619. standing: {
  6620. height: math.unit(5 + 8 / 12, "feet"),
  6621. weight: math.unit(140, "lb"),
  6622. name: "Standing",
  6623. image: {
  6624. source: "./media/characters/piper/standing.svg",
  6625. extra: 1440/1284,
  6626. bottom: 66/1506
  6627. }
  6628. },
  6629. running: {
  6630. height: math.unit(5 + 8 / 12, "feet"),
  6631. weight: math.unit(140, "lb"),
  6632. name: "Running",
  6633. image: {
  6634. source: "./media/characters/piper/running.svg",
  6635. extra: 3948/3655,
  6636. bottom: 0/3948
  6637. }
  6638. },
  6639. sole: {
  6640. height: math.unit(0.81, "feet"),
  6641. weight: math.unit(2, "kg"),
  6642. name: "Sole",
  6643. image: {
  6644. source: "./media/characters/piper/sole.svg"
  6645. }
  6646. },
  6647. nipple: {
  6648. height: math.unit(0.25, "feet"),
  6649. weight: math.unit(1.5, "lb"),
  6650. name: "Nipple",
  6651. image: {
  6652. source: "./media/characters/piper/nipple.svg"
  6653. }
  6654. },
  6655. head: {
  6656. height: math.unit(1.1, "feet"),
  6657. name: "Head",
  6658. image: {
  6659. source: "./media/characters/piper/head.svg"
  6660. }
  6661. },
  6662. },
  6663. [
  6664. {
  6665. name: "Micro",
  6666. height: math.unit(2, "inches")
  6667. },
  6668. {
  6669. name: "Normal",
  6670. height: math.unit(5 + 8 / 12, "feet")
  6671. },
  6672. {
  6673. name: "Macro",
  6674. height: math.unit(250, "feet"),
  6675. default: true
  6676. },
  6677. {
  6678. name: "Megamacro",
  6679. height: math.unit(7, "miles")
  6680. },
  6681. ]
  6682. ))
  6683. characterMakers.push(() => makeCharacter(
  6684. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6685. {
  6686. front: {
  6687. height: math.unit(6, "feet"),
  6688. weight: math.unit(220, "lb"),
  6689. name: "Front",
  6690. image: {
  6691. source: "./media/characters/gemini/front.svg"
  6692. }
  6693. },
  6694. back: {
  6695. height: math.unit(6, "feet"),
  6696. weight: math.unit(220, "lb"),
  6697. name: "Back",
  6698. image: {
  6699. source: "./media/characters/gemini/back.svg"
  6700. }
  6701. },
  6702. kneeling: {
  6703. height: math.unit(6 / 1.5, "feet"),
  6704. weight: math.unit(220, "lb"),
  6705. name: "Kneeling",
  6706. image: {
  6707. source: "./media/characters/gemini/kneeling.svg",
  6708. bottom: 0.02
  6709. }
  6710. },
  6711. },
  6712. [
  6713. {
  6714. name: "Macro",
  6715. height: math.unit(300, "meters"),
  6716. default: true
  6717. },
  6718. {
  6719. name: "Megamacro",
  6720. height: math.unit(6900, "meters")
  6721. },
  6722. ]
  6723. ))
  6724. characterMakers.push(() => makeCharacter(
  6725. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6726. {
  6727. anthro: {
  6728. height: math.unit(2.35, "meters"),
  6729. weight: math.unit(73, "kg"),
  6730. name: "Anthro",
  6731. image: {
  6732. source: "./media/characters/alicia/anthro.svg",
  6733. extra: 2571 / 2385,
  6734. bottom: 75 / 2648
  6735. }
  6736. },
  6737. paw: {
  6738. height: math.unit(1.32, "feet"),
  6739. name: "Paw",
  6740. image: {
  6741. source: "./media/characters/alicia/paw.svg"
  6742. }
  6743. },
  6744. feral: {
  6745. height: math.unit(1.69, "meters"),
  6746. weight: math.unit(73, "kg"),
  6747. name: "Feral",
  6748. image: {
  6749. source: "./media/characters/alicia/feral.svg",
  6750. extra: 2123 / 1715,
  6751. bottom: 222 / 2349
  6752. }
  6753. },
  6754. },
  6755. [
  6756. {
  6757. name: "Normal",
  6758. height: math.unit(2.35, "meters")
  6759. },
  6760. {
  6761. name: "Macro",
  6762. height: math.unit(60, "meters"),
  6763. default: true
  6764. },
  6765. {
  6766. name: "Megamacro",
  6767. height: math.unit(10000, "kilometers")
  6768. },
  6769. ]
  6770. ))
  6771. characterMakers.push(() => makeCharacter(
  6772. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6773. {
  6774. front: {
  6775. height: math.unit(7, "feet"),
  6776. weight: math.unit(250, "lbs"),
  6777. name: "Front",
  6778. image: {
  6779. source: "./media/characters/archy/front.svg"
  6780. }
  6781. }
  6782. },
  6783. [
  6784. {
  6785. name: "Micro",
  6786. height: math.unit(1, "inch")
  6787. },
  6788. {
  6789. name: "Shorty",
  6790. height: math.unit(5, "feet")
  6791. },
  6792. {
  6793. name: "Normal",
  6794. height: math.unit(7, "feet")
  6795. },
  6796. {
  6797. name: "Macro",
  6798. height: math.unit(600, "meters"),
  6799. default: true
  6800. },
  6801. {
  6802. name: "Megamacro",
  6803. height: math.unit(1, "mile")
  6804. },
  6805. ]
  6806. ))
  6807. characterMakers.push(() => makeCharacter(
  6808. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6809. {
  6810. front: {
  6811. height: math.unit(1.65, "meters"),
  6812. weight: math.unit(74, "kg"),
  6813. name: "Front",
  6814. image: {
  6815. source: "./media/characters/berri/front.svg",
  6816. extra: 857 / 837,
  6817. bottom: 18 / 877
  6818. }
  6819. },
  6820. bum: {
  6821. height: math.unit(1.46, "feet"),
  6822. name: "Bum",
  6823. image: {
  6824. source: "./media/characters/berri/bum.svg"
  6825. }
  6826. },
  6827. mouth: {
  6828. height: math.unit(0.44, "feet"),
  6829. name: "Mouth",
  6830. image: {
  6831. source: "./media/characters/berri/mouth.svg"
  6832. }
  6833. },
  6834. paw: {
  6835. height: math.unit(0.826, "feet"),
  6836. name: "Paw",
  6837. image: {
  6838. source: "./media/characters/berri/paw.svg"
  6839. }
  6840. },
  6841. },
  6842. [
  6843. {
  6844. name: "Normal",
  6845. height: math.unit(1.65, "meters")
  6846. },
  6847. {
  6848. name: "Macro",
  6849. height: math.unit(60, "m"),
  6850. default: true
  6851. },
  6852. {
  6853. name: "Megamacro",
  6854. height: math.unit(9.213, "km")
  6855. },
  6856. {
  6857. name: "Planet Eater",
  6858. height: math.unit(489, "megameters")
  6859. },
  6860. {
  6861. name: "Teramacro",
  6862. height: math.unit(2471635000000, "meters")
  6863. },
  6864. {
  6865. name: "Examacro",
  6866. height: math.unit(8.0624e+26, "meters")
  6867. }
  6868. ]
  6869. ))
  6870. characterMakers.push(() => makeCharacter(
  6871. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6872. {
  6873. front: {
  6874. height: math.unit(1.72, "meters"),
  6875. weight: math.unit(68, "kg"),
  6876. name: "Front",
  6877. image: {
  6878. source: "./media/characters/lexi/front.svg"
  6879. }
  6880. }
  6881. },
  6882. [
  6883. {
  6884. name: "Very Smol",
  6885. height: math.unit(10, "mm")
  6886. },
  6887. {
  6888. name: "Micro",
  6889. height: math.unit(6.8, "cm"),
  6890. default: true
  6891. },
  6892. {
  6893. name: "Normal",
  6894. height: math.unit(1.72, "m")
  6895. }
  6896. ]
  6897. ))
  6898. characterMakers.push(() => makeCharacter(
  6899. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6900. {
  6901. front: {
  6902. height: math.unit(1.69, "meters"),
  6903. weight: math.unit(68, "kg"),
  6904. name: "Front",
  6905. image: {
  6906. source: "./media/characters/martin/front.svg",
  6907. extra: 596 / 581
  6908. }
  6909. }
  6910. },
  6911. [
  6912. {
  6913. name: "Micro",
  6914. height: math.unit(6.85, "cm"),
  6915. default: true
  6916. },
  6917. {
  6918. name: "Normal",
  6919. height: math.unit(1.69, "m")
  6920. }
  6921. ]
  6922. ))
  6923. characterMakers.push(() => makeCharacter(
  6924. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6925. {
  6926. front: {
  6927. height: math.unit(1.69, "meters"),
  6928. weight: math.unit(68, "kg"),
  6929. name: "Front",
  6930. image: {
  6931. source: "./media/characters/juno/front.svg"
  6932. }
  6933. }
  6934. },
  6935. [
  6936. {
  6937. name: "Micro",
  6938. height: math.unit(7, "cm")
  6939. },
  6940. {
  6941. name: "Normal",
  6942. height: math.unit(1.89, "m")
  6943. },
  6944. {
  6945. name: "Macro",
  6946. height: math.unit(353, "meters"),
  6947. default: true
  6948. }
  6949. ]
  6950. ))
  6951. characterMakers.push(() => makeCharacter(
  6952. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6953. {
  6954. front: {
  6955. height: math.unit(1.93, "meters"),
  6956. weight: math.unit(83, "kg"),
  6957. name: "Front",
  6958. image: {
  6959. source: "./media/characters/samantha/front.svg"
  6960. }
  6961. },
  6962. frontClothed: {
  6963. height: math.unit(1.93, "meters"),
  6964. weight: math.unit(83, "kg"),
  6965. name: "Front (Clothed)",
  6966. image: {
  6967. source: "./media/characters/samantha/front-clothed.svg"
  6968. }
  6969. },
  6970. back: {
  6971. height: math.unit(1.93, "meters"),
  6972. weight: math.unit(83, "kg"),
  6973. name: "Back",
  6974. image: {
  6975. source: "./media/characters/samantha/back.svg"
  6976. }
  6977. },
  6978. },
  6979. [
  6980. {
  6981. name: "Normal",
  6982. height: math.unit(1.93, "m")
  6983. },
  6984. {
  6985. name: "Macro",
  6986. height: math.unit(74, "meters"),
  6987. default: true
  6988. },
  6989. {
  6990. name: "Macro+",
  6991. height: math.unit(223, "meters"),
  6992. },
  6993. {
  6994. name: "Megamacro",
  6995. height: math.unit(8381, "meters"),
  6996. },
  6997. {
  6998. name: "Megamacro+",
  6999. height: math.unit(12000, "kilometers")
  7000. },
  7001. ]
  7002. ))
  7003. characterMakers.push(() => makeCharacter(
  7004. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7005. {
  7006. front: {
  7007. height: math.unit(1.92, "meters"),
  7008. weight: math.unit(80, "kg"),
  7009. name: "Front",
  7010. image: {
  7011. source: "./media/characters/dr-clay/front.svg"
  7012. }
  7013. },
  7014. frontClothed: {
  7015. height: math.unit(1.92, "meters"),
  7016. weight: math.unit(80, "kg"),
  7017. name: "Front (Clothed)",
  7018. image: {
  7019. source: "./media/characters/dr-clay/front-clothed.svg"
  7020. }
  7021. }
  7022. },
  7023. [
  7024. {
  7025. name: "Normal",
  7026. height: math.unit(1.92, "m")
  7027. },
  7028. {
  7029. name: "Macro",
  7030. height: math.unit(214, "meters"),
  7031. default: true
  7032. },
  7033. {
  7034. name: "Macro+",
  7035. height: math.unit(12.237, "meters"),
  7036. },
  7037. {
  7038. name: "Megamacro",
  7039. height: math.unit(557, "megameters"),
  7040. },
  7041. {
  7042. name: "Unimaginable",
  7043. height: math.unit(120e9, "lightyears")
  7044. },
  7045. ]
  7046. ))
  7047. characterMakers.push(() => makeCharacter(
  7048. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7049. {
  7050. front: {
  7051. height: math.unit(2, "meters"),
  7052. weight: math.unit(80, "kg"),
  7053. name: "Front",
  7054. image: {
  7055. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7056. }
  7057. }
  7058. },
  7059. [
  7060. {
  7061. name: "Teramacro",
  7062. height: math.unit(500000, "lightyears"),
  7063. default: true
  7064. },
  7065. ]
  7066. ))
  7067. characterMakers.push(() => makeCharacter(
  7068. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7069. {
  7070. crux: {
  7071. height: math.unit(2, "meters"),
  7072. weight: math.unit(150, "kg"),
  7073. name: "Crux",
  7074. image: {
  7075. source: "./media/characters/vemus/crux.svg",
  7076. extra: 1074/936,
  7077. bottom: 23/1097
  7078. }
  7079. },
  7080. skunkTanuki: {
  7081. height: math.unit(2, "meters"),
  7082. weight: math.unit(150, "kg"),
  7083. name: "Skunk-Tanuki",
  7084. image: {
  7085. source: "./media/characters/vemus/skunk-tanuki.svg",
  7086. extra: 926/893,
  7087. bottom: 20/946
  7088. }
  7089. },
  7090. },
  7091. [
  7092. {
  7093. name: "Normal",
  7094. height: math.unit(3.75, "meters"),
  7095. default: true
  7096. },
  7097. {
  7098. name: "Big",
  7099. height: math.unit(8, "meters")
  7100. },
  7101. {
  7102. name: "Macro",
  7103. height: math.unit(100, "meters")
  7104. },
  7105. {
  7106. name: "Macro+",
  7107. height: math.unit(1500, "meters")
  7108. },
  7109. {
  7110. name: "Stellar",
  7111. height: math.unit(14e8, "meters")
  7112. },
  7113. ]
  7114. ))
  7115. characterMakers.push(() => makeCharacter(
  7116. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7117. {
  7118. front: {
  7119. height: math.unit(2, "meters"),
  7120. weight: math.unit(70, "kg"),
  7121. name: "Front",
  7122. image: {
  7123. source: "./media/characters/beherit/front.svg",
  7124. extra: 1234/1109,
  7125. bottom: 55/1289
  7126. }
  7127. }
  7128. },
  7129. [
  7130. {
  7131. name: "Normal",
  7132. height: math.unit(6, "feet")
  7133. },
  7134. {
  7135. name: "Lorg",
  7136. height: math.unit(25, "feet"),
  7137. default: true
  7138. },
  7139. {
  7140. name: "Lorger",
  7141. height: math.unit(75, "feet")
  7142. },
  7143. {
  7144. name: "Macro",
  7145. height: math.unit(200, "meters")
  7146. },
  7147. ]
  7148. ))
  7149. characterMakers.push(() => makeCharacter(
  7150. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7151. {
  7152. front: {
  7153. height: math.unit(2, "meters"),
  7154. weight: math.unit(150, "kg"),
  7155. name: "Front",
  7156. image: {
  7157. source: "./media/characters/everett/front.svg",
  7158. extra: 1017/866,
  7159. bottom: 86/1103
  7160. }
  7161. },
  7162. paw: {
  7163. height: math.unit(2 / 3.6, "meters"),
  7164. name: "Paw",
  7165. image: {
  7166. source: "./media/characters/everett/paw.svg"
  7167. }
  7168. },
  7169. },
  7170. [
  7171. {
  7172. name: "Normal",
  7173. height: math.unit(15, "feet"),
  7174. default: true
  7175. },
  7176. {
  7177. name: "Lorg",
  7178. height: math.unit(70, "feet"),
  7179. default: true
  7180. },
  7181. {
  7182. name: "Lorger",
  7183. height: math.unit(250, "feet")
  7184. },
  7185. {
  7186. name: "Macro",
  7187. height: math.unit(500, "meters")
  7188. },
  7189. ]
  7190. ))
  7191. characterMakers.push(() => makeCharacter(
  7192. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7193. {
  7194. front: {
  7195. height: math.unit(2, "meters"),
  7196. weight: math.unit(86, "kg"),
  7197. name: "Front",
  7198. image: {
  7199. source: "./media/characters/rose/front.svg",
  7200. extra: 1785/1636,
  7201. bottom: 30/1815
  7202. },
  7203. form: "liom",
  7204. default: true
  7205. },
  7206. frontSporty: {
  7207. height: math.unit(2, "meters"),
  7208. weight: math.unit(86, "kg"),
  7209. name: "Front (Sporty)",
  7210. image: {
  7211. source: "./media/characters/rose/front-sporty.svg",
  7212. extra: 350/335,
  7213. bottom: 10/360
  7214. },
  7215. form: "liom"
  7216. },
  7217. frontAlt: {
  7218. height: math.unit(1.6, "meters"),
  7219. weight: math.unit(86, "kg"),
  7220. name: "Front (Alt)",
  7221. image: {
  7222. source: "./media/characters/rose/front-alt.svg",
  7223. extra: 299/283,
  7224. bottom: 3/302
  7225. },
  7226. form: "liom"
  7227. },
  7228. plush: {
  7229. height: math.unit(2, "meters"),
  7230. weight: math.unit(86/3, "kg"),
  7231. name: "Plush",
  7232. image: {
  7233. source: "./media/characters/rose/plush.svg",
  7234. extra: 361/337,
  7235. bottom: 11/372
  7236. },
  7237. form: "plush",
  7238. default: true
  7239. },
  7240. faeStanding: {
  7241. height: math.unit(10, "cm"),
  7242. weight: math.unit(10, "grams"),
  7243. name: "Standing",
  7244. image: {
  7245. source: "./media/characters/rose/fae-standing.svg",
  7246. extra: 1189/1060,
  7247. bottom: 27/1216
  7248. },
  7249. form: "fae",
  7250. default: true
  7251. },
  7252. faeSitting: {
  7253. height: math.unit(5, "cm"),
  7254. weight: math.unit(10, "grams"),
  7255. name: "Sitting",
  7256. image: {
  7257. source: "./media/characters/rose/fae-sitting.svg",
  7258. extra: 737/577,
  7259. bottom: 356/1093
  7260. },
  7261. form: "fae"
  7262. },
  7263. faePaw: {
  7264. height: math.unit(1.35, "cm"),
  7265. name: "Paw",
  7266. image: {
  7267. source: "./media/characters/rose/fae-paw.svg"
  7268. },
  7269. form: "fae"
  7270. },
  7271. },
  7272. [
  7273. {
  7274. name: "True Micro",
  7275. height: math.unit(9, "cm"),
  7276. form: "liom"
  7277. },
  7278. {
  7279. name: "Micro",
  7280. height: math.unit(16, "cm"),
  7281. form: "liom"
  7282. },
  7283. {
  7284. name: "Normal",
  7285. height: math.unit(1.85, "meters"),
  7286. default: true,
  7287. form: "liom"
  7288. },
  7289. {
  7290. name: "Mini-Macro",
  7291. height: math.unit(5, "meters"),
  7292. form: "liom"
  7293. },
  7294. {
  7295. name: "Macro",
  7296. height: math.unit(15, "meters"),
  7297. form: "liom"
  7298. },
  7299. {
  7300. name: "True Macro",
  7301. height: math.unit(40, "meters"),
  7302. form: "liom"
  7303. },
  7304. {
  7305. name: "City Scale",
  7306. height: math.unit(1, "km"),
  7307. form: "liom"
  7308. },
  7309. {
  7310. name: "Plushie",
  7311. height: math.unit(9, "cm"),
  7312. form: "plush",
  7313. default: true
  7314. },
  7315. {
  7316. name: "Fae",
  7317. height: math.unit(10, "cm"),
  7318. form: "fae",
  7319. default: true
  7320. },
  7321. ],
  7322. {
  7323. "liom": {
  7324. name: "Liom"
  7325. },
  7326. "plush": {
  7327. name: "Plush"
  7328. },
  7329. "fae": {
  7330. name: "Fae Fox",
  7331. default: true
  7332. }
  7333. }
  7334. ))
  7335. characterMakers.push(() => makeCharacter(
  7336. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7337. {
  7338. front: {
  7339. height: math.unit(2, "meters"),
  7340. weight: math.unit(350, "lbs"),
  7341. name: "Front",
  7342. image: {
  7343. source: "./media/characters/regal/front.svg"
  7344. }
  7345. },
  7346. back: {
  7347. height: math.unit(2, "meters"),
  7348. weight: math.unit(350, "lbs"),
  7349. name: "Back",
  7350. image: {
  7351. source: "./media/characters/regal/back.svg"
  7352. }
  7353. },
  7354. },
  7355. [
  7356. {
  7357. name: "Macro",
  7358. height: math.unit(350, "feet"),
  7359. default: true
  7360. }
  7361. ]
  7362. ))
  7363. characterMakers.push(() => makeCharacter(
  7364. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7365. {
  7366. front: {
  7367. height: math.unit(4 + 11 / 12, "feet"),
  7368. weight: math.unit(100, "lbs"),
  7369. name: "Front",
  7370. image: {
  7371. source: "./media/characters/opal/front.svg"
  7372. }
  7373. },
  7374. frontAlt: {
  7375. height: math.unit(4 + 11 / 12, "feet"),
  7376. weight: math.unit(100, "lbs"),
  7377. name: "Front (Alt)",
  7378. image: {
  7379. source: "./media/characters/opal/front-alt.svg"
  7380. }
  7381. },
  7382. },
  7383. [
  7384. {
  7385. name: "Small",
  7386. height: math.unit(4 + 11 / 12, "feet")
  7387. },
  7388. {
  7389. name: "Normal",
  7390. height: math.unit(20, "feet"),
  7391. default: true
  7392. },
  7393. {
  7394. name: "Macro",
  7395. height: math.unit(120, "feet")
  7396. },
  7397. {
  7398. name: "Megamacro",
  7399. height: math.unit(80, "miles")
  7400. },
  7401. {
  7402. name: "True Size",
  7403. height: math.unit(100000, "lightyears")
  7404. },
  7405. ]
  7406. ))
  7407. characterMakers.push(() => makeCharacter(
  7408. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7409. {
  7410. front: {
  7411. height: math.unit(6, "feet"),
  7412. weight: math.unit(200, "lbs"),
  7413. name: "Front",
  7414. image: {
  7415. source: "./media/characters/vector-wuff/front.svg"
  7416. }
  7417. }
  7418. },
  7419. [
  7420. {
  7421. name: "Normal",
  7422. height: math.unit(2.8, "meters")
  7423. },
  7424. {
  7425. name: "Macro",
  7426. height: math.unit(450, "meters"),
  7427. default: true
  7428. },
  7429. {
  7430. name: "Megamacro",
  7431. height: math.unit(15, "kilometers")
  7432. }
  7433. ]
  7434. ))
  7435. characterMakers.push(() => makeCharacter(
  7436. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7437. {
  7438. front: {
  7439. height: math.unit(6, "feet"),
  7440. weight: math.unit(256, "lbs"),
  7441. name: "Front",
  7442. image: {
  7443. source: "./media/characters/dannik/front.svg"
  7444. }
  7445. }
  7446. },
  7447. [
  7448. {
  7449. name: "Macro",
  7450. height: math.unit(69.57, "meters"),
  7451. default: true
  7452. },
  7453. ]
  7454. ))
  7455. characterMakers.push(() => makeCharacter(
  7456. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7457. {
  7458. front: {
  7459. height: math.unit(6, "feet"),
  7460. weight: math.unit(120, "lbs"),
  7461. name: "Front",
  7462. image: {
  7463. source: "./media/characters/azura-saharah/front.svg"
  7464. }
  7465. },
  7466. back: {
  7467. height: math.unit(6, "feet"),
  7468. weight: math.unit(120, "lbs"),
  7469. name: "Back",
  7470. image: {
  7471. source: "./media/characters/azura-saharah/back.svg"
  7472. }
  7473. },
  7474. },
  7475. [
  7476. {
  7477. name: "Macro",
  7478. height: math.unit(100, "feet"),
  7479. default: true
  7480. },
  7481. ]
  7482. ))
  7483. characterMakers.push(() => makeCharacter(
  7484. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7485. {
  7486. side: {
  7487. height: math.unit(5 + 4 / 12, "feet"),
  7488. weight: math.unit(163, "lbs"),
  7489. name: "Side",
  7490. image: {
  7491. source: "./media/characters/kennedy/side.svg"
  7492. }
  7493. }
  7494. },
  7495. [
  7496. {
  7497. name: "Standard Doggo",
  7498. height: math.unit(5 + 4 / 12, "feet")
  7499. },
  7500. {
  7501. name: "Big Doggo",
  7502. height: math.unit(25 + 3 / 12, "feet"),
  7503. default: true
  7504. },
  7505. ]
  7506. ))
  7507. characterMakers.push(() => makeCharacter(
  7508. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7509. {
  7510. front: {
  7511. height: math.unit(5 + 5/12, "feet"),
  7512. weight: math.unit(100, "lbs"),
  7513. name: "Front",
  7514. image: {
  7515. source: "./media/characters/odios-de-lunar/front.svg",
  7516. extra: 1468/1323,
  7517. bottom: 22/1490
  7518. }
  7519. }
  7520. },
  7521. [
  7522. {
  7523. name: "Micro",
  7524. height: math.unit(3, "inches")
  7525. },
  7526. {
  7527. name: "Normal",
  7528. height: math.unit(5.5, "feet"),
  7529. default: true
  7530. },
  7531. {
  7532. name: "Macro",
  7533. height: math.unit(100, "feet")
  7534. },
  7535. ]
  7536. ))
  7537. characterMakers.push(() => makeCharacter(
  7538. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7539. {
  7540. back: {
  7541. height: math.unit(6, "feet"),
  7542. weight: math.unit(220, "lbs"),
  7543. name: "Back",
  7544. image: {
  7545. source: "./media/characters/mandake/back.svg"
  7546. }
  7547. }
  7548. },
  7549. [
  7550. {
  7551. name: "Normal",
  7552. height: math.unit(7, "feet"),
  7553. default: true
  7554. },
  7555. {
  7556. name: "Macro",
  7557. height: math.unit(78, "feet")
  7558. },
  7559. {
  7560. name: "Macro+",
  7561. height: math.unit(300, "meters")
  7562. },
  7563. {
  7564. name: "Macro++",
  7565. height: math.unit(2400, "feet")
  7566. },
  7567. {
  7568. name: "Megamacro",
  7569. height: math.unit(5167, "meters")
  7570. },
  7571. {
  7572. name: "Gigamacro",
  7573. height: math.unit(41769, "miles")
  7574. },
  7575. ]
  7576. ))
  7577. characterMakers.push(() => makeCharacter(
  7578. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7579. {
  7580. front: {
  7581. height: math.unit(6, "feet"),
  7582. weight: math.unit(120, "lbs"),
  7583. name: "Front",
  7584. image: {
  7585. source: "./media/characters/yozey/front.svg"
  7586. }
  7587. },
  7588. frontAlt: {
  7589. height: math.unit(6, "feet"),
  7590. weight: math.unit(120, "lbs"),
  7591. name: "Front (Alt)",
  7592. image: {
  7593. source: "./media/characters/yozey/front-alt.svg"
  7594. }
  7595. },
  7596. side: {
  7597. height: math.unit(6, "feet"),
  7598. weight: math.unit(120, "lbs"),
  7599. name: "Side",
  7600. image: {
  7601. source: "./media/characters/yozey/side.svg"
  7602. }
  7603. },
  7604. },
  7605. [
  7606. {
  7607. name: "Micro",
  7608. height: math.unit(3, "inches"),
  7609. default: true
  7610. },
  7611. {
  7612. name: "Normal",
  7613. height: math.unit(6, "feet")
  7614. }
  7615. ]
  7616. ))
  7617. characterMakers.push(() => makeCharacter(
  7618. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7619. {
  7620. front: {
  7621. height: math.unit(6, "feet"),
  7622. weight: math.unit(103, "lbs"),
  7623. name: "Front",
  7624. image: {
  7625. source: "./media/characters/valeska-voss/front.svg"
  7626. }
  7627. }
  7628. },
  7629. [
  7630. {
  7631. name: "Mini-Sized Sub",
  7632. height: math.unit(3.1, "inches")
  7633. },
  7634. {
  7635. name: "Mid-Sized Sub",
  7636. height: math.unit(6.2, "inches")
  7637. },
  7638. {
  7639. name: "Full-Sized Sub",
  7640. height: math.unit(9.3, "inches")
  7641. },
  7642. {
  7643. name: "Normal",
  7644. height: math.unit(5 + 2 / 12, "foot"),
  7645. default: true
  7646. },
  7647. ]
  7648. ))
  7649. characterMakers.push(() => makeCharacter(
  7650. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7651. {
  7652. front: {
  7653. height: math.unit(6, "feet"),
  7654. weight: math.unit(160, "lbs"),
  7655. name: "Front",
  7656. image: {
  7657. source: "./media/characters/gene-zeta/front.svg",
  7658. extra: 3006 / 2826,
  7659. bottom: 182 / 3188
  7660. }
  7661. }
  7662. },
  7663. [
  7664. {
  7665. name: "Micro",
  7666. height: math.unit(6, "inches")
  7667. },
  7668. {
  7669. name: "Normal",
  7670. height: math.unit(5 + 11 / 12, "foot"),
  7671. default: true
  7672. },
  7673. {
  7674. name: "Macro",
  7675. height: math.unit(140, "feet")
  7676. },
  7677. {
  7678. name: "Supercharged",
  7679. height: math.unit(2500, "feet")
  7680. },
  7681. ]
  7682. ))
  7683. characterMakers.push(() => makeCharacter(
  7684. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7685. {
  7686. front: {
  7687. height: math.unit(6, "feet"),
  7688. weight: math.unit(350, "lbs"),
  7689. name: "Front",
  7690. image: {
  7691. source: "./media/characters/razinox/front.svg",
  7692. extra: 1686 / 1548,
  7693. bottom: 28.2 / 1868
  7694. }
  7695. },
  7696. back: {
  7697. height: math.unit(6, "feet"),
  7698. weight: math.unit(350, "lbs"),
  7699. name: "Back",
  7700. image: {
  7701. source: "./media/characters/razinox/back.svg",
  7702. extra: 1660 / 1590,
  7703. bottom: 15 / 1665
  7704. }
  7705. },
  7706. },
  7707. [
  7708. {
  7709. name: "Normal",
  7710. height: math.unit(10 + 8 / 12, "foot")
  7711. },
  7712. {
  7713. name: "Minimacro",
  7714. height: math.unit(15, "foot")
  7715. },
  7716. {
  7717. name: "Macro",
  7718. height: math.unit(60, "foot"),
  7719. default: true
  7720. },
  7721. {
  7722. name: "Megamacro",
  7723. height: math.unit(5, "miles")
  7724. },
  7725. {
  7726. name: "Gigamacro",
  7727. height: math.unit(6000, "miles")
  7728. },
  7729. ]
  7730. ))
  7731. characterMakers.push(() => makeCharacter(
  7732. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7733. {
  7734. front: {
  7735. height: math.unit(6, "feet"),
  7736. weight: math.unit(150, "lbs"),
  7737. name: "Front",
  7738. image: {
  7739. source: "./media/characters/cobalt/front.svg"
  7740. }
  7741. }
  7742. },
  7743. [
  7744. {
  7745. name: "Normal",
  7746. height: math.unit(8 + 1 / 12, "foot")
  7747. },
  7748. {
  7749. name: "Macro",
  7750. height: math.unit(111, "foot"),
  7751. default: true
  7752. },
  7753. {
  7754. name: "Supracosmic",
  7755. height: math.unit(1e42, "feet")
  7756. },
  7757. ]
  7758. ))
  7759. characterMakers.push(() => makeCharacter(
  7760. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7761. {
  7762. front: {
  7763. height: math.unit(5, "inches"),
  7764. name: "Front",
  7765. image: {
  7766. source: "./media/characters/amanda/front.svg",
  7767. extra: 926/791,
  7768. bottom: 38/964
  7769. }
  7770. },
  7771. back: {
  7772. height: math.unit(5, "inches"),
  7773. name: "Back",
  7774. image: {
  7775. source: "./media/characters/amanda/back.svg",
  7776. extra: 909/805,
  7777. bottom: 43/952
  7778. }
  7779. },
  7780. },
  7781. [
  7782. {
  7783. name: "Micro",
  7784. height: math.unit(5, "inches"),
  7785. default: true
  7786. },
  7787. ]
  7788. ))
  7789. characterMakers.push(() => makeCharacter(
  7790. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7791. {
  7792. front: {
  7793. height: math.unit(2.75, "meters"),
  7794. weight: math.unit(1200, "lb"),
  7795. name: "Front",
  7796. image: {
  7797. source: "./media/characters/teal/front.svg",
  7798. extra: 2463 / 2320,
  7799. bottom: 166 / 2629
  7800. }
  7801. },
  7802. back: {
  7803. height: math.unit(2.75, "meters"),
  7804. weight: math.unit(1200, "lb"),
  7805. name: "Back",
  7806. image: {
  7807. source: "./media/characters/teal/back.svg",
  7808. extra: 2580 / 2489,
  7809. bottom: 151 / 2731
  7810. }
  7811. },
  7812. sitting: {
  7813. height: math.unit(1.9, "meters"),
  7814. weight: math.unit(1200, "lb"),
  7815. name: "Sitting",
  7816. image: {
  7817. source: "./media/characters/teal/sitting.svg",
  7818. extra: 623 / 590,
  7819. bottom: 121 / 744
  7820. }
  7821. },
  7822. standing: {
  7823. height: math.unit(2.75, "meters"),
  7824. weight: math.unit(1200, "lb"),
  7825. name: "Standing",
  7826. image: {
  7827. source: "./media/characters/teal/standing.svg",
  7828. extra: 923 / 893,
  7829. bottom: 60 / 983
  7830. }
  7831. },
  7832. stretching: {
  7833. height: math.unit(3.65, "meters"),
  7834. weight: math.unit(1200, "lb"),
  7835. name: "Stretching",
  7836. image: {
  7837. source: "./media/characters/teal/stretching.svg",
  7838. extra: 1276 / 1244,
  7839. bottom: 0 / 1276
  7840. }
  7841. },
  7842. legged: {
  7843. height: math.unit(1.3, "meters"),
  7844. weight: math.unit(100, "lb"),
  7845. name: "Legged",
  7846. image: {
  7847. source: "./media/characters/teal/legged.svg",
  7848. extra: 462 / 437,
  7849. bottom: 24 / 486
  7850. }
  7851. },
  7852. naga: {
  7853. height: math.unit(5.4, "meters"),
  7854. weight: math.unit(4000, "lb"),
  7855. name: "Naga",
  7856. image: {
  7857. source: "./media/characters/teal/naga.svg",
  7858. extra: 1902 / 1858,
  7859. bottom: 0 / 1902
  7860. }
  7861. },
  7862. hand: {
  7863. height: math.unit(0.52, "meters"),
  7864. name: "Hand",
  7865. image: {
  7866. source: "./media/characters/teal/hand.svg"
  7867. }
  7868. },
  7869. maw: {
  7870. height: math.unit(0.43, "meters"),
  7871. name: "Maw",
  7872. image: {
  7873. source: "./media/characters/teal/maw.svg"
  7874. }
  7875. },
  7876. slit: {
  7877. height: math.unit(0.25, "meters"),
  7878. name: "Slit",
  7879. image: {
  7880. source: "./media/characters/teal/slit.svg"
  7881. }
  7882. },
  7883. },
  7884. [
  7885. {
  7886. name: "Normal",
  7887. height: math.unit(2.75, "meters"),
  7888. default: true
  7889. },
  7890. {
  7891. name: "Macro",
  7892. height: math.unit(300, "feet")
  7893. },
  7894. {
  7895. name: "Macro+",
  7896. height: math.unit(2000, "feet")
  7897. },
  7898. ]
  7899. ))
  7900. characterMakers.push(() => makeCharacter(
  7901. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7902. {
  7903. frontCat: {
  7904. height: math.unit(6, "feet"),
  7905. weight: math.unit(180, "lbs"),
  7906. name: "Front (Cat)",
  7907. image: {
  7908. source: "./media/characters/ravin-amulet/front-cat.svg"
  7909. }
  7910. },
  7911. frontCatAlt: {
  7912. height: math.unit(6, "feet"),
  7913. weight: math.unit(180, "lbs"),
  7914. name: "Front (Alt, Cat)",
  7915. image: {
  7916. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7917. }
  7918. },
  7919. frontWerewolf: {
  7920. height: math.unit(6 * 1.2, "feet"),
  7921. weight: math.unit(225, "lbs"),
  7922. name: "Front (Werewolf)",
  7923. image: {
  7924. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7925. }
  7926. },
  7927. backWerewolf: {
  7928. height: math.unit(6 * 1.2, "feet"),
  7929. weight: math.unit(225, "lbs"),
  7930. name: "Back (Werewolf)",
  7931. image: {
  7932. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7933. }
  7934. },
  7935. },
  7936. [
  7937. {
  7938. name: "Nano",
  7939. height: math.unit(1, "micrometer")
  7940. },
  7941. {
  7942. name: "Micro",
  7943. height: math.unit(1, "inch")
  7944. },
  7945. {
  7946. name: "Normal",
  7947. height: math.unit(6, "feet"),
  7948. default: true
  7949. },
  7950. {
  7951. name: "Macro",
  7952. height: math.unit(60, "feet")
  7953. }
  7954. ]
  7955. ))
  7956. characterMakers.push(() => makeCharacter(
  7957. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7958. {
  7959. front: {
  7960. height: math.unit(6, "feet"),
  7961. weight: math.unit(165, "lbs"),
  7962. name: "Front",
  7963. image: {
  7964. source: "./media/characters/fluoresce/front.svg"
  7965. }
  7966. }
  7967. },
  7968. [
  7969. {
  7970. name: "Micro",
  7971. height: math.unit(6, "cm")
  7972. },
  7973. {
  7974. name: "Normal",
  7975. height: math.unit(5 + 7 / 12, "feet"),
  7976. default: true
  7977. },
  7978. {
  7979. name: "Macro",
  7980. height: math.unit(56, "feet")
  7981. },
  7982. {
  7983. name: "Megamacro",
  7984. height: math.unit(1.9, "miles")
  7985. },
  7986. ]
  7987. ))
  7988. characterMakers.push(() => makeCharacter(
  7989. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7990. {
  7991. front: {
  7992. height: math.unit(9 + 6 / 12, "feet"),
  7993. weight: math.unit(523, "lbs"),
  7994. name: "Side",
  7995. image: {
  7996. source: "./media/characters/aurora/side.svg"
  7997. }
  7998. }
  7999. },
  8000. [
  8001. {
  8002. name: "Normal",
  8003. height: math.unit(9 + 6 / 12, "feet")
  8004. },
  8005. {
  8006. name: "Macro",
  8007. height: math.unit(96, "feet"),
  8008. default: true
  8009. },
  8010. {
  8011. name: "Macro+",
  8012. height: math.unit(243, "feet")
  8013. },
  8014. ]
  8015. ))
  8016. characterMakers.push(() => makeCharacter(
  8017. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8018. {
  8019. front: {
  8020. height: math.unit(194, "cm"),
  8021. weight: math.unit(90, "kg"),
  8022. name: "Front",
  8023. image: {
  8024. source: "./media/characters/ranek/front.svg",
  8025. extra: 1862/1791,
  8026. bottom: 80/1942
  8027. }
  8028. },
  8029. back: {
  8030. height: math.unit(194, "cm"),
  8031. weight: math.unit(90, "kg"),
  8032. name: "Back",
  8033. image: {
  8034. source: "./media/characters/ranek/back.svg",
  8035. extra: 1853/1787,
  8036. bottom: 74/1927
  8037. }
  8038. },
  8039. feral: {
  8040. height: math.unit(30, "cm"),
  8041. weight: math.unit(1.6, "lbs"),
  8042. name: "Feral",
  8043. image: {
  8044. source: "./media/characters/ranek/feral.svg",
  8045. extra: 990/631,
  8046. bottom: 29/1019
  8047. }
  8048. },
  8049. },
  8050. [
  8051. {
  8052. name: "Normal",
  8053. height: math.unit(194, "cm"),
  8054. default: true
  8055. },
  8056. {
  8057. name: "Macro",
  8058. height: math.unit(100, "meters")
  8059. },
  8060. ]
  8061. ))
  8062. characterMakers.push(() => makeCharacter(
  8063. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8064. {
  8065. front: {
  8066. height: math.unit(5 + 6 / 12, "feet"),
  8067. weight: math.unit(153, "lbs"),
  8068. name: "Front",
  8069. image: {
  8070. source: "./media/characters/andrew-cooper/front.svg"
  8071. }
  8072. },
  8073. },
  8074. [
  8075. {
  8076. name: "Nano",
  8077. height: math.unit(1, "mm")
  8078. },
  8079. {
  8080. name: "Micro",
  8081. height: math.unit(2, "inches")
  8082. },
  8083. {
  8084. name: "Normal",
  8085. height: math.unit(5 + 6 / 12, "feet"),
  8086. default: true
  8087. }
  8088. ]
  8089. ))
  8090. characterMakers.push(() => makeCharacter(
  8091. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8092. {
  8093. front: {
  8094. height: math.unit(6, "feet"),
  8095. weight: math.unit(180, "lbs"),
  8096. name: "Front",
  8097. image: {
  8098. source: "./media/characters/akane-sato/front.svg",
  8099. extra: 1219 / 1140
  8100. }
  8101. },
  8102. back: {
  8103. height: math.unit(6, "feet"),
  8104. weight: math.unit(180, "lbs"),
  8105. name: "Back",
  8106. image: {
  8107. source: "./media/characters/akane-sato/back.svg",
  8108. extra: 1219 / 1170
  8109. }
  8110. },
  8111. },
  8112. [
  8113. {
  8114. name: "Normal",
  8115. height: math.unit(2.5, "meters")
  8116. },
  8117. {
  8118. name: "Macro",
  8119. height: math.unit(250, "meters"),
  8120. default: true
  8121. },
  8122. {
  8123. name: "Megamacro",
  8124. height: math.unit(25, "km")
  8125. },
  8126. ]
  8127. ))
  8128. characterMakers.push(() => makeCharacter(
  8129. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8130. {
  8131. front: {
  8132. height: math.unit(6, "feet"),
  8133. weight: math.unit(65, "kg"),
  8134. name: "Front",
  8135. image: {
  8136. source: "./media/characters/rook/front.svg",
  8137. extra: 960 / 950
  8138. }
  8139. }
  8140. },
  8141. [
  8142. {
  8143. name: "Normal",
  8144. height: math.unit(8.8, "feet")
  8145. },
  8146. {
  8147. name: "Macro",
  8148. height: math.unit(88, "feet"),
  8149. default: true
  8150. },
  8151. {
  8152. name: "Megamacro",
  8153. height: math.unit(8, "miles")
  8154. },
  8155. ]
  8156. ))
  8157. characterMakers.push(() => makeCharacter(
  8158. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8159. {
  8160. front: {
  8161. height: math.unit(12 + 2 / 12, "feet"),
  8162. weight: math.unit(808, "lbs"),
  8163. name: "Front",
  8164. image: {
  8165. source: "./media/characters/prodigy/front.svg"
  8166. }
  8167. }
  8168. },
  8169. [
  8170. {
  8171. name: "Normal",
  8172. height: math.unit(12 + 2 / 12, "feet"),
  8173. default: true
  8174. },
  8175. {
  8176. name: "Macro",
  8177. height: math.unit(143, "feet")
  8178. },
  8179. {
  8180. name: "Macro+",
  8181. height: math.unit(400, "feet")
  8182. },
  8183. ]
  8184. ))
  8185. characterMakers.push(() => makeCharacter(
  8186. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8187. {
  8188. front: {
  8189. height: math.unit(6, "feet"),
  8190. weight: math.unit(225, "lbs"),
  8191. name: "Front",
  8192. image: {
  8193. source: "./media/characters/daniel/front.svg"
  8194. }
  8195. },
  8196. leaning: {
  8197. height: math.unit(6, "feet"),
  8198. weight: math.unit(225, "lbs"),
  8199. name: "Leaning",
  8200. image: {
  8201. source: "./media/characters/daniel/leaning.svg"
  8202. }
  8203. },
  8204. },
  8205. [
  8206. {
  8207. name: "Macro",
  8208. height: math.unit(1000, "feet"),
  8209. default: true
  8210. },
  8211. ]
  8212. ))
  8213. characterMakers.push(() => makeCharacter(
  8214. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8215. {
  8216. front: {
  8217. height: math.unit(6, "feet"),
  8218. weight: math.unit(88, "lbs"),
  8219. name: "Front",
  8220. image: {
  8221. source: "./media/characters/chiros/front.svg",
  8222. extra: 306 / 226
  8223. }
  8224. },
  8225. side: {
  8226. height: math.unit(6, "feet"),
  8227. weight: math.unit(88, "lbs"),
  8228. name: "Side",
  8229. image: {
  8230. source: "./media/characters/chiros/side.svg",
  8231. extra: 306 / 226
  8232. }
  8233. },
  8234. },
  8235. [
  8236. {
  8237. name: "Normal",
  8238. height: math.unit(6, "cm"),
  8239. default: true
  8240. },
  8241. ]
  8242. ))
  8243. characterMakers.push(() => makeCharacter(
  8244. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8245. {
  8246. front: {
  8247. height: math.unit(6, "feet"),
  8248. weight: math.unit(100, "lbs"),
  8249. name: "Front",
  8250. image: {
  8251. source: "./media/characters/selka/front.svg",
  8252. extra: 947 / 887
  8253. }
  8254. }
  8255. },
  8256. [
  8257. {
  8258. name: "Normal",
  8259. height: math.unit(5, "cm"),
  8260. default: true
  8261. },
  8262. ]
  8263. ))
  8264. characterMakers.push(() => makeCharacter(
  8265. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8266. {
  8267. front: {
  8268. height: math.unit(8 + 3 / 12, "feet"),
  8269. weight: math.unit(424, "lbs"),
  8270. name: "Front",
  8271. image: {
  8272. source: "./media/characters/verin/front.svg",
  8273. extra: 1845 / 1550
  8274. }
  8275. },
  8276. frontArmored: {
  8277. height: math.unit(8 + 3 / 12, "feet"),
  8278. weight: math.unit(424, "lbs"),
  8279. name: "Front (Armored)",
  8280. image: {
  8281. source: "./media/characters/verin/front-armor.svg",
  8282. extra: 1845 / 1550,
  8283. bottom: 0.01
  8284. }
  8285. },
  8286. back: {
  8287. height: math.unit(8 + 3 / 12, "feet"),
  8288. weight: math.unit(424, "lbs"),
  8289. name: "Back",
  8290. image: {
  8291. source: "./media/characters/verin/back.svg",
  8292. bottom: 0.1,
  8293. extra: 1
  8294. }
  8295. },
  8296. foot: {
  8297. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8298. name: "Foot",
  8299. image: {
  8300. source: "./media/characters/verin/foot.svg"
  8301. }
  8302. },
  8303. },
  8304. [
  8305. {
  8306. name: "Normal",
  8307. height: math.unit(8 + 3 / 12, "feet")
  8308. },
  8309. {
  8310. name: "Minimacro",
  8311. height: math.unit(21, "feet"),
  8312. default: true
  8313. },
  8314. {
  8315. name: "Macro",
  8316. height: math.unit(626, "feet")
  8317. },
  8318. ]
  8319. ))
  8320. characterMakers.push(() => makeCharacter(
  8321. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8322. {
  8323. front: {
  8324. height: math.unit(2.718, "meters"),
  8325. weight: math.unit(150, "lbs"),
  8326. name: "Front",
  8327. image: {
  8328. source: "./media/characters/sovrim-terraquian/front.svg",
  8329. extra: 1752/1689,
  8330. bottom: 36/1788
  8331. }
  8332. },
  8333. back: {
  8334. height: math.unit(2.718, "meters"),
  8335. weight: math.unit(150, "lbs"),
  8336. name: "Back",
  8337. image: {
  8338. source: "./media/characters/sovrim-terraquian/back.svg",
  8339. extra: 1698/1657,
  8340. bottom: 58/1756
  8341. }
  8342. },
  8343. tongue: {
  8344. height: math.unit(2.865, "feet"),
  8345. name: "Tongue",
  8346. image: {
  8347. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8348. }
  8349. },
  8350. hand: {
  8351. height: math.unit(1.61, "feet"),
  8352. name: "Hand",
  8353. image: {
  8354. source: "./media/characters/sovrim-terraquian/hand.svg"
  8355. }
  8356. },
  8357. foot: {
  8358. height: math.unit(1.05, "feet"),
  8359. name: "Foot",
  8360. image: {
  8361. source: "./media/characters/sovrim-terraquian/foot.svg"
  8362. }
  8363. },
  8364. footAlt: {
  8365. height: math.unit(0.88, "feet"),
  8366. name: "Foot (Alt)",
  8367. image: {
  8368. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8369. }
  8370. },
  8371. },
  8372. [
  8373. {
  8374. name: "Micro",
  8375. height: math.unit(2, "inches")
  8376. },
  8377. {
  8378. name: "Small",
  8379. height: math.unit(1, "meter")
  8380. },
  8381. {
  8382. name: "Normal",
  8383. height: math.unit(Math.E, "meters"),
  8384. default: true
  8385. },
  8386. {
  8387. name: "Macro",
  8388. height: math.unit(20, "meters")
  8389. },
  8390. {
  8391. name: "Macro+",
  8392. height: math.unit(400, "meters")
  8393. },
  8394. ]
  8395. ))
  8396. characterMakers.push(() => makeCharacter(
  8397. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8398. {
  8399. front: {
  8400. height: math.unit(7, "feet"),
  8401. weight: math.unit(489, "lbs"),
  8402. name: "Front",
  8403. image: {
  8404. source: "./media/characters/reece-silvermane/front.svg",
  8405. bottom: 0.02,
  8406. extra: 1
  8407. }
  8408. },
  8409. },
  8410. [
  8411. {
  8412. name: "Macro",
  8413. height: math.unit(1.5, "miles"),
  8414. default: true
  8415. },
  8416. ]
  8417. ))
  8418. characterMakers.push(() => makeCharacter(
  8419. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8420. {
  8421. front: {
  8422. height: math.unit(6, "feet"),
  8423. weight: math.unit(78, "kg"),
  8424. name: "Front",
  8425. image: {
  8426. source: "./media/characters/kane/front.svg",
  8427. extra: 978 / 899
  8428. }
  8429. },
  8430. },
  8431. [
  8432. {
  8433. name: "Normal",
  8434. height: math.unit(2.1, "m"),
  8435. },
  8436. {
  8437. name: "Macro",
  8438. height: math.unit(1, "km"),
  8439. default: true
  8440. },
  8441. ]
  8442. ))
  8443. characterMakers.push(() => makeCharacter(
  8444. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8445. {
  8446. front: {
  8447. height: math.unit(6, "feet"),
  8448. weight: math.unit(200, "kg"),
  8449. name: "Front",
  8450. image: {
  8451. source: "./media/characters/tegon/front.svg",
  8452. bottom: 0.01,
  8453. extra: 1
  8454. }
  8455. },
  8456. },
  8457. [
  8458. {
  8459. name: "Micro",
  8460. height: math.unit(1, "inch")
  8461. },
  8462. {
  8463. name: "Normal",
  8464. height: math.unit(6 + 3 / 12, "feet"),
  8465. default: true
  8466. },
  8467. {
  8468. name: "Macro",
  8469. height: math.unit(300, "feet")
  8470. },
  8471. {
  8472. name: "Megamacro",
  8473. height: math.unit(69, "miles")
  8474. },
  8475. ]
  8476. ))
  8477. characterMakers.push(() => makeCharacter(
  8478. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8479. {
  8480. side: {
  8481. height: math.unit(6, "feet"),
  8482. weight: math.unit(2304, "lbs"),
  8483. name: "Side",
  8484. image: {
  8485. source: "./media/characters/arcturax/side.svg",
  8486. extra: 790 / 376,
  8487. bottom: 0.01
  8488. }
  8489. },
  8490. },
  8491. [
  8492. {
  8493. name: "Micro",
  8494. height: math.unit(2, "inch")
  8495. },
  8496. {
  8497. name: "Normal",
  8498. height: math.unit(6, "feet")
  8499. },
  8500. {
  8501. name: "Macro",
  8502. height: math.unit(39, "feet"),
  8503. default: true
  8504. },
  8505. {
  8506. name: "Megamacro",
  8507. height: math.unit(7, "miles")
  8508. },
  8509. ]
  8510. ))
  8511. characterMakers.push(() => makeCharacter(
  8512. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8513. {
  8514. front: {
  8515. height: math.unit(6, "feet"),
  8516. weight: math.unit(50, "lbs"),
  8517. name: "Front",
  8518. image: {
  8519. source: "./media/characters/sentri/front.svg",
  8520. extra: 1750 / 1570,
  8521. bottom: 0.025
  8522. }
  8523. },
  8524. frontAlt: {
  8525. height: math.unit(6, "feet"),
  8526. weight: math.unit(50, "lbs"),
  8527. name: "Front (Alt)",
  8528. image: {
  8529. source: "./media/characters/sentri/front-alt.svg",
  8530. extra: 1750 / 1570,
  8531. bottom: 0.025
  8532. }
  8533. },
  8534. },
  8535. [
  8536. {
  8537. name: "Normal",
  8538. height: math.unit(15, "feet"),
  8539. default: true
  8540. },
  8541. {
  8542. name: "Macro",
  8543. height: math.unit(2500, "feet")
  8544. }
  8545. ]
  8546. ))
  8547. characterMakers.push(() => makeCharacter(
  8548. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8549. {
  8550. front: {
  8551. height: math.unit(5 + 8 / 12, "feet"),
  8552. weight: math.unit(130, "lbs"),
  8553. name: "Front",
  8554. image: {
  8555. source: "./media/characters/corvin/front.svg",
  8556. extra: 1803 / 1629
  8557. }
  8558. },
  8559. frontShirt: {
  8560. height: math.unit(5 + 8 / 12, "feet"),
  8561. weight: math.unit(130, "lbs"),
  8562. name: "Front (Shirt)",
  8563. image: {
  8564. source: "./media/characters/corvin/front-shirt.svg",
  8565. extra: 1803 / 1629
  8566. }
  8567. },
  8568. frontPoncho: {
  8569. height: math.unit(5 + 8 / 12, "feet"),
  8570. weight: math.unit(130, "lbs"),
  8571. name: "Front (Poncho)",
  8572. image: {
  8573. source: "./media/characters/corvin/front-poncho.svg",
  8574. extra: 1803 / 1629
  8575. }
  8576. },
  8577. side: {
  8578. height: math.unit(5 + 8 / 12, "feet"),
  8579. weight: math.unit(130, "lbs"),
  8580. name: "Side",
  8581. image: {
  8582. source: "./media/characters/corvin/side.svg",
  8583. extra: 1012 / 945
  8584. }
  8585. },
  8586. back: {
  8587. height: math.unit(5 + 8 / 12, "feet"),
  8588. weight: math.unit(130, "lbs"),
  8589. name: "Back",
  8590. image: {
  8591. source: "./media/characters/corvin/back.svg",
  8592. extra: 1803 / 1629
  8593. }
  8594. },
  8595. },
  8596. [
  8597. {
  8598. name: "Micro",
  8599. height: math.unit(3, "inches")
  8600. },
  8601. {
  8602. name: "Normal",
  8603. height: math.unit(5 + 8 / 12, "feet")
  8604. },
  8605. {
  8606. name: "Macro",
  8607. height: math.unit(300, "feet"),
  8608. default: true
  8609. },
  8610. {
  8611. name: "Megamacro",
  8612. height: math.unit(500, "miles")
  8613. }
  8614. ]
  8615. ))
  8616. characterMakers.push(() => makeCharacter(
  8617. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8618. {
  8619. front: {
  8620. height: math.unit(6, "feet"),
  8621. weight: math.unit(135, "lbs"),
  8622. name: "Front",
  8623. image: {
  8624. source: "./media/characters/q/front.svg",
  8625. extra: 854 / 752,
  8626. bottom: 0.005
  8627. }
  8628. },
  8629. back: {
  8630. height: math.unit(6, "feet"),
  8631. weight: math.unit(130, "lbs"),
  8632. name: "Back",
  8633. image: {
  8634. source: "./media/characters/q/back.svg",
  8635. extra: 854 / 752
  8636. }
  8637. },
  8638. },
  8639. [
  8640. {
  8641. name: "Macro",
  8642. height: math.unit(90, "feet"),
  8643. default: true
  8644. },
  8645. {
  8646. name: "Extra Macro",
  8647. height: math.unit(300, "feet"),
  8648. },
  8649. {
  8650. name: "BIG WALF",
  8651. height: math.unit(750, "feet"),
  8652. },
  8653. ]
  8654. ))
  8655. characterMakers.push(() => makeCharacter(
  8656. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8657. {
  8658. front: {
  8659. height: math.unit(6, "feet"),
  8660. weight: math.unit(150, "lbs"),
  8661. name: "Front",
  8662. image: {
  8663. source: "./media/characters/carley/front.svg",
  8664. extra: 3927 / 3540,
  8665. bottom: 29.2 / 735
  8666. }
  8667. }
  8668. },
  8669. [
  8670. {
  8671. name: "Normal",
  8672. height: math.unit(6 + 3 / 12, "feet")
  8673. },
  8674. {
  8675. name: "Macro",
  8676. height: math.unit(185, "feet"),
  8677. default: true
  8678. },
  8679. {
  8680. name: "Megamacro",
  8681. height: math.unit(8, "miles"),
  8682. },
  8683. ]
  8684. ))
  8685. characterMakers.push(() => makeCharacter(
  8686. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8687. {
  8688. front: {
  8689. height: math.unit(3, "feet"),
  8690. weight: math.unit(28, "lbs"),
  8691. name: "Front",
  8692. image: {
  8693. source: "./media/characters/citrine/front.svg"
  8694. }
  8695. }
  8696. },
  8697. [
  8698. {
  8699. name: "Normal",
  8700. height: math.unit(3, "feet"),
  8701. default: true
  8702. }
  8703. ]
  8704. ))
  8705. characterMakers.push(() => makeCharacter(
  8706. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8707. {
  8708. front: {
  8709. height: math.unit(14, "feet"),
  8710. weight: math.unit(1450, "kg"),
  8711. capacity: math.unit(15, "people"),
  8712. name: "Front",
  8713. image: {
  8714. source: "./media/characters/aura-starwind/front.svg",
  8715. extra: 1440/1327,
  8716. bottom: 11/1451
  8717. }
  8718. },
  8719. side: {
  8720. height: math.unit(14, "feet"),
  8721. weight: math.unit(1450, "kg"),
  8722. capacity: math.unit(15, "people"),
  8723. name: "Side",
  8724. image: {
  8725. source: "./media/characters/aura-starwind/side.svg",
  8726. extra: 1654 / 1497
  8727. }
  8728. },
  8729. taur: {
  8730. height: math.unit(18, "feet"),
  8731. weight: math.unit(5500, "kg"),
  8732. capacity: math.unit(50, "people"),
  8733. name: "Taur",
  8734. image: {
  8735. source: "./media/characters/aura-starwind/taur.svg",
  8736. extra: 1760 / 1650
  8737. }
  8738. },
  8739. feral: {
  8740. height: math.unit(46, "feet"),
  8741. weight: math.unit(25000, "kg"),
  8742. capacity: math.unit(120, "people"),
  8743. name: "Feral",
  8744. image: {
  8745. source: "./media/characters/aura-starwind/feral.svg"
  8746. }
  8747. },
  8748. },
  8749. [
  8750. {
  8751. name: "Normal",
  8752. height: math.unit(14, "feet"),
  8753. default: true
  8754. },
  8755. {
  8756. name: "Macro",
  8757. height: math.unit(50, "meters")
  8758. },
  8759. {
  8760. name: "Megamacro",
  8761. height: math.unit(5000, "meters")
  8762. },
  8763. {
  8764. name: "Gigamacro",
  8765. height: math.unit(100000, "kilometers")
  8766. },
  8767. ]
  8768. ))
  8769. characterMakers.push(() => makeCharacter(
  8770. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8771. {
  8772. front: {
  8773. height: math.unit(2 + 7 / 12, "feet"),
  8774. weight: math.unit(32, "lbs"),
  8775. name: "Front",
  8776. image: {
  8777. source: "./media/characters/rivet/front.svg",
  8778. extra: 1716 / 1658,
  8779. bottom: 0.03
  8780. }
  8781. },
  8782. foot: {
  8783. height: math.unit(0.551, "feet"),
  8784. name: "Rivet's Foot",
  8785. image: {
  8786. source: "./media/characters/rivet/foot.svg"
  8787. },
  8788. rename: true
  8789. }
  8790. },
  8791. [
  8792. {
  8793. name: "Micro",
  8794. height: math.unit(1.5, "inches"),
  8795. },
  8796. {
  8797. name: "Normal",
  8798. height: math.unit(2 + 7 / 12, "feet"),
  8799. default: true
  8800. },
  8801. {
  8802. name: "Macro",
  8803. height: math.unit(85, "feet")
  8804. },
  8805. {
  8806. name: "Megamacro",
  8807. height: math.unit(2.2, "km")
  8808. }
  8809. ]
  8810. ))
  8811. characterMakers.push(() => makeCharacter(
  8812. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8813. {
  8814. front: {
  8815. height: math.unit(5 + 9 / 12, "feet"),
  8816. weight: math.unit(150, "lbs"),
  8817. name: "Front",
  8818. image: {
  8819. source: "./media/characters/coffee/front.svg",
  8820. extra: 3666 / 3032,
  8821. bottom: 0.04
  8822. }
  8823. },
  8824. foot: {
  8825. height: math.unit(1.29, "feet"),
  8826. name: "Foot",
  8827. image: {
  8828. source: "./media/characters/coffee/foot.svg"
  8829. }
  8830. },
  8831. },
  8832. [
  8833. {
  8834. name: "Micro",
  8835. height: math.unit(2, "inches"),
  8836. },
  8837. {
  8838. name: "Normal",
  8839. height: math.unit(5 + 9 / 12, "feet"),
  8840. default: true
  8841. },
  8842. {
  8843. name: "Macro",
  8844. height: math.unit(800, "feet")
  8845. },
  8846. {
  8847. name: "Megamacro",
  8848. height: math.unit(25, "miles")
  8849. }
  8850. ]
  8851. ))
  8852. characterMakers.push(() => makeCharacter(
  8853. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8854. {
  8855. front: {
  8856. height: math.unit(6, "feet"),
  8857. weight: math.unit(200, "lbs"),
  8858. name: "Front",
  8859. image: {
  8860. source: "./media/characters/chari-gal/front.svg",
  8861. extra: 1568 / 1385,
  8862. bottom: 0.047
  8863. }
  8864. },
  8865. gigantamax: {
  8866. height: math.unit(6 * 16, "feet"),
  8867. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8868. name: "Gigantamax",
  8869. image: {
  8870. source: "./media/characters/chari-gal/gigantamax.svg",
  8871. extra: 1124 / 888,
  8872. bottom: 0.03
  8873. }
  8874. },
  8875. },
  8876. [
  8877. {
  8878. name: "Normal",
  8879. height: math.unit(5 + 7 / 12, "feet")
  8880. },
  8881. {
  8882. name: "Macro",
  8883. height: math.unit(200, "feet"),
  8884. default: true
  8885. }
  8886. ]
  8887. ))
  8888. characterMakers.push(() => makeCharacter(
  8889. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8890. {
  8891. front: {
  8892. height: math.unit(6, "feet"),
  8893. weight: math.unit(150, "lbs"),
  8894. name: "Front",
  8895. image: {
  8896. source: "./media/characters/nova/front.svg",
  8897. extra: 5000 / 4722,
  8898. bottom: 0.02
  8899. }
  8900. }
  8901. },
  8902. [
  8903. {
  8904. name: "Micro-",
  8905. height: math.unit(0.8, "inches")
  8906. },
  8907. {
  8908. name: "Micro",
  8909. height: math.unit(2, "inches"),
  8910. default: true
  8911. },
  8912. ]
  8913. ))
  8914. characterMakers.push(() => makeCharacter(
  8915. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8916. {
  8917. front: {
  8918. height: math.unit(3 + 1 / 12, "feet"),
  8919. weight: math.unit(21.7, "lbs"),
  8920. name: "Front",
  8921. image: {
  8922. source: "./media/characters/argent/front.svg",
  8923. extra: 1471 / 1331,
  8924. bottom: 100.8 / 1575.5
  8925. }
  8926. }
  8927. },
  8928. [
  8929. {
  8930. name: "Micro",
  8931. height: math.unit(2, "inches")
  8932. },
  8933. {
  8934. name: "Normal",
  8935. height: math.unit(3 + 1 / 12, "feet"),
  8936. default: true
  8937. },
  8938. {
  8939. name: "Macro",
  8940. height: math.unit(120, "feet")
  8941. },
  8942. ]
  8943. ))
  8944. characterMakers.push(() => makeCharacter(
  8945. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8946. {
  8947. lamp: {
  8948. height: math.unit(7 * 1559 / 989, "feet"),
  8949. name: "Magic Lamp",
  8950. image: {
  8951. source: "./media/characters/mira-al-cul/lamp.svg",
  8952. extra: 1617 / 1559
  8953. }
  8954. },
  8955. front: {
  8956. height: math.unit(7, "feet"),
  8957. name: "Front",
  8958. image: {
  8959. source: "./media/characters/mira-al-cul/front.svg",
  8960. extra: 1044 / 990
  8961. }
  8962. },
  8963. },
  8964. [
  8965. {
  8966. name: "Heavily Restricted",
  8967. height: math.unit(7 * 1559 / 989, "feet")
  8968. },
  8969. {
  8970. name: "Freshly Freed",
  8971. height: math.unit(50 * 1559 / 989, "feet")
  8972. },
  8973. {
  8974. name: "World Encompassing",
  8975. height: math.unit(10000 * 1559 / 989, "miles")
  8976. },
  8977. {
  8978. name: "Galactic",
  8979. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8980. },
  8981. {
  8982. name: "Palmed Universe",
  8983. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8984. default: true
  8985. },
  8986. {
  8987. name: "Multiversal Matriarch",
  8988. height: math.unit(8.87e10, "yottameters")
  8989. },
  8990. {
  8991. name: "Void Mother",
  8992. height: math.unit(3.14e110, "yottaparsecs")
  8993. },
  8994. {
  8995. name: "Toying with Transcendence",
  8996. height: math.unit(1e307, "meters")
  8997. },
  8998. ]
  8999. ))
  9000. characterMakers.push(() => makeCharacter(
  9001. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9002. {
  9003. front: {
  9004. height: math.unit(17 + 1 / 12, "feet"),
  9005. weight: math.unit(476.2 * 5, "lbs"),
  9006. name: "Front",
  9007. image: {
  9008. source: "./media/characters/kuro-shi-uchū/front.svg",
  9009. extra: 2329 / 1835,
  9010. bottom: 0.02
  9011. }
  9012. },
  9013. },
  9014. [
  9015. {
  9016. name: "Micro",
  9017. height: math.unit(2, "inches")
  9018. },
  9019. {
  9020. name: "Normal",
  9021. height: math.unit(12, "meters")
  9022. },
  9023. {
  9024. name: "Planetary",
  9025. height: math.unit(0.00929, "AU"),
  9026. default: true
  9027. },
  9028. {
  9029. name: "Universal",
  9030. height: math.unit(20, "gigaparsecs")
  9031. },
  9032. ]
  9033. ))
  9034. characterMakers.push(() => makeCharacter(
  9035. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9036. {
  9037. front: {
  9038. height: math.unit(5 + 2 / 12, "feet"),
  9039. weight: math.unit(120, "lbs"),
  9040. name: "Front",
  9041. image: {
  9042. source: "./media/characters/katherine/front.svg",
  9043. extra: 2075 / 1969
  9044. }
  9045. },
  9046. dress: {
  9047. height: math.unit(5 + 2 / 12, "feet"),
  9048. weight: math.unit(120, "lbs"),
  9049. name: "Dress",
  9050. image: {
  9051. source: "./media/characters/katherine/dress.svg",
  9052. extra: 2258 / 2064
  9053. }
  9054. },
  9055. },
  9056. [
  9057. {
  9058. name: "Micro",
  9059. height: math.unit(1, "inches"),
  9060. default: true
  9061. },
  9062. {
  9063. name: "Normal",
  9064. height: math.unit(5 + 2 / 12, "feet")
  9065. },
  9066. {
  9067. name: "Macro",
  9068. height: math.unit(100, "meters")
  9069. },
  9070. {
  9071. name: "Megamacro",
  9072. height: math.unit(80, "miles")
  9073. },
  9074. ]
  9075. ))
  9076. characterMakers.push(() => makeCharacter(
  9077. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9078. {
  9079. front: {
  9080. height: math.unit(7 + 8 / 12, "feet"),
  9081. weight: math.unit(250, "lbs"),
  9082. name: "Front",
  9083. image: {
  9084. source: "./media/characters/yevis/front.svg",
  9085. extra: 1938 / 1755
  9086. }
  9087. }
  9088. },
  9089. [
  9090. {
  9091. name: "Mortal",
  9092. height: math.unit(7 + 8 / 12, "feet")
  9093. },
  9094. {
  9095. name: "Battle",
  9096. height: math.unit(25 + 11 / 12, "feet")
  9097. },
  9098. {
  9099. name: "Wrath",
  9100. height: math.unit(1654 + 11 / 12, "feet")
  9101. },
  9102. {
  9103. name: "Planet Destroyer",
  9104. height: math.unit(12000, "miles")
  9105. },
  9106. {
  9107. name: "Galaxy Conqueror",
  9108. height: math.unit(1.45, "zettameters"),
  9109. default: true
  9110. },
  9111. {
  9112. name: "Universal War",
  9113. height: math.unit(184, "gigaparsecs")
  9114. },
  9115. {
  9116. name: "Eternity War",
  9117. height: math.unit(1.98e55, "yottaparsecs")
  9118. },
  9119. ]
  9120. ))
  9121. characterMakers.push(() => makeCharacter(
  9122. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9123. {
  9124. front: {
  9125. height: math.unit(5 + 8 / 12, "feet"),
  9126. weight: math.unit(63, "kg"),
  9127. name: "Front",
  9128. image: {
  9129. source: "./media/characters/xavier/front.svg",
  9130. extra: 944 / 883
  9131. }
  9132. },
  9133. frontStretch: {
  9134. height: math.unit(5 + 8 / 12, "feet"),
  9135. weight: math.unit(63, "kg"),
  9136. name: "Stretching",
  9137. image: {
  9138. source: "./media/characters/xavier/front-stretch.svg",
  9139. extra: 962 / 820
  9140. }
  9141. },
  9142. },
  9143. [
  9144. {
  9145. name: "Normal",
  9146. height: math.unit(5 + 8 / 12, "feet")
  9147. },
  9148. {
  9149. name: "Macro",
  9150. height: math.unit(100, "meters"),
  9151. default: true
  9152. },
  9153. {
  9154. name: "McLargeHuge",
  9155. height: math.unit(10, "miles")
  9156. },
  9157. ]
  9158. ))
  9159. characterMakers.push(() => makeCharacter(
  9160. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9161. {
  9162. front: {
  9163. height: math.unit(5 + 5 / 12, "feet"),
  9164. weight: math.unit(150, "lb"),
  9165. name: "Front",
  9166. image: {
  9167. source: "./media/characters/joshii/front.svg",
  9168. extra: 765 / 653,
  9169. bottom: 51 / 816
  9170. }
  9171. },
  9172. foot: {
  9173. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9174. name: "Foot",
  9175. image: {
  9176. source: "./media/characters/joshii/foot.svg"
  9177. }
  9178. },
  9179. },
  9180. [
  9181. {
  9182. name: "Micro",
  9183. height: math.unit(2, "inches"),
  9184. default: true
  9185. },
  9186. {
  9187. name: "Normal",
  9188. height: math.unit(5 + 5 / 12, "feet")
  9189. },
  9190. {
  9191. name: "Macro",
  9192. height: math.unit(785, "feet")
  9193. },
  9194. {
  9195. name: "Megamacro",
  9196. height: math.unit(24.5, "miles")
  9197. },
  9198. ]
  9199. ))
  9200. characterMakers.push(() => makeCharacter(
  9201. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9202. {
  9203. front: {
  9204. height: math.unit(6, "feet"),
  9205. weight: math.unit(150, "lb"),
  9206. name: "Front",
  9207. image: {
  9208. source: "./media/characters/goddess-elizabeth/front.svg",
  9209. extra: 1800 / 1525,
  9210. bottom: 0.005
  9211. }
  9212. },
  9213. foot: {
  9214. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9215. name: "Foot",
  9216. image: {
  9217. source: "./media/characters/goddess-elizabeth/foot.svg"
  9218. }
  9219. },
  9220. mouth: {
  9221. height: math.unit(6, "feet"),
  9222. name: "Mouth",
  9223. image: {
  9224. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9225. }
  9226. },
  9227. },
  9228. [
  9229. {
  9230. name: "Micro",
  9231. height: math.unit(12, "feet")
  9232. },
  9233. {
  9234. name: "Normal",
  9235. height: math.unit(80, "miles"),
  9236. default: true
  9237. },
  9238. {
  9239. name: "Macro",
  9240. height: math.unit(15000, "parsecs")
  9241. },
  9242. ]
  9243. ))
  9244. characterMakers.push(() => makeCharacter(
  9245. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9246. {
  9247. front: {
  9248. height: math.unit(5 + 9 / 12, "feet"),
  9249. weight: math.unit(144, "lb"),
  9250. name: "Front",
  9251. image: {
  9252. source: "./media/characters/kara/front.svg"
  9253. }
  9254. },
  9255. feet: {
  9256. height: math.unit(6 / 6.765, "feet"),
  9257. name: "Kara's Feet",
  9258. rename: true,
  9259. image: {
  9260. source: "./media/characters/kara/feet.svg"
  9261. }
  9262. },
  9263. },
  9264. [
  9265. {
  9266. name: "Normal",
  9267. height: math.unit(5 + 9 / 12, "feet")
  9268. },
  9269. {
  9270. name: "Macro",
  9271. height: math.unit(174, "feet"),
  9272. default: true
  9273. },
  9274. ]
  9275. ))
  9276. characterMakers.push(() => makeCharacter(
  9277. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9278. {
  9279. front: {
  9280. height: math.unit(18, "feet"),
  9281. weight: math.unit(4050, "lb"),
  9282. name: "Front",
  9283. image: {
  9284. source: "./media/characters/tyrone/front.svg",
  9285. extra: 2405 / 2270,
  9286. bottom: 182 / 2587
  9287. }
  9288. },
  9289. },
  9290. [
  9291. {
  9292. name: "Normal",
  9293. height: math.unit(18, "feet"),
  9294. default: true
  9295. },
  9296. {
  9297. name: "Macro",
  9298. height: math.unit(300, "feet")
  9299. },
  9300. {
  9301. name: "Megamacro",
  9302. height: math.unit(15, "km")
  9303. },
  9304. {
  9305. name: "Gigamacro",
  9306. height: math.unit(500, "km")
  9307. },
  9308. {
  9309. name: "Teramacro",
  9310. height: math.unit(0.5, "gigameters")
  9311. },
  9312. {
  9313. name: "Omnimacro",
  9314. height: math.unit(1e252, "yottauniverse")
  9315. },
  9316. ]
  9317. ))
  9318. characterMakers.push(() => makeCharacter(
  9319. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9320. {
  9321. front: {
  9322. height: math.unit(7 + 8 / 12, "feet"),
  9323. weight: math.unit(120, "lb"),
  9324. name: "Front",
  9325. image: {
  9326. source: "./media/characters/danny/front.svg",
  9327. extra: 1490 / 1350
  9328. }
  9329. },
  9330. back: {
  9331. height: math.unit(7 + 8 / 12, "feet"),
  9332. weight: math.unit(120, "lb"),
  9333. name: "Back",
  9334. image: {
  9335. source: "./media/characters/danny/back.svg",
  9336. extra: 1490 / 1350
  9337. }
  9338. },
  9339. },
  9340. [
  9341. {
  9342. name: "Normal",
  9343. height: math.unit(7 + 8 / 12, "feet"),
  9344. default: true
  9345. },
  9346. ]
  9347. ))
  9348. characterMakers.push(() => makeCharacter(
  9349. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9350. {
  9351. front: {
  9352. height: math.unit(3.5, "inches"),
  9353. weight: math.unit(19, "grams"),
  9354. name: "Front",
  9355. image: {
  9356. source: "./media/characters/mallow/front.svg",
  9357. extra: 471 / 431
  9358. }
  9359. },
  9360. back: {
  9361. height: math.unit(3.5, "inches"),
  9362. weight: math.unit(19, "grams"),
  9363. name: "Back",
  9364. image: {
  9365. source: "./media/characters/mallow/back.svg",
  9366. extra: 471 / 431
  9367. }
  9368. },
  9369. },
  9370. [
  9371. {
  9372. name: "Normal",
  9373. height: math.unit(3.5, "inches"),
  9374. default: true
  9375. },
  9376. ]
  9377. ))
  9378. characterMakers.push(() => makeCharacter(
  9379. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9380. {
  9381. front: {
  9382. height: math.unit(9, "feet"),
  9383. weight: math.unit(230, "kg"),
  9384. name: "Front",
  9385. image: {
  9386. source: "./media/characters/starry-aqua/front.svg"
  9387. }
  9388. },
  9389. back: {
  9390. height: math.unit(9, "feet"),
  9391. weight: math.unit(230, "kg"),
  9392. name: "Back",
  9393. image: {
  9394. source: "./media/characters/starry-aqua/back.svg"
  9395. }
  9396. },
  9397. hand: {
  9398. height: math.unit(9 * 0.1168, "feet"),
  9399. name: "Hand",
  9400. image: {
  9401. source: "./media/characters/starry-aqua/hand.svg"
  9402. }
  9403. },
  9404. foot: {
  9405. height: math.unit(9 * 0.18, "feet"),
  9406. name: "Foot",
  9407. image: {
  9408. source: "./media/characters/starry-aqua/foot.svg"
  9409. }
  9410. }
  9411. },
  9412. [
  9413. {
  9414. name: "Micro",
  9415. height: math.unit(3, "inches")
  9416. },
  9417. {
  9418. name: "Normal",
  9419. height: math.unit(9, "feet")
  9420. },
  9421. {
  9422. name: "Macro",
  9423. height: math.unit(300, "feet"),
  9424. default: true
  9425. },
  9426. {
  9427. name: "Megamacro",
  9428. height: math.unit(3200, "feet")
  9429. }
  9430. ]
  9431. ))
  9432. characterMakers.push(() => makeCharacter(
  9433. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9434. {
  9435. front: {
  9436. height: math.unit(15, "feet"),
  9437. weight: math.unit(5026, "lb"),
  9438. name: "Front",
  9439. image: {
  9440. source: "./media/characters/luka-towers/front.svg",
  9441. extra: 1269/1133,
  9442. bottom: 51/1320
  9443. }
  9444. },
  9445. },
  9446. [
  9447. {
  9448. name: "Normal",
  9449. height: math.unit(15, "feet"),
  9450. default: true
  9451. },
  9452. {
  9453. name: "Minimacro",
  9454. height: math.unit(25, "feet")
  9455. },
  9456. {
  9457. name: "Macro",
  9458. height: math.unit(320, "feet")
  9459. },
  9460. {
  9461. name: "Megamacro",
  9462. height: math.unit(35000, "feet")
  9463. },
  9464. {
  9465. name: "Gigamacro",
  9466. height: math.unit(4000, "miles")
  9467. },
  9468. {
  9469. name: "Teramacro",
  9470. height: math.unit(15000, "miles")
  9471. },
  9472. ]
  9473. ))
  9474. characterMakers.push(() => makeCharacter(
  9475. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9476. {
  9477. front: {
  9478. height: math.unit(6, "feet"),
  9479. weight: math.unit(150, "lb"),
  9480. name: "Front",
  9481. image: {
  9482. source: "./media/characters/natalie-nightring/front.svg",
  9483. extra: 1,
  9484. bottom: 0.06
  9485. }
  9486. },
  9487. },
  9488. [
  9489. {
  9490. name: "Uh Oh",
  9491. height: math.unit(0.1, "mm")
  9492. },
  9493. {
  9494. name: "Small",
  9495. height: math.unit(3, "inches")
  9496. },
  9497. {
  9498. name: "Human Scale",
  9499. height: math.unit(6, "feet")
  9500. },
  9501. {
  9502. name: "Librarian",
  9503. height: math.unit(50, "feet"),
  9504. default: true
  9505. },
  9506. {
  9507. name: "Immense",
  9508. height: math.unit(200, "miles")
  9509. },
  9510. ]
  9511. ))
  9512. characterMakers.push(() => makeCharacter(
  9513. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9514. {
  9515. front: {
  9516. height: math.unit(6, "feet"),
  9517. weight: math.unit(180, "lbs"),
  9518. name: "Front",
  9519. image: {
  9520. source: "./media/characters/danni-rosie/front.svg",
  9521. extra: 1260 / 1128,
  9522. bottom: 0.022
  9523. }
  9524. },
  9525. },
  9526. [
  9527. {
  9528. name: "Micro",
  9529. height: math.unit(2, "inches"),
  9530. default: true
  9531. },
  9532. ]
  9533. ))
  9534. characterMakers.push(() => makeCharacter(
  9535. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9536. {
  9537. front: {
  9538. height: math.unit(5 + 9 / 12, "feet"),
  9539. weight: math.unit(220, "lb"),
  9540. name: "Front",
  9541. image: {
  9542. source: "./media/characters/samantha-kruse/front.svg",
  9543. extra: (985 / 935),
  9544. bottom: 0.03
  9545. }
  9546. },
  9547. frontUndressed: {
  9548. height: math.unit(5 + 9 / 12, "feet"),
  9549. weight: math.unit(220, "lb"),
  9550. name: "Front (Undressed)",
  9551. image: {
  9552. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9553. extra: (973 / 923),
  9554. bottom: 0.025
  9555. }
  9556. },
  9557. fat: {
  9558. height: math.unit(5 + 9 / 12, "feet"),
  9559. weight: math.unit(900, "lb"),
  9560. name: "Front (Fat)",
  9561. image: {
  9562. source: "./media/characters/samantha-kruse/fat.svg",
  9563. extra: 2688 / 2561
  9564. }
  9565. },
  9566. },
  9567. [
  9568. {
  9569. name: "Normal",
  9570. height: math.unit(5 + 9 / 12, "feet"),
  9571. default: true
  9572. }
  9573. ]
  9574. ))
  9575. characterMakers.push(() => makeCharacter(
  9576. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9577. {
  9578. back: {
  9579. height: math.unit(5 + 4 / 12, "feet"),
  9580. weight: math.unit(4963, "lb"),
  9581. name: "Back",
  9582. image: {
  9583. source: "./media/characters/amelia-rosie/back.svg",
  9584. extra: 1113 / 963,
  9585. bottom: 0.01
  9586. }
  9587. },
  9588. },
  9589. [
  9590. {
  9591. name: "Level 0",
  9592. height: math.unit(5 + 4 / 12, "feet")
  9593. },
  9594. {
  9595. name: "Level 1",
  9596. height: math.unit(164597, "feet"),
  9597. default: true
  9598. },
  9599. {
  9600. name: "Level 2",
  9601. height: math.unit(956243, "miles")
  9602. },
  9603. {
  9604. name: "Level 3",
  9605. height: math.unit(29421709423, "miles")
  9606. },
  9607. {
  9608. name: "Level 4",
  9609. height: math.unit(154, "lightyears")
  9610. },
  9611. {
  9612. name: "Level 5",
  9613. height: math.unit(4738272, "lightyears")
  9614. },
  9615. {
  9616. name: "Level 6",
  9617. height: math.unit(145787152896, "lightyears")
  9618. },
  9619. ]
  9620. ))
  9621. characterMakers.push(() => makeCharacter(
  9622. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9623. {
  9624. front: {
  9625. height: math.unit(5 + 11 / 12, "feet"),
  9626. weight: math.unit(65, "kg"),
  9627. name: "Front",
  9628. image: {
  9629. source: "./media/characters/rook-kitara/front.svg",
  9630. extra: 1347 / 1274,
  9631. bottom: 0.005
  9632. }
  9633. },
  9634. },
  9635. [
  9636. {
  9637. name: "Totally Unfair",
  9638. height: math.unit(1.8, "mm")
  9639. },
  9640. {
  9641. name: "Lap Rookie",
  9642. height: math.unit(1.4, "feet")
  9643. },
  9644. {
  9645. name: "Normal",
  9646. height: math.unit(5 + 11 / 12, "feet"),
  9647. default: true
  9648. },
  9649. {
  9650. name: "How Did This Happen",
  9651. height: math.unit(80, "miles")
  9652. }
  9653. ]
  9654. ))
  9655. characterMakers.push(() => makeCharacter(
  9656. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9657. {
  9658. front: {
  9659. height: math.unit(7, "feet"),
  9660. weight: math.unit(300, "lb"),
  9661. name: "Front",
  9662. image: {
  9663. source: "./media/characters/pisces/front.svg",
  9664. extra: 2255 / 2115,
  9665. bottom: 0.03
  9666. }
  9667. },
  9668. back: {
  9669. height: math.unit(7, "feet"),
  9670. weight: math.unit(300, "lb"),
  9671. name: "Back",
  9672. image: {
  9673. source: "./media/characters/pisces/back.svg",
  9674. extra: 2146 / 2055,
  9675. bottom: 0.04
  9676. }
  9677. },
  9678. },
  9679. [
  9680. {
  9681. name: "Normal",
  9682. height: math.unit(7, "feet"),
  9683. default: true
  9684. },
  9685. {
  9686. name: "Swimming Pool",
  9687. height: math.unit(12.2, "meters")
  9688. },
  9689. {
  9690. name: "Olympic Swimming Pool",
  9691. height: math.unit(56.3, "meters")
  9692. },
  9693. {
  9694. name: "Lake Superior",
  9695. height: math.unit(93900, "meters")
  9696. },
  9697. {
  9698. name: "Mediterranean Sea",
  9699. height: math.unit(644457, "meters")
  9700. },
  9701. {
  9702. name: "World's Oceans",
  9703. height: math.unit(4567491, "meters")
  9704. },
  9705. ]
  9706. ))
  9707. characterMakers.push(() => makeCharacter(
  9708. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9709. {
  9710. front: {
  9711. height: math.unit(2.3, "meters"),
  9712. weight: math.unit(120, "kg"),
  9713. name: "Front",
  9714. image: {
  9715. source: "./media/characters/zelas/front.svg"
  9716. }
  9717. },
  9718. side: {
  9719. height: math.unit(2.3, "meters"),
  9720. weight: math.unit(120, "kg"),
  9721. name: "Side",
  9722. image: {
  9723. source: "./media/characters/zelas/side.svg"
  9724. }
  9725. },
  9726. back: {
  9727. height: math.unit(2.3, "meters"),
  9728. weight: math.unit(120, "kg"),
  9729. name: "Back",
  9730. image: {
  9731. source: "./media/characters/zelas/back.svg"
  9732. }
  9733. },
  9734. foot: {
  9735. height: math.unit(1.116, "feet"),
  9736. name: "Foot",
  9737. image: {
  9738. source: "./media/characters/zelas/foot.svg"
  9739. }
  9740. },
  9741. },
  9742. [
  9743. {
  9744. name: "Normal",
  9745. height: math.unit(2.3, "meters")
  9746. },
  9747. {
  9748. name: "Macro",
  9749. height: math.unit(30, "meters"),
  9750. default: true
  9751. },
  9752. ]
  9753. ))
  9754. characterMakers.push(() => makeCharacter(
  9755. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9756. {
  9757. front: {
  9758. height: math.unit(1, "inch"),
  9759. weight: math.unit(0.21, "grams"),
  9760. name: "Front",
  9761. image: {
  9762. source: "./media/characters/talbot/front.svg",
  9763. extra: 594 / 544
  9764. }
  9765. },
  9766. },
  9767. [
  9768. {
  9769. name: "Micro",
  9770. height: math.unit(1, "inch"),
  9771. default: true
  9772. },
  9773. ]
  9774. ))
  9775. characterMakers.push(() => makeCharacter(
  9776. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9777. {
  9778. front: {
  9779. height: math.unit(3 + 3 / 12, "feet"),
  9780. weight: math.unit(51.8, "lb"),
  9781. name: "Front",
  9782. image: {
  9783. source: "./media/characters/fliss/front.svg",
  9784. extra: 840 / 640
  9785. }
  9786. },
  9787. },
  9788. [
  9789. {
  9790. name: "Teeny Tiny",
  9791. height: math.unit(1, "mm")
  9792. },
  9793. {
  9794. name: "Small",
  9795. height: math.unit(1, "inch"),
  9796. default: true
  9797. },
  9798. {
  9799. name: "Standard Sylveon",
  9800. height: math.unit(3 + 3 / 12, "feet")
  9801. },
  9802. {
  9803. name: "Large Nuisance",
  9804. height: math.unit(33, "feet")
  9805. },
  9806. {
  9807. name: "City Filler",
  9808. height: math.unit(3000, "feet")
  9809. },
  9810. {
  9811. name: "New Horizon",
  9812. height: math.unit(6000, "miles")
  9813. },
  9814. ]
  9815. ))
  9816. characterMakers.push(() => makeCharacter(
  9817. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9818. {
  9819. front: {
  9820. height: math.unit(5, "cm"),
  9821. weight: math.unit(1.94, "g"),
  9822. name: "Front",
  9823. image: {
  9824. source: "./media/characters/fleta/front.svg",
  9825. extra: 835 / 803
  9826. }
  9827. },
  9828. back: {
  9829. height: math.unit(5, "cm"),
  9830. weight: math.unit(1.94, "g"),
  9831. name: "Back",
  9832. image: {
  9833. source: "./media/characters/fleta/back.svg",
  9834. extra: 835 / 803
  9835. }
  9836. },
  9837. },
  9838. [
  9839. {
  9840. name: "Micro",
  9841. height: math.unit(5, "cm"),
  9842. default: true
  9843. },
  9844. ]
  9845. ))
  9846. characterMakers.push(() => makeCharacter(
  9847. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9848. {
  9849. front: {
  9850. height: math.unit(6, "feet"),
  9851. weight: math.unit(225, "lb"),
  9852. name: "Front",
  9853. image: {
  9854. source: "./media/characters/dominic/front.svg",
  9855. extra: 1770 / 1620,
  9856. bottom: 0.025
  9857. }
  9858. },
  9859. back: {
  9860. height: math.unit(6, "feet"),
  9861. weight: math.unit(225, "lb"),
  9862. name: "Back",
  9863. image: {
  9864. source: "./media/characters/dominic/back.svg",
  9865. extra: 1745 / 1620,
  9866. bottom: 0.065
  9867. }
  9868. },
  9869. },
  9870. [
  9871. {
  9872. name: "Nano",
  9873. height: math.unit(0.1, "mm")
  9874. },
  9875. {
  9876. name: "Micro-",
  9877. height: math.unit(1, "mm")
  9878. },
  9879. {
  9880. name: "Micro",
  9881. height: math.unit(4, "inches")
  9882. },
  9883. {
  9884. name: "Normal",
  9885. height: math.unit(6 + 4 / 12, "feet"),
  9886. default: true
  9887. },
  9888. {
  9889. name: "Macro",
  9890. height: math.unit(115, "feet")
  9891. },
  9892. {
  9893. name: "Macro+",
  9894. height: math.unit(955, "feet")
  9895. },
  9896. {
  9897. name: "Megamacro",
  9898. height: math.unit(8990, "feet")
  9899. },
  9900. {
  9901. name: "Gigmacro",
  9902. height: math.unit(9310, "miles")
  9903. },
  9904. {
  9905. name: "Teramacro",
  9906. height: math.unit(1567005010, "miles")
  9907. },
  9908. {
  9909. name: "Examacro",
  9910. height: math.unit(1425, "parsecs")
  9911. },
  9912. ]
  9913. ))
  9914. characterMakers.push(() => makeCharacter(
  9915. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9916. {
  9917. front: {
  9918. height: math.unit(400, "feet"),
  9919. weight: math.unit(44444444, "lb"),
  9920. name: "Front",
  9921. image: {
  9922. source: "./media/characters/major-colonel/front.svg"
  9923. }
  9924. },
  9925. back: {
  9926. height: math.unit(400, "feet"),
  9927. weight: math.unit(44444444, "lb"),
  9928. name: "Back",
  9929. image: {
  9930. source: "./media/characters/major-colonel/back.svg"
  9931. }
  9932. },
  9933. },
  9934. [
  9935. {
  9936. name: "Macro",
  9937. height: math.unit(400, "feet"),
  9938. default: true
  9939. },
  9940. ]
  9941. ))
  9942. characterMakers.push(() => makeCharacter(
  9943. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9944. {
  9945. catFront: {
  9946. height: math.unit(6, "feet"),
  9947. weight: math.unit(120, "lb"),
  9948. name: "Front (Cat Side)",
  9949. image: {
  9950. source: "./media/characters/axel-lycan/cat-front.svg",
  9951. extra: 430 / 402,
  9952. bottom: 43 / 472.35
  9953. }
  9954. },
  9955. catBack: {
  9956. height: math.unit(6, "feet"),
  9957. weight: math.unit(120, "lb"),
  9958. name: "Back (Cat Side)",
  9959. image: {
  9960. source: "./media/characters/axel-lycan/cat-back.svg",
  9961. extra: 447 / 419,
  9962. bottom: 23.3 / 469
  9963. }
  9964. },
  9965. wolfFront: {
  9966. height: math.unit(6, "feet"),
  9967. weight: math.unit(120, "lb"),
  9968. name: "Front (Wolf Side)",
  9969. image: {
  9970. source: "./media/characters/axel-lycan/wolf-front.svg",
  9971. extra: 485 / 456,
  9972. bottom: 19 / 504
  9973. }
  9974. },
  9975. wolfBack: {
  9976. height: math.unit(6, "feet"),
  9977. weight: math.unit(120, "lb"),
  9978. name: "Back (Wolf Side)",
  9979. image: {
  9980. source: "./media/characters/axel-lycan/wolf-back.svg",
  9981. extra: 475 / 438,
  9982. bottom: 39.2 / 514
  9983. }
  9984. },
  9985. },
  9986. [
  9987. {
  9988. name: "Macro",
  9989. height: math.unit(1, "km"),
  9990. default: true
  9991. },
  9992. ]
  9993. ))
  9994. characterMakers.push(() => makeCharacter(
  9995. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9996. {
  9997. front: {
  9998. height: math.unit(5 + 9 / 12, "feet"),
  9999. weight: math.unit(175, "lb"),
  10000. name: "Front",
  10001. image: {
  10002. source: "./media/characters/vanrel-hyena/front.svg",
  10003. extra: 1086 / 1010,
  10004. bottom: 0.04
  10005. }
  10006. },
  10007. },
  10008. [
  10009. {
  10010. name: "Normal",
  10011. height: math.unit(5 + 9 / 12, "feet"),
  10012. default: true
  10013. },
  10014. ]
  10015. ))
  10016. characterMakers.push(() => makeCharacter(
  10017. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10018. {
  10019. front: {
  10020. height: math.unit(6, "feet"),
  10021. weight: math.unit(103, "lb"),
  10022. name: "Front",
  10023. image: {
  10024. source: "./media/characters/abbott-absol/front.svg",
  10025. extra: 2010 / 1842
  10026. }
  10027. },
  10028. },
  10029. [
  10030. {
  10031. name: "Megamicro",
  10032. height: math.unit(0.1, "mm")
  10033. },
  10034. {
  10035. name: "Micro",
  10036. height: math.unit(1, "inch")
  10037. },
  10038. {
  10039. name: "Normal",
  10040. height: math.unit(6, "feet"),
  10041. default: true
  10042. },
  10043. ]
  10044. ))
  10045. characterMakers.push(() => makeCharacter(
  10046. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10047. {
  10048. front: {
  10049. height: math.unit(6, "feet"),
  10050. weight: math.unit(264, "lb"),
  10051. name: "Front",
  10052. image: {
  10053. source: "./media/characters/hector/front.svg",
  10054. extra: 2280 / 2130,
  10055. bottom: 0.07
  10056. }
  10057. },
  10058. },
  10059. [
  10060. {
  10061. name: "Normal",
  10062. height: math.unit(12.25, "foot"),
  10063. default: true
  10064. },
  10065. {
  10066. name: "Macro",
  10067. height: math.unit(160, "feet")
  10068. },
  10069. ]
  10070. ))
  10071. characterMakers.push(() => makeCharacter(
  10072. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10073. {
  10074. front: {
  10075. height: math.unit(6, "feet"),
  10076. weight: math.unit(150, "lb"),
  10077. name: "Front",
  10078. image: {
  10079. source: "./media/characters/sal/front.svg",
  10080. extra: 1846 / 1699,
  10081. bottom: 0.04
  10082. }
  10083. },
  10084. },
  10085. [
  10086. {
  10087. name: "Megamacro",
  10088. height: math.unit(10, "miles"),
  10089. default: true
  10090. },
  10091. ]
  10092. ))
  10093. characterMakers.push(() => makeCharacter(
  10094. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10095. {
  10096. front: {
  10097. height: math.unit(3, "meters"),
  10098. weight: math.unit(450, "kg"),
  10099. name: "front",
  10100. image: {
  10101. source: "./media/characters/ranger/front.svg",
  10102. extra: 2401 / 2243,
  10103. bottom: 0.05
  10104. }
  10105. },
  10106. },
  10107. [
  10108. {
  10109. name: "Normal",
  10110. height: math.unit(3, "meters"),
  10111. default: true
  10112. },
  10113. ]
  10114. ))
  10115. characterMakers.push(() => makeCharacter(
  10116. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10117. {
  10118. front: {
  10119. height: math.unit(14, "feet"),
  10120. weight: math.unit(800, "kg"),
  10121. name: "Front",
  10122. image: {
  10123. source: "./media/characters/theresa/front.svg",
  10124. extra: 3575 / 3346,
  10125. bottom: 0.03
  10126. }
  10127. },
  10128. },
  10129. [
  10130. {
  10131. name: "Normal",
  10132. height: math.unit(14, "feet"),
  10133. default: true
  10134. },
  10135. ]
  10136. ))
  10137. characterMakers.push(() => makeCharacter(
  10138. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10139. {
  10140. front: {
  10141. height: math.unit(6, "feet"),
  10142. weight: math.unit(3, "kg"),
  10143. name: "Front",
  10144. image: {
  10145. source: "./media/characters/ine/front.svg",
  10146. extra: 678 / 539,
  10147. bottom: 0.023
  10148. }
  10149. },
  10150. },
  10151. [
  10152. {
  10153. name: "Normal",
  10154. height: math.unit(2.265, "feet"),
  10155. default: true
  10156. },
  10157. ]
  10158. ))
  10159. characterMakers.push(() => makeCharacter(
  10160. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10161. {
  10162. front: {
  10163. height: math.unit(5, "feet"),
  10164. weight: math.unit(30, "kg"),
  10165. name: "Front",
  10166. image: {
  10167. source: "./media/characters/vial/front.svg",
  10168. extra: 1365 / 1277,
  10169. bottom: 0.04
  10170. }
  10171. },
  10172. },
  10173. [
  10174. {
  10175. name: "Normal",
  10176. height: math.unit(5, "feet"),
  10177. default: true
  10178. },
  10179. ]
  10180. ))
  10181. characterMakers.push(() => makeCharacter(
  10182. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10183. {
  10184. side: {
  10185. height: math.unit(3.4, "meters"),
  10186. weight: math.unit(1000, "lb"),
  10187. name: "Side",
  10188. image: {
  10189. source: "./media/characters/rovoska/side.svg",
  10190. extra: 4403 / 1515
  10191. }
  10192. },
  10193. },
  10194. [
  10195. {
  10196. name: "Normal",
  10197. height: math.unit(3.4, "meters"),
  10198. default: true
  10199. },
  10200. ]
  10201. ))
  10202. characterMakers.push(() => makeCharacter(
  10203. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10204. {
  10205. front: {
  10206. height: math.unit(8, "feet"),
  10207. weight: math.unit(315, "lb"),
  10208. name: "Front",
  10209. image: {
  10210. source: "./media/characters/gunner-rotthbauer/front.svg"
  10211. }
  10212. },
  10213. back: {
  10214. height: math.unit(8, "feet"),
  10215. weight: math.unit(315, "lb"),
  10216. name: "Back",
  10217. image: {
  10218. source: "./media/characters/gunner-rotthbauer/back.svg"
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Micro",
  10225. height: math.unit(3.5, "inches")
  10226. },
  10227. {
  10228. name: "Normal",
  10229. height: math.unit(8, "feet"),
  10230. default: true
  10231. },
  10232. {
  10233. name: "Macro",
  10234. height: math.unit(250, "feet")
  10235. },
  10236. {
  10237. name: "Megamacro",
  10238. height: math.unit(1, "AU")
  10239. },
  10240. ]
  10241. ))
  10242. characterMakers.push(() => makeCharacter(
  10243. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10244. {
  10245. front: {
  10246. height: math.unit(5 + 5 / 12, "feet"),
  10247. weight: math.unit(140, "lb"),
  10248. name: "Front",
  10249. image: {
  10250. source: "./media/characters/allatia/front.svg",
  10251. extra: 1227 / 1180,
  10252. bottom: 0.027
  10253. }
  10254. },
  10255. },
  10256. [
  10257. {
  10258. name: "Normal",
  10259. height: math.unit(5 + 5 / 12, "feet")
  10260. },
  10261. {
  10262. name: "Macro",
  10263. height: math.unit(250, "feet"),
  10264. default: true
  10265. },
  10266. {
  10267. name: "Megamacro",
  10268. height: math.unit(8, "miles")
  10269. }
  10270. ]
  10271. ))
  10272. characterMakers.push(() => makeCharacter(
  10273. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10274. {
  10275. front: {
  10276. height: math.unit(6, "feet"),
  10277. weight: math.unit(120, "lb"),
  10278. name: "Front",
  10279. image: {
  10280. source: "./media/characters/tene/front.svg",
  10281. extra: 814/750,
  10282. bottom: 36/850
  10283. }
  10284. },
  10285. stomping: {
  10286. height: math.unit(2.025, "meters"),
  10287. weight: math.unit(120, "lb"),
  10288. name: "Stomping",
  10289. image: {
  10290. source: "./media/characters/tene/stomping.svg",
  10291. extra: 885/821,
  10292. bottom: 15/900
  10293. }
  10294. },
  10295. sitting: {
  10296. height: math.unit(1, "meter"),
  10297. weight: math.unit(120, "lb"),
  10298. name: "Sitting",
  10299. image: {
  10300. source: "./media/characters/tene/sitting.svg",
  10301. extra: 396/366,
  10302. bottom: 79/475
  10303. }
  10304. },
  10305. smiling: {
  10306. height: math.unit(1.2, "feet"),
  10307. name: "Smiling",
  10308. image: {
  10309. source: "./media/characters/tene/smiling.svg",
  10310. extra: 1364/1071,
  10311. bottom: 0/1364
  10312. }
  10313. },
  10314. smug: {
  10315. height: math.unit(1.3, "feet"),
  10316. name: "Smug",
  10317. image: {
  10318. source: "./media/characters/tene/smug.svg",
  10319. extra: 1323/1082,
  10320. bottom: 0/1323
  10321. }
  10322. },
  10323. feral: {
  10324. height: math.unit(3.9, "feet"),
  10325. weight: math.unit(250, "lb"),
  10326. name: "Feral",
  10327. image: {
  10328. source: "./media/characters/tene/feral.svg",
  10329. extra: 717 / 458,
  10330. bottom: 0.179
  10331. }
  10332. },
  10333. },
  10334. [
  10335. {
  10336. name: "Normal",
  10337. height: math.unit(6, "feet")
  10338. },
  10339. {
  10340. name: "Macro",
  10341. height: math.unit(300, "feet"),
  10342. default: true
  10343. },
  10344. {
  10345. name: "Megamacro",
  10346. height: math.unit(5, "miles")
  10347. },
  10348. ]
  10349. ))
  10350. characterMakers.push(() => makeCharacter(
  10351. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10352. {
  10353. side: {
  10354. height: math.unit(6, "feet"),
  10355. name: "Side",
  10356. image: {
  10357. source: "./media/characters/evander/side.svg",
  10358. extra: 877 / 477
  10359. }
  10360. },
  10361. },
  10362. [
  10363. {
  10364. name: "Normal",
  10365. height: math.unit(0.83, "meters"),
  10366. default: true
  10367. },
  10368. ]
  10369. ))
  10370. characterMakers.push(() => makeCharacter(
  10371. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10372. {
  10373. front: {
  10374. height: math.unit(12, "feet"),
  10375. weight: math.unit(1000, "lb"),
  10376. name: "Front",
  10377. image: {
  10378. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10379. extra: 1762 / 1611
  10380. }
  10381. },
  10382. back: {
  10383. height: math.unit(12, "feet"),
  10384. weight: math.unit(1000, "lb"),
  10385. name: "Back",
  10386. image: {
  10387. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10388. extra: 1762 / 1611
  10389. }
  10390. },
  10391. },
  10392. [
  10393. {
  10394. name: "Normal",
  10395. height: math.unit(12, "feet"),
  10396. default: true
  10397. },
  10398. {
  10399. name: "Kaiju",
  10400. height: math.unit(150, "feet")
  10401. },
  10402. ]
  10403. ))
  10404. characterMakers.push(() => makeCharacter(
  10405. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10406. {
  10407. front: {
  10408. height: math.unit(6, "feet"),
  10409. weight: math.unit(150, "lb"),
  10410. name: "Front",
  10411. image: {
  10412. source: "./media/characters/zero-alurus/front.svg"
  10413. }
  10414. },
  10415. back: {
  10416. height: math.unit(6, "feet"),
  10417. weight: math.unit(150, "lb"),
  10418. name: "Back",
  10419. image: {
  10420. source: "./media/characters/zero-alurus/back.svg"
  10421. }
  10422. },
  10423. },
  10424. [
  10425. {
  10426. name: "Normal",
  10427. height: math.unit(5 + 10 / 12, "feet")
  10428. },
  10429. {
  10430. name: "Macro",
  10431. height: math.unit(60, "feet"),
  10432. default: true
  10433. },
  10434. {
  10435. name: "Macro+",
  10436. height: math.unit(450, "feet")
  10437. },
  10438. ]
  10439. ))
  10440. characterMakers.push(() => makeCharacter(
  10441. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10442. {
  10443. front: {
  10444. height: math.unit(6, "feet"),
  10445. weight: math.unit(200, "lb"),
  10446. name: "Front",
  10447. image: {
  10448. source: "./media/characters/mega-shi/front.svg",
  10449. extra: 1279 / 1250,
  10450. bottom: 0.02
  10451. }
  10452. },
  10453. back: {
  10454. height: math.unit(6, "feet"),
  10455. weight: math.unit(200, "lb"),
  10456. name: "Back",
  10457. image: {
  10458. source: "./media/characters/mega-shi/back.svg",
  10459. extra: 1279 / 1250,
  10460. bottom: 0.02
  10461. }
  10462. },
  10463. },
  10464. [
  10465. {
  10466. name: "Micro",
  10467. height: math.unit(16 + 6 / 12, "feet")
  10468. },
  10469. {
  10470. name: "Third Dimension",
  10471. height: math.unit(40, "meters")
  10472. },
  10473. {
  10474. name: "Normal",
  10475. height: math.unit(660, "feet"),
  10476. default: true
  10477. },
  10478. {
  10479. name: "Megamacro",
  10480. height: math.unit(10, "miles")
  10481. },
  10482. {
  10483. name: "Planetary Launch",
  10484. height: math.unit(500, "miles")
  10485. },
  10486. {
  10487. name: "Interstellar",
  10488. height: math.unit(1e9, "miles")
  10489. },
  10490. {
  10491. name: "Leaving the Universe",
  10492. height: math.unit(1, "gigaparsec")
  10493. },
  10494. {
  10495. name: "Travelling Universes",
  10496. height: math.unit(30e15, "parsecs")
  10497. },
  10498. ]
  10499. ))
  10500. characterMakers.push(() => makeCharacter(
  10501. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10502. {
  10503. front: {
  10504. height: math.unit(5 + 4/12, "feet"),
  10505. weight: math.unit(120, "lb"),
  10506. name: "Front",
  10507. image: {
  10508. source: "./media/characters/odyssey/front.svg",
  10509. extra: 1747/1571,
  10510. bottom: 47/1794
  10511. }
  10512. },
  10513. side: {
  10514. height: math.unit(5.1, "feet"),
  10515. weight: math.unit(120, "lb"),
  10516. name: "Side",
  10517. image: {
  10518. source: "./media/characters/odyssey/side.svg",
  10519. extra: 1847/1619,
  10520. bottom: 47/1894
  10521. }
  10522. },
  10523. lounging: {
  10524. height: math.unit(1.464, "feet"),
  10525. weight: math.unit(120, "lb"),
  10526. name: "Lounging",
  10527. image: {
  10528. source: "./media/characters/odyssey/lounging.svg",
  10529. extra: 1235/837,
  10530. bottom: 551/1786
  10531. }
  10532. },
  10533. },
  10534. [
  10535. {
  10536. name: "Normal",
  10537. height: math.unit(5 + 4 / 12, "feet")
  10538. },
  10539. {
  10540. name: "Macro",
  10541. height: math.unit(1, "km")
  10542. },
  10543. {
  10544. name: "Megamacro",
  10545. height: math.unit(3000, "km")
  10546. },
  10547. {
  10548. name: "Gigamacro",
  10549. height: math.unit(1, "AU"),
  10550. default: true
  10551. },
  10552. {
  10553. name: "Omniversal",
  10554. height: math.unit(100e14, "lightyears")
  10555. },
  10556. ]
  10557. ))
  10558. characterMakers.push(() => makeCharacter(
  10559. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10560. {
  10561. front: {
  10562. height: math.unit(6, "feet"),
  10563. weight: math.unit(300, "lb"),
  10564. name: "Front",
  10565. image: {
  10566. source: "./media/characters/mekuto/front.svg",
  10567. extra: 921 / 832,
  10568. bottom: 0.03
  10569. }
  10570. },
  10571. hand: {
  10572. height: math.unit(6 / 10.24, "feet"),
  10573. name: "Hand",
  10574. image: {
  10575. source: "./media/characters/mekuto/hand.svg"
  10576. }
  10577. },
  10578. foot: {
  10579. height: math.unit(6 / 5.05, "feet"),
  10580. name: "Foot",
  10581. image: {
  10582. source: "./media/characters/mekuto/foot.svg"
  10583. }
  10584. },
  10585. },
  10586. [
  10587. {
  10588. name: "Minimicro",
  10589. height: math.unit(0.2, "inches")
  10590. },
  10591. {
  10592. name: "Micro",
  10593. height: math.unit(1.5, "inches")
  10594. },
  10595. {
  10596. name: "Normal",
  10597. height: math.unit(5 + 11 / 12, "feet"),
  10598. default: true
  10599. },
  10600. {
  10601. name: "Minimacro",
  10602. height: math.unit(17 + 9 / 12, "feet")
  10603. },
  10604. {
  10605. name: "Macro",
  10606. height: math.unit(177.5, "feet")
  10607. },
  10608. {
  10609. name: "Megamacro",
  10610. height: math.unit(152, "miles")
  10611. },
  10612. ]
  10613. ))
  10614. characterMakers.push(() => makeCharacter(
  10615. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10616. {
  10617. front: {
  10618. height: math.unit(6.5, "inches"),
  10619. weight: math.unit(13, "oz"),
  10620. name: "Front",
  10621. image: {
  10622. source: "./media/characters/dafydd-tomos/front.svg",
  10623. extra: 2990 / 2603,
  10624. bottom: 0.03
  10625. }
  10626. },
  10627. },
  10628. [
  10629. {
  10630. name: "Micro",
  10631. height: math.unit(6.5, "inches"),
  10632. default: true
  10633. },
  10634. ]
  10635. ))
  10636. characterMakers.push(() => makeCharacter(
  10637. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10638. {
  10639. front: {
  10640. height: math.unit(6, "feet"),
  10641. weight: math.unit(150, "lb"),
  10642. name: "Front",
  10643. image: {
  10644. source: "./media/characters/splinter/front.svg",
  10645. extra: 2990 / 2882,
  10646. bottom: 0.04
  10647. }
  10648. },
  10649. back: {
  10650. height: math.unit(6, "feet"),
  10651. weight: math.unit(150, "lb"),
  10652. name: "Back",
  10653. image: {
  10654. source: "./media/characters/splinter/back.svg",
  10655. extra: 2990 / 2882,
  10656. bottom: 0.04
  10657. }
  10658. },
  10659. },
  10660. [
  10661. {
  10662. name: "Normal",
  10663. height: math.unit(6, "feet")
  10664. },
  10665. {
  10666. name: "Macro",
  10667. height: math.unit(230, "meters"),
  10668. default: true
  10669. },
  10670. ]
  10671. ))
  10672. characterMakers.push(() => makeCharacter(
  10673. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10674. {
  10675. front: {
  10676. height: math.unit(4 + 10 / 12, "feet"),
  10677. weight: math.unit(480, "lb"),
  10678. name: "Front",
  10679. image: {
  10680. source: "./media/characters/snow-gabumon/front.svg",
  10681. extra: 1140 / 963,
  10682. bottom: 0.058
  10683. }
  10684. },
  10685. back: {
  10686. height: math.unit(4 + 10 / 12, "feet"),
  10687. weight: math.unit(480, "lb"),
  10688. name: "Back",
  10689. image: {
  10690. source: "./media/characters/snow-gabumon/back.svg",
  10691. extra: 1115 / 962,
  10692. bottom: 0.041
  10693. }
  10694. },
  10695. frontUndresed: {
  10696. height: math.unit(4 + 10 / 12, "feet"),
  10697. weight: math.unit(480, "lb"),
  10698. name: "Front (Undressed)",
  10699. image: {
  10700. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10701. extra: 1061 / 960,
  10702. bottom: 0.045
  10703. }
  10704. },
  10705. },
  10706. [
  10707. {
  10708. name: "Micro",
  10709. height: math.unit(1, "inch")
  10710. },
  10711. {
  10712. name: "Normal",
  10713. height: math.unit(4 + 10 / 12, "feet"),
  10714. default: true
  10715. },
  10716. {
  10717. name: "Macro",
  10718. height: math.unit(200, "feet")
  10719. },
  10720. {
  10721. name: "Megamacro",
  10722. height: math.unit(120, "miles")
  10723. },
  10724. {
  10725. name: "Gigamacro",
  10726. height: math.unit(9800, "miles")
  10727. },
  10728. ]
  10729. ))
  10730. characterMakers.push(() => makeCharacter(
  10731. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10732. {
  10733. front: {
  10734. height: math.unit(1.7, "meters"),
  10735. weight: math.unit(140, "lb"),
  10736. name: "Front",
  10737. image: {
  10738. source: "./media/characters/moody/front.svg",
  10739. extra: 3226 / 3007,
  10740. bottom: 0.087
  10741. }
  10742. },
  10743. },
  10744. [
  10745. {
  10746. name: "Micro",
  10747. height: math.unit(1, "mm")
  10748. },
  10749. {
  10750. name: "Normal",
  10751. height: math.unit(1.7, "meters"),
  10752. default: true
  10753. },
  10754. {
  10755. name: "Macro",
  10756. height: math.unit(80, "meters")
  10757. },
  10758. {
  10759. name: "Macro+",
  10760. height: math.unit(500, "meters")
  10761. },
  10762. ]
  10763. ))
  10764. characterMakers.push(() => makeCharacter(
  10765. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10766. {
  10767. front: {
  10768. height: math.unit(6, "feet"),
  10769. weight: math.unit(150, "lb"),
  10770. name: "Front",
  10771. image: {
  10772. source: "./media/characters/zyas/front.svg",
  10773. extra: 1180 / 1120,
  10774. bottom: 0.045
  10775. }
  10776. },
  10777. },
  10778. [
  10779. {
  10780. name: "Normal",
  10781. height: math.unit(10, "feet"),
  10782. default: true
  10783. },
  10784. {
  10785. name: "Macro",
  10786. height: math.unit(500, "feet")
  10787. },
  10788. {
  10789. name: "Megamacro",
  10790. height: math.unit(5, "miles")
  10791. },
  10792. {
  10793. name: "Teramacro",
  10794. height: math.unit(150000, "miles")
  10795. },
  10796. ]
  10797. ))
  10798. characterMakers.push(() => makeCharacter(
  10799. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10800. {
  10801. front: {
  10802. height: math.unit(6, "feet"),
  10803. weight: math.unit(150, "lb"),
  10804. name: "Front",
  10805. image: {
  10806. source: "./media/characters/cuon/front.svg",
  10807. extra: 1390 / 1320,
  10808. bottom: 0.008
  10809. }
  10810. },
  10811. },
  10812. [
  10813. {
  10814. name: "Micro",
  10815. height: math.unit(3, "inches")
  10816. },
  10817. {
  10818. name: "Normal",
  10819. height: math.unit(18 + 9 / 12, "feet"),
  10820. default: true
  10821. },
  10822. {
  10823. name: "Macro",
  10824. height: math.unit(360, "feet")
  10825. },
  10826. {
  10827. name: "Megamacro",
  10828. height: math.unit(360, "miles")
  10829. },
  10830. ]
  10831. ))
  10832. characterMakers.push(() => makeCharacter(
  10833. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10834. {
  10835. front: {
  10836. height: math.unit(2.4, "meters"),
  10837. weight: math.unit(70, "kg"),
  10838. name: "Front",
  10839. image: {
  10840. source: "./media/characters/nyanuxk/front.svg",
  10841. extra: 1172 / 1084,
  10842. bottom: 0.065
  10843. }
  10844. },
  10845. side: {
  10846. height: math.unit(2.4, "meters"),
  10847. weight: math.unit(70, "kg"),
  10848. name: "Side",
  10849. image: {
  10850. source: "./media/characters/nyanuxk/side.svg",
  10851. extra: 1190 / 1132,
  10852. bottom: 0.007
  10853. }
  10854. },
  10855. back: {
  10856. height: math.unit(2.4, "meters"),
  10857. weight: math.unit(70, "kg"),
  10858. name: "Back",
  10859. image: {
  10860. source: "./media/characters/nyanuxk/back.svg",
  10861. extra: 1200 / 1141,
  10862. bottom: 0.015
  10863. }
  10864. },
  10865. foot: {
  10866. height: math.unit(0.52, "meters"),
  10867. name: "Foot",
  10868. image: {
  10869. source: "./media/characters/nyanuxk/foot.svg"
  10870. }
  10871. },
  10872. },
  10873. [
  10874. {
  10875. name: "Micro",
  10876. height: math.unit(2, "cm")
  10877. },
  10878. {
  10879. name: "Normal",
  10880. height: math.unit(2.4, "meters"),
  10881. default: true
  10882. },
  10883. {
  10884. name: "Smaller Macro",
  10885. height: math.unit(120, "meters")
  10886. },
  10887. {
  10888. name: "Bigger Macro",
  10889. height: math.unit(1.2, "km")
  10890. },
  10891. {
  10892. name: "Megamacro",
  10893. height: math.unit(15, "kilometers")
  10894. },
  10895. {
  10896. name: "Gigamacro",
  10897. height: math.unit(2000, "km")
  10898. },
  10899. {
  10900. name: "Teramacro",
  10901. height: math.unit(500000, "km")
  10902. },
  10903. ]
  10904. ))
  10905. characterMakers.push(() => makeCharacter(
  10906. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10907. {
  10908. side: {
  10909. height: math.unit(6, "feet"),
  10910. name: "Side",
  10911. image: {
  10912. source: "./media/characters/ailbhe/side.svg",
  10913. extra: 757 / 464,
  10914. bottom: 0.041
  10915. }
  10916. },
  10917. },
  10918. [
  10919. {
  10920. name: "Normal",
  10921. height: math.unit(1.07, "meters"),
  10922. default: true
  10923. },
  10924. ]
  10925. ))
  10926. characterMakers.push(() => makeCharacter(
  10927. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10928. {
  10929. front: {
  10930. height: math.unit(6, "feet"),
  10931. weight: math.unit(120, "kg"),
  10932. name: "Front",
  10933. image: {
  10934. source: "./media/characters/zevulfius/front.svg",
  10935. extra: 965 / 903
  10936. }
  10937. },
  10938. side: {
  10939. height: math.unit(6, "feet"),
  10940. weight: math.unit(120, "kg"),
  10941. name: "Side",
  10942. image: {
  10943. source: "./media/characters/zevulfius/side.svg",
  10944. extra: 939 / 900
  10945. }
  10946. },
  10947. back: {
  10948. height: math.unit(6, "feet"),
  10949. weight: math.unit(120, "kg"),
  10950. name: "Back",
  10951. image: {
  10952. source: "./media/characters/zevulfius/back.svg",
  10953. extra: 918 / 854,
  10954. bottom: 0.005
  10955. }
  10956. },
  10957. foot: {
  10958. height: math.unit(6 / 3.72, "feet"),
  10959. name: "Foot",
  10960. image: {
  10961. source: "./media/characters/zevulfius/foot.svg"
  10962. }
  10963. },
  10964. },
  10965. [
  10966. {
  10967. name: "Macro",
  10968. height: math.unit(750, "meters")
  10969. },
  10970. {
  10971. name: "Megamacro",
  10972. height: math.unit(20, "km"),
  10973. default: true
  10974. },
  10975. {
  10976. name: "Gigamacro",
  10977. height: math.unit(2000, "km")
  10978. },
  10979. {
  10980. name: "Teramacro",
  10981. height: math.unit(250000, "km")
  10982. },
  10983. ]
  10984. ))
  10985. characterMakers.push(() => makeCharacter(
  10986. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10987. {
  10988. front: {
  10989. height: math.unit(100, "feet"),
  10990. weight: math.unit(350, "kg"),
  10991. name: "Front",
  10992. image: {
  10993. source: "./media/characters/rikes/front.svg",
  10994. extra: 1565 / 1483,
  10995. bottom: 0.017
  10996. }
  10997. },
  10998. },
  10999. [
  11000. {
  11001. name: "Macro",
  11002. height: math.unit(100, "feet"),
  11003. default: true
  11004. },
  11005. ]
  11006. ))
  11007. characterMakers.push(() => makeCharacter(
  11008. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11009. {
  11010. front: {
  11011. height: math.unit(8, "feet"),
  11012. weight: math.unit(356, "lb"),
  11013. name: "Front",
  11014. image: {
  11015. source: "./media/characters/adam-silver-mane/front.svg",
  11016. extra: 1036/937,
  11017. bottom: 63/1099
  11018. }
  11019. },
  11020. side: {
  11021. height: math.unit(8, "feet"),
  11022. weight: math.unit(356, "lb"),
  11023. name: "Side",
  11024. image: {
  11025. source: "./media/characters/adam-silver-mane/side.svg",
  11026. extra: 997/901,
  11027. bottom: 59/1056
  11028. }
  11029. },
  11030. frontNsfw: {
  11031. height: math.unit(8, "feet"),
  11032. weight: math.unit(356, "lb"),
  11033. name: "Front (NSFW)",
  11034. image: {
  11035. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11036. extra: 1036/937,
  11037. bottom: 63/1099
  11038. }
  11039. },
  11040. sideNsfw: {
  11041. height: math.unit(8, "feet"),
  11042. weight: math.unit(356, "lb"),
  11043. name: "Side (NSFW)",
  11044. image: {
  11045. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11046. extra: 997/901,
  11047. bottom: 59/1056
  11048. }
  11049. },
  11050. dick: {
  11051. height: math.unit(2.1, "feet"),
  11052. name: "Dick",
  11053. image: {
  11054. source: "./media/characters/adam-silver-mane/dick.svg"
  11055. }
  11056. },
  11057. taur: {
  11058. height: math.unit(16, "feet"),
  11059. weight: math.unit(1500, "kg"),
  11060. name: "Taur",
  11061. image: {
  11062. source: "./media/characters/adam-silver-mane/taur.svg",
  11063. extra: 1713 / 1571,
  11064. bottom: 0.01
  11065. }
  11066. },
  11067. },
  11068. [
  11069. {
  11070. name: "Normal",
  11071. height: math.unit(8, "feet")
  11072. },
  11073. {
  11074. name: "Minimacro",
  11075. height: math.unit(80, "feet")
  11076. },
  11077. {
  11078. name: "MDA",
  11079. height: math.unit(80, "meters")
  11080. },
  11081. {
  11082. name: "Macro",
  11083. height: math.unit(800, "feet"),
  11084. default: true
  11085. },
  11086. {
  11087. name: "Megamacro",
  11088. height: math.unit(8000, "feet")
  11089. },
  11090. {
  11091. name: "Gigamacro",
  11092. height: math.unit(800, "miles")
  11093. },
  11094. {
  11095. name: "Teramacro",
  11096. height: math.unit(80000, "miles")
  11097. },
  11098. {
  11099. name: "Celestial",
  11100. height: math.unit(8e6, "miles")
  11101. },
  11102. {
  11103. name: "Star Dragon",
  11104. height: math.unit(800000, "parsecs")
  11105. },
  11106. {
  11107. name: "Godly",
  11108. height: math.unit(800, "teraparsecs")
  11109. },
  11110. ]
  11111. ))
  11112. characterMakers.push(() => makeCharacter(
  11113. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11114. {
  11115. front: {
  11116. height: math.unit(6, "feet"),
  11117. weight: math.unit(150, "lb"),
  11118. name: "Front",
  11119. image: {
  11120. source: "./media/characters/ky'owin/front.svg",
  11121. extra: 3888 / 3068,
  11122. bottom: 0.015
  11123. }
  11124. },
  11125. },
  11126. [
  11127. {
  11128. name: "Normal",
  11129. height: math.unit(6 + 8 / 12, "feet")
  11130. },
  11131. {
  11132. name: "Large",
  11133. height: math.unit(68, "feet")
  11134. },
  11135. {
  11136. name: "Macro",
  11137. height: math.unit(132, "feet")
  11138. },
  11139. {
  11140. name: "Macro+",
  11141. height: math.unit(340, "feet")
  11142. },
  11143. {
  11144. name: "Macro++",
  11145. height: math.unit(680, "feet"),
  11146. default: true
  11147. },
  11148. {
  11149. name: "Megamacro",
  11150. height: math.unit(1, "mile")
  11151. },
  11152. {
  11153. name: "Megamacro+",
  11154. height: math.unit(10, "miles")
  11155. },
  11156. ]
  11157. ))
  11158. characterMakers.push(() => makeCharacter(
  11159. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11160. {
  11161. front: {
  11162. height: math.unit(4, "feet"),
  11163. weight: math.unit(50, "lb"),
  11164. name: "Front",
  11165. image: {
  11166. source: "./media/characters/mal/front.svg",
  11167. extra: 785 / 724,
  11168. bottom: 0.07
  11169. }
  11170. },
  11171. },
  11172. [
  11173. {
  11174. name: "Micro",
  11175. height: math.unit(4, "inches")
  11176. },
  11177. {
  11178. name: "Normal",
  11179. height: math.unit(4, "feet"),
  11180. default: true
  11181. },
  11182. {
  11183. name: "Macro",
  11184. height: math.unit(200, "feet")
  11185. },
  11186. ]
  11187. ))
  11188. characterMakers.push(() => makeCharacter(
  11189. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11190. {
  11191. front: {
  11192. height: math.unit(6, "feet"),
  11193. weight: math.unit(150, "lb"),
  11194. name: "Front",
  11195. image: {
  11196. source: "./media/characters/jordan-deware/front.svg",
  11197. extra: 1191 / 1012
  11198. }
  11199. },
  11200. },
  11201. [
  11202. {
  11203. name: "Nano",
  11204. height: math.unit(0.01, "mm")
  11205. },
  11206. {
  11207. name: "Minimicro",
  11208. height: math.unit(1, "mm")
  11209. },
  11210. {
  11211. name: "Micro",
  11212. height: math.unit(0.5, "inches")
  11213. },
  11214. {
  11215. name: "Normal",
  11216. height: math.unit(4, "feet"),
  11217. default: true
  11218. },
  11219. {
  11220. name: "Minimacro",
  11221. height: math.unit(40, "meters")
  11222. },
  11223. {
  11224. name: "Small Macro",
  11225. height: math.unit(400, "meters")
  11226. },
  11227. {
  11228. name: "Macro",
  11229. height: math.unit(4, "miles")
  11230. },
  11231. {
  11232. name: "Megamacro",
  11233. height: math.unit(40, "miles")
  11234. },
  11235. {
  11236. name: "Megamacro+",
  11237. height: math.unit(400, "miles")
  11238. },
  11239. {
  11240. name: "Gigamacro",
  11241. height: math.unit(400000, "miles")
  11242. },
  11243. ]
  11244. ))
  11245. characterMakers.push(() => makeCharacter(
  11246. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11247. {
  11248. side: {
  11249. height: math.unit(6, "feet"),
  11250. weight: math.unit(150, "lb"),
  11251. name: "Side",
  11252. image: {
  11253. source: "./media/characters/kimiko/side.svg",
  11254. extra: 600 / 358
  11255. }
  11256. },
  11257. },
  11258. [
  11259. {
  11260. name: "Normal",
  11261. height: math.unit(15, "feet"),
  11262. default: true
  11263. },
  11264. {
  11265. name: "Macro",
  11266. height: math.unit(220, "feet")
  11267. },
  11268. {
  11269. name: "Macro+",
  11270. height: math.unit(1450, "feet")
  11271. },
  11272. {
  11273. name: "Megamacro",
  11274. height: math.unit(11500, "feet")
  11275. },
  11276. {
  11277. name: "Gigamacro",
  11278. height: math.unit(9500, "miles")
  11279. },
  11280. {
  11281. name: "Teramacro",
  11282. height: math.unit(2208005005, "miles")
  11283. },
  11284. {
  11285. name: "Examacro",
  11286. height: math.unit(2750, "parsecs")
  11287. },
  11288. {
  11289. name: "Zettamacro",
  11290. height: math.unit(101500, "parsecs")
  11291. },
  11292. ]
  11293. ))
  11294. characterMakers.push(() => makeCharacter(
  11295. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11296. {
  11297. front: {
  11298. height: math.unit(6, "feet"),
  11299. weight: math.unit(70, "kg"),
  11300. name: "Front",
  11301. image: {
  11302. source: "./media/characters/andrew-sleepy/front.svg"
  11303. }
  11304. },
  11305. side: {
  11306. height: math.unit(6, "feet"),
  11307. weight: math.unit(70, "kg"),
  11308. name: "Side",
  11309. image: {
  11310. source: "./media/characters/andrew-sleepy/side.svg"
  11311. }
  11312. },
  11313. },
  11314. [
  11315. {
  11316. name: "Micro",
  11317. height: math.unit(1, "mm"),
  11318. default: true
  11319. },
  11320. ]
  11321. ))
  11322. characterMakers.push(() => makeCharacter(
  11323. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11324. {
  11325. front: {
  11326. height: math.unit(6, "feet"),
  11327. weight: math.unit(150, "lb"),
  11328. name: "Front",
  11329. image: {
  11330. source: "./media/characters/judio/front.svg",
  11331. extra: 1258 / 1110
  11332. }
  11333. },
  11334. },
  11335. [
  11336. {
  11337. name: "Normal",
  11338. height: math.unit(5 + 6 / 12, "feet")
  11339. },
  11340. {
  11341. name: "Macro",
  11342. height: math.unit(1000, "feet"),
  11343. default: true
  11344. },
  11345. {
  11346. name: "Megamacro",
  11347. height: math.unit(10, "miles")
  11348. },
  11349. ]
  11350. ))
  11351. characterMakers.push(() => makeCharacter(
  11352. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11353. {
  11354. frontDressed: {
  11355. height: math.unit(6, "feet"),
  11356. weight: math.unit(68, "kg"),
  11357. name: "Front (Dressed)",
  11358. image: {
  11359. source: "./media/characters/nomaxice/front-dressed.svg",
  11360. extra: 1137/824,
  11361. bottom: 74/1211
  11362. }
  11363. },
  11364. frontShorts: {
  11365. height: math.unit(6, "feet"),
  11366. weight: math.unit(68, "kg"),
  11367. name: "Front (Shorts)",
  11368. image: {
  11369. source: "./media/characters/nomaxice/front-shorts.svg",
  11370. extra: 1137/824,
  11371. bottom: 74/1211
  11372. }
  11373. },
  11374. back: {
  11375. height: math.unit(6, "feet"),
  11376. weight: math.unit(68, "kg"),
  11377. name: "Back",
  11378. image: {
  11379. source: "./media/characters/nomaxice/back.svg",
  11380. extra: 822/786,
  11381. bottom: 39/861
  11382. }
  11383. },
  11384. hand: {
  11385. height: math.unit(0.565, "feet"),
  11386. name: "Hand",
  11387. image: {
  11388. source: "./media/characters/nomaxice/hand.svg"
  11389. }
  11390. },
  11391. foot: {
  11392. height: math.unit(1, "feet"),
  11393. name: "Foot",
  11394. image: {
  11395. source: "./media/characters/nomaxice/foot.svg"
  11396. }
  11397. },
  11398. },
  11399. [
  11400. {
  11401. name: "Micro",
  11402. height: math.unit(8, "cm")
  11403. },
  11404. {
  11405. name: "Norm",
  11406. height: math.unit(1.82, "m")
  11407. },
  11408. {
  11409. name: "Norm+",
  11410. height: math.unit(8.8, "feet"),
  11411. default: true
  11412. },
  11413. {
  11414. name: "Big",
  11415. height: math.unit(8, "meters")
  11416. },
  11417. {
  11418. name: "Macro",
  11419. height: math.unit(18, "meters")
  11420. },
  11421. {
  11422. name: "Macro+",
  11423. height: math.unit(88, "meters")
  11424. },
  11425. ]
  11426. ))
  11427. characterMakers.push(() => makeCharacter(
  11428. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11429. {
  11430. front: {
  11431. height: math.unit(12, "feet"),
  11432. weight: math.unit(1.5, "tons"),
  11433. name: "Front",
  11434. image: {
  11435. source: "./media/characters/dydros/front.svg",
  11436. extra: 863 / 800,
  11437. bottom: 0.015
  11438. }
  11439. },
  11440. back: {
  11441. height: math.unit(12, "feet"),
  11442. weight: math.unit(1.5, "tons"),
  11443. name: "Back",
  11444. image: {
  11445. source: "./media/characters/dydros/back.svg",
  11446. extra: 900 / 843,
  11447. bottom: 0.005
  11448. }
  11449. },
  11450. },
  11451. [
  11452. {
  11453. name: "Normal",
  11454. height: math.unit(12, "feet"),
  11455. default: true
  11456. },
  11457. ]
  11458. ))
  11459. characterMakers.push(() => makeCharacter(
  11460. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11461. {
  11462. front: {
  11463. height: math.unit(6, "feet"),
  11464. weight: math.unit(100, "kg"),
  11465. name: "Front",
  11466. image: {
  11467. source: "./media/characters/riggi/front.svg",
  11468. extra: 5787 / 5303
  11469. }
  11470. },
  11471. hyper: {
  11472. height: math.unit(6 * 5 / 3, "feet"),
  11473. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11474. name: "Hyper",
  11475. image: {
  11476. source: "./media/characters/riggi/hyper.svg",
  11477. extra: 3595 / 3485
  11478. }
  11479. },
  11480. },
  11481. [
  11482. {
  11483. name: "Small Macro",
  11484. height: math.unit(50, "feet")
  11485. },
  11486. {
  11487. name: "Default",
  11488. height: math.unit(200, "feet"),
  11489. default: true
  11490. },
  11491. {
  11492. name: "Loom",
  11493. height: math.unit(10000, "feet")
  11494. },
  11495. {
  11496. name: "Cruising Altitude",
  11497. height: math.unit(30000, "feet")
  11498. },
  11499. {
  11500. name: "Megamacro",
  11501. height: math.unit(100, "miles")
  11502. },
  11503. {
  11504. name: "Continent Sized",
  11505. height: math.unit(2800, "miles")
  11506. },
  11507. {
  11508. name: "Earth Sized",
  11509. height: math.unit(8000, "miles")
  11510. },
  11511. ]
  11512. ))
  11513. characterMakers.push(() => makeCharacter(
  11514. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11515. {
  11516. front: {
  11517. height: math.unit(6, "feet"),
  11518. weight: math.unit(250, "lb"),
  11519. name: "Front",
  11520. image: {
  11521. source: "./media/characters/alexi/front.svg",
  11522. extra: 3483 / 3291,
  11523. bottom: 0.04
  11524. }
  11525. },
  11526. back: {
  11527. height: math.unit(6, "feet"),
  11528. weight: math.unit(250, "lb"),
  11529. name: "Back",
  11530. image: {
  11531. source: "./media/characters/alexi/back.svg",
  11532. extra: 3533 / 3356,
  11533. bottom: 0.021
  11534. }
  11535. },
  11536. frontTransforming: {
  11537. height: math.unit(8.58, "feet"),
  11538. weight: math.unit(1300, "lb"),
  11539. name: "Transforming",
  11540. image: {
  11541. source: "./media/characters/alexi/front-transforming.svg",
  11542. extra: 437 / 409,
  11543. bottom: 19 / 458.66
  11544. }
  11545. },
  11546. frontTransformed: {
  11547. height: math.unit(12.5, "feet"),
  11548. weight: math.unit(4000, "lb"),
  11549. name: "Transformed",
  11550. image: {
  11551. source: "./media/characters/alexi/front-transformed.svg",
  11552. extra: 639 / 614,
  11553. bottom: 30.55 / 671
  11554. }
  11555. },
  11556. },
  11557. [
  11558. {
  11559. name: "Normal",
  11560. height: math.unit(14, "feet"),
  11561. default: true
  11562. },
  11563. {
  11564. name: "Minimacro",
  11565. height: math.unit(30, "meters")
  11566. },
  11567. {
  11568. name: "Macro",
  11569. height: math.unit(500, "meters")
  11570. },
  11571. {
  11572. name: "Megamacro",
  11573. height: math.unit(9000, "km")
  11574. },
  11575. {
  11576. name: "Teramacro",
  11577. height: math.unit(384000, "km")
  11578. },
  11579. ]
  11580. ))
  11581. characterMakers.push(() => makeCharacter(
  11582. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11583. {
  11584. front: {
  11585. height: math.unit(6, "feet"),
  11586. weight: math.unit(150, "lb"),
  11587. name: "Front",
  11588. image: {
  11589. source: "./media/characters/kayroo/front.svg",
  11590. extra: 1153 / 1038,
  11591. bottom: 0.06
  11592. }
  11593. },
  11594. foot: {
  11595. height: math.unit(6, "feet"),
  11596. weight: math.unit(150, "lb"),
  11597. name: "Foot",
  11598. image: {
  11599. source: "./media/characters/kayroo/foot.svg"
  11600. }
  11601. },
  11602. },
  11603. [
  11604. {
  11605. name: "Normal",
  11606. height: math.unit(8, "feet"),
  11607. default: true
  11608. },
  11609. {
  11610. name: "Minimacro",
  11611. height: math.unit(250, "feet")
  11612. },
  11613. {
  11614. name: "Macro",
  11615. height: math.unit(2800, "feet")
  11616. },
  11617. {
  11618. name: "Megamacro",
  11619. height: math.unit(5200, "feet")
  11620. },
  11621. {
  11622. name: "Gigamacro",
  11623. height: math.unit(27000, "feet")
  11624. },
  11625. {
  11626. name: "Omega",
  11627. height: math.unit(45000, "feet")
  11628. },
  11629. ]
  11630. ))
  11631. characterMakers.push(() => makeCharacter(
  11632. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11633. {
  11634. front: {
  11635. height: math.unit(18, "feet"),
  11636. weight: math.unit(5800, "lb"),
  11637. name: "Front",
  11638. image: {
  11639. source: "./media/characters/rhys/front.svg",
  11640. extra: 3386 / 3090,
  11641. bottom: 0.07
  11642. }
  11643. },
  11644. },
  11645. [
  11646. {
  11647. name: "Normal",
  11648. height: math.unit(18, "feet"),
  11649. default: true
  11650. },
  11651. {
  11652. name: "Working Size",
  11653. height: math.unit(200, "feet")
  11654. },
  11655. {
  11656. name: "Demolition Size",
  11657. height: math.unit(2000, "feet")
  11658. },
  11659. {
  11660. name: "Maximum Licensed Size",
  11661. height: math.unit(5, "miles")
  11662. },
  11663. {
  11664. name: "Maximum Observed Size",
  11665. height: math.unit(10, "yottameters")
  11666. },
  11667. ]
  11668. ))
  11669. characterMakers.push(() => makeCharacter(
  11670. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11671. {
  11672. front: {
  11673. height: math.unit(6, "feet"),
  11674. weight: math.unit(250, "lb"),
  11675. name: "Front",
  11676. image: {
  11677. source: "./media/characters/toto/front.svg",
  11678. extra: 527 / 479,
  11679. bottom: 0.05
  11680. }
  11681. },
  11682. },
  11683. [
  11684. {
  11685. name: "Micro",
  11686. height: math.unit(3, "feet")
  11687. },
  11688. {
  11689. name: "Normal",
  11690. height: math.unit(10, "feet")
  11691. },
  11692. {
  11693. name: "Macro",
  11694. height: math.unit(150, "feet"),
  11695. default: true
  11696. },
  11697. {
  11698. name: "Megamacro",
  11699. height: math.unit(1200, "feet")
  11700. },
  11701. ]
  11702. ))
  11703. characterMakers.push(() => makeCharacter(
  11704. { name: "King", species: ["lion"], tags: ["anthro"] },
  11705. {
  11706. back: {
  11707. height: math.unit(6, "feet"),
  11708. weight: math.unit(150, "lb"),
  11709. name: "Back",
  11710. image: {
  11711. source: "./media/characters/king/back.svg"
  11712. }
  11713. },
  11714. },
  11715. [
  11716. {
  11717. name: "Micro",
  11718. height: math.unit(2, "inches")
  11719. },
  11720. {
  11721. name: "Normal",
  11722. height: math.unit(8, "feet")
  11723. },
  11724. {
  11725. name: "Macro",
  11726. height: math.unit(200, "feet"),
  11727. default: true
  11728. },
  11729. {
  11730. name: "Megamacro",
  11731. height: math.unit(50, "miles")
  11732. },
  11733. ]
  11734. ))
  11735. characterMakers.push(() => makeCharacter(
  11736. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11737. {
  11738. front: {
  11739. height: math.unit(11, "feet"),
  11740. weight: math.unit(1400, "lb"),
  11741. name: "Front",
  11742. image: {
  11743. source: "./media/characters/cordite/front.svg",
  11744. extra: 1919/1827,
  11745. bottom: 40/1959
  11746. }
  11747. },
  11748. side: {
  11749. height: math.unit(11, "feet"),
  11750. weight: math.unit(1400, "lb"),
  11751. name: "Side",
  11752. image: {
  11753. source: "./media/characters/cordite/side.svg",
  11754. extra: 1908/1793,
  11755. bottom: 38/1946
  11756. }
  11757. },
  11758. back: {
  11759. height: math.unit(11, "feet"),
  11760. weight: math.unit(1400, "lb"),
  11761. name: "Back",
  11762. image: {
  11763. source: "./media/characters/cordite/back.svg",
  11764. extra: 1938/1837,
  11765. bottom: 10/1948
  11766. }
  11767. },
  11768. feral: {
  11769. height: math.unit(2, "feet"),
  11770. weight: math.unit(90, "lb"),
  11771. name: "Feral",
  11772. image: {
  11773. source: "./media/characters/cordite/feral.svg",
  11774. extra: 1260 / 755,
  11775. bottom: 0.05
  11776. }
  11777. },
  11778. },
  11779. [
  11780. {
  11781. name: "Normal",
  11782. height: math.unit(11, "feet"),
  11783. default: true
  11784. },
  11785. ]
  11786. ))
  11787. characterMakers.push(() => makeCharacter(
  11788. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11789. {
  11790. front: {
  11791. height: math.unit(6, "feet"),
  11792. weight: math.unit(150, "lb"),
  11793. name: "Front",
  11794. image: {
  11795. source: "./media/characters/pianostrong/front.svg",
  11796. extra: 6577 / 6254,
  11797. bottom: 0.02
  11798. }
  11799. },
  11800. side: {
  11801. height: math.unit(6, "feet"),
  11802. weight: math.unit(150, "lb"),
  11803. name: "Side",
  11804. image: {
  11805. source: "./media/characters/pianostrong/side.svg",
  11806. extra: 6106 / 5730
  11807. }
  11808. },
  11809. back: {
  11810. height: math.unit(6, "feet"),
  11811. weight: math.unit(150, "lb"),
  11812. name: "Back",
  11813. image: {
  11814. source: "./media/characters/pianostrong/back.svg",
  11815. extra: 6085 / 5733,
  11816. bottom: 0.01
  11817. }
  11818. },
  11819. },
  11820. [
  11821. {
  11822. name: "Macro",
  11823. height: math.unit(100, "feet")
  11824. },
  11825. {
  11826. name: "Macro+",
  11827. height: math.unit(300, "feet"),
  11828. default: true
  11829. },
  11830. {
  11831. name: "Macro++",
  11832. height: math.unit(1000, "feet")
  11833. },
  11834. ]
  11835. ))
  11836. characterMakers.push(() => makeCharacter(
  11837. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11838. {
  11839. front: {
  11840. height: math.unit(6, "feet"),
  11841. weight: math.unit(150, "lb"),
  11842. name: "Front",
  11843. image: {
  11844. source: "./media/characters/kona/front.svg",
  11845. extra: 2960 / 2629,
  11846. bottom: 0.005
  11847. }
  11848. },
  11849. },
  11850. [
  11851. {
  11852. name: "Normal",
  11853. height: math.unit(11 + 8 / 12, "feet")
  11854. },
  11855. {
  11856. name: "Macro",
  11857. height: math.unit(850, "feet"),
  11858. default: true
  11859. },
  11860. {
  11861. name: "Macro+",
  11862. height: math.unit(1.5, "km"),
  11863. default: true
  11864. },
  11865. {
  11866. name: "Megamacro",
  11867. height: math.unit(80, "miles")
  11868. },
  11869. {
  11870. name: "Gigamacro",
  11871. height: math.unit(3500, "miles")
  11872. },
  11873. ]
  11874. ))
  11875. characterMakers.push(() => makeCharacter(
  11876. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11877. {
  11878. side: {
  11879. height: math.unit(1.9, "meters"),
  11880. weight: math.unit(326, "kg"),
  11881. name: "Side",
  11882. image: {
  11883. source: "./media/characters/levi/side.svg",
  11884. extra: 1704 / 1334,
  11885. bottom: 0.02
  11886. }
  11887. },
  11888. },
  11889. [
  11890. {
  11891. name: "Normal",
  11892. height: math.unit(1.9, "meters"),
  11893. default: true
  11894. },
  11895. {
  11896. name: "Macro",
  11897. height: math.unit(20, "meters")
  11898. },
  11899. {
  11900. name: "Macro+",
  11901. height: math.unit(200, "meters")
  11902. },
  11903. {
  11904. name: "Megamacro",
  11905. height: math.unit(2, "km")
  11906. },
  11907. {
  11908. name: "Megamacro+",
  11909. height: math.unit(20, "km")
  11910. },
  11911. {
  11912. name: "Gigamacro",
  11913. height: math.unit(2500, "km")
  11914. },
  11915. {
  11916. name: "Gigamacro+",
  11917. height: math.unit(120000, "km")
  11918. },
  11919. {
  11920. name: "Teramacro",
  11921. height: math.unit(7.77e6, "km")
  11922. },
  11923. ]
  11924. ))
  11925. characterMakers.push(() => makeCharacter(
  11926. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11927. {
  11928. front: {
  11929. height: math.unit(6 + 4/12, "feet"),
  11930. weight: math.unit(190, "lb"),
  11931. name: "Front",
  11932. image: {
  11933. source: "./media/characters/bmc/front.svg",
  11934. extra: 1626/1472,
  11935. bottom: 79/1705
  11936. }
  11937. },
  11938. back: {
  11939. height: math.unit(6 + 4/12, "feet"),
  11940. weight: math.unit(190, "lb"),
  11941. name: "Back",
  11942. image: {
  11943. source: "./media/characters/bmc/back.svg",
  11944. extra: 1640/1479,
  11945. bottom: 45/1685
  11946. }
  11947. },
  11948. frontArmor: {
  11949. height: math.unit(6 + 4/12, "feet"),
  11950. weight: math.unit(190, "lb"),
  11951. name: "Front-armor",
  11952. image: {
  11953. source: "./media/characters/bmc/front-armor.svg",
  11954. extra: 1538/1468,
  11955. bottom: 79/1617
  11956. }
  11957. },
  11958. },
  11959. [
  11960. {
  11961. name: "Human-sized",
  11962. height: math.unit(6 + 4 / 12, "feet")
  11963. },
  11964. {
  11965. name: "Interactive Size",
  11966. height: math.unit(25, "feet")
  11967. },
  11968. {
  11969. name: "Small",
  11970. height: math.unit(250, "feet")
  11971. },
  11972. {
  11973. name: "Normal",
  11974. height: math.unit(1250, "feet"),
  11975. default: true
  11976. },
  11977. {
  11978. name: "Good Day",
  11979. height: math.unit(88, "miles")
  11980. },
  11981. {
  11982. name: "Largest Measured Size",
  11983. height: math.unit(105.960, "galaxies")
  11984. },
  11985. ]
  11986. ))
  11987. characterMakers.push(() => makeCharacter(
  11988. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11989. {
  11990. front: {
  11991. height: math.unit(20, "feet"),
  11992. weight: math.unit(2016, "kg"),
  11993. name: "Front",
  11994. image: {
  11995. source: "./media/characters/sven-the-kaiju/front.svg",
  11996. extra: 1277/1250,
  11997. bottom: 35/1312
  11998. }
  11999. },
  12000. mouth: {
  12001. height: math.unit(1.85, "feet"),
  12002. name: "Mouth",
  12003. image: {
  12004. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12005. }
  12006. },
  12007. },
  12008. [
  12009. {
  12010. name: "Fairy",
  12011. height: math.unit(6, "inches")
  12012. },
  12013. {
  12014. name: "Normal",
  12015. height: math.unit(20, "feet"),
  12016. default: true
  12017. },
  12018. {
  12019. name: "Rampage",
  12020. height: math.unit(200, "feet")
  12021. },
  12022. {
  12023. name: "Archfey Forest Guardian",
  12024. height: math.unit(1, "mile")
  12025. },
  12026. ]
  12027. ))
  12028. characterMakers.push(() => makeCharacter(
  12029. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12030. {
  12031. front: {
  12032. height: math.unit(4, "meters"),
  12033. weight: math.unit(2, "tons"),
  12034. name: "Front",
  12035. image: {
  12036. source: "./media/characters/marik/front.svg",
  12037. extra: 1057 / 1003,
  12038. bottom: 0.08
  12039. }
  12040. },
  12041. },
  12042. [
  12043. {
  12044. name: "Normal",
  12045. height: math.unit(4, "meters"),
  12046. default: true
  12047. },
  12048. {
  12049. name: "Macro",
  12050. height: math.unit(20, "meters")
  12051. },
  12052. {
  12053. name: "Megamacro",
  12054. height: math.unit(50, "km")
  12055. },
  12056. {
  12057. name: "Gigamacro",
  12058. height: math.unit(100, "km")
  12059. },
  12060. {
  12061. name: "Alpha Macro",
  12062. height: math.unit(7.88e7, "yottameters")
  12063. },
  12064. ]
  12065. ))
  12066. characterMakers.push(() => makeCharacter(
  12067. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12068. {
  12069. front: {
  12070. height: math.unit(6, "feet"),
  12071. weight: math.unit(110, "lb"),
  12072. name: "Front",
  12073. image: {
  12074. source: "./media/characters/mel/front.svg",
  12075. extra: 736 / 617,
  12076. bottom: 0.017
  12077. }
  12078. },
  12079. },
  12080. [
  12081. {
  12082. name: "Pico",
  12083. height: math.unit(3, "pm")
  12084. },
  12085. {
  12086. name: "Nano",
  12087. height: math.unit(3, "nm")
  12088. },
  12089. {
  12090. name: "Micro",
  12091. height: math.unit(0.3, "mm"),
  12092. default: true
  12093. },
  12094. {
  12095. name: "Micro+",
  12096. height: math.unit(3, "mm")
  12097. },
  12098. {
  12099. name: "Normal",
  12100. height: math.unit(5 + 10.5 / 12, "feet")
  12101. },
  12102. ]
  12103. ))
  12104. characterMakers.push(() => makeCharacter(
  12105. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12106. {
  12107. kaiju: {
  12108. height: math.unit(1.75, "meters"),
  12109. weight: math.unit(55, "kg"),
  12110. name: "Kaiju",
  12111. image: {
  12112. source: "./media/characters/lykonous/kaiju.svg",
  12113. extra: 1055 / 946,
  12114. bottom: 0.135
  12115. }
  12116. },
  12117. },
  12118. [
  12119. {
  12120. name: "Normal",
  12121. height: math.unit(2.5, "meters"),
  12122. default: true
  12123. },
  12124. {
  12125. name: "Kaiju Dragon",
  12126. height: math.unit(60, "meters")
  12127. },
  12128. {
  12129. name: "Mega Kaiju",
  12130. height: math.unit(120, "km")
  12131. },
  12132. {
  12133. name: "Giga Kaiju",
  12134. height: math.unit(200, "megameters")
  12135. },
  12136. {
  12137. name: "Terra Kaiju",
  12138. height: math.unit(400, "gigameters")
  12139. },
  12140. {
  12141. name: "Kaiju Dragon God",
  12142. height: math.unit(13000, "exaparsecs")
  12143. },
  12144. ]
  12145. ))
  12146. characterMakers.push(() => makeCharacter(
  12147. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12148. {
  12149. front: {
  12150. height: math.unit(6, "feet"),
  12151. weight: math.unit(150, "lb"),
  12152. name: "Front",
  12153. image: {
  12154. source: "./media/characters/blü/front.svg",
  12155. extra: 1883 / 1564,
  12156. bottom: 0.031
  12157. }
  12158. },
  12159. },
  12160. [
  12161. {
  12162. name: "Normal",
  12163. height: math.unit(13, "feet"),
  12164. default: true
  12165. },
  12166. {
  12167. name: "Big Boi",
  12168. height: math.unit(150, "meters")
  12169. },
  12170. {
  12171. name: "Mini Stomper",
  12172. height: math.unit(300, "meters")
  12173. },
  12174. {
  12175. name: "Macro",
  12176. height: math.unit(1000, "meters")
  12177. },
  12178. {
  12179. name: "Megamacro",
  12180. height: math.unit(11000, "meters")
  12181. },
  12182. {
  12183. name: "Gigamacro",
  12184. height: math.unit(11000, "km")
  12185. },
  12186. {
  12187. name: "Teramacro",
  12188. height: math.unit(420000, "km")
  12189. },
  12190. {
  12191. name: "Examacro",
  12192. height: math.unit(120, "parsecs")
  12193. },
  12194. {
  12195. name: "God Tho",
  12196. height: math.unit(98000000000, "parsecs")
  12197. },
  12198. ]
  12199. ))
  12200. characterMakers.push(() => makeCharacter(
  12201. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12202. {
  12203. taurFront: {
  12204. height: math.unit(6, "feet"),
  12205. weight: math.unit(200, "lb"),
  12206. name: "Taur (Front)",
  12207. image: {
  12208. source: "./media/characters/scales/taur-front.svg",
  12209. extra: 1,
  12210. bottom: 0.05
  12211. }
  12212. },
  12213. taurBack: {
  12214. height: math.unit(6, "feet"),
  12215. weight: math.unit(200, "lb"),
  12216. name: "Taur (Back)",
  12217. image: {
  12218. source: "./media/characters/scales/taur-back.svg",
  12219. extra: 1,
  12220. bottom: 0.08
  12221. }
  12222. },
  12223. anthro: {
  12224. height: math.unit(6 * 7 / 12, "feet"),
  12225. weight: math.unit(100, "lb"),
  12226. name: "Anthro",
  12227. image: {
  12228. source: "./media/characters/scales/anthro.svg",
  12229. extra: 1,
  12230. bottom: 0.06
  12231. }
  12232. },
  12233. },
  12234. [
  12235. {
  12236. name: "Normal",
  12237. height: math.unit(12, "feet"),
  12238. default: true
  12239. },
  12240. ]
  12241. ))
  12242. characterMakers.push(() => makeCharacter(
  12243. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12244. {
  12245. front: {
  12246. height: math.unit(6, "feet"),
  12247. weight: math.unit(150, "lb"),
  12248. name: "Front",
  12249. image: {
  12250. source: "./media/characters/koragos/front.svg",
  12251. extra: 841 / 794,
  12252. bottom: 0.035
  12253. }
  12254. },
  12255. back: {
  12256. height: math.unit(6, "feet"),
  12257. weight: math.unit(150, "lb"),
  12258. name: "Back",
  12259. image: {
  12260. source: "./media/characters/koragos/back.svg",
  12261. extra: 841 / 810,
  12262. bottom: 0.022
  12263. }
  12264. },
  12265. },
  12266. [
  12267. {
  12268. name: "Normal",
  12269. height: math.unit(6 + 11 / 12, "feet"),
  12270. default: true
  12271. },
  12272. {
  12273. name: "Macro",
  12274. height: math.unit(490, "feet")
  12275. },
  12276. {
  12277. name: "Megamacro",
  12278. height: math.unit(10, "miles")
  12279. },
  12280. {
  12281. name: "Gigamacro",
  12282. height: math.unit(50, "miles")
  12283. },
  12284. ]
  12285. ))
  12286. characterMakers.push(() => makeCharacter(
  12287. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12288. {
  12289. front: {
  12290. height: math.unit(6, "feet"),
  12291. weight: math.unit(250, "lb"),
  12292. name: "Front",
  12293. image: {
  12294. source: "./media/characters/xylrem/front.svg",
  12295. extra: 3323 / 3050,
  12296. bottom: 0.065
  12297. }
  12298. },
  12299. },
  12300. [
  12301. {
  12302. name: "Micro",
  12303. height: math.unit(4, "feet")
  12304. },
  12305. {
  12306. name: "Normal",
  12307. height: math.unit(16, "feet"),
  12308. default: true
  12309. },
  12310. {
  12311. name: "Macro",
  12312. height: math.unit(2720, "feet")
  12313. },
  12314. {
  12315. name: "Megamacro",
  12316. height: math.unit(25000, "miles")
  12317. },
  12318. ]
  12319. ))
  12320. characterMakers.push(() => makeCharacter(
  12321. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12322. {
  12323. front: {
  12324. height: math.unit(8, "feet"),
  12325. weight: math.unit(250, "kg"),
  12326. name: "Front",
  12327. image: {
  12328. source: "./media/characters/ikideru/front.svg",
  12329. extra: 930 / 870,
  12330. bottom: 0.087
  12331. }
  12332. },
  12333. back: {
  12334. height: math.unit(8, "feet"),
  12335. weight: math.unit(250, "kg"),
  12336. name: "Back",
  12337. image: {
  12338. source: "./media/characters/ikideru/back.svg",
  12339. extra: 919 / 852,
  12340. bottom: 0.055
  12341. }
  12342. },
  12343. },
  12344. [
  12345. {
  12346. name: "Rare",
  12347. height: math.unit(8, "feet"),
  12348. default: true
  12349. },
  12350. {
  12351. name: "Playful Loom",
  12352. height: math.unit(80, "feet")
  12353. },
  12354. {
  12355. name: "City Leaner",
  12356. height: math.unit(230, "feet")
  12357. },
  12358. {
  12359. name: "Megamacro",
  12360. height: math.unit(2500, "feet")
  12361. },
  12362. {
  12363. name: "Gigamacro",
  12364. height: math.unit(26400, "feet")
  12365. },
  12366. {
  12367. name: "Tectonic Shifter",
  12368. height: math.unit(1.7, "megameters")
  12369. },
  12370. {
  12371. name: "Planet Carer",
  12372. height: math.unit(21, "megameters")
  12373. },
  12374. {
  12375. name: "God",
  12376. height: math.unit(11157.22, "parsecs")
  12377. },
  12378. ]
  12379. ))
  12380. characterMakers.push(() => makeCharacter(
  12381. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12382. {
  12383. front: {
  12384. height: math.unit(6, "feet"),
  12385. weight: math.unit(120, "lb"),
  12386. name: "Front",
  12387. image: {
  12388. source: "./media/characters/neo/front.svg"
  12389. }
  12390. },
  12391. },
  12392. [
  12393. {
  12394. name: "Micro",
  12395. height: math.unit(2, "inches"),
  12396. default: true
  12397. },
  12398. {
  12399. name: "Human Size",
  12400. height: math.unit(5 + 8 / 12, "feet")
  12401. },
  12402. ]
  12403. ))
  12404. characterMakers.push(() => makeCharacter(
  12405. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12406. {
  12407. front: {
  12408. height: math.unit(13 + 10 / 12, "feet"),
  12409. weight: math.unit(5320, "lb"),
  12410. name: "Front",
  12411. image: {
  12412. source: "./media/characters/chauncey-chantz/front.svg",
  12413. extra: 1587 / 1435,
  12414. bottom: 0.02
  12415. }
  12416. },
  12417. },
  12418. [
  12419. {
  12420. name: "Normal",
  12421. height: math.unit(13 + 10 / 12, "feet"),
  12422. default: true
  12423. },
  12424. {
  12425. name: "Macro",
  12426. height: math.unit(45, "feet")
  12427. },
  12428. {
  12429. name: "Megamacro",
  12430. height: math.unit(250, "miles")
  12431. },
  12432. {
  12433. name: "Planetary",
  12434. height: math.unit(10000, "miles")
  12435. },
  12436. {
  12437. name: "Galactic",
  12438. height: math.unit(40000, "parsecs")
  12439. },
  12440. {
  12441. name: "Universal",
  12442. height: math.unit(1, "yottameter")
  12443. },
  12444. ]
  12445. ))
  12446. characterMakers.push(() => makeCharacter(
  12447. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12448. {
  12449. front: {
  12450. height: math.unit(6, "feet"),
  12451. weight: math.unit(150, "lb"),
  12452. name: "Front",
  12453. image: {
  12454. source: "./media/characters/epifox/front.svg",
  12455. extra: 1,
  12456. bottom: 0.075
  12457. }
  12458. },
  12459. },
  12460. [
  12461. {
  12462. name: "Micro",
  12463. height: math.unit(6, "inches")
  12464. },
  12465. {
  12466. name: "Normal",
  12467. height: math.unit(12, "feet"),
  12468. default: true
  12469. },
  12470. {
  12471. name: "Macro",
  12472. height: math.unit(3810, "feet")
  12473. },
  12474. {
  12475. name: "Megamacro",
  12476. height: math.unit(500, "miles")
  12477. },
  12478. ]
  12479. ))
  12480. characterMakers.push(() => makeCharacter(
  12481. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12482. {
  12483. front: {
  12484. height: math.unit(1.8796, "m"),
  12485. weight: math.unit(230, "lb"),
  12486. name: "Front",
  12487. image: {
  12488. source: "./media/characters/colin-t/front.svg",
  12489. extra: 1272 / 1193,
  12490. bottom: 0.07
  12491. }
  12492. },
  12493. },
  12494. [
  12495. {
  12496. name: "Micro",
  12497. height: math.unit(0.571, "meters")
  12498. },
  12499. {
  12500. name: "Normal",
  12501. height: math.unit(1.8796, "meters"),
  12502. default: true
  12503. },
  12504. {
  12505. name: "Tall",
  12506. height: math.unit(4, "meters")
  12507. },
  12508. {
  12509. name: "Macro",
  12510. height: math.unit(67.241, "meters")
  12511. },
  12512. {
  12513. name: "Megamacro",
  12514. height: math.unit(371.856, "meters")
  12515. },
  12516. {
  12517. name: "Planetary",
  12518. height: math.unit(12631.5689, "km")
  12519. },
  12520. ]
  12521. ))
  12522. characterMakers.push(() => makeCharacter(
  12523. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12524. {
  12525. front: {
  12526. height: math.unit(1.85, "meters"),
  12527. weight: math.unit(80, "kg"),
  12528. name: "Front",
  12529. image: {
  12530. source: "./media/characters/matvei/front.svg",
  12531. extra: 614 / 594,
  12532. bottom: 0.01
  12533. }
  12534. },
  12535. },
  12536. [
  12537. {
  12538. name: "Normal",
  12539. height: math.unit(1.85, "meters"),
  12540. default: true
  12541. },
  12542. ]
  12543. ))
  12544. characterMakers.push(() => makeCharacter(
  12545. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12546. {
  12547. front: {
  12548. height: math.unit(5 + 9 / 12, "feet"),
  12549. weight: math.unit(70, "lb"),
  12550. name: "Front",
  12551. image: {
  12552. source: "./media/characters/quincy/front.svg",
  12553. extra: 3041 / 2751
  12554. }
  12555. },
  12556. back: {
  12557. height: math.unit(5 + 9 / 12, "feet"),
  12558. weight: math.unit(70, "lb"),
  12559. name: "Back",
  12560. image: {
  12561. source: "./media/characters/quincy/back.svg",
  12562. extra: 3041 / 2751
  12563. }
  12564. },
  12565. flying: {
  12566. height: math.unit(5 + 4 / 12, "feet"),
  12567. weight: math.unit(70, "lb"),
  12568. name: "Flying",
  12569. image: {
  12570. source: "./media/characters/quincy/flying.svg",
  12571. extra: 1044 / 930
  12572. }
  12573. },
  12574. },
  12575. [
  12576. {
  12577. name: "Micro",
  12578. height: math.unit(3, "cm")
  12579. },
  12580. {
  12581. name: "Normal",
  12582. height: math.unit(5 + 9 / 12, "feet")
  12583. },
  12584. {
  12585. name: "Macro",
  12586. height: math.unit(200, "meters"),
  12587. default: true
  12588. },
  12589. {
  12590. name: "Megamacro",
  12591. height: math.unit(1000, "meters")
  12592. },
  12593. ]
  12594. ))
  12595. characterMakers.push(() => makeCharacter(
  12596. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12597. {
  12598. front: {
  12599. height: math.unit(3 + 11/12, "feet"),
  12600. weight: math.unit(50, "lb"),
  12601. name: "Front",
  12602. image: {
  12603. source: "./media/characters/vanrel/front.svg",
  12604. extra: 1104/949,
  12605. bottom: 52/1156
  12606. }
  12607. },
  12608. back: {
  12609. height: math.unit(3 + 11/12, "feet"),
  12610. weight: math.unit(50, "lb"),
  12611. name: "Back",
  12612. image: {
  12613. source: "./media/characters/vanrel/back.svg",
  12614. extra: 1119/976,
  12615. bottom: 37/1156
  12616. }
  12617. },
  12618. tome: {
  12619. height: math.unit(1.35, "feet"),
  12620. weight: math.unit(10, "lb"),
  12621. name: "Vanrel's Tome",
  12622. rename: true,
  12623. image: {
  12624. source: "./media/characters/vanrel/tome.svg"
  12625. }
  12626. },
  12627. beans: {
  12628. height: math.unit(0.89, "feet"),
  12629. name: "Beans",
  12630. image: {
  12631. source: "./media/characters/vanrel/beans.svg"
  12632. }
  12633. },
  12634. },
  12635. [
  12636. {
  12637. name: "Normal",
  12638. height: math.unit(3 + 11/12, "feet"),
  12639. default: true
  12640. },
  12641. ]
  12642. ))
  12643. characterMakers.push(() => makeCharacter(
  12644. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12645. {
  12646. front: {
  12647. height: math.unit(7 + 5 / 12, "feet"),
  12648. name: "Front",
  12649. image: {
  12650. source: "./media/characters/kuiper-vanrel/front.svg",
  12651. extra: 1219/1169,
  12652. bottom: 69/1288
  12653. }
  12654. },
  12655. back: {
  12656. height: math.unit(7 + 5 / 12, "feet"),
  12657. name: "Back",
  12658. image: {
  12659. source: "./media/characters/kuiper-vanrel/back.svg",
  12660. extra: 1236/1193,
  12661. bottom: 27/1263
  12662. }
  12663. },
  12664. foot: {
  12665. height: math.unit(0.55, "meters"),
  12666. name: "Foot",
  12667. image: {
  12668. source: "./media/characters/kuiper-vanrel/foot.svg",
  12669. }
  12670. },
  12671. battle: {
  12672. height: math.unit(6.824, "feet"),
  12673. name: "Battle",
  12674. image: {
  12675. source: "./media/characters/kuiper-vanrel/battle.svg",
  12676. extra: 1466 / 1327,
  12677. bottom: 29 / 1492.5
  12678. }
  12679. },
  12680. meerkui: {
  12681. height: math.unit(18, "inches"),
  12682. name: "Meerkui",
  12683. image: {
  12684. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12685. extra: 1354/1289,
  12686. bottom: 69/1423
  12687. }
  12688. },
  12689. },
  12690. [
  12691. {
  12692. name: "Normal",
  12693. height: math.unit(7 + 5 / 12, "feet"),
  12694. default: true
  12695. },
  12696. ]
  12697. ))
  12698. characterMakers.push(() => makeCharacter(
  12699. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12700. {
  12701. front: {
  12702. height: math.unit(8 + 5 / 12, "feet"),
  12703. name: "Front",
  12704. image: {
  12705. source: "./media/characters/keset-vanrel/front.svg",
  12706. extra: 1231/1148,
  12707. bottom: 82/1313
  12708. }
  12709. },
  12710. back: {
  12711. height: math.unit(8 + 5 / 12, "feet"),
  12712. name: "Back",
  12713. image: {
  12714. source: "./media/characters/keset-vanrel/back.svg",
  12715. extra: 1240/1174,
  12716. bottom: 33/1273
  12717. }
  12718. },
  12719. hand: {
  12720. height: math.unit(0.6, "meters"),
  12721. name: "Hand",
  12722. image: {
  12723. source: "./media/characters/keset-vanrel/hand.svg"
  12724. }
  12725. },
  12726. foot: {
  12727. height: math.unit(0.94978, "meters"),
  12728. name: "Foot",
  12729. image: {
  12730. source: "./media/characters/keset-vanrel/foot.svg"
  12731. }
  12732. },
  12733. battle: {
  12734. height: math.unit(7.408, "feet"),
  12735. name: "Battle",
  12736. image: {
  12737. source: "./media/characters/keset-vanrel/battle.svg",
  12738. extra: 1890 / 1386,
  12739. bottom: 73.28 / 1970
  12740. }
  12741. },
  12742. },
  12743. [
  12744. {
  12745. name: "Normal",
  12746. height: math.unit(8 + 5 / 12, "feet"),
  12747. default: true
  12748. },
  12749. ]
  12750. ))
  12751. characterMakers.push(() => makeCharacter(
  12752. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12753. {
  12754. front: {
  12755. height: math.unit(6, "feet"),
  12756. weight: math.unit(150, "lb"),
  12757. name: "Front",
  12758. image: {
  12759. source: "./media/characters/neos/front.svg",
  12760. extra: 1696 / 992,
  12761. bottom: 0.14
  12762. }
  12763. },
  12764. },
  12765. [
  12766. {
  12767. name: "Normal",
  12768. height: math.unit(54, "cm"),
  12769. default: true
  12770. },
  12771. {
  12772. name: "Macro",
  12773. height: math.unit(100, "m")
  12774. },
  12775. {
  12776. name: "Megamacro",
  12777. height: math.unit(10, "km")
  12778. },
  12779. {
  12780. name: "Megamacro+",
  12781. height: math.unit(100, "km")
  12782. },
  12783. {
  12784. name: "Gigamacro",
  12785. height: math.unit(100, "Mm")
  12786. },
  12787. {
  12788. name: "Teramacro",
  12789. height: math.unit(100, "Gm")
  12790. },
  12791. {
  12792. name: "Examacro",
  12793. height: math.unit(100, "Em")
  12794. },
  12795. {
  12796. name: "Godly",
  12797. height: math.unit(10000, "Ym")
  12798. },
  12799. {
  12800. name: "Beyond Godly",
  12801. height: math.unit(25, "multiverses")
  12802. },
  12803. ]
  12804. ))
  12805. characterMakers.push(() => makeCharacter(
  12806. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12807. {
  12808. feminine: {
  12809. height: math.unit(5, "feet"),
  12810. weight: math.unit(100, "lb"),
  12811. name: "Feminine",
  12812. image: {
  12813. source: "./media/characters/sammy-mouse/feminine.svg",
  12814. extra: 2526 / 2425,
  12815. bottom: 0.123
  12816. }
  12817. },
  12818. masculine: {
  12819. height: math.unit(5, "feet"),
  12820. weight: math.unit(100, "lb"),
  12821. name: "Masculine",
  12822. image: {
  12823. source: "./media/characters/sammy-mouse/masculine.svg",
  12824. extra: 2526 / 2425,
  12825. bottom: 0.123
  12826. }
  12827. },
  12828. },
  12829. [
  12830. {
  12831. name: "Micro",
  12832. height: math.unit(5, "inches")
  12833. },
  12834. {
  12835. name: "Normal",
  12836. height: math.unit(5, "feet"),
  12837. default: true
  12838. },
  12839. {
  12840. name: "Macro",
  12841. height: math.unit(60, "feet")
  12842. },
  12843. ]
  12844. ))
  12845. characterMakers.push(() => makeCharacter(
  12846. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12847. {
  12848. front: {
  12849. height: math.unit(4, "feet"),
  12850. weight: math.unit(50, "lb"),
  12851. name: "Front",
  12852. image: {
  12853. source: "./media/characters/kole/front.svg",
  12854. extra: 1423 / 1303,
  12855. bottom: 0.025
  12856. }
  12857. },
  12858. back: {
  12859. height: math.unit(4, "feet"),
  12860. weight: math.unit(50, "lb"),
  12861. name: "Back",
  12862. image: {
  12863. source: "./media/characters/kole/back.svg",
  12864. extra: 1426 / 1280,
  12865. bottom: 0.02
  12866. }
  12867. },
  12868. },
  12869. [
  12870. {
  12871. name: "Normal",
  12872. height: math.unit(4, "feet"),
  12873. default: true
  12874. },
  12875. ]
  12876. ))
  12877. characterMakers.push(() => makeCharacter(
  12878. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12879. {
  12880. front: {
  12881. height: math.unit(2.5, "feet"),
  12882. weight: math.unit(32, "lb"),
  12883. name: "Front",
  12884. image: {
  12885. source: "./media/characters/rufran/front.svg",
  12886. extra: 1313/885,
  12887. bottom: 94/1407
  12888. }
  12889. },
  12890. side: {
  12891. height: math.unit(2.5, "feet"),
  12892. weight: math.unit(32, "lb"),
  12893. name: "Side",
  12894. image: {
  12895. source: "./media/characters/rufran/side.svg",
  12896. extra: 1109/852,
  12897. bottom: 118/1227
  12898. }
  12899. },
  12900. back: {
  12901. height: math.unit(2.5, "feet"),
  12902. weight: math.unit(32, "lb"),
  12903. name: "Back",
  12904. image: {
  12905. source: "./media/characters/rufran/back.svg",
  12906. extra: 1280/878,
  12907. bottom: 131/1411
  12908. }
  12909. },
  12910. mouth: {
  12911. height: math.unit(1.13, "feet"),
  12912. name: "Mouth",
  12913. image: {
  12914. source: "./media/characters/rufran/mouth.svg"
  12915. }
  12916. },
  12917. foot: {
  12918. height: math.unit(1.33, "feet"),
  12919. name: "Foot",
  12920. image: {
  12921. source: "./media/characters/rufran/foot.svg"
  12922. }
  12923. },
  12924. koboldFront: {
  12925. height: math.unit(2 + 6 / 12, "feet"),
  12926. weight: math.unit(20, "lb"),
  12927. name: "Front (Kobold)",
  12928. image: {
  12929. source: "./media/characters/rufran/kobold-front.svg",
  12930. extra: 2041 / 1839,
  12931. bottom: 0.055
  12932. }
  12933. },
  12934. koboldBack: {
  12935. height: math.unit(2 + 6 / 12, "feet"),
  12936. weight: math.unit(20, "lb"),
  12937. name: "Back (Kobold)",
  12938. image: {
  12939. source: "./media/characters/rufran/kobold-back.svg",
  12940. extra: 2054 / 1839,
  12941. bottom: 0.01
  12942. }
  12943. },
  12944. koboldHand: {
  12945. height: math.unit(0.2166, "meters"),
  12946. name: "Hand (Kobold)",
  12947. image: {
  12948. source: "./media/characters/rufran/kobold-hand.svg"
  12949. }
  12950. },
  12951. koboldFoot: {
  12952. height: math.unit(0.185, "meters"),
  12953. name: "Foot (Kobold)",
  12954. image: {
  12955. source: "./media/characters/rufran/kobold-foot.svg"
  12956. }
  12957. },
  12958. },
  12959. [
  12960. {
  12961. name: "Micro",
  12962. height: math.unit(1, "inch")
  12963. },
  12964. {
  12965. name: "Normal",
  12966. height: math.unit(2 + 6 / 12, "feet"),
  12967. default: true
  12968. },
  12969. {
  12970. name: "Big",
  12971. height: math.unit(60, "feet")
  12972. },
  12973. {
  12974. name: "Macro",
  12975. height: math.unit(325, "feet")
  12976. },
  12977. ]
  12978. ))
  12979. characterMakers.push(() => makeCharacter(
  12980. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12981. {
  12982. front: {
  12983. height: math.unit(0.3, "meters"),
  12984. weight: math.unit(3.5, "kg"),
  12985. name: "Front",
  12986. image: {
  12987. source: "./media/characters/chip/front.svg",
  12988. extra: 748 / 674
  12989. }
  12990. },
  12991. },
  12992. [
  12993. {
  12994. name: "Micro",
  12995. height: math.unit(1, "inch"),
  12996. default: true
  12997. },
  12998. ]
  12999. ))
  13000. characterMakers.push(() => makeCharacter(
  13001. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13002. {
  13003. side: {
  13004. height: math.unit(2.3, "meters"),
  13005. weight: math.unit(3500, "lb"),
  13006. name: "Side",
  13007. image: {
  13008. source: "./media/characters/torvid/side.svg",
  13009. extra: 1972 / 722,
  13010. bottom: 0.035
  13011. }
  13012. },
  13013. },
  13014. [
  13015. {
  13016. name: "Normal",
  13017. height: math.unit(2.3, "meters"),
  13018. default: true
  13019. },
  13020. ]
  13021. ))
  13022. characterMakers.push(() => makeCharacter(
  13023. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13024. {
  13025. front: {
  13026. height: math.unit(2, "meters"),
  13027. weight: math.unit(150.5, "kg"),
  13028. name: "Front",
  13029. image: {
  13030. source: "./media/characters/susan/front.svg",
  13031. extra: 693 / 635,
  13032. bottom: 0.05
  13033. }
  13034. },
  13035. },
  13036. [
  13037. {
  13038. name: "Megamacro",
  13039. height: math.unit(505, "miles"),
  13040. default: true
  13041. },
  13042. ]
  13043. ))
  13044. characterMakers.push(() => makeCharacter(
  13045. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13046. {
  13047. front: {
  13048. height: math.unit(6, "feet"),
  13049. weight: math.unit(150, "lb"),
  13050. name: "Front",
  13051. image: {
  13052. source: "./media/characters/raindrops/front.svg",
  13053. extra: 2655 / 2461,
  13054. bottom: 49 / 2705
  13055. }
  13056. },
  13057. back: {
  13058. height: math.unit(6, "feet"),
  13059. weight: math.unit(150, "lb"),
  13060. name: "Back",
  13061. image: {
  13062. source: "./media/characters/raindrops/back.svg",
  13063. extra: 2574 / 2400,
  13064. bottom: 65 / 2634
  13065. }
  13066. },
  13067. },
  13068. [
  13069. {
  13070. name: "Micro",
  13071. height: math.unit(6, "inches")
  13072. },
  13073. {
  13074. name: "Normal",
  13075. height: math.unit(6 + 2 / 12, "feet")
  13076. },
  13077. {
  13078. name: "Macro",
  13079. height: math.unit(131, "feet"),
  13080. default: true
  13081. },
  13082. {
  13083. name: "Megamacro",
  13084. height: math.unit(15, "miles")
  13085. },
  13086. {
  13087. name: "Gigamacro",
  13088. height: math.unit(4000, "miles")
  13089. },
  13090. {
  13091. name: "Teramacro",
  13092. height: math.unit(315000, "miles")
  13093. },
  13094. ]
  13095. ))
  13096. characterMakers.push(() => makeCharacter(
  13097. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13098. {
  13099. front: {
  13100. height: math.unit(2.794, "meters"),
  13101. weight: math.unit(325, "kg"),
  13102. name: "Front",
  13103. image: {
  13104. source: "./media/characters/tezwa/front.svg",
  13105. extra: 2083 / 1906,
  13106. bottom: 0.031
  13107. }
  13108. },
  13109. foot: {
  13110. height: math.unit(0.687, "meters"),
  13111. name: "Foot",
  13112. image: {
  13113. source: "./media/characters/tezwa/foot.svg"
  13114. }
  13115. },
  13116. },
  13117. [
  13118. {
  13119. name: "Normal",
  13120. height: math.unit(9 + 2 / 12, "feet"),
  13121. default: true
  13122. },
  13123. ]
  13124. ))
  13125. characterMakers.push(() => makeCharacter(
  13126. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13127. {
  13128. front: {
  13129. height: math.unit(58, "feet"),
  13130. weight: math.unit(89000, "lb"),
  13131. name: "Front",
  13132. image: {
  13133. source: "./media/characters/typhus/front.svg",
  13134. extra: 816 / 800,
  13135. bottom: 0.065
  13136. }
  13137. },
  13138. },
  13139. [
  13140. {
  13141. name: "Macro",
  13142. height: math.unit(58, "feet"),
  13143. default: true
  13144. },
  13145. ]
  13146. ))
  13147. characterMakers.push(() => makeCharacter(
  13148. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13149. {
  13150. front: {
  13151. height: math.unit(12, "feet"),
  13152. weight: math.unit(6, "tonnes"),
  13153. name: "Front",
  13154. image: {
  13155. source: "./media/characters/lyra-von-wulf/front.svg",
  13156. extra: 1,
  13157. bottom: 0.10
  13158. }
  13159. },
  13160. frontMecha: {
  13161. height: math.unit(12, "feet"),
  13162. weight: math.unit(12, "tonnes"),
  13163. name: "Front (Mecha)",
  13164. image: {
  13165. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13166. extra: 1,
  13167. bottom: 0.042
  13168. }
  13169. },
  13170. maw: {
  13171. height: math.unit(2.2, "feet"),
  13172. name: "Maw",
  13173. image: {
  13174. source: "./media/characters/lyra-von-wulf/maw.svg"
  13175. }
  13176. },
  13177. },
  13178. [
  13179. {
  13180. name: "Normal",
  13181. height: math.unit(12, "feet"),
  13182. default: true
  13183. },
  13184. {
  13185. name: "Classic",
  13186. height: math.unit(50, "feet")
  13187. },
  13188. {
  13189. name: "Macro",
  13190. height: math.unit(500, "feet")
  13191. },
  13192. {
  13193. name: "Megamacro",
  13194. height: math.unit(1, "mile")
  13195. },
  13196. {
  13197. name: "Gigamacro",
  13198. height: math.unit(400, "miles")
  13199. },
  13200. {
  13201. name: "Teramacro",
  13202. height: math.unit(22000, "miles")
  13203. },
  13204. {
  13205. name: "Solarmacro",
  13206. height: math.unit(8600000, "miles")
  13207. },
  13208. {
  13209. name: "Galactic",
  13210. height: math.unit(1057000, "lightyears")
  13211. },
  13212. ]
  13213. ))
  13214. characterMakers.push(() => makeCharacter(
  13215. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13216. {
  13217. front: {
  13218. height: math.unit(6 + 10 / 12, "feet"),
  13219. weight: math.unit(150, "lb"),
  13220. name: "Front",
  13221. image: {
  13222. source: "./media/characters/dixon/front.svg",
  13223. extra: 3361 / 3209,
  13224. bottom: 0.01
  13225. }
  13226. },
  13227. },
  13228. [
  13229. {
  13230. name: "Normal",
  13231. height: math.unit(6 + 10 / 12, "feet"),
  13232. default: true
  13233. },
  13234. {
  13235. name: "Big",
  13236. height: math.unit(12, "meters")
  13237. },
  13238. {
  13239. name: "Macro",
  13240. height: math.unit(500, "meters")
  13241. },
  13242. {
  13243. name: "Megamacro",
  13244. height: math.unit(2, "km")
  13245. },
  13246. ]
  13247. ))
  13248. characterMakers.push(() => makeCharacter(
  13249. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13250. {
  13251. front: {
  13252. height: math.unit(185, "cm"),
  13253. weight: math.unit(68, "kg"),
  13254. name: "Front",
  13255. image: {
  13256. source: "./media/characters/kauko/front.svg",
  13257. extra: 1455 / 1421,
  13258. bottom: 0.03
  13259. }
  13260. },
  13261. back: {
  13262. height: math.unit(185, "cm"),
  13263. weight: math.unit(68, "kg"),
  13264. name: "Back",
  13265. image: {
  13266. source: "./media/characters/kauko/back.svg",
  13267. extra: 1455 / 1421,
  13268. bottom: 0.004
  13269. }
  13270. },
  13271. },
  13272. [
  13273. {
  13274. name: "Normal",
  13275. height: math.unit(185, "cm"),
  13276. default: true
  13277. },
  13278. ]
  13279. ))
  13280. characterMakers.push(() => makeCharacter(
  13281. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13282. {
  13283. front: {
  13284. height: math.unit(6, "feet"),
  13285. weight: math.unit(150, "kg"),
  13286. name: "Front",
  13287. image: {
  13288. source: "./media/characters/varg/front.svg",
  13289. extra: 1108 / 1018,
  13290. bottom: 0.0375
  13291. }
  13292. },
  13293. },
  13294. [
  13295. {
  13296. name: "Normal",
  13297. height: math.unit(5, "meters")
  13298. },
  13299. {
  13300. name: "Macro",
  13301. height: math.unit(200, "meters")
  13302. },
  13303. {
  13304. name: "Megamacro",
  13305. height: math.unit(20, "kilometers")
  13306. },
  13307. {
  13308. name: "True Size",
  13309. height: math.unit(211, "km"),
  13310. default: true
  13311. },
  13312. {
  13313. name: "Gigamacro",
  13314. height: math.unit(1000, "km")
  13315. },
  13316. {
  13317. name: "Gigamacro+",
  13318. height: math.unit(8000, "km")
  13319. },
  13320. {
  13321. name: "Teramacro",
  13322. height: math.unit(1000000, "km")
  13323. },
  13324. ]
  13325. ))
  13326. characterMakers.push(() => makeCharacter(
  13327. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13328. {
  13329. front: {
  13330. height: math.unit(7 + 7 / 12, "feet"),
  13331. weight: math.unit(267, "lb"),
  13332. name: "Front",
  13333. image: {
  13334. source: "./media/characters/dayza/front.svg",
  13335. extra: 1262 / 1200,
  13336. bottom: 0.035
  13337. }
  13338. },
  13339. side: {
  13340. height: math.unit(7 + 7 / 12, "feet"),
  13341. weight: math.unit(267, "lb"),
  13342. name: "Side",
  13343. image: {
  13344. source: "./media/characters/dayza/side.svg",
  13345. extra: 1295 / 1245,
  13346. bottom: 0.05
  13347. }
  13348. },
  13349. back: {
  13350. height: math.unit(7 + 7 / 12, "feet"),
  13351. weight: math.unit(267, "lb"),
  13352. name: "Back",
  13353. image: {
  13354. source: "./media/characters/dayza/back.svg",
  13355. extra: 1241 / 1170
  13356. }
  13357. },
  13358. },
  13359. [
  13360. {
  13361. name: "Normal",
  13362. height: math.unit(7 + 7 / 12, "feet"),
  13363. default: true
  13364. },
  13365. {
  13366. name: "Macro",
  13367. height: math.unit(155, "feet")
  13368. },
  13369. ]
  13370. ))
  13371. characterMakers.push(() => makeCharacter(
  13372. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13373. {
  13374. front: {
  13375. height: math.unit(6 + 5 / 12, "feet"),
  13376. weight: math.unit(160, "lb"),
  13377. name: "Front",
  13378. image: {
  13379. source: "./media/characters/xanthos/front.svg",
  13380. extra: 1,
  13381. bottom: 0.04
  13382. }
  13383. },
  13384. back: {
  13385. height: math.unit(6 + 5 / 12, "feet"),
  13386. weight: math.unit(160, "lb"),
  13387. name: "Back",
  13388. image: {
  13389. source: "./media/characters/xanthos/back.svg",
  13390. extra: 1,
  13391. bottom: 0.03
  13392. }
  13393. },
  13394. hand: {
  13395. height: math.unit(0.928, "feet"),
  13396. name: "Hand",
  13397. image: {
  13398. source: "./media/characters/xanthos/hand.svg"
  13399. }
  13400. },
  13401. foot: {
  13402. height: math.unit(1.286, "feet"),
  13403. name: "Foot",
  13404. image: {
  13405. source: "./media/characters/xanthos/foot.svg"
  13406. }
  13407. },
  13408. },
  13409. [
  13410. {
  13411. name: "Normal",
  13412. height: math.unit(6 + 5 / 12, "feet"),
  13413. default: true
  13414. },
  13415. {
  13416. name: "Normal+",
  13417. height: math.unit(6, "meters")
  13418. },
  13419. {
  13420. name: "Macro",
  13421. height: math.unit(40, "feet")
  13422. },
  13423. {
  13424. name: "Macro+",
  13425. height: math.unit(200, "meters")
  13426. },
  13427. {
  13428. name: "Megamacro",
  13429. height: math.unit(20, "km")
  13430. },
  13431. {
  13432. name: "Megamacro+",
  13433. height: math.unit(100, "km")
  13434. },
  13435. {
  13436. name: "Gigamacro",
  13437. height: math.unit(200, "megameters")
  13438. },
  13439. {
  13440. name: "Gigamacro+",
  13441. height: math.unit(1.5, "gigameters")
  13442. },
  13443. ]
  13444. ))
  13445. characterMakers.push(() => makeCharacter(
  13446. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13447. {
  13448. front: {
  13449. height: math.unit(6 + 3 / 12, "feet"),
  13450. weight: math.unit(215, "lb"),
  13451. name: "Front",
  13452. image: {
  13453. source: "./media/characters/grynn/front.svg",
  13454. extra: 4627 / 4209,
  13455. bottom: 0.047
  13456. }
  13457. },
  13458. },
  13459. [
  13460. {
  13461. name: "Micro",
  13462. height: math.unit(6, "inches")
  13463. },
  13464. {
  13465. name: "Normal",
  13466. height: math.unit(6 + 3 / 12, "feet"),
  13467. default: true
  13468. },
  13469. {
  13470. name: "Big",
  13471. height: math.unit(104, "feet")
  13472. },
  13473. {
  13474. name: "Macro",
  13475. height: math.unit(944, "feet")
  13476. },
  13477. {
  13478. name: "Macro+",
  13479. height: math.unit(9480, "feet")
  13480. },
  13481. {
  13482. name: "Megamacro",
  13483. height: math.unit(78752, "feet")
  13484. },
  13485. {
  13486. name: "Megamacro+",
  13487. height: math.unit(630128, "feet")
  13488. },
  13489. {
  13490. name: "Megamacro++",
  13491. height: math.unit(3150695, "feet")
  13492. },
  13493. ]
  13494. ))
  13495. characterMakers.push(() => makeCharacter(
  13496. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13497. {
  13498. front: {
  13499. height: math.unit(7 + 5 / 12, "feet"),
  13500. weight: math.unit(450, "lb"),
  13501. name: "Front",
  13502. image: {
  13503. source: "./media/characters/mocha-aura/front.svg",
  13504. extra: 1907 / 1817,
  13505. bottom: 0.04
  13506. }
  13507. },
  13508. back: {
  13509. height: math.unit(7 + 5 / 12, "feet"),
  13510. weight: math.unit(450, "lb"),
  13511. name: "Back",
  13512. image: {
  13513. source: "./media/characters/mocha-aura/back.svg",
  13514. extra: 1900 / 1825,
  13515. bottom: 0.045
  13516. }
  13517. },
  13518. },
  13519. [
  13520. {
  13521. name: "Nano",
  13522. height: math.unit(1, "nm")
  13523. },
  13524. {
  13525. name: "Megamicro",
  13526. height: math.unit(1, "mm")
  13527. },
  13528. {
  13529. name: "Micro",
  13530. height: math.unit(3, "inches")
  13531. },
  13532. {
  13533. name: "Normal",
  13534. height: math.unit(7 + 5 / 12, "feet"),
  13535. default: true
  13536. },
  13537. {
  13538. name: "Macro",
  13539. height: math.unit(30, "feet")
  13540. },
  13541. {
  13542. name: "Megamacro",
  13543. height: math.unit(3500, "feet")
  13544. },
  13545. {
  13546. name: "Teramacro",
  13547. height: math.unit(500000, "miles")
  13548. },
  13549. {
  13550. name: "Petamacro",
  13551. height: math.unit(50000000000000000, "parsecs")
  13552. },
  13553. ]
  13554. ))
  13555. characterMakers.push(() => makeCharacter(
  13556. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13557. {
  13558. front: {
  13559. height: math.unit(6, "feet"),
  13560. weight: math.unit(150, "lb"),
  13561. name: "Front",
  13562. image: {
  13563. source: "./media/characters/ilisha-devya/front.svg",
  13564. extra: 1053/1049,
  13565. bottom: 270/1323
  13566. }
  13567. },
  13568. back: {
  13569. height: math.unit(6, "feet"),
  13570. weight: math.unit(150, "lb"),
  13571. name: "Back",
  13572. image: {
  13573. source: "./media/characters/ilisha-devya/back.svg",
  13574. extra: 1131/1128,
  13575. bottom: 39/1170
  13576. }
  13577. },
  13578. },
  13579. [
  13580. {
  13581. name: "Macro",
  13582. height: math.unit(500, "feet"),
  13583. default: true
  13584. },
  13585. {
  13586. name: "Megamacro",
  13587. height: math.unit(10, "miles")
  13588. },
  13589. {
  13590. name: "Gigamacro",
  13591. height: math.unit(100000, "miles")
  13592. },
  13593. {
  13594. name: "Examacro",
  13595. height: math.unit(1e9, "lightyears")
  13596. },
  13597. {
  13598. name: "Omniversal",
  13599. height: math.unit(1e33, "lightyears")
  13600. },
  13601. {
  13602. name: "Beyond Infinite",
  13603. height: math.unit(1e100, "lightyears")
  13604. },
  13605. ]
  13606. ))
  13607. characterMakers.push(() => makeCharacter(
  13608. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13609. {
  13610. Side: {
  13611. height: math.unit(6, "feet"),
  13612. weight: math.unit(150, "lb"),
  13613. name: "Side",
  13614. image: {
  13615. source: "./media/characters/mira/side.svg",
  13616. extra: 900 / 799,
  13617. bottom: 0.02
  13618. }
  13619. },
  13620. },
  13621. [
  13622. {
  13623. name: "Human Size",
  13624. height: math.unit(6, "feet")
  13625. },
  13626. {
  13627. name: "Macro",
  13628. height: math.unit(100, "feet"),
  13629. default: true
  13630. },
  13631. {
  13632. name: "Megamacro",
  13633. height: math.unit(10, "miles")
  13634. },
  13635. {
  13636. name: "Gigamacro",
  13637. height: math.unit(25000, "miles")
  13638. },
  13639. {
  13640. name: "Teramacro",
  13641. height: math.unit(300, "AU")
  13642. },
  13643. {
  13644. name: "Full Size",
  13645. height: math.unit(4.5e10, "lightyears")
  13646. },
  13647. ]
  13648. ))
  13649. characterMakers.push(() => makeCharacter(
  13650. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13651. {
  13652. front: {
  13653. height: math.unit(6, "feet"),
  13654. weight: math.unit(150, "lb"),
  13655. name: "Front",
  13656. image: {
  13657. source: "./media/characters/holly/front.svg",
  13658. extra: 639 / 606
  13659. }
  13660. },
  13661. back: {
  13662. height: math.unit(6, "feet"),
  13663. weight: math.unit(150, "lb"),
  13664. name: "Back",
  13665. image: {
  13666. source: "./media/characters/holly/back.svg",
  13667. extra: 623 / 598
  13668. }
  13669. },
  13670. frontWorking: {
  13671. height: math.unit(6, "feet"),
  13672. weight: math.unit(150, "lb"),
  13673. name: "Front (Working)",
  13674. image: {
  13675. source: "./media/characters/holly/front-working.svg",
  13676. extra: 607 / 577,
  13677. bottom: 0.048
  13678. }
  13679. },
  13680. },
  13681. [
  13682. {
  13683. name: "Normal",
  13684. height: math.unit(12 + 3 / 12, "feet"),
  13685. default: true
  13686. },
  13687. ]
  13688. ))
  13689. characterMakers.push(() => makeCharacter(
  13690. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13691. {
  13692. front: {
  13693. height: math.unit(6, "feet"),
  13694. weight: math.unit(150, "lb"),
  13695. name: "Front",
  13696. image: {
  13697. source: "./media/characters/porter/front.svg",
  13698. extra: 1,
  13699. bottom: 0.01
  13700. }
  13701. },
  13702. frontRobes: {
  13703. height: math.unit(6, "feet"),
  13704. weight: math.unit(150, "lb"),
  13705. name: "Front (Robes)",
  13706. image: {
  13707. source: "./media/characters/porter/front-robes.svg",
  13708. extra: 1.01,
  13709. bottom: 0.01
  13710. }
  13711. },
  13712. },
  13713. [
  13714. {
  13715. name: "Normal",
  13716. height: math.unit(11 + 9 / 12, "feet"),
  13717. default: true
  13718. },
  13719. ]
  13720. ))
  13721. characterMakers.push(() => makeCharacter(
  13722. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13723. {
  13724. legendary: {
  13725. height: math.unit(6, "feet"),
  13726. weight: math.unit(150, "lb"),
  13727. name: "Legendary",
  13728. image: {
  13729. source: "./media/characters/lucy/legendary.svg",
  13730. extra: 1355 / 1100,
  13731. bottom: 0.045
  13732. }
  13733. },
  13734. },
  13735. [
  13736. {
  13737. name: "Legendary",
  13738. height: math.unit(86882 * 2, "miles"),
  13739. default: true
  13740. },
  13741. ]
  13742. ))
  13743. characterMakers.push(() => makeCharacter(
  13744. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13745. {
  13746. front: {
  13747. height: math.unit(6, "feet"),
  13748. weight: math.unit(150, "lb"),
  13749. name: "Front",
  13750. image: {
  13751. source: "./media/characters/drusilla/front.svg",
  13752. extra: 678 / 635,
  13753. bottom: 0.03
  13754. }
  13755. },
  13756. back: {
  13757. height: math.unit(6, "feet"),
  13758. weight: math.unit(150, "lb"),
  13759. name: "Back",
  13760. image: {
  13761. source: "./media/characters/drusilla/back.svg",
  13762. extra: 678 / 635,
  13763. bottom: 0.005
  13764. }
  13765. },
  13766. },
  13767. [
  13768. {
  13769. name: "Macro",
  13770. height: math.unit(100, "feet")
  13771. },
  13772. {
  13773. name: "Canon Height",
  13774. height: math.unit(2000, "feet"),
  13775. default: true
  13776. },
  13777. ]
  13778. ))
  13779. characterMakers.push(() => makeCharacter(
  13780. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13781. {
  13782. front: {
  13783. height: math.unit(6, "feet"),
  13784. weight: math.unit(180, "lb"),
  13785. name: "Front",
  13786. image: {
  13787. source: "./media/characters/renard-thatch/front.svg",
  13788. extra: 2411 / 2275,
  13789. bottom: 0.01
  13790. }
  13791. },
  13792. frontPosing: {
  13793. height: math.unit(6, "feet"),
  13794. weight: math.unit(180, "lb"),
  13795. name: "Front (Posing)",
  13796. image: {
  13797. source: "./media/characters/renard-thatch/front-posing.svg",
  13798. extra: 2381 / 2261,
  13799. bottom: 0.01
  13800. }
  13801. },
  13802. back: {
  13803. height: math.unit(6, "feet"),
  13804. weight: math.unit(180, "lb"),
  13805. name: "Back",
  13806. image: {
  13807. source: "./media/characters/renard-thatch/back.svg",
  13808. extra: 2428 / 2288
  13809. }
  13810. },
  13811. },
  13812. [
  13813. {
  13814. name: "Micro",
  13815. height: math.unit(3, "inches")
  13816. },
  13817. {
  13818. name: "Default",
  13819. height: math.unit(6, "feet"),
  13820. default: true
  13821. },
  13822. {
  13823. name: "Macro",
  13824. height: math.unit(75, "feet")
  13825. },
  13826. ]
  13827. ))
  13828. characterMakers.push(() => makeCharacter(
  13829. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13830. {
  13831. front: {
  13832. height: math.unit(1450, "feet"),
  13833. weight: math.unit(1.21e6, "tons"),
  13834. name: "Front",
  13835. image: {
  13836. source: "./media/characters/sekvra/front.svg",
  13837. extra: 1193/1190,
  13838. bottom: 78/1271
  13839. }
  13840. },
  13841. side: {
  13842. height: math.unit(1450, "feet"),
  13843. weight: math.unit(1.21e6, "tons"),
  13844. name: "Side",
  13845. image: {
  13846. source: "./media/characters/sekvra/side.svg",
  13847. extra: 1193/1190,
  13848. bottom: 52/1245
  13849. }
  13850. },
  13851. back: {
  13852. height: math.unit(1450, "feet"),
  13853. weight: math.unit(1.21e6, "tons"),
  13854. name: "Back",
  13855. image: {
  13856. source: "./media/characters/sekvra/back.svg",
  13857. extra: 1219/1216,
  13858. bottom: 21/1240
  13859. }
  13860. },
  13861. frontClothed: {
  13862. height: math.unit(1450, "feet"),
  13863. weight: math.unit(1.21e6, "tons"),
  13864. name: "Front (Clothed)",
  13865. image: {
  13866. source: "./media/characters/sekvra/front-clothed.svg",
  13867. extra: 1192/1189,
  13868. bottom: 79/1271
  13869. }
  13870. },
  13871. },
  13872. [
  13873. {
  13874. name: "Macro",
  13875. height: math.unit(1450, "feet"),
  13876. default: true
  13877. },
  13878. {
  13879. name: "Megamacro",
  13880. height: math.unit(15000, "feet")
  13881. },
  13882. ]
  13883. ))
  13884. characterMakers.push(() => makeCharacter(
  13885. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13886. {
  13887. front: {
  13888. height: math.unit(6, "feet"),
  13889. weight: math.unit(150, "lb"),
  13890. name: "Front",
  13891. image: {
  13892. source: "./media/characters/carmine/front.svg",
  13893. extra: 1,
  13894. bottom: 0.035
  13895. }
  13896. },
  13897. frontArmor: {
  13898. height: math.unit(6, "feet"),
  13899. weight: math.unit(150, "lb"),
  13900. name: "Front (Armor)",
  13901. image: {
  13902. source: "./media/characters/carmine/front-armor.svg",
  13903. extra: 1,
  13904. bottom: 0.035
  13905. }
  13906. },
  13907. },
  13908. [
  13909. {
  13910. name: "Large",
  13911. height: math.unit(1, "mile")
  13912. },
  13913. {
  13914. name: "Huge",
  13915. height: math.unit(40, "miles"),
  13916. default: true
  13917. },
  13918. {
  13919. name: "Colossal",
  13920. height: math.unit(2500, "miles")
  13921. },
  13922. ]
  13923. ))
  13924. characterMakers.push(() => makeCharacter(
  13925. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13926. {
  13927. front: {
  13928. height: math.unit(6, "feet"),
  13929. weight: math.unit(150, "lb"),
  13930. name: "Front",
  13931. image: {
  13932. source: "./media/characters/elyssia/front.svg",
  13933. extra: 2201 / 2035,
  13934. bottom: 0.05
  13935. }
  13936. },
  13937. frontClothed: {
  13938. height: math.unit(6, "feet"),
  13939. weight: math.unit(150, "lb"),
  13940. name: "Front (Clothed)",
  13941. image: {
  13942. source: "./media/characters/elyssia/front-clothed.svg",
  13943. extra: 2201 / 2035,
  13944. bottom: 0.05
  13945. }
  13946. },
  13947. back: {
  13948. height: math.unit(6, "feet"),
  13949. weight: math.unit(150, "lb"),
  13950. name: "Back",
  13951. image: {
  13952. source: "./media/characters/elyssia/back.svg",
  13953. extra: 2201 / 2035,
  13954. bottom: 0.013
  13955. }
  13956. },
  13957. },
  13958. [
  13959. {
  13960. name: "Smaller",
  13961. height: math.unit(150, "feet")
  13962. },
  13963. {
  13964. name: "Standard",
  13965. height: math.unit(1400, "feet"),
  13966. default: true
  13967. },
  13968. {
  13969. name: "Distracted",
  13970. height: math.unit(15000, "feet")
  13971. },
  13972. ]
  13973. ))
  13974. characterMakers.push(() => makeCharacter(
  13975. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13976. {
  13977. front: {
  13978. height: math.unit(7 + 4/12, "feet"),
  13979. weight: math.unit(690, "lb"),
  13980. name: "Front",
  13981. image: {
  13982. source: "./media/characters/geno-maxwell/front.svg",
  13983. extra: 984/856,
  13984. bottom: 87/1071
  13985. }
  13986. },
  13987. back: {
  13988. height: math.unit(7 + 4/12, "feet"),
  13989. weight: math.unit(690, "lb"),
  13990. name: "Back",
  13991. image: {
  13992. source: "./media/characters/geno-maxwell/back.svg",
  13993. extra: 981/854,
  13994. bottom: 57/1038
  13995. }
  13996. },
  13997. frontCostume: {
  13998. height: math.unit(7 + 4/12, "feet"),
  13999. weight: math.unit(690, "lb"),
  14000. name: "Front (Costume)",
  14001. image: {
  14002. source: "./media/characters/geno-maxwell/front-costume.svg",
  14003. extra: 984/856,
  14004. bottom: 87/1071
  14005. }
  14006. },
  14007. backcostume: {
  14008. height: math.unit(7 + 4/12, "feet"),
  14009. weight: math.unit(690, "lb"),
  14010. name: "Back (Costume)",
  14011. image: {
  14012. source: "./media/characters/geno-maxwell/back-costume.svg",
  14013. extra: 981/854,
  14014. bottom: 57/1038
  14015. }
  14016. },
  14017. },
  14018. [
  14019. {
  14020. name: "Micro",
  14021. height: math.unit(3, "inches")
  14022. },
  14023. {
  14024. name: "Normal",
  14025. height: math.unit(7 + 4 / 12, "feet"),
  14026. default: true
  14027. },
  14028. {
  14029. name: "Macro",
  14030. height: math.unit(220, "feet")
  14031. },
  14032. {
  14033. name: "Megamacro",
  14034. height: math.unit(11, "miles")
  14035. },
  14036. ]
  14037. ))
  14038. characterMakers.push(() => makeCharacter(
  14039. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14040. {
  14041. front: {
  14042. height: math.unit(7 + 4/12, "feet"),
  14043. weight: math.unit(750, "lb"),
  14044. name: "Front",
  14045. image: {
  14046. source: "./media/characters/regena-maxwell/front.svg",
  14047. extra: 984/856,
  14048. bottom: 87/1071
  14049. }
  14050. },
  14051. back: {
  14052. height: math.unit(7 + 4/12, "feet"),
  14053. weight: math.unit(750, "lb"),
  14054. name: "Back",
  14055. image: {
  14056. source: "./media/characters/regena-maxwell/back.svg",
  14057. extra: 981/854,
  14058. bottom: 57/1038
  14059. }
  14060. },
  14061. frontCostume: {
  14062. height: math.unit(7 + 4/12, "feet"),
  14063. weight: math.unit(750, "lb"),
  14064. name: "Front (Costume)",
  14065. image: {
  14066. source: "./media/characters/regena-maxwell/front-costume.svg",
  14067. extra: 984/856,
  14068. bottom: 87/1071
  14069. }
  14070. },
  14071. backcostume: {
  14072. height: math.unit(7 + 4/12, "feet"),
  14073. weight: math.unit(750, "lb"),
  14074. name: "Back (Costume)",
  14075. image: {
  14076. source: "./media/characters/regena-maxwell/back-costume.svg",
  14077. extra: 981/854,
  14078. bottom: 57/1038
  14079. }
  14080. },
  14081. },
  14082. [
  14083. {
  14084. name: "Normal",
  14085. height: math.unit(7 + 4 / 12, "feet"),
  14086. default: true
  14087. },
  14088. {
  14089. name: "Macro",
  14090. height: math.unit(220, "feet")
  14091. },
  14092. {
  14093. name: "Megamacro",
  14094. height: math.unit(11, "miles")
  14095. },
  14096. ]
  14097. ))
  14098. characterMakers.push(() => makeCharacter(
  14099. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14100. {
  14101. front: {
  14102. height: math.unit(6, "feet"),
  14103. weight: math.unit(150, "lb"),
  14104. name: "Front",
  14105. image: {
  14106. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14107. extra: 860 / 690,
  14108. bottom: 0.03
  14109. }
  14110. },
  14111. },
  14112. [
  14113. {
  14114. name: "Normal",
  14115. height: math.unit(1.7, "meters"),
  14116. default: true
  14117. },
  14118. ]
  14119. ))
  14120. characterMakers.push(() => makeCharacter(
  14121. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14122. {
  14123. front: {
  14124. height: math.unit(6, "feet"),
  14125. weight: math.unit(150, "lb"),
  14126. name: "Front",
  14127. image: {
  14128. source: "./media/characters/quilly/front.svg",
  14129. extra: 890 / 776
  14130. }
  14131. },
  14132. },
  14133. [
  14134. {
  14135. name: "Gigamacro",
  14136. height: math.unit(404090, "miles"),
  14137. default: true
  14138. },
  14139. ]
  14140. ))
  14141. characterMakers.push(() => makeCharacter(
  14142. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14143. {
  14144. front: {
  14145. height: math.unit(7 + 8 / 12, "feet"),
  14146. weight: math.unit(350, "lb"),
  14147. name: "Front",
  14148. image: {
  14149. source: "./media/characters/tempest/front.svg",
  14150. extra: 1175 / 1086,
  14151. bottom: 0.02
  14152. }
  14153. },
  14154. },
  14155. [
  14156. {
  14157. name: "Normal",
  14158. height: math.unit(7 + 8 / 12, "feet"),
  14159. default: true
  14160. },
  14161. ]
  14162. ))
  14163. characterMakers.push(() => makeCharacter(
  14164. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14165. {
  14166. side: {
  14167. height: math.unit(4 + 5 / 12, "feet"),
  14168. weight: math.unit(80, "lb"),
  14169. name: "Side",
  14170. image: {
  14171. source: "./media/characters/rodger/side.svg",
  14172. extra: 1235 / 1118
  14173. }
  14174. },
  14175. },
  14176. [
  14177. {
  14178. name: "Micro",
  14179. height: math.unit(1, "inch")
  14180. },
  14181. {
  14182. name: "Normal",
  14183. height: math.unit(4 + 5 / 12, "feet"),
  14184. default: true
  14185. },
  14186. {
  14187. name: "Macro",
  14188. height: math.unit(120, "feet")
  14189. },
  14190. ]
  14191. ))
  14192. characterMakers.push(() => makeCharacter(
  14193. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14194. {
  14195. front: {
  14196. height: math.unit(6, "feet"),
  14197. weight: math.unit(150, "lb"),
  14198. name: "Front",
  14199. image: {
  14200. source: "./media/characters/danyel/front.svg",
  14201. extra: 1185 / 1123,
  14202. bottom: 0.05
  14203. }
  14204. },
  14205. },
  14206. [
  14207. {
  14208. name: "Shrunken",
  14209. height: math.unit(0.5, "mm")
  14210. },
  14211. {
  14212. name: "Micro",
  14213. height: math.unit(1, "mm"),
  14214. default: true
  14215. },
  14216. {
  14217. name: "Upsized",
  14218. height: math.unit(5 + 5 / 12, "feet")
  14219. },
  14220. ]
  14221. ))
  14222. characterMakers.push(() => makeCharacter(
  14223. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14224. {
  14225. front: {
  14226. height: math.unit(5 + 6 / 12, "feet"),
  14227. weight: math.unit(200, "lb"),
  14228. name: "Front",
  14229. image: {
  14230. source: "./media/characters/vivian-bijoux/front.svg",
  14231. extra: 1217/1209,
  14232. bottom: 76/1293
  14233. }
  14234. },
  14235. back: {
  14236. height: math.unit(5 + 6 / 12, "feet"),
  14237. weight: math.unit(200, "lb"),
  14238. name: "Back",
  14239. image: {
  14240. source: "./media/characters/vivian-bijoux/back.svg",
  14241. extra: 1214/1208,
  14242. bottom: 51/1265
  14243. }
  14244. },
  14245. dressed: {
  14246. height: math.unit(5 + 6 / 12, "feet"),
  14247. weight: math.unit(200, "lb"),
  14248. name: "Dressed",
  14249. image: {
  14250. source: "./media/characters/vivian-bijoux/dressed.svg",
  14251. extra: 1217/1209,
  14252. bottom: 76/1293
  14253. }
  14254. },
  14255. },
  14256. [
  14257. {
  14258. name: "Normal",
  14259. height: math.unit(5 + 6 / 12, "feet"),
  14260. default: true
  14261. },
  14262. {
  14263. name: "Bad Dream",
  14264. height: math.unit(500, "feet")
  14265. },
  14266. {
  14267. name: "Nightmare",
  14268. height: math.unit(500, "miles")
  14269. },
  14270. ]
  14271. ))
  14272. characterMakers.push(() => makeCharacter(
  14273. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14274. {
  14275. front: {
  14276. height: math.unit(6 + 1 / 12, "feet"),
  14277. weight: math.unit(260, "lb"),
  14278. name: "Front",
  14279. image: {
  14280. source: "./media/characters/zeta/front.svg",
  14281. extra: 1968 / 1889,
  14282. bottom: 0.06
  14283. }
  14284. },
  14285. back: {
  14286. height: math.unit(6 + 1 / 12, "feet"),
  14287. weight: math.unit(260, "lb"),
  14288. name: "Back",
  14289. image: {
  14290. source: "./media/characters/zeta/back.svg",
  14291. extra: 1944 / 1858,
  14292. bottom: 0.03
  14293. }
  14294. },
  14295. hand: {
  14296. height: math.unit(1.112, "feet"),
  14297. name: "Hand",
  14298. image: {
  14299. source: "./media/characters/zeta/hand.svg"
  14300. }
  14301. },
  14302. foot: {
  14303. height: math.unit(1.48, "feet"),
  14304. name: "Foot",
  14305. image: {
  14306. source: "./media/characters/zeta/foot.svg"
  14307. }
  14308. },
  14309. },
  14310. [
  14311. {
  14312. name: "Micro",
  14313. height: math.unit(6, "inches")
  14314. },
  14315. {
  14316. name: "Normal",
  14317. height: math.unit(6 + 1 / 12, "feet"),
  14318. default: true
  14319. },
  14320. {
  14321. name: "Macro",
  14322. height: math.unit(20, "feet")
  14323. },
  14324. ]
  14325. ))
  14326. characterMakers.push(() => makeCharacter(
  14327. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14328. {
  14329. front: {
  14330. height: math.unit(6, "feet"),
  14331. weight: math.unit(150, "lb"),
  14332. name: "Front",
  14333. image: {
  14334. source: "./media/characters/jamie-larsen/front.svg",
  14335. extra: 962 / 933,
  14336. bottom: 0.02
  14337. }
  14338. },
  14339. back: {
  14340. height: math.unit(6, "feet"),
  14341. weight: math.unit(150, "lb"),
  14342. name: "Back",
  14343. image: {
  14344. source: "./media/characters/jamie-larsen/back.svg",
  14345. extra: 997 / 946
  14346. }
  14347. },
  14348. },
  14349. [
  14350. {
  14351. name: "Macro",
  14352. height: math.unit(28 + 7 / 12, "feet"),
  14353. default: true
  14354. },
  14355. {
  14356. name: "Macro+",
  14357. height: math.unit(180, "feet")
  14358. },
  14359. {
  14360. name: "Megamacro",
  14361. height: math.unit(10, "miles")
  14362. },
  14363. {
  14364. name: "Gigamacro",
  14365. height: math.unit(200000, "miles")
  14366. },
  14367. ]
  14368. ))
  14369. characterMakers.push(() => makeCharacter(
  14370. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14371. {
  14372. front: {
  14373. height: math.unit(6, "feet"),
  14374. weight: math.unit(120, "lb"),
  14375. name: "Front",
  14376. image: {
  14377. source: "./media/characters/vance/front.svg",
  14378. extra: 1980 / 1890,
  14379. bottom: 0.09
  14380. }
  14381. },
  14382. back: {
  14383. height: math.unit(6, "feet"),
  14384. weight: math.unit(120, "lb"),
  14385. name: "Back",
  14386. image: {
  14387. source: "./media/characters/vance/back.svg",
  14388. extra: 2081 / 1994,
  14389. bottom: 0.014
  14390. }
  14391. },
  14392. hand: {
  14393. height: math.unit(0.88, "feet"),
  14394. name: "Hand",
  14395. image: {
  14396. source: "./media/characters/vance/hand.svg"
  14397. }
  14398. },
  14399. foot: {
  14400. height: math.unit(0.64, "feet"),
  14401. name: "Foot",
  14402. image: {
  14403. source: "./media/characters/vance/foot.svg"
  14404. }
  14405. },
  14406. },
  14407. [
  14408. {
  14409. name: "Small",
  14410. height: math.unit(90, "feet"),
  14411. default: true
  14412. },
  14413. {
  14414. name: "Macro",
  14415. height: math.unit(100, "meters")
  14416. },
  14417. {
  14418. name: "Megamacro",
  14419. height: math.unit(15, "miles")
  14420. },
  14421. ]
  14422. ))
  14423. characterMakers.push(() => makeCharacter(
  14424. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14425. {
  14426. front: {
  14427. height: math.unit(6, "feet"),
  14428. weight: math.unit(180, "lb"),
  14429. name: "Front",
  14430. image: {
  14431. source: "./media/characters/xochitl/front.svg",
  14432. extra: 2297 / 2261,
  14433. bottom: 0.065
  14434. }
  14435. },
  14436. back: {
  14437. height: math.unit(6, "feet"),
  14438. weight: math.unit(180, "lb"),
  14439. name: "Back",
  14440. image: {
  14441. source: "./media/characters/xochitl/back.svg",
  14442. extra: 2386 / 2354,
  14443. bottom: 0.01
  14444. }
  14445. },
  14446. foot: {
  14447. height: math.unit(6 / 5 * 1.15, "feet"),
  14448. weight: math.unit(150, "lb"),
  14449. name: "Foot",
  14450. image: {
  14451. source: "./media/characters/xochitl/foot.svg"
  14452. }
  14453. },
  14454. },
  14455. [
  14456. {
  14457. name: "Macro",
  14458. height: math.unit(80, "feet")
  14459. },
  14460. {
  14461. name: "Macro+",
  14462. height: math.unit(400, "feet"),
  14463. default: true
  14464. },
  14465. {
  14466. name: "Gigamacro",
  14467. height: math.unit(80000, "miles")
  14468. },
  14469. {
  14470. name: "Gigamacro+",
  14471. height: math.unit(400000, "miles")
  14472. },
  14473. {
  14474. name: "Teramacro",
  14475. height: math.unit(300, "AU")
  14476. },
  14477. ]
  14478. ))
  14479. characterMakers.push(() => makeCharacter(
  14480. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14481. {
  14482. front: {
  14483. height: math.unit(6, "feet"),
  14484. weight: math.unit(150, "lb"),
  14485. name: "Front",
  14486. image: {
  14487. source: "./media/characters/vincent/front.svg",
  14488. extra: 1130 / 1080,
  14489. bottom: 0.055
  14490. }
  14491. },
  14492. beak: {
  14493. height: math.unit(6 * 0.1, "feet"),
  14494. name: "Beak",
  14495. image: {
  14496. source: "./media/characters/vincent/beak.svg"
  14497. }
  14498. },
  14499. hand: {
  14500. height: math.unit(6 * 0.85, "feet"),
  14501. weight: math.unit(150, "lb"),
  14502. name: "Hand",
  14503. image: {
  14504. source: "./media/characters/vincent/hand.svg"
  14505. }
  14506. },
  14507. foot: {
  14508. height: math.unit(6 * 0.19, "feet"),
  14509. weight: math.unit(150, "lb"),
  14510. name: "Foot",
  14511. image: {
  14512. source: "./media/characters/vincent/foot.svg"
  14513. }
  14514. },
  14515. },
  14516. [
  14517. {
  14518. name: "Base",
  14519. height: math.unit(6 + 5 / 12, "feet"),
  14520. default: true
  14521. },
  14522. {
  14523. name: "Macro",
  14524. height: math.unit(300, "feet")
  14525. },
  14526. {
  14527. name: "Megamacro",
  14528. height: math.unit(2, "miles")
  14529. },
  14530. {
  14531. name: "Gigamacro",
  14532. height: math.unit(1000, "miles")
  14533. },
  14534. ]
  14535. ))
  14536. characterMakers.push(() => makeCharacter(
  14537. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14538. {
  14539. front: {
  14540. height: math.unit(2, "meters"),
  14541. weight: math.unit(500, "kg"),
  14542. name: "Front",
  14543. image: {
  14544. source: "./media/characters/coatl/front.svg",
  14545. extra: 3948 / 3500,
  14546. bottom: 0.082
  14547. }
  14548. },
  14549. },
  14550. [
  14551. {
  14552. name: "Normal",
  14553. height: math.unit(4, "meters")
  14554. },
  14555. {
  14556. name: "Macro",
  14557. height: math.unit(100, "meters"),
  14558. default: true
  14559. },
  14560. {
  14561. name: "Macro+",
  14562. height: math.unit(300, "meters")
  14563. },
  14564. {
  14565. name: "Megamacro",
  14566. height: math.unit(3, "gigameters")
  14567. },
  14568. {
  14569. name: "Megamacro+",
  14570. height: math.unit(300, "terameters")
  14571. },
  14572. {
  14573. name: "Megamacro++",
  14574. height: math.unit(3, "lightyears")
  14575. },
  14576. ]
  14577. ))
  14578. characterMakers.push(() => makeCharacter(
  14579. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14580. {
  14581. front: {
  14582. height: math.unit(6, "feet"),
  14583. weight: math.unit(50, "kg"),
  14584. name: "front",
  14585. image: {
  14586. source: "./media/characters/shiroryu/front.svg",
  14587. extra: 1990 / 1935
  14588. }
  14589. },
  14590. },
  14591. [
  14592. {
  14593. name: "Mortal Mingling",
  14594. height: math.unit(3, "meters")
  14595. },
  14596. {
  14597. name: "Kaiju-ish",
  14598. height: math.unit(250, "meters")
  14599. },
  14600. {
  14601. name: "Somewhat Godly",
  14602. height: math.unit(400, "km"),
  14603. default: true
  14604. },
  14605. {
  14606. name: "Planetary",
  14607. height: math.unit(300, "megameters")
  14608. },
  14609. {
  14610. name: "Galaxy-dwarfing",
  14611. height: math.unit(450, "kiloparsecs")
  14612. },
  14613. {
  14614. name: "Universe Eater",
  14615. height: math.unit(150, "gigaparsecs")
  14616. },
  14617. {
  14618. name: "Almost Immeasurable",
  14619. height: math.unit(1.3e266, "yottaparsecs")
  14620. },
  14621. ]
  14622. ))
  14623. characterMakers.push(() => makeCharacter(
  14624. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14625. {
  14626. front: {
  14627. height: math.unit(6, "feet"),
  14628. weight: math.unit(150, "lb"),
  14629. name: "Front",
  14630. image: {
  14631. source: "./media/characters/umeko/front.svg",
  14632. extra: 1,
  14633. bottom: 0.019
  14634. }
  14635. },
  14636. frontArmored: {
  14637. height: math.unit(6, "feet"),
  14638. weight: math.unit(150, "lb"),
  14639. name: "Front (Armored)",
  14640. image: {
  14641. source: "./media/characters/umeko/front-armored.svg",
  14642. extra: 1,
  14643. bottom: 0.021
  14644. }
  14645. },
  14646. },
  14647. [
  14648. {
  14649. name: "Macro",
  14650. height: math.unit(220, "feet"),
  14651. default: true
  14652. },
  14653. {
  14654. name: "Guardian Dragon",
  14655. height: math.unit(50, "miles")
  14656. },
  14657. {
  14658. name: "Cosmic",
  14659. height: math.unit(800000, "miles")
  14660. },
  14661. ]
  14662. ))
  14663. characterMakers.push(() => makeCharacter(
  14664. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14665. {
  14666. front: {
  14667. height: math.unit(6, "feet"),
  14668. weight: math.unit(150, "lb"),
  14669. name: "Front",
  14670. image: {
  14671. source: "./media/characters/cassidy/front.svg",
  14672. extra: 810/808,
  14673. bottom: 41/851
  14674. }
  14675. },
  14676. },
  14677. [
  14678. {
  14679. name: "Canon Height",
  14680. height: math.unit(120, "feet"),
  14681. default: true
  14682. },
  14683. {
  14684. name: "Macro+",
  14685. height: math.unit(400, "feet")
  14686. },
  14687. {
  14688. name: "Macro++",
  14689. height: math.unit(4000, "feet")
  14690. },
  14691. {
  14692. name: "Megamacro",
  14693. height: math.unit(3, "miles")
  14694. },
  14695. ]
  14696. ))
  14697. characterMakers.push(() => makeCharacter(
  14698. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14699. {
  14700. front: {
  14701. height: math.unit(6, "feet"),
  14702. weight: math.unit(150, "lb"),
  14703. name: "Front",
  14704. image: {
  14705. source: "./media/characters/isaac/front.svg",
  14706. extra: 896 / 815,
  14707. bottom: 0.11
  14708. }
  14709. },
  14710. },
  14711. [
  14712. {
  14713. name: "Human Size",
  14714. height: math.unit(8, "feet"),
  14715. default: true
  14716. },
  14717. {
  14718. name: "Macro",
  14719. height: math.unit(400, "feet")
  14720. },
  14721. {
  14722. name: "Megamacro",
  14723. height: math.unit(50, "miles")
  14724. },
  14725. {
  14726. name: "Canon Height",
  14727. height: math.unit(200, "AU")
  14728. },
  14729. ]
  14730. ))
  14731. characterMakers.push(() => makeCharacter(
  14732. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14733. {
  14734. front: {
  14735. height: math.unit(6, "feet"),
  14736. weight: math.unit(72, "kg"),
  14737. name: "Front",
  14738. image: {
  14739. source: "./media/characters/sleekit/front.svg",
  14740. extra: 4693 / 4487,
  14741. bottom: 0.012
  14742. }
  14743. },
  14744. },
  14745. [
  14746. {
  14747. name: "Minimum Height",
  14748. height: math.unit(10, "meters")
  14749. },
  14750. {
  14751. name: "Smaller",
  14752. height: math.unit(25, "meters")
  14753. },
  14754. {
  14755. name: "Larger",
  14756. height: math.unit(38, "meters"),
  14757. default: true
  14758. },
  14759. {
  14760. name: "Maximum height",
  14761. height: math.unit(100, "meters")
  14762. },
  14763. ]
  14764. ))
  14765. characterMakers.push(() => makeCharacter(
  14766. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14767. {
  14768. front: {
  14769. height: math.unit(6, "feet"),
  14770. weight: math.unit(150, "lb"),
  14771. name: "Front",
  14772. image: {
  14773. source: "./media/characters/nillia/front.svg",
  14774. extra: 2195 / 2037,
  14775. bottom: 0.005
  14776. }
  14777. },
  14778. back: {
  14779. height: math.unit(6, "feet"),
  14780. weight: math.unit(150, "lb"),
  14781. name: "Back",
  14782. image: {
  14783. source: "./media/characters/nillia/back.svg",
  14784. extra: 2195 / 2037,
  14785. bottom: 0.005
  14786. }
  14787. },
  14788. },
  14789. [
  14790. {
  14791. name: "Canon Height",
  14792. height: math.unit(489, "feet"),
  14793. default: true
  14794. }
  14795. ]
  14796. ))
  14797. characterMakers.push(() => makeCharacter(
  14798. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14799. {
  14800. front: {
  14801. height: math.unit(6, "feet"),
  14802. weight: math.unit(150, "lb"),
  14803. name: "Front",
  14804. image: {
  14805. source: "./media/characters/mesmyriza/front.svg",
  14806. extra: 2067 / 1784,
  14807. bottom: 0.035
  14808. }
  14809. },
  14810. foot: {
  14811. height: math.unit(6 / (250 / 35), "feet"),
  14812. name: "Foot",
  14813. image: {
  14814. source: "./media/characters/mesmyriza/foot.svg"
  14815. }
  14816. },
  14817. },
  14818. [
  14819. {
  14820. name: "Macro",
  14821. height: math.unit(457, "meters"),
  14822. default: true
  14823. },
  14824. {
  14825. name: "Megamacro",
  14826. height: math.unit(8, "megameters")
  14827. },
  14828. ]
  14829. ))
  14830. characterMakers.push(() => makeCharacter(
  14831. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14832. {
  14833. front: {
  14834. height: math.unit(6, "feet"),
  14835. weight: math.unit(250, "lb"),
  14836. name: "Front",
  14837. image: {
  14838. source: "./media/characters/saudade/front.svg",
  14839. extra: 1172 / 1139,
  14840. bottom: 0.035
  14841. }
  14842. },
  14843. },
  14844. [
  14845. {
  14846. name: "Micro",
  14847. height: math.unit(3, "inches")
  14848. },
  14849. {
  14850. name: "Normal",
  14851. height: math.unit(6, "feet"),
  14852. default: true
  14853. },
  14854. {
  14855. name: "Macro",
  14856. height: math.unit(50, "feet")
  14857. },
  14858. {
  14859. name: "Megamacro",
  14860. height: math.unit(2800, "feet")
  14861. },
  14862. ]
  14863. ))
  14864. characterMakers.push(() => makeCharacter(
  14865. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14866. {
  14867. front: {
  14868. height: math.unit(5 + 4 / 12, "feet"),
  14869. weight: math.unit(100, "lb"),
  14870. name: "Front",
  14871. image: {
  14872. source: "./media/characters/keireer/front.svg",
  14873. extra: 716 / 666,
  14874. bottom: 0.05
  14875. }
  14876. },
  14877. },
  14878. [
  14879. {
  14880. name: "Normal",
  14881. height: math.unit(5 + 4 / 12, "feet"),
  14882. default: true
  14883. },
  14884. ]
  14885. ))
  14886. characterMakers.push(() => makeCharacter(
  14887. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14888. {
  14889. front: {
  14890. height: math.unit(6, "feet"),
  14891. weight: math.unit(90, "kg"),
  14892. name: "Front",
  14893. image: {
  14894. source: "./media/characters/mirja/front.svg",
  14895. extra: 1789 / 1683,
  14896. bottom: 0.05
  14897. }
  14898. },
  14899. frontDressed: {
  14900. height: math.unit(6, "feet"),
  14901. weight: math.unit(90, "lb"),
  14902. name: "Front (Dressed)",
  14903. image: {
  14904. source: "./media/characters/mirja/front-dressed.svg",
  14905. extra: 1789 / 1683,
  14906. bottom: 0.05
  14907. }
  14908. },
  14909. back: {
  14910. height: math.unit(6, "feet"),
  14911. weight: math.unit(90, "lb"),
  14912. name: "Back",
  14913. image: {
  14914. source: "./media/characters/mirja/back.svg",
  14915. extra: 953 / 917,
  14916. bottom: 0.017
  14917. }
  14918. },
  14919. },
  14920. [
  14921. {
  14922. name: "\"Incognito\"",
  14923. height: math.unit(3, "meters")
  14924. },
  14925. {
  14926. name: "Strolling Size",
  14927. height: math.unit(15, "km")
  14928. },
  14929. {
  14930. name: "Larger Strolling Size",
  14931. height: math.unit(400, "km")
  14932. },
  14933. {
  14934. name: "Preferred Size",
  14935. height: math.unit(5000, "km")
  14936. },
  14937. {
  14938. name: "True Size",
  14939. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14940. default: true
  14941. },
  14942. ]
  14943. ))
  14944. characterMakers.push(() => makeCharacter(
  14945. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14946. {
  14947. front: {
  14948. height: math.unit(15, "feet"),
  14949. weight: math.unit(880, "kg"),
  14950. name: "Front",
  14951. image: {
  14952. source: "./media/characters/nightraver/front.svg",
  14953. extra: 2444 / 2160,
  14954. bottom: 0.027
  14955. }
  14956. },
  14957. back: {
  14958. height: math.unit(15, "feet"),
  14959. weight: math.unit(880, "kg"),
  14960. name: "Back",
  14961. image: {
  14962. source: "./media/characters/nightraver/back.svg",
  14963. extra: 2309 / 2180,
  14964. bottom: 0.005
  14965. }
  14966. },
  14967. sole: {
  14968. height: math.unit(2.878, "feet"),
  14969. name: "Sole",
  14970. image: {
  14971. source: "./media/characters/nightraver/sole.svg"
  14972. }
  14973. },
  14974. foot: {
  14975. height: math.unit(2.285, "feet"),
  14976. name: "Foot",
  14977. image: {
  14978. source: "./media/characters/nightraver/foot.svg"
  14979. }
  14980. },
  14981. maw: {
  14982. height: math.unit(2.67, "feet"),
  14983. name: "Maw",
  14984. image: {
  14985. source: "./media/characters/nightraver/maw.svg"
  14986. }
  14987. },
  14988. },
  14989. [
  14990. {
  14991. name: "Micro",
  14992. height: math.unit(1, "cm")
  14993. },
  14994. {
  14995. name: "Normal",
  14996. height: math.unit(15, "feet"),
  14997. default: true
  14998. },
  14999. {
  15000. name: "Macro",
  15001. height: math.unit(300, "feet")
  15002. },
  15003. {
  15004. name: "Megamacro",
  15005. height: math.unit(300, "miles")
  15006. },
  15007. {
  15008. name: "Gigamacro",
  15009. height: math.unit(10000, "miles")
  15010. },
  15011. ]
  15012. ))
  15013. characterMakers.push(() => makeCharacter(
  15014. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15015. {
  15016. side: {
  15017. height: math.unit(2, "inches"),
  15018. weight: math.unit(5, "grams"),
  15019. name: "Side",
  15020. image: {
  15021. source: "./media/characters/arc/side.svg"
  15022. }
  15023. },
  15024. },
  15025. [
  15026. {
  15027. name: "Micro",
  15028. height: math.unit(2, "inches"),
  15029. default: true
  15030. },
  15031. ]
  15032. ))
  15033. characterMakers.push(() => makeCharacter(
  15034. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15035. {
  15036. front: {
  15037. height: math.unit(1.1938, "meters"),
  15038. weight: math.unit(54, "kg"),
  15039. name: "Front",
  15040. image: {
  15041. source: "./media/characters/nebula-shahar/front.svg",
  15042. extra: 1642 / 1436,
  15043. bottom: 0.06
  15044. }
  15045. },
  15046. },
  15047. [
  15048. {
  15049. name: "Megamicro",
  15050. height: math.unit(0.3, "mm")
  15051. },
  15052. {
  15053. name: "Micro",
  15054. height: math.unit(3, "cm")
  15055. },
  15056. {
  15057. name: "Normal",
  15058. height: math.unit(138, "cm"),
  15059. default: true
  15060. },
  15061. {
  15062. name: "Macro",
  15063. height: math.unit(30, "m")
  15064. },
  15065. ]
  15066. ))
  15067. characterMakers.push(() => makeCharacter(
  15068. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15069. {
  15070. front: {
  15071. height: math.unit(5.24, "feet"),
  15072. weight: math.unit(150, "lb"),
  15073. name: "Front",
  15074. image: {
  15075. source: "./media/characters/shayla/front.svg",
  15076. extra: 1512 / 1414,
  15077. bottom: 0.01
  15078. }
  15079. },
  15080. back: {
  15081. height: math.unit(5.24, "feet"),
  15082. weight: math.unit(150, "lb"),
  15083. name: "Back",
  15084. image: {
  15085. source: "./media/characters/shayla/back.svg",
  15086. extra: 1512 / 1414
  15087. }
  15088. },
  15089. hand: {
  15090. height: math.unit(0.7781496062992126, "feet"),
  15091. name: "Hand",
  15092. image: {
  15093. source: "./media/characters/shayla/hand.svg"
  15094. }
  15095. },
  15096. foot: {
  15097. height: math.unit(1.4206036745406823, "feet"),
  15098. name: "Foot",
  15099. image: {
  15100. source: "./media/characters/shayla/foot.svg"
  15101. }
  15102. },
  15103. },
  15104. [
  15105. {
  15106. name: "Micro",
  15107. height: math.unit(0.32, "feet")
  15108. },
  15109. {
  15110. name: "Normal",
  15111. height: math.unit(5.24, "feet"),
  15112. default: true
  15113. },
  15114. {
  15115. name: "Macro",
  15116. height: math.unit(492.12, "feet")
  15117. },
  15118. {
  15119. name: "Megamacro",
  15120. height: math.unit(186.41, "miles")
  15121. },
  15122. ]
  15123. ))
  15124. characterMakers.push(() => makeCharacter(
  15125. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15126. {
  15127. front: {
  15128. height: math.unit(2.2, "m"),
  15129. weight: math.unit(120, "kg"),
  15130. name: "Front",
  15131. image: {
  15132. source: "./media/characters/pia-jr/front.svg",
  15133. extra: 1000 / 970,
  15134. bottom: 0.035
  15135. }
  15136. },
  15137. hand: {
  15138. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15139. name: "Hand",
  15140. image: {
  15141. source: "./media/characters/pia-jr/hand.svg"
  15142. }
  15143. },
  15144. paw: {
  15145. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15146. name: "Paw",
  15147. image: {
  15148. source: "./media/characters/pia-jr/paw.svg"
  15149. }
  15150. },
  15151. },
  15152. [
  15153. {
  15154. name: "Micro",
  15155. height: math.unit(1.2, "cm")
  15156. },
  15157. {
  15158. name: "Normal",
  15159. height: math.unit(2.2, "m"),
  15160. default: true
  15161. },
  15162. {
  15163. name: "Macro",
  15164. height: math.unit(180, "m")
  15165. },
  15166. {
  15167. name: "Megamacro",
  15168. height: math.unit(420, "km")
  15169. },
  15170. ]
  15171. ))
  15172. characterMakers.push(() => makeCharacter(
  15173. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15174. {
  15175. front: {
  15176. height: math.unit(2, "m"),
  15177. weight: math.unit(115, "kg"),
  15178. name: "Front",
  15179. image: {
  15180. source: "./media/characters/pia-sr/front.svg",
  15181. extra: 760 / 730,
  15182. bottom: 0.015
  15183. }
  15184. },
  15185. back: {
  15186. height: math.unit(2, "m"),
  15187. weight: math.unit(115, "kg"),
  15188. name: "Back",
  15189. image: {
  15190. source: "./media/characters/pia-sr/back.svg",
  15191. extra: 760 / 730,
  15192. bottom: 0.01
  15193. }
  15194. },
  15195. hand: {
  15196. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15197. name: "Hand",
  15198. image: {
  15199. source: "./media/characters/pia-sr/hand.svg"
  15200. }
  15201. },
  15202. foot: {
  15203. height: math.unit(1.83, "feet"),
  15204. name: "Foot",
  15205. image: {
  15206. source: "./media/characters/pia-sr/foot.svg"
  15207. }
  15208. },
  15209. },
  15210. [
  15211. {
  15212. name: "Micro",
  15213. height: math.unit(88, "mm")
  15214. },
  15215. {
  15216. name: "Normal",
  15217. height: math.unit(2, "m"),
  15218. default: true
  15219. },
  15220. {
  15221. name: "Macro",
  15222. height: math.unit(200, "m")
  15223. },
  15224. {
  15225. name: "Megamacro",
  15226. height: math.unit(420, "km")
  15227. },
  15228. ]
  15229. ))
  15230. characterMakers.push(() => makeCharacter(
  15231. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15232. {
  15233. front: {
  15234. height: math.unit(8 + 2 / 12, "feet"),
  15235. weight: math.unit(300, "lb"),
  15236. name: "Front",
  15237. image: {
  15238. source: "./media/characters/kibibyte/front.svg",
  15239. extra: 2221 / 2098,
  15240. bottom: 0.04
  15241. }
  15242. },
  15243. },
  15244. [
  15245. {
  15246. name: "Normal",
  15247. height: math.unit(8 + 2 / 12, "feet"),
  15248. default: true
  15249. },
  15250. {
  15251. name: "Socialable Macro",
  15252. height: math.unit(50, "feet")
  15253. },
  15254. {
  15255. name: "Macro",
  15256. height: math.unit(300, "feet")
  15257. },
  15258. {
  15259. name: "Megamacro",
  15260. height: math.unit(500, "miles")
  15261. },
  15262. ]
  15263. ))
  15264. characterMakers.push(() => makeCharacter(
  15265. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15266. {
  15267. front: {
  15268. height: math.unit(6, "feet"),
  15269. weight: math.unit(150, "lb"),
  15270. name: "Front",
  15271. image: {
  15272. source: "./media/characters/felix/front.svg",
  15273. extra: 762 / 722,
  15274. bottom: 0.02
  15275. }
  15276. },
  15277. frontClothed: {
  15278. height: math.unit(6, "feet"),
  15279. weight: math.unit(150, "lb"),
  15280. name: "Front (Clothed)",
  15281. image: {
  15282. source: "./media/characters/felix/front-clothed.svg",
  15283. extra: 762 / 722,
  15284. bottom: 0.02
  15285. }
  15286. },
  15287. },
  15288. [
  15289. {
  15290. name: "Normal",
  15291. height: math.unit(6 + 8 / 12, "feet"),
  15292. default: true
  15293. },
  15294. {
  15295. name: "Macro",
  15296. height: math.unit(2600, "feet")
  15297. },
  15298. {
  15299. name: "Megamacro",
  15300. height: math.unit(450, "miles")
  15301. },
  15302. ]
  15303. ))
  15304. characterMakers.push(() => makeCharacter(
  15305. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15306. {
  15307. front: {
  15308. height: math.unit(6 + 1 / 12, "feet"),
  15309. weight: math.unit(250, "lb"),
  15310. name: "Front",
  15311. image: {
  15312. source: "./media/characters/tobo/front.svg",
  15313. extra: 608 / 586,
  15314. bottom: 0.023
  15315. }
  15316. },
  15317. back: {
  15318. height: math.unit(6 + 1 / 12, "feet"),
  15319. weight: math.unit(250, "lb"),
  15320. name: "Back",
  15321. image: {
  15322. source: "./media/characters/tobo/back.svg",
  15323. extra: 608 / 586
  15324. }
  15325. },
  15326. },
  15327. [
  15328. {
  15329. name: "Nano",
  15330. height: math.unit(2, "nm")
  15331. },
  15332. {
  15333. name: "Megamicro",
  15334. height: math.unit(0.1, "mm")
  15335. },
  15336. {
  15337. name: "Micro",
  15338. height: math.unit(1, "inch"),
  15339. default: true
  15340. },
  15341. {
  15342. name: "Human-sized",
  15343. height: math.unit(6 + 1 / 12, "feet")
  15344. },
  15345. {
  15346. name: "Macro",
  15347. height: math.unit(250, "feet")
  15348. },
  15349. {
  15350. name: "Megamacro",
  15351. height: math.unit(75, "miles")
  15352. },
  15353. {
  15354. name: "Texas-sized",
  15355. height: math.unit(750, "miles")
  15356. },
  15357. {
  15358. name: "Teramacro",
  15359. height: math.unit(50000, "miles")
  15360. },
  15361. ]
  15362. ))
  15363. characterMakers.push(() => makeCharacter(
  15364. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15365. {
  15366. front: {
  15367. height: math.unit(6, "feet"),
  15368. weight: math.unit(269, "lb"),
  15369. name: "Front",
  15370. image: {
  15371. source: "./media/characters/danny-kapowsky/front.svg",
  15372. extra: 766 / 736,
  15373. bottom: 0.044
  15374. }
  15375. },
  15376. back: {
  15377. height: math.unit(6, "feet"),
  15378. weight: math.unit(269, "lb"),
  15379. name: "Back",
  15380. image: {
  15381. source: "./media/characters/danny-kapowsky/back.svg",
  15382. extra: 797 / 760,
  15383. bottom: 0.025
  15384. }
  15385. },
  15386. },
  15387. [
  15388. {
  15389. name: "Macro",
  15390. height: math.unit(150, "feet"),
  15391. default: true
  15392. },
  15393. {
  15394. name: "Macro+",
  15395. height: math.unit(200, "feet")
  15396. },
  15397. {
  15398. name: "Macro++",
  15399. height: math.unit(300, "feet")
  15400. },
  15401. {
  15402. name: "Macro+++",
  15403. height: math.unit(400, "feet")
  15404. },
  15405. ]
  15406. ))
  15407. characterMakers.push(() => makeCharacter(
  15408. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15409. {
  15410. side: {
  15411. height: math.unit(6, "feet"),
  15412. weight: math.unit(170, "lb"),
  15413. name: "Side",
  15414. image: {
  15415. source: "./media/characters/finn/side.svg",
  15416. extra: 1953 / 1807,
  15417. bottom: 0.057
  15418. }
  15419. },
  15420. },
  15421. [
  15422. {
  15423. name: "Megamacro",
  15424. height: math.unit(14445, "feet"),
  15425. default: true
  15426. },
  15427. ]
  15428. ))
  15429. characterMakers.push(() => makeCharacter(
  15430. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15431. {
  15432. front: {
  15433. height: math.unit(5 + 6 / 12, "feet"),
  15434. weight: math.unit(125, "lb"),
  15435. name: "Front",
  15436. image: {
  15437. source: "./media/characters/roy/front.svg",
  15438. extra: 1,
  15439. bottom: 0.11
  15440. }
  15441. },
  15442. },
  15443. [
  15444. {
  15445. name: "Micro",
  15446. height: math.unit(3, "inches"),
  15447. default: true
  15448. },
  15449. {
  15450. name: "Normal",
  15451. height: math.unit(5 + 6 / 12, "feet")
  15452. },
  15453. {
  15454. name: "Lesser Macro",
  15455. height: math.unit(60, "feet")
  15456. },
  15457. {
  15458. name: "Greater Macro",
  15459. height: math.unit(120, "feet")
  15460. },
  15461. ]
  15462. ))
  15463. characterMakers.push(() => makeCharacter(
  15464. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15465. {
  15466. front: {
  15467. height: math.unit(6, "feet"),
  15468. weight: math.unit(100, "lb"),
  15469. name: "Front",
  15470. image: {
  15471. source: "./media/characters/aevsivs/front.svg",
  15472. extra: 1,
  15473. bottom: 0.03
  15474. }
  15475. },
  15476. back: {
  15477. height: math.unit(6, "feet"),
  15478. weight: math.unit(100, "lb"),
  15479. name: "Back",
  15480. image: {
  15481. source: "./media/characters/aevsivs/back.svg"
  15482. }
  15483. },
  15484. },
  15485. [
  15486. {
  15487. name: "Micro",
  15488. height: math.unit(2, "inches"),
  15489. default: true
  15490. },
  15491. {
  15492. name: "Normal",
  15493. height: math.unit(5, "feet")
  15494. },
  15495. ]
  15496. ))
  15497. characterMakers.push(() => makeCharacter(
  15498. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15499. {
  15500. front: {
  15501. height: math.unit(5 + 7 / 12, "feet"),
  15502. weight: math.unit(159, "lb"),
  15503. name: "Front",
  15504. image: {
  15505. source: "./media/characters/hildegard/front.svg",
  15506. extra: 289 / 269,
  15507. bottom: 7.63 / 297.8
  15508. }
  15509. },
  15510. back: {
  15511. height: math.unit(5 + 7 / 12, "feet"),
  15512. weight: math.unit(159, "lb"),
  15513. name: "Back",
  15514. image: {
  15515. source: "./media/characters/hildegard/back.svg",
  15516. extra: 280 / 260,
  15517. bottom: 2.3 / 282
  15518. }
  15519. },
  15520. },
  15521. [
  15522. {
  15523. name: "Normal",
  15524. height: math.unit(5 + 7 / 12, "feet"),
  15525. default: true
  15526. },
  15527. ]
  15528. ))
  15529. characterMakers.push(() => makeCharacter(
  15530. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15531. {
  15532. bernard: {
  15533. height: math.unit(2 + 7 / 12, "feet"),
  15534. weight: math.unit(66, "lb"),
  15535. name: "Bernard",
  15536. rename: true,
  15537. image: {
  15538. source: "./media/characters/bernard-wilder/bernard.svg",
  15539. extra: 192 / 128,
  15540. bottom: 0.05
  15541. }
  15542. },
  15543. wilder: {
  15544. height: math.unit(5 + 8 / 12, "feet"),
  15545. weight: math.unit(143, "lb"),
  15546. name: "Wilder",
  15547. rename: true,
  15548. image: {
  15549. source: "./media/characters/bernard-wilder/wilder.svg",
  15550. extra: 361 / 312,
  15551. bottom: 0.02
  15552. }
  15553. },
  15554. },
  15555. [
  15556. {
  15557. name: "Normal",
  15558. height: math.unit(2 + 7 / 12, "feet"),
  15559. default: true
  15560. },
  15561. ]
  15562. ))
  15563. characterMakers.push(() => makeCharacter(
  15564. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15565. {
  15566. anthro: {
  15567. height: math.unit(6 + 1 / 12, "feet"),
  15568. weight: math.unit(155, "lb"),
  15569. name: "Anthro",
  15570. image: {
  15571. source: "./media/characters/hearth/anthro.svg",
  15572. extra: 1178/1136,
  15573. bottom: 28/1206
  15574. }
  15575. },
  15576. feral: {
  15577. height: math.unit(3.78, "feet"),
  15578. weight: math.unit(35, "kg"),
  15579. name: "Feral",
  15580. image: {
  15581. source: "./media/characters/hearth/feral.svg",
  15582. extra: 153 / 135,
  15583. bottom: 0.03
  15584. }
  15585. },
  15586. },
  15587. [
  15588. {
  15589. name: "Normal",
  15590. height: math.unit(6 + 1 / 12, "feet"),
  15591. default: true
  15592. },
  15593. ]
  15594. ))
  15595. characterMakers.push(() => makeCharacter(
  15596. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15597. {
  15598. front: {
  15599. height: math.unit(6, "feet"),
  15600. weight: math.unit(182, "lb"),
  15601. name: "Front",
  15602. image: {
  15603. source: "./media/characters/ingrid/front.svg",
  15604. extra: 294 / 268,
  15605. bottom: 0.027
  15606. }
  15607. },
  15608. },
  15609. [
  15610. {
  15611. name: "Normal",
  15612. height: math.unit(6, "feet"),
  15613. default: true
  15614. },
  15615. ]
  15616. ))
  15617. characterMakers.push(() => makeCharacter(
  15618. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15619. {
  15620. eevee: {
  15621. height: math.unit(2 + 10 / 12, "feet"),
  15622. weight: math.unit(86, "lb"),
  15623. name: "Malgam",
  15624. image: {
  15625. source: "./media/characters/malgam/eevee.svg",
  15626. extra: 952/784,
  15627. bottom: 38/990
  15628. }
  15629. },
  15630. sylveon: {
  15631. height: math.unit(4, "feet"),
  15632. weight: math.unit(101, "lb"),
  15633. name: "Future Malgam",
  15634. rename: true,
  15635. image: {
  15636. source: "./media/characters/malgam/sylveon.svg",
  15637. extra: 371 / 325,
  15638. bottom: 0.015
  15639. }
  15640. },
  15641. gigantamax: {
  15642. height: math.unit(50, "feet"),
  15643. name: "Gigantamax Malgam",
  15644. rename: true,
  15645. image: {
  15646. source: "./media/characters/malgam/gigantamax.svg"
  15647. }
  15648. },
  15649. },
  15650. [
  15651. {
  15652. name: "Normal",
  15653. height: math.unit(2 + 10 / 12, "feet"),
  15654. default: true
  15655. },
  15656. ]
  15657. ))
  15658. characterMakers.push(() => makeCharacter(
  15659. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15660. {
  15661. front: {
  15662. height: math.unit(5 + 11 / 12, "feet"),
  15663. weight: math.unit(188, "lb"),
  15664. name: "Front",
  15665. image: {
  15666. source: "./media/characters/fleur/front.svg",
  15667. extra: 309 / 283,
  15668. bottom: 0.007
  15669. }
  15670. },
  15671. },
  15672. [
  15673. {
  15674. name: "Normal",
  15675. height: math.unit(5 + 11 / 12, "feet"),
  15676. default: true
  15677. },
  15678. ]
  15679. ))
  15680. characterMakers.push(() => makeCharacter(
  15681. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15682. {
  15683. front: {
  15684. height: math.unit(5 + 4 / 12, "feet"),
  15685. weight: math.unit(122, "lb"),
  15686. name: "Front",
  15687. image: {
  15688. source: "./media/characters/jude/front.svg",
  15689. extra: 288 / 273,
  15690. bottom: 0.03
  15691. }
  15692. },
  15693. },
  15694. [
  15695. {
  15696. name: "Normal",
  15697. height: math.unit(5 + 4 / 12, "feet"),
  15698. default: true
  15699. },
  15700. ]
  15701. ))
  15702. characterMakers.push(() => makeCharacter(
  15703. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15704. {
  15705. front: {
  15706. height: math.unit(5 + 11 / 12, "feet"),
  15707. weight: math.unit(190, "lb"),
  15708. name: "Front",
  15709. image: {
  15710. source: "./media/characters/seara/front.svg",
  15711. extra: 1,
  15712. bottom: 0.05
  15713. }
  15714. },
  15715. },
  15716. [
  15717. {
  15718. name: "Normal",
  15719. height: math.unit(5 + 11 / 12, "feet"),
  15720. default: true
  15721. },
  15722. ]
  15723. ))
  15724. characterMakers.push(() => makeCharacter(
  15725. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15726. {
  15727. front: {
  15728. height: math.unit(16 + 5 / 12, "feet"),
  15729. weight: math.unit(524, "lb"),
  15730. name: "Front",
  15731. image: {
  15732. source: "./media/characters/caspian-lugia/front.svg",
  15733. extra: 1,
  15734. bottom: 0.04
  15735. }
  15736. },
  15737. },
  15738. [
  15739. {
  15740. name: "Normal",
  15741. height: math.unit(16 + 5 / 12, "feet"),
  15742. default: true
  15743. },
  15744. ]
  15745. ))
  15746. characterMakers.push(() => makeCharacter(
  15747. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15748. {
  15749. front: {
  15750. height: math.unit(5 + 7 / 12, "feet"),
  15751. weight: math.unit(170, "lb"),
  15752. name: "Front",
  15753. image: {
  15754. source: "./media/characters/mika/front.svg",
  15755. extra: 1,
  15756. bottom: 0.016
  15757. }
  15758. },
  15759. },
  15760. [
  15761. {
  15762. name: "Normal",
  15763. height: math.unit(5 + 7 / 12, "feet"),
  15764. default: true
  15765. },
  15766. ]
  15767. ))
  15768. characterMakers.push(() => makeCharacter(
  15769. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15770. {
  15771. front: {
  15772. height: math.unit(6 + 2 / 12, "feet"),
  15773. weight: math.unit(268, "lb"),
  15774. name: "Front",
  15775. image: {
  15776. source: "./media/characters/sol/front.svg",
  15777. extra: 247 / 231,
  15778. bottom: 0.05
  15779. }
  15780. },
  15781. },
  15782. [
  15783. {
  15784. name: "Normal",
  15785. height: math.unit(6 + 2 / 12, "feet"),
  15786. default: true
  15787. },
  15788. ]
  15789. ))
  15790. characterMakers.push(() => makeCharacter(
  15791. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15792. {
  15793. buizel: {
  15794. height: math.unit(2 + 5 / 12, "feet"),
  15795. weight: math.unit(87, "lb"),
  15796. name: "Front",
  15797. image: {
  15798. source: "./media/characters/umiko/buizel.svg",
  15799. extra: 172 / 157,
  15800. bottom: 0.01
  15801. },
  15802. form: "buizel",
  15803. default: true
  15804. },
  15805. floatzel: {
  15806. height: math.unit(5 + 9 / 12, "feet"),
  15807. weight: math.unit(250, "lb"),
  15808. name: "Front",
  15809. image: {
  15810. source: "./media/characters/umiko/floatzel.svg",
  15811. extra: 1076/1006,
  15812. bottom: 15/1091
  15813. },
  15814. form: "floatzel",
  15815. default: true
  15816. },
  15817. },
  15818. [
  15819. {
  15820. name: "Normal",
  15821. height: math.unit(2 + 5 / 12, "feet"),
  15822. form: "buizel",
  15823. default: true
  15824. },
  15825. {
  15826. name: "Normal",
  15827. height: math.unit(5 + 9 / 12, "feet"),
  15828. form: "floatzel",
  15829. default: true
  15830. },
  15831. ],
  15832. {
  15833. "buizel": {
  15834. name: "Buizel"
  15835. },
  15836. "floatzel": {
  15837. name: "Floatzel",
  15838. default: true
  15839. }
  15840. }
  15841. ))
  15842. characterMakers.push(() => makeCharacter(
  15843. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15844. {
  15845. front: {
  15846. height: math.unit(6 + 2 / 12, "feet"),
  15847. weight: math.unit(146, "lb"),
  15848. name: "Front",
  15849. image: {
  15850. source: "./media/characters/iliac/front.svg",
  15851. extra: 389 / 365,
  15852. bottom: 0.035
  15853. }
  15854. },
  15855. },
  15856. [
  15857. {
  15858. name: "Normal",
  15859. height: math.unit(6 + 2 / 12, "feet"),
  15860. default: true
  15861. },
  15862. ]
  15863. ))
  15864. characterMakers.push(() => makeCharacter(
  15865. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15866. {
  15867. front: {
  15868. height: math.unit(6, "feet"),
  15869. weight: math.unit(170, "lb"),
  15870. name: "Front",
  15871. image: {
  15872. source: "./media/characters/topaz/front.svg",
  15873. extra: 317 / 303,
  15874. bottom: 0.055
  15875. }
  15876. },
  15877. },
  15878. [
  15879. {
  15880. name: "Normal",
  15881. height: math.unit(6, "feet"),
  15882. default: true
  15883. },
  15884. ]
  15885. ))
  15886. characterMakers.push(() => makeCharacter(
  15887. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15888. {
  15889. front: {
  15890. height: math.unit(5 + 11 / 12, "feet"),
  15891. weight: math.unit(144, "lb"),
  15892. name: "Front",
  15893. image: {
  15894. source: "./media/characters/gabriel/front.svg",
  15895. extra: 285 / 262,
  15896. bottom: 0.004
  15897. }
  15898. },
  15899. },
  15900. [
  15901. {
  15902. name: "Normal",
  15903. height: math.unit(5 + 11 / 12, "feet"),
  15904. default: true
  15905. },
  15906. ]
  15907. ))
  15908. characterMakers.push(() => makeCharacter(
  15909. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15910. {
  15911. side: {
  15912. height: math.unit(6 + 5 / 12, "feet"),
  15913. weight: math.unit(300, "lb"),
  15914. name: "Side",
  15915. image: {
  15916. source: "./media/characters/tempest-suicune/side.svg",
  15917. extra: 195 / 154,
  15918. bottom: 0.04
  15919. }
  15920. },
  15921. },
  15922. [
  15923. {
  15924. name: "Normal",
  15925. height: math.unit(6 + 5 / 12, "feet"),
  15926. default: true
  15927. },
  15928. ]
  15929. ))
  15930. characterMakers.push(() => makeCharacter(
  15931. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15932. {
  15933. front: {
  15934. height: math.unit(7 + 2 / 12, "feet"),
  15935. weight: math.unit(322, "lb"),
  15936. name: "Front",
  15937. image: {
  15938. source: "./media/characters/vulcan/front.svg",
  15939. extra: 154 / 147,
  15940. bottom: 0.04
  15941. }
  15942. },
  15943. },
  15944. [
  15945. {
  15946. name: "Normal",
  15947. height: math.unit(7 + 2 / 12, "feet"),
  15948. default: true
  15949. },
  15950. ]
  15951. ))
  15952. characterMakers.push(() => makeCharacter(
  15953. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15954. {
  15955. front: {
  15956. height: math.unit(5 + 10 / 12, "feet"),
  15957. weight: math.unit(264, "lb"),
  15958. name: "Front",
  15959. image: {
  15960. source: "./media/characters/gault/front.svg",
  15961. extra: 161 / 140,
  15962. bottom: 0.028
  15963. }
  15964. },
  15965. },
  15966. [
  15967. {
  15968. name: "Normal",
  15969. height: math.unit(5 + 10 / 12, "feet"),
  15970. default: true
  15971. },
  15972. ]
  15973. ))
  15974. characterMakers.push(() => makeCharacter(
  15975. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15976. {
  15977. front: {
  15978. height: math.unit(6, "feet"),
  15979. weight: math.unit(150, "lb"),
  15980. name: "Front",
  15981. image: {
  15982. source: "./media/characters/shard/front.svg",
  15983. extra: 273 / 238,
  15984. bottom: 0.02
  15985. }
  15986. },
  15987. },
  15988. [
  15989. {
  15990. name: "Normal",
  15991. height: math.unit(3 + 6 / 12, "feet"),
  15992. default: true
  15993. },
  15994. ]
  15995. ))
  15996. characterMakers.push(() => makeCharacter(
  15997. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15998. {
  15999. front: {
  16000. height: math.unit(5 + 11 / 12, "feet"),
  16001. weight: math.unit(146, "lb"),
  16002. name: "Front",
  16003. image: {
  16004. source: "./media/characters/ashe/front.svg",
  16005. extra: 400 / 373,
  16006. bottom: 0.01
  16007. }
  16008. },
  16009. },
  16010. [
  16011. {
  16012. name: "Normal",
  16013. height: math.unit(5 + 11 / 12, "feet"),
  16014. default: true
  16015. },
  16016. ]
  16017. ))
  16018. characterMakers.push(() => makeCharacter(
  16019. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16020. {
  16021. front: {
  16022. height: math.unit(5 + 5 / 12, "feet"),
  16023. weight: math.unit(135, "lb"),
  16024. name: "Front",
  16025. image: {
  16026. source: "./media/characters/beatrix/front.svg",
  16027. extra: 392 / 379,
  16028. bottom: 0.01
  16029. }
  16030. },
  16031. },
  16032. [
  16033. {
  16034. name: "Normal",
  16035. height: math.unit(6, "feet"),
  16036. default: true
  16037. },
  16038. ]
  16039. ))
  16040. characterMakers.push(() => makeCharacter(
  16041. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16042. {
  16043. front: {
  16044. height: math.unit(6 + 2/12, "feet"),
  16045. weight: math.unit(135, "lb"),
  16046. name: "Front",
  16047. image: {
  16048. source: "./media/characters/ignatius/front.svg",
  16049. extra: 1380/1259,
  16050. bottom: 27/1407
  16051. }
  16052. },
  16053. },
  16054. [
  16055. {
  16056. name: "Normal",
  16057. height: math.unit(6 + 2/12, "feet"),
  16058. default: true
  16059. },
  16060. ]
  16061. ))
  16062. characterMakers.push(() => makeCharacter(
  16063. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16064. {
  16065. front: {
  16066. height: math.unit(6 + 2 / 12, "feet"),
  16067. weight: math.unit(138, "lb"),
  16068. name: "Front",
  16069. image: {
  16070. source: "./media/characters/mei-li/front.svg",
  16071. extra: 237 / 229,
  16072. bottom: 0.03
  16073. }
  16074. },
  16075. },
  16076. [
  16077. {
  16078. name: "Normal",
  16079. height: math.unit(6 + 2 / 12, "feet"),
  16080. default: true
  16081. },
  16082. ]
  16083. ))
  16084. characterMakers.push(() => makeCharacter(
  16085. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16086. {
  16087. front: {
  16088. height: math.unit(2 + 4 / 12, "feet"),
  16089. weight: math.unit(62, "lb"),
  16090. name: "Front",
  16091. image: {
  16092. source: "./media/characters/puru/front.svg",
  16093. extra: 206 / 149,
  16094. bottom: 0.06
  16095. }
  16096. },
  16097. },
  16098. [
  16099. {
  16100. name: "Normal",
  16101. height: math.unit(2 + 4 / 12, "feet"),
  16102. default: true
  16103. },
  16104. ]
  16105. ))
  16106. characterMakers.push(() => makeCharacter(
  16107. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16108. {
  16109. anthro: {
  16110. height: math.unit(5 + 8/12, "feet"),
  16111. weight: math.unit(200, "lb"),
  16112. energyNeed: math.unit(2000, "kcal"),
  16113. name: "Anthro",
  16114. image: {
  16115. source: "./media/characters/kee/anthro.svg",
  16116. extra: 3251/3184,
  16117. bottom: 250/3501
  16118. }
  16119. },
  16120. taur: {
  16121. height: math.unit(11, "feet"),
  16122. weight: math.unit(500, "lb"),
  16123. energyNeed: math.unit(5000, "kcal"),
  16124. name: "Taur",
  16125. image: {
  16126. source: "./media/characters/kee/taur.svg",
  16127. extra: 1362/1320,
  16128. bottom: 83/1445
  16129. }
  16130. },
  16131. },
  16132. [
  16133. {
  16134. name: "Normal",
  16135. height: math.unit(5 + 8/12, "feet"),
  16136. default: true
  16137. },
  16138. {
  16139. name: "Macro",
  16140. height: math.unit(35, "feet")
  16141. },
  16142. ]
  16143. ))
  16144. characterMakers.push(() => makeCharacter(
  16145. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16146. {
  16147. anthro: {
  16148. height: math.unit(7, "feet"),
  16149. weight: math.unit(190, "lb"),
  16150. name: "Anthro",
  16151. image: {
  16152. source: "./media/characters/cobalt-dracha/anthro.svg",
  16153. extra: 231 / 225,
  16154. bottom: 0.04
  16155. }
  16156. },
  16157. feral: {
  16158. height: math.unit(9 + 7 / 12, "feet"),
  16159. weight: math.unit(294, "lb"),
  16160. name: "Feral",
  16161. image: {
  16162. source: "./media/characters/cobalt-dracha/feral.svg",
  16163. extra: 692 / 633,
  16164. bottom: 0.05
  16165. }
  16166. },
  16167. },
  16168. [
  16169. {
  16170. name: "Normal",
  16171. height: math.unit(7, "feet"),
  16172. default: true
  16173. },
  16174. ]
  16175. ))
  16176. characterMakers.push(() => makeCharacter(
  16177. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16178. {
  16179. fallen: {
  16180. height: math.unit(11 + 8 / 12, "feet"),
  16181. weight: math.unit(485, "lb"),
  16182. name: "Java (Fallen)",
  16183. rename: true,
  16184. image: {
  16185. source: "./media/characters/java/fallen.svg",
  16186. extra: 226 / 208,
  16187. bottom: 0.005
  16188. }
  16189. },
  16190. godkin: {
  16191. height: math.unit(10 + 6 / 12, "feet"),
  16192. weight: math.unit(328, "lb"),
  16193. name: "Java (Godkin)",
  16194. rename: true,
  16195. image: {
  16196. source: "./media/characters/java/godkin.svg",
  16197. extra: 1104/1068,
  16198. bottom: 36/1140
  16199. }
  16200. },
  16201. },
  16202. [
  16203. {
  16204. name: "Normal",
  16205. height: math.unit(11 + 8 / 12, "feet"),
  16206. default: true
  16207. },
  16208. ]
  16209. ))
  16210. characterMakers.push(() => makeCharacter(
  16211. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16212. {
  16213. front: {
  16214. height: math.unit(5 + 9 / 12, "feet"),
  16215. weight: math.unit(170, "lb"),
  16216. name: "Front",
  16217. image: {
  16218. source: "./media/characters/purna/front.svg",
  16219. extra: 239 / 229,
  16220. bottom: 0.01
  16221. }
  16222. },
  16223. },
  16224. [
  16225. {
  16226. name: "Normal",
  16227. height: math.unit(5 + 9 / 12, "feet"),
  16228. default: true
  16229. },
  16230. ]
  16231. ))
  16232. characterMakers.push(() => makeCharacter(
  16233. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16234. {
  16235. front: {
  16236. height: math.unit(5 + 9 / 12, "feet"),
  16237. weight: math.unit(142, "lb"),
  16238. name: "Front",
  16239. image: {
  16240. source: "./media/characters/kuva/front.svg",
  16241. extra: 281 / 271,
  16242. bottom: 0.006
  16243. }
  16244. },
  16245. },
  16246. [
  16247. {
  16248. name: "Normal",
  16249. height: math.unit(5 + 9 / 12, "feet"),
  16250. default: true
  16251. },
  16252. ]
  16253. ))
  16254. characterMakers.push(() => makeCharacter(
  16255. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16256. {
  16257. anthro: {
  16258. height: math.unit(9 + 2 / 12, "feet"),
  16259. weight: math.unit(270, "lb"),
  16260. name: "Anthro",
  16261. image: {
  16262. source: "./media/characters/embra/anthro.svg",
  16263. extra: 200 / 187,
  16264. bottom: 0.02
  16265. }
  16266. },
  16267. feral: {
  16268. height: math.unit(18 + 8 / 12, "feet"),
  16269. weight: math.unit(576, "lb"),
  16270. name: "Feral",
  16271. image: {
  16272. source: "./media/characters/embra/feral.svg",
  16273. extra: 152 / 137,
  16274. bottom: 0.037
  16275. }
  16276. },
  16277. },
  16278. [
  16279. {
  16280. name: "Normal",
  16281. height: math.unit(9 + 2 / 12, "feet"),
  16282. default: true
  16283. },
  16284. ]
  16285. ))
  16286. characterMakers.push(() => makeCharacter(
  16287. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16288. {
  16289. anthro: {
  16290. height: math.unit(10 + 9 / 12, "feet"),
  16291. weight: math.unit(224, "lb"),
  16292. name: "Anthro",
  16293. image: {
  16294. source: "./media/characters/grottos/anthro.svg",
  16295. extra: 350 / 332,
  16296. bottom: 0.045
  16297. }
  16298. },
  16299. feral: {
  16300. height: math.unit(20 + 7 / 12, "feet"),
  16301. weight: math.unit(629, "lb"),
  16302. name: "Feral",
  16303. image: {
  16304. source: "./media/characters/grottos/feral.svg",
  16305. extra: 207 / 190,
  16306. bottom: 0.05
  16307. }
  16308. },
  16309. },
  16310. [
  16311. {
  16312. name: "Normal",
  16313. height: math.unit(10 + 9 / 12, "feet"),
  16314. default: true
  16315. },
  16316. ]
  16317. ))
  16318. characterMakers.push(() => makeCharacter(
  16319. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16320. {
  16321. anthro: {
  16322. height: math.unit(9 + 6 / 12, "feet"),
  16323. weight: math.unit(298, "lb"),
  16324. name: "Anthro",
  16325. image: {
  16326. source: "./media/characters/frifna/anthro.svg",
  16327. extra: 282 / 269,
  16328. bottom: 0.015
  16329. }
  16330. },
  16331. feral: {
  16332. height: math.unit(16 + 2 / 12, "feet"),
  16333. weight: math.unit(624, "lb"),
  16334. name: "Feral",
  16335. image: {
  16336. source: "./media/characters/frifna/feral.svg"
  16337. }
  16338. },
  16339. },
  16340. [
  16341. {
  16342. name: "Normal",
  16343. height: math.unit(9 + 6 / 12, "feet"),
  16344. default: true
  16345. },
  16346. ]
  16347. ))
  16348. characterMakers.push(() => makeCharacter(
  16349. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16350. {
  16351. front: {
  16352. height: math.unit(6 + 2 / 12, "feet"),
  16353. weight: math.unit(168, "lb"),
  16354. name: "Front",
  16355. image: {
  16356. source: "./media/characters/elise/front.svg",
  16357. extra: 276 / 271
  16358. }
  16359. },
  16360. },
  16361. [
  16362. {
  16363. name: "Normal",
  16364. height: math.unit(6 + 2 / 12, "feet"),
  16365. default: true
  16366. },
  16367. ]
  16368. ))
  16369. characterMakers.push(() => makeCharacter(
  16370. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16371. {
  16372. front: {
  16373. height: math.unit(5 + 10 / 12, "feet"),
  16374. weight: math.unit(210, "lb"),
  16375. name: "Front",
  16376. image: {
  16377. source: "./media/characters/glade/front.svg",
  16378. extra: 258 / 247,
  16379. bottom: 0.008
  16380. }
  16381. },
  16382. },
  16383. [
  16384. {
  16385. name: "Normal",
  16386. height: math.unit(5 + 10 / 12, "feet"),
  16387. default: true
  16388. },
  16389. ]
  16390. ))
  16391. characterMakers.push(() => makeCharacter(
  16392. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16393. {
  16394. front: {
  16395. height: math.unit(5 + 10 / 12, "feet"),
  16396. weight: math.unit(129, "lb"),
  16397. name: "Front",
  16398. image: {
  16399. source: "./media/characters/rina/front.svg",
  16400. extra: 266 / 255,
  16401. bottom: 0.005
  16402. }
  16403. },
  16404. },
  16405. [
  16406. {
  16407. name: "Normal",
  16408. height: math.unit(5 + 10 / 12, "feet"),
  16409. default: true
  16410. },
  16411. ]
  16412. ))
  16413. characterMakers.push(() => makeCharacter(
  16414. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16415. {
  16416. front: {
  16417. height: math.unit(6 + 1 / 12, "feet"),
  16418. weight: math.unit(192, "lb"),
  16419. name: "Front",
  16420. image: {
  16421. source: "./media/characters/veronica/front.svg",
  16422. extra: 319 / 309,
  16423. bottom: 0.005
  16424. }
  16425. },
  16426. },
  16427. [
  16428. {
  16429. name: "Normal",
  16430. height: math.unit(6 + 1 / 12, "feet"),
  16431. default: true
  16432. },
  16433. ]
  16434. ))
  16435. characterMakers.push(() => makeCharacter(
  16436. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16437. {
  16438. front: {
  16439. height: math.unit(9 + 3 / 12, "feet"),
  16440. weight: math.unit(1100, "lb"),
  16441. name: "Front",
  16442. image: {
  16443. source: "./media/characters/braxton/front.svg",
  16444. extra: 1057 / 984,
  16445. bottom: 0.05
  16446. }
  16447. },
  16448. },
  16449. [
  16450. {
  16451. name: "Normal",
  16452. height: math.unit(9 + 3 / 12, "feet")
  16453. },
  16454. {
  16455. name: "Giant",
  16456. height: math.unit(300, "feet"),
  16457. default: true
  16458. },
  16459. {
  16460. name: "Macro",
  16461. height: math.unit(700, "feet")
  16462. },
  16463. {
  16464. name: "Megamacro",
  16465. height: math.unit(6000, "feet")
  16466. },
  16467. ]
  16468. ))
  16469. characterMakers.push(() => makeCharacter(
  16470. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16471. {
  16472. front: {
  16473. height: math.unit(6 + 7 / 12, "feet"),
  16474. weight: math.unit(150, "lb"),
  16475. name: "Front",
  16476. image: {
  16477. source: "./media/characters/blue-feyonics/front.svg",
  16478. extra: 1403 / 1306,
  16479. bottom: 0.047
  16480. }
  16481. },
  16482. },
  16483. [
  16484. {
  16485. name: "Normal",
  16486. height: math.unit(6 + 7 / 12, "feet"),
  16487. default: true
  16488. },
  16489. ]
  16490. ))
  16491. characterMakers.push(() => makeCharacter(
  16492. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16493. {
  16494. front: {
  16495. height: math.unit(1.8, "meters"),
  16496. weight: math.unit(60, "kg"),
  16497. name: "Front",
  16498. image: {
  16499. source: "./media/characters/maxwell/front.svg",
  16500. extra: 2060 / 1873
  16501. }
  16502. },
  16503. },
  16504. [
  16505. {
  16506. name: "Micro",
  16507. height: math.unit(1, "mm")
  16508. },
  16509. {
  16510. name: "Normal",
  16511. height: math.unit(1.8, "meter"),
  16512. default: true
  16513. },
  16514. {
  16515. name: "Macro",
  16516. height: math.unit(30, "meters")
  16517. },
  16518. {
  16519. name: "Megamacro",
  16520. height: math.unit(10, "km")
  16521. },
  16522. ]
  16523. ))
  16524. characterMakers.push(() => makeCharacter(
  16525. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16526. {
  16527. front: {
  16528. height: math.unit(6, "feet"),
  16529. weight: math.unit(150, "lb"),
  16530. name: "Front",
  16531. image: {
  16532. source: "./media/characters/jack/front.svg",
  16533. extra: 1754 / 1640,
  16534. bottom: 0.01
  16535. }
  16536. },
  16537. },
  16538. [
  16539. {
  16540. name: "Normal",
  16541. height: math.unit(80000, "feet"),
  16542. default: true
  16543. },
  16544. {
  16545. name: "Max size",
  16546. height: math.unit(10, "lightyears")
  16547. },
  16548. ]
  16549. ))
  16550. characterMakers.push(() => makeCharacter(
  16551. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16552. {
  16553. urban: {
  16554. height: math.unit(5, "feet"),
  16555. weight: math.unit(240, "lb"),
  16556. name: "Urban",
  16557. image: {
  16558. source: "./media/characters/cafat/urban.svg",
  16559. extra: 1223/1126,
  16560. bottom: 205/1428
  16561. }
  16562. },
  16563. summer: {
  16564. height: math.unit(5, "feet"),
  16565. weight: math.unit(240, "lb"),
  16566. name: "Summer",
  16567. image: {
  16568. source: "./media/characters/cafat/summer.svg",
  16569. extra: 1223/1126,
  16570. bottom: 205/1428
  16571. }
  16572. },
  16573. winter: {
  16574. height: math.unit(5, "feet"),
  16575. weight: math.unit(240, "lb"),
  16576. name: "Winter",
  16577. image: {
  16578. source: "./media/characters/cafat/winter.svg",
  16579. extra: 1223/1126,
  16580. bottom: 205/1428
  16581. }
  16582. },
  16583. lingerie: {
  16584. height: math.unit(5, "feet"),
  16585. weight: math.unit(240, "lb"),
  16586. name: "Lingerie",
  16587. image: {
  16588. source: "./media/characters/cafat/lingerie.svg",
  16589. extra: 1223/1126,
  16590. bottom: 205/1428
  16591. }
  16592. },
  16593. upright: {
  16594. height: math.unit(6.3, "feet"),
  16595. weight: math.unit(240, "lb"),
  16596. name: "Upright",
  16597. image: {
  16598. source: "./media/characters/cafat/upright.svg",
  16599. bottom: 0.01
  16600. }
  16601. },
  16602. uprightFull: {
  16603. height: math.unit(6.3, "feet"),
  16604. weight: math.unit(240, "lb"),
  16605. name: "Upright (Full)",
  16606. image: {
  16607. source: "./media/characters/cafat/upright-full.svg",
  16608. bottom: 0.01
  16609. }
  16610. },
  16611. },
  16612. [
  16613. {
  16614. name: "Small",
  16615. height: math.unit(5, "feet"),
  16616. default: true
  16617. },
  16618. {
  16619. name: "Large",
  16620. height: math.unit(13, "feet")
  16621. },
  16622. ]
  16623. ))
  16624. characterMakers.push(() => makeCharacter(
  16625. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16626. {
  16627. front: {
  16628. height: math.unit(6, "feet"),
  16629. weight: math.unit(150, "lb"),
  16630. name: "Front",
  16631. image: {
  16632. source: "./media/characters/verin-raharra/front.svg",
  16633. extra: 5019 / 4835,
  16634. bottom: 0.023
  16635. }
  16636. },
  16637. },
  16638. [
  16639. {
  16640. name: "Normal",
  16641. height: math.unit(7 + 5 / 12, "feet"),
  16642. default: true
  16643. },
  16644. {
  16645. name: "Upsized",
  16646. height: math.unit(20, "feet")
  16647. },
  16648. ]
  16649. ))
  16650. characterMakers.push(() => makeCharacter(
  16651. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16652. {
  16653. front: {
  16654. height: math.unit(7, "feet"),
  16655. weight: math.unit(230, "lb"),
  16656. name: "Front",
  16657. image: {
  16658. source: "./media/characters/nakata/front.svg",
  16659. extra: 1.005,
  16660. bottom: 0.01
  16661. }
  16662. },
  16663. },
  16664. [
  16665. {
  16666. name: "Normal",
  16667. height: math.unit(7, "feet"),
  16668. default: true
  16669. },
  16670. {
  16671. name: "Big",
  16672. height: math.unit(14, "feet")
  16673. },
  16674. {
  16675. name: "Macro",
  16676. height: math.unit(400, "feet")
  16677. },
  16678. ]
  16679. ))
  16680. characterMakers.push(() => makeCharacter(
  16681. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16682. {
  16683. front: {
  16684. height: math.unit(4.91, "feet"),
  16685. weight: math.unit(100, "lb"),
  16686. name: "Front",
  16687. image: {
  16688. source: "./media/characters/lily/front.svg",
  16689. extra: 1585 / 1415,
  16690. bottom: 0.02
  16691. }
  16692. },
  16693. },
  16694. [
  16695. {
  16696. name: "Normal",
  16697. height: math.unit(4.91, "feet"),
  16698. default: true
  16699. },
  16700. ]
  16701. ))
  16702. characterMakers.push(() => makeCharacter(
  16703. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16704. {
  16705. laying: {
  16706. height: math.unit(4 + 4 / 12, "feet"),
  16707. weight: math.unit(600, "lb"),
  16708. name: "Laying",
  16709. image: {
  16710. source: "./media/characters/sheila/laying.svg",
  16711. extra: 1333 / 1265,
  16712. bottom: 0.16
  16713. }
  16714. },
  16715. },
  16716. [
  16717. {
  16718. name: "Normal",
  16719. height: math.unit(4 + 4 / 12, "feet"),
  16720. default: true
  16721. },
  16722. ]
  16723. ))
  16724. characterMakers.push(() => makeCharacter(
  16725. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16726. {
  16727. front: {
  16728. height: math.unit(6, "feet"),
  16729. weight: math.unit(190, "lb"),
  16730. name: "Front",
  16731. image: {
  16732. source: "./media/characters/sax/front.svg",
  16733. extra: 1187 / 973,
  16734. bottom: 0.042
  16735. }
  16736. },
  16737. },
  16738. [
  16739. {
  16740. name: "Micro",
  16741. height: math.unit(4, "inches"),
  16742. default: true
  16743. },
  16744. ]
  16745. ))
  16746. characterMakers.push(() => makeCharacter(
  16747. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16748. {
  16749. front: {
  16750. height: math.unit(6, "feet"),
  16751. weight: math.unit(150, "lb"),
  16752. name: "Front",
  16753. image: {
  16754. source: "./media/characters/pandora/front.svg",
  16755. extra: 2720 / 2556,
  16756. bottom: 0.015
  16757. }
  16758. },
  16759. back: {
  16760. height: math.unit(6, "feet"),
  16761. weight: math.unit(150, "lb"),
  16762. name: "Back",
  16763. image: {
  16764. source: "./media/characters/pandora/back.svg",
  16765. extra: 2720 / 2556,
  16766. bottom: 0.01
  16767. }
  16768. },
  16769. beans: {
  16770. height: math.unit(6 / 8, "feet"),
  16771. name: "Beans",
  16772. image: {
  16773. source: "./media/characters/pandora/beans.svg"
  16774. }
  16775. },
  16776. collar: {
  16777. height: math.unit(0.31, "feet"),
  16778. name: "Collar",
  16779. image: {
  16780. source: "./media/characters/pandora/collar.svg"
  16781. }
  16782. },
  16783. skirt: {
  16784. height: math.unit(6, "feet"),
  16785. weight: math.unit(150, "lb"),
  16786. name: "Skirt",
  16787. image: {
  16788. source: "./media/characters/pandora/skirt.svg",
  16789. extra: 1622 / 1525,
  16790. bottom: 0.015
  16791. }
  16792. },
  16793. hoodie: {
  16794. height: math.unit(6, "feet"),
  16795. weight: math.unit(150, "lb"),
  16796. name: "Hoodie",
  16797. image: {
  16798. source: "./media/characters/pandora/hoodie.svg",
  16799. extra: 1622 / 1525,
  16800. bottom: 0.015
  16801. }
  16802. },
  16803. casual: {
  16804. height: math.unit(6, "feet"),
  16805. weight: math.unit(150, "lb"),
  16806. name: "Casual",
  16807. image: {
  16808. source: "./media/characters/pandora/casual.svg",
  16809. extra: 1622 / 1525,
  16810. bottom: 0.015
  16811. }
  16812. },
  16813. },
  16814. [
  16815. {
  16816. name: "Normal",
  16817. height: math.unit(6, "feet")
  16818. },
  16819. {
  16820. name: "Big Steppy",
  16821. height: math.unit(1, "km"),
  16822. default: true
  16823. },
  16824. {
  16825. name: "Galactic Steppy",
  16826. height: math.unit(2, "gigameters")
  16827. },
  16828. ]
  16829. ))
  16830. characterMakers.push(() => makeCharacter(
  16831. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16832. {
  16833. side: {
  16834. height: math.unit(10, "feet"),
  16835. weight: math.unit(800, "kg"),
  16836. name: "Side",
  16837. image: {
  16838. source: "./media/characters/venio-darcony/side.svg",
  16839. extra: 1373 / 1003,
  16840. bottom: 0.037
  16841. }
  16842. },
  16843. front: {
  16844. height: math.unit(19, "feet"),
  16845. weight: math.unit(800, "kg"),
  16846. name: "Front",
  16847. image: {
  16848. source: "./media/characters/venio-darcony/front.svg"
  16849. }
  16850. },
  16851. back: {
  16852. height: math.unit(19, "feet"),
  16853. weight: math.unit(800, "kg"),
  16854. name: "Back",
  16855. image: {
  16856. source: "./media/characters/venio-darcony/back.svg"
  16857. }
  16858. },
  16859. sideNsfw: {
  16860. height: math.unit(10, "feet"),
  16861. weight: math.unit(800, "kg"),
  16862. name: "Side (NSFW)",
  16863. image: {
  16864. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16865. extra: 1373 / 1003,
  16866. bottom: 0.037
  16867. }
  16868. },
  16869. frontNsfw: {
  16870. height: math.unit(19, "feet"),
  16871. weight: math.unit(800, "kg"),
  16872. name: "Front (NSFW)",
  16873. image: {
  16874. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16875. }
  16876. },
  16877. backNsfw: {
  16878. height: math.unit(19, "feet"),
  16879. weight: math.unit(800, "kg"),
  16880. name: "Back (NSFW)",
  16881. image: {
  16882. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16883. }
  16884. },
  16885. sideArmored: {
  16886. height: math.unit(10, "feet"),
  16887. weight: math.unit(800, "kg"),
  16888. name: "Side (Armored)",
  16889. image: {
  16890. source: "./media/characters/venio-darcony/side-armored.svg",
  16891. extra: 1373 / 1003,
  16892. bottom: 0.037
  16893. }
  16894. },
  16895. frontArmored: {
  16896. height: math.unit(19, "feet"),
  16897. weight: math.unit(900, "kg"),
  16898. name: "Front (Armored)",
  16899. image: {
  16900. source: "./media/characters/venio-darcony/front-armored.svg"
  16901. }
  16902. },
  16903. backArmored: {
  16904. height: math.unit(19, "feet"),
  16905. weight: math.unit(900, "kg"),
  16906. name: "Back (Armored)",
  16907. image: {
  16908. source: "./media/characters/venio-darcony/back-armored.svg"
  16909. }
  16910. },
  16911. sword: {
  16912. height: math.unit(10, "feet"),
  16913. weight: math.unit(50, "lb"),
  16914. name: "Sword",
  16915. image: {
  16916. source: "./media/characters/venio-darcony/sword.svg"
  16917. }
  16918. },
  16919. },
  16920. [
  16921. {
  16922. name: "Normal",
  16923. height: math.unit(10, "feet")
  16924. },
  16925. {
  16926. name: "Macro",
  16927. height: math.unit(130, "feet"),
  16928. default: true
  16929. },
  16930. {
  16931. name: "Macro+",
  16932. height: math.unit(240, "feet")
  16933. },
  16934. ]
  16935. ))
  16936. characterMakers.push(() => makeCharacter(
  16937. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16938. {
  16939. front: {
  16940. height: math.unit(6, "feet"),
  16941. weight: math.unit(150, "lb"),
  16942. name: "Front",
  16943. image: {
  16944. source: "./media/characters/veski/front.svg",
  16945. extra: 1299 / 1225,
  16946. bottom: 0.04
  16947. }
  16948. },
  16949. back: {
  16950. height: math.unit(6, "feet"),
  16951. weight: math.unit(150, "lb"),
  16952. name: "Back",
  16953. image: {
  16954. source: "./media/characters/veski/back.svg",
  16955. extra: 1299 / 1225,
  16956. bottom: 0.008
  16957. }
  16958. },
  16959. maw: {
  16960. height: math.unit(1.5 * 1.21, "feet"),
  16961. name: "Maw",
  16962. image: {
  16963. source: "./media/characters/veski/maw.svg"
  16964. }
  16965. },
  16966. },
  16967. [
  16968. {
  16969. name: "Macro",
  16970. height: math.unit(2, "km"),
  16971. default: true
  16972. },
  16973. ]
  16974. ))
  16975. characterMakers.push(() => makeCharacter(
  16976. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16977. {
  16978. front: {
  16979. height: math.unit(5 + 7 / 12, "feet"),
  16980. name: "Front",
  16981. image: {
  16982. source: "./media/characters/isabelle/front.svg",
  16983. extra: 2130 / 1976,
  16984. bottom: 0.05
  16985. }
  16986. },
  16987. },
  16988. [
  16989. {
  16990. name: "Supermicro",
  16991. height: math.unit(10, "micrometers")
  16992. },
  16993. {
  16994. name: "Micro",
  16995. height: math.unit(1, "inch")
  16996. },
  16997. {
  16998. name: "Tiny",
  16999. height: math.unit(5, "inches")
  17000. },
  17001. {
  17002. name: "Standard",
  17003. height: math.unit(5 + 7 / 12, "inches")
  17004. },
  17005. {
  17006. name: "Macro",
  17007. height: math.unit(80, "meters"),
  17008. default: true
  17009. },
  17010. {
  17011. name: "Megamacro",
  17012. height: math.unit(250, "meters")
  17013. },
  17014. {
  17015. name: "Gigamacro",
  17016. height: math.unit(5, "km")
  17017. },
  17018. {
  17019. name: "Cosmic",
  17020. height: math.unit(2.5e6, "miles")
  17021. },
  17022. ]
  17023. ))
  17024. characterMakers.push(() => makeCharacter(
  17025. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17026. {
  17027. front: {
  17028. height: math.unit(6, "feet"),
  17029. weight: math.unit(150, "lb"),
  17030. name: "Front",
  17031. image: {
  17032. source: "./media/characters/hanzo/front.svg",
  17033. extra: 374 / 344,
  17034. bottom: 0.02
  17035. }
  17036. },
  17037. },
  17038. [
  17039. {
  17040. name: "Normal",
  17041. height: math.unit(8, "feet"),
  17042. default: true
  17043. },
  17044. ]
  17045. ))
  17046. characterMakers.push(() => makeCharacter(
  17047. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17048. {
  17049. front: {
  17050. height: math.unit(7, "feet"),
  17051. weight: math.unit(130, "lb"),
  17052. name: "Front",
  17053. image: {
  17054. source: "./media/characters/anna/front.svg",
  17055. extra: 169 / 145,
  17056. bottom: 0.06
  17057. }
  17058. },
  17059. full: {
  17060. height: math.unit(4.96, "feet"),
  17061. weight: math.unit(220, "lb"),
  17062. name: "Full",
  17063. image: {
  17064. source: "./media/characters/anna/full.svg",
  17065. extra: 138 / 114,
  17066. bottom: 0.15
  17067. }
  17068. },
  17069. tongue: {
  17070. height: math.unit(2.53, "feet"),
  17071. name: "Tongue",
  17072. image: {
  17073. source: "./media/characters/anna/tongue.svg"
  17074. }
  17075. },
  17076. },
  17077. [
  17078. {
  17079. name: "Normal",
  17080. height: math.unit(7, "feet"),
  17081. default: true
  17082. },
  17083. ]
  17084. ))
  17085. characterMakers.push(() => makeCharacter(
  17086. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17087. {
  17088. front: {
  17089. height: math.unit(7, "feet"),
  17090. weight: math.unit(150, "lb"),
  17091. name: "Front",
  17092. image: {
  17093. source: "./media/characters/ian-corvid/front.svg",
  17094. extra: 150 / 142,
  17095. bottom: 0.02
  17096. }
  17097. },
  17098. back: {
  17099. height: math.unit(7, "feet"),
  17100. weight: math.unit(150, "lb"),
  17101. name: "Back",
  17102. image: {
  17103. source: "./media/characters/ian-corvid/back.svg",
  17104. extra: 150 / 143,
  17105. bottom: 0.01
  17106. }
  17107. },
  17108. stomping: {
  17109. height: math.unit(7, "feet"),
  17110. weight: math.unit(150, "lb"),
  17111. name: "Stomping",
  17112. image: {
  17113. source: "./media/characters/ian-corvid/stomping.svg",
  17114. extra: 76 / 72
  17115. }
  17116. },
  17117. sitting: {
  17118. height: math.unit(7 / 1.8, "feet"),
  17119. weight: math.unit(150, "lb"),
  17120. name: "Sitting",
  17121. image: {
  17122. source: "./media/characters/ian-corvid/sitting.svg",
  17123. extra: 1400 / 1269,
  17124. bottom: 0.15
  17125. }
  17126. },
  17127. },
  17128. [
  17129. {
  17130. name: "Tiny Microw",
  17131. height: math.unit(1, "inch")
  17132. },
  17133. {
  17134. name: "Microw",
  17135. height: math.unit(6, "inches")
  17136. },
  17137. {
  17138. name: "Crow",
  17139. height: math.unit(7 + 1 / 12, "feet"),
  17140. default: true
  17141. },
  17142. {
  17143. name: "Macrow",
  17144. height: math.unit(176, "feet")
  17145. },
  17146. ]
  17147. ))
  17148. characterMakers.push(() => makeCharacter(
  17149. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17150. {
  17151. front: {
  17152. height: math.unit(5 + 7 / 12, "feet"),
  17153. weight: math.unit(147, "lb"),
  17154. name: "Front",
  17155. image: {
  17156. source: "./media/characters/natalie-kellon/front.svg",
  17157. extra: 1214 / 1141,
  17158. bottom: 0.02
  17159. }
  17160. },
  17161. },
  17162. [
  17163. {
  17164. name: "Micro",
  17165. height: math.unit(1 / 16, "inch")
  17166. },
  17167. {
  17168. name: "Tiny",
  17169. height: math.unit(4, "inches")
  17170. },
  17171. {
  17172. name: "Normal",
  17173. height: math.unit(5 + 7 / 12, "feet"),
  17174. default: true
  17175. },
  17176. {
  17177. name: "Amazon",
  17178. height: math.unit(12, "feet")
  17179. },
  17180. {
  17181. name: "Giantess",
  17182. height: math.unit(160, "meters")
  17183. },
  17184. {
  17185. name: "Titaness",
  17186. height: math.unit(800, "meters")
  17187. },
  17188. ]
  17189. ))
  17190. characterMakers.push(() => makeCharacter(
  17191. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17192. {
  17193. front: {
  17194. height: math.unit(6, "feet"),
  17195. weight: math.unit(150, "lb"),
  17196. name: "Front",
  17197. image: {
  17198. source: "./media/characters/alluria/front.svg",
  17199. extra: 806 / 738,
  17200. bottom: 0.01
  17201. }
  17202. },
  17203. side: {
  17204. height: math.unit(6, "feet"),
  17205. weight: math.unit(150, "lb"),
  17206. name: "Side",
  17207. image: {
  17208. source: "./media/characters/alluria/side.svg",
  17209. extra: 800 / 750,
  17210. }
  17211. },
  17212. back: {
  17213. height: math.unit(6, "feet"),
  17214. weight: math.unit(150, "lb"),
  17215. name: "Back",
  17216. image: {
  17217. source: "./media/characters/alluria/back.svg",
  17218. extra: 806 / 738,
  17219. }
  17220. },
  17221. frontMaid: {
  17222. height: math.unit(6, "feet"),
  17223. weight: math.unit(150, "lb"),
  17224. name: "Front (Maid)",
  17225. image: {
  17226. source: "./media/characters/alluria/front-maid.svg",
  17227. extra: 806 / 738,
  17228. bottom: 0.01
  17229. }
  17230. },
  17231. sideMaid: {
  17232. height: math.unit(6, "feet"),
  17233. weight: math.unit(150, "lb"),
  17234. name: "Side (Maid)",
  17235. image: {
  17236. source: "./media/characters/alluria/side-maid.svg",
  17237. extra: 800 / 750,
  17238. bottom: 0.005
  17239. }
  17240. },
  17241. backMaid: {
  17242. height: math.unit(6, "feet"),
  17243. weight: math.unit(150, "lb"),
  17244. name: "Back (Maid)",
  17245. image: {
  17246. source: "./media/characters/alluria/back-maid.svg",
  17247. extra: 806 / 738,
  17248. }
  17249. },
  17250. },
  17251. [
  17252. {
  17253. name: "Micro",
  17254. height: math.unit(6, "inches"),
  17255. default: true
  17256. },
  17257. ]
  17258. ))
  17259. characterMakers.push(() => makeCharacter(
  17260. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17261. {
  17262. front: {
  17263. height: math.unit(6, "feet"),
  17264. weight: math.unit(150, "lb"),
  17265. name: "Front",
  17266. image: {
  17267. source: "./media/characters/kyle/front.svg",
  17268. extra: 1069 / 962,
  17269. bottom: 77.228 / 1727.45
  17270. }
  17271. },
  17272. },
  17273. [
  17274. {
  17275. name: "Macro",
  17276. height: math.unit(150, "feet"),
  17277. default: true
  17278. },
  17279. ]
  17280. ))
  17281. characterMakers.push(() => makeCharacter(
  17282. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17283. {
  17284. front: {
  17285. height: math.unit(6, "feet"),
  17286. weight: math.unit(300, "lb"),
  17287. name: "Front",
  17288. image: {
  17289. source: "./media/characters/duncan/front.svg",
  17290. extra: 1650 / 1482,
  17291. bottom: 0.05
  17292. }
  17293. },
  17294. },
  17295. [
  17296. {
  17297. name: "Macro",
  17298. height: math.unit(100, "feet"),
  17299. default: true
  17300. },
  17301. ]
  17302. ))
  17303. characterMakers.push(() => makeCharacter(
  17304. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17305. {
  17306. front: {
  17307. height: math.unit(5 + 4 / 12, "feet"),
  17308. weight: math.unit(220, "lb"),
  17309. name: "Front",
  17310. image: {
  17311. source: "./media/characters/memory/front.svg",
  17312. extra: 3641 / 3545,
  17313. bottom: 0.03
  17314. }
  17315. },
  17316. back: {
  17317. height: math.unit(5 + 4 / 12, "feet"),
  17318. weight: math.unit(220, "lb"),
  17319. name: "Back",
  17320. image: {
  17321. source: "./media/characters/memory/back.svg",
  17322. extra: 3641 / 3545,
  17323. bottom: 0.025
  17324. }
  17325. },
  17326. frontSkirt: {
  17327. height: math.unit(5 + 4 / 12, "feet"),
  17328. weight: math.unit(220, "lb"),
  17329. name: "Front (Skirt)",
  17330. image: {
  17331. source: "./media/characters/memory/front-skirt.svg",
  17332. extra: 3641 / 3545,
  17333. bottom: 0.03
  17334. }
  17335. },
  17336. frontDress: {
  17337. height: math.unit(5 + 4 / 12, "feet"),
  17338. weight: math.unit(220, "lb"),
  17339. name: "Front (Dress)",
  17340. image: {
  17341. source: "./media/characters/memory/front-dress.svg",
  17342. extra: 3641 / 3545,
  17343. bottom: 0.03
  17344. }
  17345. },
  17346. },
  17347. [
  17348. {
  17349. name: "Micro",
  17350. height: math.unit(6, "inches"),
  17351. default: true
  17352. },
  17353. {
  17354. name: "Normal",
  17355. height: math.unit(5 + 4 / 12, "feet")
  17356. },
  17357. ]
  17358. ))
  17359. characterMakers.push(() => makeCharacter(
  17360. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17361. {
  17362. front: {
  17363. height: math.unit(4 + 11 / 12, "feet"),
  17364. weight: math.unit(100, "lb"),
  17365. name: "Front",
  17366. image: {
  17367. source: "./media/characters/luno/front.svg",
  17368. extra: 1535 / 1487,
  17369. bottom: 0.03
  17370. }
  17371. },
  17372. },
  17373. [
  17374. {
  17375. name: "Micro",
  17376. height: math.unit(3, "inches")
  17377. },
  17378. {
  17379. name: "Normal",
  17380. height: math.unit(4 + 11 / 12, "feet"),
  17381. default: true
  17382. },
  17383. {
  17384. name: "Macro",
  17385. height: math.unit(300, "feet")
  17386. },
  17387. {
  17388. name: "Megamacro",
  17389. height: math.unit(700, "miles")
  17390. },
  17391. ]
  17392. ))
  17393. characterMakers.push(() => makeCharacter(
  17394. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17395. {
  17396. front: {
  17397. height: math.unit(6 + 2 / 12, "feet"),
  17398. weight: math.unit(170, "lb"),
  17399. name: "Front",
  17400. image: {
  17401. source: "./media/characters/jamesy/front.svg",
  17402. extra: 440 / 382,
  17403. bottom: 0.005
  17404. }
  17405. },
  17406. },
  17407. [
  17408. {
  17409. name: "Micro",
  17410. height: math.unit(3, "inches")
  17411. },
  17412. {
  17413. name: "Normal",
  17414. height: math.unit(6 + 2 / 12, "feet"),
  17415. default: true
  17416. },
  17417. {
  17418. name: "Macro",
  17419. height: math.unit(300, "feet")
  17420. },
  17421. {
  17422. name: "Megamacro",
  17423. height: math.unit(700, "miles")
  17424. },
  17425. ]
  17426. ))
  17427. characterMakers.push(() => makeCharacter(
  17428. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17429. {
  17430. front: {
  17431. height: math.unit(6, "feet"),
  17432. weight: math.unit(160, "lb"),
  17433. name: "Front",
  17434. image: {
  17435. source: "./media/characters/mark/front.svg",
  17436. extra: 3300 / 3100,
  17437. bottom: 136.42 / 3440.47
  17438. }
  17439. },
  17440. },
  17441. [
  17442. {
  17443. name: "Macro",
  17444. height: math.unit(120, "meters")
  17445. },
  17446. {
  17447. name: "Bigger Macro",
  17448. height: math.unit(350, "meters")
  17449. },
  17450. {
  17451. name: "Megamacro",
  17452. height: math.unit(8, "km"),
  17453. default: true
  17454. },
  17455. {
  17456. name: "Continental",
  17457. height: math.unit(4550, "km")
  17458. },
  17459. {
  17460. name: "Planetary",
  17461. height: math.unit(65000, "km")
  17462. },
  17463. ]
  17464. ))
  17465. characterMakers.push(() => makeCharacter(
  17466. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17467. {
  17468. front: {
  17469. height: math.unit(6, "feet"),
  17470. weight: math.unit(400, "lb"),
  17471. name: "Front",
  17472. image: {
  17473. source: "./media/characters/mac/front.svg",
  17474. extra: 1048 / 987.7,
  17475. bottom: 60 / 1107.6,
  17476. }
  17477. },
  17478. },
  17479. [
  17480. {
  17481. name: "Macro",
  17482. height: math.unit(500, "feet"),
  17483. default: true
  17484. },
  17485. ]
  17486. ))
  17487. characterMakers.push(() => makeCharacter(
  17488. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17489. {
  17490. front: {
  17491. height: math.unit(5 + 2 / 12, "feet"),
  17492. weight: math.unit(190, "lb"),
  17493. name: "Front",
  17494. image: {
  17495. source: "./media/characters/bari/front.svg",
  17496. extra: 3156 / 2880,
  17497. bottom: 0.03
  17498. }
  17499. },
  17500. back: {
  17501. height: math.unit(5 + 2 / 12, "feet"),
  17502. weight: math.unit(190, "lb"),
  17503. name: "Back",
  17504. image: {
  17505. source: "./media/characters/bari/back.svg",
  17506. extra: 3260 / 2834,
  17507. bottom: 0.025
  17508. }
  17509. },
  17510. frontPlush: {
  17511. height: math.unit(5 + 2 / 12, "feet"),
  17512. weight: math.unit(190, "lb"),
  17513. name: "Front (Plush)",
  17514. image: {
  17515. source: "./media/characters/bari/front-plush.svg",
  17516. extra: 1112 / 1061,
  17517. bottom: 0.002
  17518. }
  17519. },
  17520. },
  17521. [
  17522. {
  17523. name: "Micro",
  17524. height: math.unit(3, "inches")
  17525. },
  17526. {
  17527. name: "Normal",
  17528. height: math.unit(5 + 2 / 12, "feet"),
  17529. default: true
  17530. },
  17531. {
  17532. name: "Macro",
  17533. height: math.unit(20, "feet")
  17534. },
  17535. ]
  17536. ))
  17537. characterMakers.push(() => makeCharacter(
  17538. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17539. {
  17540. front: {
  17541. height: math.unit(6 + 1 / 12, "feet"),
  17542. weight: math.unit(275, "lb"),
  17543. name: "Front",
  17544. image: {
  17545. source: "./media/characters/hunter-misha-raven/front.svg"
  17546. }
  17547. },
  17548. },
  17549. [
  17550. {
  17551. name: "Mortal",
  17552. height: math.unit(6 + 1 / 12, "feet")
  17553. },
  17554. {
  17555. name: "Divine",
  17556. height: math.unit(1.12134e34, "parsecs"),
  17557. default: true
  17558. },
  17559. ]
  17560. ))
  17561. characterMakers.push(() => makeCharacter(
  17562. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17563. {
  17564. front: {
  17565. height: math.unit(6 + 3 / 12, "feet"),
  17566. weight: math.unit(220, "lb"),
  17567. name: "Front",
  17568. image: {
  17569. source: "./media/characters/max-calore/front.svg",
  17570. extra: 1700 / 1648,
  17571. bottom: 0.01
  17572. }
  17573. },
  17574. back: {
  17575. height: math.unit(6 + 3 / 12, "feet"),
  17576. weight: math.unit(220, "lb"),
  17577. name: "Back",
  17578. image: {
  17579. source: "./media/characters/max-calore/back.svg",
  17580. extra: 1700 / 1648,
  17581. bottom: 0.01
  17582. }
  17583. },
  17584. },
  17585. [
  17586. {
  17587. name: "Normal",
  17588. height: math.unit(6 + 3 / 12, "feet"),
  17589. default: true
  17590. },
  17591. ]
  17592. ))
  17593. characterMakers.push(() => makeCharacter(
  17594. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17595. {
  17596. side: {
  17597. height: math.unit(2 + 8 / 12, "feet"),
  17598. weight: math.unit(99, "lb"),
  17599. name: "Side",
  17600. image: {
  17601. source: "./media/characters/aspen/side.svg",
  17602. extra: 152 / 138,
  17603. bottom: 0.032
  17604. }
  17605. },
  17606. },
  17607. [
  17608. {
  17609. name: "Normal",
  17610. height: math.unit(2 + 8 / 12, "feet"),
  17611. default: true
  17612. },
  17613. ]
  17614. ))
  17615. characterMakers.push(() => makeCharacter(
  17616. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17617. {
  17618. side: {
  17619. height: math.unit(3 + 2 / 12, "feet"),
  17620. weight: math.unit(224, "lb"),
  17621. name: "Side",
  17622. image: {
  17623. source: "./media/characters/sheila-feral-wolf/side.svg",
  17624. extra: 179 / 166,
  17625. bottom: 0.03
  17626. }
  17627. },
  17628. },
  17629. [
  17630. {
  17631. name: "Normal",
  17632. height: math.unit(3 + 2 / 12, "feet"),
  17633. default: true
  17634. },
  17635. ]
  17636. ))
  17637. characterMakers.push(() => makeCharacter(
  17638. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17639. {
  17640. side: {
  17641. height: math.unit(1 + 9 / 12, "feet"),
  17642. weight: math.unit(38, "lb"),
  17643. name: "Side",
  17644. image: {
  17645. source: "./media/characters/michelle/side.svg",
  17646. extra: 147 / 136.7,
  17647. bottom: 0.03
  17648. }
  17649. },
  17650. },
  17651. [
  17652. {
  17653. name: "Normal",
  17654. height: math.unit(1 + 9 / 12, "feet"),
  17655. default: true
  17656. },
  17657. ]
  17658. ))
  17659. characterMakers.push(() => makeCharacter(
  17660. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17661. {
  17662. front: {
  17663. height: math.unit(1.54, "feet"),
  17664. weight: math.unit(50, "lb"),
  17665. name: "Front",
  17666. image: {
  17667. source: "./media/characters/nino/front.svg"
  17668. }
  17669. },
  17670. },
  17671. [
  17672. {
  17673. name: "Normal",
  17674. height: math.unit(1.54, "feet"),
  17675. default: true
  17676. },
  17677. ]
  17678. ))
  17679. characterMakers.push(() => makeCharacter(
  17680. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17681. {
  17682. front: {
  17683. height: math.unit(1.49, "feet"),
  17684. weight: math.unit(45, "lb"),
  17685. name: "Front",
  17686. image: {
  17687. source: "./media/characters/viola/front.svg"
  17688. }
  17689. },
  17690. },
  17691. [
  17692. {
  17693. name: "Normal",
  17694. height: math.unit(1.49, "feet"),
  17695. default: true
  17696. },
  17697. ]
  17698. ))
  17699. characterMakers.push(() => makeCharacter(
  17700. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17701. {
  17702. front: {
  17703. height: math.unit(6 + 5 / 12, "feet"),
  17704. weight: math.unit(580, "lb"),
  17705. name: "Front",
  17706. image: {
  17707. source: "./media/characters/atlas/front.svg",
  17708. extra: 298.5 / 290,
  17709. bottom: 0.015
  17710. }
  17711. },
  17712. },
  17713. [
  17714. {
  17715. name: "Normal",
  17716. height: math.unit(6 + 5 / 12, "feet"),
  17717. default: true
  17718. },
  17719. ]
  17720. ))
  17721. characterMakers.push(() => makeCharacter(
  17722. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17723. {
  17724. side: {
  17725. height: math.unit(15.6, "inches"),
  17726. weight: math.unit(10, "lb"),
  17727. name: "Side",
  17728. image: {
  17729. source: "./media/characters/davy/side.svg",
  17730. extra: 200 / 170,
  17731. bottom: 0.01
  17732. }
  17733. },
  17734. },
  17735. [
  17736. {
  17737. name: "Normal",
  17738. height: math.unit(15.6, "inches"),
  17739. default: true
  17740. },
  17741. ]
  17742. ))
  17743. characterMakers.push(() => makeCharacter(
  17744. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17745. {
  17746. side: {
  17747. height: math.unit(4 + 8 / 12, "feet"),
  17748. weight: math.unit(166, "lb"),
  17749. name: "Side",
  17750. image: {
  17751. source: "./media/characters/fiona/side.svg",
  17752. extra: 232 / 220,
  17753. bottom: 0.03
  17754. }
  17755. },
  17756. },
  17757. [
  17758. {
  17759. name: "Normal",
  17760. height: math.unit(4 + 8 / 12, "feet"),
  17761. default: true
  17762. },
  17763. ]
  17764. ))
  17765. characterMakers.push(() => makeCharacter(
  17766. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17767. {
  17768. front: {
  17769. height: math.unit(26, "inches"),
  17770. weight: math.unit(35, "lb"),
  17771. name: "Front",
  17772. image: {
  17773. source: "./media/characters/lyla/front.svg",
  17774. bottom: 0.1
  17775. }
  17776. },
  17777. },
  17778. [
  17779. {
  17780. name: "Normal",
  17781. height: math.unit(3, "feet"),
  17782. default: true
  17783. },
  17784. ]
  17785. ))
  17786. characterMakers.push(() => makeCharacter(
  17787. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17788. {
  17789. side: {
  17790. height: math.unit(1.8, "feet"),
  17791. weight: math.unit(44, "lb"),
  17792. name: "Side",
  17793. image: {
  17794. source: "./media/characters/perseus/side.svg",
  17795. bottom: 0.21
  17796. }
  17797. },
  17798. },
  17799. [
  17800. {
  17801. name: "Normal",
  17802. height: math.unit(1.8, "feet"),
  17803. default: true
  17804. },
  17805. ]
  17806. ))
  17807. characterMakers.push(() => makeCharacter(
  17808. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17809. {
  17810. side: {
  17811. height: math.unit(4 + 2 / 12, "feet"),
  17812. weight: math.unit(20, "lb"),
  17813. name: "Side",
  17814. image: {
  17815. source: "./media/characters/remus/side.svg"
  17816. }
  17817. },
  17818. },
  17819. [
  17820. {
  17821. name: "Normal",
  17822. height: math.unit(4 + 2 / 12, "feet"),
  17823. default: true
  17824. },
  17825. ]
  17826. ))
  17827. characterMakers.push(() => makeCharacter(
  17828. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17829. {
  17830. front: {
  17831. height: math.unit(4 + 11 / 12, "feet"),
  17832. weight: math.unit(114, "lb"),
  17833. name: "Front",
  17834. image: {
  17835. source: "./media/characters/raf/front.svg",
  17836. extra: 1504/1339,
  17837. bottom: 26/1530
  17838. }
  17839. },
  17840. side: {
  17841. height: math.unit(4 + 11 / 12, "feet"),
  17842. weight: math.unit(114, "lb"),
  17843. name: "Side",
  17844. image: {
  17845. source: "./media/characters/raf/side.svg",
  17846. extra: 1466/1316,
  17847. bottom: 29/1495
  17848. }
  17849. },
  17850. },
  17851. [
  17852. {
  17853. name: "Micro",
  17854. height: math.unit(2, "inches")
  17855. },
  17856. {
  17857. name: "Normal",
  17858. height: math.unit(4 + 11 / 12, "feet"),
  17859. default: true
  17860. },
  17861. {
  17862. name: "Macro",
  17863. height: math.unit(70, "feet")
  17864. },
  17865. ]
  17866. ))
  17867. characterMakers.push(() => makeCharacter(
  17868. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17869. {
  17870. front: {
  17871. height: math.unit(1.5, "meters"),
  17872. weight: math.unit(68, "kg"),
  17873. name: "Front",
  17874. image: {
  17875. source: "./media/characters/liam-einarr/front.svg",
  17876. extra: 2822 / 2666
  17877. }
  17878. },
  17879. back: {
  17880. height: math.unit(1.5, "meters"),
  17881. weight: math.unit(68, "kg"),
  17882. name: "Back",
  17883. image: {
  17884. source: "./media/characters/liam-einarr/back.svg",
  17885. extra: 2822 / 2666,
  17886. bottom: 0.015
  17887. }
  17888. },
  17889. },
  17890. [
  17891. {
  17892. name: "Normal",
  17893. height: math.unit(1.5, "meters"),
  17894. default: true
  17895. },
  17896. {
  17897. name: "Macro",
  17898. height: math.unit(150, "meters")
  17899. },
  17900. {
  17901. name: "Megamacro",
  17902. height: math.unit(35, "km")
  17903. },
  17904. ]
  17905. ))
  17906. characterMakers.push(() => makeCharacter(
  17907. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17908. {
  17909. front: {
  17910. height: math.unit(6, "feet"),
  17911. weight: math.unit(75, "kg"),
  17912. name: "Front",
  17913. image: {
  17914. source: "./media/characters/linda/front.svg",
  17915. extra: 930 / 874,
  17916. bottom: 0.004
  17917. }
  17918. },
  17919. },
  17920. [
  17921. {
  17922. name: "Normal",
  17923. height: math.unit(6, "feet"),
  17924. default: true
  17925. },
  17926. ]
  17927. ))
  17928. characterMakers.push(() => makeCharacter(
  17929. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17930. {
  17931. front: {
  17932. height: math.unit(6 + 8 / 12, "feet"),
  17933. weight: math.unit(220, "lb"),
  17934. name: "Front",
  17935. image: {
  17936. source: "./media/characters/caylex/front.svg",
  17937. extra: 821 / 772,
  17938. bottom: 0.07
  17939. }
  17940. },
  17941. back: {
  17942. height: math.unit(6 + 8 / 12, "feet"),
  17943. weight: math.unit(220, "lb"),
  17944. name: "Back",
  17945. image: {
  17946. source: "./media/characters/caylex/back.svg",
  17947. extra: 821 / 772,
  17948. bottom: 0.022
  17949. }
  17950. },
  17951. hand: {
  17952. height: math.unit(1.25, "feet"),
  17953. name: "Hand",
  17954. image: {
  17955. source: "./media/characters/caylex/hand.svg"
  17956. }
  17957. },
  17958. foot: {
  17959. height: math.unit(1.6, "feet"),
  17960. name: "Foot",
  17961. image: {
  17962. source: "./media/characters/caylex/foot.svg"
  17963. }
  17964. },
  17965. armored: {
  17966. height: math.unit(6 + 8 / 12, "feet"),
  17967. weight: math.unit(250, "lb"),
  17968. name: "Armored",
  17969. image: {
  17970. source: "./media/characters/caylex/armored.svg",
  17971. extra: 1420 / 1310,
  17972. bottom: 0.045
  17973. }
  17974. },
  17975. },
  17976. [
  17977. {
  17978. name: "Normal",
  17979. height: math.unit(6 + 8 / 12, "feet"),
  17980. default: true
  17981. },
  17982. {
  17983. name: "Normal+",
  17984. height: math.unit(12, "feet")
  17985. },
  17986. ]
  17987. ))
  17988. characterMakers.push(() => makeCharacter(
  17989. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17990. {
  17991. front: {
  17992. height: math.unit(7 + 6 / 12, "feet"),
  17993. weight: math.unit(288, "lb"),
  17994. name: "Front",
  17995. image: {
  17996. source: "./media/characters/alana/front.svg",
  17997. extra: 679 / 653,
  17998. bottom: 22.5 / 701
  17999. }
  18000. },
  18001. },
  18002. [
  18003. {
  18004. name: "Normal",
  18005. height: math.unit(7 + 6 / 12, "feet")
  18006. },
  18007. {
  18008. name: "Large",
  18009. height: math.unit(50, "feet")
  18010. },
  18011. {
  18012. name: "Macro",
  18013. height: math.unit(100, "feet"),
  18014. default: true
  18015. },
  18016. {
  18017. name: "Macro+",
  18018. height: math.unit(200, "feet")
  18019. },
  18020. ]
  18021. ))
  18022. characterMakers.push(() => makeCharacter(
  18023. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18024. {
  18025. front: {
  18026. height: math.unit(6 + 1 / 12, "feet"),
  18027. weight: math.unit(210, "lb"),
  18028. name: "Front",
  18029. image: {
  18030. source: "./media/characters/hasani/front.svg",
  18031. extra: 244 / 232,
  18032. bottom: 0.01
  18033. }
  18034. },
  18035. back: {
  18036. height: math.unit(6 + 1 / 12, "feet"),
  18037. weight: math.unit(210, "lb"),
  18038. name: "Back",
  18039. image: {
  18040. source: "./media/characters/hasani/back.svg",
  18041. extra: 244 / 232,
  18042. bottom: 0.01
  18043. }
  18044. },
  18045. },
  18046. [
  18047. {
  18048. name: "Normal",
  18049. height: math.unit(6 + 1 / 12, "feet")
  18050. },
  18051. {
  18052. name: "Macro",
  18053. height: math.unit(175, "feet"),
  18054. default: true
  18055. },
  18056. ]
  18057. ))
  18058. characterMakers.push(() => makeCharacter(
  18059. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18060. {
  18061. front: {
  18062. height: math.unit(1.82, "meters"),
  18063. weight: math.unit(140, "lb"),
  18064. name: "Front",
  18065. image: {
  18066. source: "./media/characters/nita/front.svg",
  18067. extra: 2473 / 2363,
  18068. bottom: 0.01
  18069. }
  18070. },
  18071. },
  18072. [
  18073. {
  18074. name: "Normal",
  18075. height: math.unit(1.82, "m")
  18076. },
  18077. {
  18078. name: "Macro",
  18079. height: math.unit(300, "m")
  18080. },
  18081. {
  18082. name: "Mistake Canon",
  18083. height: math.unit(0.5, "miles"),
  18084. default: true
  18085. },
  18086. {
  18087. name: "Big Mistake",
  18088. height: math.unit(13, "miles")
  18089. },
  18090. {
  18091. name: "Playing God",
  18092. height: math.unit(2450, "miles")
  18093. },
  18094. ]
  18095. ))
  18096. characterMakers.push(() => makeCharacter(
  18097. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18098. {
  18099. front: {
  18100. height: math.unit(4, "feet"),
  18101. weight: math.unit(120, "lb"),
  18102. name: "Front",
  18103. image: {
  18104. source: "./media/characters/shiriko/front.svg",
  18105. extra: 970/934,
  18106. bottom: 5/975
  18107. }
  18108. },
  18109. },
  18110. [
  18111. {
  18112. name: "Normal",
  18113. height: math.unit(4, "feet"),
  18114. default: true
  18115. },
  18116. ]
  18117. ))
  18118. characterMakers.push(() => makeCharacter(
  18119. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18120. {
  18121. front: {
  18122. height: math.unit(6, "feet"),
  18123. name: "front",
  18124. image: {
  18125. source: "./media/characters/deja/front.svg",
  18126. extra: 926 / 840,
  18127. bottom: 0.07
  18128. }
  18129. },
  18130. },
  18131. [
  18132. {
  18133. name: "Planck Length",
  18134. height: math.unit(1.6e-35, "meters")
  18135. },
  18136. {
  18137. name: "Normal",
  18138. height: math.unit(30.48, "meters"),
  18139. default: true
  18140. },
  18141. {
  18142. name: "Universal",
  18143. height: math.unit(8.8e26, "meters")
  18144. },
  18145. ]
  18146. ))
  18147. characterMakers.push(() => makeCharacter(
  18148. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18149. {
  18150. side: {
  18151. height: math.unit(8, "feet"),
  18152. weight: math.unit(6300, "lb"),
  18153. name: "Side",
  18154. image: {
  18155. source: "./media/characters/anima/side.svg",
  18156. bottom: 0.035
  18157. }
  18158. },
  18159. },
  18160. [
  18161. {
  18162. name: "Normal",
  18163. height: math.unit(8, "feet"),
  18164. default: true
  18165. },
  18166. ]
  18167. ))
  18168. characterMakers.push(() => makeCharacter(
  18169. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18170. {
  18171. front: {
  18172. height: math.unit(8, "feet"),
  18173. weight: math.unit(350, "lb"),
  18174. name: "Front",
  18175. image: {
  18176. source: "./media/characters/bianca/front.svg",
  18177. extra: 234 / 225,
  18178. bottom: 0.03
  18179. }
  18180. },
  18181. },
  18182. [
  18183. {
  18184. name: "Normal",
  18185. height: math.unit(8, "feet"),
  18186. default: true
  18187. },
  18188. ]
  18189. ))
  18190. characterMakers.push(() => makeCharacter(
  18191. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18192. {
  18193. front: {
  18194. height: math.unit(6, "feet"),
  18195. weight: math.unit(150, "lb"),
  18196. name: "Front",
  18197. image: {
  18198. source: "./media/characters/adinia/front.svg",
  18199. extra: 1845 / 1672,
  18200. bottom: 0.02
  18201. }
  18202. },
  18203. back: {
  18204. height: math.unit(6, "feet"),
  18205. weight: math.unit(150, "lb"),
  18206. name: "Back",
  18207. image: {
  18208. source: "./media/characters/adinia/back.svg",
  18209. extra: 1845 / 1672,
  18210. bottom: 0.002
  18211. }
  18212. },
  18213. },
  18214. [
  18215. {
  18216. name: "Normal",
  18217. height: math.unit(11 + 5 / 12, "feet"),
  18218. default: true
  18219. },
  18220. ]
  18221. ))
  18222. characterMakers.push(() => makeCharacter(
  18223. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18224. {
  18225. front: {
  18226. height: math.unit(3, "meters"),
  18227. weight: math.unit(200, "kg"),
  18228. name: "Front",
  18229. image: {
  18230. source: "./media/characters/lykasa/front.svg",
  18231. extra: 1076 / 976,
  18232. bottom: 0.06
  18233. }
  18234. },
  18235. },
  18236. [
  18237. {
  18238. name: "Normal",
  18239. height: math.unit(3, "meters")
  18240. },
  18241. {
  18242. name: "Kaiju",
  18243. height: math.unit(120, "meters"),
  18244. default: true
  18245. },
  18246. {
  18247. name: "Mega Kaiju",
  18248. height: math.unit(240, "km")
  18249. },
  18250. {
  18251. name: "Giga Kaiju",
  18252. height: math.unit(400, "megameters")
  18253. },
  18254. {
  18255. name: "Tera Kaiju",
  18256. height: math.unit(800, "gigameters")
  18257. },
  18258. {
  18259. name: "Kaiju Dragon Goddess",
  18260. height: math.unit(26, "zettaparsecs")
  18261. },
  18262. ]
  18263. ))
  18264. characterMakers.push(() => makeCharacter(
  18265. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18266. {
  18267. side: {
  18268. height: math.unit(283 / 124 * 6, "feet"),
  18269. weight: math.unit(35000, "lb"),
  18270. name: "Side",
  18271. image: {
  18272. source: "./media/characters/malfaren/side.svg",
  18273. extra: 1310/529,
  18274. bottom: 24/1334
  18275. }
  18276. },
  18277. front: {
  18278. height: math.unit(22.36, "feet"),
  18279. weight: math.unit(35000, "lb"),
  18280. name: "Front",
  18281. image: {
  18282. source: "./media/characters/malfaren/front.svg",
  18283. extra: 1237/1115,
  18284. bottom: 32/1269
  18285. }
  18286. },
  18287. maw: {
  18288. height: math.unit(6.9, "feet"),
  18289. name: "Maw",
  18290. image: {
  18291. source: "./media/characters/malfaren/maw.svg"
  18292. }
  18293. },
  18294. dick: {
  18295. height: math.unit(6.19, "feet"),
  18296. name: "Dick",
  18297. image: {
  18298. source: "./media/characters/malfaren/dick.svg"
  18299. }
  18300. },
  18301. eye: {
  18302. height: math.unit(0.69, "feet"),
  18303. name: "Eye",
  18304. image: {
  18305. source: "./media/characters/malfaren/eye.svg"
  18306. }
  18307. },
  18308. },
  18309. [
  18310. {
  18311. name: "Big",
  18312. height: math.unit(283 / 162 * 6, "feet"),
  18313. },
  18314. {
  18315. name: "Bigger",
  18316. height: math.unit(283 / 124 * 6, "feet")
  18317. },
  18318. {
  18319. name: "Massive",
  18320. height: math.unit(283 / 92 * 6, "feet"),
  18321. default: true
  18322. },
  18323. {
  18324. name: "👀💦",
  18325. height: math.unit(283 / 73 * 6, "feet"),
  18326. },
  18327. ]
  18328. ))
  18329. characterMakers.push(() => makeCharacter(
  18330. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18331. {
  18332. front: {
  18333. height: math.unit(1.7, "m"),
  18334. weight: math.unit(70, "kg"),
  18335. name: "Front",
  18336. image: {
  18337. source: "./media/characters/kernel/front.svg",
  18338. extra: 222 / 210,
  18339. bottom: 0.007
  18340. }
  18341. },
  18342. },
  18343. [
  18344. {
  18345. name: "Nano",
  18346. height: math.unit(17, "micrometers")
  18347. },
  18348. {
  18349. name: "Micro",
  18350. height: math.unit(1.7, "mm")
  18351. },
  18352. {
  18353. name: "Small",
  18354. height: math.unit(1.7, "cm")
  18355. },
  18356. {
  18357. name: "Normal",
  18358. height: math.unit(1.7, "m"),
  18359. default: true
  18360. },
  18361. ]
  18362. ))
  18363. characterMakers.push(() => makeCharacter(
  18364. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18365. {
  18366. front: {
  18367. height: math.unit(1.75, "meters"),
  18368. weight: math.unit(65, "kg"),
  18369. name: "Front",
  18370. image: {
  18371. source: "./media/characters/jayne-folest/front.svg",
  18372. extra: 2115 / 2007,
  18373. bottom: 0.02
  18374. }
  18375. },
  18376. back: {
  18377. height: math.unit(1.75, "meters"),
  18378. weight: math.unit(65, "kg"),
  18379. name: "Back",
  18380. image: {
  18381. source: "./media/characters/jayne-folest/back.svg",
  18382. extra: 2115 / 2007,
  18383. bottom: 0.005
  18384. }
  18385. },
  18386. frontClothed: {
  18387. height: math.unit(1.75, "meters"),
  18388. weight: math.unit(65, "kg"),
  18389. name: "Front (Clothed)",
  18390. image: {
  18391. source: "./media/characters/jayne-folest/front-clothed.svg",
  18392. extra: 2115 / 2007,
  18393. bottom: 0.035
  18394. }
  18395. },
  18396. hand: {
  18397. height: math.unit(1 / 1.260, "feet"),
  18398. name: "Hand",
  18399. image: {
  18400. source: "./media/characters/jayne-folest/hand.svg"
  18401. }
  18402. },
  18403. foot: {
  18404. height: math.unit(1 / 0.918, "feet"),
  18405. name: "Foot",
  18406. image: {
  18407. source: "./media/characters/jayne-folest/foot.svg"
  18408. }
  18409. },
  18410. },
  18411. [
  18412. {
  18413. name: "Micro",
  18414. height: math.unit(4, "cm")
  18415. },
  18416. {
  18417. name: "Normal",
  18418. height: math.unit(1.75, "meters")
  18419. },
  18420. {
  18421. name: "Macro",
  18422. height: math.unit(47.5, "meters"),
  18423. default: true
  18424. },
  18425. ]
  18426. ))
  18427. characterMakers.push(() => makeCharacter(
  18428. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18429. {
  18430. front: {
  18431. height: math.unit(180, "cm"),
  18432. weight: math.unit(70, "kg"),
  18433. name: "Front",
  18434. image: {
  18435. source: "./media/characters/algier/front.svg",
  18436. extra: 596 / 572,
  18437. bottom: 0.04
  18438. }
  18439. },
  18440. back: {
  18441. height: math.unit(180, "cm"),
  18442. weight: math.unit(70, "kg"),
  18443. name: "Back",
  18444. image: {
  18445. source: "./media/characters/algier/back.svg",
  18446. extra: 596 / 572,
  18447. bottom: 0.025
  18448. }
  18449. },
  18450. frontdressed: {
  18451. height: math.unit(180, "cm"),
  18452. weight: math.unit(150, "kg"),
  18453. name: "Front-dressed",
  18454. image: {
  18455. source: "./media/characters/algier/front-dressed.svg",
  18456. extra: 596 / 572,
  18457. bottom: 0.038
  18458. }
  18459. },
  18460. },
  18461. [
  18462. {
  18463. name: "Micro",
  18464. height: math.unit(5, "cm")
  18465. },
  18466. {
  18467. name: "Normal",
  18468. height: math.unit(180, "cm"),
  18469. default: true
  18470. },
  18471. {
  18472. name: "Macro",
  18473. height: math.unit(64, "m")
  18474. },
  18475. ]
  18476. ))
  18477. characterMakers.push(() => makeCharacter(
  18478. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18479. {
  18480. upright: {
  18481. height: math.unit(7, "feet"),
  18482. weight: math.unit(300, "lb"),
  18483. name: "Upright",
  18484. image: {
  18485. source: "./media/characters/pretzel/upright.svg",
  18486. extra: 534 / 522,
  18487. bottom: 0.065
  18488. }
  18489. },
  18490. sprawling: {
  18491. height: math.unit(3.75, "feet"),
  18492. weight: math.unit(300, "lb"),
  18493. name: "Sprawling",
  18494. image: {
  18495. source: "./media/characters/pretzel/sprawling.svg",
  18496. extra: 314 / 281,
  18497. bottom: 0.1
  18498. }
  18499. },
  18500. tongue: {
  18501. height: math.unit(2, "feet"),
  18502. name: "Tongue",
  18503. image: {
  18504. source: "./media/characters/pretzel/tongue.svg"
  18505. }
  18506. },
  18507. },
  18508. [
  18509. {
  18510. name: "Normal",
  18511. height: math.unit(7, "feet"),
  18512. default: true
  18513. },
  18514. {
  18515. name: "Oversized",
  18516. height: math.unit(15, "feet")
  18517. },
  18518. {
  18519. name: "Huge",
  18520. height: math.unit(30, "feet")
  18521. },
  18522. {
  18523. name: "Macro",
  18524. height: math.unit(250, "feet")
  18525. },
  18526. ]
  18527. ))
  18528. characterMakers.push(() => makeCharacter(
  18529. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18530. {
  18531. sideFront: {
  18532. height: math.unit(5 + 2 / 12, "feet"),
  18533. weight: math.unit(120, "lb"),
  18534. name: "Front Side",
  18535. image: {
  18536. source: "./media/characters/roxi/side-front.svg",
  18537. extra: 2924 / 2717,
  18538. bottom: 0.08
  18539. }
  18540. },
  18541. sideBack: {
  18542. height: math.unit(5 + 2 / 12, "feet"),
  18543. weight: math.unit(120, "lb"),
  18544. name: "Back Side",
  18545. image: {
  18546. source: "./media/characters/roxi/side-back.svg",
  18547. extra: 2904 / 2693,
  18548. bottom: 0.06
  18549. }
  18550. },
  18551. front: {
  18552. height: math.unit(5 + 2 / 12, "feet"),
  18553. weight: math.unit(120, "lb"),
  18554. name: "Front",
  18555. image: {
  18556. source: "./media/characters/roxi/front.svg",
  18557. extra: 2028 / 1907,
  18558. bottom: 0.01
  18559. }
  18560. },
  18561. frontAlt: {
  18562. height: math.unit(5 + 2 / 12, "feet"),
  18563. weight: math.unit(120, "lb"),
  18564. name: "Front (Alt)",
  18565. image: {
  18566. source: "./media/characters/roxi/front-alt.svg",
  18567. extra: 1828 / 1798,
  18568. bottom: 0.01
  18569. }
  18570. },
  18571. sitting: {
  18572. height: math.unit(2.8, "feet"),
  18573. weight: math.unit(120, "lb"),
  18574. name: "Sitting",
  18575. image: {
  18576. source: "./media/characters/roxi/sitting.svg",
  18577. extra: 2660 / 2462,
  18578. bottom: 0.1
  18579. }
  18580. },
  18581. },
  18582. [
  18583. {
  18584. name: "Normal",
  18585. height: math.unit(5 + 2 / 12, "feet"),
  18586. default: true
  18587. },
  18588. ]
  18589. ))
  18590. characterMakers.push(() => makeCharacter(
  18591. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18592. {
  18593. side: {
  18594. height: math.unit(55, "feet"),
  18595. weight: math.unit(153, "tons"),
  18596. name: "Side",
  18597. image: {
  18598. source: "./media/characters/shadow/side.svg",
  18599. extra: 701 / 628,
  18600. bottom: 0.02
  18601. }
  18602. },
  18603. flying: {
  18604. height: math.unit(145, "feet"),
  18605. weight: math.unit(153, "tons"),
  18606. name: "Flying",
  18607. image: {
  18608. source: "./media/characters/shadow/flying.svg"
  18609. }
  18610. },
  18611. },
  18612. [
  18613. {
  18614. name: "Normal",
  18615. height: math.unit(55, "feet"),
  18616. default: true
  18617. },
  18618. ]
  18619. ))
  18620. characterMakers.push(() => makeCharacter(
  18621. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18622. {
  18623. front: {
  18624. height: math.unit(6, "feet"),
  18625. weight: math.unit(200, "lb"),
  18626. name: "Front",
  18627. image: {
  18628. source: "./media/characters/marcie/front.svg",
  18629. extra: 960 / 876,
  18630. bottom: 58 / 1017.87
  18631. }
  18632. },
  18633. },
  18634. [
  18635. {
  18636. name: "Macro",
  18637. height: math.unit(1, "mile"),
  18638. default: true
  18639. },
  18640. ]
  18641. ))
  18642. characterMakers.push(() => makeCharacter(
  18643. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18644. {
  18645. front: {
  18646. height: math.unit(7, "feet"),
  18647. weight: math.unit(200, "lb"),
  18648. name: "Front",
  18649. image: {
  18650. source: "./media/characters/kachina/front.svg",
  18651. extra: 1290.68 / 1119,
  18652. bottom: 36.5 / 1327.18
  18653. }
  18654. },
  18655. },
  18656. [
  18657. {
  18658. name: "Normal",
  18659. height: math.unit(7, "feet"),
  18660. default: true
  18661. },
  18662. ]
  18663. ))
  18664. characterMakers.push(() => makeCharacter(
  18665. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18666. {
  18667. looking: {
  18668. height: math.unit(2, "meters"),
  18669. weight: math.unit(300, "kg"),
  18670. name: "Looking",
  18671. image: {
  18672. source: "./media/characters/kash/looking.svg",
  18673. extra: 474 / 344,
  18674. bottom: 0.03
  18675. }
  18676. },
  18677. side: {
  18678. height: math.unit(2, "meters"),
  18679. weight: math.unit(300, "kg"),
  18680. name: "Side",
  18681. image: {
  18682. source: "./media/characters/kash/side.svg",
  18683. extra: 302 / 251,
  18684. bottom: 0.03
  18685. }
  18686. },
  18687. front: {
  18688. height: math.unit(2, "meters"),
  18689. weight: math.unit(300, "kg"),
  18690. name: "Front",
  18691. image: {
  18692. source: "./media/characters/kash/front.svg",
  18693. extra: 495 / 360,
  18694. bottom: 0.015
  18695. }
  18696. },
  18697. },
  18698. [
  18699. {
  18700. name: "Normal",
  18701. height: math.unit(2, "meters"),
  18702. default: true
  18703. },
  18704. {
  18705. name: "Big",
  18706. height: math.unit(3, "meters")
  18707. },
  18708. {
  18709. name: "Large",
  18710. height: math.unit(5, "meters")
  18711. },
  18712. ]
  18713. ))
  18714. characterMakers.push(() => makeCharacter(
  18715. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18716. {
  18717. feeding: {
  18718. height: math.unit(6.7, "feet"),
  18719. weight: math.unit(350, "lb"),
  18720. name: "Feeding",
  18721. image: {
  18722. source: "./media/characters/lalim/feeding.svg",
  18723. }
  18724. },
  18725. },
  18726. [
  18727. {
  18728. name: "Normal",
  18729. height: math.unit(6.7, "feet"),
  18730. default: true
  18731. },
  18732. ]
  18733. ))
  18734. characterMakers.push(() => makeCharacter(
  18735. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18736. {
  18737. front: {
  18738. height: math.unit(9.5, "feet"),
  18739. weight: math.unit(600, "lb"),
  18740. name: "Front",
  18741. image: {
  18742. source: "./media/characters/de'vout/front.svg",
  18743. extra: 1443 / 1328,
  18744. bottom: 0.025
  18745. }
  18746. },
  18747. back: {
  18748. height: math.unit(9.5, "feet"),
  18749. weight: math.unit(600, "lb"),
  18750. name: "Back",
  18751. image: {
  18752. source: "./media/characters/de'vout/back.svg",
  18753. extra: 1443 / 1328
  18754. }
  18755. },
  18756. frontDressed: {
  18757. height: math.unit(9.5, "feet"),
  18758. weight: math.unit(600, "lb"),
  18759. name: "Front (Dressed",
  18760. image: {
  18761. source: "./media/characters/de'vout/front-dressed.svg",
  18762. extra: 1443 / 1328,
  18763. bottom: 0.025
  18764. }
  18765. },
  18766. backDressed: {
  18767. height: math.unit(9.5, "feet"),
  18768. weight: math.unit(600, "lb"),
  18769. name: "Back (Dressed",
  18770. image: {
  18771. source: "./media/characters/de'vout/back-dressed.svg",
  18772. extra: 1443 / 1328
  18773. }
  18774. },
  18775. },
  18776. [
  18777. {
  18778. name: "Normal",
  18779. height: math.unit(9.5, "feet"),
  18780. default: true
  18781. },
  18782. ]
  18783. ))
  18784. characterMakers.push(() => makeCharacter(
  18785. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18786. {
  18787. front: {
  18788. height: math.unit(8, "feet"),
  18789. weight: math.unit(225, "lb"),
  18790. name: "Front",
  18791. image: {
  18792. source: "./media/characters/talana/front.svg",
  18793. extra: 1410 / 1300,
  18794. bottom: 0.015
  18795. }
  18796. },
  18797. frontDressed: {
  18798. height: math.unit(8, "feet"),
  18799. weight: math.unit(225, "lb"),
  18800. name: "Front (Dressed",
  18801. image: {
  18802. source: "./media/characters/talana/front-dressed.svg",
  18803. extra: 1410 / 1300,
  18804. bottom: 0.015
  18805. }
  18806. },
  18807. },
  18808. [
  18809. {
  18810. name: "Normal",
  18811. height: math.unit(8, "feet"),
  18812. default: true
  18813. },
  18814. ]
  18815. ))
  18816. characterMakers.push(() => makeCharacter(
  18817. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18818. {
  18819. side: {
  18820. height: math.unit(7.2, "feet"),
  18821. weight: math.unit(150, "lb"),
  18822. name: "Side",
  18823. image: {
  18824. source: "./media/characters/xeauvok/side.svg",
  18825. extra: 1975 / 1523,
  18826. bottom: 0.07
  18827. }
  18828. },
  18829. },
  18830. [
  18831. {
  18832. name: "Normal",
  18833. height: math.unit(7.2, "feet"),
  18834. default: true
  18835. },
  18836. ]
  18837. ))
  18838. characterMakers.push(() => makeCharacter(
  18839. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18840. {
  18841. side: {
  18842. height: math.unit(4, "meters"),
  18843. weight: math.unit(2200, "kg"),
  18844. name: "Side",
  18845. image: {
  18846. source: "./media/characters/zara/side.svg",
  18847. extra: 765/744,
  18848. bottom: 156/921
  18849. }
  18850. },
  18851. },
  18852. [
  18853. {
  18854. name: "Normal",
  18855. height: math.unit(4, "meters"),
  18856. default: true
  18857. },
  18858. ]
  18859. ))
  18860. characterMakers.push(() => makeCharacter(
  18861. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18862. {
  18863. side: {
  18864. height: math.unit(6, "feet"),
  18865. weight: math.unit(150, "lb"),
  18866. name: "Side",
  18867. image: {
  18868. source: "./media/characters/richard-dragon/side.svg",
  18869. extra: 845 / 340,
  18870. bottom: 0.017
  18871. }
  18872. },
  18873. maw: {
  18874. height: math.unit(2.97, "feet"),
  18875. name: "Maw",
  18876. image: {
  18877. source: "./media/characters/richard-dragon/maw.svg"
  18878. }
  18879. },
  18880. },
  18881. [
  18882. ]
  18883. ))
  18884. characterMakers.push(() => makeCharacter(
  18885. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18886. {
  18887. front: {
  18888. height: math.unit(4, "feet"),
  18889. weight: math.unit(100, "lb"),
  18890. name: "Front",
  18891. image: {
  18892. source: "./media/characters/richard-smeargle/front.svg",
  18893. extra: 2952 / 2820,
  18894. bottom: 0.028
  18895. }
  18896. },
  18897. },
  18898. [
  18899. {
  18900. name: "Normal",
  18901. height: math.unit(4, "feet"),
  18902. default: true
  18903. },
  18904. {
  18905. name: "Dynamax",
  18906. height: math.unit(20, "meters")
  18907. },
  18908. ]
  18909. ))
  18910. characterMakers.push(() => makeCharacter(
  18911. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18912. {
  18913. front: {
  18914. height: math.unit(6, "feet"),
  18915. weight: math.unit(110, "lb"),
  18916. name: "Front",
  18917. image: {
  18918. source: "./media/characters/klay/front.svg",
  18919. extra: 962 / 883,
  18920. bottom: 0.04
  18921. }
  18922. },
  18923. back: {
  18924. height: math.unit(6, "feet"),
  18925. weight: math.unit(110, "lb"),
  18926. name: "Back",
  18927. image: {
  18928. source: "./media/characters/klay/back.svg",
  18929. extra: 962 / 883
  18930. }
  18931. },
  18932. beans: {
  18933. height: math.unit(1.15, "feet"),
  18934. name: "Beans",
  18935. image: {
  18936. source: "./media/characters/klay/beans.svg"
  18937. }
  18938. },
  18939. },
  18940. [
  18941. {
  18942. name: "Micro",
  18943. height: math.unit(6, "inches")
  18944. },
  18945. {
  18946. name: "Mini",
  18947. height: math.unit(3, "feet")
  18948. },
  18949. {
  18950. name: "Normal",
  18951. height: math.unit(6, "feet"),
  18952. default: true
  18953. },
  18954. {
  18955. name: "Big",
  18956. height: math.unit(25, "feet")
  18957. },
  18958. {
  18959. name: "Macro",
  18960. height: math.unit(100, "feet")
  18961. },
  18962. {
  18963. name: "Megamacro",
  18964. height: math.unit(400, "feet")
  18965. },
  18966. ]
  18967. ))
  18968. characterMakers.push(() => makeCharacter(
  18969. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18970. {
  18971. front: {
  18972. height: math.unit(6, "feet"),
  18973. weight: math.unit(160, "lb"),
  18974. name: "Front",
  18975. image: {
  18976. source: "./media/characters/marcus/front.svg",
  18977. extra: 734 / 676,
  18978. bottom: 0.03
  18979. }
  18980. },
  18981. },
  18982. [
  18983. {
  18984. name: "Little",
  18985. height: math.unit(6, "feet")
  18986. },
  18987. {
  18988. name: "Normal",
  18989. height: math.unit(110, "feet"),
  18990. default: true
  18991. },
  18992. {
  18993. name: "Macro",
  18994. height: math.unit(250, "feet")
  18995. },
  18996. {
  18997. name: "Megamacro",
  18998. height: math.unit(1000, "feet")
  18999. },
  19000. ]
  19001. ))
  19002. characterMakers.push(() => makeCharacter(
  19003. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19004. {
  19005. front: {
  19006. height: math.unit(7, "feet"),
  19007. weight: math.unit(275, "lb"),
  19008. name: "Front",
  19009. image: {
  19010. source: "./media/characters/claude-delroute/front.svg",
  19011. extra: 902/827,
  19012. bottom: 26/928
  19013. }
  19014. },
  19015. side: {
  19016. height: math.unit(7, "feet"),
  19017. weight: math.unit(275, "lb"),
  19018. name: "Side",
  19019. image: {
  19020. source: "./media/characters/claude-delroute/side.svg",
  19021. extra: 908/853,
  19022. bottom: 16/924
  19023. }
  19024. },
  19025. back: {
  19026. height: math.unit(7, "feet"),
  19027. weight: math.unit(275, "lb"),
  19028. name: "Back",
  19029. image: {
  19030. source: "./media/characters/claude-delroute/back.svg",
  19031. extra: 911/829,
  19032. bottom: 18/929
  19033. }
  19034. },
  19035. maw: {
  19036. height: math.unit(0.6407, "meters"),
  19037. name: "Maw",
  19038. image: {
  19039. source: "./media/characters/claude-delroute/maw.svg"
  19040. }
  19041. },
  19042. },
  19043. [
  19044. {
  19045. name: "Normal",
  19046. height: math.unit(7, "feet"),
  19047. default: true
  19048. },
  19049. {
  19050. name: "Lorge",
  19051. height: math.unit(20, "feet")
  19052. },
  19053. ]
  19054. ))
  19055. characterMakers.push(() => makeCharacter(
  19056. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19057. {
  19058. front: {
  19059. height: math.unit(8 + 4 / 12, "feet"),
  19060. weight: math.unit(600, "lb"),
  19061. name: "Front",
  19062. image: {
  19063. source: "./media/characters/dragonien/front.svg",
  19064. extra: 100 / 94,
  19065. bottom: 3.3 / 103.3445
  19066. }
  19067. },
  19068. back: {
  19069. height: math.unit(8 + 4 / 12, "feet"),
  19070. weight: math.unit(600, "lb"),
  19071. name: "Back",
  19072. image: {
  19073. source: "./media/characters/dragonien/back.svg",
  19074. extra: 776 / 746,
  19075. bottom: 6.4 / 782.0616
  19076. }
  19077. },
  19078. foot: {
  19079. height: math.unit(1.54, "feet"),
  19080. name: "Foot",
  19081. image: {
  19082. source: "./media/characters/dragonien/foot.svg",
  19083. }
  19084. },
  19085. },
  19086. [
  19087. {
  19088. name: "Normal",
  19089. height: math.unit(8 + 4 / 12, "feet"),
  19090. default: true
  19091. },
  19092. {
  19093. name: "Macro",
  19094. height: math.unit(200, "feet")
  19095. },
  19096. {
  19097. name: "Megamacro",
  19098. height: math.unit(1, "mile")
  19099. },
  19100. {
  19101. name: "Gigamacro",
  19102. height: math.unit(1000, "miles")
  19103. },
  19104. ]
  19105. ))
  19106. characterMakers.push(() => makeCharacter(
  19107. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19108. {
  19109. front: {
  19110. height: math.unit(5 + 2 / 12, "feet"),
  19111. weight: math.unit(110, "lb"),
  19112. name: "Front",
  19113. image: {
  19114. source: "./media/characters/desta/front.svg",
  19115. extra: 767 / 726,
  19116. bottom: 11.7 / 779
  19117. }
  19118. },
  19119. back: {
  19120. height: math.unit(5 + 2 / 12, "feet"),
  19121. weight: math.unit(110, "lb"),
  19122. name: "Back",
  19123. image: {
  19124. source: "./media/characters/desta/back.svg",
  19125. extra: 777 / 728,
  19126. bottom: 6 / 784
  19127. }
  19128. },
  19129. frontAlt: {
  19130. height: math.unit(5 + 2 / 12, "feet"),
  19131. weight: math.unit(110, "lb"),
  19132. name: "Front",
  19133. image: {
  19134. source: "./media/characters/desta/front-alt.svg",
  19135. extra: 1482 / 1417
  19136. }
  19137. },
  19138. side: {
  19139. height: math.unit(5 + 2 / 12, "feet"),
  19140. weight: math.unit(110, "lb"),
  19141. name: "Side",
  19142. image: {
  19143. source: "./media/characters/desta/side.svg",
  19144. extra: 2579 / 2491,
  19145. bottom: 0.053
  19146. }
  19147. },
  19148. },
  19149. [
  19150. {
  19151. name: "Micro",
  19152. height: math.unit(6, "inches")
  19153. },
  19154. {
  19155. name: "Normal",
  19156. height: math.unit(5 + 2 / 12, "feet"),
  19157. default: true
  19158. },
  19159. {
  19160. name: "Macro",
  19161. height: math.unit(62, "feet")
  19162. },
  19163. {
  19164. name: "Megamacro",
  19165. height: math.unit(1800, "feet")
  19166. },
  19167. ]
  19168. ))
  19169. characterMakers.push(() => makeCharacter(
  19170. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19171. {
  19172. front: {
  19173. height: math.unit(10, "feet"),
  19174. weight: math.unit(700, "lb"),
  19175. name: "Front",
  19176. image: {
  19177. source: "./media/characters/storm-alystar/front.svg",
  19178. extra: 2112 / 1898,
  19179. bottom: 0.034
  19180. }
  19181. },
  19182. },
  19183. [
  19184. {
  19185. name: "Micro",
  19186. height: math.unit(3.5, "inches")
  19187. },
  19188. {
  19189. name: "Normal",
  19190. height: math.unit(10, "feet"),
  19191. default: true
  19192. },
  19193. {
  19194. name: "Macro",
  19195. height: math.unit(400, "feet")
  19196. },
  19197. {
  19198. name: "Deific",
  19199. height: math.unit(60, "miles")
  19200. },
  19201. ]
  19202. ))
  19203. characterMakers.push(() => makeCharacter(
  19204. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19205. {
  19206. front: {
  19207. height: math.unit(2.35, "meters"),
  19208. weight: math.unit(119, "kg"),
  19209. name: "Front",
  19210. image: {
  19211. source: "./media/characters/ilia/front.svg",
  19212. extra: 1285 / 1255,
  19213. bottom: 0.06
  19214. }
  19215. },
  19216. },
  19217. [
  19218. {
  19219. name: "Normal",
  19220. height: math.unit(2.35, "meters")
  19221. },
  19222. {
  19223. name: "Macro",
  19224. height: math.unit(140, "meters"),
  19225. default: true
  19226. },
  19227. {
  19228. name: "Megamacro",
  19229. height: math.unit(100, "miles")
  19230. },
  19231. ]
  19232. ))
  19233. characterMakers.push(() => makeCharacter(
  19234. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19235. {
  19236. front: {
  19237. height: math.unit(6 + 5 / 12, "feet"),
  19238. weight: math.unit(190, "lb"),
  19239. name: "Front",
  19240. image: {
  19241. source: "./media/characters/kingdead/front.svg",
  19242. extra: 1228 / 1177
  19243. }
  19244. },
  19245. },
  19246. [
  19247. {
  19248. name: "Micro",
  19249. height: math.unit(7, "inches")
  19250. },
  19251. {
  19252. name: "Normal",
  19253. height: math.unit(6 + 5 / 12, "feet")
  19254. },
  19255. {
  19256. name: "Macro",
  19257. height: math.unit(150, "feet"),
  19258. default: true
  19259. },
  19260. {
  19261. name: "Megamacro",
  19262. height: math.unit(200, "miles")
  19263. },
  19264. ]
  19265. ))
  19266. characterMakers.push(() => makeCharacter(
  19267. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19268. {
  19269. front: {
  19270. height: math.unit(8, "feet"),
  19271. weight: math.unit(600, "lb"),
  19272. name: "Front",
  19273. image: {
  19274. source: "./media/characters/kyrehx/front.svg",
  19275. extra: 1195 / 1095,
  19276. bottom: 0.034
  19277. }
  19278. },
  19279. },
  19280. [
  19281. {
  19282. name: "Micro",
  19283. height: math.unit(2, "inches")
  19284. },
  19285. {
  19286. name: "Normal",
  19287. height: math.unit(8, "feet"),
  19288. default: true
  19289. },
  19290. {
  19291. name: "Macro",
  19292. height: math.unit(255, "feet")
  19293. },
  19294. ]
  19295. ))
  19296. characterMakers.push(() => makeCharacter(
  19297. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19298. {
  19299. front: {
  19300. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19301. weight: math.unit(184, "lb"),
  19302. name: "Front",
  19303. image: {
  19304. source: "./media/characters/xang/front.svg",
  19305. extra: 845 / 755
  19306. }
  19307. },
  19308. },
  19309. [
  19310. {
  19311. name: "Normal",
  19312. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19313. default: true
  19314. },
  19315. {
  19316. name: "Macro",
  19317. height: math.unit(0.935 * 146, "feet")
  19318. },
  19319. {
  19320. name: "Megamacro",
  19321. height: math.unit(0.935 * 3, "miles")
  19322. },
  19323. ]
  19324. ))
  19325. characterMakers.push(() => makeCharacter(
  19326. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19327. {
  19328. frontDressed: {
  19329. height: math.unit(5 + 7 / 12, "feet"),
  19330. weight: math.unit(140, "lb"),
  19331. name: "Front (Dressed)",
  19332. image: {
  19333. source: "./media/characters/doc-weardno/front-dressed.svg",
  19334. extra: 263 / 234
  19335. }
  19336. },
  19337. backDressed: {
  19338. height: math.unit(5 + 7 / 12, "feet"),
  19339. weight: math.unit(140, "lb"),
  19340. name: "Back (Dressed)",
  19341. image: {
  19342. source: "./media/characters/doc-weardno/back-dressed.svg",
  19343. extra: 266 / 238
  19344. }
  19345. },
  19346. front: {
  19347. height: math.unit(5 + 7 / 12, "feet"),
  19348. weight: math.unit(140, "lb"),
  19349. name: "Front",
  19350. image: {
  19351. source: "./media/characters/doc-weardno/front.svg",
  19352. extra: 254 / 233
  19353. }
  19354. },
  19355. },
  19356. [
  19357. {
  19358. name: "Micro",
  19359. height: math.unit(3, "inches")
  19360. },
  19361. {
  19362. name: "Normal",
  19363. height: math.unit(5 + 7 / 12, "feet"),
  19364. default: true
  19365. },
  19366. {
  19367. name: "Macro",
  19368. height: math.unit(25, "feet")
  19369. },
  19370. {
  19371. name: "Megamacro",
  19372. height: math.unit(2, "miles")
  19373. },
  19374. ]
  19375. ))
  19376. characterMakers.push(() => makeCharacter(
  19377. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19378. {
  19379. front: {
  19380. height: math.unit(6 + 2 / 12, "feet"),
  19381. weight: math.unit(153, "lb"),
  19382. name: "Front",
  19383. image: {
  19384. source: "./media/characters/seth-whilst/front.svg",
  19385. bottom: 0.07
  19386. }
  19387. },
  19388. },
  19389. [
  19390. {
  19391. name: "Micro",
  19392. height: math.unit(5, "inches")
  19393. },
  19394. {
  19395. name: "Normal",
  19396. height: math.unit(6 + 2 / 12, "feet"),
  19397. default: true
  19398. },
  19399. ]
  19400. ))
  19401. characterMakers.push(() => makeCharacter(
  19402. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19403. {
  19404. front: {
  19405. height: math.unit(3, "inches"),
  19406. weight: math.unit(8, "grams"),
  19407. name: "Front",
  19408. image: {
  19409. source: "./media/characters/pocket-jabari/front.svg",
  19410. extra: 1024 / 974,
  19411. bottom: 0.039
  19412. }
  19413. },
  19414. },
  19415. [
  19416. {
  19417. name: "Minimicro",
  19418. height: math.unit(8, "mm")
  19419. },
  19420. {
  19421. name: "Micro",
  19422. height: math.unit(3, "inches"),
  19423. default: true
  19424. },
  19425. {
  19426. name: "Normal",
  19427. height: math.unit(3, "feet")
  19428. },
  19429. ]
  19430. ))
  19431. characterMakers.push(() => makeCharacter(
  19432. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19433. {
  19434. frontDressed: {
  19435. height: math.unit(15, "feet"),
  19436. weight: math.unit(3280, "lb"),
  19437. name: "Front (Dressed)",
  19438. image: {
  19439. source: "./media/characters/sapphy/front-dressed.svg",
  19440. extra: 1951/1654,
  19441. bottom: 194/2145
  19442. },
  19443. form: "anthro",
  19444. default: true
  19445. },
  19446. backDressed: {
  19447. height: math.unit(15, "feet"),
  19448. weight: math.unit(3280, "lb"),
  19449. name: "Back (Dressed)",
  19450. image: {
  19451. source: "./media/characters/sapphy/back-dressed.svg",
  19452. extra: 2058/1918,
  19453. bottom: 125/2183
  19454. },
  19455. form: "anthro"
  19456. },
  19457. frontNude: {
  19458. height: math.unit(15, "feet"),
  19459. weight: math.unit(3280, "lb"),
  19460. name: "Front (Nude)",
  19461. image: {
  19462. source: "./media/characters/sapphy/front-nude.svg",
  19463. extra: 1951/1654,
  19464. bottom: 194/2145
  19465. },
  19466. form: "anthro"
  19467. },
  19468. backNude: {
  19469. height: math.unit(15, "feet"),
  19470. weight: math.unit(3280, "lb"),
  19471. name: "Back (Nude)",
  19472. image: {
  19473. source: "./media/characters/sapphy/back-nude.svg",
  19474. extra: 2058/1918,
  19475. bottom: 125/2183
  19476. },
  19477. form: "anthro"
  19478. },
  19479. full: {
  19480. height: math.unit(15, "feet"),
  19481. weight: math.unit(3280, "lb"),
  19482. name: "Full",
  19483. image: {
  19484. source: "./media/characters/sapphy/full.svg",
  19485. extra: 1396/1317,
  19486. bottom: 44/1440
  19487. },
  19488. form: "anthro"
  19489. },
  19490. dick: {
  19491. height: math.unit(3.8, "feet"),
  19492. name: "Dick",
  19493. image: {
  19494. source: "./media/characters/sapphy/dick.svg"
  19495. },
  19496. form: "anthro"
  19497. },
  19498. feral: {
  19499. height: math.unit(35, "feet"),
  19500. weight: math.unit(160, "tons"),
  19501. name: "Feral",
  19502. image: {
  19503. source: "./media/characters/sapphy/feral.svg",
  19504. extra: 1050/573,
  19505. bottom: 60/1110
  19506. },
  19507. form: "feral",
  19508. default: true
  19509. },
  19510. },
  19511. [
  19512. {
  19513. name: "Normal",
  19514. height: math.unit(15, "feet"),
  19515. form: "anthro"
  19516. },
  19517. {
  19518. name: "Casual Macro",
  19519. height: math.unit(120, "feet"),
  19520. form: "anthro"
  19521. },
  19522. {
  19523. name: "Macro",
  19524. height: math.unit(2150, "feet"),
  19525. default: true,
  19526. form: "anthro"
  19527. },
  19528. {
  19529. name: "Megamacro",
  19530. height: math.unit(8, "miles"),
  19531. form: "anthro"
  19532. },
  19533. {
  19534. name: "Galaxy Mom",
  19535. height: math.unit(6, "megalightyears"),
  19536. form: "anthro"
  19537. },
  19538. {
  19539. name: "Normal",
  19540. height: math.unit(35, "feet"),
  19541. form: "feral",
  19542. default: true
  19543. },
  19544. {
  19545. name: "Macro",
  19546. height: math.unit(300, "feet"),
  19547. form: "feral"
  19548. },
  19549. {
  19550. name: "Galaxy Mom",
  19551. height: math.unit(10, "megalightyears"),
  19552. form: "feral"
  19553. },
  19554. ],
  19555. {
  19556. "anthro": {
  19557. name: "Anthro",
  19558. default: true
  19559. },
  19560. "feral": {
  19561. name: "Feral"
  19562. }
  19563. }
  19564. ))
  19565. characterMakers.push(() => makeCharacter(
  19566. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19567. {
  19568. front: {
  19569. height: math.unit(6, "feet"),
  19570. weight: math.unit(170, "lb"),
  19571. name: "Front",
  19572. image: {
  19573. source: "./media/characters/kiro/front.svg",
  19574. extra: 1064 / 1012,
  19575. bottom: 0.052
  19576. }
  19577. },
  19578. },
  19579. [
  19580. {
  19581. name: "Micro",
  19582. height: math.unit(6, "inches")
  19583. },
  19584. {
  19585. name: "Normal",
  19586. height: math.unit(6, "feet"),
  19587. default: true
  19588. },
  19589. {
  19590. name: "Macro",
  19591. height: math.unit(72, "feet")
  19592. },
  19593. ]
  19594. ))
  19595. characterMakers.push(() => makeCharacter(
  19596. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19597. {
  19598. front: {
  19599. height: math.unit(5 + 9 / 12, "feet"),
  19600. weight: math.unit(175, "lb"),
  19601. name: "Front",
  19602. image: {
  19603. source: "./media/characters/irishfox/front.svg",
  19604. extra: 1912 / 1680,
  19605. bottom: 0.02
  19606. }
  19607. },
  19608. },
  19609. [
  19610. {
  19611. name: "Nano",
  19612. height: math.unit(1, "mm")
  19613. },
  19614. {
  19615. name: "Micro",
  19616. height: math.unit(2, "inches")
  19617. },
  19618. {
  19619. name: "Normal",
  19620. height: math.unit(5 + 9 / 12, "feet"),
  19621. default: true
  19622. },
  19623. {
  19624. name: "Macro",
  19625. height: math.unit(45, "feet")
  19626. },
  19627. ]
  19628. ))
  19629. characterMakers.push(() => makeCharacter(
  19630. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19631. {
  19632. front: {
  19633. height: math.unit(6 + 1 / 12, "feet"),
  19634. weight: math.unit(75, "lb"),
  19635. name: "Front",
  19636. image: {
  19637. source: "./media/characters/aronai-sieyes/front.svg",
  19638. extra: 1532/1450,
  19639. bottom: 42/1574
  19640. }
  19641. },
  19642. side: {
  19643. height: math.unit(6 + 1 / 12, "feet"),
  19644. weight: math.unit(75, "lb"),
  19645. name: "Side",
  19646. image: {
  19647. source: "./media/characters/aronai-sieyes/side.svg",
  19648. extra: 1422/1365,
  19649. bottom: 148/1570
  19650. }
  19651. },
  19652. back: {
  19653. height: math.unit(6 + 1 / 12, "feet"),
  19654. weight: math.unit(75, "lb"),
  19655. name: "Back",
  19656. image: {
  19657. source: "./media/characters/aronai-sieyes/back.svg",
  19658. extra: 1526/1464,
  19659. bottom: 51/1577
  19660. }
  19661. },
  19662. dressed: {
  19663. height: math.unit(6 + 1 / 12, "feet"),
  19664. weight: math.unit(75, "lb"),
  19665. name: "Dressed",
  19666. image: {
  19667. source: "./media/characters/aronai-sieyes/dressed.svg",
  19668. extra: 1559/1483,
  19669. bottom: 39/1598
  19670. }
  19671. },
  19672. slit: {
  19673. height: math.unit(1.3, "feet"),
  19674. name: "Slit",
  19675. image: {
  19676. source: "./media/characters/aronai-sieyes/slit.svg"
  19677. }
  19678. },
  19679. slitSpread: {
  19680. height: math.unit(0.9, "feet"),
  19681. name: "Slit (Spread)",
  19682. image: {
  19683. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19684. }
  19685. },
  19686. rump: {
  19687. height: math.unit(1.3, "feet"),
  19688. name: "Rump",
  19689. image: {
  19690. source: "./media/characters/aronai-sieyes/rump.svg"
  19691. }
  19692. },
  19693. maw: {
  19694. height: math.unit(1.25, "feet"),
  19695. name: "Maw",
  19696. image: {
  19697. source: "./media/characters/aronai-sieyes/maw.svg"
  19698. }
  19699. },
  19700. feral: {
  19701. height: math.unit(18, "feet"),
  19702. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19703. name: "Feral",
  19704. image: {
  19705. source: "./media/characters/aronai-sieyes/feral.svg",
  19706. extra: 1530 / 1240,
  19707. bottom: 0.035
  19708. }
  19709. },
  19710. },
  19711. [
  19712. {
  19713. name: "Micro",
  19714. height: math.unit(2, "inches")
  19715. },
  19716. {
  19717. name: "Normal",
  19718. height: math.unit(6 + 1 / 12, "feet"),
  19719. default: true
  19720. }
  19721. ]
  19722. ))
  19723. characterMakers.push(() => makeCharacter(
  19724. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19725. {
  19726. front: {
  19727. height: math.unit(12, "feet"),
  19728. weight: math.unit(410, "kg"),
  19729. name: "Front",
  19730. image: {
  19731. source: "./media/characters/xuna/front.svg",
  19732. extra: 2184 / 1980
  19733. }
  19734. },
  19735. side: {
  19736. height: math.unit(12, "feet"),
  19737. weight: math.unit(410, "kg"),
  19738. name: "Side",
  19739. image: {
  19740. source: "./media/characters/xuna/side.svg",
  19741. extra: 2184 / 1980
  19742. }
  19743. },
  19744. back: {
  19745. height: math.unit(12, "feet"),
  19746. weight: math.unit(410, "kg"),
  19747. name: "Back",
  19748. image: {
  19749. source: "./media/characters/xuna/back.svg",
  19750. extra: 2184 / 1980
  19751. }
  19752. },
  19753. },
  19754. [
  19755. {
  19756. name: "Nano glow",
  19757. height: math.unit(10, "nm")
  19758. },
  19759. {
  19760. name: "Micro floof",
  19761. height: math.unit(0.3, "m")
  19762. },
  19763. {
  19764. name: "Huggable softy boi",
  19765. height: math.unit(3.6576, "m"),
  19766. default: true
  19767. },
  19768. {
  19769. name: "Admirable floof",
  19770. height: math.unit(80, "meters")
  19771. },
  19772. {
  19773. name: "Gentle macro",
  19774. height: math.unit(300, "meters")
  19775. },
  19776. {
  19777. name: "Very careful floof",
  19778. height: math.unit(3200, "meters")
  19779. },
  19780. {
  19781. name: "The mega floof",
  19782. height: math.unit(36000, "meters")
  19783. },
  19784. {
  19785. name: "Giga-fur-Wicker",
  19786. height: math.unit(4800000, "meters")
  19787. },
  19788. {
  19789. name: "Licky world",
  19790. height: math.unit(20000000, "meters")
  19791. },
  19792. {
  19793. name: "Floofy cyan sun",
  19794. height: math.unit(1500000000, "meters")
  19795. },
  19796. {
  19797. name: "Milky Wicker",
  19798. height: math.unit(1000000000000000000000, "meters")
  19799. },
  19800. {
  19801. name: "The observing Wicker",
  19802. height: math.unit(999999999999999999999999999, "meters")
  19803. },
  19804. ]
  19805. ))
  19806. characterMakers.push(() => makeCharacter(
  19807. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19808. {
  19809. front: {
  19810. height: math.unit(5 + 9 / 12, "feet"),
  19811. weight: math.unit(150, "lb"),
  19812. name: "Front",
  19813. image: {
  19814. source: "./media/characters/arokha-sieyes/front.svg",
  19815. extra: 1425 / 1284,
  19816. bottom: 0.05
  19817. }
  19818. },
  19819. },
  19820. [
  19821. {
  19822. name: "Normal",
  19823. height: math.unit(5 + 9 / 12, "feet")
  19824. },
  19825. {
  19826. name: "Macro",
  19827. height: math.unit(30, "meters"),
  19828. default: true
  19829. },
  19830. ]
  19831. ))
  19832. characterMakers.push(() => makeCharacter(
  19833. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19834. {
  19835. front: {
  19836. height: math.unit(6, "feet"),
  19837. weight: math.unit(180, "lb"),
  19838. name: "Front",
  19839. image: {
  19840. source: "./media/characters/arokh-sieyes/front.svg",
  19841. extra: 1830 / 1769,
  19842. bottom: 0.01
  19843. }
  19844. },
  19845. },
  19846. [
  19847. {
  19848. name: "Normal",
  19849. height: math.unit(6, "feet")
  19850. },
  19851. {
  19852. name: "Macro",
  19853. height: math.unit(30, "meters"),
  19854. default: true
  19855. },
  19856. ]
  19857. ))
  19858. characterMakers.push(() => makeCharacter(
  19859. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19860. {
  19861. side: {
  19862. height: math.unit(13 + 1 / 12, "feet"),
  19863. weight: math.unit(8.5, "tonnes"),
  19864. name: "Side",
  19865. image: {
  19866. source: "./media/characters/goldeneye/side.svg",
  19867. extra: 1182 / 778,
  19868. bottom: 0.067
  19869. }
  19870. },
  19871. paw: {
  19872. height: math.unit(3.4, "feet"),
  19873. name: "Paw",
  19874. image: {
  19875. source: "./media/characters/goldeneye/paw.svg"
  19876. }
  19877. },
  19878. },
  19879. [
  19880. {
  19881. name: "Normal",
  19882. height: math.unit(13 + 1 / 12, "feet"),
  19883. default: true
  19884. },
  19885. ]
  19886. ))
  19887. characterMakers.push(() => makeCharacter(
  19888. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19889. {
  19890. front: {
  19891. height: math.unit(6 + 1 / 12, "feet"),
  19892. weight: math.unit(210, "lb"),
  19893. name: "Front",
  19894. image: {
  19895. source: "./media/characters/leonardo-lycheborne/front.svg",
  19896. extra: 776/723,
  19897. bottom: 34/810
  19898. }
  19899. },
  19900. side: {
  19901. height: math.unit(6 + 1 / 12, "feet"),
  19902. weight: math.unit(210, "lb"),
  19903. name: "Side",
  19904. image: {
  19905. source: "./media/characters/leonardo-lycheborne/side.svg",
  19906. extra: 780/728,
  19907. bottom: 12/792
  19908. }
  19909. },
  19910. back: {
  19911. height: math.unit(6 + 1 / 12, "feet"),
  19912. weight: math.unit(210, "lb"),
  19913. name: "Back",
  19914. image: {
  19915. source: "./media/characters/leonardo-lycheborne/back.svg",
  19916. extra: 775/721,
  19917. bottom: 17/792
  19918. }
  19919. },
  19920. hand: {
  19921. height: math.unit(1.08, "feet"),
  19922. name: "Hand",
  19923. image: {
  19924. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19925. }
  19926. },
  19927. foot: {
  19928. height: math.unit(1.32, "feet"),
  19929. name: "Foot",
  19930. image: {
  19931. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19932. }
  19933. },
  19934. maw: {
  19935. height: math.unit(1, "feet"),
  19936. name: "Maw",
  19937. image: {
  19938. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19939. }
  19940. },
  19941. were: {
  19942. height: math.unit(20, "feet"),
  19943. weight: math.unit(7800, "lb"),
  19944. name: "Were",
  19945. image: {
  19946. source: "./media/characters/leonardo-lycheborne/were.svg",
  19947. extra: 1224/1165,
  19948. bottom: 72/1296
  19949. }
  19950. },
  19951. feral: {
  19952. height: math.unit(7.5, "feet"),
  19953. weight: math.unit(600, "lb"),
  19954. name: "Feral",
  19955. image: {
  19956. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19957. extra: 797/702,
  19958. bottom: 139/936
  19959. }
  19960. },
  19961. taur: {
  19962. height: math.unit(11, "feet"),
  19963. weight: math.unit(3300, "lb"),
  19964. name: "Taur",
  19965. image: {
  19966. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19967. extra: 1271/1197,
  19968. bottom: 47/1318
  19969. }
  19970. },
  19971. barghest: {
  19972. height: math.unit(11, "feet"),
  19973. weight: math.unit(1300, "lb"),
  19974. name: "Barghest",
  19975. image: {
  19976. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19977. extra: 1291/1204,
  19978. bottom: 37/1328
  19979. }
  19980. },
  19981. dick: {
  19982. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19983. name: "Dick",
  19984. image: {
  19985. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19986. }
  19987. },
  19988. dickWere: {
  19989. height: math.unit((20) / 3.8, "feet"),
  19990. name: "Dick (Were)",
  19991. image: {
  19992. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19993. }
  19994. },
  19995. },
  19996. [
  19997. {
  19998. name: "Normal",
  19999. height: math.unit(6 + 1 / 12, "feet"),
  20000. default: true
  20001. },
  20002. ]
  20003. ))
  20004. characterMakers.push(() => makeCharacter(
  20005. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20006. {
  20007. front: {
  20008. height: math.unit(10, "feet"),
  20009. weight: math.unit(350, "lb"),
  20010. name: "Front",
  20011. image: {
  20012. source: "./media/characters/jet/front.svg",
  20013. extra: 2050 / 1980,
  20014. bottom: 0.013
  20015. }
  20016. },
  20017. back: {
  20018. height: math.unit(10, "feet"),
  20019. weight: math.unit(350, "lb"),
  20020. name: "Back",
  20021. image: {
  20022. source: "./media/characters/jet/back.svg",
  20023. extra: 2050 / 1980,
  20024. bottom: 0.013
  20025. }
  20026. },
  20027. },
  20028. [
  20029. {
  20030. name: "Micro",
  20031. height: math.unit(6, "inches")
  20032. },
  20033. {
  20034. name: "Normal",
  20035. height: math.unit(10, "feet"),
  20036. default: true
  20037. },
  20038. {
  20039. name: "Macro",
  20040. height: math.unit(100, "feet")
  20041. },
  20042. ]
  20043. ))
  20044. characterMakers.push(() => makeCharacter(
  20045. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20046. {
  20047. front: {
  20048. height: math.unit(15, "feet"),
  20049. weight: math.unit(2800, "lb"),
  20050. name: "Front",
  20051. image: {
  20052. source: "./media/characters/tanarath/front.svg",
  20053. extra: 2392 / 2220,
  20054. bottom: 0.03
  20055. }
  20056. },
  20057. back: {
  20058. height: math.unit(15, "feet"),
  20059. weight: math.unit(2800, "lb"),
  20060. name: "Back",
  20061. image: {
  20062. source: "./media/characters/tanarath/back.svg",
  20063. extra: 2392 / 2220,
  20064. bottom: 0.03
  20065. }
  20066. },
  20067. },
  20068. [
  20069. {
  20070. name: "Normal",
  20071. height: math.unit(15, "feet"),
  20072. default: true
  20073. },
  20074. ]
  20075. ))
  20076. characterMakers.push(() => makeCharacter(
  20077. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20078. {
  20079. front: {
  20080. height: math.unit(7 + 1 / 12, "feet"),
  20081. weight: math.unit(175, "lb"),
  20082. name: "Front",
  20083. image: {
  20084. source: "./media/characters/patty-cattybatty/front.svg",
  20085. extra: 908 / 874,
  20086. bottom: 0.025
  20087. }
  20088. },
  20089. },
  20090. [
  20091. {
  20092. name: "Micro",
  20093. height: math.unit(1, "inch")
  20094. },
  20095. {
  20096. name: "Normal",
  20097. height: math.unit(7 + 1 / 12, "feet")
  20098. },
  20099. {
  20100. name: "Mini Macro",
  20101. height: math.unit(155, "feet")
  20102. },
  20103. {
  20104. name: "Macro",
  20105. height: math.unit(1077, "feet")
  20106. },
  20107. {
  20108. name: "Mega Macro",
  20109. height: math.unit(47650, "feet"),
  20110. default: true
  20111. },
  20112. {
  20113. name: "Giga Macro",
  20114. height: math.unit(440, "miles")
  20115. },
  20116. {
  20117. name: "Tera Macro",
  20118. height: math.unit(8700, "miles")
  20119. },
  20120. {
  20121. name: "Planetary Macro",
  20122. height: math.unit(32700, "miles")
  20123. },
  20124. {
  20125. name: "Solar Macro",
  20126. height: math.unit(550000, "miles")
  20127. },
  20128. {
  20129. name: "Celestial Macro",
  20130. height: math.unit(2.5, "AU")
  20131. },
  20132. ]
  20133. ))
  20134. characterMakers.push(() => makeCharacter(
  20135. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20136. {
  20137. front: {
  20138. height: math.unit(4 + 5 / 12, "feet"),
  20139. weight: math.unit(90, "lb"),
  20140. name: "Front",
  20141. image: {
  20142. source: "./media/characters/cappu/front.svg",
  20143. extra: 1247 / 1152,
  20144. bottom: 0.012
  20145. }
  20146. },
  20147. },
  20148. [
  20149. {
  20150. name: "Normal",
  20151. height: math.unit(4 + 5 / 12, "feet"),
  20152. default: true
  20153. },
  20154. ]
  20155. ))
  20156. characterMakers.push(() => makeCharacter(
  20157. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20158. {
  20159. frontDressed: {
  20160. height: math.unit(70, "cm"),
  20161. weight: math.unit(6, "kg"),
  20162. name: "Front (Dressed)",
  20163. image: {
  20164. source: "./media/characters/sebi/front-dressed.svg",
  20165. extra: 713.5 / 686.5,
  20166. bottom: 0.003
  20167. }
  20168. },
  20169. front: {
  20170. height: math.unit(70, "cm"),
  20171. weight: math.unit(5, "kg"),
  20172. name: "Front",
  20173. image: {
  20174. source: "./media/characters/sebi/front.svg",
  20175. extra: 713.5 / 686.5,
  20176. bottom: 0.003
  20177. }
  20178. }
  20179. },
  20180. [
  20181. {
  20182. name: "Normal",
  20183. height: math.unit(70, "cm"),
  20184. default: true
  20185. },
  20186. {
  20187. name: "Macro",
  20188. height: math.unit(8, "meters")
  20189. },
  20190. ]
  20191. ))
  20192. characterMakers.push(() => makeCharacter(
  20193. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20194. {
  20195. front: {
  20196. height: math.unit(6, "feet"),
  20197. weight: math.unit(150, "lb"),
  20198. name: "Front",
  20199. image: {
  20200. source: "./media/characters/typhek/front.svg",
  20201. extra: 1948 / 1929,
  20202. bottom: 0.025
  20203. }
  20204. },
  20205. side: {
  20206. height: math.unit(6, "feet"),
  20207. weight: math.unit(150, "lb"),
  20208. name: "Side",
  20209. image: {
  20210. source: "./media/characters/typhek/side.svg",
  20211. extra: 2034 / 2010,
  20212. bottom: 0.003
  20213. }
  20214. },
  20215. back: {
  20216. height: math.unit(6, "feet"),
  20217. weight: math.unit(150, "lb"),
  20218. name: "Back",
  20219. image: {
  20220. source: "./media/characters/typhek/back.svg",
  20221. extra: 2005 / 1978,
  20222. bottom: 0.004
  20223. }
  20224. },
  20225. palm: {
  20226. height: math.unit(1.2, "feet"),
  20227. name: "Palm",
  20228. image: {
  20229. source: "./media/characters/typhek/palm.svg"
  20230. }
  20231. },
  20232. fist: {
  20233. height: math.unit(1.1, "feet"),
  20234. name: "Fist",
  20235. image: {
  20236. source: "./media/characters/typhek/fist.svg"
  20237. }
  20238. },
  20239. foot: {
  20240. height: math.unit(1.57, "feet"),
  20241. name: "Foot",
  20242. image: {
  20243. source: "./media/characters/typhek/foot.svg"
  20244. }
  20245. },
  20246. sole: {
  20247. height: math.unit(2.05, "feet"),
  20248. name: "Sole",
  20249. image: {
  20250. source: "./media/characters/typhek/sole.svg"
  20251. }
  20252. },
  20253. },
  20254. [
  20255. {
  20256. name: "Macro",
  20257. height: math.unit(40, "stories"),
  20258. default: true
  20259. },
  20260. {
  20261. name: "Megamacro",
  20262. height: math.unit(1, "mile")
  20263. },
  20264. {
  20265. name: "Gigamacro",
  20266. height: math.unit(4000, "solarradii")
  20267. },
  20268. {
  20269. name: "Universal",
  20270. height: math.unit(1.1, "universes")
  20271. }
  20272. ]
  20273. ))
  20274. characterMakers.push(() => makeCharacter(
  20275. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20276. {
  20277. side: {
  20278. height: math.unit(5 + 7 / 12, "feet"),
  20279. weight: math.unit(150, "lb"),
  20280. name: "Side",
  20281. image: {
  20282. source: "./media/characters/kassy/side.svg",
  20283. extra: 1280 / 1225,
  20284. bottom: 0.002
  20285. }
  20286. },
  20287. front: {
  20288. height: math.unit(5 + 7 / 12, "feet"),
  20289. weight: math.unit(150, "lb"),
  20290. name: "Front",
  20291. image: {
  20292. source: "./media/characters/kassy/front.svg",
  20293. extra: 1280 / 1225,
  20294. bottom: 0.025
  20295. }
  20296. },
  20297. back: {
  20298. height: math.unit(5 + 7 / 12, "feet"),
  20299. weight: math.unit(150, "lb"),
  20300. name: "Back",
  20301. image: {
  20302. source: "./media/characters/kassy/back.svg",
  20303. extra: 1280 / 1225,
  20304. bottom: 0.002
  20305. }
  20306. },
  20307. foot: {
  20308. height: math.unit(1.266, "feet"),
  20309. name: "Foot",
  20310. image: {
  20311. source: "./media/characters/kassy/foot.svg"
  20312. }
  20313. },
  20314. },
  20315. [
  20316. {
  20317. name: "Normal",
  20318. height: math.unit(5 + 7 / 12, "feet")
  20319. },
  20320. {
  20321. name: "Macro",
  20322. height: math.unit(137, "feet"),
  20323. default: true
  20324. },
  20325. {
  20326. name: "Megamacro",
  20327. height: math.unit(1, "mile")
  20328. },
  20329. ]
  20330. ))
  20331. characterMakers.push(() => makeCharacter(
  20332. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20333. {
  20334. front: {
  20335. height: math.unit(6 + 1 / 12, "feet"),
  20336. weight: math.unit(200, "lb"),
  20337. name: "Front",
  20338. image: {
  20339. source: "./media/characters/neil/front.svg",
  20340. extra: 1326 / 1250,
  20341. bottom: 0.023
  20342. }
  20343. },
  20344. },
  20345. [
  20346. {
  20347. name: "Normal",
  20348. height: math.unit(6 + 1 / 12, "feet"),
  20349. default: true
  20350. },
  20351. {
  20352. name: "Macro",
  20353. height: math.unit(200, "feet")
  20354. },
  20355. ]
  20356. ))
  20357. characterMakers.push(() => makeCharacter(
  20358. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20359. {
  20360. front: {
  20361. height: math.unit(5 + 9 / 12, "feet"),
  20362. weight: math.unit(190, "lb"),
  20363. name: "Front",
  20364. image: {
  20365. source: "./media/characters/atticus/front.svg",
  20366. extra: 2934 / 2785,
  20367. bottom: 0.025
  20368. }
  20369. },
  20370. },
  20371. [
  20372. {
  20373. name: "Normal",
  20374. height: math.unit(5 + 9 / 12, "feet"),
  20375. default: true
  20376. },
  20377. {
  20378. name: "Macro",
  20379. height: math.unit(180, "feet")
  20380. },
  20381. ]
  20382. ))
  20383. characterMakers.push(() => makeCharacter(
  20384. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20385. {
  20386. side: {
  20387. height: math.unit(9, "feet"),
  20388. weight: math.unit(650, "lb"),
  20389. name: "Side",
  20390. image: {
  20391. source: "./media/characters/milo/side.svg",
  20392. extra: 2644 / 2310,
  20393. bottom: 0.032
  20394. }
  20395. },
  20396. },
  20397. [
  20398. {
  20399. name: "Normal",
  20400. height: math.unit(9, "feet"),
  20401. default: true
  20402. },
  20403. {
  20404. name: "Macro",
  20405. height: math.unit(300, "feet")
  20406. },
  20407. ]
  20408. ))
  20409. characterMakers.push(() => makeCharacter(
  20410. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20411. {
  20412. side: {
  20413. height: math.unit(8, "meters"),
  20414. weight: math.unit(90000, "kg"),
  20415. name: "Side",
  20416. image: {
  20417. source: "./media/characters/ijzer/side.svg",
  20418. extra: 2756 / 1600,
  20419. bottom: 0.01
  20420. }
  20421. },
  20422. },
  20423. [
  20424. {
  20425. name: "Small",
  20426. height: math.unit(3, "meters")
  20427. },
  20428. {
  20429. name: "Normal",
  20430. height: math.unit(8, "meters"),
  20431. default: true
  20432. },
  20433. {
  20434. name: "Normal+",
  20435. height: math.unit(10, "meters")
  20436. },
  20437. {
  20438. name: "Bigger",
  20439. height: math.unit(24, "meters")
  20440. },
  20441. {
  20442. name: "Huge",
  20443. height: math.unit(80, "meters")
  20444. },
  20445. ]
  20446. ))
  20447. characterMakers.push(() => makeCharacter(
  20448. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20449. {
  20450. front: {
  20451. height: math.unit(6 + 2 / 12, "feet"),
  20452. weight: math.unit(153, "lb"),
  20453. name: "Front",
  20454. image: {
  20455. source: "./media/characters/luca-cervicum/front.svg",
  20456. extra: 370 / 327,
  20457. bottom: 0.015
  20458. }
  20459. },
  20460. back: {
  20461. height: math.unit(6 + 2 / 12, "feet"),
  20462. weight: math.unit(153, "lb"),
  20463. name: "Back",
  20464. image: {
  20465. source: "./media/characters/luca-cervicum/back.svg",
  20466. extra: 367 / 333,
  20467. bottom: 0.005
  20468. }
  20469. },
  20470. frontGear: {
  20471. height: math.unit(6 + 2 / 12, "feet"),
  20472. weight: math.unit(173, "lb"),
  20473. name: "Front (Gear)",
  20474. image: {
  20475. source: "./media/characters/luca-cervicum/front-gear.svg",
  20476. extra: 377 / 333,
  20477. bottom: 0.006
  20478. }
  20479. },
  20480. },
  20481. [
  20482. {
  20483. name: "Normal",
  20484. height: math.unit(6 + 2 / 12, "feet"),
  20485. default: true
  20486. },
  20487. ]
  20488. ))
  20489. characterMakers.push(() => makeCharacter(
  20490. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20491. {
  20492. front: {
  20493. height: math.unit(6 + 1 / 12, "feet"),
  20494. weight: math.unit(304, "lb"),
  20495. name: "Front",
  20496. image: {
  20497. source: "./media/characters/oliver/front.svg",
  20498. extra: 157 / 143,
  20499. bottom: 0.08
  20500. }
  20501. },
  20502. },
  20503. [
  20504. {
  20505. name: "Normal",
  20506. height: math.unit(6 + 1 / 12, "feet"),
  20507. default: true
  20508. },
  20509. ]
  20510. ))
  20511. characterMakers.push(() => makeCharacter(
  20512. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20513. {
  20514. front: {
  20515. height: math.unit(5 + 7 / 12, "feet"),
  20516. weight: math.unit(140, "lb"),
  20517. name: "Front",
  20518. image: {
  20519. source: "./media/characters/shane/front.svg",
  20520. extra: 304 / 289,
  20521. bottom: 0.005
  20522. }
  20523. },
  20524. },
  20525. [
  20526. {
  20527. name: "Normal",
  20528. height: math.unit(5 + 7 / 12, "feet"),
  20529. default: true
  20530. },
  20531. ]
  20532. ))
  20533. characterMakers.push(() => makeCharacter(
  20534. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20535. {
  20536. front: {
  20537. height: math.unit(5 + 9 / 12, "feet"),
  20538. weight: math.unit(178, "lb"),
  20539. name: "Front",
  20540. image: {
  20541. source: "./media/characters/shin/front.svg",
  20542. extra: 159 / 151,
  20543. bottom: 0.015
  20544. }
  20545. },
  20546. },
  20547. [
  20548. {
  20549. name: "Normal",
  20550. height: math.unit(5 + 9 / 12, "feet"),
  20551. default: true
  20552. },
  20553. ]
  20554. ))
  20555. characterMakers.push(() => makeCharacter(
  20556. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20557. {
  20558. front: {
  20559. height: math.unit(5 + 10 / 12, "feet"),
  20560. weight: math.unit(168, "lb"),
  20561. name: "Front",
  20562. image: {
  20563. source: "./media/characters/xerxes/front.svg",
  20564. extra: 282 / 260,
  20565. bottom: 0.045
  20566. }
  20567. },
  20568. },
  20569. [
  20570. {
  20571. name: "Normal",
  20572. height: math.unit(5 + 10 / 12, "feet"),
  20573. default: true
  20574. },
  20575. ]
  20576. ))
  20577. characterMakers.push(() => makeCharacter(
  20578. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20579. {
  20580. front: {
  20581. height: math.unit(6 + 7 / 12, "feet"),
  20582. weight: math.unit(208, "lb"),
  20583. name: "Front",
  20584. image: {
  20585. source: "./media/characters/chaska/front.svg",
  20586. extra: 332 / 319,
  20587. bottom: 0.015
  20588. }
  20589. },
  20590. },
  20591. [
  20592. {
  20593. name: "Normal",
  20594. height: math.unit(6 + 7 / 12, "feet"),
  20595. default: true
  20596. },
  20597. ]
  20598. ))
  20599. characterMakers.push(() => makeCharacter(
  20600. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20601. {
  20602. front: {
  20603. height: math.unit(5 + 8 / 12, "feet"),
  20604. weight: math.unit(208, "lb"),
  20605. name: "Front",
  20606. image: {
  20607. source: "./media/characters/enuk/front.svg",
  20608. extra: 437 / 406,
  20609. bottom: 0.02
  20610. }
  20611. },
  20612. },
  20613. [
  20614. {
  20615. name: "Normal",
  20616. height: math.unit(5 + 8 / 12, "feet"),
  20617. default: true
  20618. },
  20619. ]
  20620. ))
  20621. characterMakers.push(() => makeCharacter(
  20622. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20623. {
  20624. front: {
  20625. height: math.unit(5 + 10 / 12, "feet"),
  20626. weight: math.unit(252, "lb"),
  20627. name: "Front",
  20628. image: {
  20629. source: "./media/characters/bruun/front.svg",
  20630. extra: 197 / 187,
  20631. bottom: 0.012
  20632. }
  20633. },
  20634. },
  20635. [
  20636. {
  20637. name: "Normal",
  20638. height: math.unit(5 + 10 / 12, "feet"),
  20639. default: true
  20640. },
  20641. ]
  20642. ))
  20643. characterMakers.push(() => makeCharacter(
  20644. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20645. {
  20646. front: {
  20647. height: math.unit(6 + 10 / 12, "feet"),
  20648. weight: math.unit(255, "lb"),
  20649. name: "Front",
  20650. image: {
  20651. source: "./media/characters/alexeev/front.svg",
  20652. extra: 213 / 200,
  20653. bottom: 0.05
  20654. }
  20655. },
  20656. },
  20657. [
  20658. {
  20659. name: "Normal",
  20660. height: math.unit(6 + 10 / 12, "feet"),
  20661. default: true
  20662. },
  20663. ]
  20664. ))
  20665. characterMakers.push(() => makeCharacter(
  20666. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20667. {
  20668. front: {
  20669. height: math.unit(2 + 8 / 12, "feet"),
  20670. weight: math.unit(22, "lb"),
  20671. name: "Front",
  20672. image: {
  20673. source: "./media/characters/evelyn/front.svg",
  20674. extra: 208 / 180
  20675. }
  20676. },
  20677. },
  20678. [
  20679. {
  20680. name: "Normal",
  20681. height: math.unit(2 + 8 / 12, "feet"),
  20682. default: true
  20683. },
  20684. ]
  20685. ))
  20686. characterMakers.push(() => makeCharacter(
  20687. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20688. {
  20689. front: {
  20690. height: math.unit(5 + 9 / 12, "feet"),
  20691. weight: math.unit(139, "lb"),
  20692. name: "Front",
  20693. image: {
  20694. source: "./media/characters/inca/front.svg",
  20695. extra: 294 / 291,
  20696. bottom: 0.03
  20697. }
  20698. },
  20699. },
  20700. [
  20701. {
  20702. name: "Normal",
  20703. height: math.unit(5 + 9 / 12, "feet"),
  20704. default: true
  20705. },
  20706. ]
  20707. ))
  20708. characterMakers.push(() => makeCharacter(
  20709. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20710. {
  20711. front: {
  20712. height: math.unit(6 + 3 / 12, "feet"),
  20713. weight: math.unit(185, "lb"),
  20714. name: "Front",
  20715. image: {
  20716. source: "./media/characters/mera/front.svg",
  20717. extra: 291 / 277,
  20718. bottom: 0.03
  20719. }
  20720. },
  20721. },
  20722. [
  20723. {
  20724. name: "Normal",
  20725. height: math.unit(6 + 3 / 12, "feet"),
  20726. default: true
  20727. },
  20728. ]
  20729. ))
  20730. characterMakers.push(() => makeCharacter(
  20731. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20732. {
  20733. front: {
  20734. height: math.unit(6 + 7 / 12, "feet"),
  20735. weight: math.unit(160, "lb"),
  20736. name: "Front",
  20737. image: {
  20738. source: "./media/characters/ceres/front.svg",
  20739. extra: 1023 / 950,
  20740. bottom: 0.027
  20741. }
  20742. },
  20743. back: {
  20744. height: math.unit(6 + 7 / 12, "feet"),
  20745. weight: math.unit(160, "lb"),
  20746. name: "Back",
  20747. image: {
  20748. source: "./media/characters/ceres/back.svg",
  20749. extra: 1023 / 950
  20750. }
  20751. },
  20752. },
  20753. [
  20754. {
  20755. name: "Normal",
  20756. height: math.unit(6 + 7 / 12, "feet"),
  20757. default: true
  20758. },
  20759. ]
  20760. ))
  20761. characterMakers.push(() => makeCharacter(
  20762. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20763. {
  20764. front: {
  20765. height: math.unit(5 + 10 / 12, "feet"),
  20766. weight: math.unit(150, "lb"),
  20767. name: "Front",
  20768. image: {
  20769. source: "./media/characters/kris/front.svg",
  20770. extra: 885 / 803,
  20771. bottom: 0.03
  20772. }
  20773. },
  20774. },
  20775. [
  20776. {
  20777. name: "Normal",
  20778. height: math.unit(5 + 10 / 12, "feet"),
  20779. default: true
  20780. },
  20781. ]
  20782. ))
  20783. characterMakers.push(() => makeCharacter(
  20784. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20785. {
  20786. front: {
  20787. height: math.unit(7, "feet"),
  20788. weight: math.unit(120, "kg"),
  20789. name: "Front",
  20790. image: {
  20791. source: "./media/characters/taluthus/front.svg",
  20792. extra: 903 / 833,
  20793. bottom: 0.015
  20794. }
  20795. },
  20796. },
  20797. [
  20798. {
  20799. name: "Normal",
  20800. height: math.unit(7, "feet"),
  20801. default: true
  20802. },
  20803. {
  20804. name: "Macro",
  20805. height: math.unit(300, "feet")
  20806. },
  20807. ]
  20808. ))
  20809. characterMakers.push(() => makeCharacter(
  20810. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20811. {
  20812. front: {
  20813. height: math.unit(5 + 9 / 12, "feet"),
  20814. weight: math.unit(145, "lb"),
  20815. name: "Front",
  20816. image: {
  20817. source: "./media/characters/dawn/front.svg",
  20818. extra: 2094 / 2016,
  20819. bottom: 0.025
  20820. }
  20821. },
  20822. back: {
  20823. height: math.unit(5 + 9 / 12, "feet"),
  20824. weight: math.unit(160, "lb"),
  20825. name: "Back",
  20826. image: {
  20827. source: "./media/characters/dawn/back.svg",
  20828. extra: 2112 / 2080,
  20829. bottom: 0.005
  20830. }
  20831. },
  20832. },
  20833. [
  20834. {
  20835. name: "Normal",
  20836. height: math.unit(6 + 7 / 12, "feet"),
  20837. default: true
  20838. },
  20839. ]
  20840. ))
  20841. characterMakers.push(() => makeCharacter(
  20842. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20843. {
  20844. anthro: {
  20845. height: math.unit(8 + 3 / 12, "feet"),
  20846. weight: math.unit(450, "lb"),
  20847. name: "Anthro",
  20848. image: {
  20849. source: "./media/characters/arador/anthro.svg",
  20850. extra: 1835 / 1718,
  20851. bottom: 0.025
  20852. }
  20853. },
  20854. feral: {
  20855. height: math.unit(4, "feet"),
  20856. weight: math.unit(200, "lb"),
  20857. name: "Feral",
  20858. image: {
  20859. source: "./media/characters/arador/feral.svg",
  20860. extra: 1683 / 1514,
  20861. bottom: 0.07
  20862. }
  20863. },
  20864. },
  20865. [
  20866. {
  20867. name: "Normal",
  20868. height: math.unit(8 + 3 / 12, "feet")
  20869. },
  20870. {
  20871. name: "Macro",
  20872. height: math.unit(82.5, "feet"),
  20873. default: true
  20874. },
  20875. ]
  20876. ))
  20877. characterMakers.push(() => makeCharacter(
  20878. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20879. {
  20880. front: {
  20881. height: math.unit(5 + 10 / 12, "feet"),
  20882. weight: math.unit(125, "lb"),
  20883. name: "Front",
  20884. image: {
  20885. source: "./media/characters/dharsi/front.svg",
  20886. extra: 716 / 630,
  20887. bottom: 0.035
  20888. }
  20889. },
  20890. },
  20891. [
  20892. {
  20893. name: "Nano",
  20894. height: math.unit(100, "nm")
  20895. },
  20896. {
  20897. name: "Micro",
  20898. height: math.unit(2, "inches")
  20899. },
  20900. {
  20901. name: "Normal",
  20902. height: math.unit(5 + 10 / 12, "feet"),
  20903. default: true
  20904. },
  20905. {
  20906. name: "Macro",
  20907. height: math.unit(1000, "feet")
  20908. },
  20909. {
  20910. name: "Megamacro",
  20911. height: math.unit(10, "miles")
  20912. },
  20913. {
  20914. name: "Gigamacro",
  20915. height: math.unit(3000, "miles")
  20916. },
  20917. {
  20918. name: "Teramacro",
  20919. height: math.unit(500000, "miles")
  20920. },
  20921. {
  20922. name: "Teramacro+",
  20923. height: math.unit(30, "galaxies")
  20924. },
  20925. ]
  20926. ))
  20927. characterMakers.push(() => makeCharacter(
  20928. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20929. {
  20930. front: {
  20931. height: math.unit(6, "feet"),
  20932. weight: math.unit(150, "lb"),
  20933. name: "Front",
  20934. image: {
  20935. source: "./media/characters/deathy/front.svg",
  20936. extra: 1552 / 1463,
  20937. bottom: 0.025
  20938. }
  20939. },
  20940. side: {
  20941. height: math.unit(6, "feet"),
  20942. weight: math.unit(150, "lb"),
  20943. name: "Side",
  20944. image: {
  20945. source: "./media/characters/deathy/side.svg",
  20946. extra: 1604 / 1455,
  20947. bottom: 0.025
  20948. }
  20949. },
  20950. back: {
  20951. height: math.unit(6, "feet"),
  20952. weight: math.unit(150, "lb"),
  20953. name: "Back",
  20954. image: {
  20955. source: "./media/characters/deathy/back.svg",
  20956. extra: 1580 / 1463,
  20957. bottom: 0.005
  20958. }
  20959. },
  20960. },
  20961. [
  20962. {
  20963. name: "Micro",
  20964. height: math.unit(5, "millimeters")
  20965. },
  20966. {
  20967. name: "Normal",
  20968. height: math.unit(6 + 5 / 12, "feet"),
  20969. default: true
  20970. },
  20971. ]
  20972. ))
  20973. characterMakers.push(() => makeCharacter(
  20974. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20975. {
  20976. front: {
  20977. height: math.unit(16, "feet"),
  20978. weight: math.unit(4000, "lb"),
  20979. name: "Front",
  20980. image: {
  20981. source: "./media/characters/juniper/front.svg",
  20982. bottom: 0.04
  20983. }
  20984. },
  20985. },
  20986. [
  20987. {
  20988. name: "Normal",
  20989. height: math.unit(16, "feet"),
  20990. default: true
  20991. },
  20992. ]
  20993. ))
  20994. characterMakers.push(() => makeCharacter(
  20995. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20996. {
  20997. front: {
  20998. height: math.unit(6, "feet"),
  20999. weight: math.unit(150, "lb"),
  21000. name: "Front",
  21001. image: {
  21002. source: "./media/characters/hipster/front.svg",
  21003. extra: 1312 / 1209,
  21004. bottom: 0.025
  21005. }
  21006. },
  21007. back: {
  21008. height: math.unit(6, "feet"),
  21009. weight: math.unit(150, "lb"),
  21010. name: "Back",
  21011. image: {
  21012. source: "./media/characters/hipster/back.svg",
  21013. extra: 1281 / 1196,
  21014. bottom: 0.01
  21015. }
  21016. },
  21017. },
  21018. [
  21019. {
  21020. name: "Micro",
  21021. height: math.unit(1, "mm")
  21022. },
  21023. {
  21024. name: "Normal",
  21025. height: math.unit(4, "inches"),
  21026. default: true
  21027. },
  21028. {
  21029. name: "Macro",
  21030. height: math.unit(500, "feet")
  21031. },
  21032. {
  21033. name: "Megamacro",
  21034. height: math.unit(1000, "miles")
  21035. },
  21036. ]
  21037. ))
  21038. characterMakers.push(() => makeCharacter(
  21039. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21040. {
  21041. front: {
  21042. height: math.unit(6, "feet"),
  21043. weight: math.unit(150, "lb"),
  21044. name: "Front",
  21045. image: {
  21046. source: "./media/characters/tendirmuldr/front.svg",
  21047. extra: 1878 / 1772,
  21048. bottom: 0.015
  21049. }
  21050. },
  21051. },
  21052. [
  21053. {
  21054. name: "Megamacro",
  21055. height: math.unit(1500, "miles"),
  21056. default: true
  21057. },
  21058. ]
  21059. ))
  21060. characterMakers.push(() => makeCharacter(
  21061. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21062. {
  21063. front: {
  21064. height: math.unit(14, "feet"),
  21065. weight: math.unit(12000, "lb"),
  21066. name: "Front",
  21067. image: {
  21068. source: "./media/characters/mort/front.svg",
  21069. extra: 365 / 318,
  21070. bottom: 0.01
  21071. }
  21072. },
  21073. side: {
  21074. height: math.unit(14, "feet"),
  21075. weight: math.unit(12000, "lb"),
  21076. name: "Side",
  21077. image: {
  21078. source: "./media/characters/mort/side.svg",
  21079. extra: 365 / 318,
  21080. bottom: 0.052
  21081. },
  21082. default: true
  21083. },
  21084. back: {
  21085. height: math.unit(14, "feet"),
  21086. weight: math.unit(12000, "lb"),
  21087. name: "Back",
  21088. image: {
  21089. source: "./media/characters/mort/back.svg",
  21090. extra: 371 / 332,
  21091. bottom: 0.18
  21092. }
  21093. },
  21094. },
  21095. [
  21096. {
  21097. name: "Normal",
  21098. height: math.unit(14, "feet"),
  21099. default: true
  21100. },
  21101. ]
  21102. ))
  21103. characterMakers.push(() => makeCharacter(
  21104. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21105. {
  21106. front: {
  21107. height: math.unit(8, "feet"),
  21108. weight: math.unit(1, "ton"),
  21109. name: "Front",
  21110. image: {
  21111. source: "./media/characters/lycoa/front.svg",
  21112. extra: 1836/1728,
  21113. bottom: 81/1917
  21114. }
  21115. },
  21116. back: {
  21117. height: math.unit(8, "feet"),
  21118. weight: math.unit(1, "ton"),
  21119. name: "Back",
  21120. image: {
  21121. source: "./media/characters/lycoa/back.svg",
  21122. extra: 1785/1720,
  21123. bottom: 91/1876
  21124. }
  21125. },
  21126. head: {
  21127. height: math.unit(1.6243, "feet"),
  21128. name: "Head",
  21129. image: {
  21130. source: "./media/characters/lycoa/head.svg",
  21131. extra: 1011/782,
  21132. bottom: 0/1011
  21133. }
  21134. },
  21135. tailmaw: {
  21136. height: math.unit(1.9, "feet"),
  21137. name: "Tailmaw",
  21138. image: {
  21139. source: "./media/characters/lycoa/tailmaw.svg"
  21140. }
  21141. },
  21142. tentacles: {
  21143. height: math.unit(2.1, "feet"),
  21144. name: "Tentacles",
  21145. image: {
  21146. source: "./media/characters/lycoa/tentacles.svg"
  21147. }
  21148. },
  21149. dick: {
  21150. height: math.unit(1.73, "feet"),
  21151. name: "Dick",
  21152. image: {
  21153. source: "./media/characters/lycoa/dick.svg"
  21154. }
  21155. },
  21156. },
  21157. [
  21158. {
  21159. name: "Normal",
  21160. height: math.unit(8, "feet"),
  21161. default: true
  21162. },
  21163. {
  21164. name: "Macro",
  21165. height: math.unit(30, "feet")
  21166. },
  21167. ]
  21168. ))
  21169. characterMakers.push(() => makeCharacter(
  21170. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21171. {
  21172. front: {
  21173. height: math.unit(4 + 2 / 12, "feet"),
  21174. weight: math.unit(70, "lb"),
  21175. name: "Front",
  21176. image: {
  21177. source: "./media/characters/naldara/front.svg",
  21178. extra: 1664/1387,
  21179. bottom: 81/1745
  21180. },
  21181. form: "anthro",
  21182. default: true
  21183. },
  21184. naga: {
  21185. height: math.unit(20, "feet"),
  21186. weight: math.unit(15000, "kg"),
  21187. name: "Front",
  21188. image: {
  21189. source: "./media/characters/naldara/naga.svg",
  21190. extra: 1590/1396,
  21191. bottom: 285/1875
  21192. },
  21193. form: "naga",
  21194. default: true
  21195. },
  21196. },
  21197. [
  21198. {
  21199. name: "Normal",
  21200. height: math.unit(4 + 2 / 12, "feet"),
  21201. form: "anthro",
  21202. default: true
  21203. },
  21204. {
  21205. name: "Normal",
  21206. height: math.unit(20, "feet"),
  21207. form: "naga",
  21208. default: true
  21209. },
  21210. ],
  21211. {
  21212. "anthro": {
  21213. name: "Anthro",
  21214. default: true
  21215. },
  21216. "naga": {
  21217. name: "Naga"
  21218. }
  21219. }
  21220. ))
  21221. characterMakers.push(() => makeCharacter(
  21222. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21223. {
  21224. front: {
  21225. height: math.unit(13 + 7 / 12, "feet"),
  21226. weight: math.unit(1500, "lb"),
  21227. name: "Front",
  21228. image: {
  21229. source: "./media/characters/briar/front.svg",
  21230. extra: 1223/1157,
  21231. bottom: 123/1346
  21232. }
  21233. },
  21234. },
  21235. [
  21236. {
  21237. name: "Normal",
  21238. height: math.unit(13 + 7 / 12, "feet"),
  21239. default: true
  21240. },
  21241. ]
  21242. ))
  21243. characterMakers.push(() => makeCharacter(
  21244. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21245. {
  21246. side: {
  21247. height: math.unit(16, "feet"),
  21248. weight: math.unit(500, "lb"),
  21249. name: "Side",
  21250. image: {
  21251. source: "./media/characters/vanguard/side.svg",
  21252. extra: 1022/914,
  21253. bottom: 30/1052
  21254. }
  21255. },
  21256. sideAlt: {
  21257. height: math.unit(10, "feet"),
  21258. weight: math.unit(500, "lb"),
  21259. name: "Side (Alt)",
  21260. image: {
  21261. source: "./media/characters/vanguard/side-alt.svg",
  21262. extra: 502 / 425,
  21263. bottom: 0.087
  21264. }
  21265. },
  21266. },
  21267. [
  21268. {
  21269. name: "Normal",
  21270. height: math.unit(17.71, "feet"),
  21271. default: true
  21272. },
  21273. ]
  21274. ))
  21275. characterMakers.push(() => makeCharacter(
  21276. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21277. {
  21278. front: {
  21279. height: math.unit(7.5, "feet"),
  21280. weight: math.unit(2, "lb"),
  21281. name: "Front",
  21282. image: {
  21283. source: "./media/characters/artemis/work-safe-front.svg",
  21284. extra: 1192 / 1075,
  21285. bottom: 0.07
  21286. },
  21287. form: "work-safe",
  21288. default: true
  21289. },
  21290. frontNsfw: {
  21291. height: math.unit(7.5, "feet"),
  21292. weight: math.unit(2, "lb"),
  21293. name: "Front",
  21294. image: {
  21295. source: "./media/characters/artemis/calibrating-front.svg",
  21296. extra: 1192 / 1075,
  21297. bottom: 0.07
  21298. },
  21299. form: "calibrating",
  21300. default: true
  21301. },
  21302. frontNsfwer: {
  21303. height: math.unit(7.5, "feet"),
  21304. weight: math.unit(2, "lb"),
  21305. name: "Front",
  21306. image: {
  21307. source: "./media/characters/artemis/oversize-load-front.svg",
  21308. extra: 1192 / 1075,
  21309. bottom: 0.07
  21310. },
  21311. form: "oversize-load",
  21312. default: true
  21313. },
  21314. side: {
  21315. height: math.unit(7.5, "feet"),
  21316. weight: math.unit(2, "lb"),
  21317. name: "Side",
  21318. image: {
  21319. source: "./media/characters/artemis/work-safe-side.svg",
  21320. extra: 1192 / 1075,
  21321. bottom: 0.07
  21322. },
  21323. form: "work-safe"
  21324. },
  21325. sideNsfw: {
  21326. height: math.unit(7.5, "feet"),
  21327. weight: math.unit(2, "lb"),
  21328. name: "Side",
  21329. image: {
  21330. source: "./media/characters/artemis/calibrating-side.svg",
  21331. extra: 1192 / 1075,
  21332. bottom: 0.07
  21333. },
  21334. form: "calibrating"
  21335. },
  21336. sideNsfwer: {
  21337. height: math.unit(7.5, "feet"),
  21338. weight: math.unit(2, "lb"),
  21339. name: "Side",
  21340. image: {
  21341. source: "./media/characters/artemis/oversize-load-side.svg",
  21342. extra: 1192 / 1075,
  21343. bottom: 0.07
  21344. },
  21345. form: "oversize-load"
  21346. },
  21347. maw: {
  21348. height: math.unit(1.1, "feet"),
  21349. name: "Maw",
  21350. image: {
  21351. source: "./media/characters/artemis/maw.svg"
  21352. },
  21353. form: "work-safe"
  21354. },
  21355. stomach: {
  21356. height: math.unit(0.95, "feet"),
  21357. name: "Stomach",
  21358. image: {
  21359. source: "./media/characters/artemis/stomach.svg"
  21360. },
  21361. form: "work-safe"
  21362. },
  21363. dickCanine: {
  21364. height: math.unit(1, "feet"),
  21365. name: "Dick (Canine)",
  21366. image: {
  21367. source: "./media/characters/artemis/dick-canine.svg"
  21368. },
  21369. form: "calibrating"
  21370. },
  21371. dickEquine: {
  21372. height: math.unit(0.85, "feet"),
  21373. name: "Dick (Equine)",
  21374. image: {
  21375. source: "./media/characters/artemis/dick-equine.svg"
  21376. },
  21377. form: "calibrating"
  21378. },
  21379. dickExotic: {
  21380. height: math.unit(0.85, "feet"),
  21381. name: "Dick (Exotic)",
  21382. image: {
  21383. source: "./media/characters/artemis/dick-exotic.svg"
  21384. },
  21385. form: "calibrating"
  21386. },
  21387. dickCanineBigger: {
  21388. height: math.unit(1 * 1.33, "feet"),
  21389. name: "Dick (Canine)",
  21390. image: {
  21391. source: "./media/characters/artemis/dick-canine.svg"
  21392. },
  21393. form: "oversize-load"
  21394. },
  21395. dickEquineBigger: {
  21396. height: math.unit(0.85 * 1.33, "feet"),
  21397. name: "Dick (Equine)",
  21398. image: {
  21399. source: "./media/characters/artemis/dick-equine.svg"
  21400. },
  21401. form: "oversize-load"
  21402. },
  21403. dickExoticBigger: {
  21404. height: math.unit(0.85 * 1.33, "feet"),
  21405. name: "Dick (Exotic)",
  21406. image: {
  21407. source: "./media/characters/artemis/dick-exotic.svg"
  21408. },
  21409. form: "oversize-load"
  21410. },
  21411. },
  21412. [
  21413. {
  21414. name: "Normal",
  21415. height: math.unit(7.5, "feet"),
  21416. form: "work-safe",
  21417. default: true
  21418. },
  21419. {
  21420. name: "Normal",
  21421. height: math.unit(7.5, "feet"),
  21422. form: "calibrating",
  21423. default: true
  21424. },
  21425. {
  21426. name: "Normal",
  21427. height: math.unit(7.5, "feet"),
  21428. form: "oversize-load",
  21429. default: true
  21430. },
  21431. {
  21432. name: "Enlarged",
  21433. height: math.unit(12, "feet"),
  21434. form: "work-safe",
  21435. },
  21436. {
  21437. name: "Enlarged",
  21438. height: math.unit(12, "feet"),
  21439. form: "calibrating",
  21440. },
  21441. {
  21442. name: "Enlarged",
  21443. height: math.unit(12, "feet"),
  21444. form: "oversize-load",
  21445. },
  21446. ],
  21447. {
  21448. "work-safe": {
  21449. name: "Work-Safe",
  21450. default: true
  21451. },
  21452. "calibrating": {
  21453. name: "Calibrating"
  21454. },
  21455. "oversize-load": {
  21456. name: "Oversize Load"
  21457. }
  21458. }
  21459. ))
  21460. characterMakers.push(() => makeCharacter(
  21461. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21462. {
  21463. front: {
  21464. height: math.unit(5 + 3 / 12, "feet"),
  21465. weight: math.unit(160, "lb"),
  21466. name: "Front",
  21467. image: {
  21468. source: "./media/characters/kira/front.svg",
  21469. extra: 906 / 786,
  21470. bottom: 0.01
  21471. }
  21472. },
  21473. back: {
  21474. height: math.unit(5 + 3 / 12, "feet"),
  21475. weight: math.unit(160, "lb"),
  21476. name: "Back",
  21477. image: {
  21478. source: "./media/characters/kira/back.svg",
  21479. extra: 882 / 757,
  21480. bottom: 0.005
  21481. }
  21482. },
  21483. frontDressed: {
  21484. height: math.unit(5 + 3 / 12, "feet"),
  21485. weight: math.unit(160, "lb"),
  21486. name: "Front (Dressed)",
  21487. image: {
  21488. source: "./media/characters/kira/front-dressed.svg",
  21489. extra: 906 / 786,
  21490. bottom: 0.01
  21491. }
  21492. },
  21493. beans: {
  21494. height: math.unit(0.92, "feet"),
  21495. name: "Beans",
  21496. image: {
  21497. source: "./media/characters/kira/beans.svg"
  21498. }
  21499. },
  21500. },
  21501. [
  21502. {
  21503. name: "Normal",
  21504. height: math.unit(5 + 3 / 12, "feet"),
  21505. default: true
  21506. },
  21507. ]
  21508. ))
  21509. characterMakers.push(() => makeCharacter(
  21510. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21511. {
  21512. front: {
  21513. height: math.unit(5 + 4 / 12, "feet"),
  21514. weight: math.unit(145, "lb"),
  21515. name: "Front",
  21516. image: {
  21517. source: "./media/characters/scramble/front.svg",
  21518. extra: 763 / 727,
  21519. bottom: 0.05
  21520. }
  21521. },
  21522. back: {
  21523. height: math.unit(5 + 4 / 12, "feet"),
  21524. weight: math.unit(145, "lb"),
  21525. name: "Back",
  21526. image: {
  21527. source: "./media/characters/scramble/back.svg",
  21528. extra: 826 / 737,
  21529. bottom: 0.002
  21530. }
  21531. },
  21532. },
  21533. [
  21534. {
  21535. name: "Normal",
  21536. height: math.unit(5 + 4 / 12, "feet"),
  21537. default: true
  21538. },
  21539. ]
  21540. ))
  21541. characterMakers.push(() => makeCharacter(
  21542. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21543. {
  21544. side: {
  21545. height: math.unit(6 + 2 / 12, "feet"),
  21546. weight: math.unit(190, "lb"),
  21547. name: "Side",
  21548. image: {
  21549. source: "./media/characters/biscuit/side.svg",
  21550. extra: 858 / 791,
  21551. bottom: 0.044
  21552. }
  21553. },
  21554. },
  21555. [
  21556. {
  21557. name: "Normal",
  21558. height: math.unit(6 + 2 / 12, "feet"),
  21559. default: true
  21560. },
  21561. ]
  21562. ))
  21563. characterMakers.push(() => makeCharacter(
  21564. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21565. {
  21566. front: {
  21567. height: math.unit(5 + 2 / 12, "feet"),
  21568. weight: math.unit(120, "lb"),
  21569. name: "Front",
  21570. image: {
  21571. source: "./media/characters/poffin/front.svg",
  21572. extra: 786 / 680,
  21573. bottom: 0.005
  21574. }
  21575. },
  21576. },
  21577. [
  21578. {
  21579. name: "Normal",
  21580. height: math.unit(5 + 2 / 12, "feet"),
  21581. default: true
  21582. },
  21583. ]
  21584. ))
  21585. characterMakers.push(() => makeCharacter(
  21586. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21587. {
  21588. front: {
  21589. height: math.unit(6 + 3 / 12, "feet"),
  21590. weight: math.unit(519, "lb"),
  21591. name: "Front",
  21592. image: {
  21593. source: "./media/characters/dhari/front.svg",
  21594. extra: 1048 / 946,
  21595. bottom: 0.015
  21596. }
  21597. },
  21598. back: {
  21599. height: math.unit(6 + 3 / 12, "feet"),
  21600. weight: math.unit(519, "lb"),
  21601. name: "Back",
  21602. image: {
  21603. source: "./media/characters/dhari/back.svg",
  21604. extra: 1048 / 931,
  21605. bottom: 0.005
  21606. }
  21607. },
  21608. frontDressed: {
  21609. height: math.unit(6 + 3 / 12, "feet"),
  21610. weight: math.unit(519, "lb"),
  21611. name: "Front (Dressed)",
  21612. image: {
  21613. source: "./media/characters/dhari/front-dressed.svg",
  21614. extra: 1713 / 1546,
  21615. bottom: 0.02
  21616. }
  21617. },
  21618. backDressed: {
  21619. height: math.unit(6 + 3 / 12, "feet"),
  21620. weight: math.unit(519, "lb"),
  21621. name: "Back (Dressed)",
  21622. image: {
  21623. source: "./media/characters/dhari/back-dressed.svg",
  21624. extra: 1699 / 1537,
  21625. bottom: 0.01
  21626. }
  21627. },
  21628. maw: {
  21629. height: math.unit(0.95, "feet"),
  21630. name: "Maw",
  21631. image: {
  21632. source: "./media/characters/dhari/maw.svg"
  21633. }
  21634. },
  21635. wereFront: {
  21636. height: math.unit(12 + 8 / 12, "feet"),
  21637. weight: math.unit(4000, "lb"),
  21638. name: "Front (Were)",
  21639. image: {
  21640. source: "./media/characters/dhari/were-front.svg",
  21641. extra: 1065 / 969,
  21642. bottom: 0.015
  21643. }
  21644. },
  21645. wereBack: {
  21646. height: math.unit(12 + 8 / 12, "feet"),
  21647. weight: math.unit(4000, "lb"),
  21648. name: "Back (Were)",
  21649. image: {
  21650. source: "./media/characters/dhari/were-back.svg",
  21651. extra: 1065 / 969,
  21652. bottom: 0.012
  21653. }
  21654. },
  21655. wereMaw: {
  21656. height: math.unit(0.625, "meters"),
  21657. name: "Maw (Were)",
  21658. image: {
  21659. source: "./media/characters/dhari/were-maw.svg"
  21660. }
  21661. },
  21662. },
  21663. [
  21664. {
  21665. name: "Normal",
  21666. height: math.unit(6 + 3 / 12, "feet"),
  21667. default: true
  21668. },
  21669. ]
  21670. ))
  21671. characterMakers.push(() => makeCharacter(
  21672. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21673. {
  21674. anthro: {
  21675. height: math.unit(5 + 7 / 12, "feet"),
  21676. weight: math.unit(175, "lb"),
  21677. name: "Anthro",
  21678. image: {
  21679. source: "./media/characters/rena-dyne/anthro.svg",
  21680. extra: 1849 / 1785,
  21681. bottom: 0.005
  21682. }
  21683. },
  21684. taur: {
  21685. height: math.unit(15 + 6 / 12, "feet"),
  21686. weight: math.unit(8000, "lb"),
  21687. name: "Taur",
  21688. image: {
  21689. source: "./media/characters/rena-dyne/taur.svg",
  21690. extra: 2315 / 2234,
  21691. bottom: 0.033
  21692. }
  21693. },
  21694. },
  21695. [
  21696. {
  21697. name: "Normal",
  21698. height: math.unit(5 + 7 / 12, "feet"),
  21699. default: true
  21700. },
  21701. ]
  21702. ))
  21703. characterMakers.push(() => makeCharacter(
  21704. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21705. {
  21706. front: {
  21707. height: math.unit(8, "feet"),
  21708. weight: math.unit(600, "lb"),
  21709. name: "Front",
  21710. image: {
  21711. source: "./media/characters/weremeep/front.svg",
  21712. extra: 967 / 862,
  21713. bottom: 0.01
  21714. }
  21715. },
  21716. },
  21717. [
  21718. {
  21719. name: "Normal",
  21720. height: math.unit(8, "feet"),
  21721. default: true
  21722. },
  21723. {
  21724. name: "Lorg",
  21725. height: math.unit(12, "feet")
  21726. },
  21727. {
  21728. name: "Oh Lawd She Comin'",
  21729. height: math.unit(20, "feet")
  21730. },
  21731. ]
  21732. ))
  21733. characterMakers.push(() => makeCharacter(
  21734. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21735. {
  21736. front: {
  21737. height: math.unit(4, "feet"),
  21738. weight: math.unit(90, "lb"),
  21739. name: "Front",
  21740. image: {
  21741. source: "./media/characters/reza/front.svg",
  21742. extra: 1183 / 1111,
  21743. bottom: 0.017
  21744. }
  21745. },
  21746. back: {
  21747. height: math.unit(4, "feet"),
  21748. weight: math.unit(90, "lb"),
  21749. name: "Back",
  21750. image: {
  21751. source: "./media/characters/reza/back.svg",
  21752. extra: 1183 / 1111,
  21753. bottom: 0.01
  21754. }
  21755. },
  21756. drake: {
  21757. height: math.unit(30, "feet"),
  21758. weight: math.unit(246960, "lb"),
  21759. name: "Drake",
  21760. image: {
  21761. source: "./media/characters/reza/drake.svg",
  21762. extra: 2350 / 2024,
  21763. bottom: 60.7 / 2403
  21764. }
  21765. },
  21766. },
  21767. [
  21768. {
  21769. name: "Normal",
  21770. height: math.unit(4, "feet"),
  21771. default: true
  21772. },
  21773. ]
  21774. ))
  21775. characterMakers.push(() => makeCharacter(
  21776. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21777. {
  21778. side: {
  21779. height: math.unit(15, "feet"),
  21780. weight: math.unit(14, "tons"),
  21781. name: "Side",
  21782. image: {
  21783. source: "./media/characters/athea/side.svg",
  21784. extra: 960 / 540,
  21785. bottom: 0.003
  21786. }
  21787. },
  21788. sitting: {
  21789. height: math.unit(6 * 2.85, "feet"),
  21790. weight: math.unit(14, "tons"),
  21791. name: "Sitting",
  21792. image: {
  21793. source: "./media/characters/athea/sitting.svg",
  21794. extra: 621 / 581,
  21795. bottom: 0.075
  21796. }
  21797. },
  21798. maw: {
  21799. height: math.unit(7.59498031496063, "feet"),
  21800. name: "Maw",
  21801. image: {
  21802. source: "./media/characters/athea/maw.svg"
  21803. }
  21804. },
  21805. },
  21806. [
  21807. {
  21808. name: "Lap Cat",
  21809. height: math.unit(2.5, "feet")
  21810. },
  21811. {
  21812. name: "Minimacro",
  21813. height: math.unit(15, "feet"),
  21814. default: true
  21815. },
  21816. {
  21817. name: "Macro",
  21818. height: math.unit(120, "feet")
  21819. },
  21820. {
  21821. name: "Macro+",
  21822. height: math.unit(640, "feet")
  21823. },
  21824. {
  21825. name: "Colossus",
  21826. height: math.unit(2.2, "miles")
  21827. },
  21828. ]
  21829. ))
  21830. characterMakers.push(() => makeCharacter(
  21831. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21832. {
  21833. front: {
  21834. height: math.unit(8 + 8 / 12, "feet"),
  21835. weight: math.unit(130, "kg"),
  21836. name: "Front",
  21837. image: {
  21838. source: "./media/characters/seroko/front.svg",
  21839. extra: 1385 / 1280,
  21840. bottom: 0.025
  21841. }
  21842. },
  21843. back: {
  21844. height: math.unit(8 + 8 / 12, "feet"),
  21845. weight: math.unit(130, "kg"),
  21846. name: "Back",
  21847. image: {
  21848. source: "./media/characters/seroko/back.svg",
  21849. extra: 1369 / 1238,
  21850. bottom: 0.018
  21851. }
  21852. },
  21853. frontDressed: {
  21854. height: math.unit(8 + 8 / 12, "feet"),
  21855. weight: math.unit(130, "kg"),
  21856. name: "Front (Dressed)",
  21857. image: {
  21858. source: "./media/characters/seroko/front-dressed.svg",
  21859. extra: 1366 / 1275,
  21860. bottom: 0.03
  21861. }
  21862. },
  21863. },
  21864. [
  21865. {
  21866. name: "Normal",
  21867. height: math.unit(8 + 8 / 12, "feet"),
  21868. default: true
  21869. },
  21870. ]
  21871. ))
  21872. characterMakers.push(() => makeCharacter(
  21873. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21874. {
  21875. front: {
  21876. height: math.unit(5.5, "feet"),
  21877. weight: math.unit(160, "lb"),
  21878. name: "Front",
  21879. image: {
  21880. source: "./media/characters/quatzi/front.svg",
  21881. extra: 2346 / 2242,
  21882. bottom: 0.015
  21883. }
  21884. },
  21885. },
  21886. [
  21887. {
  21888. name: "Normal",
  21889. height: math.unit(5.5, "feet"),
  21890. default: true
  21891. },
  21892. {
  21893. name: "Big",
  21894. height: math.unit(7.7, "feet")
  21895. },
  21896. ]
  21897. ))
  21898. characterMakers.push(() => makeCharacter(
  21899. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21900. {
  21901. front: {
  21902. height: math.unit(5 + 11 / 12, "feet"),
  21903. weight: math.unit(180, "lb"),
  21904. name: "Front",
  21905. image: {
  21906. source: "./media/characters/sen/front.svg",
  21907. extra: 1321 / 1254,
  21908. bottom: 0.015
  21909. }
  21910. },
  21911. side: {
  21912. height: math.unit(5 + 11 / 12, "feet"),
  21913. weight: math.unit(180, "lb"),
  21914. name: "Side",
  21915. image: {
  21916. source: "./media/characters/sen/side.svg",
  21917. extra: 1321 / 1254,
  21918. bottom: 0.007
  21919. }
  21920. },
  21921. back: {
  21922. height: math.unit(5 + 11 / 12, "feet"),
  21923. weight: math.unit(180, "lb"),
  21924. name: "Back",
  21925. image: {
  21926. source: "./media/characters/sen/back.svg",
  21927. extra: 1321 / 1254
  21928. }
  21929. },
  21930. },
  21931. [
  21932. {
  21933. name: "Normal",
  21934. height: math.unit(5 + 11 / 12, "feet"),
  21935. default: true
  21936. },
  21937. ]
  21938. ))
  21939. characterMakers.push(() => makeCharacter(
  21940. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21941. {
  21942. front: {
  21943. height: math.unit(166.6, "cm"),
  21944. weight: math.unit(66.6, "kg"),
  21945. name: "Front",
  21946. image: {
  21947. source: "./media/characters/fruity/front.svg",
  21948. extra: 1510 / 1386,
  21949. bottom: 0.04
  21950. }
  21951. },
  21952. back: {
  21953. height: math.unit(166.6, "cm"),
  21954. weight: math.unit(66.6, "lb"),
  21955. name: "Back",
  21956. image: {
  21957. source: "./media/characters/fruity/back.svg",
  21958. extra: 1563 / 1435,
  21959. bottom: 0.005
  21960. }
  21961. },
  21962. },
  21963. [
  21964. {
  21965. name: "Normal",
  21966. height: math.unit(166.6, "cm"),
  21967. default: true
  21968. },
  21969. {
  21970. name: "Demonic",
  21971. height: math.unit(166.6, "feet")
  21972. },
  21973. ]
  21974. ))
  21975. characterMakers.push(() => makeCharacter(
  21976. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21977. {
  21978. side: {
  21979. height: math.unit(10, "feet"),
  21980. weight: math.unit(500, "lb"),
  21981. name: "Side",
  21982. image: {
  21983. source: "./media/characters/zost/side.svg",
  21984. extra: 2870/2533,
  21985. bottom: 252/3122
  21986. }
  21987. },
  21988. mawFront: {
  21989. height: math.unit(1.08, "meters"),
  21990. name: "Maw (Front)",
  21991. image: {
  21992. source: "./media/characters/zost/maw-front.svg"
  21993. }
  21994. },
  21995. mawSide: {
  21996. height: math.unit(2.66, "feet"),
  21997. name: "Maw (Side)",
  21998. image: {
  21999. source: "./media/characters/zost/maw-side.svg"
  22000. }
  22001. },
  22002. wingspan: {
  22003. height: math.unit(7.4, "feet"),
  22004. name: "Wingspan",
  22005. image: {
  22006. source: "./media/characters/zost/wingspan.svg"
  22007. }
  22008. },
  22009. },
  22010. [
  22011. {
  22012. name: "Normal",
  22013. height: math.unit(10, "feet"),
  22014. default: true
  22015. },
  22016. ]
  22017. ))
  22018. characterMakers.push(() => makeCharacter(
  22019. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22020. {
  22021. front: {
  22022. height: math.unit(5 + 4 / 12, "feet"),
  22023. weight: math.unit(120, "lb"),
  22024. name: "Front",
  22025. image: {
  22026. source: "./media/characters/luci/front.svg",
  22027. extra: 1985 / 1884,
  22028. bottom: 0.04
  22029. }
  22030. },
  22031. back: {
  22032. height: math.unit(5 + 4 / 12, "feet"),
  22033. weight: math.unit(120, "lb"),
  22034. name: "Back",
  22035. image: {
  22036. source: "./media/characters/luci/back.svg",
  22037. extra: 1892 / 1791,
  22038. bottom: 0.002
  22039. }
  22040. },
  22041. },
  22042. [
  22043. {
  22044. name: "Normal",
  22045. height: math.unit(5 + 4 / 12, "feet"),
  22046. default: true
  22047. },
  22048. ]
  22049. ))
  22050. characterMakers.push(() => makeCharacter(
  22051. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22052. {
  22053. front: {
  22054. height: math.unit(1500, "feet"),
  22055. weight: math.unit(3.8e6, "tons"),
  22056. name: "Front",
  22057. image: {
  22058. source: "./media/characters/2th/front.svg",
  22059. extra: 3489 / 3350,
  22060. bottom: 0.1
  22061. }
  22062. },
  22063. foot: {
  22064. height: math.unit(461, "feet"),
  22065. name: "Foot",
  22066. image: {
  22067. source: "./media/characters/2th/foot.svg"
  22068. }
  22069. },
  22070. },
  22071. [
  22072. {
  22073. name: "\"Micro\"",
  22074. height: math.unit(15 + 7 / 12, "feet")
  22075. },
  22076. {
  22077. name: "Normal",
  22078. height: math.unit(1500, "feet"),
  22079. default: true
  22080. },
  22081. {
  22082. name: "Macro",
  22083. height: math.unit(5000, "feet")
  22084. },
  22085. {
  22086. name: "Megamacro",
  22087. height: math.unit(15, "miles")
  22088. },
  22089. {
  22090. name: "Gigamacro",
  22091. height: math.unit(4000, "miles")
  22092. },
  22093. {
  22094. name: "Galactic",
  22095. height: math.unit(50, "AU")
  22096. },
  22097. ]
  22098. ))
  22099. characterMakers.push(() => makeCharacter(
  22100. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22101. {
  22102. front: {
  22103. height: math.unit(5 + 6 / 12, "feet"),
  22104. weight: math.unit(220, "lb"),
  22105. name: "Front",
  22106. image: {
  22107. source: "./media/characters/amethyst/front.svg",
  22108. extra: 2078 / 2040,
  22109. bottom: 0.045
  22110. }
  22111. },
  22112. back: {
  22113. height: math.unit(5 + 6 / 12, "feet"),
  22114. weight: math.unit(220, "lb"),
  22115. name: "Back",
  22116. image: {
  22117. source: "./media/characters/amethyst/back.svg",
  22118. extra: 2021 / 1989,
  22119. bottom: 0.02
  22120. }
  22121. },
  22122. },
  22123. [
  22124. {
  22125. name: "Normal",
  22126. height: math.unit(5 + 6 / 12, "feet"),
  22127. default: true
  22128. },
  22129. ]
  22130. ))
  22131. characterMakers.push(() => makeCharacter(
  22132. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22133. {
  22134. front: {
  22135. height: math.unit(4 + 11 / 12, "feet"),
  22136. weight: math.unit(120, "lb"),
  22137. name: "Front",
  22138. image: {
  22139. source: "./media/characters/yumi-akiyama/front.svg",
  22140. extra: 1327 / 1235,
  22141. bottom: 0.02
  22142. }
  22143. },
  22144. back: {
  22145. height: math.unit(4 + 11 / 12, "feet"),
  22146. weight: math.unit(120, "lb"),
  22147. name: "Back",
  22148. image: {
  22149. source: "./media/characters/yumi-akiyama/back.svg",
  22150. extra: 1287 / 1245,
  22151. bottom: 0.002
  22152. }
  22153. },
  22154. },
  22155. [
  22156. {
  22157. name: "Galactic",
  22158. height: math.unit(50, "galaxies"),
  22159. default: true
  22160. },
  22161. {
  22162. name: "Universal",
  22163. height: math.unit(100, "universes")
  22164. },
  22165. ]
  22166. ))
  22167. characterMakers.push(() => makeCharacter(
  22168. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22169. {
  22170. front: {
  22171. height: math.unit(8, "feet"),
  22172. weight: math.unit(500, "lb"),
  22173. name: "Front",
  22174. image: {
  22175. source: "./media/characters/rifter-yrmori/front.svg",
  22176. extra: 1180 / 1125,
  22177. bottom: 0.02
  22178. }
  22179. },
  22180. back: {
  22181. height: math.unit(8, "feet"),
  22182. weight: math.unit(500, "lb"),
  22183. name: "Back",
  22184. image: {
  22185. source: "./media/characters/rifter-yrmori/back.svg",
  22186. extra: 1190 / 1145,
  22187. bottom: 0.001
  22188. }
  22189. },
  22190. wings: {
  22191. height: math.unit(7.75, "feet"),
  22192. weight: math.unit(500, "lb"),
  22193. name: "Wings",
  22194. image: {
  22195. source: "./media/characters/rifter-yrmori/wings.svg",
  22196. extra: 1357 / 1285
  22197. }
  22198. },
  22199. maw: {
  22200. height: math.unit(0.8, "feet"),
  22201. name: "Maw",
  22202. image: {
  22203. source: "./media/characters/rifter-yrmori/maw.svg"
  22204. }
  22205. },
  22206. mawfront: {
  22207. height: math.unit(1.45, "feet"),
  22208. name: "Maw (Front)",
  22209. image: {
  22210. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22211. }
  22212. },
  22213. },
  22214. [
  22215. {
  22216. name: "Normal",
  22217. height: math.unit(8, "feet"),
  22218. default: true
  22219. },
  22220. {
  22221. name: "Macro",
  22222. height: math.unit(42, "meters")
  22223. },
  22224. ]
  22225. ))
  22226. characterMakers.push(() => makeCharacter(
  22227. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22228. {
  22229. were: {
  22230. height: math.unit(25 + 6 / 12, "feet"),
  22231. weight: math.unit(10000, "lb"),
  22232. name: "Were",
  22233. image: {
  22234. source: "./media/characters/tahajin/were.svg",
  22235. extra: 801 / 770,
  22236. bottom: 0.042
  22237. }
  22238. },
  22239. aquatic: {
  22240. height: math.unit(6 + 4 / 12, "feet"),
  22241. weight: math.unit(160, "lb"),
  22242. name: "Aquatic",
  22243. image: {
  22244. source: "./media/characters/tahajin/aquatic.svg",
  22245. extra: 572 / 542,
  22246. bottom: 0.04
  22247. }
  22248. },
  22249. chow: {
  22250. height: math.unit(8 + 11 / 12, "feet"),
  22251. weight: math.unit(450, "lb"),
  22252. name: "Chow",
  22253. image: {
  22254. source: "./media/characters/tahajin/chow.svg",
  22255. extra: 660 / 640,
  22256. bottom: 0.015
  22257. }
  22258. },
  22259. demiNaga: {
  22260. height: math.unit(6 + 8 / 12, "feet"),
  22261. weight: math.unit(300, "lb"),
  22262. name: "Demi Naga",
  22263. image: {
  22264. source: "./media/characters/tahajin/demi-naga.svg",
  22265. extra: 643 / 615,
  22266. bottom: 0.1
  22267. }
  22268. },
  22269. data: {
  22270. height: math.unit(5, "inches"),
  22271. weight: math.unit(0.1, "lb"),
  22272. name: "Data",
  22273. image: {
  22274. source: "./media/characters/tahajin/data.svg"
  22275. }
  22276. },
  22277. fluu: {
  22278. height: math.unit(5 + 7 / 12, "feet"),
  22279. weight: math.unit(140, "lb"),
  22280. name: "Fluu",
  22281. image: {
  22282. source: "./media/characters/tahajin/fluu.svg",
  22283. extra: 628 / 592,
  22284. bottom: 0.02
  22285. }
  22286. },
  22287. starWarrior: {
  22288. height: math.unit(4 + 5 / 12, "feet"),
  22289. weight: math.unit(50, "lb"),
  22290. name: "Star Warrior",
  22291. image: {
  22292. source: "./media/characters/tahajin/star-warrior.svg"
  22293. }
  22294. },
  22295. },
  22296. [
  22297. {
  22298. name: "Normal",
  22299. height: math.unit(25 + 6 / 12, "feet"),
  22300. default: true
  22301. },
  22302. ]
  22303. ))
  22304. characterMakers.push(() => makeCharacter(
  22305. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22306. {
  22307. front: {
  22308. height: math.unit(8, "feet"),
  22309. weight: math.unit(350, "lb"),
  22310. name: "Front",
  22311. image: {
  22312. source: "./media/characters/gabira/front.svg",
  22313. extra: 608 / 580,
  22314. bottom: 0.03
  22315. }
  22316. },
  22317. back: {
  22318. height: math.unit(8, "feet"),
  22319. weight: math.unit(350, "lb"),
  22320. name: "Back",
  22321. image: {
  22322. source: "./media/characters/gabira/back.svg",
  22323. extra: 608 / 580,
  22324. bottom: 0.03
  22325. }
  22326. },
  22327. },
  22328. [
  22329. {
  22330. name: "Normal",
  22331. height: math.unit(8, "feet"),
  22332. default: true
  22333. },
  22334. ]
  22335. ))
  22336. characterMakers.push(() => makeCharacter(
  22337. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22338. {
  22339. front: {
  22340. height: math.unit(5 + 3 / 12, "feet"),
  22341. weight: math.unit(137, "lb"),
  22342. name: "Front",
  22343. image: {
  22344. source: "./media/characters/sasha-katraine/front.svg",
  22345. extra: 1745/1694,
  22346. bottom: 37/1782
  22347. }
  22348. },
  22349. back: {
  22350. height: math.unit(5 + 3 / 12, "feet"),
  22351. weight: math.unit(137, "lb"),
  22352. name: "Back",
  22353. image: {
  22354. source: "./media/characters/sasha-katraine/back.svg",
  22355. extra: 1776/1699,
  22356. bottom: 26/1802
  22357. }
  22358. },
  22359. },
  22360. [
  22361. {
  22362. name: "Micro",
  22363. height: math.unit(5, "inches")
  22364. },
  22365. {
  22366. name: "Normal",
  22367. height: math.unit(5 + 3 / 12, "feet"),
  22368. default: true
  22369. },
  22370. ]
  22371. ))
  22372. characterMakers.push(() => makeCharacter(
  22373. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22374. {
  22375. side: {
  22376. height: math.unit(4, "inches"),
  22377. weight: math.unit(200, "grams"),
  22378. name: "Side",
  22379. image: {
  22380. source: "./media/characters/der/side.svg",
  22381. extra: 719 / 400,
  22382. bottom: 30.6 / 749.9187
  22383. }
  22384. },
  22385. },
  22386. [
  22387. {
  22388. name: "Micro",
  22389. height: math.unit(4, "inches"),
  22390. default: true
  22391. },
  22392. ]
  22393. ))
  22394. characterMakers.push(() => makeCharacter(
  22395. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22396. {
  22397. side: {
  22398. height: math.unit(30, "meters"),
  22399. weight: math.unit(700, "tonnes"),
  22400. name: "Side",
  22401. image: {
  22402. source: "./media/characters/fixerdragon/side.svg",
  22403. extra: (1293.0514 - 116.03) / 1106.86,
  22404. bottom: 116.03 / 1293.0514
  22405. }
  22406. },
  22407. },
  22408. [
  22409. {
  22410. name: "Planck",
  22411. height: math.unit(1.6e-35, "meters")
  22412. },
  22413. {
  22414. name: "Micro",
  22415. height: math.unit(0.4, "meters")
  22416. },
  22417. {
  22418. name: "Normal",
  22419. height: math.unit(30, "meters"),
  22420. default: true
  22421. },
  22422. {
  22423. name: "Megamacro",
  22424. height: math.unit(1.2, "megameters")
  22425. },
  22426. {
  22427. name: "Teramacro",
  22428. height: math.unit(130, "terameters")
  22429. },
  22430. {
  22431. name: "Yottamacro",
  22432. height: math.unit(6200, "yottameters")
  22433. },
  22434. ]
  22435. ));
  22436. characterMakers.push(() => makeCharacter(
  22437. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22438. {
  22439. front: {
  22440. height: math.unit(8, "feet"),
  22441. weight: math.unit(250, "lb"),
  22442. name: "Front",
  22443. image: {
  22444. source: "./media/characters/kite/front.svg",
  22445. extra: 2796 / 2659,
  22446. bottom: 0.002
  22447. }
  22448. },
  22449. },
  22450. [
  22451. {
  22452. name: "Normal",
  22453. height: math.unit(8, "feet"),
  22454. default: true
  22455. },
  22456. {
  22457. name: "Macro",
  22458. height: math.unit(360, "feet")
  22459. },
  22460. {
  22461. name: "Megamacro",
  22462. height: math.unit(1500, "feet")
  22463. },
  22464. ]
  22465. ))
  22466. characterMakers.push(() => makeCharacter(
  22467. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22468. {
  22469. front: {
  22470. height: math.unit(5 + 11/12, "feet"),
  22471. weight: math.unit(170, "lb"),
  22472. name: "Front",
  22473. image: {
  22474. source: "./media/characters/poojawa-vynar/front.svg",
  22475. extra: 1735/1585,
  22476. bottom: 96/1831
  22477. }
  22478. },
  22479. back: {
  22480. height: math.unit(5 + 11/12, "feet"),
  22481. weight: math.unit(170, "lb"),
  22482. name: "Back",
  22483. image: {
  22484. source: "./media/characters/poojawa-vynar/back.svg",
  22485. extra: 1749/1607,
  22486. bottom: 28/1777
  22487. }
  22488. },
  22489. male: {
  22490. height: math.unit(5 + 11/12, "feet"),
  22491. weight: math.unit(170, "lb"),
  22492. name: "Male",
  22493. image: {
  22494. source: "./media/characters/poojawa-vynar/male.svg",
  22495. extra: 1855/1713,
  22496. bottom: 63/1918
  22497. }
  22498. },
  22499. taur: {
  22500. height: math.unit(5 + 11/12, "feet"),
  22501. weight: math.unit(170, "lb"),
  22502. name: "Taur",
  22503. image: {
  22504. source: "./media/characters/poojawa-vynar/taur.svg",
  22505. extra: 1151/1059,
  22506. bottom: 356/1507
  22507. }
  22508. },
  22509. frontDressed: {
  22510. height: math.unit(5 + 11/12, "feet"),
  22511. weight: math.unit(170, "lb"),
  22512. name: "Front (Dressed)",
  22513. image: {
  22514. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22515. extra: 1735/1585,
  22516. bottom: 96/1831
  22517. }
  22518. },
  22519. backDressed: {
  22520. height: math.unit(5 + 11/12, "feet"),
  22521. weight: math.unit(170, "lb"),
  22522. name: "Back (Dressed)",
  22523. image: {
  22524. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22525. extra: 1749/1607,
  22526. bottom: 28/1777
  22527. }
  22528. },
  22529. maleDressed: {
  22530. height: math.unit(5 + 11/12, "feet"),
  22531. weight: math.unit(170, "lb"),
  22532. name: "Male (Dressed)",
  22533. image: {
  22534. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22535. extra: 1855/1713,
  22536. bottom: 63/1918
  22537. }
  22538. },
  22539. taurDressed: {
  22540. height: math.unit(5 + 11/12, "feet"),
  22541. weight: math.unit(170, "lb"),
  22542. name: "Taur (Dressed)",
  22543. image: {
  22544. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22545. extra: 1151/1059,
  22546. bottom: 356/1507
  22547. }
  22548. },
  22549. maw: {
  22550. height: math.unit(1.46, "feet"),
  22551. name: "Maw",
  22552. image: {
  22553. source: "./media/characters/poojawa-vynar/maw.svg"
  22554. }
  22555. },
  22556. head: {
  22557. height: math.unit(2.34, "feet"),
  22558. name: "Head",
  22559. image: {
  22560. source: "./media/characters/poojawa-vynar/head.svg"
  22561. }
  22562. },
  22563. paw: {
  22564. height: math.unit(1.61, "feet"),
  22565. name: "Paw",
  22566. image: {
  22567. source: "./media/characters/poojawa-vynar/paw.svg"
  22568. }
  22569. },
  22570. pawToering: {
  22571. height: math.unit(1.72, "feet"),
  22572. name: "Paw (Toering)",
  22573. image: {
  22574. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22575. }
  22576. },
  22577. toering: {
  22578. height: math.unit(2.9, "inches"),
  22579. name: "Toering",
  22580. image: {
  22581. source: "./media/characters/poojawa-vynar/toering.svg"
  22582. }
  22583. },
  22584. shaft: {
  22585. height: math.unit(0.625, "feet"),
  22586. name: "Shaft",
  22587. image: {
  22588. source: "./media/characters/poojawa-vynar/shaft.svg"
  22589. }
  22590. },
  22591. spade: {
  22592. height: math.unit(0.42, "feet"),
  22593. name: "Spade",
  22594. image: {
  22595. source: "./media/characters/poojawa-vynar/spade.svg"
  22596. }
  22597. },
  22598. },
  22599. [
  22600. {
  22601. name: "Shortstack",
  22602. height: math.unit(4, "feet")
  22603. },
  22604. {
  22605. name: "Normal",
  22606. height: math.unit(5 + 11 / 12, "feet"),
  22607. default: true
  22608. },
  22609. {
  22610. name: "Tauric",
  22611. height: math.unit(4, "meters")
  22612. },
  22613. ]
  22614. ))
  22615. characterMakers.push(() => makeCharacter(
  22616. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22617. {
  22618. front: {
  22619. height: math.unit(293, "meters"),
  22620. weight: math.unit(70400, "tons"),
  22621. name: "Front",
  22622. image: {
  22623. source: "./media/characters/violette/front.svg",
  22624. extra: 1227 / 1180,
  22625. bottom: 0.005
  22626. }
  22627. },
  22628. back: {
  22629. height: math.unit(293, "meters"),
  22630. weight: math.unit(70400, "tons"),
  22631. name: "Back",
  22632. image: {
  22633. source: "./media/characters/violette/back.svg",
  22634. extra: 1227 / 1180,
  22635. bottom: 0.005
  22636. }
  22637. },
  22638. },
  22639. [
  22640. {
  22641. name: "Macro",
  22642. height: math.unit(293, "meters"),
  22643. default: true
  22644. },
  22645. ]
  22646. ))
  22647. characterMakers.push(() => makeCharacter(
  22648. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22649. {
  22650. front: {
  22651. height: math.unit(1050, "feet"),
  22652. weight: math.unit(200000, "tons"),
  22653. name: "Front",
  22654. image: {
  22655. source: "./media/characters/alessandra/front.svg",
  22656. extra: 960 / 912,
  22657. bottom: 0.06
  22658. }
  22659. },
  22660. },
  22661. [
  22662. {
  22663. name: "Macro",
  22664. height: math.unit(1050, "feet")
  22665. },
  22666. {
  22667. name: "Macro+",
  22668. height: math.unit(900, "meters"),
  22669. default: true
  22670. },
  22671. ]
  22672. ))
  22673. characterMakers.push(() => makeCharacter(
  22674. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22675. {
  22676. front: {
  22677. height: math.unit(5, "feet"),
  22678. weight: math.unit(187, "lb"),
  22679. name: "Front",
  22680. image: {
  22681. source: "./media/characters/person/front.svg",
  22682. extra: 3087 / 2945,
  22683. bottom: 91 / 3181
  22684. }
  22685. },
  22686. },
  22687. [
  22688. {
  22689. name: "Micro",
  22690. height: math.unit(3, "inches")
  22691. },
  22692. {
  22693. name: "Normal",
  22694. height: math.unit(5, "feet"),
  22695. default: true
  22696. },
  22697. {
  22698. name: "Macro",
  22699. height: math.unit(90, "feet")
  22700. },
  22701. {
  22702. name: "Max Size",
  22703. height: math.unit(280, "feet")
  22704. },
  22705. ]
  22706. ))
  22707. characterMakers.push(() => makeCharacter(
  22708. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22709. {
  22710. front: {
  22711. height: math.unit(4.5, "meters"),
  22712. weight: math.unit(3200, "lb"),
  22713. name: "Front",
  22714. image: {
  22715. source: "./media/characters/ty/front.svg",
  22716. extra: 1038 / 960,
  22717. bottom: 31.156 / 1068
  22718. }
  22719. },
  22720. back: {
  22721. height: math.unit(4.5, "meters"),
  22722. weight: math.unit(3200, "lb"),
  22723. name: "Back",
  22724. image: {
  22725. source: "./media/characters/ty/back.svg",
  22726. extra: 1044 / 966,
  22727. bottom: 7.48 / 1049
  22728. }
  22729. },
  22730. },
  22731. [
  22732. {
  22733. name: "Normal",
  22734. height: math.unit(4.5, "meters"),
  22735. default: true
  22736. },
  22737. ]
  22738. ))
  22739. characterMakers.push(() => makeCharacter(
  22740. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22741. {
  22742. front: {
  22743. height: math.unit(5 + 4 / 12, "feet"),
  22744. weight: math.unit(115, "lb"),
  22745. name: "Front",
  22746. image: {
  22747. source: "./media/characters/rocky/front.svg",
  22748. extra: 1012 / 975,
  22749. bottom: 54 / 1066
  22750. }
  22751. },
  22752. },
  22753. [
  22754. {
  22755. name: "Normal",
  22756. height: math.unit(5 + 4 / 12, "feet"),
  22757. default: true
  22758. },
  22759. ]
  22760. ))
  22761. characterMakers.push(() => makeCharacter(
  22762. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22763. {
  22764. upright: {
  22765. height: math.unit(6, "meters"),
  22766. weight: math.unit(4000, "kg"),
  22767. name: "Upright",
  22768. image: {
  22769. source: "./media/characters/ruin/upright.svg",
  22770. extra: 668 / 661,
  22771. bottom: 42 / 799.8396
  22772. }
  22773. },
  22774. },
  22775. [
  22776. {
  22777. name: "Normal",
  22778. height: math.unit(6, "meters"),
  22779. default: true
  22780. },
  22781. ]
  22782. ))
  22783. characterMakers.push(() => makeCharacter(
  22784. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22785. {
  22786. front: {
  22787. height: math.unit(5, "feet"),
  22788. weight: math.unit(106, "lb"),
  22789. name: "Front",
  22790. image: {
  22791. source: "./media/characters/robin/front.svg",
  22792. extra: 862 / 799,
  22793. bottom: 42.4 / 914.8856
  22794. }
  22795. },
  22796. },
  22797. [
  22798. {
  22799. name: "Normal",
  22800. height: math.unit(5, "feet"),
  22801. default: true
  22802. },
  22803. ]
  22804. ))
  22805. characterMakers.push(() => makeCharacter(
  22806. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22807. {
  22808. side: {
  22809. height: math.unit(3, "feet"),
  22810. weight: math.unit(225, "lb"),
  22811. name: "Side",
  22812. image: {
  22813. source: "./media/characters/saian/side.svg",
  22814. extra: 566 / 356,
  22815. bottom: 79.7 / 643
  22816. }
  22817. },
  22818. maw: {
  22819. height: math.unit(2.85, "feet"),
  22820. name: "Maw",
  22821. image: {
  22822. source: "./media/characters/saian/maw.svg"
  22823. }
  22824. },
  22825. },
  22826. [
  22827. {
  22828. name: "Normal",
  22829. height: math.unit(3, "feet"),
  22830. default: true
  22831. },
  22832. ]
  22833. ))
  22834. characterMakers.push(() => makeCharacter(
  22835. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22836. {
  22837. side: {
  22838. height: math.unit(8, "feet"),
  22839. weight: math.unit(300, "lb"),
  22840. name: "Side",
  22841. image: {
  22842. source: "./media/characters/equus-silvermane/side.svg",
  22843. extra: 2176 / 2050,
  22844. bottom: 65.7 / 2245
  22845. }
  22846. },
  22847. front: {
  22848. height: math.unit(8, "feet"),
  22849. weight: math.unit(300, "lb"),
  22850. name: "Front",
  22851. image: {
  22852. source: "./media/characters/equus-silvermane/front.svg",
  22853. extra: 4633 / 4400,
  22854. bottom: 71.3 / 4706.915
  22855. }
  22856. },
  22857. sideStepping: {
  22858. height: math.unit(8, "feet"),
  22859. weight: math.unit(300, "lb"),
  22860. name: "Side (Stepping)",
  22861. image: {
  22862. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22863. extra: 1968 / 1860,
  22864. bottom: 16.4 / 1989
  22865. }
  22866. },
  22867. },
  22868. [
  22869. {
  22870. name: "Normal",
  22871. height: math.unit(8, "feet")
  22872. },
  22873. {
  22874. name: "Minimacro",
  22875. height: math.unit(75, "feet"),
  22876. default: true
  22877. },
  22878. {
  22879. name: "Macro",
  22880. height: math.unit(150, "feet")
  22881. },
  22882. {
  22883. name: "Macro+",
  22884. height: math.unit(1000, "feet")
  22885. },
  22886. {
  22887. name: "Megamacro",
  22888. height: math.unit(1, "mile")
  22889. },
  22890. ]
  22891. ))
  22892. characterMakers.push(() => makeCharacter(
  22893. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22894. {
  22895. side: {
  22896. height: math.unit(20, "feet"),
  22897. weight: math.unit(30000, "kg"),
  22898. name: "Side",
  22899. image: {
  22900. source: "./media/characters/windar/side.svg",
  22901. extra: 1491 / 1248,
  22902. bottom: 82.56 / 1568
  22903. }
  22904. },
  22905. },
  22906. [
  22907. {
  22908. name: "Normal",
  22909. height: math.unit(20, "feet"),
  22910. default: true
  22911. },
  22912. ]
  22913. ))
  22914. characterMakers.push(() => makeCharacter(
  22915. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22916. {
  22917. side: {
  22918. height: math.unit(15.66, "feet"),
  22919. weight: math.unit(150, "lb"),
  22920. name: "Side",
  22921. image: {
  22922. source: "./media/characters/melody/side.svg",
  22923. extra: 1097 / 944,
  22924. bottom: 11.8 / 1109
  22925. }
  22926. },
  22927. sideOutfit: {
  22928. height: math.unit(15.66, "feet"),
  22929. weight: math.unit(150, "lb"),
  22930. name: "Side (Outfit)",
  22931. image: {
  22932. source: "./media/characters/melody/side-outfit.svg",
  22933. extra: 1097 / 944,
  22934. bottom: 11.8 / 1109
  22935. }
  22936. },
  22937. },
  22938. [
  22939. {
  22940. name: "Normal",
  22941. height: math.unit(15.66, "feet"),
  22942. default: true
  22943. },
  22944. ]
  22945. ))
  22946. characterMakers.push(() => makeCharacter(
  22947. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22948. {
  22949. front: {
  22950. height: math.unit(8, "feet"),
  22951. weight: math.unit(325, "lb"),
  22952. name: "Front",
  22953. image: {
  22954. source: "./media/characters/windera/front.svg",
  22955. extra: 3180 / 2845,
  22956. bottom: 178 / 3365
  22957. }
  22958. },
  22959. },
  22960. [
  22961. {
  22962. name: "Normal",
  22963. height: math.unit(8, "feet"),
  22964. default: true
  22965. },
  22966. ]
  22967. ))
  22968. characterMakers.push(() => makeCharacter(
  22969. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22970. {
  22971. front: {
  22972. height: math.unit(28.75, "feet"),
  22973. weight: math.unit(2000, "kg"),
  22974. name: "Front",
  22975. image: {
  22976. source: "./media/characters/sonear/front.svg",
  22977. extra: 1041.1 / 964.9,
  22978. bottom: 53.7 / 1096.6
  22979. }
  22980. },
  22981. },
  22982. [
  22983. {
  22984. name: "Normal",
  22985. height: math.unit(28.75, "feet"),
  22986. default: true
  22987. },
  22988. ]
  22989. ))
  22990. characterMakers.push(() => makeCharacter(
  22991. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22992. {
  22993. side: {
  22994. height: math.unit(25.5, "feet"),
  22995. weight: math.unit(23000, "kg"),
  22996. name: "Side",
  22997. image: {
  22998. source: "./media/characters/kanara/side.svg"
  22999. }
  23000. },
  23001. },
  23002. [
  23003. {
  23004. name: "Normal",
  23005. height: math.unit(25.5, "feet"),
  23006. default: true
  23007. },
  23008. ]
  23009. ))
  23010. characterMakers.push(() => makeCharacter(
  23011. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23012. {
  23013. side: {
  23014. height: math.unit(10, "feet"),
  23015. weight: math.unit(1000, "kg"),
  23016. name: "Side",
  23017. image: {
  23018. source: "./media/characters/ereus/side.svg",
  23019. extra: 1157 / 959,
  23020. bottom: 153 / 1312.5
  23021. }
  23022. },
  23023. },
  23024. [
  23025. {
  23026. name: "Normal",
  23027. height: math.unit(10, "feet"),
  23028. default: true
  23029. },
  23030. ]
  23031. ))
  23032. characterMakers.push(() => makeCharacter(
  23033. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23034. {
  23035. side: {
  23036. height: math.unit(4.5, "feet"),
  23037. weight: math.unit(500, "lb"),
  23038. name: "Side",
  23039. image: {
  23040. source: "./media/characters/e-ter/side.svg",
  23041. extra: 1550 / 1248,
  23042. bottom: 146 / 1694
  23043. }
  23044. },
  23045. },
  23046. [
  23047. {
  23048. name: "Normal",
  23049. height: math.unit(4.5, "feet"),
  23050. default: true
  23051. },
  23052. ]
  23053. ))
  23054. characterMakers.push(() => makeCharacter(
  23055. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23056. {
  23057. side: {
  23058. height: math.unit(9.7, "feet"),
  23059. weight: math.unit(4000, "kg"),
  23060. name: "Side",
  23061. image: {
  23062. source: "./media/characters/yamie/side.svg"
  23063. }
  23064. },
  23065. },
  23066. [
  23067. {
  23068. name: "Normal",
  23069. height: math.unit(9.7, "feet"),
  23070. default: true
  23071. },
  23072. ]
  23073. ))
  23074. characterMakers.push(() => makeCharacter(
  23075. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23076. {
  23077. front: {
  23078. height: math.unit(50, "feet"),
  23079. weight: math.unit(50000, "kg"),
  23080. name: "Front",
  23081. image: {
  23082. source: "./media/characters/anders/front.svg",
  23083. extra: 570 / 539,
  23084. bottom: 14.7 / 586.7
  23085. }
  23086. },
  23087. },
  23088. [
  23089. {
  23090. name: "Large",
  23091. height: math.unit(50, "feet")
  23092. },
  23093. {
  23094. name: "Macro",
  23095. height: math.unit(2000, "feet"),
  23096. default: true
  23097. },
  23098. {
  23099. name: "Megamacro",
  23100. height: math.unit(12, "miles")
  23101. },
  23102. ]
  23103. ))
  23104. characterMakers.push(() => makeCharacter(
  23105. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23106. {
  23107. front: {
  23108. height: math.unit(7 + 2 / 12, "feet"),
  23109. weight: math.unit(300, "lb"),
  23110. name: "Front",
  23111. image: {
  23112. source: "./media/characters/reban/front.svg",
  23113. extra: 1287/1212,
  23114. bottom: 148/1435
  23115. }
  23116. },
  23117. head: {
  23118. height: math.unit(1.95, "feet"),
  23119. name: "Head",
  23120. image: {
  23121. source: "./media/characters/reban/head.svg"
  23122. }
  23123. },
  23124. maw: {
  23125. height: math.unit(0.95, "feet"),
  23126. name: "Maw",
  23127. image: {
  23128. source: "./media/characters/reban/maw.svg"
  23129. }
  23130. },
  23131. foot: {
  23132. height: math.unit(1.65, "feet"),
  23133. name: "Foot",
  23134. image: {
  23135. source: "./media/characters/reban/foot.svg"
  23136. }
  23137. },
  23138. dick: {
  23139. height: math.unit(7 / 5, "feet"),
  23140. name: "Dick",
  23141. image: {
  23142. source: "./media/characters/reban/dick.svg"
  23143. }
  23144. },
  23145. },
  23146. [
  23147. {
  23148. name: "Natural Height",
  23149. height: math.unit(7 + 2 / 12, "feet")
  23150. },
  23151. {
  23152. name: "Macro",
  23153. height: math.unit(500, "feet"),
  23154. default: true
  23155. },
  23156. {
  23157. name: "Canon Height",
  23158. height: math.unit(50, "AU")
  23159. },
  23160. ]
  23161. ))
  23162. characterMakers.push(() => makeCharacter(
  23163. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23164. {
  23165. front: {
  23166. height: math.unit(6, "feet"),
  23167. weight: math.unit(150, "lb"),
  23168. name: "Front",
  23169. image: {
  23170. source: "./media/characters/terrance-keayes/front.svg",
  23171. extra: 1.005,
  23172. bottom: 151 / 1615
  23173. }
  23174. },
  23175. side: {
  23176. height: math.unit(6, "feet"),
  23177. weight: math.unit(150, "lb"),
  23178. name: "Side",
  23179. image: {
  23180. source: "./media/characters/terrance-keayes/side.svg",
  23181. extra: 1.005,
  23182. bottom: 129.4 / 1544
  23183. }
  23184. },
  23185. back: {
  23186. height: math.unit(6, "feet"),
  23187. weight: math.unit(150, "lb"),
  23188. name: "Back",
  23189. image: {
  23190. source: "./media/characters/terrance-keayes/back.svg",
  23191. extra: 1.005,
  23192. bottom: 58.4 / 1557.3
  23193. }
  23194. },
  23195. dick: {
  23196. height: math.unit(6 * 0.208, "feet"),
  23197. name: "Dick",
  23198. image: {
  23199. source: "./media/characters/terrance-keayes/dick.svg"
  23200. }
  23201. },
  23202. },
  23203. [
  23204. {
  23205. name: "Canon Height",
  23206. height: math.unit(35, "miles"),
  23207. default: true
  23208. },
  23209. ]
  23210. ))
  23211. characterMakers.push(() => makeCharacter(
  23212. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23213. {
  23214. front: {
  23215. height: math.unit(6, "feet"),
  23216. weight: math.unit(150, "lb"),
  23217. name: "Front",
  23218. image: {
  23219. source: "./media/characters/ofelia/front.svg",
  23220. extra: 1130/1117,
  23221. bottom: 91/1221
  23222. }
  23223. },
  23224. back: {
  23225. height: math.unit(6, "feet"),
  23226. weight: math.unit(150, "lb"),
  23227. name: "Back",
  23228. image: {
  23229. source: "./media/characters/ofelia/back.svg",
  23230. extra: 1172/1159,
  23231. bottom: 28/1200
  23232. }
  23233. },
  23234. maw: {
  23235. height: math.unit(1, "feet"),
  23236. name: "Maw",
  23237. image: {
  23238. source: "./media/characters/ofelia/maw.svg"
  23239. }
  23240. },
  23241. foot: {
  23242. height: math.unit(1.949, "feet"),
  23243. name: "Foot",
  23244. image: {
  23245. source: "./media/characters/ofelia/foot.svg"
  23246. }
  23247. },
  23248. },
  23249. [
  23250. {
  23251. name: "Canon Height",
  23252. height: math.unit(2000, "miles"),
  23253. default: true
  23254. },
  23255. ]
  23256. ))
  23257. characterMakers.push(() => makeCharacter(
  23258. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23259. {
  23260. front: {
  23261. height: math.unit(6, "feet"),
  23262. weight: math.unit(150, "lb"),
  23263. name: "Front",
  23264. image: {
  23265. source: "./media/characters/samuel/front.svg",
  23266. extra: 265 / 258,
  23267. bottom: 2 / 266.1566
  23268. }
  23269. },
  23270. },
  23271. [
  23272. {
  23273. name: "Macro",
  23274. height: math.unit(100, "feet"),
  23275. default: true
  23276. },
  23277. {
  23278. name: "Full Size",
  23279. height: math.unit(1000, "miles")
  23280. },
  23281. ]
  23282. ))
  23283. characterMakers.push(() => makeCharacter(
  23284. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23285. {
  23286. front: {
  23287. height: math.unit(6, "feet"),
  23288. weight: math.unit(300, "lb"),
  23289. name: "Front",
  23290. image: {
  23291. source: "./media/characters/beishir-kiel/front.svg",
  23292. extra: 569 / 547,
  23293. bottom: 41.9 / 609
  23294. }
  23295. },
  23296. maw: {
  23297. height: math.unit(6 * 0.202, "feet"),
  23298. name: "Maw",
  23299. image: {
  23300. source: "./media/characters/beishir-kiel/maw.svg"
  23301. }
  23302. },
  23303. },
  23304. [
  23305. {
  23306. name: "Macro",
  23307. height: math.unit(300, "feet"),
  23308. default: true
  23309. },
  23310. ]
  23311. ))
  23312. characterMakers.push(() => makeCharacter(
  23313. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23314. {
  23315. front: {
  23316. height: math.unit(5 + 7/12, "feet"),
  23317. weight: math.unit(120, "lb"),
  23318. name: "Front",
  23319. image: {
  23320. source: "./media/characters/logan-grey/front.svg",
  23321. extra: 1836/1738,
  23322. bottom: 108/1944
  23323. }
  23324. },
  23325. back: {
  23326. height: math.unit(5 + 7/12, "feet"),
  23327. weight: math.unit(120, "lb"),
  23328. name: "Back",
  23329. image: {
  23330. source: "./media/characters/logan-grey/back.svg",
  23331. extra: 1880/1794,
  23332. bottom: 24/1904
  23333. }
  23334. },
  23335. frontSfw: {
  23336. height: math.unit(5 + 7/12, "feet"),
  23337. weight: math.unit(120, "lb"),
  23338. name: "Front (SFW)",
  23339. image: {
  23340. source: "./media/characters/logan-grey/front-sfw.svg",
  23341. extra: 1836/1738,
  23342. bottom: 108/1944
  23343. }
  23344. },
  23345. backSfw: {
  23346. height: math.unit(5 + 7/12, "feet"),
  23347. weight: math.unit(120, "lb"),
  23348. name: "Back (SFW)",
  23349. image: {
  23350. source: "./media/characters/logan-grey/back-sfw.svg",
  23351. extra: 1880/1794,
  23352. bottom: 24/1904
  23353. }
  23354. },
  23355. hands: {
  23356. height: math.unit(0.84, "feet"),
  23357. name: "Hands",
  23358. image: {
  23359. source: "./media/characters/logan-grey/hands.svg"
  23360. }
  23361. },
  23362. paws: {
  23363. height: math.unit(0.72, "feet"),
  23364. name: "Paws",
  23365. image: {
  23366. source: "./media/characters/logan-grey/paws.svg"
  23367. }
  23368. },
  23369. cock: {
  23370. height: math.unit(1.45, "feet"),
  23371. name: "Cock",
  23372. image: {
  23373. source: "./media/characters/logan-grey/cock.svg"
  23374. }
  23375. },
  23376. cockAlt: {
  23377. height: math.unit(1.437, "feet"),
  23378. name: "Cock (alt)",
  23379. image: {
  23380. source: "./media/characters/logan-grey/cock-alt.svg"
  23381. }
  23382. },
  23383. },
  23384. [
  23385. {
  23386. name: "Normal",
  23387. height: math.unit(5 + 8 / 12, "feet")
  23388. },
  23389. {
  23390. name: "The 500 Foot Femboy",
  23391. height: math.unit(500, "feet"),
  23392. default: true
  23393. },
  23394. {
  23395. name: "Megmacro",
  23396. height: math.unit(20, "miles")
  23397. },
  23398. ]
  23399. ))
  23400. characterMakers.push(() => makeCharacter(
  23401. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23402. {
  23403. front: {
  23404. height: math.unit(8 + 2 / 12, "feet"),
  23405. weight: math.unit(275, "lb"),
  23406. name: "Front",
  23407. image: {
  23408. source: "./media/characters/draganta/front.svg",
  23409. extra: 1177 / 1135,
  23410. bottom: 33.46 / 1212.1
  23411. }
  23412. },
  23413. },
  23414. [
  23415. {
  23416. name: "Normal",
  23417. height: math.unit(8 + 6 / 12, "feet"),
  23418. default: true
  23419. },
  23420. {
  23421. name: "Macro",
  23422. height: math.unit(150, "feet")
  23423. },
  23424. {
  23425. name: "Megamacro",
  23426. height: math.unit(1000, "miles")
  23427. },
  23428. ]
  23429. ))
  23430. characterMakers.push(() => makeCharacter(
  23431. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23432. {
  23433. front: {
  23434. height: math.unit(1.72, "m"),
  23435. weight: math.unit(80, "lb"),
  23436. name: "Front",
  23437. image: {
  23438. source: "./media/characters/voski/front.svg",
  23439. extra: 2076.22 / 2022.4,
  23440. bottom: 102.7 / 2177.3866
  23441. }
  23442. },
  23443. frontFlaccid: {
  23444. height: math.unit(1.72, "m"),
  23445. weight: math.unit(80, "lb"),
  23446. name: "Front (Flaccid)",
  23447. image: {
  23448. source: "./media/characters/voski/front-flaccid.svg",
  23449. extra: 2076.22 / 2022.4,
  23450. bottom: 102.7 / 2177.3866
  23451. }
  23452. },
  23453. frontErect: {
  23454. height: math.unit(1.72, "m"),
  23455. weight: math.unit(80, "lb"),
  23456. name: "Front (Erect)",
  23457. image: {
  23458. source: "./media/characters/voski/front-erect.svg",
  23459. extra: 2076.22 / 2022.4,
  23460. bottom: 102.7 / 2177.3866
  23461. }
  23462. },
  23463. back: {
  23464. height: math.unit(1.72, "m"),
  23465. weight: math.unit(80, "lb"),
  23466. name: "Back",
  23467. image: {
  23468. source: "./media/characters/voski/back.svg",
  23469. extra: 2104 / 2051,
  23470. bottom: 10.45 / 2113.63
  23471. }
  23472. },
  23473. },
  23474. [
  23475. {
  23476. name: "Normal",
  23477. height: math.unit(1.72, "m")
  23478. },
  23479. {
  23480. name: "Macro",
  23481. height: math.unit(55, "m"),
  23482. default: true
  23483. },
  23484. {
  23485. name: "Macro+",
  23486. height: math.unit(300, "m")
  23487. },
  23488. {
  23489. name: "Macro++",
  23490. height: math.unit(700, "m")
  23491. },
  23492. {
  23493. name: "Macro+++",
  23494. height: math.unit(4500, "m")
  23495. },
  23496. {
  23497. name: "Macro++++",
  23498. height: math.unit(45, "km")
  23499. },
  23500. {
  23501. name: "Macro+++++",
  23502. height: math.unit(1220, "km")
  23503. },
  23504. ]
  23505. ))
  23506. characterMakers.push(() => makeCharacter(
  23507. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23508. {
  23509. front: {
  23510. height: math.unit(2.3, "m"),
  23511. weight: math.unit(304, "kg"),
  23512. name: "Front",
  23513. image: {
  23514. source: "./media/characters/icowom-lee/front.svg",
  23515. extra: 985 / 955,
  23516. bottom: 25.4 / 1012
  23517. }
  23518. },
  23519. fronttentacles: {
  23520. height: math.unit(2.3, "m"),
  23521. weight: math.unit(304, "kg"),
  23522. name: "Front-tentacles",
  23523. image: {
  23524. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23525. extra: 985 / 955,
  23526. bottom: 25.4 / 1012
  23527. }
  23528. },
  23529. back: {
  23530. height: math.unit(2.3, "m"),
  23531. weight: math.unit(304, "kg"),
  23532. name: "Back",
  23533. image: {
  23534. source: "./media/characters/icowom-lee/back.svg",
  23535. extra: 975 / 954,
  23536. bottom: 9.5 / 985
  23537. }
  23538. },
  23539. backtentacles: {
  23540. height: math.unit(2.3, "m"),
  23541. weight: math.unit(304, "kg"),
  23542. name: "Back-tentacles",
  23543. image: {
  23544. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23545. extra: 975 / 954,
  23546. bottom: 9.5 / 985
  23547. }
  23548. },
  23549. frontDressed: {
  23550. height: math.unit(2.3, "m"),
  23551. weight: math.unit(304, "kg"),
  23552. name: "Front (Dressed)",
  23553. image: {
  23554. source: "./media/characters/icowom-lee/front-dressed.svg",
  23555. extra: 3076 / 2933,
  23556. bottom: 51.4 / 3125.1889
  23557. }
  23558. },
  23559. rump: {
  23560. height: math.unit(0.776, "meters"),
  23561. name: "Rump",
  23562. image: {
  23563. source: "./media/characters/icowom-lee/rump.svg"
  23564. }
  23565. },
  23566. genitals: {
  23567. height: math.unit(0.78, "meters"),
  23568. name: "Genitals",
  23569. image: {
  23570. source: "./media/characters/icowom-lee/genitals.svg"
  23571. }
  23572. },
  23573. },
  23574. [
  23575. {
  23576. name: "Normal",
  23577. height: math.unit(2.3, "meters"),
  23578. default: true
  23579. },
  23580. {
  23581. name: "Macro",
  23582. height: math.unit(94, "meters"),
  23583. default: true
  23584. },
  23585. ]
  23586. ))
  23587. characterMakers.push(() => makeCharacter(
  23588. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23589. {
  23590. front: {
  23591. height: math.unit(22, "meters"),
  23592. weight: math.unit(21000, "kg"),
  23593. name: "Front",
  23594. image: {
  23595. source: "./media/characters/shock-diamond/front.svg",
  23596. extra: 2204 / 2053,
  23597. bottom: 65 / 2239.47
  23598. }
  23599. },
  23600. frontNude: {
  23601. height: math.unit(22, "meters"),
  23602. weight: math.unit(21000, "kg"),
  23603. name: "Front (Nude)",
  23604. image: {
  23605. source: "./media/characters/shock-diamond/front-nude.svg",
  23606. extra: 2514 / 2285,
  23607. bottom: 13 / 2527.56
  23608. }
  23609. },
  23610. },
  23611. [
  23612. {
  23613. name: "Normal",
  23614. height: math.unit(3, "meters")
  23615. },
  23616. {
  23617. name: "Macro",
  23618. height: math.unit(22, "meters"),
  23619. default: true
  23620. },
  23621. ]
  23622. ))
  23623. characterMakers.push(() => makeCharacter(
  23624. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23625. {
  23626. front: {
  23627. height: math.unit(5 + 4 / 12, "feet"),
  23628. weight: math.unit(120, "lb"),
  23629. name: "Front",
  23630. image: {
  23631. source: "./media/characters/rory/front.svg",
  23632. extra: 1318/1241,
  23633. bottom: 42/1360
  23634. }
  23635. },
  23636. back: {
  23637. height: math.unit(5 + 4 / 12, "feet"),
  23638. weight: math.unit(120, "lb"),
  23639. name: "Back",
  23640. image: {
  23641. source: "./media/characters/rory/back.svg",
  23642. extra: 1318/1241,
  23643. bottom: 42/1360
  23644. }
  23645. },
  23646. butt: {
  23647. height: math.unit(1.74, "feet"),
  23648. name: "Butt",
  23649. image: {
  23650. source: "./media/characters/rory/butt.svg"
  23651. }
  23652. },
  23653. dick: {
  23654. height: math.unit(1.02, "feet"),
  23655. name: "Dick",
  23656. image: {
  23657. source: "./media/characters/rory/dick.svg"
  23658. }
  23659. },
  23660. paws: {
  23661. height: math.unit(1, "feet"),
  23662. name: "Paws",
  23663. image: {
  23664. source: "./media/characters/rory/paws.svg"
  23665. }
  23666. },
  23667. frontAlt: {
  23668. height: math.unit(5 + 4 / 12, "feet"),
  23669. weight: math.unit(120, "lb"),
  23670. name: "Front (Alt)",
  23671. image: {
  23672. source: "./media/characters/rory/front-alt.svg",
  23673. extra: 589 / 556,
  23674. bottom: 45.7 / 635.76
  23675. }
  23676. },
  23677. frontAltNude: {
  23678. height: math.unit(5 + 4 / 12, "feet"),
  23679. weight: math.unit(120, "lb"),
  23680. name: "Front (Alt, Nude)",
  23681. image: {
  23682. source: "./media/characters/rory/front-alt-nude.svg",
  23683. extra: 589 / 556,
  23684. bottom: 45.7 / 635.76
  23685. }
  23686. },
  23687. side: {
  23688. height: math.unit(5 + 4 / 12, "feet"),
  23689. weight: math.unit(120, "lb"),
  23690. name: "Side",
  23691. image: {
  23692. source: "./media/characters/rory/side.svg",
  23693. extra: 597 / 564,
  23694. bottom: 55 / 653
  23695. }
  23696. },
  23697. backAlt: {
  23698. height: math.unit(5 + 4 / 12, "feet"),
  23699. weight: math.unit(120, "lb"),
  23700. name: "Back (Alt)",
  23701. image: {
  23702. source: "./media/characters/rory/back-alt.svg",
  23703. extra: 620 / 585,
  23704. bottom: 8.86 / 630.43
  23705. }
  23706. },
  23707. dickAlt: {
  23708. height: math.unit(0.86, "feet"),
  23709. name: "Dick (Alt)",
  23710. image: {
  23711. source: "./media/characters/rory/dick-alt.svg"
  23712. }
  23713. },
  23714. },
  23715. [
  23716. {
  23717. name: "Normal",
  23718. height: math.unit(5 + 4 / 12, "feet"),
  23719. default: true
  23720. },
  23721. {
  23722. name: "Macro",
  23723. height: math.unit(100, "feet")
  23724. },
  23725. {
  23726. name: "Macro+",
  23727. height: math.unit(140, "feet")
  23728. },
  23729. {
  23730. name: "Macro++",
  23731. height: math.unit(300, "feet")
  23732. },
  23733. ]
  23734. ))
  23735. characterMakers.push(() => makeCharacter(
  23736. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23737. {
  23738. front: {
  23739. height: math.unit(5 + 9 / 12, "feet"),
  23740. weight: math.unit(190, "lb"),
  23741. name: "Front",
  23742. image: {
  23743. source: "./media/characters/sprisk/front.svg",
  23744. extra: 1225 / 1180,
  23745. bottom: 42.7 / 1266.4
  23746. }
  23747. },
  23748. frontNsfw: {
  23749. height: math.unit(5 + 9 / 12, "feet"),
  23750. weight: math.unit(190, "lb"),
  23751. name: "Front (NSFW)",
  23752. image: {
  23753. source: "./media/characters/sprisk/front-nsfw.svg",
  23754. extra: 1225 / 1180,
  23755. bottom: 42.7 / 1266.4
  23756. }
  23757. },
  23758. back: {
  23759. height: math.unit(5 + 9 / 12, "feet"),
  23760. weight: math.unit(190, "lb"),
  23761. name: "Back",
  23762. image: {
  23763. source: "./media/characters/sprisk/back.svg",
  23764. extra: 1247 / 1200,
  23765. bottom: 5.6 / 1253.04
  23766. }
  23767. },
  23768. },
  23769. [
  23770. {
  23771. name: "Tiny",
  23772. height: math.unit(2, "inches")
  23773. },
  23774. {
  23775. name: "Normal",
  23776. height: math.unit(5 + 9 / 12, "feet"),
  23777. default: true
  23778. },
  23779. {
  23780. name: "Mini Macro",
  23781. height: math.unit(18, "feet")
  23782. },
  23783. {
  23784. name: "Macro",
  23785. height: math.unit(100, "feet")
  23786. },
  23787. {
  23788. name: "MACRO",
  23789. height: math.unit(50, "miles")
  23790. },
  23791. {
  23792. name: "M A C R O",
  23793. height: math.unit(300, "miles")
  23794. },
  23795. ]
  23796. ))
  23797. characterMakers.push(() => makeCharacter(
  23798. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23799. {
  23800. side: {
  23801. height: math.unit(15.6, "meters"),
  23802. weight: math.unit(700000, "kg"),
  23803. name: "Side",
  23804. image: {
  23805. source: "./media/characters/bunsen/side.svg",
  23806. extra: 1644 / 358
  23807. }
  23808. },
  23809. foot: {
  23810. height: math.unit(1.611 * 1644 / 358, "meter"),
  23811. name: "Foot",
  23812. image: {
  23813. source: "./media/characters/bunsen/foot.svg"
  23814. }
  23815. },
  23816. },
  23817. [
  23818. {
  23819. name: "Small",
  23820. height: math.unit(10, "feet")
  23821. },
  23822. {
  23823. name: "Normal",
  23824. height: math.unit(15.6, "meters"),
  23825. default: true
  23826. },
  23827. ]
  23828. ))
  23829. characterMakers.push(() => makeCharacter(
  23830. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23831. {
  23832. front: {
  23833. height: math.unit(4 + 11 / 12, "feet"),
  23834. weight: math.unit(140, "lb"),
  23835. name: "Front",
  23836. image: {
  23837. source: "./media/characters/sesh/front.svg",
  23838. extra: 3420 / 3231,
  23839. bottom: 72 / 3949.5
  23840. }
  23841. },
  23842. },
  23843. [
  23844. {
  23845. name: "Normal",
  23846. height: math.unit(4 + 11 / 12, "feet")
  23847. },
  23848. {
  23849. name: "Grown",
  23850. height: math.unit(15, "feet"),
  23851. default: true
  23852. },
  23853. {
  23854. name: "Macro",
  23855. height: math.unit(1500, "feet")
  23856. },
  23857. {
  23858. name: "Megamacro",
  23859. height: math.unit(30, "miles")
  23860. },
  23861. {
  23862. name: "Continental",
  23863. height: math.unit(3000, "miles")
  23864. },
  23865. {
  23866. name: "Gravity Mass",
  23867. height: math.unit(300000, "miles")
  23868. },
  23869. {
  23870. name: "Planet Buster",
  23871. height: math.unit(30000000, "miles")
  23872. },
  23873. {
  23874. name: "Big",
  23875. height: math.unit(3000000000, "miles")
  23876. },
  23877. ]
  23878. ))
  23879. characterMakers.push(() => makeCharacter(
  23880. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23881. {
  23882. front: {
  23883. height: math.unit(9, "feet"),
  23884. weight: math.unit(350, "lb"),
  23885. name: "Front",
  23886. image: {
  23887. source: "./media/characters/pepper/front.svg",
  23888. extra: 1448 / 1312,
  23889. bottom: 9.4 / 1457.88
  23890. }
  23891. },
  23892. back: {
  23893. height: math.unit(9, "feet"),
  23894. weight: math.unit(350, "lb"),
  23895. name: "Back",
  23896. image: {
  23897. source: "./media/characters/pepper/back.svg",
  23898. extra: 1423 / 1300,
  23899. bottom: 4.6 / 1429
  23900. }
  23901. },
  23902. maw: {
  23903. height: math.unit(0.932, "feet"),
  23904. name: "Maw",
  23905. image: {
  23906. source: "./media/characters/pepper/maw.svg"
  23907. }
  23908. },
  23909. },
  23910. [
  23911. {
  23912. name: "Normal",
  23913. height: math.unit(9, "feet"),
  23914. default: true
  23915. },
  23916. ]
  23917. ))
  23918. characterMakers.push(() => makeCharacter(
  23919. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23920. {
  23921. front: {
  23922. height: math.unit(6, "feet"),
  23923. weight: math.unit(150, "lb"),
  23924. name: "Front",
  23925. image: {
  23926. source: "./media/characters/maelstrom/front.svg",
  23927. extra: 2100 / 1883,
  23928. bottom: 94 / 2196.7
  23929. }
  23930. },
  23931. },
  23932. [
  23933. {
  23934. name: "Less Kaiju",
  23935. height: math.unit(200, "feet")
  23936. },
  23937. {
  23938. name: "Kaiju",
  23939. height: math.unit(400, "feet"),
  23940. default: true
  23941. },
  23942. {
  23943. name: "Kaiju-er",
  23944. height: math.unit(600, "feet")
  23945. },
  23946. ]
  23947. ))
  23948. characterMakers.push(() => makeCharacter(
  23949. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23950. {
  23951. front: {
  23952. height: math.unit(6 + 5 / 12, "feet"),
  23953. weight: math.unit(180, "lb"),
  23954. name: "Front",
  23955. image: {
  23956. source: "./media/characters/lexir/front.svg",
  23957. extra: 180 / 172,
  23958. bottom: 12 / 192
  23959. }
  23960. },
  23961. back: {
  23962. height: math.unit(6 + 5 / 12, "feet"),
  23963. weight: math.unit(180, "lb"),
  23964. name: "Back",
  23965. image: {
  23966. source: "./media/characters/lexir/back.svg",
  23967. extra: 1273/1201,
  23968. bottom: 39/1312
  23969. }
  23970. },
  23971. },
  23972. [
  23973. {
  23974. name: "Very Smal",
  23975. height: math.unit(1, "nm")
  23976. },
  23977. {
  23978. name: "Normal",
  23979. height: math.unit(6 + 5 / 12, "feet"),
  23980. default: true
  23981. },
  23982. {
  23983. name: "Macro",
  23984. height: math.unit(1, "mile")
  23985. },
  23986. {
  23987. name: "Megamacro",
  23988. height: math.unit(50, "miles")
  23989. },
  23990. ]
  23991. ))
  23992. characterMakers.push(() => makeCharacter(
  23993. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23994. {
  23995. front: {
  23996. height: math.unit(1.5, "meters"),
  23997. weight: math.unit(100, "lb"),
  23998. name: "Front",
  23999. image: {
  24000. source: "./media/characters/maksio/front.svg",
  24001. extra: 1549 / 1531,
  24002. bottom: 123.7 / 1674.5429
  24003. }
  24004. },
  24005. back: {
  24006. height: math.unit(1.5, "meters"),
  24007. weight: math.unit(100, "lb"),
  24008. name: "Back",
  24009. image: {
  24010. source: "./media/characters/maksio/back.svg",
  24011. extra: 1541 / 1509,
  24012. bottom: 97 / 1639
  24013. }
  24014. },
  24015. hand: {
  24016. height: math.unit(0.621, "feet"),
  24017. name: "Hand",
  24018. image: {
  24019. source: "./media/characters/maksio/hand.svg"
  24020. }
  24021. },
  24022. foot: {
  24023. height: math.unit(1.611, "feet"),
  24024. name: "Foot",
  24025. image: {
  24026. source: "./media/characters/maksio/foot.svg"
  24027. }
  24028. },
  24029. },
  24030. [
  24031. {
  24032. name: "Shrunken",
  24033. height: math.unit(10, "cm")
  24034. },
  24035. {
  24036. name: "Normal",
  24037. height: math.unit(150, "cm"),
  24038. default: true
  24039. },
  24040. ]
  24041. ))
  24042. characterMakers.push(() => makeCharacter(
  24043. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24044. {
  24045. front: {
  24046. height: math.unit(100, "feet"),
  24047. name: "Front",
  24048. image: {
  24049. source: "./media/characters/erza-bear/front.svg",
  24050. extra: 2449 / 2390,
  24051. bottom: 46 / 2494
  24052. }
  24053. },
  24054. back: {
  24055. height: math.unit(100, "feet"),
  24056. name: "Back",
  24057. image: {
  24058. source: "./media/characters/erza-bear/back.svg",
  24059. extra: 2489 / 2430,
  24060. bottom: 85.4 / 2480
  24061. }
  24062. },
  24063. tail: {
  24064. height: math.unit(42, "feet"),
  24065. name: "Tail",
  24066. image: {
  24067. source: "./media/characters/erza-bear/tail.svg"
  24068. }
  24069. },
  24070. tongue: {
  24071. height: math.unit(8, "feet"),
  24072. name: "Tongue",
  24073. image: {
  24074. source: "./media/characters/erza-bear/tongue.svg"
  24075. }
  24076. },
  24077. dick: {
  24078. height: math.unit(10.5, "feet"),
  24079. name: "Dick",
  24080. image: {
  24081. source: "./media/characters/erza-bear/dick.svg"
  24082. }
  24083. },
  24084. dickVertical: {
  24085. height: math.unit(16.9, "feet"),
  24086. name: "Dick (Vertical)",
  24087. image: {
  24088. source: "./media/characters/erza-bear/dick-vertical.svg"
  24089. }
  24090. },
  24091. },
  24092. [
  24093. {
  24094. name: "Macro",
  24095. height: math.unit(100, "feet"),
  24096. default: true
  24097. },
  24098. ]
  24099. ))
  24100. characterMakers.push(() => makeCharacter(
  24101. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24102. {
  24103. front: {
  24104. height: math.unit(172, "cm"),
  24105. weight: math.unit(73, "kg"),
  24106. name: "Front",
  24107. image: {
  24108. source: "./media/characters/violet-flor/front.svg",
  24109. extra: 1530 / 1442,
  24110. bottom: 61.9 / 1588.8
  24111. }
  24112. },
  24113. back: {
  24114. height: math.unit(180, "cm"),
  24115. weight: math.unit(73, "kg"),
  24116. name: "Back",
  24117. image: {
  24118. source: "./media/characters/violet-flor/back.svg",
  24119. extra: 1692 / 1630,
  24120. bottom: 20 / 1712
  24121. }
  24122. },
  24123. },
  24124. [
  24125. {
  24126. name: "Normal",
  24127. height: math.unit(172, "cm"),
  24128. default: true
  24129. },
  24130. ]
  24131. ))
  24132. characterMakers.push(() => makeCharacter(
  24133. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24134. {
  24135. front: {
  24136. height: math.unit(6, "feet"),
  24137. weight: math.unit(220, "lb"),
  24138. name: "Front",
  24139. image: {
  24140. source: "./media/characters/lynn-rhea/front.svg",
  24141. extra: 310 / 273
  24142. }
  24143. },
  24144. back: {
  24145. height: math.unit(6, "feet"),
  24146. weight: math.unit(220, "lb"),
  24147. name: "Back",
  24148. image: {
  24149. source: "./media/characters/lynn-rhea/back.svg",
  24150. extra: 310 / 273
  24151. }
  24152. },
  24153. dicks: {
  24154. height: math.unit(0.9, "feet"),
  24155. name: "Dicks",
  24156. image: {
  24157. source: "./media/characters/lynn-rhea/dicks.svg"
  24158. }
  24159. },
  24160. slit: {
  24161. height: math.unit(0.4, "feet"),
  24162. name: "Slit",
  24163. image: {
  24164. source: "./media/characters/lynn-rhea/slit.svg"
  24165. }
  24166. },
  24167. },
  24168. [
  24169. {
  24170. name: "Micro",
  24171. height: math.unit(1, "inch")
  24172. },
  24173. {
  24174. name: "Macro",
  24175. height: math.unit(60, "feet"),
  24176. default: true
  24177. },
  24178. {
  24179. name: "Megamacro",
  24180. height: math.unit(2, "miles")
  24181. },
  24182. {
  24183. name: "Gigamacro",
  24184. height: math.unit(3, "earths")
  24185. },
  24186. {
  24187. name: "Galactic",
  24188. height: math.unit(0.8, "galaxies")
  24189. },
  24190. ]
  24191. ))
  24192. characterMakers.push(() => makeCharacter(
  24193. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24194. {
  24195. front: {
  24196. height: math.unit(1600, "feet"),
  24197. weight: math.unit(85758785169, "kg"),
  24198. name: "Front",
  24199. image: {
  24200. source: "./media/characters/valathos/front.svg",
  24201. extra: 1451 / 1339
  24202. }
  24203. },
  24204. },
  24205. [
  24206. {
  24207. name: "Macro",
  24208. height: math.unit(1600, "feet"),
  24209. default: true
  24210. },
  24211. ]
  24212. ))
  24213. characterMakers.push(() => makeCharacter(
  24214. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24215. {
  24216. front: {
  24217. height: math.unit(7 + 5 / 12, "feet"),
  24218. weight: math.unit(300, "lb"),
  24219. name: "Front",
  24220. image: {
  24221. source: "./media/characters/azula/front.svg",
  24222. extra: 3208 / 2880,
  24223. bottom: 80.2 / 3277
  24224. }
  24225. },
  24226. back: {
  24227. height: math.unit(7 + 5 / 12, "feet"),
  24228. weight: math.unit(300, "lb"),
  24229. name: "Back",
  24230. image: {
  24231. source: "./media/characters/azula/back.svg",
  24232. extra: 3169 / 2822,
  24233. bottom: 150.6 / 3321
  24234. }
  24235. },
  24236. },
  24237. [
  24238. {
  24239. name: "Normal",
  24240. height: math.unit(7 + 5 / 12, "feet"),
  24241. default: true
  24242. },
  24243. {
  24244. name: "Big",
  24245. height: math.unit(20, "feet")
  24246. },
  24247. ]
  24248. ))
  24249. characterMakers.push(() => makeCharacter(
  24250. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24251. {
  24252. front: {
  24253. height: math.unit(5 + 1 / 12, "feet"),
  24254. weight: math.unit(110, "lb"),
  24255. name: "Front",
  24256. image: {
  24257. source: "./media/characters/rupert/front.svg",
  24258. extra: 1549 / 1495,
  24259. bottom: 54.2 / 1604.4
  24260. }
  24261. },
  24262. },
  24263. [
  24264. {
  24265. name: "Normal",
  24266. height: math.unit(5 + 1 / 12, "feet"),
  24267. default: true
  24268. },
  24269. ]
  24270. ))
  24271. characterMakers.push(() => makeCharacter(
  24272. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24273. {
  24274. front: {
  24275. height: math.unit(8 + 4 / 12, "feet"),
  24276. weight: math.unit(350, "lb"),
  24277. name: "Front",
  24278. image: {
  24279. source: "./media/characters/sheera-castellar/front.svg",
  24280. extra: 1957 / 1894,
  24281. bottom: 26.97 / 1975.017
  24282. }
  24283. },
  24284. side: {
  24285. height: math.unit(8 + 4 / 12, "feet"),
  24286. weight: math.unit(350, "lb"),
  24287. name: "Side",
  24288. image: {
  24289. source: "./media/characters/sheera-castellar/side.svg",
  24290. extra: 1957 / 1894
  24291. }
  24292. },
  24293. back: {
  24294. height: math.unit(8 + 4 / 12, "feet"),
  24295. weight: math.unit(350, "lb"),
  24296. name: "Back",
  24297. image: {
  24298. source: "./media/characters/sheera-castellar/back.svg",
  24299. extra: 1957 / 1894
  24300. }
  24301. },
  24302. angled: {
  24303. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24304. weight: math.unit(350, "lb"),
  24305. name: "Angled",
  24306. image: {
  24307. source: "./media/characters/sheera-castellar/angled.svg",
  24308. extra: 1807 / 1707,
  24309. bottom: 68 / 1875
  24310. }
  24311. },
  24312. genitals: {
  24313. height: math.unit(2.2, "feet"),
  24314. name: "Genitals",
  24315. image: {
  24316. source: "./media/characters/sheera-castellar/genitals.svg"
  24317. }
  24318. },
  24319. taur: {
  24320. height: math.unit(10 + 6/12, "feet"),
  24321. name: "Taur",
  24322. image: {
  24323. source: "./media/characters/sheera-castellar/taur.svg",
  24324. extra: 2017/1909,
  24325. bottom: 185/2202
  24326. }
  24327. },
  24328. },
  24329. [
  24330. {
  24331. name: "Normal",
  24332. height: math.unit(8 + 4 / 12, "feet")
  24333. },
  24334. {
  24335. name: "Macro",
  24336. height: math.unit(150, "feet"),
  24337. default: true
  24338. },
  24339. {
  24340. name: "Macro+",
  24341. height: math.unit(800, "feet")
  24342. },
  24343. ]
  24344. ))
  24345. characterMakers.push(() => makeCharacter(
  24346. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24347. {
  24348. front: {
  24349. height: math.unit(6, "feet"),
  24350. weight: math.unit(150, "lb"),
  24351. name: "Front",
  24352. image: {
  24353. source: "./media/characters/jaipur/front.svg",
  24354. extra: 3860 / 3731,
  24355. bottom: 287 / 4140
  24356. }
  24357. },
  24358. back: {
  24359. height: math.unit(6, "feet"),
  24360. weight: math.unit(150, "lb"),
  24361. name: "Back",
  24362. image: {
  24363. source: "./media/characters/jaipur/back.svg",
  24364. extra: 1637/1561,
  24365. bottom: 154/1791
  24366. }
  24367. },
  24368. },
  24369. [
  24370. {
  24371. name: "Normal",
  24372. height: math.unit(1.85, "meters"),
  24373. default: true
  24374. },
  24375. {
  24376. name: "Macro",
  24377. height: math.unit(150, "meters")
  24378. },
  24379. {
  24380. name: "Macro+",
  24381. height: math.unit(0.5, "miles")
  24382. },
  24383. {
  24384. name: "Macro++",
  24385. height: math.unit(2.5, "miles")
  24386. },
  24387. {
  24388. name: "Macro+++",
  24389. height: math.unit(12, "miles")
  24390. },
  24391. {
  24392. name: "Macro++++",
  24393. height: math.unit(120, "miles")
  24394. },
  24395. {
  24396. name: "Macro+++++",
  24397. height: math.unit(1200, "miles")
  24398. },
  24399. ]
  24400. ))
  24401. characterMakers.push(() => makeCharacter(
  24402. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24403. {
  24404. front: {
  24405. height: math.unit(6, "feet"),
  24406. weight: math.unit(150, "lb"),
  24407. name: "Front",
  24408. image: {
  24409. source: "./media/characters/sheila-wolf/front.svg",
  24410. extra: 1931 / 1808,
  24411. bottom: 29.5 / 1960
  24412. }
  24413. },
  24414. dick: {
  24415. height: math.unit(1.464, "feet"),
  24416. name: "Dick",
  24417. image: {
  24418. source: "./media/characters/sheila-wolf/dick.svg"
  24419. }
  24420. },
  24421. muzzle: {
  24422. height: math.unit(0.513, "feet"),
  24423. name: "Muzzle",
  24424. image: {
  24425. source: "./media/characters/sheila-wolf/muzzle.svg"
  24426. }
  24427. },
  24428. },
  24429. [
  24430. {
  24431. name: "Macro",
  24432. height: math.unit(70, "feet"),
  24433. default: true
  24434. },
  24435. ]
  24436. ))
  24437. characterMakers.push(() => makeCharacter(
  24438. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24439. {
  24440. front: {
  24441. height: math.unit(32, "meters"),
  24442. weight: math.unit(300000, "kg"),
  24443. name: "Front",
  24444. image: {
  24445. source: "./media/characters/almor/front.svg",
  24446. extra: 1408 / 1322,
  24447. bottom: 94.6 / 1506.5
  24448. }
  24449. },
  24450. },
  24451. [
  24452. {
  24453. name: "Macro",
  24454. height: math.unit(32, "meters"),
  24455. default: true
  24456. },
  24457. ]
  24458. ))
  24459. characterMakers.push(() => makeCharacter(
  24460. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24461. {
  24462. front: {
  24463. height: math.unit(7, "feet"),
  24464. weight: math.unit(200, "lb"),
  24465. name: "Front",
  24466. image: {
  24467. source: "./media/characters/silver/front.svg",
  24468. extra: 472.1 / 450.5,
  24469. bottom: 26.5 / 499.424
  24470. }
  24471. },
  24472. },
  24473. [
  24474. {
  24475. name: "Normal",
  24476. height: math.unit(7, "feet"),
  24477. default: true
  24478. },
  24479. {
  24480. name: "Macro",
  24481. height: math.unit(800, "feet")
  24482. },
  24483. {
  24484. name: "Megamacro",
  24485. height: math.unit(250, "miles")
  24486. },
  24487. ]
  24488. ))
  24489. characterMakers.push(() => makeCharacter(
  24490. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24491. {
  24492. front: {
  24493. height: math.unit(6, "feet"),
  24494. weight: math.unit(150, "lb"),
  24495. name: "Front",
  24496. image: {
  24497. source: "./media/characters/pliskin/front.svg",
  24498. extra: 1469 / 1359,
  24499. bottom: 70 / 1540
  24500. }
  24501. },
  24502. },
  24503. [
  24504. {
  24505. name: "Micro",
  24506. height: math.unit(3, "inches")
  24507. },
  24508. {
  24509. name: "Normal",
  24510. height: math.unit(5 + 11 / 12, "feet"),
  24511. default: true
  24512. },
  24513. {
  24514. name: "Macro",
  24515. height: math.unit(120, "feet")
  24516. },
  24517. ]
  24518. ))
  24519. characterMakers.push(() => makeCharacter(
  24520. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24521. {
  24522. front: {
  24523. height: math.unit(6, "feet"),
  24524. weight: math.unit(150, "lb"),
  24525. name: "Front",
  24526. image: {
  24527. source: "./media/characters/sammy/front.svg",
  24528. extra: 1193 / 1089,
  24529. bottom: 30.5 / 1226
  24530. }
  24531. },
  24532. },
  24533. [
  24534. {
  24535. name: "Macro",
  24536. height: math.unit(1700, "feet"),
  24537. default: true
  24538. },
  24539. {
  24540. name: "Examacro",
  24541. height: math.unit(2.5e9, "lightyears")
  24542. },
  24543. ]
  24544. ))
  24545. characterMakers.push(() => makeCharacter(
  24546. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24547. {
  24548. front: {
  24549. height: math.unit(21, "meters"),
  24550. weight: math.unit(12, "tonnes"),
  24551. name: "Front",
  24552. image: {
  24553. source: "./media/characters/kuru/front.svg",
  24554. extra: 4301 / 3785,
  24555. bottom: 371.3 / 4691
  24556. }
  24557. },
  24558. },
  24559. [
  24560. {
  24561. name: "Macro",
  24562. height: math.unit(21, "meters"),
  24563. default: true
  24564. },
  24565. ]
  24566. ))
  24567. characterMakers.push(() => makeCharacter(
  24568. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24569. {
  24570. front: {
  24571. height: math.unit(23, "meters"),
  24572. weight: math.unit(12.2, "tonnes"),
  24573. name: "Front",
  24574. image: {
  24575. source: "./media/characters/rakka/front.svg",
  24576. extra: 4670 / 4169,
  24577. bottom: 301 / 4968.7
  24578. }
  24579. },
  24580. },
  24581. [
  24582. {
  24583. name: "Macro",
  24584. height: math.unit(23, "meters"),
  24585. default: true
  24586. },
  24587. ]
  24588. ))
  24589. characterMakers.push(() => makeCharacter(
  24590. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24591. {
  24592. front: {
  24593. height: math.unit(6, "feet"),
  24594. weight: math.unit(150, "lb"),
  24595. name: "Front",
  24596. image: {
  24597. source: "./media/characters/rhys-feline/front.svg",
  24598. extra: 2488 / 2308,
  24599. bottom: 35.67 / 2519.19
  24600. }
  24601. },
  24602. },
  24603. [
  24604. {
  24605. name: "Really Small",
  24606. height: math.unit(1, "nm")
  24607. },
  24608. {
  24609. name: "Micro",
  24610. height: math.unit(4, "inches")
  24611. },
  24612. {
  24613. name: "Normal",
  24614. height: math.unit(4 + 10 / 12, "feet"),
  24615. default: true
  24616. },
  24617. {
  24618. name: "Macro",
  24619. height: math.unit(100, "feet")
  24620. },
  24621. {
  24622. name: "Megamacto",
  24623. height: math.unit(50, "miles")
  24624. },
  24625. ]
  24626. ))
  24627. characterMakers.push(() => makeCharacter(
  24628. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24629. {
  24630. side: {
  24631. height: math.unit(30, "feet"),
  24632. weight: math.unit(35000, "kg"),
  24633. name: "Side",
  24634. image: {
  24635. source: "./media/characters/alydar/side.svg",
  24636. extra: 234 / 222,
  24637. bottom: 6.5 / 241
  24638. }
  24639. },
  24640. front: {
  24641. height: math.unit(30, "feet"),
  24642. weight: math.unit(35000, "kg"),
  24643. name: "Front",
  24644. image: {
  24645. source: "./media/characters/alydar/front.svg",
  24646. extra: 223.37 / 210.2,
  24647. bottom: 22.3 / 246.76
  24648. }
  24649. },
  24650. top: {
  24651. height: math.unit(64.54, "feet"),
  24652. weight: math.unit(35000, "kg"),
  24653. name: "Top",
  24654. image: {
  24655. source: "./media/characters/alydar/top.svg"
  24656. }
  24657. },
  24658. anthro: {
  24659. height: math.unit(30, "feet"),
  24660. weight: math.unit(9000, "kg"),
  24661. name: "Anthro",
  24662. image: {
  24663. source: "./media/characters/alydar/anthro.svg",
  24664. extra: 432 / 421,
  24665. bottom: 7.18 / 440
  24666. }
  24667. },
  24668. maw: {
  24669. height: math.unit(11.693, "feet"),
  24670. name: "Maw",
  24671. image: {
  24672. source: "./media/characters/alydar/maw.svg"
  24673. }
  24674. },
  24675. head: {
  24676. height: math.unit(11.693, "feet"),
  24677. name: "Head",
  24678. image: {
  24679. source: "./media/characters/alydar/head.svg"
  24680. }
  24681. },
  24682. headAlt: {
  24683. height: math.unit(12.861, "feet"),
  24684. name: "Head (Alt)",
  24685. image: {
  24686. source: "./media/characters/alydar/head-alt.svg"
  24687. }
  24688. },
  24689. wing: {
  24690. height: math.unit(20.712, "feet"),
  24691. name: "Wing",
  24692. image: {
  24693. source: "./media/characters/alydar/wing.svg"
  24694. }
  24695. },
  24696. wingFeather: {
  24697. height: math.unit(9.662, "feet"),
  24698. name: "Wing Feather",
  24699. image: {
  24700. source: "./media/characters/alydar/wing-feather.svg"
  24701. }
  24702. },
  24703. countourFeather: {
  24704. height: math.unit(4.154, "feet"),
  24705. name: "Contour Feather",
  24706. image: {
  24707. source: "./media/characters/alydar/contour-feather.svg"
  24708. }
  24709. },
  24710. },
  24711. [
  24712. {
  24713. name: "Diplomatic",
  24714. height: math.unit(13, "feet"),
  24715. default: true
  24716. },
  24717. {
  24718. name: "Small",
  24719. height: math.unit(30, "feet")
  24720. },
  24721. {
  24722. name: "Normal",
  24723. height: math.unit(95, "feet"),
  24724. default: true
  24725. },
  24726. {
  24727. name: "Large",
  24728. height: math.unit(285, "feet")
  24729. },
  24730. {
  24731. name: "Incomprehensible",
  24732. height: math.unit(450, "megameters")
  24733. },
  24734. ]
  24735. ))
  24736. characterMakers.push(() => makeCharacter(
  24737. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24738. {
  24739. side: {
  24740. height: math.unit(11, "feet"),
  24741. weight: math.unit(1750, "kg"),
  24742. name: "Side",
  24743. image: {
  24744. source: "./media/characters/selicia/side.svg",
  24745. extra: 440 / 396,
  24746. bottom: 24.8 / 465.979
  24747. }
  24748. },
  24749. maw: {
  24750. height: math.unit(4.665, "feet"),
  24751. name: "Maw",
  24752. image: {
  24753. source: "./media/characters/selicia/maw.svg"
  24754. }
  24755. },
  24756. },
  24757. [
  24758. {
  24759. name: "Normal",
  24760. height: math.unit(11, "feet"),
  24761. default: true
  24762. },
  24763. ]
  24764. ))
  24765. characterMakers.push(() => makeCharacter(
  24766. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24767. {
  24768. side: {
  24769. height: math.unit(2 + 6 / 12, "feet"),
  24770. weight: math.unit(30, "lb"),
  24771. name: "Side",
  24772. image: {
  24773. source: "./media/characters/layla/side.svg",
  24774. extra: 244 / 188,
  24775. bottom: 18.2 / 262.1
  24776. }
  24777. },
  24778. back: {
  24779. height: math.unit(2 + 6 / 12, "feet"),
  24780. weight: math.unit(30, "lb"),
  24781. name: "Back",
  24782. image: {
  24783. source: "./media/characters/layla/back.svg",
  24784. extra: 308 / 241.5,
  24785. bottom: 8.9 / 316.8
  24786. }
  24787. },
  24788. cumming: {
  24789. height: math.unit(2 + 6 / 12, "feet"),
  24790. weight: math.unit(30, "lb"),
  24791. name: "Cumming",
  24792. image: {
  24793. source: "./media/characters/layla/cumming.svg",
  24794. extra: 342 / 279,
  24795. bottom: 595 / 938
  24796. }
  24797. },
  24798. dickFlaccid: {
  24799. height: math.unit(2.595, "feet"),
  24800. name: "Flaccid Genitals",
  24801. image: {
  24802. source: "./media/characters/layla/dick-flaccid.svg"
  24803. }
  24804. },
  24805. dickErect: {
  24806. height: math.unit(2.359, "feet"),
  24807. name: "Erect Genitals",
  24808. image: {
  24809. source: "./media/characters/layla/dick-erect.svg"
  24810. }
  24811. },
  24812. dragon: {
  24813. height: math.unit(40, "feet"),
  24814. name: "Dragon",
  24815. image: {
  24816. source: "./media/characters/layla/dragon.svg",
  24817. extra: 610/535,
  24818. bottom: 367/977
  24819. }
  24820. },
  24821. taur: {
  24822. height: math.unit(30, "feet"),
  24823. name: "Taur",
  24824. image: {
  24825. source: "./media/characters/layla/taur.svg",
  24826. extra: 1268/1199,
  24827. bottom: 112/1380
  24828. }
  24829. },
  24830. },
  24831. [
  24832. {
  24833. name: "Micro",
  24834. height: math.unit(1, "inch")
  24835. },
  24836. {
  24837. name: "Small",
  24838. height: math.unit(1, "foot")
  24839. },
  24840. {
  24841. name: "Normal",
  24842. height: math.unit(2 + 6 / 12, "feet"),
  24843. default: true
  24844. },
  24845. {
  24846. name: "Macro",
  24847. height: math.unit(200, "feet")
  24848. },
  24849. {
  24850. name: "Megamacro",
  24851. height: math.unit(1000, "miles")
  24852. },
  24853. {
  24854. name: "Planetary",
  24855. height: math.unit(8000, "miles")
  24856. },
  24857. {
  24858. name: "True Layla",
  24859. height: math.unit(200000 * 7, "multiverses")
  24860. },
  24861. ]
  24862. ))
  24863. characterMakers.push(() => makeCharacter(
  24864. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24865. {
  24866. back: {
  24867. height: math.unit(10.5, "feet"),
  24868. weight: math.unit(800, "lb"),
  24869. name: "Back",
  24870. image: {
  24871. source: "./media/characters/knox/back.svg",
  24872. extra: 1486 / 1089,
  24873. bottom: 107 / 1601.4
  24874. }
  24875. },
  24876. side: {
  24877. height: math.unit(10.5, "feet"),
  24878. weight: math.unit(800, "lb"),
  24879. name: "Side",
  24880. image: {
  24881. source: "./media/characters/knox/side.svg",
  24882. extra: 244 / 218,
  24883. bottom: 14 / 260
  24884. }
  24885. },
  24886. },
  24887. [
  24888. {
  24889. name: "Compact",
  24890. height: math.unit(10.5, "feet"),
  24891. default: true
  24892. },
  24893. {
  24894. name: "Dynamax",
  24895. height: math.unit(210, "feet")
  24896. },
  24897. {
  24898. name: "Full Macro",
  24899. height: math.unit(850, "feet")
  24900. },
  24901. ]
  24902. ))
  24903. characterMakers.push(() => makeCharacter(
  24904. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24905. {
  24906. front: {
  24907. height: math.unit(28, "feet"),
  24908. weight: math.unit(10500, "lb"),
  24909. name: "Front",
  24910. image: {
  24911. source: "./media/characters/kayda/front.svg",
  24912. extra: 1536 / 1428,
  24913. bottom: 68.7 / 1603
  24914. }
  24915. },
  24916. back: {
  24917. height: math.unit(28, "feet"),
  24918. weight: math.unit(10500, "lb"),
  24919. name: "Back",
  24920. image: {
  24921. source: "./media/characters/kayda/back.svg",
  24922. extra: 1557 / 1464,
  24923. bottom: 39.5 / 1597.49
  24924. }
  24925. },
  24926. dick: {
  24927. height: math.unit(3.858, "feet"),
  24928. name: "Dick",
  24929. image: {
  24930. source: "./media/characters/kayda/dick.svg"
  24931. }
  24932. },
  24933. },
  24934. [
  24935. {
  24936. name: "Macro",
  24937. height: math.unit(28, "feet"),
  24938. default: true
  24939. },
  24940. ]
  24941. ))
  24942. characterMakers.push(() => makeCharacter(
  24943. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24944. {
  24945. front: {
  24946. height: math.unit(10 + 11 / 12, "feet"),
  24947. weight: math.unit(1400, "lb"),
  24948. name: "Front",
  24949. image: {
  24950. source: "./media/characters/brian/front.svg",
  24951. extra: 737 / 692,
  24952. bottom: 55.4 / 785
  24953. }
  24954. },
  24955. },
  24956. [
  24957. {
  24958. name: "Normal",
  24959. height: math.unit(10 + 11 / 12, "feet"),
  24960. default: true
  24961. },
  24962. ]
  24963. ))
  24964. characterMakers.push(() => makeCharacter(
  24965. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24966. {
  24967. front: {
  24968. height: math.unit(5 + 8 / 12, "feet"),
  24969. weight: math.unit(140, "lb"),
  24970. name: "Front",
  24971. image: {
  24972. source: "./media/characters/khemri/front.svg",
  24973. extra: 4780 / 4059,
  24974. bottom: 80.1 / 4859.25
  24975. }
  24976. },
  24977. },
  24978. [
  24979. {
  24980. name: "Micro",
  24981. height: math.unit(6, "inches")
  24982. },
  24983. {
  24984. name: "Normal",
  24985. height: math.unit(5 + 8 / 12, "feet"),
  24986. default: true
  24987. },
  24988. ]
  24989. ))
  24990. characterMakers.push(() => makeCharacter(
  24991. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24992. {
  24993. front: {
  24994. height: math.unit(13, "feet"),
  24995. weight: math.unit(1700, "lb"),
  24996. name: "Front",
  24997. image: {
  24998. source: "./media/characters/felix-braveheart/front.svg",
  24999. extra: 1222 / 1157,
  25000. bottom: 53.2 / 1280
  25001. }
  25002. },
  25003. back: {
  25004. height: math.unit(13, "feet"),
  25005. weight: math.unit(1700, "lb"),
  25006. name: "Back",
  25007. image: {
  25008. source: "./media/characters/felix-braveheart/back.svg",
  25009. extra: 1277 / 1203,
  25010. bottom: 50.2 / 1327
  25011. }
  25012. },
  25013. feral: {
  25014. height: math.unit(6, "feet"),
  25015. weight: math.unit(400, "lb"),
  25016. name: "Feral",
  25017. image: {
  25018. source: "./media/characters/felix-braveheart/feral.svg",
  25019. extra: 682 / 625,
  25020. bottom: 6.9 / 688
  25021. }
  25022. },
  25023. },
  25024. [
  25025. {
  25026. name: "Normal",
  25027. height: math.unit(13, "feet"),
  25028. default: true
  25029. },
  25030. ]
  25031. ))
  25032. characterMakers.push(() => makeCharacter(
  25033. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25034. {
  25035. side: {
  25036. height: math.unit(5 + 11 / 12, "feet"),
  25037. weight: math.unit(1400, "lb"),
  25038. name: "Side",
  25039. image: {
  25040. source: "./media/characters/shadow-blade/side.svg",
  25041. extra: 1726 / 1267,
  25042. bottom: 58.4 / 1785
  25043. }
  25044. },
  25045. },
  25046. [
  25047. {
  25048. name: "Normal",
  25049. height: math.unit(5 + 11 / 12, "feet"),
  25050. default: true
  25051. },
  25052. ]
  25053. ))
  25054. characterMakers.push(() => makeCharacter(
  25055. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25056. {
  25057. front: {
  25058. height: math.unit(1 + 6 / 12, "feet"),
  25059. weight: math.unit(25, "lb"),
  25060. name: "Front",
  25061. image: {
  25062. source: "./media/characters/karla-halldor/front.svg",
  25063. extra: 1459 / 1383,
  25064. bottom: 12 / 1472
  25065. }
  25066. },
  25067. },
  25068. [
  25069. {
  25070. name: "Normal",
  25071. height: math.unit(1 + 6 / 12, "feet"),
  25072. default: true
  25073. },
  25074. ]
  25075. ))
  25076. characterMakers.push(() => makeCharacter(
  25077. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25078. {
  25079. front: {
  25080. height: math.unit(6 + 2 / 12, "feet"),
  25081. weight: math.unit(160, "lb"),
  25082. name: "Front",
  25083. image: {
  25084. source: "./media/characters/ariam/front.svg",
  25085. extra: 1073/976,
  25086. bottom: 52/1125
  25087. }
  25088. },
  25089. back: {
  25090. height: math.unit(6 + 2/12, "feet"),
  25091. weight: math.unit(160, "lb"),
  25092. name: "Back",
  25093. image: {
  25094. source: "./media/characters/ariam/back.svg",
  25095. extra: 1103/1023,
  25096. bottom: 9/1112
  25097. }
  25098. },
  25099. dressed: {
  25100. height: math.unit(6 + 2/12, "feet"),
  25101. weight: math.unit(160, "lb"),
  25102. name: "Dressed",
  25103. image: {
  25104. source: "./media/characters/ariam/dressed.svg",
  25105. extra: 1099/1009,
  25106. bottom: 25/1124
  25107. }
  25108. },
  25109. squatting: {
  25110. height: math.unit(4.1, "feet"),
  25111. weight: math.unit(160, "lb"),
  25112. name: "Squatting",
  25113. image: {
  25114. source: "./media/characters/ariam/squatting.svg",
  25115. extra: 2617 / 2112,
  25116. bottom: 61.2 / 2681,
  25117. }
  25118. },
  25119. },
  25120. [
  25121. {
  25122. name: "Normal",
  25123. height: math.unit(6 + 2 / 12, "feet"),
  25124. default: true
  25125. },
  25126. {
  25127. name: "Normal+",
  25128. height: math.unit(4, "meters")
  25129. },
  25130. {
  25131. name: "Macro",
  25132. height: math.unit(50, "meters")
  25133. },
  25134. {
  25135. name: "Macro+",
  25136. height: math.unit(100, "meters")
  25137. },
  25138. {
  25139. name: "Megamacro",
  25140. height: math.unit(20, "km")
  25141. },
  25142. {
  25143. name: "Caretaker",
  25144. height: math.unit(444, "megameters")
  25145. },
  25146. ]
  25147. ))
  25148. characterMakers.push(() => makeCharacter(
  25149. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25150. {
  25151. front: {
  25152. height: math.unit(1.67, "meters"),
  25153. weight: math.unit(140, "lb"),
  25154. name: "Front",
  25155. image: {
  25156. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25157. extra: 438 / 410,
  25158. bottom: 0.75 / 439
  25159. }
  25160. },
  25161. },
  25162. [
  25163. {
  25164. name: "Shrunken",
  25165. height: math.unit(7.6, "cm")
  25166. },
  25167. {
  25168. name: "Human Scale",
  25169. height: math.unit(1.67, "meters")
  25170. },
  25171. {
  25172. name: "Wolxi Scale",
  25173. height: math.unit(36.7, "meters"),
  25174. default: true
  25175. },
  25176. ]
  25177. ))
  25178. characterMakers.push(() => makeCharacter(
  25179. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25180. {
  25181. front: {
  25182. height: math.unit(1.73, "meters"),
  25183. weight: math.unit(240, "lb"),
  25184. name: "Front",
  25185. image: {
  25186. source: "./media/characters/izue-two-mothers/front.svg",
  25187. extra: 469 / 437,
  25188. bottom: 1.24 / 470.6
  25189. }
  25190. },
  25191. },
  25192. [
  25193. {
  25194. name: "Shrunken",
  25195. height: math.unit(7.86, "cm")
  25196. },
  25197. {
  25198. name: "Human Scale",
  25199. height: math.unit(1.73, "meters")
  25200. },
  25201. {
  25202. name: "Wolxi Scale",
  25203. height: math.unit(38, "meters"),
  25204. default: true
  25205. },
  25206. ]
  25207. ))
  25208. characterMakers.push(() => makeCharacter(
  25209. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25210. {
  25211. front: {
  25212. height: math.unit(1.55, "meters"),
  25213. weight: math.unit(120, "lb"),
  25214. name: "Front",
  25215. image: {
  25216. source: "./media/characters/teeku-love-shack/front.svg",
  25217. extra: 387 / 362,
  25218. bottom: 1.51 / 388
  25219. }
  25220. },
  25221. },
  25222. [
  25223. {
  25224. name: "Shrunken",
  25225. height: math.unit(7, "cm")
  25226. },
  25227. {
  25228. name: "Human Scale",
  25229. height: math.unit(1.55, "meters")
  25230. },
  25231. {
  25232. name: "Wolxi Scale",
  25233. height: math.unit(34.1, "meters"),
  25234. default: true
  25235. },
  25236. ]
  25237. ))
  25238. characterMakers.push(() => makeCharacter(
  25239. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25240. {
  25241. front: {
  25242. height: math.unit(1.83, "meters"),
  25243. weight: math.unit(135, "lb"),
  25244. name: "Front",
  25245. image: {
  25246. source: "./media/characters/dejma-the-red/front.svg",
  25247. extra: 480 / 458,
  25248. bottom: 1.8 / 482
  25249. }
  25250. },
  25251. },
  25252. [
  25253. {
  25254. name: "Shrunken",
  25255. height: math.unit(8.3, "cm")
  25256. },
  25257. {
  25258. name: "Human Scale",
  25259. height: math.unit(1.83, "meters")
  25260. },
  25261. {
  25262. name: "Wolxi Scale",
  25263. height: math.unit(40, "meters"),
  25264. default: true
  25265. },
  25266. ]
  25267. ))
  25268. characterMakers.push(() => makeCharacter(
  25269. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25270. {
  25271. front: {
  25272. height: math.unit(1.78, "meters"),
  25273. weight: math.unit(65, "kg"),
  25274. name: "Front",
  25275. image: {
  25276. source: "./media/characters/aki/front.svg",
  25277. extra: 452 / 415
  25278. }
  25279. },
  25280. frontNsfw: {
  25281. height: math.unit(1.78, "meters"),
  25282. weight: math.unit(65, "kg"),
  25283. name: "Front (NSFW)",
  25284. image: {
  25285. source: "./media/characters/aki/front-nsfw.svg",
  25286. extra: 452 / 415
  25287. }
  25288. },
  25289. back: {
  25290. height: math.unit(1.78, "meters"),
  25291. weight: math.unit(65, "kg"),
  25292. name: "Back",
  25293. image: {
  25294. source: "./media/characters/aki/back.svg",
  25295. extra: 452 / 415
  25296. }
  25297. },
  25298. rump: {
  25299. height: math.unit(2.05, "feet"),
  25300. name: "Rump",
  25301. image: {
  25302. source: "./media/characters/aki/rump.svg"
  25303. }
  25304. },
  25305. dick: {
  25306. height: math.unit(0.95, "feet"),
  25307. name: "Dick",
  25308. image: {
  25309. source: "./media/characters/aki/dick.svg"
  25310. }
  25311. },
  25312. },
  25313. [
  25314. {
  25315. name: "Micro",
  25316. height: math.unit(15, "cm")
  25317. },
  25318. {
  25319. name: "Normal",
  25320. height: math.unit(178, "cm"),
  25321. default: true
  25322. },
  25323. {
  25324. name: "Macro",
  25325. height: math.unit(214, "m")
  25326. },
  25327. {
  25328. name: "Macro+",
  25329. height: math.unit(534, "m")
  25330. },
  25331. ]
  25332. ))
  25333. characterMakers.push(() => makeCharacter(
  25334. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25335. {
  25336. front: {
  25337. height: math.unit(5 + 5 / 12, "feet"),
  25338. weight: math.unit(120, "lb"),
  25339. name: "Front",
  25340. image: {
  25341. source: "./media/characters/ari/front.svg",
  25342. extra: 1550/1471,
  25343. bottom: 39/1589
  25344. }
  25345. },
  25346. },
  25347. [
  25348. {
  25349. name: "Normal",
  25350. height: math.unit(5 + 5 / 12, "feet")
  25351. },
  25352. {
  25353. name: "Macro",
  25354. height: math.unit(100, "feet"),
  25355. default: true
  25356. },
  25357. {
  25358. name: "Megamacro",
  25359. height: math.unit(100, "miles")
  25360. },
  25361. {
  25362. name: "Gigamacro",
  25363. height: math.unit(80000, "miles")
  25364. },
  25365. ]
  25366. ))
  25367. characterMakers.push(() => makeCharacter(
  25368. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25369. {
  25370. side: {
  25371. height: math.unit(9, "feet"),
  25372. weight: math.unit(400, "kg"),
  25373. name: "Side",
  25374. image: {
  25375. source: "./media/characters/bolt/side.svg",
  25376. extra: 1126 / 896,
  25377. bottom: 60 / 1187.3,
  25378. }
  25379. },
  25380. },
  25381. [
  25382. {
  25383. name: "Micro",
  25384. height: math.unit(5, "inches")
  25385. },
  25386. {
  25387. name: "Normal",
  25388. height: math.unit(9, "feet"),
  25389. default: true
  25390. },
  25391. {
  25392. name: "Macro",
  25393. height: math.unit(700, "feet")
  25394. },
  25395. {
  25396. name: "Max Size",
  25397. height: math.unit(1.52e22, "yottameters")
  25398. },
  25399. ]
  25400. ))
  25401. characterMakers.push(() => makeCharacter(
  25402. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25403. {
  25404. front: {
  25405. height: math.unit(4.3, "meters"),
  25406. weight: math.unit(3, "tons"),
  25407. name: "Front",
  25408. image: {
  25409. source: "./media/characters/draekon-sylviar/front.svg",
  25410. extra: 2072/1512,
  25411. bottom: 74/2146
  25412. }
  25413. },
  25414. back: {
  25415. height: math.unit(4.3, "meters"),
  25416. weight: math.unit(3, "tons"),
  25417. name: "Back",
  25418. image: {
  25419. source: "./media/characters/draekon-sylviar/back.svg",
  25420. extra: 1639/1483,
  25421. bottom: 41/1680
  25422. }
  25423. },
  25424. feral: {
  25425. height: math.unit(1.15, "meters"),
  25426. weight: math.unit(3, "tons"),
  25427. name: "Feral",
  25428. image: {
  25429. source: "./media/characters/draekon-sylviar/feral.svg",
  25430. extra: 1033/395,
  25431. bottom: 130/1163
  25432. }
  25433. },
  25434. maw: {
  25435. height: math.unit(1.3, "meters"),
  25436. name: "Maw",
  25437. image: {
  25438. source: "./media/characters/draekon-sylviar/maw.svg"
  25439. }
  25440. },
  25441. mawSeparated: {
  25442. height: math.unit(1.53, "meters"),
  25443. name: "Separated Maw",
  25444. image: {
  25445. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25446. }
  25447. },
  25448. tail: {
  25449. height: math.unit(1.15, "meters"),
  25450. name: "Tail",
  25451. image: {
  25452. source: "./media/characters/draekon-sylviar/tail.svg"
  25453. }
  25454. },
  25455. tailDick: {
  25456. height: math.unit(1.15, "meters"),
  25457. name: "Tail (Dick)",
  25458. image: {
  25459. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25460. }
  25461. },
  25462. tailDickSeparated: {
  25463. height: math.unit(1.19, "meters"),
  25464. name: "Tail (Separated Dick)",
  25465. image: {
  25466. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25467. }
  25468. },
  25469. slit: {
  25470. height: math.unit(1, "meters"),
  25471. name: "Slit",
  25472. image: {
  25473. source: "./media/characters/draekon-sylviar/slit.svg"
  25474. }
  25475. },
  25476. dick: {
  25477. height: math.unit(1.15, "meters"),
  25478. name: "Dick",
  25479. image: {
  25480. source: "./media/characters/draekon-sylviar/dick.svg"
  25481. }
  25482. },
  25483. dickSeparated: {
  25484. height: math.unit(1.1, "meters"),
  25485. name: "Separated Dick",
  25486. image: {
  25487. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25488. }
  25489. },
  25490. sheath: {
  25491. height: math.unit(1.15, "meters"),
  25492. name: "Sheath",
  25493. image: {
  25494. source: "./media/characters/draekon-sylviar/sheath.svg"
  25495. }
  25496. },
  25497. },
  25498. [
  25499. {
  25500. name: "Small",
  25501. height: math.unit(4.53 / 2, "meters"),
  25502. default: true
  25503. },
  25504. {
  25505. name: "Normal",
  25506. height: math.unit(4.53, "meters"),
  25507. default: true
  25508. },
  25509. {
  25510. name: "Large",
  25511. height: math.unit(4.53 * 2, "meters"),
  25512. },
  25513. ]
  25514. ))
  25515. characterMakers.push(() => makeCharacter(
  25516. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25517. {
  25518. front: {
  25519. height: math.unit(6 + 2 / 12, "feet"),
  25520. weight: math.unit(180, "lb"),
  25521. name: "Front",
  25522. image: {
  25523. source: "./media/characters/brawler/front.svg",
  25524. extra: 3301 / 3027,
  25525. bottom: 138 / 3439
  25526. }
  25527. },
  25528. },
  25529. [
  25530. {
  25531. name: "Normal",
  25532. height: math.unit(6 + 2 / 12, "feet"),
  25533. default: true
  25534. },
  25535. ]
  25536. ))
  25537. characterMakers.push(() => makeCharacter(
  25538. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25539. {
  25540. front: {
  25541. height: math.unit(11, "feet"),
  25542. weight: math.unit(1000, "lb"),
  25543. name: "Front",
  25544. image: {
  25545. source: "./media/characters/alex/front.svg",
  25546. bottom: 44.5 / 620
  25547. }
  25548. },
  25549. },
  25550. [
  25551. {
  25552. name: "Micro",
  25553. height: math.unit(5, "inches")
  25554. },
  25555. {
  25556. name: "Normal",
  25557. height: math.unit(11, "feet"),
  25558. default: true
  25559. },
  25560. {
  25561. name: "Macro",
  25562. height: math.unit(9.5e9, "feet")
  25563. },
  25564. {
  25565. name: "Max Size",
  25566. height: math.unit(1.4e283, "yottameters")
  25567. },
  25568. ]
  25569. ))
  25570. characterMakers.push(() => makeCharacter(
  25571. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25572. {
  25573. female: {
  25574. height: math.unit(29.9, "m"),
  25575. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25576. name: "Female",
  25577. image: {
  25578. source: "./media/characters/zenari/female.svg",
  25579. extra: 3281.6 / 3217,
  25580. bottom: 72.2 / 3353
  25581. }
  25582. },
  25583. male: {
  25584. height: math.unit(27.7, "m"),
  25585. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25586. name: "Male",
  25587. image: {
  25588. source: "./media/characters/zenari/male.svg",
  25589. extra: 3008 / 2991,
  25590. bottom: 54.6 / 3069
  25591. }
  25592. },
  25593. },
  25594. [
  25595. {
  25596. name: "Macro",
  25597. height: math.unit(29.7, "meters"),
  25598. default: true
  25599. },
  25600. ]
  25601. ))
  25602. characterMakers.push(() => makeCharacter(
  25603. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25604. {
  25605. female: {
  25606. height: math.unit(23.8, "m"),
  25607. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25608. name: "Female",
  25609. image: {
  25610. source: "./media/characters/mactarian/female.svg",
  25611. extra: 2662 / 2569,
  25612. bottom: 73 / 2736
  25613. }
  25614. },
  25615. male: {
  25616. height: math.unit(23.8, "m"),
  25617. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25618. name: "Male",
  25619. image: {
  25620. source: "./media/characters/mactarian/male.svg",
  25621. extra: 2673 / 2600,
  25622. bottom: 76 / 2750
  25623. }
  25624. },
  25625. },
  25626. [
  25627. {
  25628. name: "Macro",
  25629. height: math.unit(23.8, "meters"),
  25630. default: true
  25631. },
  25632. ]
  25633. ))
  25634. characterMakers.push(() => makeCharacter(
  25635. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25636. {
  25637. female: {
  25638. height: math.unit(19.3, "m"),
  25639. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25640. name: "Female",
  25641. image: {
  25642. source: "./media/characters/umok/female.svg",
  25643. extra: 2186 / 2078,
  25644. bottom: 87 / 2277
  25645. }
  25646. },
  25647. male: {
  25648. height: math.unit(19.5, "m"),
  25649. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25650. name: "Male",
  25651. image: {
  25652. source: "./media/characters/umok/male.svg",
  25653. extra: 2233 / 2140,
  25654. bottom: 24.4 / 2258
  25655. }
  25656. },
  25657. },
  25658. [
  25659. {
  25660. name: "Macro",
  25661. height: math.unit(19.3, "meters"),
  25662. default: true
  25663. },
  25664. ]
  25665. ))
  25666. characterMakers.push(() => makeCharacter(
  25667. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25668. {
  25669. female: {
  25670. height: math.unit(26.15, "m"),
  25671. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25672. name: "Female",
  25673. image: {
  25674. source: "./media/characters/joraxian/female.svg",
  25675. extra: 2912 / 2824,
  25676. bottom: 36 / 2956
  25677. }
  25678. },
  25679. male: {
  25680. height: math.unit(25.4, "m"),
  25681. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25682. name: "Male",
  25683. image: {
  25684. source: "./media/characters/joraxian/male.svg",
  25685. extra: 2877 / 2721,
  25686. bottom: 82 / 2967
  25687. }
  25688. },
  25689. },
  25690. [
  25691. {
  25692. name: "Macro",
  25693. height: math.unit(26.15, "meters"),
  25694. default: true
  25695. },
  25696. ]
  25697. ))
  25698. characterMakers.push(() => makeCharacter(
  25699. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25700. {
  25701. female: {
  25702. height: math.unit(21.6, "m"),
  25703. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25704. name: "Female",
  25705. image: {
  25706. source: "./media/characters/sthara/female.svg",
  25707. extra: 2516 / 2347,
  25708. bottom: 21.5 / 2537
  25709. }
  25710. },
  25711. male: {
  25712. height: math.unit(24, "m"),
  25713. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25714. name: "Male",
  25715. image: {
  25716. source: "./media/characters/sthara/male.svg",
  25717. extra: 2732 / 2607,
  25718. bottom: 23 / 2732
  25719. }
  25720. },
  25721. },
  25722. [
  25723. {
  25724. name: "Macro",
  25725. height: math.unit(21.6, "meters"),
  25726. default: true
  25727. },
  25728. ]
  25729. ))
  25730. characterMakers.push(() => makeCharacter(
  25731. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25732. {
  25733. front: {
  25734. height: math.unit(6 + 4 / 12, "feet"),
  25735. weight: math.unit(175, "lb"),
  25736. name: "Front",
  25737. image: {
  25738. source: "./media/characters/luka-bryzant/front.svg",
  25739. extra: 311 / 289,
  25740. bottom: 4 / 315
  25741. }
  25742. },
  25743. back: {
  25744. height: math.unit(6 + 4 / 12, "feet"),
  25745. weight: math.unit(175, "lb"),
  25746. name: "Back",
  25747. image: {
  25748. source: "./media/characters/luka-bryzant/back.svg",
  25749. extra: 311 / 289,
  25750. bottom: 3.8 / 313.7
  25751. }
  25752. },
  25753. },
  25754. [
  25755. {
  25756. name: "Micro",
  25757. height: math.unit(10, "inches")
  25758. },
  25759. {
  25760. name: "Normal",
  25761. height: math.unit(6 + 4 / 12, "feet"),
  25762. default: true
  25763. },
  25764. {
  25765. name: "Large",
  25766. height: math.unit(12, "feet")
  25767. },
  25768. ]
  25769. ))
  25770. characterMakers.push(() => makeCharacter(
  25771. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25772. {
  25773. front: {
  25774. height: math.unit(5 + 7 / 12, "feet"),
  25775. weight: math.unit(185, "lb"),
  25776. name: "Front",
  25777. image: {
  25778. source: "./media/characters/aman-aquila/front.svg",
  25779. extra: 1013 / 976,
  25780. bottom: 45.6 / 1057
  25781. }
  25782. },
  25783. side: {
  25784. height: math.unit(5 + 7 / 12, "feet"),
  25785. weight: math.unit(185, "lb"),
  25786. name: "Side",
  25787. image: {
  25788. source: "./media/characters/aman-aquila/side.svg",
  25789. extra: 1054 / 1011,
  25790. bottom: 15 / 1070
  25791. }
  25792. },
  25793. back: {
  25794. height: math.unit(5 + 7 / 12, "feet"),
  25795. weight: math.unit(185, "lb"),
  25796. name: "Back",
  25797. image: {
  25798. source: "./media/characters/aman-aquila/back.svg",
  25799. extra: 1026 / 970,
  25800. bottom: 12 / 1039
  25801. }
  25802. },
  25803. head: {
  25804. height: math.unit(1.211, "feet"),
  25805. name: "Head",
  25806. image: {
  25807. source: "./media/characters/aman-aquila/head.svg",
  25808. }
  25809. },
  25810. },
  25811. [
  25812. {
  25813. name: "Minimicro",
  25814. height: math.unit(0.057, "inches")
  25815. },
  25816. {
  25817. name: "Micro",
  25818. height: math.unit(7, "inches")
  25819. },
  25820. {
  25821. name: "Mini",
  25822. height: math.unit(3 + 7 / 12, "feet")
  25823. },
  25824. {
  25825. name: "Normal",
  25826. height: math.unit(5 + 7 / 12, "feet"),
  25827. default: true
  25828. },
  25829. {
  25830. name: "Macro",
  25831. height: math.unit(157 + 7 / 12, "feet")
  25832. },
  25833. {
  25834. name: "Megamacro",
  25835. height: math.unit(1557 + 7 / 12, "feet")
  25836. },
  25837. {
  25838. name: "Gigamacro",
  25839. height: math.unit(15557 + 7 / 12, "feet")
  25840. },
  25841. ]
  25842. ))
  25843. characterMakers.push(() => makeCharacter(
  25844. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25845. {
  25846. front: {
  25847. height: math.unit(3 + 2 / 12, "inches"),
  25848. weight: math.unit(0.3, "ounces"),
  25849. name: "Front",
  25850. image: {
  25851. source: "./media/characters/hiphae/front.svg",
  25852. extra: 1931 / 1683,
  25853. bottom: 24 / 1955
  25854. }
  25855. },
  25856. },
  25857. [
  25858. {
  25859. name: "Normal",
  25860. height: math.unit(3 + 1 / 2, "inches"),
  25861. default: true
  25862. },
  25863. ]
  25864. ))
  25865. characterMakers.push(() => makeCharacter(
  25866. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25867. {
  25868. front: {
  25869. height: math.unit(5 + 10 / 12, "feet"),
  25870. weight: math.unit(165, "lb"),
  25871. name: "Front",
  25872. image: {
  25873. source: "./media/characters/nicky/front.svg",
  25874. extra: 3144 / 2886,
  25875. bottom: 45.6 / 3192
  25876. }
  25877. },
  25878. back: {
  25879. height: math.unit(5 + 10 / 12, "feet"),
  25880. weight: math.unit(165, "lb"),
  25881. name: "Back",
  25882. image: {
  25883. source: "./media/characters/nicky/back.svg",
  25884. extra: 3055 / 2804,
  25885. bottom: 28.4 / 3087
  25886. }
  25887. },
  25888. frontclothed: {
  25889. height: math.unit(5 + 10 / 12, "feet"),
  25890. weight: math.unit(165, "lb"),
  25891. name: "Front-clothed",
  25892. image: {
  25893. source: "./media/characters/nicky/front-clothed.svg",
  25894. extra: 3184.9 / 2926.9,
  25895. bottom: 86.5 / 3239.9
  25896. }
  25897. },
  25898. foot: {
  25899. height: math.unit(1.16, "feet"),
  25900. name: "Foot",
  25901. image: {
  25902. source: "./media/characters/nicky/foot.svg"
  25903. }
  25904. },
  25905. feet: {
  25906. height: math.unit(1.34, "feet"),
  25907. name: "Feet",
  25908. image: {
  25909. source: "./media/characters/nicky/feet.svg"
  25910. }
  25911. },
  25912. maw: {
  25913. height: math.unit(0.9, "feet"),
  25914. name: "Maw",
  25915. image: {
  25916. source: "./media/characters/nicky/maw.svg"
  25917. }
  25918. },
  25919. },
  25920. [
  25921. {
  25922. name: "Normal",
  25923. height: math.unit(5 + 10 / 12, "feet"),
  25924. default: true
  25925. },
  25926. {
  25927. name: "Macro",
  25928. height: math.unit(60, "feet")
  25929. },
  25930. {
  25931. name: "Megamacro",
  25932. height: math.unit(1, "mile")
  25933. },
  25934. ]
  25935. ))
  25936. characterMakers.push(() => makeCharacter(
  25937. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25938. {
  25939. side: {
  25940. height: math.unit(10, "feet"),
  25941. weight: math.unit(600, "lb"),
  25942. name: "Side",
  25943. image: {
  25944. source: "./media/characters/blair/side.svg",
  25945. bottom: 16.6 / 475,
  25946. extra: 458 / 431
  25947. }
  25948. },
  25949. },
  25950. [
  25951. {
  25952. name: "Micro",
  25953. height: math.unit(8, "inches")
  25954. },
  25955. {
  25956. name: "Normal",
  25957. height: math.unit(10, "feet"),
  25958. default: true
  25959. },
  25960. {
  25961. name: "Macro",
  25962. height: math.unit(180, "feet")
  25963. },
  25964. ]
  25965. ))
  25966. characterMakers.push(() => makeCharacter(
  25967. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25968. {
  25969. front: {
  25970. height: math.unit(5 + 4 / 12, "feet"),
  25971. weight: math.unit(125, "lb"),
  25972. name: "Front",
  25973. image: {
  25974. source: "./media/characters/fisher/front.svg",
  25975. extra: 444 / 390,
  25976. bottom: 2 / 444.8
  25977. }
  25978. },
  25979. },
  25980. [
  25981. {
  25982. name: "Micro",
  25983. height: math.unit(4, "inches")
  25984. },
  25985. {
  25986. name: "Normal",
  25987. height: math.unit(5 + 4 / 12, "feet"),
  25988. default: true
  25989. },
  25990. {
  25991. name: "Macro",
  25992. height: math.unit(100, "feet")
  25993. },
  25994. ]
  25995. ))
  25996. characterMakers.push(() => makeCharacter(
  25997. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25998. {
  25999. front: {
  26000. height: math.unit(6.71, "feet"),
  26001. weight: math.unit(200, "lb"),
  26002. capacity: math.unit(1000000, "people"),
  26003. name: "Front",
  26004. image: {
  26005. source: "./media/characters/gliss/front.svg",
  26006. extra: 2347 / 2231,
  26007. bottom: 113 / 2462
  26008. }
  26009. },
  26010. hammerspaceSize: {
  26011. height: math.unit(6.71 * 717, "feet"),
  26012. weight: math.unit(200, "lb"),
  26013. capacity: math.unit(1000000, "people"),
  26014. name: "Hammerspace Size",
  26015. image: {
  26016. source: "./media/characters/gliss/front.svg",
  26017. extra: 2347 / 2231,
  26018. bottom: 113 / 2462
  26019. }
  26020. },
  26021. },
  26022. [
  26023. {
  26024. name: "Normal",
  26025. height: math.unit(6.71, "feet"),
  26026. default: true
  26027. },
  26028. ]
  26029. ))
  26030. characterMakers.push(() => makeCharacter(
  26031. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26032. {
  26033. side: {
  26034. height: math.unit(1.44, "m"),
  26035. weight: math.unit(80, "kg"),
  26036. name: "Side",
  26037. image: {
  26038. source: "./media/characters/dune-anderson/side.svg",
  26039. bottom: 49 / 1426
  26040. }
  26041. },
  26042. },
  26043. [
  26044. {
  26045. name: "Wolf-sized",
  26046. height: math.unit(1.44, "meters")
  26047. },
  26048. {
  26049. name: "Normal",
  26050. height: math.unit(5.05, "meters"),
  26051. default: true
  26052. },
  26053. {
  26054. name: "Big",
  26055. height: math.unit(14.4, "meters")
  26056. },
  26057. {
  26058. name: "Huge",
  26059. height: math.unit(144, "meters")
  26060. },
  26061. ]
  26062. ))
  26063. characterMakers.push(() => makeCharacter(
  26064. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26065. {
  26066. front: {
  26067. height: math.unit(7, "feet"),
  26068. weight: math.unit(425, "lb"),
  26069. name: "Front",
  26070. image: {
  26071. source: "./media/characters/hind/front.svg",
  26072. extra: 2091 / 1860,
  26073. bottom: 129 / 2220
  26074. }
  26075. },
  26076. back: {
  26077. height: math.unit(7, "feet"),
  26078. weight: math.unit(425, "lb"),
  26079. name: "Back",
  26080. image: {
  26081. source: "./media/characters/hind/back.svg",
  26082. extra: 2091 / 1860,
  26083. bottom: 24.6 / 2309
  26084. }
  26085. },
  26086. tail: {
  26087. height: math.unit(2.8, "feet"),
  26088. name: "Tail",
  26089. image: {
  26090. source: "./media/characters/hind/tail.svg"
  26091. }
  26092. },
  26093. head: {
  26094. height: math.unit(2.55, "feet"),
  26095. name: "Head",
  26096. image: {
  26097. source: "./media/characters/hind/head.svg"
  26098. }
  26099. },
  26100. },
  26101. [
  26102. {
  26103. name: "XS",
  26104. height: math.unit(0.7, "feet")
  26105. },
  26106. {
  26107. name: "Normal",
  26108. height: math.unit(7, "feet"),
  26109. default: true
  26110. },
  26111. {
  26112. name: "XL",
  26113. height: math.unit(70, "feet")
  26114. },
  26115. ]
  26116. ))
  26117. characterMakers.push(() => makeCharacter(
  26118. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26119. {
  26120. front: {
  26121. height: math.unit(2.1, "meters"),
  26122. weight: math.unit(150, "lb"),
  26123. name: "Front",
  26124. image: {
  26125. source: "./media/characters/tharquench-sizestealer/front.svg",
  26126. extra: 1605/1470,
  26127. bottom: 36/1641
  26128. }
  26129. },
  26130. frontAlt: {
  26131. height: math.unit(2.1, "meters"),
  26132. weight: math.unit(150, "lb"),
  26133. name: "Front (Alt)",
  26134. image: {
  26135. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26136. extra: 2318 / 2063,
  26137. bottom: 93.4 / 2410
  26138. }
  26139. },
  26140. },
  26141. [
  26142. {
  26143. name: "Nano",
  26144. height: math.unit(1, "mm")
  26145. },
  26146. {
  26147. name: "Micro",
  26148. height: math.unit(1, "cm")
  26149. },
  26150. {
  26151. name: "Normal",
  26152. height: math.unit(2.1, "meters"),
  26153. default: true
  26154. },
  26155. ]
  26156. ))
  26157. characterMakers.push(() => makeCharacter(
  26158. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26159. {
  26160. front: {
  26161. height: math.unit(7 + 5 / 12, "feet"),
  26162. weight: math.unit(357, "lb"),
  26163. name: "Front",
  26164. image: {
  26165. source: "./media/characters/solex-draconov/front.svg",
  26166. extra: 1993 / 1865,
  26167. bottom: 117 / 2111
  26168. }
  26169. },
  26170. },
  26171. [
  26172. {
  26173. name: "Natural Height",
  26174. height: math.unit(7 + 5 / 12, "feet"),
  26175. default: true
  26176. },
  26177. {
  26178. name: "Macro",
  26179. height: math.unit(350, "feet")
  26180. },
  26181. {
  26182. name: "Macro+",
  26183. height: math.unit(1000, "feet")
  26184. },
  26185. {
  26186. name: "Megamacro",
  26187. height: math.unit(20, "km")
  26188. },
  26189. {
  26190. name: "Megamacro+",
  26191. height: math.unit(1000, "km")
  26192. },
  26193. {
  26194. name: "Gigamacro",
  26195. height: math.unit(2.5, "Gm")
  26196. },
  26197. {
  26198. name: "Teramacro",
  26199. height: math.unit(15, "Tm")
  26200. },
  26201. {
  26202. name: "Galactic",
  26203. height: math.unit(30, "Zm")
  26204. },
  26205. {
  26206. name: "Universal",
  26207. height: math.unit(21000, "Ym")
  26208. },
  26209. {
  26210. name: "Omniversal",
  26211. height: math.unit(9.861e50, "Ym")
  26212. },
  26213. {
  26214. name: "Existential",
  26215. height: math.unit(1e300, "meters")
  26216. },
  26217. ]
  26218. ))
  26219. characterMakers.push(() => makeCharacter(
  26220. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26221. {
  26222. side: {
  26223. height: math.unit(25, "feet"),
  26224. weight: math.unit(90000, "lb"),
  26225. name: "Side",
  26226. image: {
  26227. source: "./media/characters/mandarax/side.svg",
  26228. extra: 614 / 332,
  26229. bottom: 55 / 630
  26230. }
  26231. },
  26232. lounging: {
  26233. height: math.unit(15.4, "feet"),
  26234. weight: math.unit(90000, "lb"),
  26235. name: "Lounging",
  26236. image: {
  26237. source: "./media/characters/mandarax/lounging.svg",
  26238. extra: 817/609,
  26239. bottom: 685/1502
  26240. }
  26241. },
  26242. head: {
  26243. height: math.unit(11.4, "feet"),
  26244. name: "Head",
  26245. image: {
  26246. source: "./media/characters/mandarax/head.svg"
  26247. }
  26248. },
  26249. belly: {
  26250. height: math.unit(33, "feet"),
  26251. name: "Belly",
  26252. capacity: math.unit(500, "people"),
  26253. image: {
  26254. source: "./media/characters/mandarax/belly.svg"
  26255. }
  26256. },
  26257. dick: {
  26258. height: math.unit(8.46, "feet"),
  26259. name: "Dick",
  26260. image: {
  26261. source: "./media/characters/mandarax/dick.svg"
  26262. }
  26263. },
  26264. top: {
  26265. height: math.unit(28, "meters"),
  26266. name: "Top",
  26267. image: {
  26268. source: "./media/characters/mandarax/top.svg"
  26269. }
  26270. },
  26271. },
  26272. [
  26273. {
  26274. name: "Normal",
  26275. height: math.unit(25, "feet"),
  26276. default: true
  26277. },
  26278. ]
  26279. ))
  26280. characterMakers.push(() => makeCharacter(
  26281. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26282. {
  26283. front: {
  26284. height: math.unit(5, "feet"),
  26285. weight: math.unit(90, "lb"),
  26286. name: "Front",
  26287. image: {
  26288. source: "./media/characters/pixil/front.svg",
  26289. extra: 2000 / 1618,
  26290. bottom: 12.3 / 2011
  26291. }
  26292. },
  26293. },
  26294. [
  26295. {
  26296. name: "Normal",
  26297. height: math.unit(5, "feet"),
  26298. default: true
  26299. },
  26300. {
  26301. name: "Megamacro",
  26302. height: math.unit(10, "miles"),
  26303. },
  26304. ]
  26305. ))
  26306. characterMakers.push(() => makeCharacter(
  26307. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26308. {
  26309. front: {
  26310. height: math.unit(7 + 2 / 12, "feet"),
  26311. weight: math.unit(200, "lb"),
  26312. name: "Front",
  26313. image: {
  26314. source: "./media/characters/angel/front.svg",
  26315. extra: 1830 / 1737,
  26316. bottom: 22.6 / 1854,
  26317. }
  26318. },
  26319. },
  26320. [
  26321. {
  26322. name: "Normal",
  26323. height: math.unit(7 + 2 / 12, "feet"),
  26324. default: true
  26325. },
  26326. {
  26327. name: "Macro",
  26328. height: math.unit(1000, "feet")
  26329. },
  26330. {
  26331. name: "Megamacro",
  26332. height: math.unit(2, "miles")
  26333. },
  26334. {
  26335. name: "Gigamacro",
  26336. height: math.unit(20, "earths")
  26337. },
  26338. ]
  26339. ))
  26340. characterMakers.push(() => makeCharacter(
  26341. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26342. {
  26343. front: {
  26344. height: math.unit(5, "feet"),
  26345. weight: math.unit(180, "lb"),
  26346. name: "Front",
  26347. image: {
  26348. source: "./media/characters/mekana/front.svg",
  26349. extra: 1671 / 1605,
  26350. bottom: 3.5 / 1691
  26351. }
  26352. },
  26353. side: {
  26354. height: math.unit(5, "feet"),
  26355. weight: math.unit(180, "lb"),
  26356. name: "Side",
  26357. image: {
  26358. source: "./media/characters/mekana/side.svg",
  26359. extra: 1671 / 1605,
  26360. bottom: 3.5 / 1691
  26361. }
  26362. },
  26363. back: {
  26364. height: math.unit(5, "feet"),
  26365. weight: math.unit(180, "lb"),
  26366. name: "Back",
  26367. image: {
  26368. source: "./media/characters/mekana/back.svg",
  26369. extra: 1671 / 1605,
  26370. bottom: 3.5 / 1691
  26371. }
  26372. },
  26373. },
  26374. [
  26375. {
  26376. name: "Normal",
  26377. height: math.unit(5, "feet"),
  26378. default: true
  26379. },
  26380. ]
  26381. ))
  26382. characterMakers.push(() => makeCharacter(
  26383. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26384. {
  26385. front: {
  26386. height: math.unit(4 + 6 / 12, "feet"),
  26387. weight: math.unit(80, "lb"),
  26388. name: "Front",
  26389. image: {
  26390. source: "./media/characters/pixie/front.svg",
  26391. extra: 1924 / 1825,
  26392. bottom: 22.4 / 1946
  26393. }
  26394. },
  26395. },
  26396. [
  26397. {
  26398. name: "Normal",
  26399. height: math.unit(4 + 6 / 12, "feet"),
  26400. default: true
  26401. },
  26402. {
  26403. name: "Macro",
  26404. height: math.unit(40, "feet")
  26405. },
  26406. ]
  26407. ))
  26408. characterMakers.push(() => makeCharacter(
  26409. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26410. {
  26411. front: {
  26412. height: math.unit(2.1, "meters"),
  26413. weight: math.unit(200, "lb"),
  26414. name: "Front",
  26415. image: {
  26416. source: "./media/characters/the-lascivious/front.svg",
  26417. extra: 1 / 0.893,
  26418. bottom: 3.5 / 573.7
  26419. }
  26420. },
  26421. },
  26422. [
  26423. {
  26424. name: "Human Scale",
  26425. height: math.unit(2.1, "meters")
  26426. },
  26427. {
  26428. name: "Wolxi Scale",
  26429. height: math.unit(46.2, "m"),
  26430. default: true
  26431. },
  26432. {
  26433. name: "Boinker of Buildings",
  26434. height: math.unit(10, "km")
  26435. },
  26436. {
  26437. name: "Shagger of Skyscrapers",
  26438. height: math.unit(40, "km")
  26439. },
  26440. {
  26441. name: "Banger of Boroughs",
  26442. height: math.unit(4000, "km")
  26443. },
  26444. {
  26445. name: "Screwer of States",
  26446. height: math.unit(100000, "km")
  26447. },
  26448. {
  26449. name: "Pounder of Planets",
  26450. height: math.unit(2000000, "km")
  26451. },
  26452. ]
  26453. ))
  26454. characterMakers.push(() => makeCharacter(
  26455. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26456. {
  26457. front: {
  26458. height: math.unit(6, "feet"),
  26459. weight: math.unit(150, "lb"),
  26460. name: "Front",
  26461. image: {
  26462. source: "./media/characters/aj/front.svg",
  26463. extra: 2039 / 1562,
  26464. bottom: 40 / 2079
  26465. }
  26466. },
  26467. },
  26468. [
  26469. {
  26470. name: "Normal",
  26471. height: math.unit(11 + 6 / 12, "feet"),
  26472. default: true
  26473. },
  26474. {
  26475. name: "Megamacro",
  26476. height: math.unit(60, "megameters")
  26477. },
  26478. ]
  26479. ))
  26480. characterMakers.push(() => makeCharacter(
  26481. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26482. {
  26483. side: {
  26484. height: math.unit(31 + 8 / 12, "feet"),
  26485. weight: math.unit(75000, "kg"),
  26486. name: "Side",
  26487. image: {
  26488. source: "./media/characters/koros/side.svg",
  26489. extra: 1442 / 1297,
  26490. bottom: 122.7 / 1562
  26491. }
  26492. },
  26493. dicksKingsCrown: {
  26494. height: math.unit(6, "feet"),
  26495. name: "Dicks (King's Crown)",
  26496. image: {
  26497. source: "./media/characters/koros/dicks-kings-crown.svg"
  26498. }
  26499. },
  26500. dicksTailSet: {
  26501. height: math.unit(3, "feet"),
  26502. name: "Dicks (Tail Set)",
  26503. image: {
  26504. source: "./media/characters/koros/dicks-tail-set.svg"
  26505. }
  26506. },
  26507. dickCumming: {
  26508. height: math.unit(7.98, "feet"),
  26509. name: "Dick (Cumming)",
  26510. image: {
  26511. source: "./media/characters/koros/dick-cumming.svg"
  26512. }
  26513. },
  26514. dicksBack: {
  26515. height: math.unit(5.9, "feet"),
  26516. name: "Dicks (Back)",
  26517. image: {
  26518. source: "./media/characters/koros/dicks-back.svg"
  26519. }
  26520. },
  26521. dicksFront: {
  26522. height: math.unit(3.72, "feet"),
  26523. name: "Dicks (Front)",
  26524. image: {
  26525. source: "./media/characters/koros/dicks-front.svg"
  26526. }
  26527. },
  26528. dicksPeeking: {
  26529. height: math.unit(3.0, "feet"),
  26530. name: "Dicks (Peeking)",
  26531. image: {
  26532. source: "./media/characters/koros/dicks-peeking.svg"
  26533. }
  26534. },
  26535. eye: {
  26536. height: math.unit(1.7, "feet"),
  26537. name: "Eye",
  26538. image: {
  26539. source: "./media/characters/koros/eye.svg"
  26540. }
  26541. },
  26542. headFront: {
  26543. height: math.unit(11.69, "feet"),
  26544. name: "Head (Front)",
  26545. image: {
  26546. source: "./media/characters/koros/head-front.svg"
  26547. }
  26548. },
  26549. headSide: {
  26550. height: math.unit(14, "feet"),
  26551. name: "Head (Side)",
  26552. image: {
  26553. source: "./media/characters/koros/head-side.svg"
  26554. }
  26555. },
  26556. leg: {
  26557. height: math.unit(17, "feet"),
  26558. name: "Leg",
  26559. image: {
  26560. source: "./media/characters/koros/leg.svg"
  26561. }
  26562. },
  26563. mawSide: {
  26564. height: math.unit(12.8, "feet"),
  26565. name: "Maw (Side)",
  26566. image: {
  26567. source: "./media/characters/koros/maw-side.svg"
  26568. }
  26569. },
  26570. mawSpitting: {
  26571. height: math.unit(17, "feet"),
  26572. name: "Maw (Spitting)",
  26573. image: {
  26574. source: "./media/characters/koros/maw-spitting.svg"
  26575. }
  26576. },
  26577. slit: {
  26578. height: math.unit(2.8, "feet"),
  26579. name: "Slit",
  26580. image: {
  26581. source: "./media/characters/koros/slit.svg"
  26582. }
  26583. },
  26584. stomach: {
  26585. height: math.unit(6.8, "feet"),
  26586. capacity: math.unit(20, "people"),
  26587. name: "Stomach",
  26588. image: {
  26589. source: "./media/characters/koros/stomach.svg"
  26590. }
  26591. },
  26592. wingspanBottom: {
  26593. height: math.unit(114, "feet"),
  26594. name: "Wingspan (Bottom)",
  26595. image: {
  26596. source: "./media/characters/koros/wingspan-bottom.svg"
  26597. }
  26598. },
  26599. wingspanTop: {
  26600. height: math.unit(104, "feet"),
  26601. name: "Wingspan (Top)",
  26602. image: {
  26603. source: "./media/characters/koros/wingspan-top.svg"
  26604. }
  26605. },
  26606. },
  26607. [
  26608. {
  26609. name: "Normal",
  26610. height: math.unit(31 + 8 / 12, "feet"),
  26611. default: true
  26612. },
  26613. ]
  26614. ))
  26615. characterMakers.push(() => makeCharacter(
  26616. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26617. {
  26618. front: {
  26619. height: math.unit(18 + 5 / 12, "feet"),
  26620. weight: math.unit(3750, "kg"),
  26621. name: "Front",
  26622. image: {
  26623. source: "./media/characters/vexx/front.svg",
  26624. extra: 426 / 396,
  26625. bottom: 31.5 / 458
  26626. }
  26627. },
  26628. maw: {
  26629. height: math.unit(6, "feet"),
  26630. name: "Maw",
  26631. image: {
  26632. source: "./media/characters/vexx/maw.svg"
  26633. }
  26634. },
  26635. },
  26636. [
  26637. {
  26638. name: "Normal",
  26639. height: math.unit(18 + 5 / 12, "feet"),
  26640. default: true
  26641. },
  26642. ]
  26643. ))
  26644. characterMakers.push(() => makeCharacter(
  26645. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26646. {
  26647. front: {
  26648. height: math.unit(17 + 6 / 12, "feet"),
  26649. weight: math.unit(150, "lb"),
  26650. name: "Front",
  26651. image: {
  26652. source: "./media/characters/baadra/front.svg",
  26653. extra: 1694/1553,
  26654. bottom: 179/1873
  26655. }
  26656. },
  26657. frontAlt: {
  26658. height: math.unit(17 + 6 / 12, "feet"),
  26659. weight: math.unit(150, "lb"),
  26660. name: "Front (Alt)",
  26661. image: {
  26662. source: "./media/characters/baadra/front-alt.svg",
  26663. extra: 3137 / 2890,
  26664. bottom: 168.4 / 3305
  26665. }
  26666. },
  26667. back: {
  26668. height: math.unit(17 + 6 / 12, "feet"),
  26669. weight: math.unit(150, "lb"),
  26670. name: "Back",
  26671. image: {
  26672. source: "./media/characters/baadra/back.svg",
  26673. extra: 3142 / 2890,
  26674. bottom: 220 / 3371
  26675. }
  26676. },
  26677. head: {
  26678. height: math.unit(5.45, "feet"),
  26679. name: "Head",
  26680. image: {
  26681. source: "./media/characters/baadra/head.svg"
  26682. }
  26683. },
  26684. headAngry: {
  26685. height: math.unit(4.95, "feet"),
  26686. name: "Head (Angry)",
  26687. image: {
  26688. source: "./media/characters/baadra/head-angry.svg"
  26689. }
  26690. },
  26691. headOpen: {
  26692. height: math.unit(6, "feet"),
  26693. name: "Head (Open)",
  26694. image: {
  26695. source: "./media/characters/baadra/head-open.svg"
  26696. }
  26697. },
  26698. },
  26699. [
  26700. {
  26701. name: "Normal",
  26702. height: math.unit(17 + 6 / 12, "feet"),
  26703. default: true
  26704. },
  26705. ]
  26706. ))
  26707. characterMakers.push(() => makeCharacter(
  26708. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26709. {
  26710. front: {
  26711. height: math.unit(7 + 3 / 12, "feet"),
  26712. weight: math.unit(180, "lb"),
  26713. name: "Front",
  26714. image: {
  26715. source: "./media/characters/juri/front.svg",
  26716. extra: 1401 / 1237,
  26717. bottom: 18.5 / 1418
  26718. }
  26719. },
  26720. side: {
  26721. height: math.unit(7 + 3 / 12, "feet"),
  26722. weight: math.unit(180, "lb"),
  26723. name: "Side",
  26724. image: {
  26725. source: "./media/characters/juri/side.svg",
  26726. extra: 1424 / 1242,
  26727. bottom: 18.5 / 1447
  26728. }
  26729. },
  26730. sitting: {
  26731. height: math.unit(6, "feet"),
  26732. weight: math.unit(180, "lb"),
  26733. name: "Sitting",
  26734. image: {
  26735. source: "./media/characters/juri/sitting.svg",
  26736. extra: 1270 / 1143,
  26737. bottom: 100 / 1343
  26738. }
  26739. },
  26740. back: {
  26741. height: math.unit(7 + 3 / 12, "feet"),
  26742. weight: math.unit(180, "lb"),
  26743. name: "Back",
  26744. image: {
  26745. source: "./media/characters/juri/back.svg",
  26746. extra: 1377 / 1240,
  26747. bottom: 23.7 / 1405
  26748. }
  26749. },
  26750. maw: {
  26751. height: math.unit(2.8, "feet"),
  26752. name: "Maw",
  26753. image: {
  26754. source: "./media/characters/juri/maw.svg"
  26755. }
  26756. },
  26757. stomach: {
  26758. height: math.unit(0.89, "feet"),
  26759. capacity: math.unit(4, "liters"),
  26760. name: "Stomach",
  26761. image: {
  26762. source: "./media/characters/juri/stomach.svg"
  26763. }
  26764. },
  26765. },
  26766. [
  26767. {
  26768. name: "Normal",
  26769. height: math.unit(7 + 3 / 12, "feet"),
  26770. default: true
  26771. },
  26772. ]
  26773. ))
  26774. characterMakers.push(() => makeCharacter(
  26775. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26776. {
  26777. fox: {
  26778. height: math.unit(5 + 6 / 12, "feet"),
  26779. weight: math.unit(140, "lb"),
  26780. name: "Fox",
  26781. image: {
  26782. source: "./media/characters/maxene-sita/fox.svg",
  26783. extra: 146 / 138,
  26784. bottom: 2.1 / 148.19
  26785. }
  26786. },
  26787. foxLaying: {
  26788. height: math.unit(1.70, "feet"),
  26789. weight: math.unit(140, "lb"),
  26790. name: "Fox (Laying)",
  26791. image: {
  26792. source: "./media/characters/maxene-sita/fox-laying.svg",
  26793. extra: 910 / 572,
  26794. bottom: 71 / 981
  26795. }
  26796. },
  26797. kitsune: {
  26798. height: math.unit(10, "feet"),
  26799. weight: math.unit(800, "lb"),
  26800. name: "Kitsune",
  26801. image: {
  26802. source: "./media/characters/maxene-sita/kitsune.svg",
  26803. extra: 185 / 176,
  26804. bottom: 4.7 / 189.9
  26805. }
  26806. },
  26807. hellhound: {
  26808. height: math.unit(10, "feet"),
  26809. weight: math.unit(700, "lb"),
  26810. name: "Hellhound",
  26811. image: {
  26812. source: "./media/characters/maxene-sita/hellhound.svg",
  26813. extra: 1600 / 1545,
  26814. bottom: 81 / 1681
  26815. }
  26816. },
  26817. },
  26818. [
  26819. {
  26820. name: "Normal",
  26821. height: math.unit(5 + 6 / 12, "feet"),
  26822. default: true
  26823. },
  26824. ]
  26825. ))
  26826. characterMakers.push(() => makeCharacter(
  26827. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26828. {
  26829. front: {
  26830. height: math.unit(3 + 4 / 12, "feet"),
  26831. weight: math.unit(70, "lb"),
  26832. name: "Front",
  26833. image: {
  26834. source: "./media/characters/maia/front.svg",
  26835. extra: 227 / 219.5,
  26836. bottom: 40 / 267
  26837. }
  26838. },
  26839. back: {
  26840. height: math.unit(3 + 4 / 12, "feet"),
  26841. weight: math.unit(70, "lb"),
  26842. name: "Back",
  26843. image: {
  26844. source: "./media/characters/maia/back.svg",
  26845. extra: 237 / 225
  26846. }
  26847. },
  26848. },
  26849. [
  26850. {
  26851. name: "Normal",
  26852. height: math.unit(3 + 4 / 12, "feet"),
  26853. default: true
  26854. },
  26855. ]
  26856. ))
  26857. characterMakers.push(() => makeCharacter(
  26858. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26859. {
  26860. front: {
  26861. height: math.unit(5 + 10 / 12, "feet"),
  26862. weight: math.unit(197, "lb"),
  26863. name: "Front",
  26864. image: {
  26865. source: "./media/characters/jabaro/front.svg",
  26866. extra: 225 / 216,
  26867. bottom: 5.06 / 230
  26868. }
  26869. },
  26870. back: {
  26871. height: math.unit(5 + 10 / 12, "feet"),
  26872. weight: math.unit(197, "lb"),
  26873. name: "Back",
  26874. image: {
  26875. source: "./media/characters/jabaro/back.svg",
  26876. extra: 225 / 219,
  26877. bottom: 1.9 / 227
  26878. }
  26879. },
  26880. },
  26881. [
  26882. {
  26883. name: "Normal",
  26884. height: math.unit(5 + 10 / 12, "feet"),
  26885. default: true
  26886. },
  26887. ]
  26888. ))
  26889. characterMakers.push(() => makeCharacter(
  26890. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26891. {
  26892. front: {
  26893. height: math.unit(5 + 8 / 12, "feet"),
  26894. weight: math.unit(139, "lb"),
  26895. name: "Front",
  26896. image: {
  26897. source: "./media/characters/risa/front.svg",
  26898. extra: 270 / 260,
  26899. bottom: 11.2 / 282
  26900. }
  26901. },
  26902. back: {
  26903. height: math.unit(5 + 8 / 12, "feet"),
  26904. weight: math.unit(139, "lb"),
  26905. name: "Back",
  26906. image: {
  26907. source: "./media/characters/risa/back.svg",
  26908. extra: 264 / 255,
  26909. bottom: 4 / 268
  26910. }
  26911. },
  26912. },
  26913. [
  26914. {
  26915. name: "Normal",
  26916. height: math.unit(5 + 8 / 12, "feet"),
  26917. default: true
  26918. },
  26919. ]
  26920. ))
  26921. characterMakers.push(() => makeCharacter(
  26922. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26923. {
  26924. front: {
  26925. height: math.unit(2 + 11 / 12, "feet"),
  26926. weight: math.unit(30, "lb"),
  26927. name: "Front",
  26928. image: {
  26929. source: "./media/characters/weatley/front.svg",
  26930. bottom: 10.7 / 414,
  26931. extra: 403.5 / 362
  26932. }
  26933. },
  26934. back: {
  26935. height: math.unit(2 + 11 / 12, "feet"),
  26936. weight: math.unit(30, "lb"),
  26937. name: "Back",
  26938. image: {
  26939. source: "./media/characters/weatley/back.svg",
  26940. bottom: 10.7 / 414,
  26941. extra: 403.5 / 362
  26942. }
  26943. },
  26944. },
  26945. [
  26946. {
  26947. name: "Normal",
  26948. height: math.unit(2 + 11 / 12, "feet"),
  26949. default: true
  26950. },
  26951. ]
  26952. ))
  26953. characterMakers.push(() => makeCharacter(
  26954. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26955. {
  26956. front: {
  26957. height: math.unit(5 + 2 / 12, "feet"),
  26958. weight: math.unit(50, "kg"),
  26959. name: "Front",
  26960. image: {
  26961. source: "./media/characters/mercury-crescent/front.svg",
  26962. extra: 1088 / 1033,
  26963. bottom: 18.9 / 1109
  26964. }
  26965. },
  26966. },
  26967. [
  26968. {
  26969. name: "Normal",
  26970. height: math.unit(5 + 2 / 12, "feet"),
  26971. default: true
  26972. },
  26973. ]
  26974. ))
  26975. characterMakers.push(() => makeCharacter(
  26976. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26977. {
  26978. front: {
  26979. height: math.unit(2, "feet"),
  26980. weight: math.unit(15, "kg"),
  26981. name: "Front",
  26982. image: {
  26983. source: "./media/characters/diamond-jones/front.svg",
  26984. extra: 727/723,
  26985. bottom: 46/773
  26986. }
  26987. },
  26988. },
  26989. [
  26990. {
  26991. name: "Normal",
  26992. height: math.unit(2, "feet"),
  26993. default: true
  26994. },
  26995. ]
  26996. ))
  26997. characterMakers.push(() => makeCharacter(
  26998. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26999. {
  27000. front: {
  27001. height: math.unit(3, "feet"),
  27002. weight: math.unit(30, "kg"),
  27003. name: "Front",
  27004. image: {
  27005. source: "./media/characters/sweet-bit/front.svg",
  27006. extra: 675 / 567,
  27007. bottom: 27.7 / 703
  27008. }
  27009. },
  27010. },
  27011. [
  27012. {
  27013. name: "Normal",
  27014. height: math.unit(3, "feet"),
  27015. default: true
  27016. },
  27017. ]
  27018. ))
  27019. characterMakers.push(() => makeCharacter(
  27020. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27021. {
  27022. side: {
  27023. height: math.unit(9.178, "feet"),
  27024. weight: math.unit(500, "lb"),
  27025. name: "Side",
  27026. image: {
  27027. source: "./media/characters/umbrazen/side.svg",
  27028. extra: 1730 / 1473,
  27029. bottom: 34.6 / 1765
  27030. }
  27031. },
  27032. },
  27033. [
  27034. {
  27035. name: "Normal",
  27036. height: math.unit(9.178, "feet"),
  27037. default: true
  27038. },
  27039. ]
  27040. ))
  27041. characterMakers.push(() => makeCharacter(
  27042. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27043. {
  27044. front: {
  27045. height: math.unit(10, "feet"),
  27046. weight: math.unit(750, "lb"),
  27047. name: "Front",
  27048. image: {
  27049. source: "./media/characters/arlist/front.svg",
  27050. extra: 961 / 778,
  27051. bottom: 6.2 / 986
  27052. }
  27053. },
  27054. },
  27055. [
  27056. {
  27057. name: "Normal",
  27058. height: math.unit(10, "feet"),
  27059. default: true
  27060. },
  27061. ]
  27062. ))
  27063. characterMakers.push(() => makeCharacter(
  27064. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27065. {
  27066. front: {
  27067. height: math.unit(5 + 1 / 12, "feet"),
  27068. weight: math.unit(110, "lb"),
  27069. name: "Front",
  27070. image: {
  27071. source: "./media/characters/aradel/front.svg",
  27072. extra: 324 / 303,
  27073. bottom: 3.6 / 329.4
  27074. }
  27075. },
  27076. },
  27077. [
  27078. {
  27079. name: "Normal",
  27080. height: math.unit(5 + 1 / 12, "feet"),
  27081. default: true
  27082. },
  27083. ]
  27084. ))
  27085. characterMakers.push(() => makeCharacter(
  27086. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27087. {
  27088. dressed: {
  27089. height: math.unit(3 + 8 / 12, "feet"),
  27090. weight: math.unit(50, "lb"),
  27091. name: "Dressed",
  27092. image: {
  27093. source: "./media/characters/serryn/dressed.svg",
  27094. extra: 1792 / 1656,
  27095. bottom: 43.5 / 1840
  27096. }
  27097. },
  27098. nude: {
  27099. height: math.unit(3 + 8 / 12, "feet"),
  27100. weight: math.unit(50, "lb"),
  27101. name: "Nude",
  27102. image: {
  27103. source: "./media/characters/serryn/nude.svg",
  27104. extra: 1792 / 1656,
  27105. bottom: 43.5 / 1840
  27106. }
  27107. },
  27108. },
  27109. [
  27110. {
  27111. name: "Normal",
  27112. height: math.unit(3 + 8 / 12, "feet"),
  27113. default: true
  27114. },
  27115. ]
  27116. ))
  27117. characterMakers.push(() => makeCharacter(
  27118. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27119. {
  27120. front: {
  27121. height: math.unit(7 + 10 / 12, "feet"),
  27122. weight: math.unit(255, "lb"),
  27123. name: "Front",
  27124. image: {
  27125. source: "./media/characters/xavier-thyme/front.svg",
  27126. extra: 3733 / 3642,
  27127. bottom: 131 / 3869
  27128. }
  27129. },
  27130. frontRaven: {
  27131. height: math.unit(7 + 10 / 12, "feet"),
  27132. weight: math.unit(255, "lb"),
  27133. name: "Front (Raven)",
  27134. image: {
  27135. source: "./media/characters/xavier-thyme/front-raven.svg",
  27136. extra: 4385 / 3642,
  27137. bottom: 131 / 4517
  27138. }
  27139. },
  27140. },
  27141. [
  27142. {
  27143. name: "Normal",
  27144. height: math.unit(7 + 10 / 12, "feet"),
  27145. default: true
  27146. },
  27147. ]
  27148. ))
  27149. characterMakers.push(() => makeCharacter(
  27150. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27151. {
  27152. front: {
  27153. height: math.unit(1.6, "m"),
  27154. weight: math.unit(50, "kg"),
  27155. name: "Front",
  27156. image: {
  27157. source: "./media/characters/kiki/front.svg",
  27158. extra: 4682 / 3610,
  27159. bottom: 115 / 4777
  27160. }
  27161. },
  27162. },
  27163. [
  27164. {
  27165. name: "Normal",
  27166. height: math.unit(1.6, "meters"),
  27167. default: true
  27168. },
  27169. ]
  27170. ))
  27171. characterMakers.push(() => makeCharacter(
  27172. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27173. {
  27174. front: {
  27175. height: math.unit(50, "m"),
  27176. weight: math.unit(500, "tonnes"),
  27177. name: "Front",
  27178. image: {
  27179. source: "./media/characters/ryoko/front.svg",
  27180. extra: 4632 / 3926,
  27181. bottom: 193 / 4823
  27182. }
  27183. },
  27184. },
  27185. [
  27186. {
  27187. name: "Normal",
  27188. height: math.unit(50, "meters"),
  27189. default: true
  27190. },
  27191. ]
  27192. ))
  27193. characterMakers.push(() => makeCharacter(
  27194. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27195. {
  27196. front: {
  27197. height: math.unit(30, "m"),
  27198. weight: math.unit(22, "tonnes"),
  27199. name: "Front",
  27200. image: {
  27201. source: "./media/characters/elio/front.svg",
  27202. extra: 4582 / 3720,
  27203. bottom: 236 / 4828
  27204. }
  27205. },
  27206. },
  27207. [
  27208. {
  27209. name: "Normal",
  27210. height: math.unit(30, "meters"),
  27211. default: true
  27212. },
  27213. ]
  27214. ))
  27215. characterMakers.push(() => makeCharacter(
  27216. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27217. {
  27218. front: {
  27219. height: math.unit(6 + 3 / 12, "feet"),
  27220. weight: math.unit(120, "lb"),
  27221. name: "Front",
  27222. image: {
  27223. source: "./media/characters/azura/front.svg",
  27224. extra: 1149 / 1135,
  27225. bottom: 45 / 1194
  27226. }
  27227. },
  27228. frontClothed: {
  27229. height: math.unit(6 + 3 / 12, "feet"),
  27230. weight: math.unit(120, "lb"),
  27231. name: "Front (Clothed)",
  27232. image: {
  27233. source: "./media/characters/azura/front-clothed.svg",
  27234. extra: 1149 / 1135,
  27235. bottom: 45 / 1194
  27236. }
  27237. },
  27238. },
  27239. [
  27240. {
  27241. name: "Normal",
  27242. height: math.unit(6 + 3 / 12, "feet"),
  27243. default: true
  27244. },
  27245. {
  27246. name: "Macro",
  27247. height: math.unit(20 + 6 / 12, "feet")
  27248. },
  27249. {
  27250. name: "Megamacro",
  27251. height: math.unit(12, "miles")
  27252. },
  27253. {
  27254. name: "Gigamacro",
  27255. height: math.unit(10000, "miles")
  27256. },
  27257. {
  27258. name: "Teramacro",
  27259. height: math.unit(900000, "miles")
  27260. },
  27261. ]
  27262. ))
  27263. characterMakers.push(() => makeCharacter(
  27264. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27265. {
  27266. front: {
  27267. height: math.unit(12, "feet"),
  27268. weight: math.unit(1, "ton"),
  27269. capacity: math.unit(660000, "gallons"),
  27270. name: "Front",
  27271. image: {
  27272. source: "./media/characters/zeus/front.svg",
  27273. extra: 5005 / 4717,
  27274. bottom: 363 / 5388
  27275. }
  27276. },
  27277. },
  27278. [
  27279. {
  27280. name: "Normal",
  27281. height: math.unit(12, "feet")
  27282. },
  27283. {
  27284. name: "Preferred Size",
  27285. height: math.unit(0.5, "miles"),
  27286. default: true
  27287. },
  27288. {
  27289. name: "Giga Horse",
  27290. height: math.unit(300, "miles")
  27291. },
  27292. {
  27293. name: "Riding Planets",
  27294. height: math.unit(30, "megameters")
  27295. },
  27296. {
  27297. name: "Cosmic Giant",
  27298. height: math.unit(3, "zettameters")
  27299. },
  27300. {
  27301. name: "Breeding God",
  27302. height: math.unit(9.92e22, "yottameters")
  27303. },
  27304. ]
  27305. ))
  27306. characterMakers.push(() => makeCharacter(
  27307. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27308. {
  27309. side: {
  27310. height: math.unit(9, "feet"),
  27311. weight: math.unit(1500, "kg"),
  27312. name: "Side",
  27313. image: {
  27314. source: "./media/characters/fang/side.svg",
  27315. extra: 924 / 866,
  27316. bottom: 47.5 / 972.3
  27317. }
  27318. },
  27319. },
  27320. [
  27321. {
  27322. name: "Normal",
  27323. height: math.unit(9, "feet"),
  27324. default: true
  27325. },
  27326. {
  27327. name: "Macro",
  27328. height: math.unit(75 + 6 / 12, "feet")
  27329. },
  27330. {
  27331. name: "Teramacro",
  27332. height: math.unit(50000, "miles")
  27333. },
  27334. ]
  27335. ))
  27336. characterMakers.push(() => makeCharacter(
  27337. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27338. {
  27339. front: {
  27340. height: math.unit(10, "feet"),
  27341. weight: math.unit(2, "tons"),
  27342. name: "Front",
  27343. image: {
  27344. source: "./media/characters/rekhit/front.svg",
  27345. extra: 2796 / 2590,
  27346. bottom: 225 / 3022
  27347. }
  27348. },
  27349. },
  27350. [
  27351. {
  27352. name: "Normal",
  27353. height: math.unit(10, "feet"),
  27354. default: true
  27355. },
  27356. {
  27357. name: "Macro",
  27358. height: math.unit(500, "feet")
  27359. },
  27360. ]
  27361. ))
  27362. characterMakers.push(() => makeCharacter(
  27363. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27364. {
  27365. front: {
  27366. height: math.unit(7 + 6.451 / 12, "feet"),
  27367. weight: math.unit(310, "lb"),
  27368. name: "Front",
  27369. image: {
  27370. source: "./media/characters/dahlia-verrick/front.svg",
  27371. extra: 1488 / 1365,
  27372. bottom: 6.2 / 1495
  27373. }
  27374. },
  27375. back: {
  27376. height: math.unit(7 + 6.451 / 12, "feet"),
  27377. weight: math.unit(310, "lb"),
  27378. name: "Back",
  27379. image: {
  27380. source: "./media/characters/dahlia-verrick/back.svg",
  27381. extra: 1472 / 1351,
  27382. bottom: 5.28 / 1477
  27383. }
  27384. },
  27385. frontBusiness: {
  27386. height: math.unit(7 + 6.451 / 12, "feet"),
  27387. weight: math.unit(200, "lb"),
  27388. name: "Front (Business)",
  27389. image: {
  27390. source: "./media/characters/dahlia-verrick/front-business.svg",
  27391. extra: 1478 / 1381,
  27392. bottom: 5.5 / 1484
  27393. }
  27394. },
  27395. frontCasual: {
  27396. height: math.unit(7 + 6.451 / 12, "feet"),
  27397. weight: math.unit(200, "lb"),
  27398. name: "Front (Casual)",
  27399. image: {
  27400. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27401. extra: 1478 / 1381,
  27402. bottom: 5.5 / 1484
  27403. }
  27404. },
  27405. },
  27406. [
  27407. {
  27408. name: "Travel-Sized",
  27409. height: math.unit(7.45, "inches")
  27410. },
  27411. {
  27412. name: "Normal",
  27413. height: math.unit(7 + 6.451 / 12, "feet"),
  27414. default: true
  27415. },
  27416. {
  27417. name: "Hitting the Town",
  27418. height: math.unit(37 + 8 / 12, "feet")
  27419. },
  27420. {
  27421. name: "Stomp in the Suburbs",
  27422. height: math.unit(964 + 9.728 / 12, "feet")
  27423. },
  27424. {
  27425. name: "Sit on the City",
  27426. height: math.unit(61747 + 10.592 / 12, "feet")
  27427. },
  27428. {
  27429. name: "Glomp the Globe",
  27430. height: math.unit(252919327 + 4.832 / 12, "feet")
  27431. },
  27432. ]
  27433. ))
  27434. characterMakers.push(() => makeCharacter(
  27435. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27436. {
  27437. front: {
  27438. height: math.unit(6 + 4 / 12, "feet"),
  27439. weight: math.unit(320, "lb"),
  27440. name: "Front",
  27441. image: {
  27442. source: "./media/characters/balina-mahigan/front.svg",
  27443. extra: 447 / 428,
  27444. bottom: 18 / 466
  27445. }
  27446. },
  27447. back: {
  27448. height: math.unit(6 + 4 / 12, "feet"),
  27449. weight: math.unit(320, "lb"),
  27450. name: "Back",
  27451. image: {
  27452. source: "./media/characters/balina-mahigan/back.svg",
  27453. extra: 445 / 428,
  27454. bottom: 4.07 / 448
  27455. }
  27456. },
  27457. arm: {
  27458. height: math.unit(1.88, "feet"),
  27459. name: "Arm",
  27460. image: {
  27461. source: "./media/characters/balina-mahigan/arm.svg"
  27462. }
  27463. },
  27464. backPort: {
  27465. height: math.unit(0.685, "feet"),
  27466. name: "Back Port",
  27467. image: {
  27468. source: "./media/characters/balina-mahigan/back-port.svg"
  27469. }
  27470. },
  27471. hoofpaw: {
  27472. height: math.unit(1.41, "feet"),
  27473. name: "Hoofpaw",
  27474. image: {
  27475. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27476. }
  27477. },
  27478. leftHandBack: {
  27479. height: math.unit(0.938, "feet"),
  27480. name: "Left Hand (Back)",
  27481. image: {
  27482. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27483. }
  27484. },
  27485. leftHandFront: {
  27486. height: math.unit(0.938, "feet"),
  27487. name: "Left Hand (Front)",
  27488. image: {
  27489. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27490. }
  27491. },
  27492. rightHandBack: {
  27493. height: math.unit(0.95, "feet"),
  27494. name: "Right Hand (Back)",
  27495. image: {
  27496. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27497. }
  27498. },
  27499. rightHandFront: {
  27500. height: math.unit(0.95, "feet"),
  27501. name: "Right Hand (Front)",
  27502. image: {
  27503. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27504. }
  27505. },
  27506. },
  27507. [
  27508. {
  27509. name: "Normal",
  27510. height: math.unit(6 + 4 / 12, "feet"),
  27511. default: true
  27512. },
  27513. ]
  27514. ))
  27515. characterMakers.push(() => makeCharacter(
  27516. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27517. {
  27518. front: {
  27519. height: math.unit(6, "feet"),
  27520. weight: math.unit(320, "lb"),
  27521. name: "Front",
  27522. image: {
  27523. source: "./media/characters/balina-mejeri/front.svg",
  27524. extra: 517 / 488,
  27525. bottom: 44.2 / 561
  27526. }
  27527. },
  27528. },
  27529. [
  27530. {
  27531. name: "Normal",
  27532. height: math.unit(6 + 4 / 12, "feet")
  27533. },
  27534. {
  27535. name: "Business",
  27536. height: math.unit(155, "feet"),
  27537. default: true
  27538. },
  27539. ]
  27540. ))
  27541. characterMakers.push(() => makeCharacter(
  27542. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27543. {
  27544. kneeling: {
  27545. height: math.unit(6 + 4 / 12, "feet"),
  27546. weight: math.unit(300 * 20, "lb"),
  27547. name: "Kneeling",
  27548. image: {
  27549. source: "./media/characters/balbarian/kneeling.svg",
  27550. extra: 922 / 862,
  27551. bottom: 42.4 / 965
  27552. }
  27553. },
  27554. },
  27555. [
  27556. {
  27557. name: "Normal",
  27558. height: math.unit(6 + 4 / 12, "feet")
  27559. },
  27560. {
  27561. name: "Treasured",
  27562. height: math.unit(18 + 9 / 12, "feet"),
  27563. default: true
  27564. },
  27565. {
  27566. name: "Macro",
  27567. height: math.unit(900, "feet")
  27568. },
  27569. ]
  27570. ))
  27571. characterMakers.push(() => makeCharacter(
  27572. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27573. {
  27574. front: {
  27575. height: math.unit(6 + 4 / 12, "feet"),
  27576. weight: math.unit(325, "lb"),
  27577. name: "Front",
  27578. image: {
  27579. source: "./media/characters/balina-amarini/front.svg",
  27580. extra: 415 / 403,
  27581. bottom: 19 / 433.4
  27582. }
  27583. },
  27584. back: {
  27585. height: math.unit(6 + 4 / 12, "feet"),
  27586. weight: math.unit(325, "lb"),
  27587. name: "Back",
  27588. image: {
  27589. source: "./media/characters/balina-amarini/back.svg",
  27590. extra: 415 / 403,
  27591. bottom: 13.5 / 432
  27592. }
  27593. },
  27594. overdrive: {
  27595. height: math.unit(6 + 4 / 12, "feet"),
  27596. weight: math.unit(400, "lb"),
  27597. name: "Overdrive",
  27598. image: {
  27599. source: "./media/characters/balina-amarini/overdrive.svg",
  27600. extra: 269 / 259,
  27601. bottom: 12 / 282
  27602. }
  27603. },
  27604. },
  27605. [
  27606. {
  27607. name: "Boom",
  27608. height: math.unit(9 + 10 / 12, "feet"),
  27609. default: true
  27610. },
  27611. {
  27612. name: "Macro",
  27613. height: math.unit(280, "feet")
  27614. },
  27615. ]
  27616. ))
  27617. characterMakers.push(() => makeCharacter(
  27618. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27619. {
  27620. goddess: {
  27621. height: math.unit(600, "feet"),
  27622. weight: math.unit(2000000, "tons"),
  27623. name: "Goddess",
  27624. image: {
  27625. source: "./media/characters/lady-kubwa/goddess.svg",
  27626. extra: 1240.5 / 1223,
  27627. bottom: 22 / 1263
  27628. }
  27629. },
  27630. goddesser: {
  27631. height: math.unit(900, "feet"),
  27632. weight: math.unit(20000000, "lb"),
  27633. name: "Goddess-er",
  27634. image: {
  27635. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27636. extra: 899 / 888,
  27637. bottom: 12.6 / 912
  27638. }
  27639. },
  27640. },
  27641. [
  27642. {
  27643. name: "Macro",
  27644. height: math.unit(600, "feet"),
  27645. default: true
  27646. },
  27647. {
  27648. name: "Megamacro",
  27649. height: math.unit(250, "miles")
  27650. },
  27651. ]
  27652. ))
  27653. characterMakers.push(() => makeCharacter(
  27654. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27655. {
  27656. front: {
  27657. height: math.unit(7 + 7 / 12, "feet"),
  27658. weight: math.unit(250, "lb"),
  27659. name: "Front",
  27660. image: {
  27661. source: "./media/characters/tala-grovehorn/front.svg",
  27662. extra: 2636 / 2525,
  27663. bottom: 147 / 2781
  27664. }
  27665. },
  27666. back: {
  27667. height: math.unit(7 + 7 / 12, "feet"),
  27668. weight: math.unit(250, "lb"),
  27669. name: "Back",
  27670. image: {
  27671. source: "./media/characters/tala-grovehorn/back.svg",
  27672. extra: 2635 / 2539,
  27673. bottom: 100 / 2732.8
  27674. }
  27675. },
  27676. mouth: {
  27677. height: math.unit(1.15, "feet"),
  27678. name: "Mouth",
  27679. image: {
  27680. source: "./media/characters/tala-grovehorn/mouth.svg"
  27681. }
  27682. },
  27683. dick: {
  27684. height: math.unit(2.36, "feet"),
  27685. name: "Dick",
  27686. image: {
  27687. source: "./media/characters/tala-grovehorn/dick.svg"
  27688. }
  27689. },
  27690. slit: {
  27691. height: math.unit(0.61, "feet"),
  27692. name: "Slit",
  27693. image: {
  27694. source: "./media/characters/tala-grovehorn/slit.svg"
  27695. }
  27696. },
  27697. },
  27698. [
  27699. ]
  27700. ))
  27701. characterMakers.push(() => makeCharacter(
  27702. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27703. {
  27704. front: {
  27705. height: math.unit(7 + 7 / 12, "feet"),
  27706. weight: math.unit(225, "lb"),
  27707. name: "Front",
  27708. image: {
  27709. source: "./media/characters/epona/front.svg",
  27710. extra: 2445 / 2290,
  27711. bottom: 251 / 2696
  27712. }
  27713. },
  27714. back: {
  27715. height: math.unit(7 + 7 / 12, "feet"),
  27716. weight: math.unit(225, "lb"),
  27717. name: "Back",
  27718. image: {
  27719. source: "./media/characters/epona/back.svg",
  27720. extra: 2546 / 2408,
  27721. bottom: 44 / 2589
  27722. }
  27723. },
  27724. genitals: {
  27725. height: math.unit(1.5, "feet"),
  27726. name: "Genitals",
  27727. image: {
  27728. source: "./media/characters/epona/genitals.svg"
  27729. }
  27730. },
  27731. },
  27732. [
  27733. {
  27734. name: "Normal",
  27735. height: math.unit(7 + 7 / 12, "feet"),
  27736. default: true
  27737. },
  27738. ]
  27739. ))
  27740. characterMakers.push(() => makeCharacter(
  27741. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27742. {
  27743. front: {
  27744. height: math.unit(7, "feet"),
  27745. weight: math.unit(518, "lb"),
  27746. name: "Front",
  27747. image: {
  27748. source: "./media/characters/avia-bloodbourn/front.svg",
  27749. extra: 1466 / 1350,
  27750. bottom: 65 / 1527
  27751. }
  27752. },
  27753. },
  27754. [
  27755. ]
  27756. ))
  27757. characterMakers.push(() => makeCharacter(
  27758. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27759. {
  27760. front: {
  27761. height: math.unit(9.35, "feet"),
  27762. weight: math.unit(600, "lb"),
  27763. name: "Front",
  27764. image: {
  27765. source: "./media/characters/amera/front.svg",
  27766. extra: 891 / 818,
  27767. bottom: 30 / 922.7
  27768. }
  27769. },
  27770. back: {
  27771. height: math.unit(9.35, "feet"),
  27772. weight: math.unit(600, "lb"),
  27773. name: "Back",
  27774. image: {
  27775. source: "./media/characters/amera/back.svg",
  27776. extra: 876 / 824,
  27777. bottom: 6.8 / 884
  27778. }
  27779. },
  27780. dick: {
  27781. height: math.unit(2.14, "feet"),
  27782. name: "Dick",
  27783. image: {
  27784. source: "./media/characters/amera/dick.svg"
  27785. }
  27786. },
  27787. },
  27788. [
  27789. {
  27790. name: "Normal",
  27791. height: math.unit(9.35, "feet"),
  27792. default: true
  27793. },
  27794. ]
  27795. ))
  27796. characterMakers.push(() => makeCharacter(
  27797. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27798. {
  27799. kneeling: {
  27800. height: math.unit(3 + 4 / 12, "feet"),
  27801. weight: math.unit(90, "lb"),
  27802. name: "Kneeling",
  27803. image: {
  27804. source: "./media/characters/rosewen/kneeling.svg",
  27805. extra: 1835 / 1571,
  27806. bottom: 27.7 / 1862
  27807. }
  27808. },
  27809. },
  27810. [
  27811. {
  27812. name: "Normal",
  27813. height: math.unit(3 + 4 / 12, "feet"),
  27814. default: true
  27815. },
  27816. ]
  27817. ))
  27818. characterMakers.push(() => makeCharacter(
  27819. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27820. {
  27821. front: {
  27822. height: math.unit(5 + 10 / 12, "feet"),
  27823. weight: math.unit(200, "lb"),
  27824. name: "Front",
  27825. image: {
  27826. source: "./media/characters/sabah/front.svg",
  27827. extra: 849 / 763,
  27828. bottom: 33.9 / 881
  27829. }
  27830. },
  27831. },
  27832. [
  27833. {
  27834. name: "Normal",
  27835. height: math.unit(5 + 10 / 12, "feet"),
  27836. default: true
  27837. },
  27838. ]
  27839. ))
  27840. characterMakers.push(() => makeCharacter(
  27841. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27842. {
  27843. front: {
  27844. height: math.unit(3 + 5 / 12, "feet"),
  27845. weight: math.unit(40, "kg"),
  27846. name: "Front",
  27847. image: {
  27848. source: "./media/characters/purple-flame/front.svg",
  27849. extra: 1577 / 1412,
  27850. bottom: 97 / 1694
  27851. }
  27852. },
  27853. frontDressed: {
  27854. height: math.unit(3 + 5 / 12, "feet"),
  27855. weight: math.unit(40, "kg"),
  27856. name: "Front (Dressed)",
  27857. image: {
  27858. source: "./media/characters/purple-flame/front-dressed.svg",
  27859. extra: 1577 / 1412,
  27860. bottom: 97 / 1694
  27861. }
  27862. },
  27863. headphones: {
  27864. height: math.unit(0.85, "feet"),
  27865. name: "Headphones",
  27866. image: {
  27867. source: "./media/characters/purple-flame/headphones.svg"
  27868. }
  27869. },
  27870. },
  27871. [
  27872. {
  27873. name: "Really Small",
  27874. height: math.unit(5, "cm")
  27875. },
  27876. {
  27877. name: "Micro",
  27878. height: math.unit(1 + 5 / 12, "feet")
  27879. },
  27880. {
  27881. name: "Normal",
  27882. height: math.unit(3 + 5 / 12, "feet"),
  27883. default: true
  27884. },
  27885. {
  27886. name: "Minimacro",
  27887. height: math.unit(125, "feet")
  27888. },
  27889. {
  27890. name: "Macro",
  27891. height: math.unit(0.5, "miles")
  27892. },
  27893. {
  27894. name: "Megamacro",
  27895. height: math.unit(50, "miles")
  27896. },
  27897. {
  27898. name: "Gigantic",
  27899. height: math.unit(750, "miles")
  27900. },
  27901. {
  27902. name: "Planetary",
  27903. height: math.unit(15000, "miles")
  27904. },
  27905. ]
  27906. ))
  27907. characterMakers.push(() => makeCharacter(
  27908. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27909. {
  27910. front: {
  27911. height: math.unit(14, "feet"),
  27912. weight: math.unit(959, "lb"),
  27913. name: "Front",
  27914. image: {
  27915. source: "./media/characters/arsenal/front.svg",
  27916. extra: 2357 / 2157,
  27917. bottom: 93 / 2458
  27918. }
  27919. },
  27920. },
  27921. [
  27922. {
  27923. name: "Normal",
  27924. height: math.unit(14, "feet"),
  27925. default: true
  27926. },
  27927. ]
  27928. ))
  27929. characterMakers.push(() => makeCharacter(
  27930. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27931. {
  27932. front: {
  27933. height: math.unit(6, "feet"),
  27934. weight: math.unit(150, "lb"),
  27935. name: "Front",
  27936. image: {
  27937. source: "./media/characters/adira/front.svg",
  27938. extra: 1078 / 1029,
  27939. bottom: 87 / 1166
  27940. }
  27941. },
  27942. },
  27943. [
  27944. {
  27945. name: "Micro",
  27946. height: math.unit(4, "inches"),
  27947. default: true
  27948. },
  27949. {
  27950. name: "Macro",
  27951. height: math.unit(50, "feet")
  27952. },
  27953. ]
  27954. ))
  27955. characterMakers.push(() => makeCharacter(
  27956. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27957. {
  27958. front: {
  27959. height: math.unit(16, "feet"),
  27960. weight: math.unit(1000, "lb"),
  27961. name: "Front",
  27962. image: {
  27963. source: "./media/characters/grim/front.svg",
  27964. extra: 622 / 614,
  27965. bottom: 18.1 / 642
  27966. }
  27967. },
  27968. back: {
  27969. height: math.unit(16, "feet"),
  27970. weight: math.unit(1000, "lb"),
  27971. name: "Back",
  27972. image: {
  27973. source: "./media/characters/grim/back.svg",
  27974. extra: 610.6 / 602,
  27975. bottom: 40.8 / 652
  27976. }
  27977. },
  27978. hunched: {
  27979. height: math.unit(9.75, "feet"),
  27980. weight: math.unit(1000, "lb"),
  27981. name: "Hunched",
  27982. image: {
  27983. source: "./media/characters/grim/hunched.svg",
  27984. extra: 304 / 297,
  27985. bottom: 35.4 / 394
  27986. }
  27987. },
  27988. },
  27989. [
  27990. {
  27991. name: "Normal",
  27992. height: math.unit(16, "feet"),
  27993. default: true
  27994. },
  27995. ]
  27996. ))
  27997. characterMakers.push(() => makeCharacter(
  27998. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27999. {
  28000. front: {
  28001. height: math.unit(2.3, "meters"),
  28002. weight: math.unit(300, "lb"),
  28003. name: "Front",
  28004. image: {
  28005. source: "./media/characters/sinja/front-sfw.svg",
  28006. extra: 1393 / 1294,
  28007. bottom: 70 / 1463
  28008. }
  28009. },
  28010. frontNsfw: {
  28011. height: math.unit(2.3, "meters"),
  28012. weight: math.unit(300, "lb"),
  28013. name: "Front (NSFW)",
  28014. image: {
  28015. source: "./media/characters/sinja/front-nsfw.svg",
  28016. extra: 1393 / 1294,
  28017. bottom: 70 / 1463
  28018. }
  28019. },
  28020. back: {
  28021. height: math.unit(2.3, "meters"),
  28022. weight: math.unit(300, "lb"),
  28023. name: "Back",
  28024. image: {
  28025. source: "./media/characters/sinja/back.svg",
  28026. extra: 1393 / 1294,
  28027. bottom: 70 / 1463
  28028. }
  28029. },
  28030. head: {
  28031. height: math.unit(1.771, "feet"),
  28032. name: "Head",
  28033. image: {
  28034. source: "./media/characters/sinja/head.svg"
  28035. }
  28036. },
  28037. slit: {
  28038. height: math.unit(0.8, "feet"),
  28039. name: "Slit",
  28040. image: {
  28041. source: "./media/characters/sinja/slit.svg"
  28042. }
  28043. },
  28044. },
  28045. [
  28046. {
  28047. name: "Normal",
  28048. height: math.unit(2.3, "meters")
  28049. },
  28050. {
  28051. name: "Macro",
  28052. height: math.unit(91, "meters"),
  28053. default: true
  28054. },
  28055. {
  28056. name: "Megamacro",
  28057. height: math.unit(91440, "meters")
  28058. },
  28059. {
  28060. name: "Gigamacro",
  28061. height: math.unit(60960000, "meters")
  28062. },
  28063. {
  28064. name: "Teramacro",
  28065. height: math.unit(9144000000, "meters")
  28066. },
  28067. ]
  28068. ))
  28069. characterMakers.push(() => makeCharacter(
  28070. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28071. {
  28072. front: {
  28073. height: math.unit(1.7, "meters"),
  28074. weight: math.unit(130, "lb"),
  28075. name: "Front",
  28076. image: {
  28077. source: "./media/characters/kyu/front.svg",
  28078. extra: 415 / 395,
  28079. bottom: 5 / 420
  28080. }
  28081. },
  28082. head: {
  28083. height: math.unit(1.75, "feet"),
  28084. name: "Head",
  28085. image: {
  28086. source: "./media/characters/kyu/head.svg"
  28087. }
  28088. },
  28089. foot: {
  28090. height: math.unit(0.81, "feet"),
  28091. name: "Foot",
  28092. image: {
  28093. source: "./media/characters/kyu/foot.svg"
  28094. }
  28095. },
  28096. },
  28097. [
  28098. {
  28099. name: "Normal",
  28100. height: math.unit(1.7, "meters")
  28101. },
  28102. {
  28103. name: "Macro",
  28104. height: math.unit(131, "feet"),
  28105. default: true
  28106. },
  28107. {
  28108. name: "Megamacro",
  28109. height: math.unit(91440, "meters")
  28110. },
  28111. {
  28112. name: "Gigamacro",
  28113. height: math.unit(60960000, "meters")
  28114. },
  28115. {
  28116. name: "Teramacro",
  28117. height: math.unit(9144000000, "meters")
  28118. },
  28119. ]
  28120. ))
  28121. characterMakers.push(() => makeCharacter(
  28122. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28123. {
  28124. front: {
  28125. height: math.unit(7 + 1 / 12, "feet"),
  28126. weight: math.unit(250, "lb"),
  28127. name: "Front",
  28128. image: {
  28129. source: "./media/characters/joey/front.svg",
  28130. extra: 1791 / 1537,
  28131. bottom: 28 / 1816
  28132. }
  28133. },
  28134. },
  28135. [
  28136. {
  28137. name: "Micro",
  28138. height: math.unit(3, "inches")
  28139. },
  28140. {
  28141. name: "Normal",
  28142. height: math.unit(7 + 1 / 12, "feet"),
  28143. default: true
  28144. },
  28145. ]
  28146. ))
  28147. characterMakers.push(() => makeCharacter(
  28148. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28149. {
  28150. front: {
  28151. height: math.unit(165, "cm"),
  28152. weight: math.unit(140, "lb"),
  28153. name: "Front",
  28154. image: {
  28155. source: "./media/characters/sam-evans/front.svg",
  28156. extra: 3417 / 3230,
  28157. bottom: 41.3 / 3417
  28158. }
  28159. },
  28160. frontSixTails: {
  28161. height: math.unit(165, "cm"),
  28162. weight: math.unit(140, "lb"),
  28163. name: "Front-six-tails",
  28164. image: {
  28165. source: "./media/characters/sam-evans/front-six-tails.svg",
  28166. extra: 3417 / 3230,
  28167. bottom: 41.3 / 3417
  28168. }
  28169. },
  28170. back: {
  28171. height: math.unit(165, "cm"),
  28172. weight: math.unit(140, "lb"),
  28173. name: "Back",
  28174. image: {
  28175. source: "./media/characters/sam-evans/back.svg",
  28176. extra: 3227 / 3032,
  28177. bottom: 6.8 / 3234
  28178. }
  28179. },
  28180. face: {
  28181. height: math.unit(0.68, "feet"),
  28182. name: "Face",
  28183. image: {
  28184. source: "./media/characters/sam-evans/face.svg"
  28185. }
  28186. },
  28187. },
  28188. [
  28189. {
  28190. name: "Normal",
  28191. height: math.unit(165, "cm"),
  28192. default: true
  28193. },
  28194. {
  28195. name: "Macro",
  28196. height: math.unit(100, "meters")
  28197. },
  28198. {
  28199. name: "Macro+",
  28200. height: math.unit(800, "meters")
  28201. },
  28202. {
  28203. name: "Macro++",
  28204. height: math.unit(3, "km")
  28205. },
  28206. {
  28207. name: "Macro+++",
  28208. height: math.unit(30, "km")
  28209. },
  28210. ]
  28211. ))
  28212. characterMakers.push(() => makeCharacter(
  28213. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28214. {
  28215. front: {
  28216. height: math.unit(10, "feet"),
  28217. weight: math.unit(750, "lb"),
  28218. name: "Front",
  28219. image: {
  28220. source: "./media/characters/juliet-a/front.svg",
  28221. extra: 1766 / 1720,
  28222. bottom: 43 / 1809
  28223. }
  28224. },
  28225. back: {
  28226. height: math.unit(10, "feet"),
  28227. weight: math.unit(750, "lb"),
  28228. name: "Back",
  28229. image: {
  28230. source: "./media/characters/juliet-a/back.svg",
  28231. extra: 1781 / 1734,
  28232. bottom: 35 / 1810,
  28233. }
  28234. },
  28235. },
  28236. [
  28237. {
  28238. name: "Normal",
  28239. height: math.unit(10, "feet"),
  28240. default: true
  28241. },
  28242. {
  28243. name: "Dragon Form",
  28244. height: math.unit(250, "feet")
  28245. },
  28246. {
  28247. name: "Macro",
  28248. height: math.unit(1000, "feet")
  28249. },
  28250. {
  28251. name: "Megamacro",
  28252. height: math.unit(10000, "feet")
  28253. }
  28254. ]
  28255. ))
  28256. characterMakers.push(() => makeCharacter(
  28257. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28258. {
  28259. regular: {
  28260. height: math.unit(7 + 3 / 12, "feet"),
  28261. weight: math.unit(260, "lb"),
  28262. name: "Regular",
  28263. image: {
  28264. source: "./media/characters/wild/regular.svg",
  28265. extra: 97.45 / 92,
  28266. bottom: 6.8 / 104.3
  28267. }
  28268. },
  28269. biggums: {
  28270. height: math.unit(8 + 6 / 12, "feet"),
  28271. weight: math.unit(425, "lb"),
  28272. name: "Biggums",
  28273. image: {
  28274. source: "./media/characters/wild/biggums.svg",
  28275. extra: 97.45 / 92,
  28276. bottom: 7.5 / 132.34
  28277. }
  28278. },
  28279. mawRegular: {
  28280. height: math.unit(1.24, "feet"),
  28281. name: "Maw (Regular)",
  28282. image: {
  28283. source: "./media/characters/wild/maw.svg"
  28284. }
  28285. },
  28286. mawBiggums: {
  28287. height: math.unit(1.47, "feet"),
  28288. name: "Maw (Biggums)",
  28289. image: {
  28290. source: "./media/characters/wild/maw.svg"
  28291. }
  28292. },
  28293. },
  28294. [
  28295. {
  28296. name: "Normal",
  28297. height: math.unit(7 + 3 / 12, "feet"),
  28298. default: true
  28299. },
  28300. ]
  28301. ))
  28302. characterMakers.push(() => makeCharacter(
  28303. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28304. {
  28305. front: {
  28306. height: math.unit(2.5, "meters"),
  28307. weight: math.unit(200, "kg"),
  28308. name: "Front",
  28309. image: {
  28310. source: "./media/characters/vidar/front.svg",
  28311. extra: 2994 / 2795,
  28312. bottom: 56 / 3061
  28313. }
  28314. },
  28315. back: {
  28316. height: math.unit(2.5, "meters"),
  28317. weight: math.unit(200, "kg"),
  28318. name: "Back",
  28319. image: {
  28320. source: "./media/characters/vidar/back.svg",
  28321. extra: 3131 / 2928,
  28322. bottom: 13.5 / 3141.5
  28323. }
  28324. },
  28325. feral: {
  28326. height: math.unit(2.5, "meters"),
  28327. weight: math.unit(2000, "kg"),
  28328. name: "Feral",
  28329. image: {
  28330. source: "./media/characters/vidar/feral.svg",
  28331. extra: 2790 / 1765,
  28332. bottom: 6 / 2796
  28333. }
  28334. },
  28335. },
  28336. [
  28337. {
  28338. name: "Normal",
  28339. height: math.unit(2.5, "meters"),
  28340. default: true
  28341. },
  28342. {
  28343. name: "Macro",
  28344. height: math.unit(100, "meters")
  28345. },
  28346. ]
  28347. ))
  28348. characterMakers.push(() => makeCharacter(
  28349. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28350. {
  28351. front: {
  28352. height: math.unit(5 + 9 / 12, "feet"),
  28353. weight: math.unit(120, "lb"),
  28354. name: "Front",
  28355. image: {
  28356. source: "./media/characters/ash/front.svg",
  28357. extra: 2189 / 1961,
  28358. bottom: 5.2 / 2194
  28359. }
  28360. },
  28361. },
  28362. [
  28363. {
  28364. name: "Normal",
  28365. height: math.unit(5 + 9 / 12, "feet"),
  28366. default: true
  28367. },
  28368. ]
  28369. ))
  28370. characterMakers.push(() => makeCharacter(
  28371. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28372. {
  28373. front: {
  28374. height: math.unit(9, "feet"),
  28375. weight: math.unit(10000, "lb"),
  28376. name: "Front",
  28377. image: {
  28378. source: "./media/characters/gygabite/front.svg",
  28379. bottom: 31.7 / 537.8,
  28380. extra: 505 / 370
  28381. }
  28382. },
  28383. },
  28384. [
  28385. {
  28386. name: "Normal",
  28387. height: math.unit(9, "feet"),
  28388. default: true
  28389. },
  28390. ]
  28391. ))
  28392. characterMakers.push(() => makeCharacter(
  28393. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28394. {
  28395. front: {
  28396. height: math.unit(12, "feet"),
  28397. weight: math.unit(35000, "lb"),
  28398. name: "Front",
  28399. image: {
  28400. source: "./media/characters/p0tat0/front.svg",
  28401. extra: 1065 / 921,
  28402. bottom: 55.7 / 1121.25
  28403. }
  28404. },
  28405. },
  28406. [
  28407. {
  28408. name: "Normal",
  28409. height: math.unit(12, "feet"),
  28410. default: true
  28411. },
  28412. ]
  28413. ))
  28414. characterMakers.push(() => makeCharacter(
  28415. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28416. {
  28417. side: {
  28418. height: math.unit(6.5, "feet"),
  28419. weight: math.unit(800, "lb"),
  28420. name: "Side",
  28421. image: {
  28422. source: "./media/characters/dusk/side.svg",
  28423. extra: 615 / 373,
  28424. bottom: 53 / 664
  28425. }
  28426. },
  28427. sitting: {
  28428. height: math.unit(7, "feet"),
  28429. weight: math.unit(800, "lb"),
  28430. name: "Sitting",
  28431. image: {
  28432. source: "./media/characters/dusk/sitting.svg",
  28433. extra: 753 / 425,
  28434. bottom: 33 / 774
  28435. }
  28436. },
  28437. head: {
  28438. height: math.unit(6.1, "feet"),
  28439. name: "Head",
  28440. image: {
  28441. source: "./media/characters/dusk/head.svg"
  28442. }
  28443. },
  28444. },
  28445. [
  28446. {
  28447. name: "Normal",
  28448. height: math.unit(7, "feet"),
  28449. default: true
  28450. },
  28451. ]
  28452. ))
  28453. characterMakers.push(() => makeCharacter(
  28454. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28455. {
  28456. front: {
  28457. height: math.unit(15, "feet"),
  28458. weight: math.unit(7000, "lb"),
  28459. name: "Front",
  28460. image: {
  28461. source: "./media/characters/jay-direwolf/front.svg",
  28462. extra: 1810 / 1732,
  28463. bottom: 66 / 1892
  28464. }
  28465. },
  28466. },
  28467. [
  28468. {
  28469. name: "Normal",
  28470. height: math.unit(15, "feet"),
  28471. default: true
  28472. },
  28473. ]
  28474. ))
  28475. characterMakers.push(() => makeCharacter(
  28476. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28477. {
  28478. front: {
  28479. height: math.unit(4 + 9 / 12, "feet"),
  28480. weight: math.unit(130, "lb"),
  28481. name: "Front",
  28482. image: {
  28483. source: "./media/characters/anchovie/front.svg",
  28484. extra: 382 / 350,
  28485. bottom: 25 / 409
  28486. }
  28487. },
  28488. back: {
  28489. height: math.unit(4 + 9 / 12, "feet"),
  28490. weight: math.unit(130, "lb"),
  28491. name: "Back",
  28492. image: {
  28493. source: "./media/characters/anchovie/back.svg",
  28494. extra: 385 / 352,
  28495. bottom: 16.6 / 402
  28496. }
  28497. },
  28498. frontDressed: {
  28499. height: math.unit(4 + 9 / 12, "feet"),
  28500. weight: math.unit(130, "lb"),
  28501. name: "Front (Dressed)",
  28502. image: {
  28503. source: "./media/characters/anchovie/front-dressed.svg",
  28504. extra: 382 / 350,
  28505. bottom: 25 / 409
  28506. }
  28507. },
  28508. backDressed: {
  28509. height: math.unit(4 + 9 / 12, "feet"),
  28510. weight: math.unit(130, "lb"),
  28511. name: "Back (Dressed)",
  28512. image: {
  28513. source: "./media/characters/anchovie/back-dressed.svg",
  28514. extra: 385 / 352,
  28515. bottom: 16.6 / 402
  28516. }
  28517. },
  28518. },
  28519. [
  28520. {
  28521. name: "Micro",
  28522. height: math.unit(6.4, "inches")
  28523. },
  28524. {
  28525. name: "Normal",
  28526. height: math.unit(4 + 9 / 12, "feet"),
  28527. default: true
  28528. },
  28529. ]
  28530. ))
  28531. characterMakers.push(() => makeCharacter(
  28532. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28533. {
  28534. front: {
  28535. height: math.unit(2, "meters"),
  28536. weight: math.unit(180, "lb"),
  28537. name: "Front",
  28538. image: {
  28539. source: "./media/characters/acidrenamon/front.svg",
  28540. extra: 987 / 890,
  28541. bottom: 22.8 / 1009
  28542. }
  28543. },
  28544. back: {
  28545. height: math.unit(2, "meters"),
  28546. weight: math.unit(180, "lb"),
  28547. name: "Back",
  28548. image: {
  28549. source: "./media/characters/acidrenamon/back.svg",
  28550. extra: 983 / 891,
  28551. bottom: 8.4 / 992
  28552. }
  28553. },
  28554. head: {
  28555. height: math.unit(1.92, "feet"),
  28556. name: "Head",
  28557. image: {
  28558. source: "./media/characters/acidrenamon/head.svg"
  28559. }
  28560. },
  28561. rump: {
  28562. height: math.unit(1.72, "feet"),
  28563. name: "Rump",
  28564. image: {
  28565. source: "./media/characters/acidrenamon/rump.svg"
  28566. }
  28567. },
  28568. tail: {
  28569. height: math.unit(4.2, "feet"),
  28570. name: "Tail",
  28571. image: {
  28572. source: "./media/characters/acidrenamon/tail.svg"
  28573. }
  28574. },
  28575. },
  28576. [
  28577. {
  28578. name: "Normal",
  28579. height: math.unit(2, "meters"),
  28580. default: true
  28581. },
  28582. {
  28583. name: "Minimacro",
  28584. height: math.unit(7, "meters")
  28585. },
  28586. {
  28587. name: "Macro",
  28588. height: math.unit(200, "meters")
  28589. },
  28590. {
  28591. name: "Gigamacro",
  28592. height: math.unit(0.2, "earths")
  28593. },
  28594. ]
  28595. ))
  28596. characterMakers.push(() => makeCharacter(
  28597. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28598. {
  28599. front: {
  28600. height: math.unit(152, "feet"),
  28601. name: "Front",
  28602. image: {
  28603. source: "./media/characters/kenzie-lee/front.svg",
  28604. extra: 1869/1774,
  28605. bottom: 128/1997
  28606. }
  28607. },
  28608. side: {
  28609. height: math.unit(86, "feet"),
  28610. name: "Side",
  28611. image: {
  28612. source: "./media/characters/kenzie-lee/side.svg",
  28613. extra: 930/815,
  28614. bottom: 177/1107
  28615. }
  28616. },
  28617. paw: {
  28618. height: math.unit(15, "feet"),
  28619. name: "Paw",
  28620. image: {
  28621. source: "./media/characters/kenzie-lee/paw.svg"
  28622. }
  28623. },
  28624. },
  28625. [
  28626. {
  28627. name: "Kenzie Flea",
  28628. height: math.unit(2, "mm"),
  28629. default: true
  28630. },
  28631. {
  28632. name: "Micro",
  28633. height: math.unit(2, "inches")
  28634. },
  28635. {
  28636. name: "Normal",
  28637. height: math.unit(152, "feet")
  28638. },
  28639. {
  28640. name: "Megamacro",
  28641. height: math.unit(7, "miles")
  28642. },
  28643. {
  28644. name: "Gigamacro",
  28645. height: math.unit(8000, "miles")
  28646. },
  28647. ]
  28648. ))
  28649. characterMakers.push(() => makeCharacter(
  28650. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28651. {
  28652. front: {
  28653. height: math.unit(6, "feet"),
  28654. name: "Front",
  28655. image: {
  28656. source: "./media/characters/withers/front.svg",
  28657. extra: 1935/1760,
  28658. bottom: 72/2007
  28659. }
  28660. },
  28661. back: {
  28662. height: math.unit(6, "feet"),
  28663. name: "Back",
  28664. image: {
  28665. source: "./media/characters/withers/back.svg",
  28666. extra: 1944/1792,
  28667. bottom: 12/1956
  28668. }
  28669. },
  28670. dressed: {
  28671. height: math.unit(6, "feet"),
  28672. name: "Dressed",
  28673. image: {
  28674. source: "./media/characters/withers/dressed.svg",
  28675. extra: 1937/1765,
  28676. bottom: 73/2010
  28677. }
  28678. },
  28679. phase1: {
  28680. height: math.unit(1.1, "feet"),
  28681. name: "Phase 1",
  28682. image: {
  28683. source: "./media/characters/withers/phase-1.svg",
  28684. extra: 1885/1232,
  28685. bottom: 0/1885
  28686. }
  28687. },
  28688. phase2: {
  28689. height: math.unit(1.05, "feet"),
  28690. name: "Phase 2",
  28691. image: {
  28692. source: "./media/characters/withers/phase-2.svg",
  28693. extra: 1792/1090,
  28694. bottom: 0/1792
  28695. }
  28696. },
  28697. partyWipe: {
  28698. height: math.unit(1.1, "feet"),
  28699. name: "Party Wipe",
  28700. image: {
  28701. source: "./media/characters/withers/party-wipe.svg",
  28702. extra: 1864/1207,
  28703. bottom: 0/1864
  28704. }
  28705. },
  28706. },
  28707. [
  28708. {
  28709. name: "Macro",
  28710. height: math.unit(167, "feet"),
  28711. default: true
  28712. },
  28713. {
  28714. name: "Megamacro",
  28715. height: math.unit(15, "miles")
  28716. }
  28717. ]
  28718. ))
  28719. characterMakers.push(() => makeCharacter(
  28720. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28721. {
  28722. front: {
  28723. height: math.unit(6 + 7 / 12, "feet"),
  28724. weight: math.unit(250, "lb"),
  28725. name: "Front",
  28726. image: {
  28727. source: "./media/characters/nemoskii/front.svg",
  28728. extra: 2270 / 1734,
  28729. bottom: 86 / 2354
  28730. }
  28731. },
  28732. back: {
  28733. height: math.unit(6 + 7 / 12, "feet"),
  28734. weight: math.unit(250, "lb"),
  28735. name: "Back",
  28736. image: {
  28737. source: "./media/characters/nemoskii/back.svg",
  28738. extra: 1845 / 1788,
  28739. bottom: 10.5 / 1852
  28740. }
  28741. },
  28742. head: {
  28743. height: math.unit(1.31, "feet"),
  28744. name: "Head",
  28745. image: {
  28746. source: "./media/characters/nemoskii/head.svg"
  28747. }
  28748. },
  28749. },
  28750. [
  28751. {
  28752. name: "Micro",
  28753. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28754. },
  28755. {
  28756. name: "Normal",
  28757. height: math.unit(6 + 7 / 12, "feet"),
  28758. default: true
  28759. },
  28760. {
  28761. name: "Macro",
  28762. height: math.unit((6 + 7 / 12) * 150, "feet")
  28763. },
  28764. {
  28765. name: "Macro+",
  28766. height: math.unit((6 + 7 / 12) * 500, "feet")
  28767. },
  28768. {
  28769. name: "Megamacro",
  28770. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28771. },
  28772. ]
  28773. ))
  28774. characterMakers.push(() => makeCharacter(
  28775. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28776. {
  28777. front: {
  28778. height: math.unit(1, "mile"),
  28779. weight: math.unit(265261.9, "lb"),
  28780. name: "Front",
  28781. image: {
  28782. source: "./media/characters/shui/front.svg",
  28783. extra: 1633 / 1564,
  28784. bottom: 91.5 / 1726
  28785. }
  28786. },
  28787. },
  28788. [
  28789. {
  28790. name: "Macro",
  28791. height: math.unit(1, "mile"),
  28792. default: true
  28793. },
  28794. ]
  28795. ))
  28796. characterMakers.push(() => makeCharacter(
  28797. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28798. {
  28799. front: {
  28800. height: math.unit(12 + 6 / 12, "feet"),
  28801. weight: math.unit(1342, "lb"),
  28802. name: "Front",
  28803. image: {
  28804. source: "./media/characters/arokh-takakura/front.svg",
  28805. extra: 1089 / 1043,
  28806. bottom: 77.4 / 1176.7
  28807. }
  28808. },
  28809. back: {
  28810. height: math.unit(12 + 6 / 12, "feet"),
  28811. weight: math.unit(1342, "lb"),
  28812. name: "Back",
  28813. image: {
  28814. source: "./media/characters/arokh-takakura/back.svg",
  28815. extra: 1046 / 1019,
  28816. bottom: 102 / 1150
  28817. }
  28818. },
  28819. },
  28820. [
  28821. {
  28822. name: "Big",
  28823. height: math.unit(12 + 6 / 12, "feet"),
  28824. default: true
  28825. },
  28826. ]
  28827. ))
  28828. characterMakers.push(() => makeCharacter(
  28829. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28830. {
  28831. front: {
  28832. height: math.unit(5 + 6 / 12, "feet"),
  28833. weight: math.unit(150, "lb"),
  28834. name: "Front",
  28835. image: {
  28836. source: "./media/characters/theo/front.svg",
  28837. extra: 1184 / 1131,
  28838. bottom: 7.4 / 1191
  28839. }
  28840. },
  28841. },
  28842. [
  28843. {
  28844. name: "Micro",
  28845. height: math.unit(5, "inches")
  28846. },
  28847. {
  28848. name: "Normal",
  28849. height: math.unit(5 + 6 / 12, "feet"),
  28850. default: true
  28851. },
  28852. ]
  28853. ))
  28854. characterMakers.push(() => makeCharacter(
  28855. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28856. {
  28857. front: {
  28858. height: math.unit(5 + 9 / 12, "feet"),
  28859. weight: math.unit(130, "lb"),
  28860. name: "Front",
  28861. image: {
  28862. source: "./media/characters/cecelia-swift/front.svg",
  28863. extra: 502 / 484,
  28864. bottom: 23 / 523
  28865. }
  28866. },
  28867. back: {
  28868. height: math.unit(5 + 9 / 12, "feet"),
  28869. weight: math.unit(130, "lb"),
  28870. name: "Back",
  28871. image: {
  28872. source: "./media/characters/cecelia-swift/back.svg",
  28873. extra: 499 / 485,
  28874. bottom: 12 / 511
  28875. }
  28876. },
  28877. head: {
  28878. height: math.unit(0.90, "feet"),
  28879. name: "Head",
  28880. image: {
  28881. source: "./media/characters/cecelia-swift/head.svg"
  28882. }
  28883. },
  28884. rump: {
  28885. height: math.unit(1.75, "feet"),
  28886. name: "Rump",
  28887. image: {
  28888. source: "./media/characters/cecelia-swift/rump.svg"
  28889. }
  28890. },
  28891. },
  28892. [
  28893. {
  28894. name: "Normal",
  28895. height: math.unit(5 + 9 / 12, "feet"),
  28896. default: true
  28897. },
  28898. {
  28899. name: "Big",
  28900. height: math.unit(50, "feet")
  28901. },
  28902. {
  28903. name: "Macro",
  28904. height: math.unit(100, "feet")
  28905. },
  28906. {
  28907. name: "Macro+",
  28908. height: math.unit(500, "feet")
  28909. },
  28910. {
  28911. name: "Macro++",
  28912. height: math.unit(1000, "feet")
  28913. },
  28914. ]
  28915. ))
  28916. characterMakers.push(() => makeCharacter(
  28917. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28918. {
  28919. front: {
  28920. height: math.unit(6, "feet"),
  28921. weight: math.unit(150, "lb"),
  28922. name: "Front",
  28923. image: {
  28924. source: "./media/characters/kaunan/front.svg",
  28925. extra: 2890 / 2523,
  28926. bottom: 49 / 2939
  28927. }
  28928. },
  28929. },
  28930. [
  28931. {
  28932. name: "Macro",
  28933. height: math.unit(150, "feet"),
  28934. default: true
  28935. },
  28936. ]
  28937. ))
  28938. characterMakers.push(() => makeCharacter(
  28939. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28940. {
  28941. front: {
  28942. height: math.unit(175, "cm"),
  28943. weight: math.unit(60, "kg"),
  28944. name: "Front",
  28945. image: {
  28946. source: "./media/characters/fei/front.svg",
  28947. extra: 1873/1723,
  28948. bottom: 53/1926
  28949. }
  28950. },
  28951. },
  28952. [
  28953. {
  28954. name: "Mortal",
  28955. height: math.unit(175, "cm")
  28956. },
  28957. {
  28958. name: "Normal",
  28959. height: math.unit(3500, "m"),
  28960. default: true
  28961. },
  28962. {
  28963. name: "Stroll",
  28964. height: math.unit(17.5, "km")
  28965. },
  28966. {
  28967. name: "Showoff",
  28968. height: math.unit(175, "km")
  28969. },
  28970. ]
  28971. ))
  28972. characterMakers.push(() => makeCharacter(
  28973. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28974. {
  28975. front: {
  28976. height: math.unit(7, "feet"),
  28977. weight: math.unit(1000, "kg"),
  28978. name: "Front",
  28979. image: {
  28980. source: "./media/characters/edrax/front.svg",
  28981. extra: 2838 / 2550,
  28982. bottom: 130 / 2968
  28983. }
  28984. },
  28985. },
  28986. [
  28987. {
  28988. name: "Small",
  28989. height: math.unit(7, "feet")
  28990. },
  28991. {
  28992. name: "Normal",
  28993. height: math.unit(1500, "meters")
  28994. },
  28995. {
  28996. name: "Mega",
  28997. height: math.unit(12000000, "km"),
  28998. default: true
  28999. },
  29000. {
  29001. name: "Megamacro",
  29002. height: math.unit(10600000, "lightyears")
  29003. },
  29004. {
  29005. name: "Hypermacro",
  29006. height: math.unit(256, "yottameters")
  29007. },
  29008. ]
  29009. ))
  29010. characterMakers.push(() => makeCharacter(
  29011. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29012. {
  29013. front: {
  29014. height: math.unit(10, "feet"),
  29015. weight: math.unit(750, "lb"),
  29016. name: "Front",
  29017. image: {
  29018. source: "./media/characters/clove/front.svg",
  29019. extra: 1918/1751,
  29020. bottom: 52/1970
  29021. }
  29022. },
  29023. back: {
  29024. height: math.unit(10, "feet"),
  29025. weight: math.unit(750, "lb"),
  29026. name: "Back",
  29027. image: {
  29028. source: "./media/characters/clove/back.svg",
  29029. extra: 1912/1747,
  29030. bottom: 50/1962
  29031. }
  29032. },
  29033. },
  29034. [
  29035. {
  29036. name: "Normal",
  29037. height: math.unit(10, "feet"),
  29038. default: true
  29039. },
  29040. ]
  29041. ))
  29042. characterMakers.push(() => makeCharacter(
  29043. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29044. {
  29045. front: {
  29046. height: math.unit(4, "feet"),
  29047. weight: math.unit(50, "lb"),
  29048. name: "Front",
  29049. image: {
  29050. source: "./media/characters/alex-rabbit/front.svg",
  29051. extra: 507 / 458,
  29052. bottom: 18.5 / 527
  29053. }
  29054. },
  29055. back: {
  29056. height: math.unit(4, "feet"),
  29057. weight: math.unit(50, "lb"),
  29058. name: "Back",
  29059. image: {
  29060. source: "./media/characters/alex-rabbit/back.svg",
  29061. extra: 502 / 460,
  29062. bottom: 18.9 / 521
  29063. }
  29064. },
  29065. },
  29066. [
  29067. {
  29068. name: "Normal",
  29069. height: math.unit(4, "feet"),
  29070. default: true
  29071. },
  29072. ]
  29073. ))
  29074. characterMakers.push(() => makeCharacter(
  29075. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29076. {
  29077. front: {
  29078. height: math.unit(1 + 3 / 12, "feet"),
  29079. weight: math.unit(80, "lb"),
  29080. name: "Front",
  29081. image: {
  29082. source: "./media/characters/zander-rose/front.svg",
  29083. extra: 916 / 797,
  29084. bottom: 17 / 933
  29085. }
  29086. },
  29087. back: {
  29088. height: math.unit(1 + 3 / 12, "feet"),
  29089. weight: math.unit(80, "lb"),
  29090. name: "Back",
  29091. image: {
  29092. source: "./media/characters/zander-rose/back.svg",
  29093. extra: 903 / 779,
  29094. bottom: 31 / 934
  29095. }
  29096. },
  29097. },
  29098. [
  29099. {
  29100. name: "Normal",
  29101. height: math.unit(1 + 3 / 12, "feet"),
  29102. default: true
  29103. },
  29104. ]
  29105. ))
  29106. characterMakers.push(() => makeCharacter(
  29107. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29108. {
  29109. anthro: {
  29110. height: math.unit(6, "feet"),
  29111. weight: math.unit(150, "lb"),
  29112. name: "Anthro",
  29113. image: {
  29114. source: "./media/characters/razz/anthro.svg",
  29115. extra: 1437 / 1343,
  29116. bottom: 48 / 1485
  29117. }
  29118. },
  29119. feral: {
  29120. height: math.unit(6, "feet"),
  29121. weight: math.unit(150, "lb"),
  29122. name: "Feral",
  29123. image: {
  29124. source: "./media/characters/razz/feral.svg",
  29125. extra: 2569 / 1385,
  29126. bottom: 95 / 2664
  29127. }
  29128. },
  29129. },
  29130. [
  29131. {
  29132. name: "Normal",
  29133. height: math.unit(6, "feet"),
  29134. default: true
  29135. },
  29136. ]
  29137. ))
  29138. characterMakers.push(() => makeCharacter(
  29139. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29140. {
  29141. front: {
  29142. height: math.unit(9 + 4 / 12, "feet"),
  29143. weight: math.unit(500, "lb"),
  29144. name: "Front",
  29145. image: {
  29146. source: "./media/characters/morrigan/front.svg",
  29147. extra: 2707 / 2579,
  29148. bottom: 156 / 2863
  29149. }
  29150. },
  29151. },
  29152. [
  29153. {
  29154. name: "Normal",
  29155. height: math.unit(9 + 4 / 12, "feet"),
  29156. default: true
  29157. },
  29158. ]
  29159. ))
  29160. characterMakers.push(() => makeCharacter(
  29161. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29162. {
  29163. front: {
  29164. height: math.unit(5, "stories"),
  29165. weight: math.unit(4000, "lb"),
  29166. name: "Front",
  29167. image: {
  29168. source: "./media/characters/jenene/front.svg",
  29169. extra: 1780 / 1710,
  29170. bottom: 57 / 1837
  29171. }
  29172. },
  29173. },
  29174. [
  29175. {
  29176. name: "Normal",
  29177. height: math.unit(5, "stories"),
  29178. default: true
  29179. },
  29180. ]
  29181. ))
  29182. characterMakers.push(() => makeCharacter(
  29183. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29184. {
  29185. taurSfw: {
  29186. height: math.unit(10, "meters"),
  29187. weight: math.unit(17500, "kg"),
  29188. name: "Taur",
  29189. image: {
  29190. source: "./media/characters/faey/taur-sfw.svg",
  29191. extra: 1200 / 968,
  29192. bottom: 41 / 1241
  29193. }
  29194. },
  29195. chestmaw: {
  29196. height: math.unit(2.01, "meters"),
  29197. name: "Chestmaw",
  29198. image: {
  29199. source: "./media/characters/faey/chestmaw.svg"
  29200. }
  29201. },
  29202. foot: {
  29203. height: math.unit(2.43, "meters"),
  29204. name: "Foot",
  29205. image: {
  29206. source: "./media/characters/faey/foot.svg"
  29207. }
  29208. },
  29209. jaws: {
  29210. height: math.unit(1.66, "meters"),
  29211. name: "Jaws",
  29212. image: {
  29213. source: "./media/characters/faey/jaws.svg"
  29214. }
  29215. },
  29216. tongues: {
  29217. height: math.unit(2.01, "meters"),
  29218. name: "Tongues",
  29219. image: {
  29220. source: "./media/characters/faey/tongues.svg"
  29221. }
  29222. },
  29223. },
  29224. [
  29225. {
  29226. name: "Small",
  29227. height: math.unit(10, "meters"),
  29228. default: true
  29229. },
  29230. {
  29231. name: "Big",
  29232. height: math.unit(500000, "km")
  29233. },
  29234. ]
  29235. ))
  29236. characterMakers.push(() => makeCharacter(
  29237. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29238. {
  29239. front: {
  29240. height: math.unit(7, "feet"),
  29241. weight: math.unit(275, "lb"),
  29242. name: "Front",
  29243. image: {
  29244. source: "./media/characters/roku/front.svg",
  29245. extra: 903 / 878,
  29246. bottom: 37 / 940
  29247. }
  29248. },
  29249. },
  29250. [
  29251. {
  29252. name: "Normal",
  29253. height: math.unit(7, "feet"),
  29254. default: true
  29255. },
  29256. {
  29257. name: "Macro",
  29258. height: math.unit(500, "feet")
  29259. },
  29260. {
  29261. name: "Megamacro",
  29262. height: math.unit(200, "miles")
  29263. },
  29264. ]
  29265. ))
  29266. characterMakers.push(() => makeCharacter(
  29267. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29268. {
  29269. front: {
  29270. height: math.unit(6 + 2 / 12, "feet"),
  29271. weight: math.unit(150, "lb"),
  29272. name: "Front",
  29273. image: {
  29274. source: "./media/characters/lira/front.svg",
  29275. extra: 1727 / 1605,
  29276. bottom: 26 / 1753
  29277. }
  29278. },
  29279. back: {
  29280. height: math.unit(6 + 2 / 12, "feet"),
  29281. weight: math.unit(150, "lb"),
  29282. name: "Back",
  29283. image: {
  29284. source: "./media/characters/lira/back.svg",
  29285. extra: 1713/1621,
  29286. bottom: 20/1733
  29287. }
  29288. },
  29289. hand: {
  29290. height: math.unit(0.75, "feet"),
  29291. name: "Hand",
  29292. image: {
  29293. source: "./media/characters/lira/hand.svg"
  29294. }
  29295. },
  29296. maw: {
  29297. height: math.unit(0.65, "feet"),
  29298. name: "Maw",
  29299. image: {
  29300. source: "./media/characters/lira/maw.svg"
  29301. }
  29302. },
  29303. pawDigi: {
  29304. height: math.unit(1.6, "feet"),
  29305. name: "Paw Digi",
  29306. image: {
  29307. source: "./media/characters/lira/paw-digi.svg"
  29308. }
  29309. },
  29310. pawPlanti: {
  29311. height: math.unit(1.4, "feet"),
  29312. name: "Paw Planti",
  29313. image: {
  29314. source: "./media/characters/lira/paw-planti.svg"
  29315. }
  29316. },
  29317. },
  29318. [
  29319. {
  29320. name: "Normal",
  29321. height: math.unit(6 + 2 / 12, "feet"),
  29322. default: true
  29323. },
  29324. {
  29325. name: "Macro",
  29326. height: math.unit(100, "feet")
  29327. },
  29328. {
  29329. name: "Macro²",
  29330. height: math.unit(1600, "feet")
  29331. },
  29332. {
  29333. name: "Planetary",
  29334. height: math.unit(20, "earths")
  29335. },
  29336. ]
  29337. ))
  29338. characterMakers.push(() => makeCharacter(
  29339. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29340. {
  29341. front: {
  29342. height: math.unit(6, "feet"),
  29343. weight: math.unit(150, "lb"),
  29344. name: "Front",
  29345. image: {
  29346. source: "./media/characters/hadjet/front.svg",
  29347. extra: 1480 / 1346,
  29348. bottom: 26 / 1506
  29349. }
  29350. },
  29351. frontNsfw: {
  29352. height: math.unit(6, "feet"),
  29353. weight: math.unit(150, "lb"),
  29354. name: "Front (NSFW)",
  29355. image: {
  29356. source: "./media/characters/hadjet/front-nsfw.svg",
  29357. extra: 1440 / 1358,
  29358. bottom: 52 / 1492
  29359. }
  29360. },
  29361. },
  29362. [
  29363. {
  29364. name: "Macro",
  29365. height: math.unit(10, "stories"),
  29366. default: true
  29367. },
  29368. {
  29369. name: "Megamacro",
  29370. height: math.unit(1.5, "miles")
  29371. },
  29372. {
  29373. name: "Megamacro+",
  29374. height: math.unit(5, "miles")
  29375. },
  29376. ]
  29377. ))
  29378. characterMakers.push(() => makeCharacter(
  29379. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29380. {
  29381. side: {
  29382. height: math.unit(106, "feet"),
  29383. weight: math.unit(500, "tonnes"),
  29384. name: "Side",
  29385. image: {
  29386. source: "./media/characters/kodran/side.svg",
  29387. extra: 553 / 480,
  29388. bottom: 33 / 586
  29389. }
  29390. },
  29391. front: {
  29392. height: math.unit(132, "feet"),
  29393. weight: math.unit(500, "tonnes"),
  29394. name: "Front",
  29395. image: {
  29396. source: "./media/characters/kodran/front.svg",
  29397. extra: 667 / 643,
  29398. bottom: 42 / 709
  29399. }
  29400. },
  29401. flying: {
  29402. height: math.unit(350, "feet"),
  29403. weight: math.unit(500, "tonnes"),
  29404. name: "Flying",
  29405. image: {
  29406. source: "./media/characters/kodran/flying.svg"
  29407. }
  29408. },
  29409. foot: {
  29410. height: math.unit(33, "feet"),
  29411. name: "Foot",
  29412. image: {
  29413. source: "./media/characters/kodran/foot.svg"
  29414. }
  29415. },
  29416. footFront: {
  29417. height: math.unit(19, "feet"),
  29418. name: "Foot (Front)",
  29419. image: {
  29420. source: "./media/characters/kodran/foot-front.svg",
  29421. extra: 261 / 261,
  29422. bottom: 91 / 352
  29423. }
  29424. },
  29425. headFront: {
  29426. height: math.unit(53, "feet"),
  29427. name: "Head (Front)",
  29428. image: {
  29429. source: "./media/characters/kodran/head-front.svg"
  29430. }
  29431. },
  29432. headSide: {
  29433. height: math.unit(65, "feet"),
  29434. name: "Head (Side)",
  29435. image: {
  29436. source: "./media/characters/kodran/head-side.svg"
  29437. }
  29438. },
  29439. throat: {
  29440. height: math.unit(79, "feet"),
  29441. name: "Throat",
  29442. image: {
  29443. source: "./media/characters/kodran/throat.svg"
  29444. }
  29445. },
  29446. },
  29447. [
  29448. {
  29449. name: "Large",
  29450. height: math.unit(106, "feet"),
  29451. default: true
  29452. },
  29453. ]
  29454. ))
  29455. characterMakers.push(() => makeCharacter(
  29456. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29457. {
  29458. side: {
  29459. height: math.unit(11, "feet"),
  29460. weight: math.unit(150, "lb"),
  29461. name: "Side",
  29462. image: {
  29463. source: "./media/characters/pyxaron/side.svg",
  29464. extra: 305 / 195,
  29465. bottom: 17 / 322
  29466. }
  29467. },
  29468. },
  29469. [
  29470. {
  29471. name: "Normal",
  29472. height: math.unit(11, "feet"),
  29473. default: true
  29474. },
  29475. ]
  29476. ))
  29477. characterMakers.push(() => makeCharacter(
  29478. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29479. {
  29480. front: {
  29481. height: math.unit(6, "feet"),
  29482. weight: math.unit(150, "lb"),
  29483. name: "Front",
  29484. image: {
  29485. source: "./media/characters/meep/front.svg",
  29486. extra: 88 / 80,
  29487. bottom: 6 / 94
  29488. }
  29489. },
  29490. },
  29491. [
  29492. {
  29493. name: "Fun Sized",
  29494. height: math.unit(2, "inches"),
  29495. default: true
  29496. },
  29497. {
  29498. name: "Friend Sized",
  29499. height: math.unit(8, "inches")
  29500. },
  29501. ]
  29502. ))
  29503. characterMakers.push(() => makeCharacter(
  29504. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29505. {
  29506. front: {
  29507. height: math.unit(15, "feet"),
  29508. weight: math.unit(2500, "lb"),
  29509. name: "Front",
  29510. image: {
  29511. source: "./media/characters/holly-rabbit/front.svg",
  29512. extra: 1433 / 1233,
  29513. bottom: 125 / 1558
  29514. }
  29515. },
  29516. dick: {
  29517. height: math.unit(4.6, "feet"),
  29518. name: "Dick",
  29519. image: {
  29520. source: "./media/characters/holly-rabbit/dick.svg"
  29521. }
  29522. },
  29523. },
  29524. [
  29525. {
  29526. name: "Normal",
  29527. height: math.unit(15, "feet"),
  29528. default: true
  29529. },
  29530. {
  29531. name: "Macro",
  29532. height: math.unit(250, "feet")
  29533. },
  29534. {
  29535. name: "Macro+",
  29536. height: math.unit(2500, "feet")
  29537. },
  29538. ]
  29539. ))
  29540. characterMakers.push(() => makeCharacter(
  29541. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29542. {
  29543. front: {
  29544. height: math.unit(3.02, "meters"),
  29545. weight: math.unit(500, "kg"),
  29546. name: "Front",
  29547. image: {
  29548. source: "./media/characters/drena/front.svg",
  29549. extra: 282 / 243,
  29550. bottom: 8 / 290
  29551. }
  29552. },
  29553. side: {
  29554. height: math.unit(3.02, "meters"),
  29555. weight: math.unit(500, "kg"),
  29556. name: "Side",
  29557. image: {
  29558. source: "./media/characters/drena/side.svg",
  29559. extra: 280 / 245,
  29560. bottom: 10 / 290
  29561. }
  29562. },
  29563. back: {
  29564. height: math.unit(3.02, "meters"),
  29565. weight: math.unit(500, "kg"),
  29566. name: "Back",
  29567. image: {
  29568. source: "./media/characters/drena/back.svg",
  29569. extra: 278 / 243,
  29570. bottom: 2 / 280
  29571. }
  29572. },
  29573. foot: {
  29574. height: math.unit(0.75, "meters"),
  29575. name: "Foot",
  29576. image: {
  29577. source: "./media/characters/drena/foot.svg"
  29578. }
  29579. },
  29580. maw: {
  29581. height: math.unit(0.82, "meters"),
  29582. name: "Maw",
  29583. image: {
  29584. source: "./media/characters/drena/maw.svg"
  29585. }
  29586. },
  29587. eating: {
  29588. height: math.unit(0.75, "meters"),
  29589. name: "Eating",
  29590. image: {
  29591. source: "./media/characters/drena/eating.svg"
  29592. }
  29593. },
  29594. rump: {
  29595. height: math.unit(0.93, "meters"),
  29596. name: "Rump",
  29597. image: {
  29598. source: "./media/characters/drena/rump.svg"
  29599. }
  29600. },
  29601. },
  29602. [
  29603. {
  29604. name: "Normal",
  29605. height: math.unit(3.02, "meters"),
  29606. default: true
  29607. },
  29608. ]
  29609. ))
  29610. characterMakers.push(() => makeCharacter(
  29611. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29612. {
  29613. front: {
  29614. height: math.unit(6 + 4 / 12, "feet"),
  29615. weight: math.unit(250, "lb"),
  29616. name: "Front",
  29617. image: {
  29618. source: "./media/characters/remmyzilla/front.svg",
  29619. extra: 4033 / 3588,
  29620. bottom: 123 / 4156
  29621. }
  29622. },
  29623. back: {
  29624. height: math.unit(6 + 4 / 12, "feet"),
  29625. weight: math.unit(250, "lb"),
  29626. name: "Back",
  29627. image: {
  29628. source: "./media/characters/remmyzilla/back.svg",
  29629. extra: 2687 / 2555,
  29630. bottom: 48 / 2735
  29631. }
  29632. },
  29633. paw: {
  29634. height: math.unit(1.73, "feet"),
  29635. name: "Paw",
  29636. image: {
  29637. source: "./media/characters/remmyzilla/paw.svg"
  29638. }
  29639. },
  29640. maw: {
  29641. height: math.unit(1.73, "feet"),
  29642. name: "Maw",
  29643. image: {
  29644. source: "./media/characters/remmyzilla/maw.svg"
  29645. }
  29646. },
  29647. },
  29648. [
  29649. {
  29650. name: "Normal",
  29651. height: math.unit(6 + 4 / 12, "feet")
  29652. },
  29653. {
  29654. name: "Minimacro",
  29655. height: math.unit(12 + 8 / 12, "feet")
  29656. },
  29657. {
  29658. name: "Normal",
  29659. height: math.unit(640, "feet"),
  29660. default: true
  29661. },
  29662. {
  29663. name: "Megamacro",
  29664. height: math.unit(6400, "feet")
  29665. },
  29666. {
  29667. name: "Gigamacro",
  29668. height: math.unit(64000, "miles")
  29669. },
  29670. ]
  29671. ))
  29672. characterMakers.push(() => makeCharacter(
  29673. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29674. {
  29675. front: {
  29676. height: math.unit(2.5, "meters"),
  29677. weight: math.unit(300, "lb"),
  29678. name: "Front",
  29679. image: {
  29680. source: "./media/characters/lawrence/front.svg",
  29681. extra: 357 / 335,
  29682. bottom: 30 / 387
  29683. }
  29684. },
  29685. back: {
  29686. height: math.unit(2.5, "meters"),
  29687. weight: math.unit(300, "lb"),
  29688. name: "Back",
  29689. image: {
  29690. source: "./media/characters/lawrence/back.svg",
  29691. extra: 357 / 338,
  29692. bottom: 16 / 373
  29693. }
  29694. },
  29695. head: {
  29696. height: math.unit(0.9, "meter"),
  29697. name: "Head",
  29698. image: {
  29699. source: "./media/characters/lawrence/head.svg"
  29700. }
  29701. },
  29702. maw: {
  29703. height: math.unit(0.7, "meter"),
  29704. name: "Maw",
  29705. image: {
  29706. source: "./media/characters/lawrence/maw.svg"
  29707. }
  29708. },
  29709. footBottom: {
  29710. height: math.unit(0.5, "meter"),
  29711. name: "Foot (Bottom)",
  29712. image: {
  29713. source: "./media/characters/lawrence/foot-bottom.svg"
  29714. }
  29715. },
  29716. footTop: {
  29717. height: math.unit(0.5, "meter"),
  29718. name: "Foot (Top)",
  29719. image: {
  29720. source: "./media/characters/lawrence/foot-top.svg"
  29721. }
  29722. },
  29723. },
  29724. [
  29725. {
  29726. name: "Normal",
  29727. height: math.unit(2.5, "meters"),
  29728. default: true
  29729. },
  29730. {
  29731. name: "Macro",
  29732. height: math.unit(95, "meters")
  29733. },
  29734. {
  29735. name: "Megamacro",
  29736. height: math.unit(150, "km")
  29737. },
  29738. ]
  29739. ))
  29740. characterMakers.push(() => makeCharacter(
  29741. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29742. {
  29743. front: {
  29744. height: math.unit(4.2, "meters"),
  29745. name: "Front",
  29746. image: {
  29747. source: "./media/characters/sydney/front.svg",
  29748. extra: 1323 / 1277,
  29749. bottom: 111 / 1434
  29750. }
  29751. },
  29752. },
  29753. [
  29754. {
  29755. name: "Normal",
  29756. height: math.unit(4.2, "meters"),
  29757. default: true
  29758. },
  29759. ]
  29760. ))
  29761. characterMakers.push(() => makeCharacter(
  29762. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29763. {
  29764. back: {
  29765. height: math.unit(201, "feet"),
  29766. name: "Back",
  29767. image: {
  29768. source: "./media/characters/jessica/back.svg",
  29769. extra: 273 / 259,
  29770. bottom: 7 / 280
  29771. }
  29772. },
  29773. },
  29774. [
  29775. {
  29776. name: "Normal",
  29777. height: math.unit(201, "feet"),
  29778. default: true
  29779. },
  29780. {
  29781. name: "Megamacro",
  29782. height: math.unit(8, "miles")
  29783. },
  29784. ]
  29785. ))
  29786. characterMakers.push(() => makeCharacter(
  29787. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29788. {
  29789. side: {
  29790. height: math.unit(5.6, "m"),
  29791. weight: math.unit(8000, "kg"),
  29792. name: "Side",
  29793. image: {
  29794. source: "./media/characters/victoria/side.svg",
  29795. extra: 1542/1229,
  29796. bottom: 124/1666
  29797. }
  29798. },
  29799. maw: {
  29800. height: math.unit(7.14, "feet"),
  29801. name: "Maw",
  29802. image: {
  29803. source: "./media/characters/victoria/maw.svg"
  29804. }
  29805. },
  29806. },
  29807. [
  29808. {
  29809. name: "Normal",
  29810. height: math.unit(5.6, "m"),
  29811. default: true
  29812. },
  29813. ]
  29814. ))
  29815. characterMakers.push(() => makeCharacter(
  29816. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29817. {
  29818. front: {
  29819. height: math.unit(5 + 6 / 12, "feet"),
  29820. name: "Front",
  29821. image: {
  29822. source: "./media/characters/cat/front.svg",
  29823. extra: 1449/1295,
  29824. bottom: 34/1483
  29825. },
  29826. form: "cat",
  29827. default: true
  29828. },
  29829. back: {
  29830. height: math.unit(5 + 6 / 12, "feet"),
  29831. name: "Back",
  29832. image: {
  29833. source: "./media/characters/cat/back.svg",
  29834. extra: 1466/1301,
  29835. bottom: 19/1485
  29836. },
  29837. form: "cat"
  29838. },
  29839. taur: {
  29840. height: math.unit(7, "feet"),
  29841. name: "Taur",
  29842. image: {
  29843. source: "./media/characters/cat/taur.svg",
  29844. extra: 1389/1233,
  29845. bottom: 83/1472
  29846. },
  29847. form: "taur",
  29848. default: true
  29849. },
  29850. lucarioFront: {
  29851. height: math.unit(4, "feet"),
  29852. name: "Lucario (Front)",
  29853. image: {
  29854. source: "./media/characters/cat/lucario-front.svg",
  29855. extra: 1149/1019,
  29856. bottom: 84/1233
  29857. },
  29858. form: "lucario",
  29859. default: true
  29860. },
  29861. lucarioBack: {
  29862. height: math.unit(4, "feet"),
  29863. name: "Lucario (Back)",
  29864. image: {
  29865. source: "./media/characters/cat/lucario-back.svg",
  29866. extra: 1190/1059,
  29867. bottom: 33/1223
  29868. },
  29869. form: "lucario"
  29870. },
  29871. megaLucario: {
  29872. height: math.unit(4, "feet"),
  29873. name: "Mega Lucario",
  29874. image: {
  29875. source: "./media/characters/cat/mega-lucario.svg",
  29876. extra: 1515 / 1319,
  29877. bottom: 63 / 1578
  29878. },
  29879. form: "lucario"
  29880. },
  29881. nickit: {
  29882. height: math.unit(2, "feet"),
  29883. name: "Nickit",
  29884. image: {
  29885. source: "./media/characters/cat/nickit.svg",
  29886. extra: 1980 / 1585,
  29887. bottom: 102 / 2082
  29888. },
  29889. form: "nickit",
  29890. default: true
  29891. },
  29892. lopunnyFront: {
  29893. height: math.unit(5, "feet"),
  29894. name: "Lopunny (Front)",
  29895. image: {
  29896. source: "./media/characters/cat/lopunny-front.svg",
  29897. extra: 1782 / 1469,
  29898. bottom: 38 / 1820
  29899. },
  29900. form: "lopunny",
  29901. default: true
  29902. },
  29903. lopunnyBack: {
  29904. height: math.unit(5, "feet"),
  29905. name: "Lopunny (Back)",
  29906. image: {
  29907. source: "./media/characters/cat/lopunny-back.svg",
  29908. extra: 1660 / 1490,
  29909. bottom: 25 / 1685
  29910. },
  29911. form: "lopunny"
  29912. },
  29913. },
  29914. [
  29915. {
  29916. name: "Really small",
  29917. height: math.unit(1, "nm")
  29918. },
  29919. {
  29920. name: "Micro",
  29921. height: math.unit(5, "inches")
  29922. },
  29923. {
  29924. name: "Normal",
  29925. height: math.unit(5 + 6 / 12, "feet"),
  29926. default: true
  29927. },
  29928. {
  29929. name: "Macro",
  29930. height: math.unit(50, "feet")
  29931. },
  29932. {
  29933. name: "Macro+",
  29934. height: math.unit(150, "feet")
  29935. },
  29936. {
  29937. name: "Megamacro",
  29938. height: math.unit(100, "miles")
  29939. },
  29940. ]
  29941. ))
  29942. characterMakers.push(() => makeCharacter(
  29943. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29944. {
  29945. front: {
  29946. height: math.unit(63.4, "meters"),
  29947. weight: math.unit(3.28349e+6, "kilograms"),
  29948. name: "Front",
  29949. image: {
  29950. source: "./media/characters/kirina-violet/front.svg",
  29951. extra: 2812 / 2725,
  29952. bottom: 0 / 2812
  29953. }
  29954. },
  29955. back: {
  29956. height: math.unit(63.4, "meters"),
  29957. weight: math.unit(3.28349e+6, "kilograms"),
  29958. name: "Back",
  29959. image: {
  29960. source: "./media/characters/kirina-violet/back.svg",
  29961. extra: 2812 / 2725,
  29962. bottom: 0 / 2812
  29963. }
  29964. },
  29965. mouth: {
  29966. height: math.unit(4.35, "meters"),
  29967. name: "Mouth",
  29968. image: {
  29969. source: "./media/characters/kirina-violet/mouth.svg"
  29970. }
  29971. },
  29972. paw: {
  29973. height: math.unit(5.6, "meters"),
  29974. name: "Paw",
  29975. image: {
  29976. source: "./media/characters/kirina-violet/paw.svg"
  29977. }
  29978. },
  29979. tail: {
  29980. height: math.unit(18, "meters"),
  29981. name: "Tail",
  29982. image: {
  29983. source: "./media/characters/kirina-violet/tail.svg"
  29984. }
  29985. },
  29986. },
  29987. [
  29988. {
  29989. name: "Macro",
  29990. height: math.unit(63.4, "meters"),
  29991. default: true
  29992. },
  29993. ]
  29994. ))
  29995. characterMakers.push(() => makeCharacter(
  29996. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29997. {
  29998. front: {
  29999. height: math.unit(75, "feet"),
  30000. name: "Front",
  30001. image: {
  30002. source: "./media/characters/cat-gigachu/front.svg",
  30003. extra: 1239/1027,
  30004. bottom: 32/1271
  30005. }
  30006. },
  30007. back: {
  30008. height: math.unit(75, "feet"),
  30009. name: "Back",
  30010. image: {
  30011. source: "./media/characters/cat-gigachu/back.svg",
  30012. extra: 1229/1030,
  30013. bottom: 9/1238
  30014. }
  30015. },
  30016. },
  30017. [
  30018. {
  30019. name: "Dynamax",
  30020. height: math.unit(75, "feet"),
  30021. default: true
  30022. },
  30023. ]
  30024. ))
  30025. characterMakers.push(() => makeCharacter(
  30026. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30027. {
  30028. front: {
  30029. height: math.unit(6, "feet"),
  30030. weight: math.unit(150, "lb"),
  30031. name: "Front",
  30032. image: {
  30033. source: "./media/characters/sfaiyan/front.svg",
  30034. extra: 999 / 978,
  30035. bottom: 5 / 1004
  30036. }
  30037. },
  30038. },
  30039. [
  30040. {
  30041. name: "Normal",
  30042. height: math.unit(1.82, "meters")
  30043. },
  30044. {
  30045. name: "Giant",
  30046. height: math.unit(2.27, "km"),
  30047. default: true
  30048. },
  30049. ]
  30050. ))
  30051. characterMakers.push(() => makeCharacter(
  30052. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30053. {
  30054. front: {
  30055. height: math.unit(179, "cm"),
  30056. weight: math.unit(100, "kg"),
  30057. name: "Front",
  30058. image: {
  30059. source: "./media/characters/raunehkeli/front.svg",
  30060. extra: 1934 / 1926,
  30061. bottom: 0 / 1934
  30062. }
  30063. },
  30064. },
  30065. [
  30066. {
  30067. name: "Normal",
  30068. height: math.unit(179, "cm")
  30069. },
  30070. {
  30071. name: "Maximum",
  30072. height: math.unit(575, "meters"),
  30073. default: true
  30074. },
  30075. ]
  30076. ))
  30077. characterMakers.push(() => makeCharacter(
  30078. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30079. {
  30080. front: {
  30081. height: math.unit(6, "feet"),
  30082. weight: math.unit(150, "lb"),
  30083. name: "Front",
  30084. image: {
  30085. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30086. extra: 2625 / 2518,
  30087. bottom: 60 / 2685
  30088. }
  30089. },
  30090. },
  30091. [
  30092. {
  30093. name: "Normal",
  30094. height: math.unit(6 + 2 / 12, "feet")
  30095. },
  30096. {
  30097. name: "Macro",
  30098. height: math.unit(1180, "feet"),
  30099. default: true
  30100. },
  30101. ]
  30102. ))
  30103. characterMakers.push(() => makeCharacter(
  30104. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30105. {
  30106. front: {
  30107. height: math.unit(5 + 6 / 12, "feet"),
  30108. weight: math.unit(108, "lb"),
  30109. name: "Front",
  30110. image: {
  30111. source: "./media/characters/lilith-zott/front.svg",
  30112. extra: 2510 / 2238,
  30113. bottom: 100 / 2610
  30114. }
  30115. },
  30116. frontDressed: {
  30117. height: math.unit(5 + 6 / 12, "feet"),
  30118. weight: math.unit(108, "lb"),
  30119. name: "Front (Dressed)",
  30120. image: {
  30121. source: "./media/characters/lilith-zott/front-dressed.svg",
  30122. extra: 2510 / 2238,
  30123. bottom: 100 / 2610
  30124. }
  30125. },
  30126. },
  30127. [
  30128. {
  30129. name: "Normal",
  30130. height: math.unit(5 + 6 / 12, "feet")
  30131. },
  30132. {
  30133. name: "Macro",
  30134. height: math.unit(1030, "feet"),
  30135. default: true
  30136. },
  30137. ]
  30138. ))
  30139. characterMakers.push(() => makeCharacter(
  30140. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30141. {
  30142. front: {
  30143. height: math.unit(6, "feet"),
  30144. weight: math.unit(150, "lb"),
  30145. name: "Front",
  30146. image: {
  30147. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30148. extra: 2567 / 2435,
  30149. bottom: 39 / 2606
  30150. }
  30151. },
  30152. frontSuper: {
  30153. height: math.unit(6, "feet"),
  30154. name: "Front (Super)",
  30155. image: {
  30156. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30157. extra: 2567 / 2435,
  30158. bottom: 39 / 2606
  30159. }
  30160. },
  30161. },
  30162. [
  30163. {
  30164. name: "Normal",
  30165. height: math.unit(5 + 10 / 12, "feet")
  30166. },
  30167. {
  30168. name: "Macro",
  30169. height: math.unit(1100, "feet"),
  30170. default: true
  30171. },
  30172. ]
  30173. ))
  30174. characterMakers.push(() => makeCharacter(
  30175. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30176. {
  30177. front: {
  30178. height: math.unit(100, "miles"),
  30179. name: "Front",
  30180. image: {
  30181. source: "./media/characters/sona/front.svg",
  30182. extra: 2433 / 2201,
  30183. bottom: 53 / 2486
  30184. }
  30185. },
  30186. foot: {
  30187. height: math.unit(16.1, "miles"),
  30188. name: "Foot",
  30189. image: {
  30190. source: "./media/characters/sona/foot.svg"
  30191. }
  30192. },
  30193. },
  30194. [
  30195. {
  30196. name: "Macro",
  30197. height: math.unit(100, "miles"),
  30198. default: true
  30199. },
  30200. ]
  30201. ))
  30202. characterMakers.push(() => makeCharacter(
  30203. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30204. {
  30205. front: {
  30206. height: math.unit(6, "feet"),
  30207. weight: math.unit(150, "lb"),
  30208. name: "Front",
  30209. image: {
  30210. source: "./media/characters/bailey/front.svg",
  30211. extra: 1778 / 1724,
  30212. bottom: 30 / 1808
  30213. }
  30214. },
  30215. },
  30216. [
  30217. {
  30218. name: "Micro",
  30219. height: math.unit(4, "inches")
  30220. },
  30221. {
  30222. name: "Normal",
  30223. height: math.unit(5 + 5 / 12, "feet"),
  30224. default: true
  30225. },
  30226. {
  30227. name: "Macro",
  30228. height: math.unit(250, "feet")
  30229. },
  30230. {
  30231. name: "Megamacro",
  30232. height: math.unit(100, "miles")
  30233. },
  30234. ]
  30235. ))
  30236. characterMakers.push(() => makeCharacter(
  30237. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30238. {
  30239. front: {
  30240. height: math.unit(5 + 2 / 12, "feet"),
  30241. weight: math.unit(120, "lb"),
  30242. name: "Front",
  30243. image: {
  30244. source: "./media/characters/snaps/front.svg",
  30245. extra: 2370 / 2177,
  30246. bottom: 48 / 2418
  30247. }
  30248. },
  30249. back: {
  30250. height: math.unit(5 + 2 / 12, "feet"),
  30251. weight: math.unit(120, "lb"),
  30252. name: "Back",
  30253. image: {
  30254. source: "./media/characters/snaps/back.svg",
  30255. extra: 2408 / 2258,
  30256. bottom: 15 / 2423
  30257. }
  30258. },
  30259. },
  30260. [
  30261. {
  30262. name: "Micro",
  30263. height: math.unit(9, "inches")
  30264. },
  30265. {
  30266. name: "Normal",
  30267. height: math.unit(5 + 2 / 12, "feet"),
  30268. default: true
  30269. },
  30270. {
  30271. name: "Mini Macro",
  30272. height: math.unit(10, "feet")
  30273. },
  30274. ]
  30275. ))
  30276. characterMakers.push(() => makeCharacter(
  30277. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30278. {
  30279. front: {
  30280. height: math.unit(1.8, "meters"),
  30281. weight: math.unit(85, "kg"),
  30282. name: "Front",
  30283. image: {
  30284. source: "./media/characters/azteck/front.svg",
  30285. extra: 2815 / 2625,
  30286. bottom: 89 / 2904
  30287. }
  30288. },
  30289. back: {
  30290. height: math.unit(1.8, "meters"),
  30291. weight: math.unit(85, "kg"),
  30292. name: "Back",
  30293. image: {
  30294. source: "./media/characters/azteck/back.svg",
  30295. extra: 2856 / 2648,
  30296. bottom: 85 / 2941
  30297. }
  30298. },
  30299. frontDressed: {
  30300. height: math.unit(1.8, "meters"),
  30301. weight: math.unit(85, "kg"),
  30302. name: "Front (Dressed)",
  30303. image: {
  30304. source: "./media/characters/azteck/front-dressed.svg",
  30305. extra: 2147 / 2003,
  30306. bottom: 68 / 2215
  30307. }
  30308. },
  30309. head: {
  30310. height: math.unit(0.47, "meters"),
  30311. weight: math.unit(85, "kg"),
  30312. name: "Head",
  30313. image: {
  30314. source: "./media/characters/azteck/head.svg"
  30315. }
  30316. },
  30317. },
  30318. [
  30319. {
  30320. name: "Bite sized",
  30321. height: math.unit(16, "cm")
  30322. },
  30323. {
  30324. name: "Normal",
  30325. height: math.unit(1.8, "meters"),
  30326. default: true
  30327. },
  30328. ]
  30329. ))
  30330. characterMakers.push(() => makeCharacter(
  30331. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30332. {
  30333. front: {
  30334. height: math.unit(6, "feet"),
  30335. weight: math.unit(150, "lb"),
  30336. name: "Front",
  30337. image: {
  30338. source: "./media/characters/pidge/front.svg",
  30339. extra: 1936/1820,
  30340. bottom: 0/1936
  30341. }
  30342. },
  30343. back: {
  30344. height: math.unit(6, "feet"),
  30345. weight: math.unit(150, "lb"),
  30346. name: "Back",
  30347. image: {
  30348. source: "./media/characters/pidge/back.svg",
  30349. extra: 1938/1843,
  30350. bottom: 0/1938
  30351. }
  30352. },
  30353. casual: {
  30354. height: math.unit(6, "feet"),
  30355. weight: math.unit(150, "lb"),
  30356. name: "Casual",
  30357. image: {
  30358. source: "./media/characters/pidge/casual.svg",
  30359. extra: 1936/1820,
  30360. bottom: 0/1936
  30361. }
  30362. },
  30363. tech: {
  30364. height: math.unit(6, "feet"),
  30365. weight: math.unit(150, "lb"),
  30366. name: "Tech",
  30367. image: {
  30368. source: "./media/characters/pidge/tech.svg",
  30369. extra: 1802/1682,
  30370. bottom: 0/1802
  30371. }
  30372. },
  30373. head: {
  30374. height: math.unit(1.61, "feet"),
  30375. name: "Head",
  30376. image: {
  30377. source: "./media/characters/pidge/head.svg"
  30378. }
  30379. },
  30380. collar: {
  30381. height: math.unit(0.82, "feet"),
  30382. name: "Collar",
  30383. image: {
  30384. source: "./media/characters/pidge/collar.svg"
  30385. }
  30386. },
  30387. },
  30388. [
  30389. {
  30390. name: "Macro",
  30391. height: math.unit(2, "mile"),
  30392. default: true
  30393. },
  30394. {
  30395. name: "PUPPY",
  30396. height: math.unit(20, "miles")
  30397. },
  30398. ]
  30399. ))
  30400. characterMakers.push(() => makeCharacter(
  30401. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30402. {
  30403. front: {
  30404. height: math.unit(6, "feet"),
  30405. weight: math.unit(150, "lb"),
  30406. name: "Front",
  30407. image: {
  30408. source: "./media/characters/en/front.svg",
  30409. extra: 1697 / 1563,
  30410. bottom: 103 / 1800
  30411. }
  30412. },
  30413. back: {
  30414. height: math.unit(6, "feet"),
  30415. weight: math.unit(150, "lb"),
  30416. name: "Back",
  30417. image: {
  30418. source: "./media/characters/en/back.svg",
  30419. extra: 1700 / 1570,
  30420. bottom: 51 / 1751
  30421. }
  30422. },
  30423. frontDressed: {
  30424. height: math.unit(6, "feet"),
  30425. weight: math.unit(150, "lb"),
  30426. name: "Front (Dressed)",
  30427. image: {
  30428. source: "./media/characters/en/front-dressed.svg",
  30429. extra: 1697 / 1563,
  30430. bottom: 103 / 1800
  30431. }
  30432. },
  30433. backDressed: {
  30434. height: math.unit(6, "feet"),
  30435. weight: math.unit(150, "lb"),
  30436. name: "Back (Dressed)",
  30437. image: {
  30438. source: "./media/characters/en/back-dressed.svg",
  30439. extra: 1700 / 1570,
  30440. bottom: 51 / 1751
  30441. }
  30442. },
  30443. },
  30444. [
  30445. {
  30446. name: "Macro",
  30447. height: math.unit(210, "feet"),
  30448. default: true
  30449. },
  30450. ]
  30451. ))
  30452. characterMakers.push(() => makeCharacter(
  30453. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30454. {
  30455. front: {
  30456. height: math.unit(6, "feet"),
  30457. weight: math.unit(150, "lb"),
  30458. name: "Front",
  30459. image: {
  30460. source: "./media/characters/haze-orris/front.svg",
  30461. extra: 3975 / 3525,
  30462. bottom: 137 / 4112
  30463. }
  30464. },
  30465. },
  30466. [
  30467. {
  30468. name: "Micro",
  30469. height: math.unit(150, "mm"),
  30470. default: true
  30471. },
  30472. ]
  30473. ))
  30474. characterMakers.push(() => makeCharacter(
  30475. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30476. {
  30477. front: {
  30478. height: math.unit(6, "feet"),
  30479. weight: math.unit(150, "lb"),
  30480. name: "Front",
  30481. image: {
  30482. source: "./media/characters/casselene-yaro/front.svg",
  30483. extra: 4721 / 4541,
  30484. bottom: 82 / 4803
  30485. }
  30486. },
  30487. back: {
  30488. height: math.unit(6, "feet"),
  30489. weight: math.unit(150, "lb"),
  30490. name: "Back",
  30491. image: {
  30492. source: "./media/characters/casselene-yaro/back.svg",
  30493. extra: 4569 / 4377,
  30494. bottom: 69 / 4638
  30495. }
  30496. },
  30497. dressed: {
  30498. height: math.unit(6, "feet"),
  30499. weight: math.unit(150, "lb"),
  30500. name: "Dressed",
  30501. image: {
  30502. source: "./media/characters/casselene-yaro/dressed.svg",
  30503. extra: 4721 / 4541,
  30504. bottom: 82 / 4803
  30505. }
  30506. },
  30507. maw: {
  30508. height: math.unit(1, "feet"),
  30509. name: "Maw",
  30510. image: {
  30511. source: "./media/characters/casselene-yaro/maw.svg"
  30512. }
  30513. },
  30514. },
  30515. [
  30516. {
  30517. name: "Macro",
  30518. height: math.unit(190, "feet"),
  30519. default: true
  30520. },
  30521. ]
  30522. ))
  30523. characterMakers.push(() => makeCharacter(
  30524. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30525. {
  30526. front: {
  30527. height: math.unit(10, "feet"),
  30528. weight: math.unit(15015, "lb"),
  30529. name: "Front",
  30530. image: {
  30531. source: "./media/characters/platine/front.svg",
  30532. extra: 1428/1353,
  30533. bottom: 31/1459
  30534. }
  30535. },
  30536. },
  30537. [
  30538. {
  30539. name: "Normal",
  30540. height: math.unit(10, "feet"),
  30541. default: true
  30542. },
  30543. {
  30544. name: "Macro",
  30545. height: math.unit(100, "feet")
  30546. },
  30547. {
  30548. name: "Megamacro",
  30549. height: math.unit(1000, "feet")
  30550. },
  30551. ]
  30552. ))
  30553. characterMakers.push(() => makeCharacter(
  30554. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30555. {
  30556. front: {
  30557. height: math.unit(15 + 5 / 12, "feet"),
  30558. weight: math.unit(4600, "lb"),
  30559. name: "Front",
  30560. image: {
  30561. source: "./media/characters/neapolitan-ananassa/front.svg",
  30562. extra: 2903 / 2736,
  30563. bottom: 0 / 2903
  30564. }
  30565. },
  30566. side: {
  30567. height: math.unit(15 + 5 / 12, "feet"),
  30568. weight: math.unit(4600, "lb"),
  30569. name: "Side",
  30570. image: {
  30571. source: "./media/characters/neapolitan-ananassa/side.svg",
  30572. extra: 2925 / 2719,
  30573. bottom: 0 / 2925
  30574. }
  30575. },
  30576. back: {
  30577. height: math.unit(15 + 5 / 12, "feet"),
  30578. weight: math.unit(4600, "lb"),
  30579. name: "Back",
  30580. image: {
  30581. source: "./media/characters/neapolitan-ananassa/back.svg",
  30582. extra: 2903 / 2736,
  30583. bottom: 0 / 2903
  30584. }
  30585. },
  30586. },
  30587. [
  30588. {
  30589. name: "Normal",
  30590. height: math.unit(15 + 5 / 12, "feet"),
  30591. default: true
  30592. },
  30593. {
  30594. name: "Post-Millenium",
  30595. height: math.unit(35 + 5 / 12, "feet")
  30596. },
  30597. {
  30598. name: "Post-Era",
  30599. height: math.unit(450 + 5 / 12, "feet")
  30600. },
  30601. ]
  30602. ))
  30603. characterMakers.push(() => makeCharacter(
  30604. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30605. {
  30606. front: {
  30607. height: math.unit(300, "meters"),
  30608. weight: math.unit(125000, "tonnes"),
  30609. name: "Front",
  30610. image: {
  30611. source: "./media/characters/pazuzu/front.svg",
  30612. extra: 877 / 794,
  30613. bottom: 47 / 924
  30614. }
  30615. },
  30616. },
  30617. [
  30618. {
  30619. name: "Macro",
  30620. height: math.unit(300, "meters"),
  30621. default: true
  30622. },
  30623. ]
  30624. ))
  30625. characterMakers.push(() => makeCharacter(
  30626. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30627. {
  30628. side: {
  30629. height: math.unit(10 + 7 / 12, "feet"),
  30630. weight: math.unit(2.5, "tons"),
  30631. name: "Side",
  30632. image: {
  30633. source: "./media/characters/aasha/side.svg",
  30634. extra: 1345 / 1245,
  30635. bottom: 111 / 1456
  30636. }
  30637. },
  30638. back: {
  30639. height: math.unit(10 + 7 / 12, "feet"),
  30640. weight: math.unit(2.5, "tons"),
  30641. name: "Back",
  30642. image: {
  30643. source: "./media/characters/aasha/back.svg",
  30644. extra: 1133 / 1057,
  30645. bottom: 257 / 1390
  30646. }
  30647. },
  30648. },
  30649. [
  30650. {
  30651. name: "Normal",
  30652. height: math.unit(10 + 7 / 12, "feet"),
  30653. default: true
  30654. },
  30655. ]
  30656. ))
  30657. characterMakers.push(() => makeCharacter(
  30658. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30659. {
  30660. front: {
  30661. height: math.unit(6 + 3 / 12, "feet"),
  30662. name: "Front",
  30663. image: {
  30664. source: "./media/characters/nevan/front.svg",
  30665. extra: 704 / 704,
  30666. bottom: 28 / 732
  30667. }
  30668. },
  30669. back: {
  30670. height: math.unit(6 + 3 / 12, "feet"),
  30671. name: "Back",
  30672. image: {
  30673. source: "./media/characters/nevan/back.svg",
  30674. extra: 714 / 714,
  30675. bottom: 21 / 735
  30676. }
  30677. },
  30678. frontFlaccid: {
  30679. height: math.unit(6 + 3 / 12, "feet"),
  30680. name: "Front (Flaccid)",
  30681. image: {
  30682. source: "./media/characters/nevan/front-flaccid.svg",
  30683. extra: 704 / 704,
  30684. bottom: 28 / 732
  30685. }
  30686. },
  30687. frontErect: {
  30688. height: math.unit(6 + 3 / 12, "feet"),
  30689. name: "Front (Erect)",
  30690. image: {
  30691. source: "./media/characters/nevan/front-erect.svg",
  30692. extra: 704 / 704,
  30693. bottom: 28 / 732
  30694. }
  30695. },
  30696. backFlaccid: {
  30697. height: math.unit(6 + 3 / 12, "feet"),
  30698. name: "Back (Flaccid)",
  30699. image: {
  30700. source: "./media/characters/nevan/back-flaccid.svg",
  30701. extra: 714 / 714,
  30702. bottom: 21 / 735
  30703. }
  30704. },
  30705. },
  30706. [
  30707. {
  30708. name: "Normal",
  30709. height: math.unit(6 + 3 / 12, "feet"),
  30710. default: true
  30711. },
  30712. ]
  30713. ))
  30714. characterMakers.push(() => makeCharacter(
  30715. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30716. {
  30717. front: {
  30718. height: math.unit(4, "feet"),
  30719. name: "Front",
  30720. image: {
  30721. source: "./media/characters/arhan/front.svg",
  30722. extra: 3368 / 3133,
  30723. bottom: 0 / 3368
  30724. }
  30725. },
  30726. side: {
  30727. height: math.unit(4, "feet"),
  30728. name: "Side",
  30729. image: {
  30730. source: "./media/characters/arhan/side.svg",
  30731. extra: 3347 / 3105,
  30732. bottom: 0 / 3347
  30733. }
  30734. },
  30735. tongue: {
  30736. height: math.unit(1.42, "feet"),
  30737. name: "Tongue",
  30738. image: {
  30739. source: "./media/characters/arhan/tongue.svg"
  30740. }
  30741. },
  30742. head: {
  30743. height: math.unit(0.85, "feet"),
  30744. name: "Head",
  30745. image: {
  30746. source: "./media/characters/arhan/head.svg"
  30747. }
  30748. },
  30749. },
  30750. [
  30751. {
  30752. name: "Normal",
  30753. height: math.unit(4, "feet"),
  30754. default: true
  30755. },
  30756. ]
  30757. ))
  30758. characterMakers.push(() => makeCharacter(
  30759. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30760. {
  30761. front: {
  30762. height: math.unit(5 + 7.5 / 12, "feet"),
  30763. weight: math.unit(120, "lb"),
  30764. name: "Front",
  30765. image: {
  30766. source: "./media/characters/digi-duncan/front.svg",
  30767. extra: 330 / 326,
  30768. bottom: 16 / 346
  30769. }
  30770. },
  30771. side: {
  30772. height: math.unit(5 + 7.5 / 12, "feet"),
  30773. weight: math.unit(120, "lb"),
  30774. name: "Side",
  30775. image: {
  30776. source: "./media/characters/digi-duncan/side.svg",
  30777. extra: 341 / 337,
  30778. bottom: 1 / 342
  30779. }
  30780. },
  30781. back: {
  30782. height: math.unit(5 + 7.5 / 12, "feet"),
  30783. weight: math.unit(120, "lb"),
  30784. name: "Back",
  30785. image: {
  30786. source: "./media/characters/digi-duncan/back.svg",
  30787. extra: 330 / 326,
  30788. bottom: 12 / 342
  30789. }
  30790. },
  30791. },
  30792. [
  30793. {
  30794. name: "Speck",
  30795. height: math.unit(0.25, "mm")
  30796. },
  30797. {
  30798. name: "Micro",
  30799. height: math.unit(5, "mm")
  30800. },
  30801. {
  30802. name: "Tiny",
  30803. height: math.unit(0.5, "inches"),
  30804. default: true
  30805. },
  30806. {
  30807. name: "Human",
  30808. height: math.unit(5 + 7.5 / 12, "feet")
  30809. },
  30810. {
  30811. name: "Minigiant",
  30812. height: math.unit(8 + 5.25, "feet")
  30813. },
  30814. {
  30815. name: "Giant",
  30816. height: math.unit(2000, "feet")
  30817. },
  30818. {
  30819. name: "Mega",
  30820. height: math.unit(371.1, "miles")
  30821. },
  30822. ]
  30823. ))
  30824. characterMakers.push(() => makeCharacter(
  30825. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30826. {
  30827. front: {
  30828. height: math.unit(2, "meters"),
  30829. weight: math.unit(350, "kg"),
  30830. name: "Front",
  30831. image: {
  30832. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30833. extra: 898 / 838,
  30834. bottom: 9 / 907
  30835. }
  30836. },
  30837. },
  30838. [
  30839. {
  30840. name: "Micro",
  30841. height: math.unit(8, "meters")
  30842. },
  30843. {
  30844. name: "Normal",
  30845. height: math.unit(50, "meters"),
  30846. default: true
  30847. },
  30848. {
  30849. name: "Macro",
  30850. height: math.unit(500, "meters")
  30851. },
  30852. ]
  30853. ))
  30854. characterMakers.push(() => makeCharacter(
  30855. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30856. {
  30857. front: {
  30858. height: math.unit(6 + 6 / 12, "feet"),
  30859. name: "Front",
  30860. image: {
  30861. source: "./media/characters/khardesh/front.svg",
  30862. extra: 1788/1596,
  30863. bottom: 66/1854
  30864. }
  30865. },
  30866. back: {
  30867. height: math.unit(6 + 6 / 12, "feet"),
  30868. name: "Back",
  30869. image: {
  30870. source: "./media/characters/khardesh/back.svg",
  30871. extra: 1781/1584,
  30872. bottom: 68/1849
  30873. }
  30874. },
  30875. },
  30876. [
  30877. {
  30878. name: "Normal",
  30879. height: math.unit(6 + 6 / 12, "feet"),
  30880. default: true
  30881. },
  30882. {
  30883. name: "Normal+",
  30884. height: math.unit(4, "meters")
  30885. },
  30886. {
  30887. name: "Macro",
  30888. height: math.unit(50, "meters")
  30889. },
  30890. {
  30891. name: "Macro+",
  30892. height: math.unit(100, "meters")
  30893. },
  30894. {
  30895. name: "Megamacro",
  30896. height: math.unit(20, "km")
  30897. },
  30898. ]
  30899. ))
  30900. characterMakers.push(() => makeCharacter(
  30901. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30902. {
  30903. front: {
  30904. height: math.unit(6, "feet"),
  30905. weight: math.unit(150, "lb"),
  30906. name: "Front",
  30907. image: {
  30908. source: "./media/characters/kosho/front.svg",
  30909. extra: 1847 / 1847,
  30910. bottom: 86 / 1933
  30911. }
  30912. },
  30913. },
  30914. [
  30915. {
  30916. name: "Second-stage micro",
  30917. height: math.unit(0.5, "inches")
  30918. },
  30919. {
  30920. name: "First-stage micro",
  30921. height: math.unit(6, "inches")
  30922. },
  30923. {
  30924. name: "Normal",
  30925. height: math.unit(6, "feet"),
  30926. default: true
  30927. },
  30928. {
  30929. name: "First-stage macro",
  30930. height: math.unit(72, "feet")
  30931. },
  30932. {
  30933. name: "Second-stage macro",
  30934. height: math.unit(864, "feet")
  30935. },
  30936. ]
  30937. ))
  30938. characterMakers.push(() => makeCharacter(
  30939. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30940. {
  30941. normal: {
  30942. height: math.unit(4 + 6 / 12, "feet"),
  30943. name: "Normal",
  30944. image: {
  30945. source: "./media/characters/hydra/normal.svg",
  30946. extra: 2833 / 2634,
  30947. bottom: 68 / 2901
  30948. }
  30949. },
  30950. smol: {
  30951. height: math.unit(0.705, "inches"),
  30952. name: "Smol",
  30953. image: {
  30954. source: "./media/characters/hydra/smol.svg",
  30955. extra: 2715 / 2540,
  30956. bottom: 0 / 2715
  30957. }
  30958. },
  30959. },
  30960. [
  30961. {
  30962. name: "Normal",
  30963. height: math.unit(4 + 6 / 12, "feet"),
  30964. default: true
  30965. }
  30966. ]
  30967. ))
  30968. characterMakers.push(() => makeCharacter(
  30969. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30970. {
  30971. front: {
  30972. height: math.unit(0.6, "cm"),
  30973. name: "Front",
  30974. image: {
  30975. source: "./media/characters/daz/front.svg",
  30976. extra: 1682 / 1164,
  30977. bottom: 42 / 1724
  30978. }
  30979. },
  30980. },
  30981. [
  30982. {
  30983. name: "Normal",
  30984. height: math.unit(0.6, "cm"),
  30985. default: true
  30986. },
  30987. ]
  30988. ))
  30989. characterMakers.push(() => makeCharacter(
  30990. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30991. {
  30992. front: {
  30993. height: math.unit(6, "feet"),
  30994. weight: math.unit(235, "lb"),
  30995. name: "Front",
  30996. image: {
  30997. source: "./media/characters/theo-pangolin/front.svg",
  30998. extra: 1996 / 1969,
  30999. bottom: 115 / 2111
  31000. }
  31001. },
  31002. back: {
  31003. height: math.unit(6, "feet"),
  31004. weight: math.unit(235, "lb"),
  31005. name: "Back",
  31006. image: {
  31007. source: "./media/characters/theo-pangolin/back.svg",
  31008. extra: 1979 / 1979,
  31009. bottom: 40 / 2019
  31010. }
  31011. },
  31012. feral: {
  31013. height: math.unit(2, "feet"),
  31014. weight: math.unit(30, "lb"),
  31015. name: "Feral",
  31016. image: {
  31017. source: "./media/characters/theo-pangolin/feral.svg",
  31018. extra: 803 / 791,
  31019. bottom: 181 / 984
  31020. }
  31021. },
  31022. footFive: {
  31023. height: math.unit(1.43, "feet"),
  31024. name: "Foot (Five Toes)",
  31025. image: {
  31026. source: "./media/characters/theo-pangolin/foot-five.svg"
  31027. }
  31028. },
  31029. footFour: {
  31030. height: math.unit(1.43, "feet"),
  31031. name: "Foot (Four Toes)",
  31032. image: {
  31033. source: "./media/characters/theo-pangolin/foot-four.svg"
  31034. }
  31035. },
  31036. handFour: {
  31037. height: math.unit(0.81, "feet"),
  31038. name: "Hand (Four Fingers)",
  31039. image: {
  31040. source: "./media/characters/theo-pangolin/hand-four.svg"
  31041. }
  31042. },
  31043. handThree: {
  31044. height: math.unit(0.81, "feet"),
  31045. name: "Hand (Three Fingers)",
  31046. image: {
  31047. source: "./media/characters/theo-pangolin/hand-three.svg"
  31048. }
  31049. },
  31050. headFront: {
  31051. height: math.unit(1.37, "feet"),
  31052. name: "Head (Front)",
  31053. image: {
  31054. source: "./media/characters/theo-pangolin/head-front.svg"
  31055. }
  31056. },
  31057. headSide: {
  31058. height: math.unit(1.43, "feet"),
  31059. name: "Head (Side)",
  31060. image: {
  31061. source: "./media/characters/theo-pangolin/head-side.svg"
  31062. }
  31063. },
  31064. tongue: {
  31065. height: math.unit(2.29, "feet"),
  31066. name: "Tongue",
  31067. image: {
  31068. source: "./media/characters/theo-pangolin/tongue.svg"
  31069. }
  31070. },
  31071. },
  31072. [
  31073. {
  31074. name: "Normal",
  31075. height: math.unit(6, "feet")
  31076. },
  31077. {
  31078. name: "Macro",
  31079. height: math.unit(400, "feet"),
  31080. default: true
  31081. },
  31082. ]
  31083. ))
  31084. characterMakers.push(() => makeCharacter(
  31085. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31086. {
  31087. front: {
  31088. height: math.unit(6, "inches"),
  31089. weight: math.unit(0.036, "kg"),
  31090. name: "Front",
  31091. image: {
  31092. source: "./media/characters/renée/front.svg",
  31093. extra: 900 / 886,
  31094. bottom: 8 / 908
  31095. }
  31096. },
  31097. },
  31098. [
  31099. {
  31100. name: "Nano",
  31101. height: math.unit(1, "nm")
  31102. },
  31103. {
  31104. name: "Micro",
  31105. height: math.unit(1, "mm")
  31106. },
  31107. {
  31108. name: "Normal",
  31109. height: math.unit(6, "inches")
  31110. },
  31111. {
  31112. name: "Macro",
  31113. height: math.unit(2000, "feet"),
  31114. default: true
  31115. },
  31116. {
  31117. name: "Megamacro",
  31118. height: math.unit(2, "km")
  31119. },
  31120. {
  31121. name: "Gigamacro",
  31122. height: math.unit(2000, "km")
  31123. },
  31124. {
  31125. name: "Teramacro",
  31126. height: math.unit(250000, "km")
  31127. },
  31128. ]
  31129. ))
  31130. characterMakers.push(() => makeCharacter(
  31131. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31132. {
  31133. front: {
  31134. height: math.unit(4, "meters"),
  31135. weight: math.unit(150, "kg"),
  31136. name: "Front",
  31137. image: {
  31138. source: "./media/characters/caledvwlch/front.svg",
  31139. extra: 1760 / 1551,
  31140. bottom: 28 / 1788
  31141. }
  31142. },
  31143. side: {
  31144. height: math.unit(4, "meters"),
  31145. weight: math.unit(150, "kg"),
  31146. name: "Side",
  31147. image: {
  31148. source: "./media/characters/caledvwlch/side.svg",
  31149. extra: 1605 / 1536,
  31150. bottom: 31 / 1636
  31151. }
  31152. },
  31153. back: {
  31154. height: math.unit(4, "meters"),
  31155. weight: math.unit(150, "kg"),
  31156. name: "Back",
  31157. image: {
  31158. source: "./media/characters/caledvwlch/back.svg",
  31159. extra: 1635 / 1565,
  31160. bottom: 27 / 1662
  31161. }
  31162. },
  31163. },
  31164. [
  31165. {
  31166. name: "\"Incognito\"",
  31167. height: math.unit(4, "meters")
  31168. },
  31169. {
  31170. name: "Small rampage",
  31171. height: math.unit(600, "meters")
  31172. },
  31173. {
  31174. name: "Mega",
  31175. height: math.unit(30, "km")
  31176. },
  31177. {
  31178. name: "Home-size",
  31179. height: math.unit(50, "km"),
  31180. default: true
  31181. },
  31182. {
  31183. name: "Giga",
  31184. height: math.unit(300, "km")
  31185. },
  31186. {
  31187. name: "Lounging",
  31188. height: math.unit(11000, "km")
  31189. },
  31190. {
  31191. name: "Planet snacking",
  31192. height: math.unit(2000000, "km")
  31193. },
  31194. ]
  31195. ))
  31196. characterMakers.push(() => makeCharacter(
  31197. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31198. {
  31199. front: {
  31200. height: math.unit(6, "feet"),
  31201. weight: math.unit(215, "lb"),
  31202. name: "Front",
  31203. image: {
  31204. source: "./media/characters/sapphire-svell/front.svg",
  31205. extra: 495 / 455,
  31206. bottom: 20 / 515
  31207. }
  31208. },
  31209. back: {
  31210. height: math.unit(6, "feet"),
  31211. weight: math.unit(216, "lb"),
  31212. name: "Back",
  31213. image: {
  31214. source: "./media/characters/sapphire-svell/back.svg",
  31215. extra: 497 / 477,
  31216. bottom: 7 / 504
  31217. }
  31218. },
  31219. maw: {
  31220. height: math.unit(1.57, "feet"),
  31221. name: "Maw",
  31222. image: {
  31223. source: "./media/characters/sapphire-svell/maw.svg"
  31224. }
  31225. },
  31226. foot: {
  31227. height: math.unit(1.07, "feet"),
  31228. name: "Foot",
  31229. image: {
  31230. source: "./media/characters/sapphire-svell/foot.svg"
  31231. }
  31232. },
  31233. toering: {
  31234. height: math.unit(1.7, "inch"),
  31235. name: "Toering",
  31236. image: {
  31237. source: "./media/characters/sapphire-svell/toering.svg"
  31238. }
  31239. },
  31240. },
  31241. [
  31242. {
  31243. name: "Normal",
  31244. height: math.unit(300, "feet"),
  31245. default: true
  31246. },
  31247. {
  31248. name: "Augmented",
  31249. height: math.unit(1250, "feet")
  31250. },
  31251. {
  31252. name: "Unleashed",
  31253. height: math.unit(3000, "feet")
  31254. },
  31255. ]
  31256. ))
  31257. characterMakers.push(() => makeCharacter(
  31258. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31259. {
  31260. side: {
  31261. height: math.unit(2 + 3 / 12, "feet"),
  31262. weight: math.unit(110, "lb"),
  31263. name: "Side",
  31264. image: {
  31265. source: "./media/characters/glitch-flux/side.svg",
  31266. extra: 997 / 805,
  31267. bottom: 20 / 1017
  31268. }
  31269. },
  31270. },
  31271. [
  31272. {
  31273. name: "Normal",
  31274. height: math.unit(2 + 3 / 12, "feet"),
  31275. default: true
  31276. },
  31277. ]
  31278. ))
  31279. characterMakers.push(() => makeCharacter(
  31280. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31281. {
  31282. front: {
  31283. height: math.unit(4, "meters"),
  31284. name: "Front",
  31285. image: {
  31286. source: "./media/characters/mid/front.svg",
  31287. extra: 507 / 476,
  31288. bottom: 17 / 524
  31289. }
  31290. },
  31291. back: {
  31292. height: math.unit(4, "meters"),
  31293. name: "Back",
  31294. image: {
  31295. source: "./media/characters/mid/back.svg",
  31296. extra: 519 / 487,
  31297. bottom: 7 / 526
  31298. }
  31299. },
  31300. stuck: {
  31301. height: math.unit(2.2, "meters"),
  31302. name: "Stuck",
  31303. image: {
  31304. source: "./media/characters/mid/stuck.svg",
  31305. extra: 1951 / 1869,
  31306. bottom: 88 / 2039
  31307. }
  31308. }
  31309. },
  31310. [
  31311. {
  31312. name: "Normal",
  31313. height: math.unit(4, "meters"),
  31314. default: true
  31315. },
  31316. {
  31317. name: "Big",
  31318. height: math.unit(10, "meters")
  31319. },
  31320. {
  31321. name: "Macro",
  31322. height: math.unit(800, "meters")
  31323. },
  31324. {
  31325. name: "Megamacro",
  31326. height: math.unit(100, "km")
  31327. },
  31328. {
  31329. name: "Overgrown",
  31330. height: math.unit(1, "parsec")
  31331. },
  31332. ]
  31333. ))
  31334. characterMakers.push(() => makeCharacter(
  31335. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31336. {
  31337. front: {
  31338. height: math.unit(2.5, "meters"),
  31339. weight: math.unit(225, "kg"),
  31340. name: "Front",
  31341. image: {
  31342. source: "./media/characters/iris/front.svg",
  31343. extra: 3348 / 3251,
  31344. bottom: 205 / 3553
  31345. }
  31346. },
  31347. maw: {
  31348. height: math.unit(0.56, "meter"),
  31349. name: "Maw",
  31350. image: {
  31351. source: "./media/characters/iris/maw.svg"
  31352. }
  31353. },
  31354. },
  31355. [
  31356. {
  31357. name: "Mewter cat",
  31358. height: math.unit(1.2, "meters")
  31359. },
  31360. {
  31361. name: "Minimacro",
  31362. height: math.unit(2.5, "meters"),
  31363. default: true
  31364. },
  31365. {
  31366. name: "Macro",
  31367. height: math.unit(180, "meters")
  31368. },
  31369. {
  31370. name: "Megamacro",
  31371. height: math.unit(2746, "meters")
  31372. },
  31373. ]
  31374. ))
  31375. characterMakers.push(() => makeCharacter(
  31376. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31377. {
  31378. front: {
  31379. height: math.unit(6, "feet"),
  31380. weight: math.unit(135, "lb"),
  31381. name: "Front",
  31382. image: {
  31383. source: "./media/characters/axel/front.svg",
  31384. extra: 908 / 908,
  31385. bottom: 58 / 966
  31386. }
  31387. },
  31388. side: {
  31389. height: math.unit(6, "feet"),
  31390. weight: math.unit(135, "lb"),
  31391. name: "Side",
  31392. image: {
  31393. source: "./media/characters/axel/side.svg",
  31394. extra: 958 / 958,
  31395. bottom: 11 / 969
  31396. }
  31397. },
  31398. back: {
  31399. height: math.unit(6, "feet"),
  31400. weight: math.unit(135, "lb"),
  31401. name: "Back",
  31402. image: {
  31403. source: "./media/characters/axel/back.svg",
  31404. extra: 887 / 887,
  31405. bottom: 34 / 921
  31406. }
  31407. },
  31408. head: {
  31409. height: math.unit(1.07, "feet"),
  31410. name: "Head",
  31411. image: {
  31412. source: "./media/characters/axel/head.svg"
  31413. }
  31414. },
  31415. beak: {
  31416. height: math.unit(1.4, "feet"),
  31417. name: "Beak",
  31418. image: {
  31419. source: "./media/characters/axel/beak.svg"
  31420. }
  31421. },
  31422. beakSide: {
  31423. height: math.unit(1.4, "feet"),
  31424. name: "Beak Side",
  31425. image: {
  31426. source: "./media/characters/axel/beak-side.svg"
  31427. }
  31428. },
  31429. sheath: {
  31430. height: math.unit(0.5, "feet"),
  31431. name: "Sheath",
  31432. image: {
  31433. source: "./media/characters/axel/sheath.svg"
  31434. }
  31435. },
  31436. dick: {
  31437. height: math.unit(0.98, "feet"),
  31438. name: "Dick",
  31439. image: {
  31440. source: "./media/characters/axel/dick.svg"
  31441. }
  31442. },
  31443. },
  31444. [
  31445. {
  31446. name: "Macro",
  31447. height: math.unit(68, "meters"),
  31448. default: true
  31449. },
  31450. ]
  31451. ))
  31452. characterMakers.push(() => makeCharacter(
  31453. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31454. {
  31455. front: {
  31456. height: math.unit(3.5, "meters"),
  31457. weight: math.unit(1200, "kg"),
  31458. name: "Front",
  31459. image: {
  31460. source: "./media/characters/joanna/front.svg",
  31461. extra: 1596 / 1488,
  31462. bottom: 29 / 1625
  31463. }
  31464. },
  31465. back: {
  31466. height: math.unit(3.5, "meters"),
  31467. weight: math.unit(1200, "kg"),
  31468. name: "Back",
  31469. image: {
  31470. source: "./media/characters/joanna/back.svg",
  31471. extra: 1594 / 1495,
  31472. bottom: 26 / 1620
  31473. }
  31474. },
  31475. frontShorts: {
  31476. height: math.unit(3.5, "meters"),
  31477. weight: math.unit(1200, "kg"),
  31478. name: "Front (Shorts)",
  31479. image: {
  31480. source: "./media/characters/joanna/front-shorts.svg",
  31481. extra: 1596 / 1488,
  31482. bottom: 29 / 1625
  31483. }
  31484. },
  31485. frontBiker: {
  31486. height: math.unit(3.5, "meters"),
  31487. weight: math.unit(1200, "kg"),
  31488. name: "Front (Biker)",
  31489. image: {
  31490. source: "./media/characters/joanna/front-biker.svg",
  31491. extra: 1596 / 1488,
  31492. bottom: 29 / 1625
  31493. }
  31494. },
  31495. backBiker: {
  31496. height: math.unit(3.5, "meters"),
  31497. weight: math.unit(1200, "kg"),
  31498. name: "Back (Biker)",
  31499. image: {
  31500. source: "./media/characters/joanna/back-biker.svg",
  31501. extra: 1594 / 1495,
  31502. bottom: 88 / 1682
  31503. }
  31504. },
  31505. bikeLeft: {
  31506. height: math.unit(2.4, "meters"),
  31507. weight: math.unit(1600, "kg"),
  31508. name: "Bike (Left)",
  31509. image: {
  31510. source: "./media/characters/joanna/bike-left.svg",
  31511. extra: 720 / 720,
  31512. bottom: 8 / 728
  31513. }
  31514. },
  31515. bikeRight: {
  31516. height: math.unit(2.4, "meters"),
  31517. weight: math.unit(1600, "kg"),
  31518. name: "Bike (Right)",
  31519. image: {
  31520. source: "./media/characters/joanna/bike-right.svg",
  31521. extra: 720 / 720,
  31522. bottom: 8 / 728
  31523. }
  31524. },
  31525. },
  31526. [
  31527. {
  31528. name: "Incognito",
  31529. height: math.unit(3.5, "meters")
  31530. },
  31531. {
  31532. name: "Casual Big",
  31533. height: math.unit(200, "meters")
  31534. },
  31535. {
  31536. name: "Macro",
  31537. height: math.unit(600, "meters")
  31538. },
  31539. {
  31540. name: "Original",
  31541. height: math.unit(20, "km"),
  31542. default: true
  31543. },
  31544. {
  31545. name: "Giga",
  31546. height: math.unit(400, "km")
  31547. },
  31548. {
  31549. name: "Lounging",
  31550. height: math.unit(1500, "km")
  31551. },
  31552. {
  31553. name: "Planetary",
  31554. height: math.unit(200000, "km")
  31555. },
  31556. ]
  31557. ))
  31558. characterMakers.push(() => makeCharacter(
  31559. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31560. {
  31561. front: {
  31562. height: math.unit(6, "feet"),
  31563. weight: math.unit(150, "lb"),
  31564. name: "Front",
  31565. image: {
  31566. source: "./media/characters/hugo-sigil/front.svg",
  31567. extra: 522 / 500,
  31568. bottom: 2 / 524
  31569. }
  31570. },
  31571. back: {
  31572. height: math.unit(6, "feet"),
  31573. weight: math.unit(150, "lb"),
  31574. name: "Back",
  31575. image: {
  31576. source: "./media/characters/hugo-sigil/back.svg",
  31577. extra: 519 / 495,
  31578. bottom: 5 / 524
  31579. }
  31580. },
  31581. maw: {
  31582. height: math.unit(1.4, "feet"),
  31583. weight: math.unit(150, "lb"),
  31584. name: "Maw",
  31585. image: {
  31586. source: "./media/characters/hugo-sigil/maw.svg"
  31587. }
  31588. },
  31589. feet: {
  31590. height: math.unit(1.56, "feet"),
  31591. weight: math.unit(150, "lb"),
  31592. name: "Feet",
  31593. image: {
  31594. source: "./media/characters/hugo-sigil/feet.svg",
  31595. extra: 177 / 177,
  31596. bottom: 12 / 189
  31597. }
  31598. },
  31599. },
  31600. [
  31601. {
  31602. name: "Normal",
  31603. height: math.unit(6, "feet")
  31604. },
  31605. {
  31606. name: "Macro",
  31607. height: math.unit(200, "feet"),
  31608. default: true
  31609. },
  31610. ]
  31611. ))
  31612. characterMakers.push(() => makeCharacter(
  31613. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31614. {
  31615. front: {
  31616. height: math.unit(6, "feet"),
  31617. weight: math.unit(150, "lb"),
  31618. name: "Front",
  31619. image: {
  31620. source: "./media/characters/peri/front.svg",
  31621. extra: 2354 / 2233,
  31622. bottom: 49 / 2403
  31623. }
  31624. },
  31625. },
  31626. [
  31627. {
  31628. name: "Really Small",
  31629. height: math.unit(1, "nm")
  31630. },
  31631. {
  31632. name: "Micro",
  31633. height: math.unit(4, "inches")
  31634. },
  31635. {
  31636. name: "Normal",
  31637. height: math.unit(7, "inches"),
  31638. default: true
  31639. },
  31640. {
  31641. name: "Macro",
  31642. height: math.unit(400, "feet")
  31643. },
  31644. {
  31645. name: "Megamacro",
  31646. height: math.unit(100, "miles")
  31647. },
  31648. ]
  31649. ))
  31650. characterMakers.push(() => makeCharacter(
  31651. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31652. {
  31653. frontSlim: {
  31654. height: math.unit(7, "feet"),
  31655. name: "Front (Slim)",
  31656. image: {
  31657. source: "./media/characters/issilora/front-slim.svg",
  31658. extra: 529 / 449,
  31659. bottom: 53 / 582
  31660. }
  31661. },
  31662. sideSlim: {
  31663. height: math.unit(7, "feet"),
  31664. name: "Side (Slim)",
  31665. image: {
  31666. source: "./media/characters/issilora/side-slim.svg",
  31667. extra: 570 / 480,
  31668. bottom: 30 / 600
  31669. }
  31670. },
  31671. backSlim: {
  31672. height: math.unit(7, "feet"),
  31673. name: "Back (Slim)",
  31674. image: {
  31675. source: "./media/characters/issilora/back-slim.svg",
  31676. extra: 537 / 455,
  31677. bottom: 46 / 583
  31678. }
  31679. },
  31680. frontBuff: {
  31681. height: math.unit(7, "feet"),
  31682. name: "Front (Buff)",
  31683. image: {
  31684. source: "./media/characters/issilora/front-buff.svg",
  31685. extra: 2310 / 2035,
  31686. bottom: 335 / 2645
  31687. }
  31688. },
  31689. head: {
  31690. height: math.unit(1.94, "feet"),
  31691. name: "Head",
  31692. image: {
  31693. source: "./media/characters/issilora/head.svg"
  31694. }
  31695. },
  31696. },
  31697. [
  31698. {
  31699. name: "Minimum",
  31700. height: math.unit(7, "feet")
  31701. },
  31702. {
  31703. name: "Comfortable",
  31704. height: math.unit(17, "feet")
  31705. },
  31706. {
  31707. name: "Fun Size",
  31708. height: math.unit(47, "feet")
  31709. },
  31710. {
  31711. name: "Natural Macro",
  31712. height: math.unit(137, "feet"),
  31713. default: true
  31714. },
  31715. {
  31716. name: "Maximum Kaiju",
  31717. height: math.unit(397, "feet")
  31718. },
  31719. ]
  31720. ))
  31721. characterMakers.push(() => makeCharacter(
  31722. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31723. {
  31724. front: {
  31725. height: math.unit(50 + 9/12, "feet"),
  31726. weight: math.unit(32.8, "tons"),
  31727. name: "Front",
  31728. image: {
  31729. source: "./media/characters/irb'iiritaahn/front.svg",
  31730. extra: 1878/1826,
  31731. bottom: 326/2204
  31732. }
  31733. },
  31734. back: {
  31735. height: math.unit(50 + 9/12, "feet"),
  31736. weight: math.unit(32.8, "tons"),
  31737. name: "Back",
  31738. image: {
  31739. source: "./media/characters/irb'iiritaahn/back.svg",
  31740. extra: 2052/2018,
  31741. bottom: 152/2204
  31742. }
  31743. },
  31744. head: {
  31745. height: math.unit(12.86, "feet"),
  31746. name: "Head",
  31747. image: {
  31748. source: "./media/characters/irb'iiritaahn/head.svg"
  31749. }
  31750. },
  31751. maw: {
  31752. height: math.unit(9.66, "feet"),
  31753. name: "Maw",
  31754. image: {
  31755. source: "./media/characters/irb'iiritaahn/maw.svg"
  31756. }
  31757. },
  31758. frontDick: {
  31759. height: math.unit(8.78461, "feet"),
  31760. name: "Front Dick",
  31761. image: {
  31762. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31763. }
  31764. },
  31765. rearDick: {
  31766. height: math.unit(8.78461, "feet"),
  31767. name: "Rear Dick",
  31768. image: {
  31769. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31770. }
  31771. },
  31772. rearDickUnfolded: {
  31773. height: math.unit(8.78, "feet"),
  31774. name: "Rear Dick (Unfolded)",
  31775. image: {
  31776. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31777. }
  31778. },
  31779. wings: {
  31780. height: math.unit(43, "feet"),
  31781. name: "Wings",
  31782. image: {
  31783. source: "./media/characters/irb'iiritaahn/wings.svg"
  31784. }
  31785. },
  31786. },
  31787. [
  31788. {
  31789. name: "Macro",
  31790. height: math.unit(50 + 9/12, "feet"),
  31791. default: true
  31792. },
  31793. ]
  31794. ))
  31795. characterMakers.push(() => makeCharacter(
  31796. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31797. {
  31798. front: {
  31799. height: math.unit(205, "cm"),
  31800. weight: math.unit(102, "kg"),
  31801. name: "Front",
  31802. image: {
  31803. source: "./media/characters/irbisgreif/front.svg",
  31804. extra: 785/706,
  31805. bottom: 13/798
  31806. }
  31807. },
  31808. back: {
  31809. height: math.unit(205, "cm"),
  31810. weight: math.unit(102, "kg"),
  31811. name: "Back",
  31812. image: {
  31813. source: "./media/characters/irbisgreif/back.svg",
  31814. extra: 713/701,
  31815. bottom: 26/739
  31816. }
  31817. },
  31818. frontDressed: {
  31819. height: math.unit(216, "cm"),
  31820. weight: math.unit(102, "kg"),
  31821. name: "Front-dressed",
  31822. image: {
  31823. source: "./media/characters/irbisgreif/front-dressed.svg",
  31824. extra: 902/776,
  31825. bottom: 14/916
  31826. }
  31827. },
  31828. sideDressed: {
  31829. height: math.unit(195, "cm"),
  31830. weight: math.unit(102, "kg"),
  31831. name: "Side-dressed",
  31832. image: {
  31833. source: "./media/characters/irbisgreif/side-dressed.svg",
  31834. extra: 788/688,
  31835. bottom: 21/809
  31836. }
  31837. },
  31838. backDressed: {
  31839. height: math.unit(216, "cm"),
  31840. weight: math.unit(102, "kg"),
  31841. name: "Back-dressed",
  31842. image: {
  31843. source: "./media/characters/irbisgreif/back-dressed.svg",
  31844. extra: 901/783,
  31845. bottom: 10/911
  31846. }
  31847. },
  31848. dick: {
  31849. height: math.unit(0.49, "feet"),
  31850. name: "Dick",
  31851. image: {
  31852. source: "./media/characters/irbisgreif/dick.svg"
  31853. }
  31854. },
  31855. wingTop: {
  31856. height: math.unit(1.93 , "feet"),
  31857. name: "Wing-top",
  31858. image: {
  31859. source: "./media/characters/irbisgreif/wing-top.svg"
  31860. }
  31861. },
  31862. wingBottom: {
  31863. height: math.unit(1.93 , "feet"),
  31864. name: "Wing-bottom",
  31865. image: {
  31866. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31867. }
  31868. },
  31869. },
  31870. [
  31871. {
  31872. name: "Normal",
  31873. height: math.unit(216, "cm"),
  31874. default: true
  31875. },
  31876. ]
  31877. ))
  31878. characterMakers.push(() => makeCharacter(
  31879. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31880. {
  31881. front: {
  31882. height: math.unit(6, "feet"),
  31883. weight: math.unit(150, "lb"),
  31884. name: "Front",
  31885. image: {
  31886. source: "./media/characters/pride/front.svg",
  31887. extra: 1299/1230,
  31888. bottom: 18/1317
  31889. }
  31890. },
  31891. },
  31892. [
  31893. {
  31894. name: "Normal",
  31895. height: math.unit(7, "feet")
  31896. },
  31897. {
  31898. name: "Mini-macro",
  31899. height: math.unit(11, "feet")
  31900. },
  31901. {
  31902. name: "Macro",
  31903. height: math.unit(15, "meters"),
  31904. default: true
  31905. },
  31906. {
  31907. name: "Macro+",
  31908. height: math.unit(40, "meters")
  31909. },
  31910. ]
  31911. ))
  31912. characterMakers.push(() => makeCharacter(
  31913. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31914. {
  31915. front: {
  31916. height: math.unit(4 + 2 / 12, "feet"),
  31917. weight: math.unit(95, "lb"),
  31918. name: "Front",
  31919. image: {
  31920. source: "./media/characters/vaelophis-nyx/front.svg",
  31921. extra: 2532/2330,
  31922. bottom: 0/2532
  31923. }
  31924. },
  31925. back: {
  31926. height: math.unit(4 + 2 / 12, "feet"),
  31927. weight: math.unit(95, "lb"),
  31928. name: "Back",
  31929. image: {
  31930. source: "./media/characters/vaelophis-nyx/back.svg",
  31931. extra: 2484/2361,
  31932. bottom: 0/2484
  31933. }
  31934. },
  31935. feralSide: {
  31936. height: math.unit(2 + 1/12, "feet"),
  31937. weight: math.unit(20, "lb"),
  31938. name: "Feral (Side)",
  31939. image: {
  31940. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31941. extra: 1721/1581,
  31942. bottom: 70/1791
  31943. }
  31944. },
  31945. feralLazing: {
  31946. height: math.unit(1.08, "feet"),
  31947. weight: math.unit(20, "lb"),
  31948. name: "Feral (Lazing)",
  31949. image: {
  31950. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31951. extra: 822/822,
  31952. bottom: 248/1070
  31953. }
  31954. },
  31955. ear: {
  31956. height: math.unit(0.416, "feet"),
  31957. name: "Ear",
  31958. image: {
  31959. source: "./media/characters/vaelophis-nyx/ear.svg"
  31960. }
  31961. },
  31962. eye: {
  31963. height: math.unit(0.0748, "feet"),
  31964. name: "Eye",
  31965. image: {
  31966. source: "./media/characters/vaelophis-nyx/eye.svg"
  31967. }
  31968. },
  31969. mouth: {
  31970. height: math.unit(0.378, "feet"),
  31971. name: "Mouth",
  31972. image: {
  31973. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31974. }
  31975. },
  31976. spade: {
  31977. height: math.unit(0.55, "feet"),
  31978. name: "Spade",
  31979. image: {
  31980. source: "./media/characters/vaelophis-nyx/spade.svg"
  31981. }
  31982. },
  31983. },
  31984. [
  31985. {
  31986. name: "Normal",
  31987. height: math.unit(4 + 2/12, "feet"),
  31988. default: true
  31989. },
  31990. ]
  31991. ))
  31992. characterMakers.push(() => makeCharacter(
  31993. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31994. {
  31995. front: {
  31996. height: math.unit(7, "feet"),
  31997. weight: math.unit(231, "lb"),
  31998. name: "Front",
  31999. image: {
  32000. source: "./media/characters/flux/front.svg",
  32001. extra: 919/871,
  32002. bottom: 0/919
  32003. }
  32004. },
  32005. back: {
  32006. height: math.unit(7, "feet"),
  32007. weight: math.unit(231, "lb"),
  32008. name: "Back",
  32009. image: {
  32010. source: "./media/characters/flux/back.svg",
  32011. extra: 1040/992,
  32012. bottom: 0/1040
  32013. }
  32014. },
  32015. frontDressed: {
  32016. height: math.unit(7, "feet"),
  32017. weight: math.unit(231, "lb"),
  32018. name: "Front (Dressed)",
  32019. image: {
  32020. source: "./media/characters/flux/front-dressed.svg",
  32021. extra: 919/871,
  32022. bottom: 0/919
  32023. }
  32024. },
  32025. feralSide: {
  32026. height: math.unit(5, "feet"),
  32027. weight: math.unit(150, "lb"),
  32028. name: "Feral (Side)",
  32029. image: {
  32030. source: "./media/characters/flux/feral-side.svg",
  32031. extra: 598/528,
  32032. bottom: 28/626
  32033. }
  32034. },
  32035. head: {
  32036. height: math.unit(1.585, "feet"),
  32037. name: "Head",
  32038. image: {
  32039. source: "./media/characters/flux/head.svg"
  32040. }
  32041. },
  32042. headSide: {
  32043. height: math.unit(1.74, "feet"),
  32044. name: "Head (Side)",
  32045. image: {
  32046. source: "./media/characters/flux/head-side.svg"
  32047. }
  32048. },
  32049. headSideFire: {
  32050. height: math.unit(1.76, "feet"),
  32051. name: "Head (Side, Fire)",
  32052. image: {
  32053. source: "./media/characters/flux/head-side-fire.svg"
  32054. }
  32055. },
  32056. },
  32057. [
  32058. {
  32059. name: "Normal",
  32060. height: math.unit(7, "feet"),
  32061. default: true
  32062. },
  32063. ]
  32064. ))
  32065. characterMakers.push(() => makeCharacter(
  32066. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32067. {
  32068. front: {
  32069. height: math.unit(9, "feet"),
  32070. weight: math.unit(1012, "lb"),
  32071. name: "Front",
  32072. image: {
  32073. source: "./media/characters/ulfra-lupae/front.svg",
  32074. extra: 1083/1011,
  32075. bottom: 67/1150
  32076. }
  32077. },
  32078. },
  32079. [
  32080. {
  32081. name: "Micro",
  32082. height: math.unit(6, "inches")
  32083. },
  32084. {
  32085. name: "Socializing",
  32086. height: math.unit(6 + 5/12, "feet")
  32087. },
  32088. {
  32089. name: "Normal",
  32090. height: math.unit(9, "feet"),
  32091. default: true
  32092. },
  32093. {
  32094. name: "Macro",
  32095. height: math.unit(150, "feet")
  32096. },
  32097. ]
  32098. ))
  32099. characterMakers.push(() => makeCharacter(
  32100. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32101. {
  32102. front: {
  32103. height: math.unit(5 + 2/12, "feet"),
  32104. weight: math.unit(120, "lb"),
  32105. name: "Front",
  32106. image: {
  32107. source: "./media/characters/timber/front.svg",
  32108. extra: 2814/2705,
  32109. bottom: 181/2995
  32110. }
  32111. },
  32112. },
  32113. [
  32114. {
  32115. name: "Normal",
  32116. height: math.unit(5 + 2/12, "feet"),
  32117. default: true
  32118. },
  32119. ]
  32120. ))
  32121. characterMakers.push(() => makeCharacter(
  32122. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32123. {
  32124. front: {
  32125. height: math.unit(9, "feet"),
  32126. name: "Front",
  32127. image: {
  32128. source: "./media/characters/nicki/front.svg",
  32129. extra: 1240/990,
  32130. bottom: 45/1285
  32131. },
  32132. form: "anthro",
  32133. default: true
  32134. },
  32135. side: {
  32136. height: math.unit(9, "feet"),
  32137. name: "Side",
  32138. image: {
  32139. source: "./media/characters/nicki/side.svg",
  32140. extra: 1047/973,
  32141. bottom: 61/1108
  32142. },
  32143. form: "anthro"
  32144. },
  32145. back: {
  32146. height: math.unit(9, "feet"),
  32147. name: "Back",
  32148. image: {
  32149. source: "./media/characters/nicki/back.svg",
  32150. extra: 1006/965,
  32151. bottom: 39/1045
  32152. },
  32153. form: "anthro"
  32154. },
  32155. taur: {
  32156. height: math.unit(15, "feet"),
  32157. name: "Taur",
  32158. image: {
  32159. source: "./media/characters/nicki/taur.svg",
  32160. extra: 1592/1347,
  32161. bottom: 0/1592
  32162. },
  32163. form: "taur",
  32164. default: true
  32165. },
  32166. },
  32167. [
  32168. {
  32169. name: "Normal",
  32170. height: math.unit(9, "feet"),
  32171. form: "anthro",
  32172. default: true
  32173. },
  32174. {
  32175. name: "Normal",
  32176. height: math.unit(15, "feet"),
  32177. form: "taur",
  32178. default: true
  32179. }
  32180. ],
  32181. {
  32182. "anthro": {
  32183. name: "Anthro",
  32184. default: true
  32185. },
  32186. "taur": {
  32187. name: "Taur"
  32188. }
  32189. }
  32190. ))
  32191. characterMakers.push(() => makeCharacter(
  32192. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32193. {
  32194. front: {
  32195. height: math.unit(7 + 10/12, "feet"),
  32196. weight: math.unit(3.5, "tons"),
  32197. name: "Front",
  32198. image: {
  32199. source: "./media/characters/lee/front.svg",
  32200. extra: 1773/1615,
  32201. bottom: 86/1859
  32202. }
  32203. },
  32204. hand: {
  32205. height: math.unit(1.78, "feet"),
  32206. name: "Hand",
  32207. image: {
  32208. source: "./media/characters/lee/hand.svg"
  32209. }
  32210. },
  32211. maw: {
  32212. height: math.unit(1.18, "feet"),
  32213. name: "Maw",
  32214. image: {
  32215. source: "./media/characters/lee/maw.svg"
  32216. }
  32217. },
  32218. },
  32219. [
  32220. {
  32221. name: "Normal",
  32222. height: math.unit(7 + 10/12, "feet"),
  32223. default: true
  32224. },
  32225. ]
  32226. ))
  32227. characterMakers.push(() => makeCharacter(
  32228. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32229. {
  32230. front: {
  32231. height: math.unit(9, "feet"),
  32232. name: "Front",
  32233. image: {
  32234. source: "./media/characters/guti/front.svg",
  32235. extra: 4551/4355,
  32236. bottom: 123/4674
  32237. }
  32238. },
  32239. tongue: {
  32240. height: math.unit(1, "feet"),
  32241. name: "Tongue",
  32242. image: {
  32243. source: "./media/characters/guti/tongue.svg"
  32244. }
  32245. },
  32246. paw: {
  32247. height: math.unit(1.18, "feet"),
  32248. name: "Paw",
  32249. image: {
  32250. source: "./media/characters/guti/paw.svg"
  32251. }
  32252. },
  32253. },
  32254. [
  32255. {
  32256. name: "Normal",
  32257. height: math.unit(9, "feet"),
  32258. default: true
  32259. },
  32260. ]
  32261. ))
  32262. characterMakers.push(() => makeCharacter(
  32263. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32264. {
  32265. side: {
  32266. height: math.unit(5, "meters"),
  32267. name: "Side",
  32268. image: {
  32269. source: "./media/characters/vesper/side.svg",
  32270. extra: 1605/1518,
  32271. bottom: 0/1605
  32272. }
  32273. },
  32274. },
  32275. [
  32276. {
  32277. name: "Small",
  32278. height: math.unit(5, "meters")
  32279. },
  32280. {
  32281. name: "Sage",
  32282. height: math.unit(100, "meters"),
  32283. default: true
  32284. },
  32285. {
  32286. name: "Fun Size",
  32287. height: math.unit(600, "meters")
  32288. },
  32289. {
  32290. name: "Goddess",
  32291. height: math.unit(20000, "km")
  32292. },
  32293. {
  32294. name: "Maximum",
  32295. height: math.unit(5, "galaxies")
  32296. },
  32297. ]
  32298. ))
  32299. characterMakers.push(() => makeCharacter(
  32300. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32301. {
  32302. front: {
  32303. height: math.unit(6 + 3/12, "feet"),
  32304. weight: math.unit(190, "lb"),
  32305. name: "Front",
  32306. image: {
  32307. source: "./media/characters/gawain/front.svg",
  32308. extra: 2222/2139,
  32309. bottom: 90/2312
  32310. }
  32311. },
  32312. back: {
  32313. height: math.unit(6 + 3/12, "feet"),
  32314. weight: math.unit(190, "lb"),
  32315. name: "Back",
  32316. image: {
  32317. source: "./media/characters/gawain/back.svg",
  32318. extra: 2199/2111,
  32319. bottom: 73/2272
  32320. }
  32321. },
  32322. },
  32323. [
  32324. {
  32325. name: "Normal",
  32326. height: math.unit(6 + 3/12, "feet"),
  32327. default: true
  32328. },
  32329. ]
  32330. ))
  32331. characterMakers.push(() => makeCharacter(
  32332. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32333. {
  32334. side: {
  32335. height: math.unit(3.5, "meters"),
  32336. weight: math.unit(16000, "lb"),
  32337. name: "Side",
  32338. image: {
  32339. source: "./media/characters/dascalti/side.svg",
  32340. extra: 392/273,
  32341. bottom: 47/439
  32342. }
  32343. },
  32344. breath: {
  32345. height: math.unit(7.4, "feet"),
  32346. name: "Breath",
  32347. image: {
  32348. source: "./media/characters/dascalti/breath.svg"
  32349. }
  32350. },
  32351. fed: {
  32352. height: math.unit(3.6, "meters"),
  32353. weight: math.unit(16000, "lb"),
  32354. name: "Fed",
  32355. image: {
  32356. source: "./media/characters/dascalti/fed.svg",
  32357. extra: 1419/820,
  32358. bottom: 95/1514
  32359. }
  32360. },
  32361. },
  32362. [
  32363. {
  32364. name: "Normal",
  32365. height: math.unit(3.5, "meters"),
  32366. default: true
  32367. },
  32368. ]
  32369. ))
  32370. characterMakers.push(() => makeCharacter(
  32371. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32372. {
  32373. front: {
  32374. height: math.unit(3 + 5/12, "feet"),
  32375. name: "Front",
  32376. image: {
  32377. source: "./media/characters/mauve/front.svg",
  32378. extra: 1126/1033,
  32379. bottom: 65/1191
  32380. }
  32381. },
  32382. side: {
  32383. height: math.unit(3 + 5/12, "feet"),
  32384. name: "Side",
  32385. image: {
  32386. source: "./media/characters/mauve/side.svg",
  32387. extra: 1089/1001,
  32388. bottom: 29/1118
  32389. }
  32390. },
  32391. back: {
  32392. height: math.unit(3 + 5/12, "feet"),
  32393. name: "Back",
  32394. image: {
  32395. source: "./media/characters/mauve/back.svg",
  32396. extra: 1173/1053,
  32397. bottom: 109/1282
  32398. }
  32399. },
  32400. },
  32401. [
  32402. {
  32403. name: "Normal",
  32404. height: math.unit(3 + 5/12, "feet"),
  32405. default: true
  32406. },
  32407. ]
  32408. ))
  32409. characterMakers.push(() => makeCharacter(
  32410. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32411. {
  32412. front: {
  32413. height: math.unit(6 + 3/12, "feet"),
  32414. weight: math.unit(430, "lb"),
  32415. name: "Front",
  32416. image: {
  32417. source: "./media/characters/carlos/front.svg",
  32418. extra: 1964/1913,
  32419. bottom: 70/2034
  32420. }
  32421. },
  32422. },
  32423. [
  32424. {
  32425. name: "Normal",
  32426. height: math.unit(6 + 3/12, "feet"),
  32427. default: true
  32428. },
  32429. ]
  32430. ))
  32431. characterMakers.push(() => makeCharacter(
  32432. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32433. {
  32434. back: {
  32435. height: math.unit(5 + 10/12, "feet"),
  32436. weight: math.unit(200, "lb"),
  32437. name: "Back",
  32438. image: {
  32439. source: "./media/characters/jax/back.svg",
  32440. extra: 764/739,
  32441. bottom: 25/789
  32442. }
  32443. },
  32444. },
  32445. [
  32446. {
  32447. name: "Normal",
  32448. height: math.unit(5 + 10/12, "feet"),
  32449. default: true
  32450. },
  32451. ]
  32452. ))
  32453. characterMakers.push(() => makeCharacter(
  32454. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32455. {
  32456. front: {
  32457. height: math.unit(8, "feet"),
  32458. weight: math.unit(250, "lb"),
  32459. name: "Front",
  32460. image: {
  32461. source: "./media/characters/eikthynir/front.svg",
  32462. extra: 1332/1166,
  32463. bottom: 82/1414
  32464. }
  32465. },
  32466. back: {
  32467. height: math.unit(8, "feet"),
  32468. weight: math.unit(250, "lb"),
  32469. name: "Back",
  32470. image: {
  32471. source: "./media/characters/eikthynir/back.svg",
  32472. extra: 1342/1190,
  32473. bottom: 19/1361
  32474. }
  32475. },
  32476. dick: {
  32477. height: math.unit(2.35, "feet"),
  32478. name: "Dick",
  32479. image: {
  32480. source: "./media/characters/eikthynir/dick.svg"
  32481. }
  32482. },
  32483. },
  32484. [
  32485. {
  32486. name: "Normal",
  32487. height: math.unit(8, "feet"),
  32488. default: true
  32489. },
  32490. ]
  32491. ))
  32492. characterMakers.push(() => makeCharacter(
  32493. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32494. {
  32495. front: {
  32496. height: math.unit(99, "meters"),
  32497. weight: math.unit(13000, "tons"),
  32498. name: "Front",
  32499. image: {
  32500. source: "./media/characters/zlmos/front.svg",
  32501. extra: 2202/1992,
  32502. bottom: 315/2517
  32503. }
  32504. },
  32505. },
  32506. [
  32507. {
  32508. name: "Macro",
  32509. height: math.unit(99, "meters"),
  32510. default: true
  32511. },
  32512. ]
  32513. ))
  32514. characterMakers.push(() => makeCharacter(
  32515. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32516. {
  32517. front: {
  32518. height: math.unit(6 + 5/12, "feet"),
  32519. name: "Front",
  32520. image: {
  32521. source: "./media/characters/purri/front.svg",
  32522. extra: 1698/1610,
  32523. bottom: 32/1730
  32524. }
  32525. },
  32526. frontAlt: {
  32527. height: math.unit(6 + 5/12, "feet"),
  32528. name: "Front (Alt)",
  32529. image: {
  32530. source: "./media/characters/purri/front-alt.svg",
  32531. extra: 450/420,
  32532. bottom: 26/476
  32533. }
  32534. },
  32535. boots: {
  32536. height: math.unit(5.5, "feet"),
  32537. name: "Boots",
  32538. image: {
  32539. source: "./media/characters/purri/boots.svg",
  32540. extra: 905/853,
  32541. bottom: 18/923
  32542. }
  32543. },
  32544. lying: {
  32545. height: math.unit(2, "feet"),
  32546. name: "Lying",
  32547. image: {
  32548. source: "./media/characters/purri/lying.svg",
  32549. extra: 940/843,
  32550. bottom: 146/1086
  32551. }
  32552. },
  32553. devious: {
  32554. height: math.unit(1.77, "feet"),
  32555. name: "Devious",
  32556. image: {
  32557. source: "./media/characters/purri/devious.svg",
  32558. extra: 1440/1155,
  32559. bottom: 147/1587
  32560. }
  32561. },
  32562. bean: {
  32563. height: math.unit(1.94, "feet"),
  32564. name: "Bean",
  32565. image: {
  32566. source: "./media/characters/purri/bean.svg"
  32567. }
  32568. },
  32569. },
  32570. [
  32571. {
  32572. name: "Micro",
  32573. height: math.unit(1, "mm")
  32574. },
  32575. {
  32576. name: "Normal",
  32577. height: math.unit(6 + 5/12, "feet"),
  32578. default: true
  32579. },
  32580. {
  32581. name: "Macro :3c",
  32582. height: math.unit(2, "miles")
  32583. },
  32584. ]
  32585. ))
  32586. characterMakers.push(() => makeCharacter(
  32587. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32588. {
  32589. front: {
  32590. height: math.unit(6 + 2/12, "feet"),
  32591. weight: math.unit(250, "lb"),
  32592. name: "Front",
  32593. image: {
  32594. source: "./media/characters/moonlight/front.svg",
  32595. extra: 1044/908,
  32596. bottom: 56/1100
  32597. }
  32598. },
  32599. feral: {
  32600. height: math.unit(3 + 1/12, "feet"),
  32601. weight: math.unit(50, "kg"),
  32602. name: "Feral",
  32603. image: {
  32604. source: "./media/characters/moonlight/feral.svg",
  32605. extra: 3705/2791,
  32606. bottom: 145/3850
  32607. }
  32608. },
  32609. paw: {
  32610. height: math.unit(1, "feet"),
  32611. name: "Paw",
  32612. image: {
  32613. source: "./media/characters/moonlight/paw.svg"
  32614. }
  32615. },
  32616. paws: {
  32617. height: math.unit(0.98, "feet"),
  32618. name: "Paws",
  32619. image: {
  32620. source: "./media/characters/moonlight/paws.svg",
  32621. extra: 939/939,
  32622. bottom: 50/989
  32623. }
  32624. },
  32625. mouth: {
  32626. height: math.unit(0.48, "feet"),
  32627. name: "Mouth",
  32628. image: {
  32629. source: "./media/characters/moonlight/mouth.svg"
  32630. }
  32631. },
  32632. dick: {
  32633. height: math.unit(1.46, "feet"),
  32634. name: "Dick",
  32635. image: {
  32636. source: "./media/characters/moonlight/dick.svg"
  32637. }
  32638. },
  32639. },
  32640. [
  32641. {
  32642. name: "Normal",
  32643. height: math.unit(6 + 2/12, "feet"),
  32644. default: true
  32645. },
  32646. {
  32647. name: "Macro",
  32648. height: math.unit(300, "feet")
  32649. },
  32650. {
  32651. name: "Macro+",
  32652. height: math.unit(1, "mile")
  32653. },
  32654. {
  32655. name: "Mt. Moon",
  32656. height: math.unit(5, "miles")
  32657. },
  32658. {
  32659. name: "Megamacro",
  32660. height: math.unit(15, "miles")
  32661. },
  32662. ]
  32663. ))
  32664. characterMakers.push(() => makeCharacter(
  32665. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32666. {
  32667. back: {
  32668. height: math.unit(6, "feet"),
  32669. weight: math.unit(150, "lb"),
  32670. name: "Back",
  32671. image: {
  32672. source: "./media/characters/sylen/back.svg",
  32673. extra: 1335/1273,
  32674. bottom: 107/1442
  32675. }
  32676. },
  32677. },
  32678. [
  32679. {
  32680. name: "Normal",
  32681. height: math.unit(5 + 5/12, "feet")
  32682. },
  32683. {
  32684. name: "Megamacro",
  32685. height: math.unit(3, "miles"),
  32686. default: true
  32687. },
  32688. ]
  32689. ))
  32690. characterMakers.push(() => makeCharacter(
  32691. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32692. {
  32693. front: {
  32694. height: math.unit(6, "feet"),
  32695. weight: math.unit(190, "lb"),
  32696. name: "Front",
  32697. image: {
  32698. source: "./media/characters/huttser/front.svg",
  32699. extra: 1152/1058,
  32700. bottom: 23/1175
  32701. }
  32702. },
  32703. side: {
  32704. height: math.unit(6, "feet"),
  32705. weight: math.unit(190, "lb"),
  32706. name: "Side",
  32707. image: {
  32708. source: "./media/characters/huttser/side.svg",
  32709. extra: 1174/1065,
  32710. bottom: 18/1192
  32711. }
  32712. },
  32713. back: {
  32714. height: math.unit(6, "feet"),
  32715. weight: math.unit(190, "lb"),
  32716. name: "Back",
  32717. image: {
  32718. source: "./media/characters/huttser/back.svg",
  32719. extra: 1158/1056,
  32720. bottom: 12/1170
  32721. }
  32722. },
  32723. },
  32724. [
  32725. ]
  32726. ))
  32727. characterMakers.push(() => makeCharacter(
  32728. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32729. {
  32730. side: {
  32731. height: math.unit(12 + 9/12, "feet"),
  32732. weight: math.unit(15000, "lb"),
  32733. name: "Side",
  32734. image: {
  32735. source: "./media/characters/faan/side.svg",
  32736. extra: 2747/2697,
  32737. bottom: 0/2747
  32738. }
  32739. },
  32740. front: {
  32741. height: math.unit(12 + 9/12, "feet"),
  32742. weight: math.unit(15000, "lb"),
  32743. name: "Front",
  32744. image: {
  32745. source: "./media/characters/faan/front.svg",
  32746. extra: 607/571,
  32747. bottom: 24/631
  32748. }
  32749. },
  32750. head: {
  32751. height: math.unit(2.85, "feet"),
  32752. name: "Head",
  32753. image: {
  32754. source: "./media/characters/faan/head.svg"
  32755. }
  32756. },
  32757. headAlt: {
  32758. height: math.unit(3.13, "feet"),
  32759. name: "Head-alt",
  32760. image: {
  32761. source: "./media/characters/faan/head-alt.svg"
  32762. }
  32763. },
  32764. },
  32765. [
  32766. {
  32767. name: "Normal",
  32768. height: math.unit(12 + 9/12, "feet"),
  32769. default: true
  32770. },
  32771. ]
  32772. ))
  32773. characterMakers.push(() => makeCharacter(
  32774. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32775. {
  32776. front: {
  32777. height: math.unit(6, "feet"),
  32778. weight: math.unit(300, "lb"),
  32779. name: "Front",
  32780. image: {
  32781. source: "./media/characters/tanio/front.svg",
  32782. extra: 711/673,
  32783. bottom: 25/736
  32784. }
  32785. },
  32786. },
  32787. [
  32788. {
  32789. name: "Normal",
  32790. height: math.unit(6, "feet"),
  32791. default: true
  32792. },
  32793. ]
  32794. ))
  32795. characterMakers.push(() => makeCharacter(
  32796. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32797. {
  32798. front: {
  32799. height: math.unit(3, "inches"),
  32800. name: "Front",
  32801. image: {
  32802. source: "./media/characters/noboru/front.svg",
  32803. extra: 1039/932,
  32804. bottom: 18/1057
  32805. }
  32806. },
  32807. },
  32808. [
  32809. {
  32810. name: "Micro",
  32811. height: math.unit(3, "inches"),
  32812. default: true
  32813. },
  32814. ]
  32815. ))
  32816. characterMakers.push(() => makeCharacter(
  32817. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32818. {
  32819. front: {
  32820. height: math.unit(1.85, "meters"),
  32821. weight: math.unit(80, "kg"),
  32822. name: "Front",
  32823. image: {
  32824. source: "./media/characters/daniel-barrett/front.svg",
  32825. extra: 355/337,
  32826. bottom: 9/364
  32827. }
  32828. },
  32829. },
  32830. [
  32831. {
  32832. name: "Pico",
  32833. height: math.unit(0.0433, "mm")
  32834. },
  32835. {
  32836. name: "Nano",
  32837. height: math.unit(1.5, "mm")
  32838. },
  32839. {
  32840. name: "Micro",
  32841. height: math.unit(5.3, "cm"),
  32842. default: true
  32843. },
  32844. {
  32845. name: "Normal",
  32846. height: math.unit(1.85, "meters")
  32847. },
  32848. {
  32849. name: "Macro",
  32850. height: math.unit(64.7, "meters")
  32851. },
  32852. {
  32853. name: "Megamacro",
  32854. height: math.unit(2.26, "km")
  32855. },
  32856. {
  32857. name: "Gigamacro",
  32858. height: math.unit(79, "km")
  32859. },
  32860. {
  32861. name: "Teramacro",
  32862. height: math.unit(2765, "km")
  32863. },
  32864. {
  32865. name: "Petamacro",
  32866. height: math.unit(96678, "km")
  32867. },
  32868. ]
  32869. ))
  32870. characterMakers.push(() => makeCharacter(
  32871. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32872. {
  32873. front: {
  32874. height: math.unit(30, "meters"),
  32875. weight: math.unit(400, "tons"),
  32876. name: "Front",
  32877. image: {
  32878. source: "./media/characters/zeel/front.svg",
  32879. extra: 2599/2599,
  32880. bottom: 226/2825
  32881. }
  32882. },
  32883. },
  32884. [
  32885. {
  32886. name: "Macro",
  32887. height: math.unit(30, "meters"),
  32888. default: true
  32889. },
  32890. ]
  32891. ))
  32892. characterMakers.push(() => makeCharacter(
  32893. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32894. {
  32895. front: {
  32896. height: math.unit(6 + 7/12, "feet"),
  32897. weight: math.unit(210, "lb"),
  32898. name: "Front",
  32899. image: {
  32900. source: "./media/characters/tarn/front.svg",
  32901. extra: 3517/3220,
  32902. bottom: 91/3608
  32903. }
  32904. },
  32905. back: {
  32906. height: math.unit(6 + 7/12, "feet"),
  32907. weight: math.unit(210, "lb"),
  32908. name: "Back",
  32909. image: {
  32910. source: "./media/characters/tarn/back.svg",
  32911. extra: 3566/3241,
  32912. bottom: 34/3600
  32913. }
  32914. },
  32915. dick: {
  32916. height: math.unit(1.65, "feet"),
  32917. name: "Dick",
  32918. image: {
  32919. source: "./media/characters/tarn/dick.svg"
  32920. }
  32921. },
  32922. paw: {
  32923. height: math.unit(1.80, "feet"),
  32924. name: "Paw",
  32925. image: {
  32926. source: "./media/characters/tarn/paw.svg"
  32927. }
  32928. },
  32929. tongue: {
  32930. height: math.unit(0.97, "feet"),
  32931. name: "Tongue",
  32932. image: {
  32933. source: "./media/characters/tarn/tongue.svg"
  32934. }
  32935. },
  32936. },
  32937. [
  32938. {
  32939. name: "Micro",
  32940. height: math.unit(4, "inches")
  32941. },
  32942. {
  32943. name: "Normal",
  32944. height: math.unit(6 + 7/12, "feet"),
  32945. default: true
  32946. },
  32947. {
  32948. name: "Macro",
  32949. height: math.unit(300, "feet")
  32950. },
  32951. ]
  32952. ))
  32953. characterMakers.push(() => makeCharacter(
  32954. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32955. {
  32956. front: {
  32957. height: math.unit(5 + 7/12, "feet"),
  32958. weight: math.unit(80, "kg"),
  32959. name: "Front",
  32960. image: {
  32961. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32962. extra: 3023/2865,
  32963. bottom: 33/3056
  32964. }
  32965. },
  32966. back: {
  32967. height: math.unit(5 + 7/12, "feet"),
  32968. weight: math.unit(80, "kg"),
  32969. name: "Back",
  32970. image: {
  32971. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32972. extra: 3020/2886,
  32973. bottom: 30/3050
  32974. }
  32975. },
  32976. dick: {
  32977. height: math.unit(0.98, "feet"),
  32978. name: "Dick",
  32979. image: {
  32980. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32981. }
  32982. },
  32983. anatomy: {
  32984. height: math.unit(2.86, "feet"),
  32985. name: "Anatomy",
  32986. image: {
  32987. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32988. }
  32989. },
  32990. },
  32991. [
  32992. {
  32993. name: "Really Small",
  32994. height: math.unit(2, "inches")
  32995. },
  32996. {
  32997. name: "Micro",
  32998. height: math.unit(5.583, "inches")
  32999. },
  33000. {
  33001. name: "Normal",
  33002. height: math.unit(5 + 7/12, "feet"),
  33003. default: true
  33004. },
  33005. {
  33006. name: "Macro",
  33007. height: math.unit(67, "feet")
  33008. },
  33009. {
  33010. name: "Megamacro",
  33011. height: math.unit(134, "feet")
  33012. },
  33013. ]
  33014. ))
  33015. characterMakers.push(() => makeCharacter(
  33016. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33017. {
  33018. front: {
  33019. height: math.unit(9, "feet"),
  33020. weight: math.unit(120, "lb"),
  33021. name: "Front",
  33022. image: {
  33023. source: "./media/characters/sally/front.svg",
  33024. extra: 1506/1349,
  33025. bottom: 66/1572
  33026. }
  33027. },
  33028. },
  33029. [
  33030. {
  33031. name: "Normal",
  33032. height: math.unit(9, "feet"),
  33033. default: true
  33034. },
  33035. ]
  33036. ))
  33037. characterMakers.push(() => makeCharacter(
  33038. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33039. {
  33040. front: {
  33041. height: math.unit(8, "feet"),
  33042. weight: math.unit(900, "lb"),
  33043. name: "Front",
  33044. image: {
  33045. source: "./media/characters/owen/front.svg",
  33046. extra: 1761/1657,
  33047. bottom: 74/1835
  33048. }
  33049. },
  33050. side: {
  33051. height: math.unit(8, "feet"),
  33052. weight: math.unit(900, "lb"),
  33053. name: "Side",
  33054. image: {
  33055. source: "./media/characters/owen/side.svg",
  33056. extra: 1797/1734,
  33057. bottom: 30/1827
  33058. }
  33059. },
  33060. back: {
  33061. height: math.unit(8, "feet"),
  33062. weight: math.unit(900, "lb"),
  33063. name: "Back",
  33064. image: {
  33065. source: "./media/characters/owen/back.svg",
  33066. extra: 1796/1706,
  33067. bottom: 59/1855
  33068. }
  33069. },
  33070. maw: {
  33071. height: math.unit(1.76, "feet"),
  33072. name: "Maw",
  33073. image: {
  33074. source: "./media/characters/owen/maw.svg"
  33075. }
  33076. },
  33077. },
  33078. [
  33079. {
  33080. name: "Normal",
  33081. height: math.unit(8, "feet"),
  33082. default: true
  33083. },
  33084. ]
  33085. ))
  33086. characterMakers.push(() => makeCharacter(
  33087. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33088. {
  33089. front: {
  33090. height: math.unit(4, "feet"),
  33091. weight: math.unit(400, "lb"),
  33092. name: "Front",
  33093. image: {
  33094. source: "./media/characters/ryth/front.svg",
  33095. extra: 1920/1748,
  33096. bottom: 42/1962
  33097. }
  33098. },
  33099. back: {
  33100. height: math.unit(4, "feet"),
  33101. weight: math.unit(400, "lb"),
  33102. name: "Back",
  33103. image: {
  33104. source: "./media/characters/ryth/back.svg",
  33105. extra: 1897/1690,
  33106. bottom: 89/1986
  33107. }
  33108. },
  33109. mouth: {
  33110. height: math.unit(1.39, "feet"),
  33111. name: "Mouth",
  33112. image: {
  33113. source: "./media/characters/ryth/mouth.svg"
  33114. }
  33115. },
  33116. tailmaw: {
  33117. height: math.unit(1.23, "feet"),
  33118. name: "Tailmaw",
  33119. image: {
  33120. source: "./media/characters/ryth/tailmaw.svg"
  33121. }
  33122. },
  33123. goia: {
  33124. height: math.unit(4, "meters"),
  33125. weight: math.unit(10800, "lb"),
  33126. name: "Goia",
  33127. image: {
  33128. source: "./media/characters/ryth/goia.svg",
  33129. extra: 745/640,
  33130. bottom: 107/852
  33131. }
  33132. },
  33133. goiaFront: {
  33134. height: math.unit(4, "meters"),
  33135. weight: math.unit(10800, "lb"),
  33136. name: "Goia (Front)",
  33137. image: {
  33138. source: "./media/characters/ryth/goia-front.svg",
  33139. extra: 750/586,
  33140. bottom: 114/864
  33141. }
  33142. },
  33143. goiaMaw: {
  33144. height: math.unit(5.55, "feet"),
  33145. name: "Goia Maw",
  33146. image: {
  33147. source: "./media/characters/ryth/goia-maw.svg"
  33148. }
  33149. },
  33150. goiaForepaw: {
  33151. height: math.unit(3.5, "feet"),
  33152. name: "Goia Forepaw",
  33153. image: {
  33154. source: "./media/characters/ryth/goia-forepaw.svg"
  33155. }
  33156. },
  33157. goiaHindpaw: {
  33158. height: math.unit(5.55, "feet"),
  33159. name: "Goia Hindpaw",
  33160. image: {
  33161. source: "./media/characters/ryth/goia-hindpaw.svg"
  33162. }
  33163. },
  33164. },
  33165. [
  33166. {
  33167. name: "Normal",
  33168. height: math.unit(4, "feet"),
  33169. default: true
  33170. },
  33171. ]
  33172. ))
  33173. characterMakers.push(() => makeCharacter(
  33174. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33175. {
  33176. front: {
  33177. height: math.unit(7, "feet"),
  33178. weight: math.unit(180, "lb"),
  33179. name: "Front",
  33180. image: {
  33181. source: "./media/characters/necrolance/front.svg",
  33182. extra: 1062/947,
  33183. bottom: 41/1103
  33184. }
  33185. },
  33186. back: {
  33187. height: math.unit(7, "feet"),
  33188. weight: math.unit(180, "lb"),
  33189. name: "Back",
  33190. image: {
  33191. source: "./media/characters/necrolance/back.svg",
  33192. extra: 1045/984,
  33193. bottom: 14/1059
  33194. }
  33195. },
  33196. wing: {
  33197. height: math.unit(2.67, "feet"),
  33198. name: "Wing",
  33199. image: {
  33200. source: "./media/characters/necrolance/wing.svg"
  33201. }
  33202. },
  33203. },
  33204. [
  33205. {
  33206. name: "Normal",
  33207. height: math.unit(7, "feet"),
  33208. default: true
  33209. },
  33210. ]
  33211. ))
  33212. characterMakers.push(() => makeCharacter(
  33213. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33214. {
  33215. front: {
  33216. height: math.unit(76, "meters"),
  33217. weight: math.unit(30000, "tons"),
  33218. name: "Front",
  33219. image: {
  33220. source: "./media/characters/tyler/front.svg",
  33221. extra: 1640/1640,
  33222. bottom: 114/1754
  33223. }
  33224. },
  33225. },
  33226. [
  33227. {
  33228. name: "Macro",
  33229. height: math.unit(76, "meters"),
  33230. default: true
  33231. },
  33232. ]
  33233. ))
  33234. characterMakers.push(() => makeCharacter(
  33235. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33236. {
  33237. front: {
  33238. height: math.unit(4 + 11/12, "feet"),
  33239. weight: math.unit(132, "lb"),
  33240. name: "Front",
  33241. image: {
  33242. source: "./media/characters/icey/front.svg",
  33243. extra: 2750/2550,
  33244. bottom: 33/2783
  33245. }
  33246. },
  33247. back: {
  33248. height: math.unit(4 + 11/12, "feet"),
  33249. weight: math.unit(132, "lb"),
  33250. name: "Back",
  33251. image: {
  33252. source: "./media/characters/icey/back.svg",
  33253. extra: 2624/2481,
  33254. bottom: 35/2659
  33255. }
  33256. },
  33257. },
  33258. [
  33259. {
  33260. name: "Normal",
  33261. height: math.unit(4 + 11/12, "feet"),
  33262. default: true
  33263. },
  33264. ]
  33265. ))
  33266. characterMakers.push(() => makeCharacter(
  33267. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33268. {
  33269. front: {
  33270. height: math.unit(100, "feet"),
  33271. weight: math.unit(0, "lb"),
  33272. name: "Front",
  33273. image: {
  33274. source: "./media/characters/smile/front.svg",
  33275. extra: 2983/2912,
  33276. bottom: 162/3145
  33277. }
  33278. },
  33279. back: {
  33280. height: math.unit(100, "feet"),
  33281. weight: math.unit(0, "lb"),
  33282. name: "Back",
  33283. image: {
  33284. source: "./media/characters/smile/back.svg",
  33285. extra: 3143/3031,
  33286. bottom: 91/3234
  33287. }
  33288. },
  33289. head: {
  33290. height: math.unit(26.3, "feet"),
  33291. weight: math.unit(0, "lb"),
  33292. name: "Head",
  33293. image: {
  33294. source: "./media/characters/smile/head.svg"
  33295. }
  33296. },
  33297. collar: {
  33298. height: math.unit(5.3, "feet"),
  33299. weight: math.unit(0, "lb"),
  33300. name: "Collar",
  33301. image: {
  33302. source: "./media/characters/smile/collar.svg"
  33303. }
  33304. },
  33305. },
  33306. [
  33307. {
  33308. name: "Macro",
  33309. height: math.unit(100, "feet"),
  33310. default: true
  33311. },
  33312. ]
  33313. ))
  33314. characterMakers.push(() => makeCharacter(
  33315. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33316. {
  33317. dragon: {
  33318. height: math.unit(26, "feet"),
  33319. weight: math.unit(36, "tons"),
  33320. name: "Dragon",
  33321. image: {
  33322. source: "./media/characters/arimphae/dragon.svg",
  33323. extra: 1574/983,
  33324. bottom: 357/1931
  33325. }
  33326. },
  33327. drake: {
  33328. height: math.unit(9, "feet"),
  33329. weight: math.unit(1.5, "tons"),
  33330. name: "Drake",
  33331. image: {
  33332. source: "./media/characters/arimphae/drake.svg",
  33333. extra: 1120/925,
  33334. bottom: 435/1555
  33335. }
  33336. },
  33337. },
  33338. [
  33339. {
  33340. name: "Small",
  33341. height: math.unit(26*5/9, "feet")
  33342. },
  33343. {
  33344. name: "Normal",
  33345. height: math.unit(26, "feet"),
  33346. default: true
  33347. },
  33348. ]
  33349. ))
  33350. characterMakers.push(() => makeCharacter(
  33351. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33352. {
  33353. front: {
  33354. height: math.unit(8 + 9/12, "feet"),
  33355. name: "Front",
  33356. image: {
  33357. source: "./media/characters/xander/front.svg",
  33358. extra: 1237/974,
  33359. bottom: 94/1331
  33360. }
  33361. },
  33362. },
  33363. [
  33364. {
  33365. name: "Normal",
  33366. height: math.unit(8 + 9/12, "feet"),
  33367. default: true
  33368. },
  33369. {
  33370. name: "Gaze Grabber",
  33371. height: math.unit(13 + 8/12, "feet")
  33372. },
  33373. {
  33374. name: "Jaw Dropper",
  33375. height: math.unit(27, "feet")
  33376. },
  33377. {
  33378. name: "Show Stopper",
  33379. height: math.unit(136, "feet")
  33380. },
  33381. {
  33382. name: "Superstar",
  33383. height: math.unit(1.9e6, "miles")
  33384. },
  33385. ]
  33386. ))
  33387. characterMakers.push(() => makeCharacter(
  33388. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33389. {
  33390. side: {
  33391. height: math.unit(2100, "feet"),
  33392. name: "Side",
  33393. image: {
  33394. source: "./media/characters/osiris/side.svg",
  33395. extra: 1105/939,
  33396. bottom: 167/1272
  33397. }
  33398. },
  33399. },
  33400. [
  33401. {
  33402. name: "Macro",
  33403. height: math.unit(2100, "feet"),
  33404. default: true
  33405. },
  33406. ]
  33407. ))
  33408. characterMakers.push(() => makeCharacter(
  33409. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33410. {
  33411. front: {
  33412. height: math.unit(6 + 8/12, "feet"),
  33413. weight: math.unit(225, "lb"),
  33414. name: "Front",
  33415. image: {
  33416. source: "./media/characters/rhys-londe/front.svg",
  33417. extra: 2258/2141,
  33418. bottom: 188/2446
  33419. }
  33420. },
  33421. back: {
  33422. height: math.unit(6 + 8/12, "feet"),
  33423. weight: math.unit(225, "lb"),
  33424. name: "Back",
  33425. image: {
  33426. source: "./media/characters/rhys-londe/back.svg",
  33427. extra: 2237/2137,
  33428. bottom: 63/2300
  33429. }
  33430. },
  33431. frontNsfw: {
  33432. height: math.unit(6 + 8/12, "feet"),
  33433. weight: math.unit(225, "lb"),
  33434. name: "Front (NSFW)",
  33435. image: {
  33436. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33437. extra: 2258/2141,
  33438. bottom: 188/2446
  33439. }
  33440. },
  33441. backNsfw: {
  33442. height: math.unit(6 + 8/12, "feet"),
  33443. weight: math.unit(225, "lb"),
  33444. name: "Back (NSFW)",
  33445. image: {
  33446. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33447. extra: 2237/2137,
  33448. bottom: 63/2300
  33449. }
  33450. },
  33451. dick: {
  33452. height: math.unit(30, "inches"),
  33453. name: "Dick",
  33454. image: {
  33455. source: "./media/characters/rhys-londe/dick.svg"
  33456. }
  33457. },
  33458. maw: {
  33459. height: math.unit(1.6, "feet"),
  33460. name: "Maw",
  33461. image: {
  33462. source: "./media/characters/rhys-londe/maw.svg"
  33463. }
  33464. },
  33465. },
  33466. [
  33467. {
  33468. name: "Normal",
  33469. height: math.unit(6 + 8/12, "feet"),
  33470. default: true
  33471. },
  33472. ]
  33473. ))
  33474. characterMakers.push(() => makeCharacter(
  33475. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33476. {
  33477. front: {
  33478. height: math.unit(3 + 10/12, "feet"),
  33479. weight: math.unit(90, "lb"),
  33480. name: "Front",
  33481. image: {
  33482. source: "./media/characters/taivas-ensim/front.svg",
  33483. extra: 1327/1216,
  33484. bottom: 96/1423
  33485. }
  33486. },
  33487. back: {
  33488. height: math.unit(3 + 10/12, "feet"),
  33489. weight: math.unit(90, "lb"),
  33490. name: "Back",
  33491. image: {
  33492. source: "./media/characters/taivas-ensim/back.svg",
  33493. extra: 1355/1247,
  33494. bottom: 11/1366
  33495. }
  33496. },
  33497. frontNsfw: {
  33498. height: math.unit(3 + 10/12, "feet"),
  33499. weight: math.unit(90, "lb"),
  33500. name: "Front (NSFW)",
  33501. image: {
  33502. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33503. extra: 1327/1216,
  33504. bottom: 96/1423
  33505. }
  33506. },
  33507. backNsfw: {
  33508. height: math.unit(3 + 10/12, "feet"),
  33509. weight: math.unit(90, "lb"),
  33510. name: "Back (NSFW)",
  33511. image: {
  33512. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33513. extra: 1355/1247,
  33514. bottom: 11/1366
  33515. }
  33516. },
  33517. },
  33518. [
  33519. {
  33520. name: "Normal",
  33521. height: math.unit(3 + 10/12, "feet"),
  33522. default: true
  33523. },
  33524. ]
  33525. ))
  33526. characterMakers.push(() => makeCharacter(
  33527. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33528. {
  33529. front: {
  33530. height: math.unit(9 + 6/12, "feet"),
  33531. weight: math.unit(940, "lb"),
  33532. name: "Front",
  33533. image: {
  33534. source: "./media/characters/byliss/front.svg",
  33535. extra: 1327/1290,
  33536. bottom: 82/1409
  33537. }
  33538. },
  33539. back: {
  33540. height: math.unit(9 + 6/12, "feet"),
  33541. weight: math.unit(940, "lb"),
  33542. name: "Back",
  33543. image: {
  33544. source: "./media/characters/byliss/back.svg",
  33545. extra: 1376/1349,
  33546. bottom: 9/1385
  33547. }
  33548. },
  33549. frontNsfw: {
  33550. height: math.unit(9 + 6/12, "feet"),
  33551. weight: math.unit(940, "lb"),
  33552. name: "Front (NSFW)",
  33553. image: {
  33554. source: "./media/characters/byliss/front-nsfw.svg",
  33555. extra: 1327/1290,
  33556. bottom: 82/1409
  33557. }
  33558. },
  33559. backNsfw: {
  33560. height: math.unit(9 + 6/12, "feet"),
  33561. weight: math.unit(940, "lb"),
  33562. name: "Back (NSFW)",
  33563. image: {
  33564. source: "./media/characters/byliss/back-nsfw.svg",
  33565. extra: 1376/1349,
  33566. bottom: 9/1385
  33567. }
  33568. },
  33569. },
  33570. [
  33571. {
  33572. name: "Normal",
  33573. height: math.unit(9 + 6/12, "feet"),
  33574. default: true
  33575. },
  33576. ]
  33577. ))
  33578. characterMakers.push(() => makeCharacter(
  33579. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33580. {
  33581. front: {
  33582. height: math.unit(5 + 2/12, "feet"),
  33583. weight: math.unit(200, "lb"),
  33584. name: "Front",
  33585. image: {
  33586. source: "./media/characters/noraly/front.svg",
  33587. extra: 4985/4773,
  33588. bottom: 150/5135
  33589. }
  33590. },
  33591. full: {
  33592. height: math.unit(5 + 2/12, "feet"),
  33593. weight: math.unit(164, "lb"),
  33594. name: "Full",
  33595. image: {
  33596. source: "./media/characters/noraly/full.svg",
  33597. extra: 1114/1059,
  33598. bottom: 35/1149
  33599. }
  33600. },
  33601. fuller: {
  33602. height: math.unit(5 + 2/12, "feet"),
  33603. weight: math.unit(230, "lb"),
  33604. name: "Fuller",
  33605. image: {
  33606. source: "./media/characters/noraly/fuller.svg",
  33607. extra: 1114/1059,
  33608. bottom: 35/1149
  33609. }
  33610. },
  33611. fullest: {
  33612. height: math.unit(5 + 2/12, "feet"),
  33613. weight: math.unit(300, "lb"),
  33614. name: "Fullest",
  33615. image: {
  33616. source: "./media/characters/noraly/fullest.svg",
  33617. extra: 1114/1059,
  33618. bottom: 35/1149
  33619. }
  33620. },
  33621. },
  33622. [
  33623. {
  33624. name: "Normal",
  33625. height: math.unit(5 + 2/12, "feet"),
  33626. default: true
  33627. },
  33628. ]
  33629. ))
  33630. characterMakers.push(() => makeCharacter(
  33631. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33632. {
  33633. front: {
  33634. height: math.unit(5 + 2/12, "feet"),
  33635. weight: math.unit(210, "lb"),
  33636. name: "Front",
  33637. image: {
  33638. source: "./media/characters/pera/front.svg",
  33639. extra: 1560/1531,
  33640. bottom: 165/1725
  33641. }
  33642. },
  33643. back: {
  33644. height: math.unit(5 + 2/12, "feet"),
  33645. weight: math.unit(210, "lb"),
  33646. name: "Back",
  33647. image: {
  33648. source: "./media/characters/pera/back.svg",
  33649. extra: 1523/1493,
  33650. bottom: 152/1675
  33651. }
  33652. },
  33653. dick: {
  33654. height: math.unit(2.4, "feet"),
  33655. name: "Dick",
  33656. image: {
  33657. source: "./media/characters/pera/dick.svg"
  33658. }
  33659. },
  33660. },
  33661. [
  33662. {
  33663. name: "Normal",
  33664. height: math.unit(5 + 2/12, "feet"),
  33665. default: true
  33666. },
  33667. ]
  33668. ))
  33669. characterMakers.push(() => makeCharacter(
  33670. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33671. {
  33672. front: {
  33673. height: math.unit(12, "feet"),
  33674. weight: math.unit(3200, "lb"),
  33675. name: "Front",
  33676. image: {
  33677. source: "./media/characters/julian/front.svg",
  33678. extra: 2962/2701,
  33679. bottom: 184/3146
  33680. }
  33681. },
  33682. maw: {
  33683. height: math.unit(5.35, "feet"),
  33684. name: "Maw",
  33685. image: {
  33686. source: "./media/characters/julian/maw.svg"
  33687. }
  33688. },
  33689. paw: {
  33690. height: math.unit(3.07, "feet"),
  33691. name: "Paw",
  33692. image: {
  33693. source: "./media/characters/julian/paw.svg"
  33694. }
  33695. },
  33696. },
  33697. [
  33698. {
  33699. name: "Default",
  33700. height: math.unit(12, "feet"),
  33701. default: true
  33702. },
  33703. {
  33704. name: "Big",
  33705. height: math.unit(50, "feet")
  33706. },
  33707. {
  33708. name: "Really Big",
  33709. height: math.unit(1, "mile")
  33710. },
  33711. {
  33712. name: "Extremely Big",
  33713. height: math.unit(100, "miles")
  33714. },
  33715. {
  33716. name: "Planet Hugger",
  33717. height: math.unit(200, "megameters")
  33718. },
  33719. {
  33720. name: "Unreasonably Big",
  33721. height: math.unit(1e300, "meters")
  33722. },
  33723. ]
  33724. ))
  33725. characterMakers.push(() => makeCharacter(
  33726. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33727. {
  33728. solgooleo: {
  33729. height: math.unit(4, "meters"),
  33730. weight: math.unit(6000*1.5, "kg"),
  33731. volume: math.unit(6000, "liters"),
  33732. name: "Solgooleo",
  33733. image: {
  33734. source: "./media/characters/pi/solgooleo.svg",
  33735. extra: 388/331,
  33736. bottom: 29/417
  33737. }
  33738. },
  33739. },
  33740. [
  33741. {
  33742. name: "Normal",
  33743. height: math.unit(4, "meters"),
  33744. default: true
  33745. },
  33746. ]
  33747. ))
  33748. characterMakers.push(() => makeCharacter(
  33749. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33750. {
  33751. front: {
  33752. height: math.unit(8, "feet"),
  33753. weight: math.unit(4, "tons"),
  33754. name: "Front",
  33755. image: {
  33756. source: "./media/characters/shaun/front.svg",
  33757. extra: 503/495,
  33758. bottom: 20/523
  33759. }
  33760. },
  33761. back: {
  33762. height: math.unit(8, "feet"),
  33763. weight: math.unit(4, "tons"),
  33764. name: "Back",
  33765. image: {
  33766. source: "./media/characters/shaun/back.svg",
  33767. extra: 487/480,
  33768. bottom: 20/507
  33769. }
  33770. },
  33771. },
  33772. [
  33773. {
  33774. name: "Lorg",
  33775. height: math.unit(8, "feet"),
  33776. default: true
  33777. },
  33778. ]
  33779. ))
  33780. characterMakers.push(() => makeCharacter(
  33781. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33782. {
  33783. frontAnthro: {
  33784. height: math.unit(7, "feet"),
  33785. name: "Front",
  33786. image: {
  33787. source: "./media/characters/sini/front-anthro.svg",
  33788. extra: 726/678,
  33789. bottom: 35/761
  33790. },
  33791. form: "anthro",
  33792. default: true
  33793. },
  33794. backAnthro: {
  33795. height: math.unit(7, "feet"),
  33796. name: "Back",
  33797. image: {
  33798. source: "./media/characters/sini/back-anthro.svg",
  33799. extra: 743/701,
  33800. bottom: 12/755
  33801. },
  33802. form: "anthro",
  33803. },
  33804. frontAnthroNsfw: {
  33805. height: math.unit(7, "feet"),
  33806. name: "Front (NSFW)",
  33807. image: {
  33808. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33809. extra: 726/678,
  33810. bottom: 35/761
  33811. },
  33812. form: "anthro"
  33813. },
  33814. backAnthroNsfw: {
  33815. height: math.unit(7, "feet"),
  33816. name: "Back (NSFW)",
  33817. image: {
  33818. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33819. extra: 743/701,
  33820. bottom: 12/755
  33821. },
  33822. form: "anthro",
  33823. },
  33824. mawAnthro: {
  33825. height: math.unit(2.14, "feet"),
  33826. name: "Maw",
  33827. image: {
  33828. source: "./media/characters/sini/maw-anthro.svg"
  33829. },
  33830. form: "anthro"
  33831. },
  33832. dick: {
  33833. height: math.unit(1.45, "feet"),
  33834. name: "Dick",
  33835. image: {
  33836. source: "./media/characters/sini/dick-anthro.svg"
  33837. },
  33838. form: "anthro"
  33839. },
  33840. feral: {
  33841. height: math.unit(16, "feet"),
  33842. name: "Feral",
  33843. image: {
  33844. source: "./media/characters/sini/feral.svg",
  33845. extra: 814/605,
  33846. bottom: 11/825
  33847. },
  33848. form: "feral",
  33849. default: true
  33850. },
  33851. feralNsfw: {
  33852. height: math.unit(16, "feet"),
  33853. name: "Feral (NSFW)",
  33854. image: {
  33855. source: "./media/characters/sini/feral-nsfw.svg",
  33856. extra: 814/605,
  33857. bottom: 11/825
  33858. },
  33859. form: "feral"
  33860. },
  33861. mawFeral: {
  33862. height: math.unit(5.66, "feet"),
  33863. name: "Maw",
  33864. image: {
  33865. source: "./media/characters/sini/maw-feral.svg"
  33866. },
  33867. form: "feral",
  33868. },
  33869. pawFeral: {
  33870. height: math.unit(5.17, "feet"),
  33871. name: "Paw",
  33872. image: {
  33873. source: "./media/characters/sini/paw-feral.svg"
  33874. },
  33875. form: "feral",
  33876. },
  33877. rumpFeral: {
  33878. height: math.unit(13.11, "feet"),
  33879. name: "Rump",
  33880. image: {
  33881. source: "./media/characters/sini/rump-feral.svg"
  33882. },
  33883. form: "feral",
  33884. },
  33885. dickFeral: {
  33886. height: math.unit(1, "feet"),
  33887. name: "Dick",
  33888. image: {
  33889. source: "./media/characters/sini/dick-feral.svg"
  33890. },
  33891. form: "feral",
  33892. },
  33893. eyeFeral: {
  33894. height: math.unit(1.23, "feet"),
  33895. name: "Eye",
  33896. image: {
  33897. source: "./media/characters/sini/eye-feral.svg"
  33898. },
  33899. form: "feral",
  33900. },
  33901. },
  33902. [
  33903. {
  33904. name: "Normal",
  33905. height: math.unit(7, "feet"),
  33906. default: true,
  33907. form: "anthro"
  33908. },
  33909. {
  33910. name: "Normal",
  33911. height: math.unit(16, "feet"),
  33912. default: true,
  33913. form: "feral"
  33914. },
  33915. ],
  33916. {
  33917. "anthro": {
  33918. name: "Anthro",
  33919. default: true
  33920. },
  33921. "feral": {
  33922. name: "Feral",
  33923. }
  33924. }
  33925. ))
  33926. characterMakers.push(() => makeCharacter(
  33927. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33928. {
  33929. side: {
  33930. height: math.unit(47.2, "meters"),
  33931. weight: math.unit(10000, "tons"),
  33932. name: "Side",
  33933. image: {
  33934. source: "./media/characters/raylldo/side.svg",
  33935. extra: 2363/642,
  33936. bottom: 221/2584
  33937. }
  33938. },
  33939. top: {
  33940. height: math.unit(240, "meters"),
  33941. weight: math.unit(10000, "tons"),
  33942. name: "Top",
  33943. image: {
  33944. source: "./media/characters/raylldo/top.svg"
  33945. }
  33946. },
  33947. bottom: {
  33948. height: math.unit(240, "meters"),
  33949. weight: math.unit(10000, "tons"),
  33950. name: "Bottom",
  33951. image: {
  33952. source: "./media/characters/raylldo/bottom.svg"
  33953. }
  33954. },
  33955. head: {
  33956. height: math.unit(38.6, "meters"),
  33957. name: "Head",
  33958. image: {
  33959. source: "./media/characters/raylldo/head.svg",
  33960. extra: 1335/1112,
  33961. bottom: 0/1335
  33962. }
  33963. },
  33964. maw: {
  33965. height: math.unit(16.37, "meters"),
  33966. name: "Maw",
  33967. image: {
  33968. source: "./media/characters/raylldo/maw.svg",
  33969. extra: 883/660,
  33970. bottom: 0/883
  33971. },
  33972. extraAttributes: {
  33973. preyCapacity: {
  33974. name: "Capacity",
  33975. power: 3,
  33976. type: "volume",
  33977. base: math.unit(1000, "people")
  33978. },
  33979. tongueSize: {
  33980. name: "Tongue Size",
  33981. power: 2,
  33982. type: "area",
  33983. base: math.unit(21, "m^2")
  33984. }
  33985. }
  33986. },
  33987. forepaw: {
  33988. height: math.unit(18, "meters"),
  33989. name: "Forepaw",
  33990. image: {
  33991. source: "./media/characters/raylldo/forepaw.svg"
  33992. }
  33993. },
  33994. hindpaw: {
  33995. height: math.unit(23, "meters"),
  33996. name: "Hindpaw",
  33997. image: {
  33998. source: "./media/characters/raylldo/hindpaw.svg"
  33999. }
  34000. },
  34001. genitals: {
  34002. height: math.unit(42, "meters"),
  34003. name: "Genitals",
  34004. image: {
  34005. source: "./media/characters/raylldo/genitals.svg"
  34006. }
  34007. },
  34008. },
  34009. [
  34010. {
  34011. name: "Normal",
  34012. height: math.unit(47.2, "meters"),
  34013. default: true
  34014. },
  34015. ]
  34016. ))
  34017. characterMakers.push(() => makeCharacter(
  34018. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34019. {
  34020. anthroFront: {
  34021. height: math.unit(9, "feet"),
  34022. weight: math.unit(600, "lb"),
  34023. name: "Anthro (Front)",
  34024. image: {
  34025. source: "./media/characters/glint/anthro-front.svg",
  34026. extra: 1097/1018,
  34027. bottom: 28/1125
  34028. }
  34029. },
  34030. anthroBack: {
  34031. height: math.unit(9, "feet"),
  34032. weight: math.unit(600, "lb"),
  34033. name: "Anthro (Back)",
  34034. image: {
  34035. source: "./media/characters/glint/anthro-back.svg",
  34036. extra: 1154/997,
  34037. bottom: 36/1190
  34038. }
  34039. },
  34040. feral: {
  34041. height: math.unit(11, "feet"),
  34042. weight: math.unit(50000, "lb"),
  34043. name: "Feral",
  34044. image: {
  34045. source: "./media/characters/glint/feral.svg",
  34046. extra: 3035/1585,
  34047. bottom: 1169/4204
  34048. }
  34049. },
  34050. dickAnthro: {
  34051. height: math.unit(0.7, "meters"),
  34052. name: "Dick (Anthro)",
  34053. image: {
  34054. source: "./media/characters/glint/dick-anthro.svg"
  34055. }
  34056. },
  34057. dickFeral: {
  34058. height: math.unit(2.65, "meters"),
  34059. name: "Dick (Feral)",
  34060. image: {
  34061. source: "./media/characters/glint/dick-feral.svg"
  34062. }
  34063. },
  34064. slitHidden: {
  34065. height: math.unit(5.85, "meters"),
  34066. name: "Slit (Hidden)",
  34067. image: {
  34068. source: "./media/characters/glint/slit-hidden.svg"
  34069. }
  34070. },
  34071. slitErect: {
  34072. height: math.unit(5.85, "meters"),
  34073. name: "Slit (Erect)",
  34074. image: {
  34075. source: "./media/characters/glint/slit-erect.svg"
  34076. }
  34077. },
  34078. mawAnthro: {
  34079. height: math.unit(0.63, "meters"),
  34080. name: "Maw (Anthro)",
  34081. image: {
  34082. source: "./media/characters/glint/maw.svg"
  34083. }
  34084. },
  34085. mawFeral: {
  34086. height: math.unit(2.89, "meters"),
  34087. name: "Maw (Feral)",
  34088. image: {
  34089. source: "./media/characters/glint/maw.svg"
  34090. }
  34091. },
  34092. },
  34093. [
  34094. {
  34095. name: "Normal",
  34096. height: math.unit(9, "feet"),
  34097. default: true
  34098. },
  34099. ]
  34100. ))
  34101. characterMakers.push(() => makeCharacter(
  34102. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34103. {
  34104. side: {
  34105. height: math.unit(15, "feet"),
  34106. weight: math.unit(5000, "kg"),
  34107. name: "Side",
  34108. image: {
  34109. source: "./media/characters/kairne/side.svg",
  34110. extra: 979/811,
  34111. bottom: 13/992
  34112. }
  34113. },
  34114. front: {
  34115. height: math.unit(15, "feet"),
  34116. weight: math.unit(5000, "kg"),
  34117. name: "Front",
  34118. image: {
  34119. source: "./media/characters/kairne/front.svg",
  34120. extra: 908/814,
  34121. bottom: 26/934
  34122. }
  34123. },
  34124. sideNsfw: {
  34125. height: math.unit(15, "feet"),
  34126. weight: math.unit(5000, "kg"),
  34127. name: "Side (NSFW)",
  34128. image: {
  34129. source: "./media/characters/kairne/side-nsfw.svg",
  34130. extra: 979/811,
  34131. bottom: 13/992
  34132. }
  34133. },
  34134. frontNsfw: {
  34135. height: math.unit(15, "feet"),
  34136. weight: math.unit(5000, "kg"),
  34137. name: "Front (NSFW)",
  34138. image: {
  34139. source: "./media/characters/kairne/front-nsfw.svg",
  34140. extra: 908/814,
  34141. bottom: 26/934
  34142. }
  34143. },
  34144. dickCaged: {
  34145. height: math.unit(0.65, "meters"),
  34146. name: "Dick-caged",
  34147. image: {
  34148. source: "./media/characters/kairne/dick-caged.svg"
  34149. }
  34150. },
  34151. dick: {
  34152. height: math.unit(0.79, "meters"),
  34153. name: "Dick",
  34154. image: {
  34155. source: "./media/characters/kairne/dick.svg"
  34156. }
  34157. },
  34158. genitals: {
  34159. height: math.unit(1.29, "meters"),
  34160. name: "Genitals",
  34161. image: {
  34162. source: "./media/characters/kairne/genitals.svg"
  34163. }
  34164. },
  34165. maw: {
  34166. height: math.unit(1.73, "meters"),
  34167. name: "Maw",
  34168. image: {
  34169. source: "./media/characters/kairne/maw.svg"
  34170. }
  34171. },
  34172. },
  34173. [
  34174. {
  34175. name: "Normal",
  34176. height: math.unit(15, "feet"),
  34177. default: true
  34178. },
  34179. ]
  34180. ))
  34181. characterMakers.push(() => makeCharacter(
  34182. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34183. {
  34184. front: {
  34185. height: math.unit(5 + 8/12, "feet"),
  34186. weight: math.unit(139, "lb"),
  34187. name: "Front",
  34188. image: {
  34189. source: "./media/characters/biscuit-jackal/front.svg",
  34190. extra: 2106/1961,
  34191. bottom: 58/2164
  34192. }
  34193. },
  34194. back: {
  34195. height: math.unit(5 + 8/12, "feet"),
  34196. weight: math.unit(139, "lb"),
  34197. name: "Back",
  34198. image: {
  34199. source: "./media/characters/biscuit-jackal/back.svg",
  34200. extra: 2132/1976,
  34201. bottom: 57/2189
  34202. }
  34203. },
  34204. werejackal: {
  34205. height: math.unit(6 + 3/12, "feet"),
  34206. weight: math.unit(188, "lb"),
  34207. name: "Werejackal",
  34208. image: {
  34209. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34210. extra: 2373/2178,
  34211. bottom: 53/2426
  34212. }
  34213. },
  34214. },
  34215. [
  34216. {
  34217. name: "Normal",
  34218. height: math.unit(5 + 8/12, "feet"),
  34219. default: true
  34220. },
  34221. ]
  34222. ))
  34223. characterMakers.push(() => makeCharacter(
  34224. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34225. {
  34226. front: {
  34227. height: math.unit(140, "cm"),
  34228. weight: math.unit(45, "kg"),
  34229. name: "Front",
  34230. image: {
  34231. source: "./media/characters/tayra-white/front.svg",
  34232. extra: 2229/2192,
  34233. bottom: 75/2304
  34234. }
  34235. },
  34236. },
  34237. [
  34238. {
  34239. name: "Normal",
  34240. height: math.unit(140, "cm"),
  34241. default: true
  34242. },
  34243. ]
  34244. ))
  34245. characterMakers.push(() => makeCharacter(
  34246. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34247. {
  34248. front: {
  34249. height: math.unit(4 + 5/12, "feet"),
  34250. name: "Front",
  34251. image: {
  34252. source: "./media/characters/scoop/front.svg",
  34253. extra: 1257/1136,
  34254. bottom: 69/1326
  34255. }
  34256. },
  34257. back: {
  34258. height: math.unit(4 + 5/12, "feet"),
  34259. name: "Back",
  34260. image: {
  34261. source: "./media/characters/scoop/back.svg",
  34262. extra: 1321/1152,
  34263. bottom: 32/1353
  34264. }
  34265. },
  34266. maw: {
  34267. height: math.unit(0.68, "feet"),
  34268. name: "Maw",
  34269. image: {
  34270. source: "./media/characters/scoop/maw.svg"
  34271. }
  34272. },
  34273. },
  34274. [
  34275. {
  34276. name: "Really Small",
  34277. height: math.unit(1, "mm")
  34278. },
  34279. {
  34280. name: "Micro",
  34281. height: math.unit(1, "inch")
  34282. },
  34283. {
  34284. name: "Normal",
  34285. height: math.unit(4 + 5/12, "feet"),
  34286. default: true
  34287. },
  34288. {
  34289. name: "Macro",
  34290. height: math.unit(200, "feet")
  34291. },
  34292. {
  34293. name: "Megamacro",
  34294. height: math.unit(3240, "feet")
  34295. },
  34296. {
  34297. name: "Teramacro",
  34298. height: math.unit(2500, "miles")
  34299. },
  34300. ]
  34301. ))
  34302. characterMakers.push(() => makeCharacter(
  34303. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34304. {
  34305. front: {
  34306. height: math.unit(15 + 7/12, "feet"),
  34307. weight: math.unit(1150, "tons"),
  34308. name: "Front",
  34309. image: {
  34310. source: "./media/characters/saphinara/front.svg",
  34311. extra: 1837/1643,
  34312. bottom: 84/1921
  34313. },
  34314. form: "normal",
  34315. default: true
  34316. },
  34317. side: {
  34318. height: math.unit(15 + 7/12, "feet"),
  34319. weight: math.unit(1150, "tons"),
  34320. name: "Side",
  34321. image: {
  34322. source: "./media/characters/saphinara/side.svg",
  34323. extra: 605/547,
  34324. bottom: 6/611
  34325. },
  34326. form: "normal"
  34327. },
  34328. back: {
  34329. height: math.unit(15 + 7/12, "feet"),
  34330. weight: math.unit(1150, "tons"),
  34331. name: "Back",
  34332. image: {
  34333. source: "./media/characters/saphinara/back.svg",
  34334. extra: 591/531,
  34335. bottom: 13/604
  34336. },
  34337. form: "normal"
  34338. },
  34339. frontTail: {
  34340. height: math.unit(15 + 7/12, "feet"),
  34341. weight: math.unit(1150, "tons"),
  34342. name: "Front (Full Tail)",
  34343. image: {
  34344. source: "./media/characters/saphinara/front-tail.svg",
  34345. extra: 2256/1630,
  34346. bottom: 261/2517
  34347. },
  34348. form: "normal"
  34349. },
  34350. insides: {
  34351. height: math.unit(11.92, "feet"),
  34352. name: "Insides",
  34353. image: {
  34354. source: "./media/characters/saphinara/insides.svg"
  34355. },
  34356. form: "normal"
  34357. },
  34358. head: {
  34359. height: math.unit(4.17, "feet"),
  34360. name: "Head",
  34361. image: {
  34362. source: "./media/characters/saphinara/head.svg"
  34363. },
  34364. form: "normal"
  34365. },
  34366. tongue: {
  34367. height: math.unit(4.60, "feet"),
  34368. name: "Tongue",
  34369. image: {
  34370. source: "./media/characters/saphinara/tongue.svg"
  34371. },
  34372. form: "normal"
  34373. },
  34374. headEnraged: {
  34375. height: math.unit(5.55, "feet"),
  34376. name: "Head (Enraged)",
  34377. image: {
  34378. source: "./media/characters/saphinara/head-enraged.svg"
  34379. },
  34380. form: "normal"
  34381. },
  34382. wings: {
  34383. height: math.unit(11.95, "feet"),
  34384. name: "Wings",
  34385. image: {
  34386. source: "./media/characters/saphinara/wings.svg"
  34387. },
  34388. form: "normal"
  34389. },
  34390. feathers: {
  34391. height: math.unit(8.92, "feet"),
  34392. name: "Feathers",
  34393. image: {
  34394. source: "./media/characters/saphinara/feathers.svg"
  34395. },
  34396. form: "normal"
  34397. },
  34398. shackles: {
  34399. height: math.unit(2, "feet"),
  34400. name: "Shackles",
  34401. image: {
  34402. source: "./media/characters/saphinara/shackles.svg"
  34403. },
  34404. form: "normal"
  34405. },
  34406. eyes: {
  34407. height: math.unit(1.331, "feet"),
  34408. name: "Eyes",
  34409. image: {
  34410. source: "./media/characters/saphinara/eyes.svg"
  34411. },
  34412. form: "normal"
  34413. },
  34414. eyesEnraged: {
  34415. height: math.unit(1.331, "feet"),
  34416. name: "Eyes (Enraged)",
  34417. image: {
  34418. source: "./media/characters/saphinara/eyes-enraged.svg"
  34419. },
  34420. form: "normal"
  34421. },
  34422. trueFormSide: {
  34423. height: math.unit(200, "feet"),
  34424. weight: math.unit(1e7, "tons"),
  34425. name: "Side",
  34426. image: {
  34427. source: "./media/characters/saphinara/true-form-side.svg",
  34428. extra: 1399/770,
  34429. bottom: 97/1496
  34430. },
  34431. form: "true-form",
  34432. default: true
  34433. },
  34434. trueFormMaw: {
  34435. height: math.unit(71.5, "feet"),
  34436. name: "Maw",
  34437. image: {
  34438. source: "./media/characters/saphinara/true-form-maw.svg",
  34439. extra: 2302/1453,
  34440. bottom: 0/2302
  34441. },
  34442. form: "true-form"
  34443. },
  34444. meowberusSide: {
  34445. height: math.unit(75, "feet"),
  34446. weight: math.unit(180000, "kg"),
  34447. name: "Side",
  34448. image: {
  34449. source: "./media/characters/saphinara/meowberus-side.svg",
  34450. extra: 1400/711,
  34451. bottom: 126/1526
  34452. },
  34453. form: "meowberus",
  34454. },
  34455. },
  34456. [
  34457. {
  34458. name: "Normal",
  34459. height: math.unit(15 + 7/12, "feet"),
  34460. default: true,
  34461. form: "normal"
  34462. },
  34463. {
  34464. name: "Angry",
  34465. height: math.unit(30 + 6/12, "feet"),
  34466. form: "normal"
  34467. },
  34468. {
  34469. name: "Enraged",
  34470. height: math.unit(102 + 1/12, "feet"),
  34471. form: "normal"
  34472. },
  34473. {
  34474. name: "True",
  34475. height: math.unit(200, "feet"),
  34476. default: true,
  34477. form: "true-form"
  34478. },
  34479. {
  34480. name: "Normal",
  34481. height: math.unit(75, "feet"),
  34482. default: true,
  34483. form: "meowberus"
  34484. },
  34485. ],
  34486. {
  34487. "normal": {
  34488. name: "Normal",
  34489. default: true
  34490. },
  34491. "true-form": {
  34492. name: "True Form"
  34493. },
  34494. "meowberus": {
  34495. name: "Meowberus",
  34496. },
  34497. }
  34498. ))
  34499. characterMakers.push(() => makeCharacter(
  34500. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34501. {
  34502. front: {
  34503. height: math.unit(6 + 8/12, "feet"),
  34504. weight: math.unit(300, "lb"),
  34505. name: "Front",
  34506. image: {
  34507. source: "./media/characters/jrain/front.svg",
  34508. extra: 3039/2865,
  34509. bottom: 399/3438
  34510. }
  34511. },
  34512. back: {
  34513. height: math.unit(6 + 8/12, "feet"),
  34514. weight: math.unit(300, "lb"),
  34515. name: "Back",
  34516. image: {
  34517. source: "./media/characters/jrain/back.svg",
  34518. extra: 3089/2938,
  34519. bottom: 172/3261
  34520. }
  34521. },
  34522. head: {
  34523. height: math.unit(2.14, "feet"),
  34524. name: "Head",
  34525. image: {
  34526. source: "./media/characters/jrain/head.svg"
  34527. }
  34528. },
  34529. maw: {
  34530. height: math.unit(1.77, "feet"),
  34531. name: "Maw",
  34532. image: {
  34533. source: "./media/characters/jrain/maw.svg"
  34534. }
  34535. },
  34536. leftHand: {
  34537. height: math.unit(1.1, "feet"),
  34538. name: "Left Hand",
  34539. image: {
  34540. source: "./media/characters/jrain/left-hand.svg"
  34541. }
  34542. },
  34543. rightHand: {
  34544. height: math.unit(1.1, "feet"),
  34545. name: "Right Hand",
  34546. image: {
  34547. source: "./media/characters/jrain/right-hand.svg"
  34548. }
  34549. },
  34550. eye: {
  34551. height: math.unit(0.35, "feet"),
  34552. name: "Eye",
  34553. image: {
  34554. source: "./media/characters/jrain/eye.svg"
  34555. }
  34556. },
  34557. },
  34558. [
  34559. {
  34560. name: "Normal",
  34561. height: math.unit(6 + 8/12, "feet"),
  34562. default: true
  34563. },
  34564. {
  34565. name: "Casually Large",
  34566. height: math.unit(25, "feet")
  34567. },
  34568. {
  34569. name: "Giant",
  34570. height: math.unit(100, "feet")
  34571. },
  34572. {
  34573. name: "Kaiju",
  34574. height: math.unit(300, "feet")
  34575. },
  34576. ]
  34577. ))
  34578. characterMakers.push(() => makeCharacter(
  34579. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34580. {
  34581. dragon: {
  34582. height: math.unit(5, "meters"),
  34583. name: "Dragon",
  34584. image: {
  34585. source: "./media/characters/sabrina/dragon.svg",
  34586. extra: 3670 / 2365,
  34587. bottom: 333 / 4003
  34588. }
  34589. },
  34590. gryphon: {
  34591. height: math.unit(3, "meters"),
  34592. name: "Gryphon",
  34593. image: {
  34594. source: "./media/characters/sabrina/gryphon.svg",
  34595. extra: 1576 / 945,
  34596. bottom: 71 / 1647
  34597. }
  34598. },
  34599. snake: {
  34600. height: math.unit(12, "meters"),
  34601. name: "Snake",
  34602. image: {
  34603. source: "./media/characters/sabrina/snake.svg",
  34604. extra: 1758 / 1320,
  34605. bottom: 186 / 1944
  34606. }
  34607. },
  34608. collar: {
  34609. height: math.unit(1.86, "meters"),
  34610. name: "Collar",
  34611. image: {
  34612. source: "./media/characters/sabrina/collar.svg"
  34613. }
  34614. },
  34615. eye: {
  34616. height: math.unit(0.53, "meters"),
  34617. name: "Eye",
  34618. image: {
  34619. source: "./media/characters/sabrina/eye.svg"
  34620. }
  34621. },
  34622. foot: {
  34623. height: math.unit(1.86, "meters"),
  34624. name: "Foot",
  34625. image: {
  34626. source: "./media/characters/sabrina/foot.svg"
  34627. }
  34628. },
  34629. hand: {
  34630. height: math.unit(1.32, "meters"),
  34631. name: "Hand",
  34632. image: {
  34633. source: "./media/characters/sabrina/hand.svg"
  34634. }
  34635. },
  34636. head: {
  34637. height: math.unit(2.44, "meters"),
  34638. name: "Head",
  34639. image: {
  34640. source: "./media/characters/sabrina/head.svg"
  34641. }
  34642. },
  34643. headAngry: {
  34644. height: math.unit(2.44, "meters"),
  34645. name: "Head (Angry))",
  34646. image: {
  34647. source: "./media/characters/sabrina/head-angry.svg"
  34648. }
  34649. },
  34650. maw: {
  34651. height: math.unit(1.65, "meters"),
  34652. name: "Maw",
  34653. image: {
  34654. source: "./media/characters/sabrina/maw.svg"
  34655. }
  34656. },
  34657. spikes: {
  34658. height: math.unit(1.69, "meters"),
  34659. name: "Spikes",
  34660. image: {
  34661. source: "./media/characters/sabrina/spikes.svg"
  34662. }
  34663. },
  34664. stomach: {
  34665. height: math.unit(1.15, "meters"),
  34666. name: "Stomach",
  34667. image: {
  34668. source: "./media/characters/sabrina/stomach.svg"
  34669. }
  34670. },
  34671. tongue: {
  34672. height: math.unit(1.27, "meters"),
  34673. name: "Tongue",
  34674. image: {
  34675. source: "./media/characters/sabrina/tongue.svg"
  34676. }
  34677. },
  34678. wingDorsal: {
  34679. height: math.unit(4.85, "meters"),
  34680. name: "Wing (Dorsal)",
  34681. image: {
  34682. source: "./media/characters/sabrina/wing-dorsal.svg"
  34683. }
  34684. },
  34685. wingVentral: {
  34686. height: math.unit(4.85, "meters"),
  34687. name: "Wing (Ventral)",
  34688. image: {
  34689. source: "./media/characters/sabrina/wing-ventral.svg"
  34690. }
  34691. },
  34692. },
  34693. [
  34694. {
  34695. name: "Normal",
  34696. height: math.unit(5, "meters"),
  34697. default: true
  34698. },
  34699. ]
  34700. ))
  34701. characterMakers.push(() => makeCharacter(
  34702. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34703. {
  34704. frontMaid: {
  34705. height: math.unit(5 + 5/12, "feet"),
  34706. weight: math.unit(130, "lb"),
  34707. name: "Front (Maid)",
  34708. image: {
  34709. source: "./media/characters/midnight-tales/front-maid.svg",
  34710. extra: 489/454,
  34711. bottom: 61/550
  34712. }
  34713. },
  34714. frontFormal: {
  34715. height: math.unit(5 + 5/12, "feet"),
  34716. weight: math.unit(130, "lb"),
  34717. name: "Front (Formal)",
  34718. image: {
  34719. source: "./media/characters/midnight-tales/front-formal.svg",
  34720. extra: 489/454,
  34721. bottom: 61/550
  34722. }
  34723. },
  34724. back: {
  34725. height: math.unit(5 + 5/12, "feet"),
  34726. weight: math.unit(130, "lb"),
  34727. name: "Back",
  34728. image: {
  34729. source: "./media/characters/midnight-tales/back.svg",
  34730. extra: 498/456,
  34731. bottom: 33/531
  34732. }
  34733. },
  34734. frontBeast: {
  34735. height: math.unit(40, "feet"),
  34736. weight: math.unit(64000, "lb"),
  34737. name: "Front (Beast)",
  34738. image: {
  34739. source: "./media/characters/midnight-tales/front-beast.svg",
  34740. extra: 927/860,
  34741. bottom: 53/980
  34742. }
  34743. },
  34744. backBeast: {
  34745. height: math.unit(40, "feet"),
  34746. weight: math.unit(64000, "lb"),
  34747. name: "Back (Beast)",
  34748. image: {
  34749. source: "./media/characters/midnight-tales/back-beast.svg",
  34750. extra: 929/855,
  34751. bottom: 16/945
  34752. }
  34753. },
  34754. footBeast: {
  34755. height: math.unit(6.7, "feet"),
  34756. name: "Foot (Beast)",
  34757. image: {
  34758. source: "./media/characters/midnight-tales/foot-beast.svg"
  34759. }
  34760. },
  34761. headBeast: {
  34762. height: math.unit(8, "feet"),
  34763. name: "Head (Beast)",
  34764. image: {
  34765. source: "./media/characters/midnight-tales/head-beast.svg"
  34766. }
  34767. },
  34768. },
  34769. [
  34770. {
  34771. name: "Normal",
  34772. height: math.unit(5 + 5 / 12, "feet"),
  34773. default: true
  34774. },
  34775. {
  34776. name: "Macro",
  34777. height: math.unit(25, "feet")
  34778. },
  34779. ]
  34780. ))
  34781. characterMakers.push(() => makeCharacter(
  34782. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34783. {
  34784. front: {
  34785. height: math.unit(5 + 10/12, "feet"),
  34786. name: "Front",
  34787. image: {
  34788. source: "./media/characters/argon/front.svg",
  34789. extra: 2009/1935,
  34790. bottom: 118/2127
  34791. }
  34792. },
  34793. back: {
  34794. height: math.unit(5 + 10/12, "feet"),
  34795. name: "Back",
  34796. image: {
  34797. source: "./media/characters/argon/back.svg",
  34798. extra: 2047/1992,
  34799. bottom: 20/2067
  34800. }
  34801. },
  34802. frontDressed: {
  34803. height: math.unit(5 + 10/12, "feet"),
  34804. name: "Front (Dressed)",
  34805. image: {
  34806. source: "./media/characters/argon/front-dressed.svg",
  34807. extra: 2009/1935,
  34808. bottom: 118/2127
  34809. }
  34810. },
  34811. },
  34812. [
  34813. {
  34814. name: "Normal",
  34815. height: math.unit(5 + 10/12, "feet"),
  34816. default: true
  34817. },
  34818. ]
  34819. ))
  34820. characterMakers.push(() => makeCharacter(
  34821. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34822. {
  34823. front: {
  34824. height: math.unit(8 + 6/12, "feet"),
  34825. weight: math.unit(1150, "lb"),
  34826. name: "Front",
  34827. image: {
  34828. source: "./media/characters/kichi/front.svg",
  34829. extra: 1267/1164,
  34830. bottom: 61/1328
  34831. }
  34832. },
  34833. back: {
  34834. height: math.unit(8 + 6/12, "feet"),
  34835. weight: math.unit(1150, "lb"),
  34836. name: "Back",
  34837. image: {
  34838. source: "./media/characters/kichi/back.svg",
  34839. extra: 1273/1166,
  34840. bottom: 33/1306
  34841. }
  34842. },
  34843. },
  34844. [
  34845. {
  34846. name: "Normal",
  34847. height: math.unit(8 + 6/12, "feet"),
  34848. default: true
  34849. },
  34850. ]
  34851. ))
  34852. characterMakers.push(() => makeCharacter(
  34853. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34854. {
  34855. front: {
  34856. height: math.unit(6, "feet"),
  34857. weight: math.unit(210, "lb"),
  34858. name: "Front",
  34859. image: {
  34860. source: "./media/characters/manetel-greyscale/front.svg",
  34861. extra: 350/312,
  34862. bottom: 8/358
  34863. }
  34864. },
  34865. },
  34866. [
  34867. {
  34868. name: "Micro",
  34869. height: math.unit(2, "inches")
  34870. },
  34871. {
  34872. name: "Normal",
  34873. height: math.unit(6, "feet"),
  34874. default: true
  34875. },
  34876. {
  34877. name: "Minimacro",
  34878. height: math.unit(17, "feet")
  34879. },
  34880. {
  34881. name: "Macro",
  34882. height: math.unit(117, "feet")
  34883. },
  34884. ]
  34885. ))
  34886. characterMakers.push(() => makeCharacter(
  34887. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34888. {
  34889. side: {
  34890. height: math.unit(5 + 1/12, "feet"),
  34891. weight: math.unit(418, "lb"),
  34892. name: "Side",
  34893. image: {
  34894. source: "./media/characters/softpurr/side.svg",
  34895. extra: 1993/1945,
  34896. bottom: 134/2127
  34897. }
  34898. },
  34899. front: {
  34900. height: math.unit(5 + 1/12, "feet"),
  34901. weight: math.unit(418, "lb"),
  34902. name: "Front",
  34903. image: {
  34904. source: "./media/characters/softpurr/front.svg",
  34905. extra: 1950/1856,
  34906. bottom: 174/2124
  34907. }
  34908. },
  34909. paw: {
  34910. height: math.unit(1, "feet"),
  34911. name: "Paw",
  34912. image: {
  34913. source: "./media/characters/softpurr/paw.svg"
  34914. }
  34915. },
  34916. },
  34917. [
  34918. {
  34919. name: "Normal",
  34920. height: math.unit(5 + 1/12, "feet"),
  34921. default: true
  34922. },
  34923. ]
  34924. ))
  34925. characterMakers.push(() => makeCharacter(
  34926. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34927. {
  34928. front: {
  34929. height: math.unit(260, "meters"),
  34930. name: "Front",
  34931. image: {
  34932. source: "./media/characters/anahita/front.svg",
  34933. extra: 665/635,
  34934. bottom: 89/754
  34935. }
  34936. },
  34937. },
  34938. [
  34939. {
  34940. name: "Macro",
  34941. height: math.unit(260, "meters"),
  34942. default: true
  34943. },
  34944. ]
  34945. ))
  34946. characterMakers.push(() => makeCharacter(
  34947. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34948. {
  34949. front: {
  34950. height: math.unit(4 + 10/12, "feet"),
  34951. weight: math.unit(160, "lb"),
  34952. name: "Front",
  34953. image: {
  34954. source: "./media/characters/chip-mouse/front.svg",
  34955. extra: 3528/3408,
  34956. bottom: 0/3528
  34957. }
  34958. },
  34959. frontNsfw: {
  34960. height: math.unit(4 + 10/12, "feet"),
  34961. weight: math.unit(160, "lb"),
  34962. name: "Front (NSFW)",
  34963. image: {
  34964. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34965. extra: 3528/3408,
  34966. bottom: 0/3528
  34967. }
  34968. },
  34969. },
  34970. [
  34971. {
  34972. name: "Normal",
  34973. height: math.unit(4 + 10/12, "feet"),
  34974. default: true
  34975. },
  34976. ]
  34977. ))
  34978. characterMakers.push(() => makeCharacter(
  34979. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34980. {
  34981. side: {
  34982. height: math.unit(10, "feet"),
  34983. weight: math.unit(14000, "lb"),
  34984. name: "Side",
  34985. image: {
  34986. source: "./media/characters/kremm/side.svg",
  34987. extra: 1390/1053,
  34988. bottom: 90/1480
  34989. }
  34990. },
  34991. gut: {
  34992. height: math.unit(5.8, "feet"),
  34993. name: "Gut",
  34994. image: {
  34995. source: "./media/characters/kremm/gut.svg"
  34996. }
  34997. },
  34998. ass: {
  34999. height: math.unit(6.1, "feet"),
  35000. name: "Ass",
  35001. image: {
  35002. source: "./media/characters/kremm/ass.svg"
  35003. }
  35004. },
  35005. jaws: {
  35006. height: math.unit(2.2, "feet"),
  35007. name: "Jaws",
  35008. image: {
  35009. source: "./media/characters/kremm/jaws.svg"
  35010. }
  35011. },
  35012. dick: {
  35013. height: math.unit(4.26, "feet"),
  35014. name: "Dick",
  35015. image: {
  35016. source: "./media/characters/kremm/dick.svg"
  35017. }
  35018. },
  35019. },
  35020. [
  35021. {
  35022. name: "Normal",
  35023. height: math.unit(10, "feet"),
  35024. default: true
  35025. },
  35026. ]
  35027. ))
  35028. characterMakers.push(() => makeCharacter(
  35029. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35030. {
  35031. front: {
  35032. height: math.unit(30, "stories"),
  35033. name: "Front",
  35034. image: {
  35035. source: "./media/characters/kai/front.svg",
  35036. extra: 1892/1718,
  35037. bottom: 162/2054
  35038. }
  35039. },
  35040. },
  35041. [
  35042. {
  35043. name: "Macro",
  35044. height: math.unit(30, "stories"),
  35045. default: true
  35046. },
  35047. ]
  35048. ))
  35049. characterMakers.push(() => makeCharacter(
  35050. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35051. {
  35052. front: {
  35053. height: math.unit(6 + 4/12, "feet"),
  35054. weight: math.unit(145, "lb"),
  35055. name: "Front",
  35056. image: {
  35057. source: "./media/characters/sykes/front.svg",
  35058. extra: 1321 / 1187,
  35059. bottom: 66 / 1387
  35060. }
  35061. },
  35062. back: {
  35063. height: math.unit(6 + 4/12, "feet"),
  35064. weight: math.unit(145, "lb"),
  35065. name: "Back",
  35066. image: {
  35067. source: "./media/characters/sykes/back.svg",
  35068. extra: 1326/1181,
  35069. bottom: 31/1357
  35070. }
  35071. },
  35072. traditionalOutfit: {
  35073. height: math.unit(6 + 4/12, "feet"),
  35074. weight: math.unit(145, "lb"),
  35075. name: "Traditional Outfit",
  35076. image: {
  35077. source: "./media/characters/sykes/traditional-outfit.svg",
  35078. extra: 1321 / 1187,
  35079. bottom: 66 / 1387
  35080. }
  35081. },
  35082. adventureOutfit: {
  35083. height: math.unit(6 + 4/12, "feet"),
  35084. weight: math.unit(145, "lb"),
  35085. name: "Adventure Outfit",
  35086. image: {
  35087. source: "./media/characters/sykes/adventure-outfit.svg",
  35088. extra: 1321 / 1187,
  35089. bottom: 66 / 1387
  35090. }
  35091. },
  35092. handLeft: {
  35093. height: math.unit(0.9, "feet"),
  35094. name: "Hand (Left)",
  35095. image: {
  35096. source: "./media/characters/sykes/hand-left.svg"
  35097. }
  35098. },
  35099. handRight: {
  35100. height: math.unit(0.839, "feet"),
  35101. name: "Hand (Right)",
  35102. image: {
  35103. source: "./media/characters/sykes/hand-right.svg"
  35104. }
  35105. },
  35106. leftFoot: {
  35107. height: math.unit(1.2, "feet"),
  35108. name: "Foot (Left)",
  35109. image: {
  35110. source: "./media/characters/sykes/foot-left.svg"
  35111. }
  35112. },
  35113. rightFoot: {
  35114. height: math.unit(1.2, "feet"),
  35115. name: "Foot (Right)",
  35116. image: {
  35117. source: "./media/characters/sykes/foot-right.svg"
  35118. }
  35119. },
  35120. maw: {
  35121. height: math.unit(1.93, "feet"),
  35122. name: "Maw",
  35123. image: {
  35124. source: "./media/characters/sykes/maw.svg"
  35125. }
  35126. },
  35127. teeth: {
  35128. height: math.unit(0.51, "feet"),
  35129. name: "Teeth",
  35130. image: {
  35131. source: "./media/characters/sykes/teeth.svg"
  35132. }
  35133. },
  35134. tongue: {
  35135. height: math.unit(2.13, "feet"),
  35136. name: "Tongue",
  35137. image: {
  35138. source: "./media/characters/sykes/tongue.svg"
  35139. }
  35140. },
  35141. uvula: {
  35142. height: math.unit(0.16, "feet"),
  35143. name: "Uvula",
  35144. image: {
  35145. source: "./media/characters/sykes/uvula.svg"
  35146. }
  35147. },
  35148. collar: {
  35149. height: math.unit(0.287, "feet"),
  35150. name: "Collar",
  35151. image: {
  35152. source: "./media/characters/sykes/collar.svg"
  35153. }
  35154. },
  35155. tail: {
  35156. height: math.unit(3.8, "feet"),
  35157. name: "Tail",
  35158. image: {
  35159. source: "./media/characters/sykes/tail.svg"
  35160. }
  35161. },
  35162. },
  35163. [
  35164. {
  35165. name: "Shrunken",
  35166. height: math.unit(5, "inches")
  35167. },
  35168. {
  35169. name: "Normal",
  35170. height: math.unit(6 + 4 / 12, "feet"),
  35171. default: true
  35172. },
  35173. {
  35174. name: "Big",
  35175. height: math.unit(15, "feet")
  35176. },
  35177. ]
  35178. ))
  35179. characterMakers.push(() => makeCharacter(
  35180. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35181. {
  35182. front: {
  35183. height: math.unit(5 + 8/12, "feet"),
  35184. weight: math.unit(190, "lb"),
  35185. name: "Front",
  35186. image: {
  35187. source: "./media/characters/oven-otter/front.svg",
  35188. extra: 1809/1740,
  35189. bottom: 181/1990
  35190. }
  35191. },
  35192. back: {
  35193. height: math.unit(5 + 8/12, "feet"),
  35194. weight: math.unit(190, "lb"),
  35195. name: "Back",
  35196. image: {
  35197. source: "./media/characters/oven-otter/back.svg",
  35198. extra: 1709/1635,
  35199. bottom: 118/1827
  35200. }
  35201. },
  35202. hand: {
  35203. height: math.unit(1.07, "feet"),
  35204. name: "Hand",
  35205. image: {
  35206. source: "./media/characters/oven-otter/hand.svg"
  35207. }
  35208. },
  35209. beans: {
  35210. height: math.unit(1.74, "feet"),
  35211. name: "Beans",
  35212. image: {
  35213. source: "./media/characters/oven-otter/beans.svg"
  35214. }
  35215. },
  35216. },
  35217. [
  35218. {
  35219. name: "Micro",
  35220. height: math.unit(0.5, "inches")
  35221. },
  35222. {
  35223. name: "Normal",
  35224. height: math.unit(5 + 8/12, "feet"),
  35225. default: true
  35226. },
  35227. {
  35228. name: "Macro",
  35229. height: math.unit(250, "feet")
  35230. },
  35231. {
  35232. name: "Really High",
  35233. height: math.unit(420, "feet")
  35234. },
  35235. ]
  35236. ))
  35237. characterMakers.push(() => makeCharacter(
  35238. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35239. {
  35240. front: {
  35241. height: math.unit(5, "meters"),
  35242. weight: math.unit(292000000000000, "kg"),
  35243. name: "Front",
  35244. image: {
  35245. source: "./media/characters/devourer/front.svg",
  35246. extra: 1800/1733,
  35247. bottom: 211/2011
  35248. }
  35249. },
  35250. maw: {
  35251. height: math.unit(1.1, "meter"),
  35252. name: "Maw",
  35253. image: {
  35254. source: "./media/characters/devourer/maw.svg"
  35255. }
  35256. },
  35257. },
  35258. [
  35259. {
  35260. name: "Small",
  35261. height: math.unit(3, "meters")
  35262. },
  35263. {
  35264. name: "Large",
  35265. height: math.unit(5, "meters"),
  35266. default: true
  35267. },
  35268. ]
  35269. ))
  35270. characterMakers.push(() => makeCharacter(
  35271. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35272. {
  35273. front: {
  35274. height: math.unit(6, "feet"),
  35275. weight: math.unit(400, "lb"),
  35276. name: "Front",
  35277. image: {
  35278. source: "./media/characters/ellarby/front.svg",
  35279. extra: 1909/1763,
  35280. bottom: 80/1989
  35281. }
  35282. },
  35283. back: {
  35284. height: math.unit(6, "feet"),
  35285. weight: math.unit(400, "lb"),
  35286. name: "Back",
  35287. image: {
  35288. source: "./media/characters/ellarby/back.svg",
  35289. extra: 1914/1784,
  35290. bottom: 172/2086
  35291. }
  35292. },
  35293. },
  35294. [
  35295. {
  35296. name: "Mischief",
  35297. height: math.unit(18, "inches")
  35298. },
  35299. {
  35300. name: "Trouble",
  35301. height: math.unit(12, "feet")
  35302. },
  35303. {
  35304. name: "Havoc",
  35305. height: math.unit(200, "feet"),
  35306. default: true
  35307. },
  35308. {
  35309. name: "Pandemonium",
  35310. height: math.unit(1, "mile")
  35311. },
  35312. {
  35313. name: "Catastrophe",
  35314. height: math.unit(100, "miles")
  35315. },
  35316. ]
  35317. ))
  35318. characterMakers.push(() => makeCharacter(
  35319. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35320. {
  35321. front: {
  35322. height: math.unit(4.7, "meters"),
  35323. weight: math.unit(6500, "kg"),
  35324. name: "Front",
  35325. image: {
  35326. source: "./media/characters/vex/front.svg",
  35327. extra: 1288/1140,
  35328. bottom: 100/1388
  35329. }
  35330. },
  35331. },
  35332. [
  35333. {
  35334. name: "Normal",
  35335. height: math.unit(4.7, "meters"),
  35336. default: true
  35337. },
  35338. ]
  35339. ))
  35340. characterMakers.push(() => makeCharacter(
  35341. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35342. {
  35343. normal: {
  35344. height: math.unit(6, "feet"),
  35345. weight: math.unit(350, "lb"),
  35346. name: "Normal",
  35347. image: {
  35348. source: "./media/characters/teshy/normal.svg",
  35349. extra: 1795/1735,
  35350. bottom: 16/1811
  35351. }
  35352. },
  35353. monsterFront: {
  35354. height: math.unit(12, "feet"),
  35355. weight: math.unit(4700, "lb"),
  35356. name: "Monster (Front)",
  35357. image: {
  35358. source: "./media/characters/teshy/monster-front.svg",
  35359. extra: 2042/2034,
  35360. bottom: 128/2170
  35361. }
  35362. },
  35363. monsterSide: {
  35364. height: math.unit(12, "feet"),
  35365. weight: math.unit(4700, "lb"),
  35366. name: "Monster (Side)",
  35367. image: {
  35368. source: "./media/characters/teshy/monster-side.svg",
  35369. extra: 2067/2056,
  35370. bottom: 70/2137
  35371. }
  35372. },
  35373. monsterBack: {
  35374. height: math.unit(12, "feet"),
  35375. weight: math.unit(4700, "lb"),
  35376. name: "Monster (Back)",
  35377. image: {
  35378. source: "./media/characters/teshy/monster-back.svg",
  35379. extra: 1921/1914,
  35380. bottom: 171/2092
  35381. }
  35382. },
  35383. },
  35384. [
  35385. {
  35386. name: "Normal",
  35387. height: math.unit(6, "feet"),
  35388. default: true
  35389. },
  35390. ]
  35391. ))
  35392. characterMakers.push(() => makeCharacter(
  35393. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35394. {
  35395. front: {
  35396. height: math.unit(6, "feet"),
  35397. name: "Front",
  35398. image: {
  35399. source: "./media/characters/ramey/front.svg",
  35400. extra: 790/787,
  35401. bottom: 27/817
  35402. }
  35403. },
  35404. },
  35405. [
  35406. {
  35407. name: "Normal",
  35408. height: math.unit(6, "feet"),
  35409. default: true
  35410. },
  35411. ]
  35412. ))
  35413. characterMakers.push(() => makeCharacter(
  35414. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35415. {
  35416. front: {
  35417. height: math.unit(5 + 5/12, "feet"),
  35418. weight: math.unit(120, "lb"),
  35419. name: "Front",
  35420. image: {
  35421. source: "./media/characters/phirae/front.svg",
  35422. extra: 2491/2436,
  35423. bottom: 38/2529
  35424. }
  35425. },
  35426. },
  35427. [
  35428. {
  35429. name: "Normal",
  35430. height: math.unit(5 + 5/12, "feet"),
  35431. default: true
  35432. },
  35433. ]
  35434. ))
  35435. characterMakers.push(() => makeCharacter(
  35436. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35437. {
  35438. front: {
  35439. height: math.unit(5 + 3/12, "feet"),
  35440. name: "Front",
  35441. image: {
  35442. source: "./media/characters/stagglas/front.svg",
  35443. extra: 962/882,
  35444. bottom: 53/1015
  35445. }
  35446. },
  35447. feral: {
  35448. height: math.unit(335, "cm"),
  35449. name: "Feral",
  35450. image: {
  35451. source: "./media/characters/stagglas/feral.svg",
  35452. extra: 1732/1090,
  35453. bottom: 48/1780
  35454. }
  35455. },
  35456. },
  35457. [
  35458. {
  35459. name: "Normal",
  35460. height: math.unit(5 + 3/12, "feet"),
  35461. default: true
  35462. },
  35463. ]
  35464. ))
  35465. characterMakers.push(() => makeCharacter(
  35466. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35467. {
  35468. front: {
  35469. height: math.unit(5 + 4/12, "feet"),
  35470. weight: math.unit(145, "lb"),
  35471. name: "Front",
  35472. image: {
  35473. source: "./media/characters/starra/front.svg",
  35474. extra: 1790/1691,
  35475. bottom: 91/1881
  35476. }
  35477. },
  35478. },
  35479. [
  35480. {
  35481. name: "Normal",
  35482. height: math.unit(5 + 4/12, "feet"),
  35483. default: true
  35484. },
  35485. ]
  35486. ))
  35487. characterMakers.push(() => makeCharacter(
  35488. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35489. {
  35490. front: {
  35491. height: math.unit(2.2, "meters"),
  35492. name: "Front",
  35493. image: {
  35494. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35495. extra: 1194/1005,
  35496. bottom: 25/1219
  35497. }
  35498. },
  35499. },
  35500. [
  35501. {
  35502. name: "Normal",
  35503. height: math.unit(2.2, "meters"),
  35504. default: true
  35505. },
  35506. ]
  35507. ))
  35508. characterMakers.push(() => makeCharacter(
  35509. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35510. {
  35511. side: {
  35512. height: math.unit(8 + 2/12, "feet"),
  35513. weight: math.unit(1240, "lb"),
  35514. name: "Side",
  35515. image: {
  35516. source: "./media/characters/mika-valentine/side.svg",
  35517. extra: 2670/2501,
  35518. bottom: 250/2920
  35519. }
  35520. },
  35521. },
  35522. [
  35523. {
  35524. name: "Normal",
  35525. height: math.unit(8 + 2/12, "feet"),
  35526. default: true
  35527. },
  35528. ]
  35529. ))
  35530. characterMakers.push(() => makeCharacter(
  35531. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35532. {
  35533. front: {
  35534. height: math.unit(7 + 2/12, "feet"),
  35535. name: "Front",
  35536. image: {
  35537. source: "./media/characters/xoltol/front.svg",
  35538. extra: 2212/2124,
  35539. bottom: 84/2296
  35540. }
  35541. },
  35542. side: {
  35543. height: math.unit(7 + 2/12, "feet"),
  35544. name: "Side",
  35545. image: {
  35546. source: "./media/characters/xoltol/side.svg",
  35547. extra: 2273/2197,
  35548. bottom: 26/2299
  35549. }
  35550. },
  35551. hand: {
  35552. height: math.unit(2.5, "feet"),
  35553. name: "Hand",
  35554. image: {
  35555. source: "./media/characters/xoltol/hand.svg"
  35556. }
  35557. },
  35558. },
  35559. [
  35560. {
  35561. name: "Small-ish",
  35562. height: math.unit(5 + 11/12, "feet")
  35563. },
  35564. {
  35565. name: "Normal",
  35566. height: math.unit(7 + 2/12, "feet")
  35567. },
  35568. {
  35569. name: "\"Macro\"",
  35570. height: math.unit(14 + 9/12, "feet"),
  35571. default: true
  35572. },
  35573. {
  35574. name: "Alternate Height",
  35575. height: math.unit(20, "feet")
  35576. },
  35577. {
  35578. name: "Actually Macro",
  35579. height: math.unit(100, "feet")
  35580. },
  35581. ]
  35582. ))
  35583. characterMakers.push(() => makeCharacter(
  35584. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35585. {
  35586. front: {
  35587. height: math.unit(5 + 2/12, "feet"),
  35588. name: "Front",
  35589. image: {
  35590. source: "./media/characters/kotetsu-redwood/front.svg",
  35591. extra: 1053/942,
  35592. bottom: 60/1113
  35593. }
  35594. },
  35595. },
  35596. [
  35597. {
  35598. name: "Normal",
  35599. height: math.unit(5 + 2/12, "feet"),
  35600. default: true
  35601. },
  35602. ]
  35603. ))
  35604. characterMakers.push(() => makeCharacter(
  35605. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35606. {
  35607. front: {
  35608. height: math.unit(2.4, "meters"),
  35609. weight: math.unit(125, "kg"),
  35610. name: "Front",
  35611. image: {
  35612. source: "./media/characters/lilith/front.svg",
  35613. extra: 1590/1513,
  35614. bottom: 203/1793
  35615. }
  35616. },
  35617. },
  35618. [
  35619. {
  35620. name: "Humanoid",
  35621. height: math.unit(2.4, "meters")
  35622. },
  35623. {
  35624. name: "Normal",
  35625. height: math.unit(6, "meters"),
  35626. default: true
  35627. },
  35628. {
  35629. name: "Largest",
  35630. height: math.unit(55, "meters")
  35631. },
  35632. ]
  35633. ))
  35634. characterMakers.push(() => makeCharacter(
  35635. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35636. {
  35637. front: {
  35638. height: math.unit(8 + 4/12, "feet"),
  35639. weight: math.unit(535, "lb"),
  35640. name: "Front",
  35641. image: {
  35642. source: "./media/characters/beh'kah-bolger/front.svg",
  35643. extra: 1660/1603,
  35644. bottom: 37/1697
  35645. }
  35646. },
  35647. },
  35648. [
  35649. {
  35650. name: "Normal",
  35651. height: math.unit(8 + 4/12, "feet"),
  35652. default: true
  35653. },
  35654. {
  35655. name: "Kaiju",
  35656. height: math.unit(250, "feet")
  35657. },
  35658. {
  35659. name: "Still Growing",
  35660. height: math.unit(10, "miles")
  35661. },
  35662. {
  35663. name: "Continental",
  35664. height: math.unit(5000, "miles")
  35665. },
  35666. {
  35667. name: "Final Form",
  35668. height: math.unit(2500000, "miles")
  35669. },
  35670. ]
  35671. ))
  35672. characterMakers.push(() => makeCharacter(
  35673. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35674. {
  35675. front: {
  35676. height: math.unit(7 + 2/12, "feet"),
  35677. weight: math.unit(230, "kg"),
  35678. name: "Front",
  35679. image: {
  35680. source: "./media/characters/tatyana-milewska/front.svg",
  35681. extra: 1199/1150,
  35682. bottom: 86/1285
  35683. }
  35684. },
  35685. },
  35686. [
  35687. {
  35688. name: "Normal",
  35689. height: math.unit(7 + 2/12, "feet"),
  35690. default: true
  35691. },
  35692. {
  35693. name: "Big",
  35694. height: math.unit(12, "feet")
  35695. },
  35696. {
  35697. name: "Minimacro",
  35698. height: math.unit(20, "feet")
  35699. },
  35700. {
  35701. name: "Macro",
  35702. height: math.unit(120, "feet")
  35703. },
  35704. ]
  35705. ))
  35706. characterMakers.push(() => makeCharacter(
  35707. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35708. {
  35709. front: {
  35710. height: math.unit(7 + 8/12, "feet"),
  35711. weight: math.unit(152, "kg"),
  35712. name: "Front",
  35713. image: {
  35714. source: "./media/characters/helen-arri/front.svg",
  35715. extra: 440/423,
  35716. bottom: 14/454
  35717. }
  35718. },
  35719. back: {
  35720. height: math.unit(7 + 8/12, "feet"),
  35721. weight: math.unit(152, "kg"),
  35722. name: "Back",
  35723. image: {
  35724. source: "./media/characters/helen-arri/back.svg",
  35725. extra: 443/426,
  35726. bottom: 8/451
  35727. }
  35728. },
  35729. },
  35730. [
  35731. {
  35732. name: "Normal",
  35733. height: math.unit(7 + 8/12, "feet"),
  35734. default: true
  35735. },
  35736. {
  35737. name: "Big",
  35738. height: math.unit(14, "feet")
  35739. },
  35740. {
  35741. name: "Minimacro",
  35742. height: math.unit(24, "feet")
  35743. },
  35744. {
  35745. name: "Macro",
  35746. height: math.unit(140, "feet")
  35747. },
  35748. ]
  35749. ))
  35750. characterMakers.push(() => makeCharacter(
  35751. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35752. {
  35753. front: {
  35754. height: math.unit(6, "meters"),
  35755. name: "Front",
  35756. image: {
  35757. source: "./media/characters/ehanu-rehu/front.svg",
  35758. extra: 1800/1800,
  35759. bottom: 59/1859
  35760. }
  35761. },
  35762. },
  35763. [
  35764. {
  35765. name: "Normal",
  35766. height: math.unit(6, "meters"),
  35767. default: true
  35768. },
  35769. ]
  35770. ))
  35771. characterMakers.push(() => makeCharacter(
  35772. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35773. {
  35774. front: {
  35775. height: math.unit(7 + 3/12, "feet"),
  35776. name: "Front",
  35777. image: {
  35778. source: "./media/characters/renholder/front.svg",
  35779. extra: 3096/2960,
  35780. bottom: 250/3346
  35781. }
  35782. },
  35783. },
  35784. [
  35785. {
  35786. name: "Normal Bat",
  35787. height: math.unit(7 + 3/12, "feet"),
  35788. default: true
  35789. },
  35790. {
  35791. name: "Slightly Tall Bat",
  35792. height: math.unit(100, "feet")
  35793. },
  35794. {
  35795. name: "Big Bat",
  35796. height: math.unit(1000, "feet")
  35797. },
  35798. {
  35799. name: "City-Sized Bat",
  35800. height: math.unit(200000, "feet")
  35801. },
  35802. {
  35803. name: "Bigger Bat",
  35804. height: math.unit(10000, "miles")
  35805. },
  35806. {
  35807. name: "Solar Sized Bat",
  35808. height: math.unit(100, "AU")
  35809. },
  35810. {
  35811. name: "Galactic Bat",
  35812. height: math.unit(200000, "lightyears")
  35813. },
  35814. {
  35815. name: "Universally Known Bat",
  35816. height: math.unit(1, "universe")
  35817. },
  35818. ]
  35819. ))
  35820. characterMakers.push(() => makeCharacter(
  35821. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35822. {
  35823. front: {
  35824. height: math.unit(6 + 11/12, "feet"),
  35825. weight: math.unit(250, "lb"),
  35826. name: "Front",
  35827. image: {
  35828. source: "./media/characters/cookiecat/front.svg",
  35829. extra: 893/827,
  35830. bottom: 14/907
  35831. }
  35832. },
  35833. },
  35834. [
  35835. {
  35836. name: "Micro",
  35837. height: math.unit(3, "inches")
  35838. },
  35839. {
  35840. name: "Normal",
  35841. height: math.unit(6 + 11/12, "feet"),
  35842. default: true
  35843. },
  35844. {
  35845. name: "Macro",
  35846. height: math.unit(100, "feet")
  35847. },
  35848. {
  35849. name: "Macro+",
  35850. height: math.unit(404, "feet")
  35851. },
  35852. {
  35853. name: "Megamacro",
  35854. height: math.unit(165, "miles")
  35855. },
  35856. {
  35857. name: "Planetary",
  35858. height: math.unit(4600, "miles")
  35859. },
  35860. ]
  35861. ))
  35862. characterMakers.push(() => makeCharacter(
  35863. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35864. {
  35865. front: {
  35866. height: math.unit(10 + 3/12, "feet"),
  35867. weight: math.unit(1500, "lb"),
  35868. name: "Front",
  35869. image: {
  35870. source: "./media/characters/tux-kusanagi/front.svg",
  35871. extra: 944/840,
  35872. bottom: 39/983
  35873. }
  35874. },
  35875. back: {
  35876. height: math.unit(10 + 3/12, "feet"),
  35877. weight: math.unit(1500, "lb"),
  35878. name: "Back",
  35879. image: {
  35880. source: "./media/characters/tux-kusanagi/back.svg",
  35881. extra: 941/842,
  35882. bottom: 28/969
  35883. }
  35884. },
  35885. rump: {
  35886. height: math.unit(5.25, "feet"),
  35887. name: "Rump",
  35888. image: {
  35889. source: "./media/characters/tux-kusanagi/rump.svg"
  35890. }
  35891. },
  35892. beak: {
  35893. height: math.unit(1.54, "feet"),
  35894. name: "Beak",
  35895. image: {
  35896. source: "./media/characters/tux-kusanagi/beak.svg"
  35897. }
  35898. },
  35899. },
  35900. [
  35901. {
  35902. name: "Normal",
  35903. height: math.unit(10 + 3/12, "feet"),
  35904. default: true
  35905. },
  35906. ]
  35907. ))
  35908. characterMakers.push(() => makeCharacter(
  35909. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35910. {
  35911. front: {
  35912. height: math.unit(58, "feet"),
  35913. weight: math.unit(200, "tons"),
  35914. name: "Front",
  35915. image: {
  35916. source: "./media/characters/uzarmazari/front.svg",
  35917. extra: 1575/1455,
  35918. bottom: 152/1727
  35919. }
  35920. },
  35921. back: {
  35922. height: math.unit(58, "feet"),
  35923. weight: math.unit(200, "tons"),
  35924. name: "Back",
  35925. image: {
  35926. source: "./media/characters/uzarmazari/back.svg",
  35927. extra: 1585/1510,
  35928. bottom: 157/1742
  35929. }
  35930. },
  35931. head: {
  35932. height: math.unit(26, "feet"),
  35933. name: "Head",
  35934. image: {
  35935. source: "./media/characters/uzarmazari/head.svg"
  35936. }
  35937. },
  35938. },
  35939. [
  35940. {
  35941. name: "Normal",
  35942. height: math.unit(58, "feet"),
  35943. default: true
  35944. },
  35945. ]
  35946. ))
  35947. characterMakers.push(() => makeCharacter(
  35948. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35949. {
  35950. side: {
  35951. height: math.unit(15, "feet"),
  35952. name: "Side",
  35953. image: {
  35954. source: "./media/characters/akitu/side.svg",
  35955. extra: 1421/1321,
  35956. bottom: 157/1578
  35957. }
  35958. },
  35959. front: {
  35960. height: math.unit(15, "feet"),
  35961. name: "Front",
  35962. image: {
  35963. source: "./media/characters/akitu/front.svg",
  35964. extra: 1435/1326,
  35965. bottom: 232/1667
  35966. }
  35967. },
  35968. },
  35969. [
  35970. {
  35971. name: "Normal",
  35972. height: math.unit(15, "feet"),
  35973. default: true
  35974. },
  35975. ]
  35976. ))
  35977. characterMakers.push(() => makeCharacter(
  35978. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35979. {
  35980. front: {
  35981. height: math.unit(10 + 8/12, "feet"),
  35982. name: "Front",
  35983. image: {
  35984. source: "./media/characters/azalie-croixland/front.svg",
  35985. extra: 1972/1856,
  35986. bottom: 31/2003
  35987. }
  35988. },
  35989. },
  35990. [
  35991. {
  35992. name: "Original Height",
  35993. height: math.unit(5 + 4/12, "feet")
  35994. },
  35995. {
  35996. name: "Normal Height",
  35997. height: math.unit(10 + 8/12, "feet"),
  35998. default: true
  35999. },
  36000. ]
  36001. ))
  36002. characterMakers.push(() => makeCharacter(
  36003. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36004. {
  36005. side: {
  36006. height: math.unit(7 + 1/12, "feet"),
  36007. weight: math.unit(245, "lb"),
  36008. name: "Side",
  36009. image: {
  36010. source: "./media/characters/kavus-kazian/side.svg",
  36011. extra: 349/342,
  36012. bottom: 15/364
  36013. }
  36014. },
  36015. },
  36016. [
  36017. {
  36018. name: "Normal",
  36019. height: math.unit(7 + 1/12, "feet"),
  36020. default: true
  36021. },
  36022. ]
  36023. ))
  36024. characterMakers.push(() => makeCharacter(
  36025. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36026. {
  36027. normalFront: {
  36028. height: math.unit(5 + 11/12, "feet"),
  36029. name: "Front",
  36030. image: {
  36031. source: "./media/characters/moonlight-rose/normal-front.svg",
  36032. extra: 1980/1825,
  36033. bottom: 18/1998
  36034. },
  36035. form: "normal",
  36036. default: true
  36037. },
  36038. normalBack: {
  36039. height: math.unit(5 + 11/12, "feet"),
  36040. name: "Back",
  36041. image: {
  36042. source: "./media/characters/moonlight-rose/normal-back.svg",
  36043. extra: 2010/1839,
  36044. bottom: 10/2020
  36045. },
  36046. form: "normal"
  36047. },
  36048. demonFront: {
  36049. height: math.unit(1.5, "earths"),
  36050. name: "Front",
  36051. image: {
  36052. source: "./media/characters/moonlight-rose/demon.svg",
  36053. extra: 1400/1294,
  36054. bottom: 45/1445
  36055. },
  36056. form: "demon",
  36057. default: true
  36058. },
  36059. terraFront: {
  36060. height: math.unit(1.5, "earths"),
  36061. name: "Front",
  36062. image: {
  36063. source: "./media/characters/moonlight-rose/terra.svg"
  36064. },
  36065. form: "terra",
  36066. default: true
  36067. },
  36068. jupiterFront: {
  36069. height: math.unit(69911*2, "km"),
  36070. name: "Front",
  36071. image: {
  36072. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36073. extra: 1367/1286,
  36074. bottom: 55/1422
  36075. },
  36076. form: "jupiter",
  36077. default: true
  36078. },
  36079. neptuneFront: {
  36080. height: math.unit(24622*2, "feet"),
  36081. name: "Front",
  36082. image: {
  36083. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36084. extra: 1851/1712,
  36085. bottom: 0/1851
  36086. },
  36087. form: "neptune",
  36088. default: true
  36089. },
  36090. },
  36091. [
  36092. {
  36093. name: "\"Natural\" Height",
  36094. height: math.unit(5 + 11/12, "feet"),
  36095. form: "normal"
  36096. },
  36097. {
  36098. name: "Smallest comfortable size",
  36099. height: math.unit(40, "meters"),
  36100. form: "normal"
  36101. },
  36102. {
  36103. name: "Common size",
  36104. height: math.unit(50, "km"),
  36105. form: "normal",
  36106. default: true
  36107. },
  36108. {
  36109. name: "Normal",
  36110. height: math.unit(1.5, "earths"),
  36111. form: "demon",
  36112. default: true
  36113. },
  36114. {
  36115. name: "Universal",
  36116. height: math.unit(15, "universes"),
  36117. form: "demon"
  36118. },
  36119. {
  36120. name: "Earth",
  36121. height: math.unit(1.5, "earths"),
  36122. form: "terra",
  36123. default: true
  36124. },
  36125. {
  36126. name: "Super Earth",
  36127. height: math.unit(67.5, "earths"),
  36128. form: "terra"
  36129. },
  36130. {
  36131. name: "Doesn't fit in a solar system...",
  36132. height: math.unit(1, "galaxy"),
  36133. form: "terra"
  36134. },
  36135. {
  36136. name: "Saturn",
  36137. height: math.unit(58232*2, "km"),
  36138. form: "jupiter"
  36139. },
  36140. {
  36141. name: "Jupiter",
  36142. height: math.unit(69911*2, "km"),
  36143. form: "jupiter",
  36144. default: true
  36145. },
  36146. {
  36147. name: "HD 100546 b",
  36148. height: math.unit(482938, "km"),
  36149. form: "jupiter"
  36150. },
  36151. {
  36152. name: "Enceladus",
  36153. height: math.unit(513*2, "km"),
  36154. form: "neptune"
  36155. },
  36156. {
  36157. name: "Europe",
  36158. height: math.unit(1560*2, "km"),
  36159. form: "neptune"
  36160. },
  36161. {
  36162. name: "Neptune",
  36163. height: math.unit(24622*2, "km"),
  36164. form: "neptune",
  36165. default: true
  36166. },
  36167. {
  36168. name: "CoRoT-9b",
  36169. height: math.unit(75067*2, "km"),
  36170. form: "neptune"
  36171. },
  36172. ],
  36173. {
  36174. "normal": {
  36175. name: "Normal",
  36176. default: true
  36177. },
  36178. "demon": {
  36179. name: "Demon"
  36180. },
  36181. "terra": {
  36182. name: "Terra"
  36183. },
  36184. "jupiter": {
  36185. name: "Jupiter"
  36186. },
  36187. "neptune": {
  36188. name: "Neptune"
  36189. }
  36190. }
  36191. ))
  36192. characterMakers.push(() => makeCharacter(
  36193. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36194. {
  36195. front: {
  36196. height: math.unit(16, "feet"),
  36197. weight: math.unit(610, "kg"),
  36198. name: "Front",
  36199. image: {
  36200. source: "./media/characters/huckle/front.svg",
  36201. extra: 1731/1625,
  36202. bottom: 33/1764
  36203. }
  36204. },
  36205. back: {
  36206. height: math.unit(16, "feet"),
  36207. weight: math.unit(610, "kg"),
  36208. name: "Back",
  36209. image: {
  36210. source: "./media/characters/huckle/back.svg",
  36211. extra: 1738/1651,
  36212. bottom: 37/1775
  36213. }
  36214. },
  36215. laughing: {
  36216. height: math.unit(3.75, "feet"),
  36217. name: "Laughing",
  36218. image: {
  36219. source: "./media/characters/huckle/laughing.svg"
  36220. }
  36221. },
  36222. angry: {
  36223. height: math.unit(4.15, "feet"),
  36224. name: "Angry",
  36225. image: {
  36226. source: "./media/characters/huckle/angry.svg"
  36227. }
  36228. },
  36229. },
  36230. [
  36231. {
  36232. name: "Normal",
  36233. height: math.unit(16, "feet"),
  36234. default: true
  36235. },
  36236. {
  36237. name: "Mini Macro",
  36238. height: math.unit(463, "feet")
  36239. },
  36240. {
  36241. name: "Macro",
  36242. height: math.unit(1680, "meters")
  36243. },
  36244. {
  36245. name: "Mega Macro",
  36246. height: math.unit(175, "km")
  36247. },
  36248. {
  36249. name: "Terra Macro",
  36250. height: math.unit(32, "gigameters")
  36251. },
  36252. {
  36253. name: "Multiverse+",
  36254. height: math.unit(2.56e23, "yottameters")
  36255. },
  36256. ]
  36257. ))
  36258. characterMakers.push(() => makeCharacter(
  36259. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36260. {
  36261. front: {
  36262. height: math.unit(6 + 9/12, "feet"),
  36263. weight: math.unit(280, "lb"),
  36264. name: "Front",
  36265. image: {
  36266. source: "./media/characters/candy/front.svg",
  36267. extra: 234/217,
  36268. bottom: 11/245
  36269. }
  36270. },
  36271. },
  36272. [
  36273. {
  36274. name: "Really Small",
  36275. height: math.unit(0.1, "nm")
  36276. },
  36277. {
  36278. name: "Micro",
  36279. height: math.unit(2, "inches")
  36280. },
  36281. {
  36282. name: "Normal",
  36283. height: math.unit(6 + 9/12, "feet"),
  36284. default: true
  36285. },
  36286. {
  36287. name: "Small Macro",
  36288. height: math.unit(69, "feet")
  36289. },
  36290. {
  36291. name: "Macro",
  36292. height: math.unit(160, "feet")
  36293. },
  36294. {
  36295. name: "Megamacro",
  36296. height: math.unit(22000, "miles")
  36297. },
  36298. {
  36299. name: "Gigamacro",
  36300. height: math.unit(50000, "miles")
  36301. },
  36302. ]
  36303. ))
  36304. characterMakers.push(() => makeCharacter(
  36305. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36306. {
  36307. front: {
  36308. height: math.unit(4, "feet"),
  36309. weight: math.unit(90, "lb"),
  36310. name: "Front",
  36311. image: {
  36312. source: "./media/characters/joey-mcdonald/front.svg",
  36313. extra: 1059/852,
  36314. bottom: 33/1092
  36315. }
  36316. },
  36317. back: {
  36318. height: math.unit(4, "feet"),
  36319. weight: math.unit(90, "lb"),
  36320. name: "Back",
  36321. image: {
  36322. source: "./media/characters/joey-mcdonald/back.svg",
  36323. extra: 1077/879,
  36324. bottom: 5/1082
  36325. }
  36326. },
  36327. frontKobold: {
  36328. height: math.unit(4, "feet"),
  36329. weight: math.unit(100, "lb"),
  36330. name: "Front-kobold",
  36331. image: {
  36332. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36333. extra: 1480/1367,
  36334. bottom: 0/1480
  36335. }
  36336. },
  36337. backKobold: {
  36338. height: math.unit(4, "feet"),
  36339. weight: math.unit(100, "lb"),
  36340. name: "Back-kobold",
  36341. image: {
  36342. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36343. extra: 1449/1361,
  36344. bottom: 0/1449
  36345. }
  36346. },
  36347. },
  36348. [
  36349. {
  36350. name: "Normal",
  36351. height: math.unit(4, "feet"),
  36352. default: true
  36353. },
  36354. ]
  36355. ))
  36356. characterMakers.push(() => makeCharacter(
  36357. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36358. {
  36359. front: {
  36360. height: math.unit(12 + 6/12, "feet"),
  36361. name: "Front",
  36362. image: {
  36363. source: "./media/characters/kass-lockheed/front.svg",
  36364. extra: 354/343,
  36365. bottom: 9/363
  36366. }
  36367. },
  36368. back: {
  36369. height: math.unit(12 + 6/12, "feet"),
  36370. name: "Back",
  36371. image: {
  36372. source: "./media/characters/kass-lockheed/back.svg",
  36373. extra: 364/352,
  36374. bottom: 3/367
  36375. }
  36376. },
  36377. dick: {
  36378. height: math.unit(3.12, "feet"),
  36379. name: "Dick",
  36380. image: {
  36381. source: "./media/characters/kass-lockheed/dick.svg"
  36382. }
  36383. },
  36384. head: {
  36385. height: math.unit(2.6, "feet"),
  36386. name: "Head",
  36387. image: {
  36388. source: "./media/characters/kass-lockheed/head.svg"
  36389. }
  36390. },
  36391. bleh: {
  36392. height: math.unit(2.85, "feet"),
  36393. name: "Bleh",
  36394. image: {
  36395. source: "./media/characters/kass-lockheed/bleh.svg"
  36396. }
  36397. },
  36398. smug: {
  36399. height: math.unit(2.85, "feet"),
  36400. name: "Smug",
  36401. image: {
  36402. source: "./media/characters/kass-lockheed/smug.svg"
  36403. }
  36404. },
  36405. },
  36406. [
  36407. {
  36408. name: "Normal",
  36409. height: math.unit(12 + 6/12, "feet"),
  36410. default: true
  36411. },
  36412. ]
  36413. ))
  36414. characterMakers.push(() => makeCharacter(
  36415. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36416. {
  36417. front: {
  36418. height: math.unit(6 + 2/12, "feet"),
  36419. name: "Front",
  36420. image: {
  36421. source: "./media/characters/taylor/front.svg",
  36422. extra: 639/495,
  36423. bottom: 12/651
  36424. }
  36425. },
  36426. },
  36427. [
  36428. {
  36429. name: "Normal",
  36430. height: math.unit(6 + 2/12, "feet"),
  36431. default: true
  36432. },
  36433. {
  36434. name: "Big",
  36435. height: math.unit(15, "feet")
  36436. },
  36437. {
  36438. name: "Lorg",
  36439. height: math.unit(80, "feet")
  36440. },
  36441. {
  36442. name: "Too Lorg",
  36443. height: math.unit(120, "feet")
  36444. },
  36445. ]
  36446. ))
  36447. characterMakers.push(() => makeCharacter(
  36448. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36449. {
  36450. front: {
  36451. height: math.unit(15, "feet"),
  36452. name: "Front",
  36453. image: {
  36454. source: "./media/characters/kaizer/front.svg",
  36455. extra: 1612/1436,
  36456. bottom: 43/1655
  36457. }
  36458. },
  36459. },
  36460. [
  36461. {
  36462. name: "Normal",
  36463. height: math.unit(15, "feet"),
  36464. default: true
  36465. },
  36466. ]
  36467. ))
  36468. characterMakers.push(() => makeCharacter(
  36469. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36470. {
  36471. front: {
  36472. height: math.unit(2, "feet"),
  36473. weight: math.unit(30, "lb"),
  36474. name: "Front",
  36475. image: {
  36476. source: "./media/characters/sandy/front.svg",
  36477. extra: 1439/1307,
  36478. bottom: 194/1633
  36479. }
  36480. },
  36481. },
  36482. [
  36483. {
  36484. name: "Normal",
  36485. height: math.unit(2, "feet"),
  36486. default: true
  36487. },
  36488. ]
  36489. ))
  36490. characterMakers.push(() => makeCharacter(
  36491. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36492. {
  36493. front: {
  36494. height: math.unit(3, "feet"),
  36495. name: "Front",
  36496. image: {
  36497. source: "./media/characters/mellvi/front.svg",
  36498. extra: 1831/1630,
  36499. bottom: 58/1889
  36500. }
  36501. },
  36502. },
  36503. [
  36504. {
  36505. name: "Normal",
  36506. height: math.unit(3, "feet"),
  36507. default: true
  36508. },
  36509. ]
  36510. ))
  36511. characterMakers.push(() => makeCharacter(
  36512. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36513. {
  36514. front: {
  36515. height: math.unit(5 + 11/12, "feet"),
  36516. weight: math.unit(200, "lb"),
  36517. name: "Front",
  36518. image: {
  36519. source: "./media/characters/shirou/front.svg",
  36520. extra: 2491/2383,
  36521. bottom: 189/2680
  36522. }
  36523. },
  36524. back: {
  36525. height: math.unit(5 + 11/12, "feet"),
  36526. weight: math.unit(200, "lb"),
  36527. name: "Back",
  36528. image: {
  36529. source: "./media/characters/shirou/back.svg",
  36530. extra: 2554/2450,
  36531. bottom: 76/2630
  36532. }
  36533. },
  36534. },
  36535. [
  36536. {
  36537. name: "Normal",
  36538. height: math.unit(5 + 11/12, "feet"),
  36539. default: true
  36540. },
  36541. ]
  36542. ))
  36543. characterMakers.push(() => makeCharacter(
  36544. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36545. {
  36546. front: {
  36547. height: math.unit(6 + 3/12, "feet"),
  36548. weight: math.unit(177, "lb"),
  36549. name: "Front",
  36550. image: {
  36551. source: "./media/characters/noryu/front.svg",
  36552. extra: 973/885,
  36553. bottom: 10/983
  36554. }
  36555. },
  36556. },
  36557. [
  36558. {
  36559. name: "Normal",
  36560. height: math.unit(6 + 3/12, "feet"),
  36561. default: true
  36562. },
  36563. ]
  36564. ))
  36565. characterMakers.push(() => makeCharacter(
  36566. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36567. {
  36568. front: {
  36569. height: math.unit(5 + 6/12, "feet"),
  36570. weight: math.unit(170, "lb"),
  36571. name: "Front",
  36572. image: {
  36573. source: "./media/characters/mevolas-rubenido/front.svg",
  36574. extra: 2109/1901,
  36575. bottom: 96/2205
  36576. }
  36577. },
  36578. },
  36579. [
  36580. {
  36581. name: "Normal",
  36582. height: math.unit(5 + 6/12, "feet"),
  36583. default: true
  36584. },
  36585. ]
  36586. ))
  36587. characterMakers.push(() => makeCharacter(
  36588. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36589. {
  36590. front: {
  36591. height: math.unit(100, "feet"),
  36592. name: "Front",
  36593. image: {
  36594. source: "./media/characters/dee/front.svg",
  36595. extra: 2153/2036,
  36596. bottom: 59/2212
  36597. }
  36598. },
  36599. back: {
  36600. height: math.unit(100, "feet"),
  36601. name: "Back",
  36602. image: {
  36603. source: "./media/characters/dee/back.svg",
  36604. extra: 2183/2058,
  36605. bottom: 75/2258
  36606. }
  36607. },
  36608. foot: {
  36609. height: math.unit(19.43, "feet"),
  36610. name: "Foot",
  36611. image: {
  36612. source: "./media/characters/dee/foot.svg"
  36613. }
  36614. },
  36615. hoof: {
  36616. height: math.unit(20.6, "feet"),
  36617. name: "Hoof",
  36618. image: {
  36619. source: "./media/characters/dee/hoof.svg"
  36620. }
  36621. },
  36622. },
  36623. [
  36624. {
  36625. name: "Macro",
  36626. height: math.unit(100, "feet"),
  36627. default: true
  36628. },
  36629. ]
  36630. ))
  36631. characterMakers.push(() => makeCharacter(
  36632. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36633. {
  36634. front: {
  36635. height: math.unit(5 + 6/12, "feet"),
  36636. name: "Front",
  36637. image: {
  36638. source: "./media/characters/teh/front.svg",
  36639. extra: 1002/847,
  36640. bottom: 62/1064
  36641. }
  36642. },
  36643. },
  36644. [
  36645. {
  36646. name: "Normal",
  36647. height: math.unit(5 + 6/12, "feet"),
  36648. default: true
  36649. },
  36650. ]
  36651. ))
  36652. characterMakers.push(() => makeCharacter(
  36653. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36654. {
  36655. side: {
  36656. height: math.unit(6 + 1/12, "feet"),
  36657. weight: math.unit(204, "lb"),
  36658. name: "Side",
  36659. image: {
  36660. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36661. extra: 974/775,
  36662. bottom: 169/1143
  36663. }
  36664. },
  36665. sitting: {
  36666. height: math.unit(6 + 2/12, "feet"),
  36667. weight: math.unit(204, "lb"),
  36668. name: "Sitting",
  36669. image: {
  36670. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36671. extra: 1175/964,
  36672. bottom: 378/1553
  36673. }
  36674. },
  36675. },
  36676. [
  36677. {
  36678. name: "Normal",
  36679. height: math.unit(6 + 1/12, "feet"),
  36680. default: true
  36681. },
  36682. ]
  36683. ))
  36684. characterMakers.push(() => makeCharacter(
  36685. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36686. {
  36687. front: {
  36688. height: math.unit(6, "inches"),
  36689. name: "Front",
  36690. image: {
  36691. source: "./media/characters/tululi/front.svg",
  36692. extra: 1997/1876,
  36693. bottom: 20/2017
  36694. }
  36695. },
  36696. },
  36697. [
  36698. {
  36699. name: "Normal",
  36700. height: math.unit(6, "inches"),
  36701. default: true
  36702. },
  36703. ]
  36704. ))
  36705. characterMakers.push(() => makeCharacter(
  36706. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36707. {
  36708. front: {
  36709. height: math.unit(4 + 1/12, "feet"),
  36710. name: "Front",
  36711. image: {
  36712. source: "./media/characters/star/front.svg",
  36713. extra: 1493/1189,
  36714. bottom: 48/1541
  36715. }
  36716. },
  36717. },
  36718. [
  36719. {
  36720. name: "Normal",
  36721. height: math.unit(4 + 1/12, "feet"),
  36722. default: true
  36723. },
  36724. ]
  36725. ))
  36726. characterMakers.push(() => makeCharacter(
  36727. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36728. {
  36729. front: {
  36730. height: math.unit(6 + 3/12, "feet"),
  36731. name: "Front",
  36732. image: {
  36733. source: "./media/characters/comet/front.svg",
  36734. extra: 1681/1462,
  36735. bottom: 26/1707
  36736. }
  36737. },
  36738. },
  36739. [
  36740. {
  36741. name: "Normal",
  36742. height: math.unit(6 + 3/12, "feet"),
  36743. default: true
  36744. },
  36745. ]
  36746. ))
  36747. characterMakers.push(() => makeCharacter(
  36748. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36749. {
  36750. front: {
  36751. height: math.unit(950, "feet"),
  36752. name: "Front",
  36753. image: {
  36754. source: "./media/characters/vortex/front.svg",
  36755. extra: 1497/1434,
  36756. bottom: 56/1553
  36757. }
  36758. },
  36759. maw: {
  36760. height: math.unit(285, "feet"),
  36761. name: "Maw",
  36762. image: {
  36763. source: "./media/characters/vortex/maw.svg"
  36764. }
  36765. },
  36766. },
  36767. [
  36768. {
  36769. name: "Macro",
  36770. height: math.unit(950, "feet"),
  36771. default: true
  36772. },
  36773. ]
  36774. ))
  36775. characterMakers.push(() => makeCharacter(
  36776. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36777. {
  36778. front: {
  36779. height: math.unit(600, "feet"),
  36780. weight: math.unit(0.02, "grams"),
  36781. name: "Front",
  36782. image: {
  36783. source: "./media/characters/doodle/front.svg",
  36784. extra: 1578/1413,
  36785. bottom: 37/1615
  36786. }
  36787. },
  36788. },
  36789. [
  36790. {
  36791. name: "Macro",
  36792. height: math.unit(600, "feet"),
  36793. default: true
  36794. },
  36795. ]
  36796. ))
  36797. characterMakers.push(() => makeCharacter(
  36798. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36799. {
  36800. front: {
  36801. height: math.unit(6 + 6/12, "feet"),
  36802. name: "Front",
  36803. image: {
  36804. source: "./media/characters/jai/front.svg",
  36805. extra: 1645/1534,
  36806. bottom: 115/1760
  36807. }
  36808. },
  36809. },
  36810. [
  36811. {
  36812. name: "Normal",
  36813. height: math.unit(6 + 6/12, "feet"),
  36814. default: true
  36815. },
  36816. ]
  36817. ))
  36818. characterMakers.push(() => makeCharacter(
  36819. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36820. {
  36821. front: {
  36822. height: math.unit(6 + 8/12, "feet"),
  36823. name: "Front",
  36824. image: {
  36825. source: "./media/characters/pixel/front.svg",
  36826. extra: 1900/1735,
  36827. bottom: 63/1963
  36828. }
  36829. },
  36830. },
  36831. [
  36832. {
  36833. name: "Normal",
  36834. height: math.unit(6 + 8/12, "feet"),
  36835. default: true
  36836. },
  36837. ]
  36838. ))
  36839. characterMakers.push(() => makeCharacter(
  36840. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36841. {
  36842. back: {
  36843. height: math.unit(4 + 1/12, "feet"),
  36844. weight: math.unit(75, "lb"),
  36845. name: "Back",
  36846. image: {
  36847. source: "./media/characters/rhett/back.svg",
  36848. extra: 930/878,
  36849. bottom: 25/955
  36850. }
  36851. },
  36852. front: {
  36853. height: math.unit(4 + 1/12, "feet"),
  36854. weight: math.unit(75, "lb"),
  36855. name: "Front",
  36856. image: {
  36857. source: "./media/characters/rhett/front.svg",
  36858. extra: 1682/1586,
  36859. bottom: 92/1774
  36860. }
  36861. },
  36862. },
  36863. [
  36864. {
  36865. name: "Micro",
  36866. height: math.unit(8, "inches")
  36867. },
  36868. {
  36869. name: "Tiny",
  36870. height: math.unit(2, "feet")
  36871. },
  36872. {
  36873. name: "Normal",
  36874. height: math.unit(4 + 1/12, "feet"),
  36875. default: true
  36876. },
  36877. ]
  36878. ))
  36879. characterMakers.push(() => makeCharacter(
  36880. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36881. {
  36882. front: {
  36883. height: math.unit(3 + 3/12, "feet"),
  36884. name: "Front",
  36885. image: {
  36886. source: "./media/characters/penny/front.svg",
  36887. extra: 1406/1311,
  36888. bottom: 26/1432
  36889. }
  36890. },
  36891. },
  36892. [
  36893. {
  36894. name: "Normal",
  36895. height: math.unit(3 + 3/12, "feet"),
  36896. default: true
  36897. },
  36898. ]
  36899. ))
  36900. characterMakers.push(() => makeCharacter(
  36901. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36902. {
  36903. front: {
  36904. height: math.unit(4 + 11/12, "feet"),
  36905. name: "Front",
  36906. image: {
  36907. source: "./media/characters/monty/front.svg",
  36908. extra: 1479/1209,
  36909. bottom: 0/1479
  36910. }
  36911. },
  36912. },
  36913. [
  36914. {
  36915. name: "Normal",
  36916. height: math.unit(4 + 11/12, "feet"),
  36917. default: true
  36918. },
  36919. ]
  36920. ))
  36921. characterMakers.push(() => makeCharacter(
  36922. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36923. {
  36924. front: {
  36925. height: math.unit(8 + 4/12, "feet"),
  36926. name: "Front",
  36927. image: {
  36928. source: "./media/characters/sterling/front.svg",
  36929. extra: 1420/1236,
  36930. bottom: 27/1447
  36931. }
  36932. },
  36933. },
  36934. [
  36935. {
  36936. name: "Normal",
  36937. height: math.unit(8 + 4/12, "feet"),
  36938. default: true
  36939. },
  36940. ]
  36941. ))
  36942. characterMakers.push(() => makeCharacter(
  36943. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36944. {
  36945. front: {
  36946. height: math.unit(15, "feet"),
  36947. name: "Front",
  36948. image: {
  36949. source: "./media/characters/marble/front.svg",
  36950. extra: 973/937,
  36951. bottom: 32/1005
  36952. }
  36953. },
  36954. },
  36955. [
  36956. {
  36957. name: "Normal",
  36958. height: math.unit(15, "feet"),
  36959. default: true
  36960. },
  36961. ]
  36962. ))
  36963. characterMakers.push(() => makeCharacter(
  36964. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36965. {
  36966. front: {
  36967. height: math.unit(3, "inches"),
  36968. name: "Front",
  36969. image: {
  36970. source: "./media/characters/powder/front.svg",
  36971. extra: 1504/1334,
  36972. bottom: 518/2022
  36973. }
  36974. },
  36975. },
  36976. [
  36977. {
  36978. name: "Normal",
  36979. height: math.unit(3, "inches"),
  36980. default: true
  36981. },
  36982. ]
  36983. ))
  36984. characterMakers.push(() => makeCharacter(
  36985. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36986. {
  36987. front: {
  36988. height: math.unit(4 + 5/12, "feet"),
  36989. name: "Front",
  36990. image: {
  36991. source: "./media/characters/joey-raccoon/front.svg",
  36992. extra: 1273/1197,
  36993. bottom: 0/1273
  36994. }
  36995. },
  36996. },
  36997. [
  36998. {
  36999. name: "Normal",
  37000. height: math.unit(4 + 5/12, "feet"),
  37001. default: true
  37002. },
  37003. ]
  37004. ))
  37005. characterMakers.push(() => makeCharacter(
  37006. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37007. {
  37008. front: {
  37009. height: math.unit(8 + 4/12, "feet"),
  37010. name: "Front",
  37011. image: {
  37012. source: "./media/characters/vick/front.svg",
  37013. extra: 2187/2118,
  37014. bottom: 47/2234
  37015. }
  37016. },
  37017. },
  37018. [
  37019. {
  37020. name: "Normal",
  37021. height: math.unit(8 + 4/12, "feet"),
  37022. default: true
  37023. },
  37024. ]
  37025. ))
  37026. characterMakers.push(() => makeCharacter(
  37027. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37028. {
  37029. front: {
  37030. height: math.unit(5 + 5/12, "feet"),
  37031. name: "Front",
  37032. image: {
  37033. source: "./media/characters/mitsy/front.svg",
  37034. extra: 1842/1695,
  37035. bottom: 0/1842
  37036. }
  37037. },
  37038. },
  37039. [
  37040. {
  37041. name: "Normal",
  37042. height: math.unit(5 + 5/12, "feet"),
  37043. default: true
  37044. },
  37045. ]
  37046. ))
  37047. characterMakers.push(() => makeCharacter(
  37048. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37049. {
  37050. front: {
  37051. height: math.unit(6 + 3/12, "feet"),
  37052. name: "Front",
  37053. image: {
  37054. source: "./media/characters/silvy/front.svg",
  37055. extra: 1995/1836,
  37056. bottom: 225/2220
  37057. }
  37058. },
  37059. },
  37060. [
  37061. {
  37062. name: "Normal",
  37063. height: math.unit(6 + 3/12, "feet"),
  37064. default: true
  37065. },
  37066. ]
  37067. ))
  37068. characterMakers.push(() => makeCharacter(
  37069. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37070. {
  37071. front: {
  37072. height: math.unit(3 + 8/12, "feet"),
  37073. name: "Front",
  37074. image: {
  37075. source: "./media/characters/rodney/front.svg",
  37076. extra: 1956/1747,
  37077. bottom: 31/1987
  37078. }
  37079. },
  37080. frontDressed: {
  37081. height: math.unit(2.9, "feet"),
  37082. name: "Front (Dressed)",
  37083. image: {
  37084. source: "./media/characters/rodney/front-dressed.svg",
  37085. extra: 1382/1241,
  37086. bottom: 385/1767
  37087. }
  37088. },
  37089. },
  37090. [
  37091. {
  37092. name: "Normal",
  37093. height: math.unit(3 + 8/12, "feet"),
  37094. default: true
  37095. },
  37096. ]
  37097. ))
  37098. characterMakers.push(() => makeCharacter(
  37099. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37100. {
  37101. front: {
  37102. height: math.unit(5 + 9/12, "feet"),
  37103. weight: math.unit(194, "lbs"),
  37104. name: "Front",
  37105. image: {
  37106. source: "./media/characters/zakail-sudekai/front.svg",
  37107. extra: 2696/2533,
  37108. bottom: 248/2944
  37109. }
  37110. },
  37111. maw: {
  37112. height: math.unit(1.35, "feet"),
  37113. name: "Maw",
  37114. image: {
  37115. source: "./media/characters/zakail-sudekai/maw.svg"
  37116. }
  37117. },
  37118. },
  37119. [
  37120. {
  37121. name: "Normal",
  37122. height: math.unit(5 + 9/12, "feet"),
  37123. default: true
  37124. },
  37125. ]
  37126. ))
  37127. characterMakers.push(() => makeCharacter(
  37128. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37129. {
  37130. front: {
  37131. height: math.unit(8 + 4/12, "feet"),
  37132. weight: math.unit(1200, "lb"),
  37133. name: "Front",
  37134. image: {
  37135. source: "./media/characters/eleanor/front.svg",
  37136. extra: 1226/1192,
  37137. bottom: 52/1278
  37138. }
  37139. },
  37140. back: {
  37141. height: math.unit(8 + 4/12, "feet"),
  37142. weight: math.unit(1200, "lb"),
  37143. name: "Back",
  37144. image: {
  37145. source: "./media/characters/eleanor/back.svg",
  37146. extra: 1242/1184,
  37147. bottom: 60/1302
  37148. }
  37149. },
  37150. head: {
  37151. height: math.unit(2.62, "feet"),
  37152. name: "Head",
  37153. image: {
  37154. source: "./media/characters/eleanor/head.svg"
  37155. }
  37156. },
  37157. },
  37158. [
  37159. {
  37160. name: "Normal",
  37161. height: math.unit(8 + 4/12, "feet"),
  37162. default: true
  37163. },
  37164. ]
  37165. ))
  37166. characterMakers.push(() => makeCharacter(
  37167. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37168. {
  37169. front: {
  37170. height: math.unit(8 + 4/12, "feet"),
  37171. weight: math.unit(750, "lb"),
  37172. name: "Front",
  37173. image: {
  37174. source: "./media/characters/tanya/front.svg",
  37175. extra: 1749/1615,
  37176. bottom: 33/1782
  37177. }
  37178. },
  37179. },
  37180. [
  37181. {
  37182. name: "Normal",
  37183. height: math.unit(8 + 4/12, "feet"),
  37184. default: true
  37185. },
  37186. ]
  37187. ))
  37188. characterMakers.push(() => makeCharacter(
  37189. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37190. {
  37191. front: {
  37192. height: math.unit(5, "feet"),
  37193. weight: math.unit(225, "lb"),
  37194. name: "Front",
  37195. image: {
  37196. source: "./media/characters/cindy/front.svg",
  37197. extra: 1320/1250,
  37198. bottom: 42/1362
  37199. }
  37200. },
  37201. frontDressed: {
  37202. height: math.unit(5, "feet"),
  37203. weight: math.unit(225, "lb"),
  37204. name: "Front (Dressed)",
  37205. image: {
  37206. source: "./media/characters/cindy/front-dressed.svg",
  37207. extra: 1320/1250,
  37208. bottom: 42/1362
  37209. }
  37210. },
  37211. back: {
  37212. height: math.unit(5, "feet"),
  37213. weight: math.unit(225, "lb"),
  37214. name: "Back",
  37215. image: {
  37216. source: "./media/characters/cindy/back.svg",
  37217. extra: 1384/1346,
  37218. bottom: 14/1398
  37219. }
  37220. },
  37221. },
  37222. [
  37223. {
  37224. name: "Normal",
  37225. height: math.unit(5, "feet"),
  37226. default: true
  37227. },
  37228. ]
  37229. ))
  37230. characterMakers.push(() => makeCharacter(
  37231. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37232. {
  37233. front: {
  37234. height: math.unit(6 + 9/12, "feet"),
  37235. weight: math.unit(440, "lb"),
  37236. name: "Front",
  37237. image: {
  37238. source: "./media/characters/wilbur-owen/front.svg",
  37239. extra: 1575/1448,
  37240. bottom: 72/1647
  37241. }
  37242. },
  37243. back: {
  37244. height: math.unit(6 + 9/12, "feet"),
  37245. weight: math.unit(440, "lb"),
  37246. name: "Back",
  37247. image: {
  37248. source: "./media/characters/wilbur-owen/back.svg",
  37249. extra: 1578/1445,
  37250. bottom: 36/1614
  37251. }
  37252. },
  37253. },
  37254. [
  37255. {
  37256. name: "Normal",
  37257. height: math.unit(6 + 9/12, "feet"),
  37258. default: true
  37259. },
  37260. ]
  37261. ))
  37262. characterMakers.push(() => makeCharacter(
  37263. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37264. {
  37265. front: {
  37266. height: math.unit(6 + 5/12, "feet"),
  37267. weight: math.unit(650, "lb"),
  37268. name: "Front",
  37269. image: {
  37270. source: "./media/characters/keegan/front.svg",
  37271. extra: 2387/2198,
  37272. bottom: 33/2420
  37273. }
  37274. },
  37275. side: {
  37276. height: math.unit(6 + 5/12, "feet"),
  37277. weight: math.unit(650, "lb"),
  37278. name: "Side",
  37279. image: {
  37280. source: "./media/characters/keegan/side.svg",
  37281. extra: 2390/2202,
  37282. bottom: 47/2437
  37283. }
  37284. },
  37285. back: {
  37286. height: math.unit(6 + 5/12, "feet"),
  37287. weight: math.unit(650, "lb"),
  37288. name: "Back",
  37289. image: {
  37290. source: "./media/characters/keegan/back.svg",
  37291. extra: 2418/2268,
  37292. bottom: 15/2433
  37293. }
  37294. },
  37295. frontSfw: {
  37296. height: math.unit(6 + 5/12, "feet"),
  37297. weight: math.unit(650, "lb"),
  37298. name: "Front (SFW)",
  37299. image: {
  37300. source: "./media/characters/keegan/front-sfw.svg",
  37301. extra: 2387/2198,
  37302. bottom: 33/2420
  37303. }
  37304. },
  37305. beans: {
  37306. height: math.unit(1.85, "feet"),
  37307. name: "Beans",
  37308. image: {
  37309. source: "./media/characters/keegan/beans.svg"
  37310. }
  37311. },
  37312. },
  37313. [
  37314. {
  37315. name: "Normal",
  37316. height: math.unit(6 + 5/12, "feet"),
  37317. default: true
  37318. },
  37319. ]
  37320. ))
  37321. characterMakers.push(() => makeCharacter(
  37322. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37323. {
  37324. front: {
  37325. height: math.unit(9, "feet"),
  37326. name: "Front",
  37327. image: {
  37328. source: "./media/characters/colton/front.svg",
  37329. extra: 1589/1326,
  37330. bottom: 139/1728
  37331. }
  37332. },
  37333. },
  37334. [
  37335. {
  37336. name: "Normal",
  37337. height: math.unit(9, "feet"),
  37338. default: true
  37339. },
  37340. ]
  37341. ))
  37342. characterMakers.push(() => makeCharacter(
  37343. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37344. {
  37345. front: {
  37346. height: math.unit(2 + 9/12, "feet"),
  37347. name: "Front",
  37348. image: {
  37349. source: "./media/characters/bora/front.svg",
  37350. extra: 1265/1250,
  37351. bottom: 24/1289
  37352. }
  37353. },
  37354. },
  37355. [
  37356. {
  37357. name: "Normal",
  37358. height: math.unit(2 + 9/12, "feet"),
  37359. default: true
  37360. },
  37361. ]
  37362. ))
  37363. characterMakers.push(() => makeCharacter(
  37364. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37365. {
  37366. front: {
  37367. height: math.unit(8, "feet"),
  37368. name: "Front",
  37369. image: {
  37370. source: "./media/characters/myu-myu/front.svg",
  37371. extra: 1949/1857,
  37372. bottom: 90/2039
  37373. }
  37374. },
  37375. },
  37376. [
  37377. {
  37378. name: "Normal",
  37379. height: math.unit(8, "feet"),
  37380. default: true
  37381. },
  37382. {
  37383. name: "Big",
  37384. height: math.unit(15, "feet")
  37385. },
  37386. {
  37387. name: "BIG",
  37388. height: math.unit(25, "feet")
  37389. },
  37390. ]
  37391. ))
  37392. characterMakers.push(() => makeCharacter(
  37393. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37394. {
  37395. side: {
  37396. height: math.unit(7 + 5/12, "feet"),
  37397. weight: math.unit(2800, "lb"),
  37398. name: "Side",
  37399. image: {
  37400. source: "./media/characters/haloren/side.svg",
  37401. extra: 1793/409,
  37402. bottom: 59/1852
  37403. }
  37404. },
  37405. frontPaw: {
  37406. height: math.unit(2.36, "feet"),
  37407. name: "Front paw",
  37408. image: {
  37409. source: "./media/characters/haloren/front-paw.svg"
  37410. }
  37411. },
  37412. hindPaw: {
  37413. height: math.unit(3.18, "feet"),
  37414. name: "Hind paw",
  37415. image: {
  37416. source: "./media/characters/haloren/hind-paw.svg"
  37417. }
  37418. },
  37419. maw: {
  37420. height: math.unit(5.05, "feet"),
  37421. name: "Maw",
  37422. image: {
  37423. source: "./media/characters/haloren/maw.svg"
  37424. }
  37425. },
  37426. dick: {
  37427. height: math.unit(2.90, "feet"),
  37428. name: "Dick",
  37429. image: {
  37430. source: "./media/characters/haloren/dick.svg"
  37431. }
  37432. },
  37433. },
  37434. [
  37435. {
  37436. name: "Normal",
  37437. height: math.unit(7 + 5/12, "feet"),
  37438. default: true
  37439. },
  37440. {
  37441. name: "Enhanced",
  37442. height: math.unit(14 + 3/12, "feet")
  37443. },
  37444. ]
  37445. ))
  37446. characterMakers.push(() => makeCharacter(
  37447. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37448. {
  37449. front: {
  37450. height: math.unit(171, "cm"),
  37451. name: "Front",
  37452. image: {
  37453. source: "./media/characters/kimmy/front.svg",
  37454. extra: 1491/1435,
  37455. bottom: 53/1544
  37456. }
  37457. },
  37458. },
  37459. [
  37460. {
  37461. name: "Small",
  37462. height: math.unit(9, "cm")
  37463. },
  37464. {
  37465. name: "Normal",
  37466. height: math.unit(171, "cm"),
  37467. default: true
  37468. },
  37469. ]
  37470. ))
  37471. characterMakers.push(() => makeCharacter(
  37472. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37473. {
  37474. front: {
  37475. height: math.unit(8, "feet"),
  37476. weight: math.unit(300, "lb"),
  37477. name: "Front",
  37478. image: {
  37479. source: "./media/characters/galeboomer/front.svg",
  37480. extra: 4651/4415,
  37481. bottom: 162/4813
  37482. }
  37483. },
  37484. back: {
  37485. height: math.unit(8, "feet"),
  37486. weight: math.unit(300, "lb"),
  37487. name: "Back",
  37488. image: {
  37489. source: "./media/characters/galeboomer/back.svg",
  37490. extra: 4544/4314,
  37491. bottom: 16/4560
  37492. }
  37493. },
  37494. frontAlt: {
  37495. height: math.unit(8, "feet"),
  37496. weight: math.unit(300, "lb"),
  37497. name: "Front (Alt)",
  37498. image: {
  37499. source: "./media/characters/galeboomer/front-alt.svg",
  37500. extra: 4458/4228,
  37501. bottom: 68/4526
  37502. }
  37503. },
  37504. maw: {
  37505. height: math.unit(1.2, "feet"),
  37506. name: "Maw",
  37507. image: {
  37508. source: "./media/characters/galeboomer/maw.svg"
  37509. }
  37510. },
  37511. },
  37512. [
  37513. {
  37514. name: "Normal",
  37515. height: math.unit(8, "feet"),
  37516. default: true
  37517. },
  37518. ]
  37519. ))
  37520. characterMakers.push(() => makeCharacter(
  37521. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37522. {
  37523. front: {
  37524. height: math.unit(5 + 9/12, "feet"),
  37525. weight: math.unit(120, "lb"),
  37526. name: "Front",
  37527. image: {
  37528. source: "./media/characters/chyr/front.svg",
  37529. extra: 1323/1254,
  37530. bottom: 63/1386
  37531. }
  37532. },
  37533. back: {
  37534. height: math.unit(5 + 9/12, "feet"),
  37535. weight: math.unit(120, "lb"),
  37536. name: "Back",
  37537. image: {
  37538. source: "./media/characters/chyr/back.svg",
  37539. extra: 1323/1252,
  37540. bottom: 48/1371
  37541. }
  37542. },
  37543. },
  37544. [
  37545. {
  37546. name: "Normal",
  37547. height: math.unit(5 + 9/12, "feet"),
  37548. default: true
  37549. },
  37550. ]
  37551. ))
  37552. characterMakers.push(() => makeCharacter(
  37553. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37554. {
  37555. front: {
  37556. height: math.unit(7, "feet"),
  37557. weight: math.unit(310, "lb"),
  37558. name: "Front",
  37559. image: {
  37560. source: "./media/characters/solarus/front.svg",
  37561. extra: 2415/2021,
  37562. bottom: 103/2518
  37563. }
  37564. },
  37565. back: {
  37566. height: math.unit(7, "feet"),
  37567. weight: math.unit(310, "lb"),
  37568. name: "Back",
  37569. image: {
  37570. source: "./media/characters/solarus/back.svg",
  37571. extra: 2463/2089,
  37572. bottom: 79/2542
  37573. }
  37574. },
  37575. },
  37576. [
  37577. {
  37578. name: "Normal",
  37579. height: math.unit(7, "feet"),
  37580. default: true
  37581. },
  37582. ]
  37583. ))
  37584. characterMakers.push(() => makeCharacter(
  37585. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37586. {
  37587. front: {
  37588. height: math.unit(16, "feet"),
  37589. name: "Front",
  37590. image: {
  37591. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37592. extra: 1844/1780,
  37593. bottom: 58/1902
  37594. }
  37595. },
  37596. winterCoat: {
  37597. height: math.unit(16, "feet"),
  37598. name: "Winter Coat",
  37599. image: {
  37600. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37601. extra: 1807/1775,
  37602. bottom: 69/1876
  37603. }
  37604. },
  37605. },
  37606. [
  37607. {
  37608. name: "Normal",
  37609. height: math.unit(16, "feet"),
  37610. default: true
  37611. },
  37612. {
  37613. name: "Chicago Size",
  37614. height: math.unit(560, "feet")
  37615. },
  37616. ]
  37617. ))
  37618. characterMakers.push(() => makeCharacter(
  37619. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37620. {
  37621. front: {
  37622. height: math.unit(11 + 6/12, "feet"),
  37623. weight: math.unit(1366, "lb"),
  37624. name: "Front",
  37625. image: {
  37626. source: "./media/characters/lexor/front.svg",
  37627. extra: 1560/1481,
  37628. bottom: 211/1771
  37629. }
  37630. },
  37631. back: {
  37632. height: math.unit(11 + 6/12, "feet"),
  37633. weight: math.unit(1366, "lb"),
  37634. name: "Back",
  37635. image: {
  37636. source: "./media/characters/lexor/back.svg",
  37637. extra: 1614/1533,
  37638. bottom: 76/1690
  37639. }
  37640. },
  37641. maw: {
  37642. height: math.unit(3, "feet"),
  37643. name: "Maw",
  37644. image: {
  37645. source: "./media/characters/lexor/maw.svg"
  37646. }
  37647. },
  37648. dick: {
  37649. height: math.unit(2.59, "feet"),
  37650. name: "Dick",
  37651. image: {
  37652. source: "./media/characters/lexor/dick.svg"
  37653. }
  37654. },
  37655. },
  37656. [
  37657. {
  37658. name: "Normal",
  37659. height: math.unit(11 + 6/12, "feet"),
  37660. default: true
  37661. },
  37662. ]
  37663. ))
  37664. characterMakers.push(() => makeCharacter(
  37665. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37666. {
  37667. front: {
  37668. height: math.unit(5 + 8/12, "feet"),
  37669. name: "Front",
  37670. image: {
  37671. source: "./media/characters/magnum/front.svg",
  37672. extra: 942/855,
  37673. bottom: 26/968
  37674. }
  37675. },
  37676. },
  37677. [
  37678. {
  37679. name: "Normal",
  37680. height: math.unit(5 + 8/12, "feet"),
  37681. default: true
  37682. },
  37683. ]
  37684. ))
  37685. characterMakers.push(() => makeCharacter(
  37686. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37687. {
  37688. front: {
  37689. height: math.unit(18 + 4/12, "feet"),
  37690. weight: math.unit(1500, "kg"),
  37691. name: "Front",
  37692. image: {
  37693. source: "./media/characters/solas-sharpsman/front.svg",
  37694. extra: 1698/1589,
  37695. bottom: 0/1698
  37696. }
  37697. },
  37698. },
  37699. [
  37700. {
  37701. name: "Normal",
  37702. height: math.unit(18 + 4/12, "feet"),
  37703. default: true
  37704. },
  37705. ]
  37706. ))
  37707. characterMakers.push(() => makeCharacter(
  37708. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37709. {
  37710. front: {
  37711. height: math.unit(5 + 5/12, "feet"),
  37712. weight: math.unit(180, "lb"),
  37713. name: "Front",
  37714. image: {
  37715. source: "./media/characters/october/front.svg",
  37716. extra: 1800/1650,
  37717. bottom: 0/1800
  37718. }
  37719. },
  37720. frontNsfw: {
  37721. height: math.unit(5 + 5/12, "feet"),
  37722. weight: math.unit(180, "lb"),
  37723. name: "Front (NSFW)",
  37724. image: {
  37725. source: "./media/characters/october/front-nsfw.svg",
  37726. extra: 1392/1307,
  37727. bottom: 42/1434
  37728. }
  37729. },
  37730. },
  37731. [
  37732. {
  37733. name: "Normal",
  37734. height: math.unit(5 + 5/12, "feet"),
  37735. default: true
  37736. },
  37737. ]
  37738. ))
  37739. characterMakers.push(() => makeCharacter(
  37740. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37741. {
  37742. front: {
  37743. height: math.unit(8 + 6/12, "feet"),
  37744. name: "Front",
  37745. image: {
  37746. source: "./media/characters/essynkardi/front.svg",
  37747. extra: 1914/1846,
  37748. bottom: 22/1936
  37749. }
  37750. },
  37751. },
  37752. [
  37753. {
  37754. name: "Normal",
  37755. height: math.unit(8 + 6/12, "feet"),
  37756. default: true
  37757. },
  37758. ]
  37759. ))
  37760. characterMakers.push(() => makeCharacter(
  37761. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37762. {
  37763. front: {
  37764. height: math.unit(6 + 6/12, "feet"),
  37765. weight: math.unit(7, "lb"),
  37766. name: "Front",
  37767. image: {
  37768. source: "./media/characters/icky/front.svg",
  37769. extra: 813/782,
  37770. bottom: 66/879
  37771. }
  37772. },
  37773. back: {
  37774. height: math.unit(6 + 6/12, "feet"),
  37775. weight: math.unit(7, "lb"),
  37776. name: "Back",
  37777. image: {
  37778. source: "./media/characters/icky/back.svg",
  37779. extra: 754/735,
  37780. bottom: 56/810
  37781. }
  37782. },
  37783. },
  37784. [
  37785. {
  37786. name: "Normal",
  37787. height: math.unit(6 + 6/12, "feet"),
  37788. default: true
  37789. },
  37790. ]
  37791. ))
  37792. characterMakers.push(() => makeCharacter(
  37793. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37794. {
  37795. front: {
  37796. height: math.unit(15, "feet"),
  37797. name: "Front",
  37798. image: {
  37799. source: "./media/characters/rojas/front.svg",
  37800. extra: 1462/1408,
  37801. bottom: 95/1557
  37802. }
  37803. },
  37804. back: {
  37805. height: math.unit(15, "feet"),
  37806. name: "Back",
  37807. image: {
  37808. source: "./media/characters/rojas/back.svg",
  37809. extra: 1023/954,
  37810. bottom: 28/1051
  37811. }
  37812. },
  37813. },
  37814. [
  37815. {
  37816. name: "Normal",
  37817. height: math.unit(15, "feet"),
  37818. default: true
  37819. },
  37820. ]
  37821. ))
  37822. characterMakers.push(() => makeCharacter(
  37823. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37824. {
  37825. frontHuman: {
  37826. height: math.unit(5 + 7/12, "feet"),
  37827. name: "Front (Human)",
  37828. image: {
  37829. source: "./media/characters/alek-dryagan/front-human.svg",
  37830. extra: 1687/1667,
  37831. bottom: 69/1756
  37832. }
  37833. },
  37834. backHuman: {
  37835. height: math.unit(5 + 7/12, "feet"),
  37836. name: "Back (Human)",
  37837. image: {
  37838. source: "./media/characters/alek-dryagan/back-human.svg",
  37839. extra: 1670/1649,
  37840. bottom: 65/1735
  37841. }
  37842. },
  37843. frontDemi: {
  37844. height: math.unit(65, "feet"),
  37845. name: "Front (Demi)",
  37846. image: {
  37847. source: "./media/characters/alek-dryagan/front-demi.svg",
  37848. extra: 1669/1642,
  37849. bottom: 49/1718
  37850. }
  37851. },
  37852. backDemi: {
  37853. height: math.unit(65, "feet"),
  37854. name: "Back (Demi)",
  37855. image: {
  37856. source: "./media/characters/alek-dryagan/back-demi.svg",
  37857. extra: 1658/1637,
  37858. bottom: 40/1698
  37859. }
  37860. },
  37861. mawHuman: {
  37862. height: math.unit(0.3, "feet"),
  37863. name: "Maw (Human)",
  37864. image: {
  37865. source: "./media/characters/alek-dryagan/maw-human.svg"
  37866. }
  37867. },
  37868. mawDemi: {
  37869. height: math.unit(3.8, "feet"),
  37870. name: "Maw (Demi)",
  37871. image: {
  37872. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37873. }
  37874. },
  37875. },
  37876. [
  37877. {
  37878. name: "Normal",
  37879. height: math.unit(5 + 7/12, "feet"),
  37880. default: true
  37881. },
  37882. ]
  37883. ))
  37884. characterMakers.push(() => makeCharacter(
  37885. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37886. {
  37887. frontHuman: {
  37888. height: math.unit(5 + 2/12, "feet"),
  37889. name: "Front (Human)",
  37890. image: {
  37891. source: "./media/characters/gen/front-human.svg",
  37892. extra: 1627/1538,
  37893. bottom: 71/1698
  37894. }
  37895. },
  37896. backHuman: {
  37897. height: math.unit(5 + 2/12, "feet"),
  37898. name: "Back (Human)",
  37899. image: {
  37900. source: "./media/characters/gen/back-human.svg",
  37901. extra: 1638/1548,
  37902. bottom: 69/1707
  37903. }
  37904. },
  37905. frontDemi: {
  37906. height: math.unit(5 + 2/12, "feet"),
  37907. name: "Front (Demi)",
  37908. image: {
  37909. source: "./media/characters/gen/front-demi.svg",
  37910. extra: 1627/1538,
  37911. bottom: 71/1698
  37912. }
  37913. },
  37914. backDemi: {
  37915. height: math.unit(5 + 2/12, "feet"),
  37916. name: "Back (Demi)",
  37917. image: {
  37918. source: "./media/characters/gen/back-demi.svg",
  37919. extra: 1638/1548,
  37920. bottom: 69/1707
  37921. }
  37922. },
  37923. },
  37924. [
  37925. {
  37926. name: "Normal",
  37927. height: math.unit(5 + 2/12, "feet"),
  37928. default: true
  37929. },
  37930. ]
  37931. ))
  37932. characterMakers.push(() => makeCharacter(
  37933. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37934. {
  37935. frontImp: {
  37936. height: math.unit(1 + 11/12, "feet"),
  37937. name: "Front (Imp)",
  37938. image: {
  37939. source: "./media/characters/max-kobold/front-imp.svg",
  37940. extra: 1238/1134,
  37941. bottom: 81/1319
  37942. }
  37943. },
  37944. backImp: {
  37945. height: math.unit(1 + 11/12, "feet"),
  37946. name: "Back (Imp)",
  37947. image: {
  37948. source: "./media/characters/max-kobold/back-imp.svg",
  37949. extra: 1334/1175,
  37950. bottom: 34/1368
  37951. }
  37952. },
  37953. frontDemi: {
  37954. height: math.unit(5 + 9/12, "feet"),
  37955. name: "Front (Demi)",
  37956. image: {
  37957. source: "./media/characters/max-kobold/front-demi.svg",
  37958. extra: 1715/1685,
  37959. bottom: 54/1769
  37960. }
  37961. },
  37962. backDemi: {
  37963. height: math.unit(5 + 9/12, "feet"),
  37964. name: "Back (Demi)",
  37965. image: {
  37966. source: "./media/characters/max-kobold/back-demi.svg",
  37967. extra: 1752/1729,
  37968. bottom: 41/1793
  37969. }
  37970. },
  37971. handImp: {
  37972. height: math.unit(0.45, "feet"),
  37973. name: "Hand (Imp)",
  37974. image: {
  37975. source: "./media/characters/max-kobold/hand.svg"
  37976. }
  37977. },
  37978. pawImp: {
  37979. height: math.unit(0.46, "feet"),
  37980. name: "Paw (Imp)",
  37981. image: {
  37982. source: "./media/characters/max-kobold/paw.svg"
  37983. }
  37984. },
  37985. handDemi: {
  37986. height: math.unit(0.80, "feet"),
  37987. name: "Hand (Demi)",
  37988. image: {
  37989. source: "./media/characters/max-kobold/hand.svg"
  37990. }
  37991. },
  37992. pawDemi: {
  37993. height: math.unit(1.1, "feet"),
  37994. name: "Paw (Demi)",
  37995. image: {
  37996. source: "./media/characters/max-kobold/paw.svg"
  37997. }
  37998. },
  37999. headImp: {
  38000. height: math.unit(1.33, "feet"),
  38001. name: "Head (Imp)",
  38002. image: {
  38003. source: "./media/characters/max-kobold/head-imp.svg"
  38004. }
  38005. },
  38006. mawImp: {
  38007. height: math.unit(0.75, "feet"),
  38008. name: "Maw (Imp)",
  38009. image: {
  38010. source: "./media/characters/max-kobold/maw-imp.svg"
  38011. }
  38012. },
  38013. mawDemi: {
  38014. height: math.unit(0.42, "feet"),
  38015. name: "Maw (Demi)",
  38016. image: {
  38017. source: "./media/characters/max-kobold/maw-demi.svg"
  38018. }
  38019. },
  38020. },
  38021. [
  38022. {
  38023. name: "Normal",
  38024. height: math.unit(1 + 11/12, "feet"),
  38025. default: true
  38026. },
  38027. ]
  38028. ))
  38029. characterMakers.push(() => makeCharacter(
  38030. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38031. {
  38032. front: {
  38033. height: math.unit(7 + 5/12, "feet"),
  38034. name: "Front",
  38035. image: {
  38036. source: "./media/characters/carbon/front.svg",
  38037. extra: 1754/1689,
  38038. bottom: 65/1819
  38039. }
  38040. },
  38041. back: {
  38042. height: math.unit(7 + 5/12, "feet"),
  38043. name: "Back",
  38044. image: {
  38045. source: "./media/characters/carbon/back.svg",
  38046. extra: 1762/1695,
  38047. bottom: 24/1786
  38048. }
  38049. },
  38050. frontGigantamax: {
  38051. height: math.unit(150, "feet"),
  38052. name: "Front (Gigantamax)",
  38053. image: {
  38054. source: "./media/characters/carbon/front-gigantamax.svg",
  38055. extra: 1826/1669,
  38056. bottom: 59/1885
  38057. }
  38058. },
  38059. backGigantamax: {
  38060. height: math.unit(150, "feet"),
  38061. name: "Back (Gigantamax)",
  38062. image: {
  38063. source: "./media/characters/carbon/back-gigantamax.svg",
  38064. extra: 1796/1653,
  38065. bottom: 53/1849
  38066. }
  38067. },
  38068. maw: {
  38069. height: math.unit(0.48, "feet"),
  38070. name: "Maw",
  38071. image: {
  38072. source: "./media/characters/carbon/maw.svg"
  38073. }
  38074. },
  38075. mawGigantamax: {
  38076. height: math.unit(7.5, "feet"),
  38077. name: "Maw (Gigantamax)",
  38078. image: {
  38079. source: "./media/characters/carbon/maw-gigantamax.svg"
  38080. }
  38081. },
  38082. },
  38083. [
  38084. {
  38085. name: "Normal",
  38086. height: math.unit(7 + 5/12, "feet"),
  38087. default: true
  38088. },
  38089. ]
  38090. ))
  38091. characterMakers.push(() => makeCharacter(
  38092. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38093. {
  38094. front: {
  38095. height: math.unit(6, "feet"),
  38096. name: "Front",
  38097. image: {
  38098. source: "./media/characters/maverick/front.svg",
  38099. extra: 1672/1661,
  38100. bottom: 85/1757
  38101. }
  38102. },
  38103. back: {
  38104. height: math.unit(6, "feet"),
  38105. name: "Back",
  38106. image: {
  38107. source: "./media/characters/maverick/back.svg",
  38108. extra: 1642/1631,
  38109. bottom: 38/1680
  38110. }
  38111. },
  38112. },
  38113. [
  38114. {
  38115. name: "Normal",
  38116. height: math.unit(6, "feet"),
  38117. default: true
  38118. },
  38119. ]
  38120. ))
  38121. characterMakers.push(() => makeCharacter(
  38122. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38123. {
  38124. front: {
  38125. height: math.unit(15, "feet"),
  38126. weight: math.unit(615, "lb"),
  38127. name: "Front",
  38128. image: {
  38129. source: "./media/characters/grockle/front.svg",
  38130. extra: 1535/1427,
  38131. bottom: 56/1591
  38132. }
  38133. },
  38134. },
  38135. [
  38136. {
  38137. name: "Normal",
  38138. height: math.unit(15, "feet"),
  38139. default: true
  38140. },
  38141. {
  38142. name: "Large",
  38143. height: math.unit(150, "feet")
  38144. },
  38145. {
  38146. name: "Macro",
  38147. height: math.unit(1876, "feet")
  38148. },
  38149. {
  38150. name: "Mega Macro",
  38151. height: math.unit(121940, "feet")
  38152. },
  38153. {
  38154. name: "Giga Macro",
  38155. height: math.unit(750, "km")
  38156. },
  38157. {
  38158. name: "Tera Macro",
  38159. height: math.unit(750000, "km")
  38160. },
  38161. {
  38162. name: "Galactic",
  38163. height: math.unit(1.4e5, "km")
  38164. },
  38165. {
  38166. name: "Godlike",
  38167. height: math.unit(9.8e280, "galaxies")
  38168. },
  38169. ]
  38170. ))
  38171. characterMakers.push(() => makeCharacter(
  38172. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38173. {
  38174. front: {
  38175. height: math.unit(11, "meters"),
  38176. weight: math.unit(20, "tonnes"),
  38177. name: "Front",
  38178. image: {
  38179. source: "./media/characters/alistair/front.svg",
  38180. extra: 1265/1009,
  38181. bottom: 93/1358
  38182. }
  38183. },
  38184. },
  38185. [
  38186. {
  38187. name: "Normal",
  38188. height: math.unit(11, "meters"),
  38189. default: true
  38190. },
  38191. ]
  38192. ))
  38193. characterMakers.push(() => makeCharacter(
  38194. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38195. {
  38196. front: {
  38197. height: math.unit(5 + 8/12, "feet"),
  38198. name: "Front",
  38199. image: {
  38200. source: "./media/characters/haruka/front.svg",
  38201. extra: 2012/1952,
  38202. bottom: 0/2012
  38203. }
  38204. },
  38205. },
  38206. [
  38207. {
  38208. name: "Normal",
  38209. height: math.unit(5 + 8/12, "feet"),
  38210. default: true
  38211. },
  38212. ]
  38213. ))
  38214. characterMakers.push(() => makeCharacter(
  38215. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38216. {
  38217. back: {
  38218. height: math.unit(9, "feet"),
  38219. name: "Back",
  38220. image: {
  38221. source: "./media/characters/vivian-sylveon/back.svg",
  38222. extra: 1853/1714,
  38223. bottom: 0/1853
  38224. }
  38225. },
  38226. },
  38227. [
  38228. {
  38229. name: "Normal",
  38230. height: math.unit(9, "feet"),
  38231. default: true
  38232. },
  38233. {
  38234. name: "Macro",
  38235. height: math.unit(500, "feet")
  38236. },
  38237. {
  38238. name: "Megamacro",
  38239. height: math.unit(600, "miles")
  38240. },
  38241. {
  38242. name: "Gigamacro",
  38243. height: math.unit(30000, "miles")
  38244. },
  38245. ]
  38246. ))
  38247. characterMakers.push(() => makeCharacter(
  38248. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38249. {
  38250. anthro: {
  38251. height: math.unit(5 + 10/12, "feet"),
  38252. weight: math.unit(100, "lb"),
  38253. name: "Anthro",
  38254. image: {
  38255. source: "./media/characters/daiki/anthro.svg",
  38256. extra: 1115/1027,
  38257. bottom: 69/1184
  38258. }
  38259. },
  38260. feral: {
  38261. height: math.unit(200, "feet"),
  38262. name: "Feral",
  38263. image: {
  38264. source: "./media/characters/daiki/feral.svg",
  38265. extra: 1256/313,
  38266. bottom: 39/1295
  38267. }
  38268. },
  38269. feralHead: {
  38270. height: math.unit(171, "feet"),
  38271. name: "Feral Head",
  38272. image: {
  38273. source: "./media/characters/daiki/feral-head.svg"
  38274. }
  38275. },
  38276. manaDragon: {
  38277. height: math.unit(170, "meters"),
  38278. name: "Mana-dragon",
  38279. image: {
  38280. source: "./media/characters/daiki/mana-dragon.svg",
  38281. extra: 763/420,
  38282. bottom: 97/860
  38283. }
  38284. },
  38285. },
  38286. [
  38287. {
  38288. name: "Normal",
  38289. height: math.unit(5 + 10/12, "feet"),
  38290. default: true
  38291. },
  38292. ]
  38293. ))
  38294. characterMakers.push(() => makeCharacter(
  38295. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38296. {
  38297. fullyEquippedFront: {
  38298. height: math.unit(3 + 1/12, "feet"),
  38299. weight: math.unit(24, "lb"),
  38300. name: "Fully Equipped (Front)",
  38301. image: {
  38302. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38303. extra: 687/605,
  38304. bottom: 18/705
  38305. }
  38306. },
  38307. fullyEquippedBack: {
  38308. height: math.unit(3 + 1/12, "feet"),
  38309. weight: math.unit(24, "lb"),
  38310. name: "Fully Equipped (Back)",
  38311. image: {
  38312. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38313. extra: 689/590,
  38314. bottom: 18/707
  38315. }
  38316. },
  38317. dailyWear: {
  38318. height: math.unit(3 + 1/12, "feet"),
  38319. weight: math.unit(24, "lb"),
  38320. name: "Daily Wear",
  38321. image: {
  38322. source: "./media/characters/tea-spot/daily-wear.svg",
  38323. extra: 701/620,
  38324. bottom: 21/722
  38325. }
  38326. },
  38327. maidWork: {
  38328. height: math.unit(3 + 1/12, "feet"),
  38329. weight: math.unit(24, "lb"),
  38330. name: "Maid Work",
  38331. image: {
  38332. source: "./media/characters/tea-spot/maid-work.svg",
  38333. extra: 693/609,
  38334. bottom: 15/708
  38335. }
  38336. },
  38337. },
  38338. [
  38339. {
  38340. name: "Normal",
  38341. height: math.unit(3 + 1/12, "feet"),
  38342. default: true
  38343. },
  38344. ]
  38345. ))
  38346. characterMakers.push(() => makeCharacter(
  38347. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38348. {
  38349. front: {
  38350. height: math.unit(175, "cm"),
  38351. weight: math.unit(75, "kg"),
  38352. name: "Front",
  38353. image: {
  38354. source: "./media/characters/chee/front.svg",
  38355. extra: 1796/1740,
  38356. bottom: 40/1836
  38357. }
  38358. },
  38359. },
  38360. [
  38361. {
  38362. name: "Micro-Micro",
  38363. height: math.unit(1, "nm")
  38364. },
  38365. {
  38366. name: "Micro-erst",
  38367. height: math.unit(1, "micrometer")
  38368. },
  38369. {
  38370. name: "Micro-er",
  38371. height: math.unit(1, "cm")
  38372. },
  38373. {
  38374. name: "Normal",
  38375. height: math.unit(175, "cm"),
  38376. default: true
  38377. },
  38378. {
  38379. name: "Macro",
  38380. height: math.unit(100, "m")
  38381. },
  38382. {
  38383. name: "Macro-er",
  38384. height: math.unit(1, "km")
  38385. },
  38386. {
  38387. name: "Macro-erst",
  38388. height: math.unit(10, "km")
  38389. },
  38390. {
  38391. name: "Macro-Macro",
  38392. height: math.unit(100, "km")
  38393. },
  38394. ]
  38395. ))
  38396. characterMakers.push(() => makeCharacter(
  38397. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38398. {
  38399. front: {
  38400. height: math.unit(11 + 9/12, "feet"),
  38401. weight: math.unit(935, "lb"),
  38402. name: "Front",
  38403. image: {
  38404. source: "./media/characters/kingsley/front.svg",
  38405. extra: 1803/1674,
  38406. bottom: 127/1930
  38407. }
  38408. },
  38409. frontNude: {
  38410. height: math.unit(11 + 9/12, "feet"),
  38411. weight: math.unit(935, "lb"),
  38412. name: "Front (Nude)",
  38413. image: {
  38414. source: "./media/characters/kingsley/front-nude.svg",
  38415. extra: 1803/1674,
  38416. bottom: 127/1930
  38417. }
  38418. },
  38419. },
  38420. [
  38421. {
  38422. name: "Normal",
  38423. height: math.unit(11 + 9/12, "feet"),
  38424. default: true
  38425. },
  38426. ]
  38427. ))
  38428. characterMakers.push(() => makeCharacter(
  38429. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38430. {
  38431. side: {
  38432. height: math.unit(9, "feet"),
  38433. name: "Side",
  38434. image: {
  38435. source: "./media/characters/rymel/side.svg",
  38436. extra: 792/469,
  38437. bottom: 121/913
  38438. }
  38439. },
  38440. maw: {
  38441. height: math.unit(2.4, "meters"),
  38442. name: "Maw",
  38443. image: {
  38444. source: "./media/characters/rymel/maw.svg"
  38445. }
  38446. },
  38447. },
  38448. [
  38449. {
  38450. name: "House Drake",
  38451. height: math.unit(2, "feet")
  38452. },
  38453. {
  38454. name: "Reduced",
  38455. height: math.unit(4.5, "feet")
  38456. },
  38457. {
  38458. name: "Normal",
  38459. height: math.unit(9, "feet"),
  38460. default: true
  38461. },
  38462. ]
  38463. ))
  38464. characterMakers.push(() => makeCharacter(
  38465. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38466. {
  38467. front: {
  38468. height: math.unit(1.74, "meters"),
  38469. weight: math.unit(55, "kg"),
  38470. name: "Front",
  38471. image: {
  38472. source: "./media/characters/rubus/front.svg",
  38473. extra: 1894/1742,
  38474. bottom: 44/1938
  38475. }
  38476. },
  38477. },
  38478. [
  38479. {
  38480. name: "Normal",
  38481. height: math.unit(1.74, "meters"),
  38482. default: true
  38483. },
  38484. ]
  38485. ))
  38486. characterMakers.push(() => makeCharacter(
  38487. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38488. {
  38489. front: {
  38490. height: math.unit(5 + 2/12, "feet"),
  38491. weight: math.unit(112, "lb"),
  38492. name: "Front",
  38493. image: {
  38494. source: "./media/characters/cassie-kingston/front.svg",
  38495. extra: 1438/1390,
  38496. bottom: 47/1485
  38497. }
  38498. },
  38499. },
  38500. [
  38501. {
  38502. name: "Normal",
  38503. height: math.unit(5 + 2/12, "feet"),
  38504. default: true
  38505. },
  38506. {
  38507. name: "Macro",
  38508. height: math.unit(128, "feet")
  38509. },
  38510. {
  38511. name: "Megamacro",
  38512. height: math.unit(2.56, "miles")
  38513. },
  38514. ]
  38515. ))
  38516. characterMakers.push(() => makeCharacter(
  38517. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38518. {
  38519. front: {
  38520. height: math.unit(7, "feet"),
  38521. name: "Front",
  38522. image: {
  38523. source: "./media/characters/fox/front.svg",
  38524. extra: 1798/1703,
  38525. bottom: 55/1853
  38526. }
  38527. },
  38528. back: {
  38529. height: math.unit(7, "feet"),
  38530. name: "Back",
  38531. image: {
  38532. source: "./media/characters/fox/back.svg",
  38533. extra: 1748/1649,
  38534. bottom: 32/1780
  38535. }
  38536. },
  38537. head: {
  38538. height: math.unit(1.95, "feet"),
  38539. name: "Head",
  38540. image: {
  38541. source: "./media/characters/fox/head.svg"
  38542. }
  38543. },
  38544. dick: {
  38545. height: math.unit(1.33, "feet"),
  38546. name: "Dick",
  38547. image: {
  38548. source: "./media/characters/fox/dick.svg"
  38549. }
  38550. },
  38551. foot: {
  38552. height: math.unit(1, "feet"),
  38553. name: "Foot",
  38554. image: {
  38555. source: "./media/characters/fox/foot.svg"
  38556. }
  38557. },
  38558. paw: {
  38559. height: math.unit(0.92, "feet"),
  38560. name: "Paw",
  38561. image: {
  38562. source: "./media/characters/fox/paw.svg"
  38563. }
  38564. },
  38565. },
  38566. [
  38567. {
  38568. name: "Small",
  38569. height: math.unit(3, "inches")
  38570. },
  38571. {
  38572. name: "\"Realistic\"",
  38573. height: math.unit(7, "feet")
  38574. },
  38575. {
  38576. name: "Normal",
  38577. height: math.unit(150, "feet"),
  38578. default: true
  38579. },
  38580. {
  38581. name: "BIG",
  38582. height: math.unit(1200, "feet")
  38583. },
  38584. {
  38585. name: "👀",
  38586. height: math.unit(5, "miles")
  38587. },
  38588. {
  38589. name: "👀👀👀",
  38590. height: math.unit(64, "miles")
  38591. },
  38592. ]
  38593. ))
  38594. characterMakers.push(() => makeCharacter(
  38595. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38596. {
  38597. front: {
  38598. height: math.unit(625, "feet"),
  38599. name: "Front",
  38600. image: {
  38601. source: "./media/characters/asonja-rossa/front.svg",
  38602. extra: 1833/1686,
  38603. bottom: 24/1857
  38604. }
  38605. },
  38606. back: {
  38607. height: math.unit(625, "feet"),
  38608. name: "Back",
  38609. image: {
  38610. source: "./media/characters/asonja-rossa/back.svg",
  38611. extra: 1852/1753,
  38612. bottom: 26/1878
  38613. }
  38614. },
  38615. },
  38616. [
  38617. {
  38618. name: "Macro",
  38619. height: math.unit(625, "feet"),
  38620. default: true
  38621. },
  38622. ]
  38623. ))
  38624. characterMakers.push(() => makeCharacter(
  38625. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38626. {
  38627. side: {
  38628. height: math.unit(8, "feet"),
  38629. name: "Side",
  38630. image: {
  38631. source: "./media/characters/rezukii/side.svg",
  38632. extra: 979/542,
  38633. bottom: 87/1066
  38634. }
  38635. },
  38636. sitting: {
  38637. height: math.unit(14.6, "feet"),
  38638. name: "Sitting",
  38639. image: {
  38640. source: "./media/characters/rezukii/sitting.svg",
  38641. extra: 1023/813,
  38642. bottom: 45/1068
  38643. }
  38644. },
  38645. },
  38646. [
  38647. {
  38648. name: "Tiny",
  38649. height: math.unit(2, "feet")
  38650. },
  38651. {
  38652. name: "Smol",
  38653. height: math.unit(4, "feet")
  38654. },
  38655. {
  38656. name: "Normal",
  38657. height: math.unit(8, "feet"),
  38658. default: true
  38659. },
  38660. {
  38661. name: "Big",
  38662. height: math.unit(12, "feet")
  38663. },
  38664. {
  38665. name: "Macro",
  38666. height: math.unit(30, "feet")
  38667. },
  38668. ]
  38669. ))
  38670. characterMakers.push(() => makeCharacter(
  38671. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38672. {
  38673. front: {
  38674. height: math.unit(14, "feet"),
  38675. weight: math.unit(9.5, "tonnes"),
  38676. name: "Front",
  38677. image: {
  38678. source: "./media/characters/dawnheart/front.svg",
  38679. extra: 2792/2675,
  38680. bottom: 64/2856
  38681. }
  38682. },
  38683. },
  38684. [
  38685. {
  38686. name: "Normal",
  38687. height: math.unit(14, "feet"),
  38688. default: true
  38689. },
  38690. ]
  38691. ))
  38692. characterMakers.push(() => makeCharacter(
  38693. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38694. {
  38695. front: {
  38696. height: math.unit(1.7, "m"),
  38697. name: "Front",
  38698. image: {
  38699. source: "./media/characters/gladi/front.svg",
  38700. extra: 1460/1362,
  38701. bottom: 19/1479
  38702. }
  38703. },
  38704. back: {
  38705. height: math.unit(1.7, "m"),
  38706. name: "Back",
  38707. image: {
  38708. source: "./media/characters/gladi/back.svg",
  38709. extra: 1459/1357,
  38710. bottom: 12/1471
  38711. }
  38712. },
  38713. feral: {
  38714. height: math.unit(2.05, "m"),
  38715. name: "Feral",
  38716. image: {
  38717. source: "./media/characters/gladi/feral.svg",
  38718. extra: 821/557,
  38719. bottom: 91/912
  38720. }
  38721. },
  38722. },
  38723. [
  38724. {
  38725. name: "Shortest",
  38726. height: math.unit(70, "cm")
  38727. },
  38728. {
  38729. name: "Normal",
  38730. height: math.unit(1.7, "m")
  38731. },
  38732. {
  38733. name: "Macro",
  38734. height: math.unit(10, "m"),
  38735. default: true
  38736. },
  38737. {
  38738. name: "Tallest",
  38739. height: math.unit(200, "m")
  38740. },
  38741. ]
  38742. ))
  38743. characterMakers.push(() => makeCharacter(
  38744. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38745. {
  38746. front: {
  38747. height: math.unit(5 + 7/12, "feet"),
  38748. weight: math.unit(2, "tons"),
  38749. name: "Front",
  38750. image: {
  38751. source: "./media/characters/erdno/front.svg",
  38752. extra: 1234/1129,
  38753. bottom: 35/1269
  38754. }
  38755. },
  38756. angled: {
  38757. height: math.unit(5 + 7/12, "feet"),
  38758. weight: math.unit(2, "tons"),
  38759. name: "Angled",
  38760. image: {
  38761. source: "./media/characters/erdno/angled.svg",
  38762. extra: 1185/1139,
  38763. bottom: 36/1221
  38764. }
  38765. },
  38766. side: {
  38767. height: math.unit(5 + 7/12, "feet"),
  38768. weight: math.unit(2, "tons"),
  38769. name: "Side",
  38770. image: {
  38771. source: "./media/characters/erdno/side.svg",
  38772. extra: 1191/1144,
  38773. bottom: 40/1231
  38774. }
  38775. },
  38776. back: {
  38777. height: math.unit(5 + 7/12, "feet"),
  38778. weight: math.unit(2, "tons"),
  38779. name: "Back",
  38780. image: {
  38781. source: "./media/characters/erdno/back.svg",
  38782. extra: 1202/1146,
  38783. bottom: 17/1219
  38784. }
  38785. },
  38786. frontNsfw: {
  38787. height: math.unit(5 + 7/12, "feet"),
  38788. weight: math.unit(2, "tons"),
  38789. name: "Front (NSFW)",
  38790. image: {
  38791. source: "./media/characters/erdno/front-nsfw.svg",
  38792. extra: 1234/1129,
  38793. bottom: 35/1269
  38794. }
  38795. },
  38796. angledNsfw: {
  38797. height: math.unit(5 + 7/12, "feet"),
  38798. weight: math.unit(2, "tons"),
  38799. name: "Angled (NSFW)",
  38800. image: {
  38801. source: "./media/characters/erdno/angled-nsfw.svg",
  38802. extra: 1185/1139,
  38803. bottom: 36/1221
  38804. }
  38805. },
  38806. sideNsfw: {
  38807. height: math.unit(5 + 7/12, "feet"),
  38808. weight: math.unit(2, "tons"),
  38809. name: "Side (NSFW)",
  38810. image: {
  38811. source: "./media/characters/erdno/side-nsfw.svg",
  38812. extra: 1191/1144,
  38813. bottom: 40/1231
  38814. }
  38815. },
  38816. backNsfw: {
  38817. height: math.unit(5 + 7/12, "feet"),
  38818. weight: math.unit(2, "tons"),
  38819. name: "Back (NSFW)",
  38820. image: {
  38821. source: "./media/characters/erdno/back-nsfw.svg",
  38822. extra: 1202/1146,
  38823. bottom: 17/1219
  38824. }
  38825. },
  38826. frontHyper: {
  38827. height: math.unit(5 + 7/12, "feet"),
  38828. weight: math.unit(2, "tons"),
  38829. name: "Front (Hyper)",
  38830. image: {
  38831. source: "./media/characters/erdno/front-hyper.svg",
  38832. extra: 1298/1136,
  38833. bottom: 35/1333
  38834. }
  38835. },
  38836. },
  38837. [
  38838. {
  38839. name: "Normal",
  38840. height: math.unit(5 + 7/12, "feet"),
  38841. default: true
  38842. },
  38843. {
  38844. name: "Big",
  38845. height: math.unit(5.7, "meters")
  38846. },
  38847. {
  38848. name: "Macro",
  38849. height: math.unit(5.7, "kilometers")
  38850. },
  38851. {
  38852. name: "Megamacro",
  38853. height: math.unit(5.7, "earths")
  38854. },
  38855. ]
  38856. ))
  38857. characterMakers.push(() => makeCharacter(
  38858. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38859. {
  38860. front: {
  38861. height: math.unit(5 + 10/12, "feet"),
  38862. weight: math.unit(150, "lb"),
  38863. name: "Front",
  38864. image: {
  38865. source: "./media/characters/jamie/front.svg",
  38866. extra: 1908/1768,
  38867. bottom: 19/1927
  38868. }
  38869. },
  38870. },
  38871. [
  38872. {
  38873. name: "Minimum",
  38874. height: math.unit(2, "cm")
  38875. },
  38876. {
  38877. name: "Micro",
  38878. height: math.unit(3, "inches")
  38879. },
  38880. {
  38881. name: "Normal",
  38882. height: math.unit(5 + 10/12, "feet"),
  38883. default: true
  38884. },
  38885. {
  38886. name: "Macro",
  38887. height: math.unit(150, "feet")
  38888. },
  38889. {
  38890. name: "Megamacro",
  38891. height: math.unit(10000, "m")
  38892. },
  38893. ]
  38894. ))
  38895. characterMakers.push(() => makeCharacter(
  38896. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38897. {
  38898. front: {
  38899. height: math.unit(2, "meters"),
  38900. weight: math.unit(100, "kg"),
  38901. name: "Front",
  38902. image: {
  38903. source: "./media/characters/shiron/front.svg",
  38904. extra: 2103/1985,
  38905. bottom: 98/2201
  38906. }
  38907. },
  38908. back: {
  38909. height: math.unit(2, "meters"),
  38910. weight: math.unit(100, "kg"),
  38911. name: "Back",
  38912. image: {
  38913. source: "./media/characters/shiron/back.svg",
  38914. extra: 2110/2015,
  38915. bottom: 89/2199
  38916. }
  38917. },
  38918. hand: {
  38919. height: math.unit(0.96, "feet"),
  38920. name: "Hand",
  38921. image: {
  38922. source: "./media/characters/shiron/hand.svg"
  38923. }
  38924. },
  38925. foot: {
  38926. height: math.unit(1.464, "feet"),
  38927. name: "Foot",
  38928. image: {
  38929. source: "./media/characters/shiron/foot.svg"
  38930. }
  38931. },
  38932. },
  38933. [
  38934. {
  38935. name: "Normal",
  38936. height: math.unit(2, "meters")
  38937. },
  38938. {
  38939. name: "Macro",
  38940. height: math.unit(500, "meters"),
  38941. default: true
  38942. },
  38943. {
  38944. name: "Megamacro",
  38945. height: math.unit(20, "km")
  38946. },
  38947. ]
  38948. ))
  38949. characterMakers.push(() => makeCharacter(
  38950. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38951. {
  38952. front: {
  38953. height: math.unit(6, "feet"),
  38954. name: "Front",
  38955. image: {
  38956. source: "./media/characters/sam/front.svg",
  38957. extra: 849/826,
  38958. bottom: 19/868
  38959. }
  38960. },
  38961. },
  38962. [
  38963. {
  38964. name: "Normal",
  38965. height: math.unit(6, "feet"),
  38966. default: true
  38967. },
  38968. ]
  38969. ))
  38970. characterMakers.push(() => makeCharacter(
  38971. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38972. {
  38973. front: {
  38974. height: math.unit(8 + 4/12, "feet"),
  38975. weight: math.unit(122, "kg"),
  38976. name: "Front",
  38977. image: {
  38978. source: "./media/characters/namori-kurogawa/front.svg",
  38979. extra: 1894/1576,
  38980. bottom: 34/1928
  38981. }
  38982. },
  38983. },
  38984. [
  38985. {
  38986. name: "Normal",
  38987. height: math.unit(8 + 4/12, "feet"),
  38988. default: true
  38989. },
  38990. ]
  38991. ))
  38992. characterMakers.push(() => makeCharacter(
  38993. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38994. {
  38995. front: {
  38996. height: math.unit(9, "feet"),
  38997. weight: math.unit(621, "lb"),
  38998. name: "Front",
  38999. image: {
  39000. source: "./media/characters/unmru/front.svg",
  39001. extra: 1853/1747,
  39002. bottom: 73/1926
  39003. }
  39004. },
  39005. side: {
  39006. height: math.unit(9, "feet"),
  39007. weight: math.unit(621, "lb"),
  39008. name: "Side",
  39009. image: {
  39010. source: "./media/characters/unmru/side.svg",
  39011. extra: 1781/1671,
  39012. bottom: 127/1908
  39013. }
  39014. },
  39015. back: {
  39016. height: math.unit(9, "feet"),
  39017. weight: math.unit(621, "lb"),
  39018. name: "Back",
  39019. image: {
  39020. source: "./media/characters/unmru/back.svg",
  39021. extra: 1894/1765,
  39022. bottom: 75/1969
  39023. }
  39024. },
  39025. dick: {
  39026. height: math.unit(3, "feet"),
  39027. weight: math.unit(35, "lb"),
  39028. name: "Dick",
  39029. image: {
  39030. source: "./media/characters/unmru/dick.svg"
  39031. }
  39032. },
  39033. },
  39034. [
  39035. {
  39036. name: "Normal",
  39037. height: math.unit(9, "feet")
  39038. },
  39039. {
  39040. name: "Natural",
  39041. height: math.unit(27, "feet"),
  39042. default: true
  39043. },
  39044. {
  39045. name: "Giant",
  39046. height: math.unit(90, "feet")
  39047. },
  39048. {
  39049. name: "Kaiju",
  39050. height: math.unit(270, "feet")
  39051. },
  39052. {
  39053. name: "Macro",
  39054. height: math.unit(900, "feet")
  39055. },
  39056. {
  39057. name: "Macro+",
  39058. height: math.unit(2700, "feet")
  39059. },
  39060. {
  39061. name: "Megamacro",
  39062. height: math.unit(9000, "feet")
  39063. },
  39064. {
  39065. name: "City-Crushing",
  39066. height: math.unit(27000, "feet")
  39067. },
  39068. {
  39069. name: "Mountain-Mashing",
  39070. height: math.unit(90000, "feet")
  39071. },
  39072. {
  39073. name: "Earth-Eclipsing",
  39074. height: math.unit(2.7e8, "feet")
  39075. },
  39076. {
  39077. name: "Sol-Swallowing",
  39078. height: math.unit(9e10, "feet")
  39079. },
  39080. {
  39081. name: "Majoris-Munching",
  39082. height: math.unit(2.7e13, "feet")
  39083. },
  39084. ]
  39085. ))
  39086. characterMakers.push(() => makeCharacter(
  39087. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39088. {
  39089. front: {
  39090. height: math.unit(1, "inch"),
  39091. name: "Front",
  39092. image: {
  39093. source: "./media/characters/squeaks-mouse/front.svg",
  39094. extra: 352/308,
  39095. bottom: 25/377
  39096. }
  39097. },
  39098. },
  39099. [
  39100. {
  39101. name: "Micro",
  39102. height: math.unit(1, "inch"),
  39103. default: true
  39104. },
  39105. ]
  39106. ))
  39107. characterMakers.push(() => makeCharacter(
  39108. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39109. {
  39110. side: {
  39111. height: math.unit(35, "feet"),
  39112. name: "Side",
  39113. image: {
  39114. source: "./media/characters/sayko/side.svg",
  39115. extra: 1697/1021,
  39116. bottom: 82/1779
  39117. }
  39118. },
  39119. head: {
  39120. height: math.unit(16, "feet"),
  39121. name: "Head",
  39122. image: {
  39123. source: "./media/characters/sayko/head.svg"
  39124. }
  39125. },
  39126. forepaw: {
  39127. height: math.unit(7.85, "feet"),
  39128. name: "Forepaw",
  39129. image: {
  39130. source: "./media/characters/sayko/forepaw.svg"
  39131. }
  39132. },
  39133. hindpaw: {
  39134. height: math.unit(8.8, "feet"),
  39135. name: "Hindpaw",
  39136. image: {
  39137. source: "./media/characters/sayko/hindpaw.svg"
  39138. }
  39139. },
  39140. },
  39141. [
  39142. {
  39143. name: "Normal",
  39144. height: math.unit(35, "feet"),
  39145. default: true
  39146. },
  39147. {
  39148. name: "Colossus",
  39149. height: math.unit(100, "meters")
  39150. },
  39151. {
  39152. name: "\"Small\" Deity",
  39153. height: math.unit(1, "km")
  39154. },
  39155. {
  39156. name: "\"Large\" Deity",
  39157. height: math.unit(15, "km")
  39158. },
  39159. ]
  39160. ))
  39161. characterMakers.push(() => makeCharacter(
  39162. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39163. {
  39164. front: {
  39165. height: math.unit(6, "feet"),
  39166. weight: math.unit(250, "lb"),
  39167. name: "Front",
  39168. image: {
  39169. source: "./media/characters/mukiro/front.svg",
  39170. extra: 1368/1310,
  39171. bottom: 34/1402
  39172. }
  39173. },
  39174. },
  39175. [
  39176. {
  39177. name: "Normal",
  39178. height: math.unit(6, "feet"),
  39179. default: true
  39180. },
  39181. ]
  39182. ))
  39183. characterMakers.push(() => makeCharacter(
  39184. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39185. {
  39186. front: {
  39187. height: math.unit(12 + 4/12, "feet"),
  39188. name: "Front",
  39189. image: {
  39190. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39191. extra: 1346/1311,
  39192. bottom: 65/1411
  39193. }
  39194. },
  39195. },
  39196. [
  39197. {
  39198. name: "Base",
  39199. height: math.unit(12 + 4/12, "feet"),
  39200. default: true
  39201. },
  39202. {
  39203. name: "Macro",
  39204. height: math.unit(150, "feet")
  39205. },
  39206. {
  39207. name: "Mega",
  39208. height: math.unit(2, "miles")
  39209. },
  39210. {
  39211. name: "Demi God",
  39212. height: math.unit(4, "AU")
  39213. },
  39214. {
  39215. name: "God Size",
  39216. height: math.unit(1, "universe")
  39217. },
  39218. ]
  39219. ))
  39220. characterMakers.push(() => makeCharacter(
  39221. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39222. {
  39223. front: {
  39224. height: math.unit(3 + 3/12, "feet"),
  39225. weight: math.unit(88, "lb"),
  39226. name: "Front",
  39227. image: {
  39228. source: "./media/characters/trey/front.svg",
  39229. extra: 1815/1509,
  39230. bottom: 60/1875
  39231. }
  39232. },
  39233. },
  39234. [
  39235. {
  39236. name: "Normal",
  39237. height: math.unit(3 + 3/12, "feet"),
  39238. default: true
  39239. },
  39240. ]
  39241. ))
  39242. characterMakers.push(() => makeCharacter(
  39243. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39244. {
  39245. front: {
  39246. height: math.unit(4, "meters"),
  39247. name: "Front",
  39248. image: {
  39249. source: "./media/characters/adelonda/front.svg",
  39250. extra: 1077/982,
  39251. bottom: 39/1116
  39252. }
  39253. },
  39254. back: {
  39255. height: math.unit(4, "meters"),
  39256. name: "Back",
  39257. image: {
  39258. source: "./media/characters/adelonda/back.svg",
  39259. extra: 1105/1003,
  39260. bottom: 25/1130
  39261. }
  39262. },
  39263. feral: {
  39264. height: math.unit(40/1.5, "meters"),
  39265. name: "Feral",
  39266. image: {
  39267. source: "./media/characters/adelonda/feral.svg",
  39268. extra: 597/271,
  39269. bottom: 387/984
  39270. }
  39271. },
  39272. },
  39273. [
  39274. {
  39275. name: "Normal",
  39276. height: math.unit(4, "meters"),
  39277. default: true
  39278. },
  39279. ]
  39280. ))
  39281. characterMakers.push(() => makeCharacter(
  39282. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39283. {
  39284. front: {
  39285. height: math.unit(8 + 4/12, "feet"),
  39286. weight: math.unit(670, "lb"),
  39287. name: "Front",
  39288. image: {
  39289. source: "./media/characters/acadiel/front.svg",
  39290. extra: 1901/1595,
  39291. bottom: 142/2043
  39292. }
  39293. },
  39294. },
  39295. [
  39296. {
  39297. name: "Normal",
  39298. height: math.unit(8 + 4/12, "feet"),
  39299. default: true
  39300. },
  39301. {
  39302. name: "Macro",
  39303. height: math.unit(200, "feet")
  39304. },
  39305. ]
  39306. ))
  39307. characterMakers.push(() => makeCharacter(
  39308. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39309. {
  39310. front: {
  39311. height: math.unit(6 + 2/12, "feet"),
  39312. weight: math.unit(185, "lb"),
  39313. name: "Front",
  39314. image: {
  39315. source: "./media/characters/kayne-ein/front.svg",
  39316. extra: 1780/1560,
  39317. bottom: 81/1861
  39318. }
  39319. },
  39320. },
  39321. [
  39322. {
  39323. name: "Normal",
  39324. height: math.unit(6 + 2/12, "feet"),
  39325. default: true
  39326. },
  39327. {
  39328. name: "Transformation Stage",
  39329. height: math.unit(15, "feet")
  39330. },
  39331. {
  39332. name: "Macro",
  39333. height: math.unit(150, "feet")
  39334. },
  39335. {
  39336. name: "Earth's Shadow",
  39337. height: math.unit(6200, "miles")
  39338. },
  39339. {
  39340. name: "Universal Demon",
  39341. height: math.unit(28e9, "parsecs")
  39342. },
  39343. {
  39344. name: "Multiverse God",
  39345. height: math.unit(3, "multiverses")
  39346. },
  39347. ]
  39348. ))
  39349. characterMakers.push(() => makeCharacter(
  39350. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39351. {
  39352. front: {
  39353. height: math.unit(5 + 5/12, "feet"),
  39354. name: "Front",
  39355. image: {
  39356. source: "./media/characters/fawn/front.svg",
  39357. extra: 1873/1731,
  39358. bottom: 95/1968
  39359. }
  39360. },
  39361. back: {
  39362. height: math.unit(5 + 5/12, "feet"),
  39363. name: "Back",
  39364. image: {
  39365. source: "./media/characters/fawn/back.svg",
  39366. extra: 1813/1700,
  39367. bottom: 14/1827
  39368. }
  39369. },
  39370. hoof: {
  39371. height: math.unit(1.45, "feet"),
  39372. name: "Hoof",
  39373. image: {
  39374. source: "./media/characters/fawn/hoof.svg"
  39375. }
  39376. },
  39377. },
  39378. [
  39379. {
  39380. name: "Normal",
  39381. height: math.unit(5 + 5/12, "feet"),
  39382. default: true
  39383. },
  39384. ]
  39385. ))
  39386. characterMakers.push(() => makeCharacter(
  39387. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39388. {
  39389. front: {
  39390. height: math.unit(2 + 5/12, "feet"),
  39391. name: "Front",
  39392. image: {
  39393. source: "./media/characters/orion/front.svg",
  39394. extra: 1366/1304,
  39395. bottom: 43/1409
  39396. }
  39397. },
  39398. paw: {
  39399. height: math.unit(0.52, "feet"),
  39400. name: "Paw",
  39401. image: {
  39402. source: "./media/characters/orion/paw.svg"
  39403. }
  39404. },
  39405. },
  39406. [
  39407. {
  39408. name: "Normal",
  39409. height: math.unit(2 + 5/12, "feet"),
  39410. default: true
  39411. },
  39412. ]
  39413. ))
  39414. characterMakers.push(() => makeCharacter(
  39415. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39416. {
  39417. front: {
  39418. height: math.unit(5 + 10/12, "feet"),
  39419. name: "Front",
  39420. image: {
  39421. source: "./media/characters/vera/front.svg",
  39422. extra: 1680/1575,
  39423. bottom: 49/1729
  39424. }
  39425. },
  39426. back: {
  39427. height: math.unit(5 + 10/12, "feet"),
  39428. name: "Back",
  39429. image: {
  39430. source: "./media/characters/vera/back.svg",
  39431. extra: 1700/1588,
  39432. bottom: 18/1718
  39433. }
  39434. },
  39435. arcanine: {
  39436. height: math.unit(6 + 8/12, "feet"),
  39437. name: "Arcanine",
  39438. image: {
  39439. source: "./media/characters/vera/arcanine.svg",
  39440. extra: 1590/1511,
  39441. bottom: 71/1661
  39442. }
  39443. },
  39444. maw: {
  39445. height: math.unit(0.82, "feet"),
  39446. name: "Maw",
  39447. image: {
  39448. source: "./media/characters/vera/maw.svg"
  39449. }
  39450. },
  39451. mawArcanine: {
  39452. height: math.unit(0.97, "feet"),
  39453. name: "Maw (Arcanine)",
  39454. image: {
  39455. source: "./media/characters/vera/maw-arcanine.svg"
  39456. }
  39457. },
  39458. paw: {
  39459. height: math.unit(0.75, "feet"),
  39460. name: "Paw",
  39461. image: {
  39462. source: "./media/characters/vera/paw.svg"
  39463. }
  39464. },
  39465. pawprint: {
  39466. height: math.unit(0.52, "feet"),
  39467. name: "Pawprint",
  39468. image: {
  39469. source: "./media/characters/vera/pawprint.svg"
  39470. }
  39471. },
  39472. },
  39473. [
  39474. {
  39475. name: "Normal",
  39476. height: math.unit(5 + 10/12, "feet"),
  39477. default: true
  39478. },
  39479. {
  39480. name: "Macro",
  39481. height: math.unit(75, "feet")
  39482. },
  39483. ]
  39484. ))
  39485. characterMakers.push(() => makeCharacter(
  39486. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39487. {
  39488. front: {
  39489. height: math.unit(4, "feet"),
  39490. weight: math.unit(40, "lb"),
  39491. name: "Front",
  39492. image: {
  39493. source: "./media/characters/orvan-rabbit/front.svg",
  39494. extra: 1896/1642,
  39495. bottom: 29/1925
  39496. }
  39497. },
  39498. },
  39499. [
  39500. {
  39501. name: "Normal",
  39502. height: math.unit(4, "feet"),
  39503. default: true
  39504. },
  39505. ]
  39506. ))
  39507. characterMakers.push(() => makeCharacter(
  39508. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39509. {
  39510. front: {
  39511. height: math.unit(6, "feet"),
  39512. weight: math.unit(168, "lb"),
  39513. name: "Front",
  39514. image: {
  39515. source: "./media/characters/lisa/front.svg",
  39516. extra: 2065/1867,
  39517. bottom: 46/2111
  39518. }
  39519. },
  39520. back: {
  39521. height: math.unit(6, "feet"),
  39522. weight: math.unit(168, "lb"),
  39523. name: "Back",
  39524. image: {
  39525. source: "./media/characters/lisa/back.svg",
  39526. extra: 1982/1838,
  39527. bottom: 29/2011
  39528. }
  39529. },
  39530. maw: {
  39531. height: math.unit(0.81, "feet"),
  39532. name: "Maw",
  39533. image: {
  39534. source: "./media/characters/lisa/maw.svg"
  39535. }
  39536. },
  39537. paw: {
  39538. height: math.unit(0.9, "feet"),
  39539. name: "Paw",
  39540. image: {
  39541. source: "./media/characters/lisa/paw.svg"
  39542. }
  39543. },
  39544. caribousune: {
  39545. height: math.unit(7 + 2/12, "feet"),
  39546. weight: math.unit(268, "lb"),
  39547. name: "Caribousune",
  39548. image: {
  39549. source: "./media/characters/lisa/caribousune.svg",
  39550. extra: 1843/1633,
  39551. bottom: 29/1872
  39552. }
  39553. },
  39554. frontCaribousune: {
  39555. height: math.unit(7 + 2/12, "feet"),
  39556. weight: math.unit(268, "lb"),
  39557. name: "Front (Caribousune)",
  39558. image: {
  39559. source: "./media/characters/lisa/front-caribousune.svg",
  39560. extra: 1818/1638,
  39561. bottom: 52/1870
  39562. }
  39563. },
  39564. sideCaribousune: {
  39565. height: math.unit(7 + 2/12, "feet"),
  39566. weight: math.unit(268, "lb"),
  39567. name: "Side (Caribousune)",
  39568. image: {
  39569. source: "./media/characters/lisa/side-caribousune.svg",
  39570. extra: 1851/1635,
  39571. bottom: 16/1867
  39572. }
  39573. },
  39574. backCaribousune: {
  39575. height: math.unit(7 + 2/12, "feet"),
  39576. weight: math.unit(268, "lb"),
  39577. name: "Back (Caribousune)",
  39578. image: {
  39579. source: "./media/characters/lisa/back-caribousune.svg",
  39580. extra: 1801/1604,
  39581. bottom: 44/1845
  39582. }
  39583. },
  39584. caribou: {
  39585. height: math.unit(7 + 2/12, "feet"),
  39586. weight: math.unit(268, "lb"),
  39587. name: "Caribou",
  39588. image: {
  39589. source: "./media/characters/lisa/caribou.svg",
  39590. extra: 1843/1633,
  39591. bottom: 29/1872
  39592. }
  39593. },
  39594. frontCaribou: {
  39595. height: math.unit(7 + 2/12, "feet"),
  39596. weight: math.unit(268, "lb"),
  39597. name: "Front (Caribou)",
  39598. image: {
  39599. source: "./media/characters/lisa/front-caribou.svg",
  39600. extra: 1818/1638,
  39601. bottom: 52/1870
  39602. }
  39603. },
  39604. sideCaribou: {
  39605. height: math.unit(7 + 2/12, "feet"),
  39606. weight: math.unit(268, "lb"),
  39607. name: "Side (Caribou)",
  39608. image: {
  39609. source: "./media/characters/lisa/side-caribou.svg",
  39610. extra: 1851/1635,
  39611. bottom: 16/1867
  39612. }
  39613. },
  39614. backCaribou: {
  39615. height: math.unit(7 + 2/12, "feet"),
  39616. weight: math.unit(268, "lb"),
  39617. name: "Back (Caribou)",
  39618. image: {
  39619. source: "./media/characters/lisa/back-caribou.svg",
  39620. extra: 1801/1604,
  39621. bottom: 44/1845
  39622. }
  39623. },
  39624. mawCaribou: {
  39625. height: math.unit(1.45, "feet"),
  39626. name: "Maw (Caribou)",
  39627. image: {
  39628. source: "./media/characters/lisa/maw-caribou.svg"
  39629. }
  39630. },
  39631. mawCaribousune: {
  39632. height: math.unit(1.45, "feet"),
  39633. name: "Maw (Caribousune)",
  39634. image: {
  39635. source: "./media/characters/lisa/maw-caribousune.svg"
  39636. }
  39637. },
  39638. pawCaribousune: {
  39639. height: math.unit(1.61, "feet"),
  39640. name: "Paw (Caribou)",
  39641. image: {
  39642. source: "./media/characters/lisa/paw-caribousune.svg"
  39643. }
  39644. },
  39645. },
  39646. [
  39647. {
  39648. name: "Normal",
  39649. height: math.unit(6, "feet")
  39650. },
  39651. {
  39652. name: "God Size",
  39653. height: math.unit(72, "feet"),
  39654. default: true
  39655. },
  39656. {
  39657. name: "Towering",
  39658. height: math.unit(288, "feet")
  39659. },
  39660. {
  39661. name: "City Size",
  39662. height: math.unit(48384, "feet")
  39663. },
  39664. {
  39665. name: "Continental",
  39666. height: math.unit(4200, "miles")
  39667. },
  39668. {
  39669. name: "Planet Eater",
  39670. height: math.unit(42, "earths")
  39671. },
  39672. {
  39673. name: "Star Swallower",
  39674. height: math.unit(42, "solarradii")
  39675. },
  39676. {
  39677. name: "System Swallower",
  39678. height: math.unit(84000, "AU")
  39679. },
  39680. {
  39681. name: "Galaxy Gobbler",
  39682. height: math.unit(42, "galaxies")
  39683. },
  39684. {
  39685. name: "Universe Devourer",
  39686. height: math.unit(42, "universes")
  39687. },
  39688. {
  39689. name: "Multiverse Muncher",
  39690. height: math.unit(42, "multiverses")
  39691. },
  39692. ]
  39693. ))
  39694. characterMakers.push(() => makeCharacter(
  39695. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39696. {
  39697. front: {
  39698. height: math.unit(36, "feet"),
  39699. name: "Front",
  39700. image: {
  39701. source: "./media/characters/shadow-rat/front.svg",
  39702. extra: 1845/1758,
  39703. bottom: 83/1928
  39704. }
  39705. },
  39706. },
  39707. [
  39708. {
  39709. name: "Macro",
  39710. height: math.unit(36, "feet"),
  39711. default: true
  39712. },
  39713. ]
  39714. ))
  39715. characterMakers.push(() => makeCharacter(
  39716. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39717. {
  39718. side: {
  39719. height: math.unit(8, "feet"),
  39720. weight: math.unit(2630, "lb"),
  39721. name: "Side",
  39722. image: {
  39723. source: "./media/characters/torallia/side.svg",
  39724. extra: 2164/2021,
  39725. bottom: 371/2535
  39726. }
  39727. },
  39728. },
  39729. [
  39730. {
  39731. name: "Mortal Interaction",
  39732. height: math.unit(8, "feet")
  39733. },
  39734. {
  39735. name: "Natural",
  39736. height: math.unit(24, "feet"),
  39737. default: true
  39738. },
  39739. {
  39740. name: "Giant",
  39741. height: math.unit(80, "feet")
  39742. },
  39743. {
  39744. name: "Kaiju",
  39745. height: math.unit(240, "feet")
  39746. },
  39747. {
  39748. name: "Macro",
  39749. height: math.unit(800, "feet")
  39750. },
  39751. {
  39752. name: "Macro+",
  39753. height: math.unit(2400, "feet")
  39754. },
  39755. {
  39756. name: "Macro++",
  39757. height: math.unit(8000, "feet")
  39758. },
  39759. {
  39760. name: "City-Crushing",
  39761. height: math.unit(24000, "feet")
  39762. },
  39763. {
  39764. name: "Mountain-Mashing",
  39765. height: math.unit(80000, "feet")
  39766. },
  39767. {
  39768. name: "District Demolisher",
  39769. height: math.unit(240000, "feet")
  39770. },
  39771. {
  39772. name: "Tri-County Terror",
  39773. height: math.unit(800000, "feet")
  39774. },
  39775. {
  39776. name: "State Smasher",
  39777. height: math.unit(2.4e6, "feet")
  39778. },
  39779. {
  39780. name: "Nation Nemesis",
  39781. height: math.unit(8e6, "feet")
  39782. },
  39783. {
  39784. name: "Continent Cracker",
  39785. height: math.unit(2.4e7, "feet")
  39786. },
  39787. {
  39788. name: "Planet-Pillaging",
  39789. height: math.unit(8e7, "feet")
  39790. },
  39791. {
  39792. name: "Earth-Eclipsing",
  39793. height: math.unit(2.4e8, "feet")
  39794. },
  39795. {
  39796. name: "Jovian-Jostling",
  39797. height: math.unit(8e8, "feet")
  39798. },
  39799. {
  39800. name: "Gas Giant Gulper",
  39801. height: math.unit(2.4e9, "feet")
  39802. },
  39803. {
  39804. name: "Astral Annihilator",
  39805. height: math.unit(8e9, "feet")
  39806. },
  39807. {
  39808. name: "Celestial Conqueror",
  39809. height: math.unit(2.4e10, "feet")
  39810. },
  39811. {
  39812. name: "Sol-Swallowing",
  39813. height: math.unit(8e10, "feet")
  39814. },
  39815. {
  39816. name: "Hunter of the Heavens",
  39817. height: math.unit(2.4e13, "feet")
  39818. },
  39819. ]
  39820. ))
  39821. characterMakers.push(() => makeCharacter(
  39822. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39823. {
  39824. front: {
  39825. height: math.unit(6 + 8/12, "feet"),
  39826. weight: math.unit(250, "kilograms"),
  39827. volume: math.unit(28, "liters"),
  39828. name: "Front",
  39829. image: {
  39830. source: "./media/characters/rebecca-pawlson/front.svg",
  39831. extra: 1737/1596,
  39832. bottom: 107/1844
  39833. }
  39834. },
  39835. back: {
  39836. height: math.unit(6 + 8/12, "feet"),
  39837. weight: math.unit(250, "kilograms"),
  39838. volume: math.unit(28, "liters"),
  39839. name: "Back",
  39840. image: {
  39841. source: "./media/characters/rebecca-pawlson/back.svg",
  39842. extra: 1702/1523,
  39843. bottom: 86/1788
  39844. }
  39845. },
  39846. },
  39847. [
  39848. {
  39849. name: "Normal",
  39850. height: math.unit(6 + 8/12, "feet")
  39851. },
  39852. {
  39853. name: "Mini Macro",
  39854. height: math.unit(10, "feet"),
  39855. default: true
  39856. },
  39857. {
  39858. name: "Macro",
  39859. height: math.unit(100, "feet")
  39860. },
  39861. {
  39862. name: "Mega Macro",
  39863. height: math.unit(2500, "feet")
  39864. },
  39865. {
  39866. name: "Giga Macro",
  39867. height: math.unit(50, "miles")
  39868. },
  39869. ]
  39870. ))
  39871. characterMakers.push(() => makeCharacter(
  39872. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39873. {
  39874. front: {
  39875. height: math.unit(7 + 6/12, "feet"),
  39876. weight: math.unit(600, "lb"),
  39877. name: "Front",
  39878. image: {
  39879. source: "./media/characters/moxie-nova/front.svg",
  39880. extra: 1734/1652,
  39881. bottom: 41/1775
  39882. }
  39883. },
  39884. },
  39885. [
  39886. {
  39887. name: "Normal",
  39888. height: math.unit(7 + 6/12, "feet"),
  39889. default: true
  39890. },
  39891. ]
  39892. ))
  39893. characterMakers.push(() => makeCharacter(
  39894. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39895. {
  39896. goat: {
  39897. height: math.unit(4, "feet"),
  39898. weight: math.unit(180, "lb"),
  39899. name: "Goat",
  39900. image: {
  39901. source: "./media/characters/tiffany/goat.svg",
  39902. extra: 1845/1595,
  39903. bottom: 106/1951
  39904. }
  39905. },
  39906. front: {
  39907. height: math.unit(5, "feet"),
  39908. weight: math.unit(150, "lb"),
  39909. name: "Foxcoon",
  39910. image: {
  39911. source: "./media/characters/tiffany/foxcoon.svg",
  39912. extra: 1941/1845,
  39913. bottom: 58/1999
  39914. }
  39915. },
  39916. },
  39917. [
  39918. {
  39919. name: "Normal",
  39920. height: math.unit(5, "feet"),
  39921. default: true
  39922. },
  39923. ]
  39924. ))
  39925. characterMakers.push(() => makeCharacter(
  39926. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39927. {
  39928. front: {
  39929. height: math.unit(8, "feet"),
  39930. weight: math.unit(300, "lb"),
  39931. name: "Front",
  39932. image: {
  39933. source: "./media/characters/raxinath/front.svg",
  39934. extra: 1407/1309,
  39935. bottom: 39/1446
  39936. }
  39937. },
  39938. back: {
  39939. height: math.unit(8, "feet"),
  39940. weight: math.unit(300, "lb"),
  39941. name: "Back",
  39942. image: {
  39943. source: "./media/characters/raxinath/back.svg",
  39944. extra: 1405/1315,
  39945. bottom: 9/1414
  39946. }
  39947. },
  39948. },
  39949. [
  39950. {
  39951. name: "Speck",
  39952. height: math.unit(0.5, "nm")
  39953. },
  39954. {
  39955. name: "Micro",
  39956. height: math.unit(3, "inches")
  39957. },
  39958. {
  39959. name: "Kobold",
  39960. height: math.unit(3, "feet")
  39961. },
  39962. {
  39963. name: "Normal",
  39964. height: math.unit(8, "feet"),
  39965. default: true
  39966. },
  39967. {
  39968. name: "Giant",
  39969. height: math.unit(50, "feet")
  39970. },
  39971. {
  39972. name: "Macro",
  39973. height: math.unit(1000, "feet")
  39974. },
  39975. {
  39976. name: "Megamacro",
  39977. height: math.unit(1, "mile")
  39978. },
  39979. ]
  39980. ))
  39981. characterMakers.push(() => makeCharacter(
  39982. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39983. {
  39984. front: {
  39985. height: math.unit(10, "feet"),
  39986. weight: math.unit(1442, "lb"),
  39987. name: "Front",
  39988. image: {
  39989. source: "./media/characters/mal-dragon/front.svg",
  39990. extra: 1515/1444,
  39991. bottom: 113/1628
  39992. }
  39993. },
  39994. back: {
  39995. height: math.unit(10, "feet"),
  39996. weight: math.unit(1442, "lb"),
  39997. name: "Back",
  39998. image: {
  39999. source: "./media/characters/mal-dragon/back.svg",
  40000. extra: 1527/1434,
  40001. bottom: 25/1552
  40002. }
  40003. },
  40004. },
  40005. [
  40006. {
  40007. name: "Mortal Interaction",
  40008. height: math.unit(10, "feet"),
  40009. default: true
  40010. },
  40011. {
  40012. name: "Large",
  40013. height: math.unit(30, "feet")
  40014. },
  40015. {
  40016. name: "Kaiju",
  40017. height: math.unit(300, "feet")
  40018. },
  40019. {
  40020. name: "Megamacro",
  40021. height: math.unit(10000, "feet")
  40022. },
  40023. {
  40024. name: "Continent Cracker",
  40025. height: math.unit(30000000, "feet")
  40026. },
  40027. {
  40028. name: "Sol-Swallowing",
  40029. height: math.unit(1e11, "feet")
  40030. },
  40031. {
  40032. name: "Light Universal",
  40033. height: math.unit(5, "universes")
  40034. },
  40035. {
  40036. name: "Universe Atoms",
  40037. height: math.unit(1.829e9, "universes")
  40038. },
  40039. {
  40040. name: "Light Multiversal",
  40041. height: math.unit(5, "multiverses")
  40042. },
  40043. {
  40044. name: "Multiverse Atoms",
  40045. height: math.unit(1.829e9, "multiverses")
  40046. },
  40047. {
  40048. name: "Fabric of Time",
  40049. height: math.unit(1e262, "multiverses")
  40050. },
  40051. ]
  40052. ))
  40053. characterMakers.push(() => makeCharacter(
  40054. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40055. {
  40056. front: {
  40057. height: math.unit(9, "feet"),
  40058. weight: math.unit(1050, "lb"),
  40059. name: "Front",
  40060. image: {
  40061. source: "./media/characters/tabitha/front.svg",
  40062. extra: 2083/1994,
  40063. bottom: 68/2151
  40064. }
  40065. },
  40066. },
  40067. [
  40068. {
  40069. name: "Baseline",
  40070. height: math.unit(9, "feet"),
  40071. default: true
  40072. },
  40073. {
  40074. name: "Giant",
  40075. height: math.unit(90, "feet")
  40076. },
  40077. {
  40078. name: "Macro",
  40079. height: math.unit(900, "feet")
  40080. },
  40081. {
  40082. name: "Megamacro",
  40083. height: math.unit(9000, "feet")
  40084. },
  40085. {
  40086. name: "City-Crushing",
  40087. height: math.unit(27000, "feet")
  40088. },
  40089. {
  40090. name: "Mountain-Mashing",
  40091. height: math.unit(90000, "feet")
  40092. },
  40093. {
  40094. name: "Nation Nemesis",
  40095. height: math.unit(9e6, "feet")
  40096. },
  40097. {
  40098. name: "Continent Cracker",
  40099. height: math.unit(27e6, "feet")
  40100. },
  40101. {
  40102. name: "Earth-Eclipsing",
  40103. height: math.unit(2.7e8, "feet")
  40104. },
  40105. {
  40106. name: "Gas Giant Gulper",
  40107. height: math.unit(2.7e9, "feet")
  40108. },
  40109. {
  40110. name: "Sol-Swallowing",
  40111. height: math.unit(9e10, "feet")
  40112. },
  40113. {
  40114. name: "Galaxy Gulper",
  40115. height: math.unit(9, "galaxies")
  40116. },
  40117. {
  40118. name: "Cosmos Churner",
  40119. height: math.unit(9, "universes")
  40120. },
  40121. ]
  40122. ))
  40123. characterMakers.push(() => makeCharacter(
  40124. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40125. {
  40126. front: {
  40127. height: math.unit(160, "cm"),
  40128. weight: math.unit(55, "kg"),
  40129. name: "Front",
  40130. image: {
  40131. source: "./media/characters/tow/front.svg",
  40132. extra: 1751/1722,
  40133. bottom: 74/1825
  40134. }
  40135. },
  40136. },
  40137. [
  40138. {
  40139. name: "Norm",
  40140. height: math.unit(160, "cm")
  40141. },
  40142. {
  40143. name: "Casual",
  40144. height: math.unit(3200, "m"),
  40145. default: true
  40146. },
  40147. {
  40148. name: "Show-Off",
  40149. height: math.unit(160, "km")
  40150. },
  40151. ]
  40152. ))
  40153. characterMakers.push(() => makeCharacter(
  40154. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40155. {
  40156. front: {
  40157. height: math.unit(7 + 11/12, "feet"),
  40158. weight: math.unit(342.8, "lb"),
  40159. name: "Front",
  40160. image: {
  40161. source: "./media/characters/vivian-orca-dragon/front.svg",
  40162. extra: 1890/1865,
  40163. bottom: 28/1918
  40164. }
  40165. },
  40166. },
  40167. [
  40168. {
  40169. name: "Micro",
  40170. height: math.unit(5, "inches")
  40171. },
  40172. {
  40173. name: "Normal",
  40174. height: math.unit(7 + 11/12, "feet"),
  40175. default: true
  40176. },
  40177. {
  40178. name: "Macro",
  40179. height: math.unit(395 + 7/12, "feet")
  40180. },
  40181. ]
  40182. ))
  40183. characterMakers.push(() => makeCharacter(
  40184. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40185. {
  40186. side: {
  40187. height: math.unit(10, "feet"),
  40188. weight: math.unit(1442, "lb"),
  40189. name: "Side",
  40190. image: {
  40191. source: "./media/characters/lotherakon/side.svg",
  40192. extra: 1604/1497,
  40193. bottom: 89/1693
  40194. }
  40195. },
  40196. },
  40197. [
  40198. {
  40199. name: "Mortal Interaction",
  40200. height: math.unit(10, "feet")
  40201. },
  40202. {
  40203. name: "Large",
  40204. height: math.unit(30, "feet"),
  40205. default: true
  40206. },
  40207. {
  40208. name: "Giant",
  40209. height: math.unit(100, "feet")
  40210. },
  40211. {
  40212. name: "Kaiju",
  40213. height: math.unit(300, "feet")
  40214. },
  40215. {
  40216. name: "Macro",
  40217. height: math.unit(1000, "feet")
  40218. },
  40219. {
  40220. name: "Macro+",
  40221. height: math.unit(3000, "feet")
  40222. },
  40223. {
  40224. name: "Megamacro",
  40225. height: math.unit(10000, "feet")
  40226. },
  40227. {
  40228. name: "City-Crushing",
  40229. height: math.unit(30000, "feet")
  40230. },
  40231. {
  40232. name: "Continent Cracker",
  40233. height: math.unit(30e6, "feet")
  40234. },
  40235. {
  40236. name: "Earth Eclipsing",
  40237. height: math.unit(3e8, "feet")
  40238. },
  40239. {
  40240. name: "Gas Giant Gulper",
  40241. height: math.unit(3e9, "feet")
  40242. },
  40243. {
  40244. name: "Sol-Swallowing",
  40245. height: math.unit(1e11, "feet")
  40246. },
  40247. {
  40248. name: "System Swallower",
  40249. height: math.unit(3e14, "feet")
  40250. },
  40251. {
  40252. name: "Galaxy Gulper",
  40253. height: math.unit(10, "galaxies")
  40254. },
  40255. {
  40256. name: "Light Universal",
  40257. height: math.unit(5, "universes")
  40258. },
  40259. {
  40260. name: "Universe Palm",
  40261. height: math.unit(20, "universes")
  40262. },
  40263. {
  40264. name: "Light Multiversal",
  40265. height: math.unit(5, "multiverses")
  40266. },
  40267. {
  40268. name: "Multiverse Palm",
  40269. height: math.unit(20, "multiverses")
  40270. },
  40271. {
  40272. name: "Inferno Incarnate",
  40273. height: math.unit(1e7, "multiverses")
  40274. },
  40275. ]
  40276. ))
  40277. characterMakers.push(() => makeCharacter(
  40278. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40279. {
  40280. front: {
  40281. height: math.unit(8, "feet"),
  40282. weight: math.unit(1200, "lb"),
  40283. name: "Front",
  40284. image: {
  40285. source: "./media/characters/malithee/front.svg",
  40286. extra: 1675/1640,
  40287. bottom: 162/1837
  40288. }
  40289. },
  40290. },
  40291. [
  40292. {
  40293. name: "Mortal Interaction",
  40294. height: math.unit(8, "feet"),
  40295. default: true
  40296. },
  40297. {
  40298. name: "Large",
  40299. height: math.unit(24, "feet")
  40300. },
  40301. {
  40302. name: "Kaiju",
  40303. height: math.unit(240, "feet")
  40304. },
  40305. {
  40306. name: "Megamacro",
  40307. height: math.unit(8000, "feet")
  40308. },
  40309. {
  40310. name: "Continent Cracker",
  40311. height: math.unit(24e6, "feet")
  40312. },
  40313. {
  40314. name: "Earth-Eclipsing",
  40315. height: math.unit(2.4e8, "feet")
  40316. },
  40317. {
  40318. name: "Sol-Swallowing",
  40319. height: math.unit(8e10, "feet")
  40320. },
  40321. {
  40322. name: "Galaxy Gulper",
  40323. height: math.unit(8, "galaxies")
  40324. },
  40325. {
  40326. name: "Light Universal",
  40327. height: math.unit(4, "universes")
  40328. },
  40329. {
  40330. name: "Universe Atoms",
  40331. height: math.unit(1.829e9, "universes")
  40332. },
  40333. {
  40334. name: "Light Multiversal",
  40335. height: math.unit(4, "multiverses")
  40336. },
  40337. {
  40338. name: "Multiverse Atoms",
  40339. height: math.unit(1.829e9, "multiverses")
  40340. },
  40341. {
  40342. name: "Nigh-Omnipresence",
  40343. height: math.unit(8e261, "multiverses")
  40344. },
  40345. ]
  40346. ))
  40347. characterMakers.push(() => makeCharacter(
  40348. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40349. {
  40350. front: {
  40351. height: math.unit(10, "feet"),
  40352. weight: math.unit(1500, "lb"),
  40353. name: "Front",
  40354. image: {
  40355. source: "./media/characters/miles-thestia/front.svg",
  40356. extra: 1812/1727,
  40357. bottom: 86/1898
  40358. }
  40359. },
  40360. back: {
  40361. height: math.unit(10, "feet"),
  40362. weight: math.unit(1500, "lb"),
  40363. name: "Back",
  40364. image: {
  40365. source: "./media/characters/miles-thestia/back.svg",
  40366. extra: 1799/1690,
  40367. bottom: 47/1846
  40368. }
  40369. },
  40370. frontNsfw: {
  40371. height: math.unit(10, "feet"),
  40372. weight: math.unit(1500, "lb"),
  40373. name: "Front (NSFW)",
  40374. image: {
  40375. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40376. extra: 1812/1727,
  40377. bottom: 86/1898
  40378. }
  40379. },
  40380. },
  40381. [
  40382. {
  40383. name: "Mini-Macro",
  40384. height: math.unit(10, "feet"),
  40385. default: true
  40386. },
  40387. ]
  40388. ))
  40389. characterMakers.push(() => makeCharacter(
  40390. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40391. {
  40392. front: {
  40393. height: math.unit(25, "feet"),
  40394. name: "Front",
  40395. image: {
  40396. source: "./media/characters/titan-s-wulf/front.svg",
  40397. extra: 1560/1484,
  40398. bottom: 76/1636
  40399. }
  40400. },
  40401. },
  40402. [
  40403. {
  40404. name: "Smallest",
  40405. height: math.unit(25, "feet"),
  40406. default: true
  40407. },
  40408. {
  40409. name: "Normal",
  40410. height: math.unit(200, "feet")
  40411. },
  40412. {
  40413. name: "Macro",
  40414. height: math.unit(200000, "feet")
  40415. },
  40416. {
  40417. name: "Multiversal Original",
  40418. height: math.unit(10000, "multiverses")
  40419. },
  40420. ]
  40421. ))
  40422. characterMakers.push(() => makeCharacter(
  40423. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40424. {
  40425. front: {
  40426. height: math.unit(8, "feet"),
  40427. weight: math.unit(553, "lb"),
  40428. name: "Front",
  40429. image: {
  40430. source: "./media/characters/tawendeh/front.svg",
  40431. extra: 2365/2268,
  40432. bottom: 83/2448
  40433. }
  40434. },
  40435. frontClothed: {
  40436. height: math.unit(8, "feet"),
  40437. weight: math.unit(553, "lb"),
  40438. name: "Front (Clothed)",
  40439. image: {
  40440. source: "./media/characters/tawendeh/front-clothed.svg",
  40441. extra: 2365/2268,
  40442. bottom: 83/2448
  40443. }
  40444. },
  40445. back: {
  40446. height: math.unit(8, "feet"),
  40447. weight: math.unit(553, "lb"),
  40448. name: "Back",
  40449. image: {
  40450. source: "./media/characters/tawendeh/back.svg",
  40451. extra: 2397/2294,
  40452. bottom: 42/2439
  40453. }
  40454. },
  40455. },
  40456. [
  40457. {
  40458. name: "Mortal Interaction",
  40459. height: math.unit(8, "feet"),
  40460. default: true
  40461. },
  40462. {
  40463. name: "Giant",
  40464. height: math.unit(80, "feet")
  40465. },
  40466. {
  40467. name: "Macro",
  40468. height: math.unit(800, "feet")
  40469. },
  40470. {
  40471. name: "Megamacro",
  40472. height: math.unit(8000, "feet")
  40473. },
  40474. {
  40475. name: "City-Crushing",
  40476. height: math.unit(24000, "feet")
  40477. },
  40478. {
  40479. name: "Mountain-Mashing",
  40480. height: math.unit(80000, "feet")
  40481. },
  40482. {
  40483. name: "Nation Nemesis",
  40484. height: math.unit(8e6, "feet")
  40485. },
  40486. {
  40487. name: "Continent Cracker",
  40488. height: math.unit(24e6, "feet")
  40489. },
  40490. {
  40491. name: "Earth-Eclipsing",
  40492. height: math.unit(2.4e8, "feet")
  40493. },
  40494. {
  40495. name: "Gas Giant Gulper",
  40496. height: math.unit(2.4e9, "feet")
  40497. },
  40498. {
  40499. name: "Sol-Swallowing",
  40500. height: math.unit(8e10, "feet")
  40501. },
  40502. {
  40503. name: "Galaxy Gulper",
  40504. height: math.unit(8, "galaxies")
  40505. },
  40506. {
  40507. name: "Cosmos Churner",
  40508. height: math.unit(8, "universes")
  40509. },
  40510. {
  40511. name: "Omnipotent Otter",
  40512. height: math.unit(80, "universes")
  40513. },
  40514. ]
  40515. ))
  40516. characterMakers.push(() => makeCharacter(
  40517. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40518. {
  40519. front: {
  40520. height: math.unit(2.6, "meters"),
  40521. weight: math.unit(900, "kg"),
  40522. name: "Front",
  40523. image: {
  40524. source: "./media/characters/neesha/front.svg",
  40525. extra: 1803/1653,
  40526. bottom: 128/1931
  40527. }
  40528. },
  40529. },
  40530. [
  40531. {
  40532. name: "Normal",
  40533. height: math.unit(2.6, "meters"),
  40534. default: true
  40535. },
  40536. {
  40537. name: "Macro",
  40538. height: math.unit(50, "meters")
  40539. },
  40540. ]
  40541. ))
  40542. characterMakers.push(() => makeCharacter(
  40543. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40544. {
  40545. front: {
  40546. height: math.unit(5, "feet"),
  40547. weight: math.unit(185, "lb"),
  40548. name: "Front",
  40549. image: {
  40550. source: "./media/characters/kyera/front.svg",
  40551. extra: 1875/1790,
  40552. bottom: 96/1971
  40553. }
  40554. },
  40555. },
  40556. [
  40557. {
  40558. name: "Normal",
  40559. height: math.unit(5, "feet"),
  40560. default: true
  40561. },
  40562. ]
  40563. ))
  40564. characterMakers.push(() => makeCharacter(
  40565. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40566. {
  40567. front: {
  40568. height: math.unit(7 + 6/12, "feet"),
  40569. weight: math.unit(540, "lb"),
  40570. name: "Front",
  40571. image: {
  40572. source: "./media/characters/yuko/front.svg",
  40573. extra: 1282/1222,
  40574. bottom: 101/1383
  40575. }
  40576. },
  40577. frontClothed: {
  40578. height: math.unit(7 + 6/12, "feet"),
  40579. weight: math.unit(540, "lb"),
  40580. name: "Front (Clothed)",
  40581. image: {
  40582. source: "./media/characters/yuko/front-clothed.svg",
  40583. extra: 1282/1222,
  40584. bottom: 101/1383
  40585. }
  40586. },
  40587. },
  40588. [
  40589. {
  40590. name: "Normal",
  40591. height: math.unit(7 + 6/12, "feet"),
  40592. default: true
  40593. },
  40594. {
  40595. name: "Macro",
  40596. height: math.unit(26 + 9/12, "feet")
  40597. },
  40598. {
  40599. name: "Megamacro",
  40600. height: math.unit(300, "feet")
  40601. },
  40602. {
  40603. name: "Gigamacro",
  40604. height: math.unit(5000, "feet")
  40605. },
  40606. {
  40607. name: "Planetary",
  40608. height: math.unit(10000, "miles")
  40609. },
  40610. ]
  40611. ))
  40612. characterMakers.push(() => makeCharacter(
  40613. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40614. {
  40615. front: {
  40616. height: math.unit(8 + 2/12, "feet"),
  40617. weight: math.unit(600, "lb"),
  40618. name: "Front",
  40619. image: {
  40620. source: "./media/characters/deam-nitrel/front.svg",
  40621. extra: 1308/1234,
  40622. bottom: 125/1433
  40623. }
  40624. },
  40625. },
  40626. [
  40627. {
  40628. name: "Normal",
  40629. height: math.unit(8 + 2/12, "feet"),
  40630. default: true
  40631. },
  40632. ]
  40633. ))
  40634. characterMakers.push(() => makeCharacter(
  40635. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40636. {
  40637. front: {
  40638. height: math.unit(6.1, "feet"),
  40639. weight: math.unit(180, "lb"),
  40640. name: "Front",
  40641. image: {
  40642. source: "./media/characters/skyress/front.svg",
  40643. extra: 1045/915,
  40644. bottom: 28/1073
  40645. }
  40646. },
  40647. maw: {
  40648. height: math.unit(1, "feet"),
  40649. name: "Maw",
  40650. image: {
  40651. source: "./media/characters/skyress/maw.svg"
  40652. }
  40653. },
  40654. },
  40655. [
  40656. {
  40657. name: "Normal",
  40658. height: math.unit(6.1, "feet"),
  40659. default: true
  40660. },
  40661. {
  40662. name: "Macro",
  40663. height: math.unit(200, "feet")
  40664. },
  40665. ]
  40666. ))
  40667. characterMakers.push(() => makeCharacter(
  40668. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40669. {
  40670. front: {
  40671. height: math.unit(4 + 2/12, "feet"),
  40672. weight: math.unit(40, "kg"),
  40673. name: "Front",
  40674. image: {
  40675. source: "./media/characters/amethyst-jones/front.svg",
  40676. extra: 1220/1150,
  40677. bottom: 101/1321
  40678. }
  40679. },
  40680. },
  40681. [
  40682. {
  40683. name: "Normal",
  40684. height: math.unit(4 + 2/12, "feet"),
  40685. default: true
  40686. },
  40687. ]
  40688. ))
  40689. characterMakers.push(() => makeCharacter(
  40690. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40691. {
  40692. front: {
  40693. height: math.unit(1.7, "m"),
  40694. weight: math.unit(135, "lb"),
  40695. name: "Front",
  40696. image: {
  40697. source: "./media/characters/jade/front.svg",
  40698. extra: 1818/1767,
  40699. bottom: 32/1850
  40700. }
  40701. },
  40702. back: {
  40703. height: math.unit(1.7, "m"),
  40704. weight: math.unit(135, "lb"),
  40705. name: "Back",
  40706. image: {
  40707. source: "./media/characters/jade/back.svg",
  40708. extra: 1869/1809,
  40709. bottom: 35/1904
  40710. }
  40711. },
  40712. hand: {
  40713. height: math.unit(0.24, "m"),
  40714. name: "Hand",
  40715. image: {
  40716. source: "./media/characters/jade/hand.svg"
  40717. }
  40718. },
  40719. foot: {
  40720. height: math.unit(0.263, "m"),
  40721. name: "Foot",
  40722. image: {
  40723. source: "./media/characters/jade/foot.svg"
  40724. }
  40725. },
  40726. dick: {
  40727. height: math.unit(0.47, "m"),
  40728. name: "Dick",
  40729. image: {
  40730. source: "./media/characters/jade/dick.svg"
  40731. }
  40732. },
  40733. },
  40734. [
  40735. {
  40736. name: "Micro",
  40737. height: math.unit(22, "cm")
  40738. },
  40739. {
  40740. name: "Normal",
  40741. height: math.unit(1.7, "m"),
  40742. default: true
  40743. },
  40744. {
  40745. name: "Macro",
  40746. height: math.unit(152, "m")
  40747. },
  40748. ]
  40749. ))
  40750. characterMakers.push(() => makeCharacter(
  40751. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40752. {
  40753. front: {
  40754. height: math.unit(100, "miles"),
  40755. weight: math.unit(20000, "tons"),
  40756. name: "Front",
  40757. image: {
  40758. source: "./media/characters/cookie/front.svg",
  40759. extra: 1125/1070,
  40760. bottom: 30/1155
  40761. }
  40762. },
  40763. },
  40764. [
  40765. {
  40766. name: "Big",
  40767. height: math.unit(50, "feet")
  40768. },
  40769. {
  40770. name: "Macro",
  40771. height: math.unit(100, "miles"),
  40772. default: true
  40773. },
  40774. {
  40775. name: "Megamacro",
  40776. height: math.unit(90000, "miles")
  40777. },
  40778. ]
  40779. ))
  40780. characterMakers.push(() => makeCharacter(
  40781. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40782. {
  40783. front: {
  40784. height: math.unit(6, "feet"),
  40785. weight: math.unit(145, "lb"),
  40786. name: "Front",
  40787. image: {
  40788. source: "./media/characters/farzian/front.svg",
  40789. extra: 1902/1693,
  40790. bottom: 108/2010
  40791. }
  40792. },
  40793. },
  40794. [
  40795. {
  40796. name: "Macro",
  40797. height: math.unit(500, "feet"),
  40798. default: true
  40799. },
  40800. ]
  40801. ))
  40802. characterMakers.push(() => makeCharacter(
  40803. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40804. {
  40805. front: {
  40806. height: math.unit(3 + 6/12, "feet"),
  40807. weight: math.unit(50, "lb"),
  40808. name: "Front",
  40809. image: {
  40810. source: "./media/characters/kimberly-tilson/front.svg",
  40811. extra: 1400/1322,
  40812. bottom: 36/1436
  40813. }
  40814. },
  40815. back: {
  40816. height: math.unit(3 + 6/12, "feet"),
  40817. weight: math.unit(50, "lb"),
  40818. name: "Back",
  40819. image: {
  40820. source: "./media/characters/kimberly-tilson/back.svg",
  40821. extra: 1370/1307,
  40822. bottom: 20/1390
  40823. }
  40824. },
  40825. },
  40826. [
  40827. {
  40828. name: "Normal",
  40829. height: math.unit(3 + 6/12, "feet"),
  40830. default: true
  40831. },
  40832. ]
  40833. ))
  40834. characterMakers.push(() => makeCharacter(
  40835. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40836. {
  40837. front: {
  40838. height: math.unit(1148, "feet"),
  40839. weight: math.unit(34057, "lb"),
  40840. name: "Front",
  40841. image: {
  40842. source: "./media/characters/harthos/front.svg",
  40843. extra: 1391/1339,
  40844. bottom: 13/1404
  40845. }
  40846. },
  40847. },
  40848. [
  40849. {
  40850. name: "Macro",
  40851. height: math.unit(1148, "feet"),
  40852. default: true
  40853. },
  40854. ]
  40855. ))
  40856. characterMakers.push(() => makeCharacter(
  40857. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40858. {
  40859. front: {
  40860. height: math.unit(15, "feet"),
  40861. name: "Front",
  40862. image: {
  40863. source: "./media/characters/hypatia/front.svg",
  40864. extra: 1653/1591,
  40865. bottom: 79/1732
  40866. }
  40867. },
  40868. },
  40869. [
  40870. {
  40871. name: "Normal",
  40872. height: math.unit(15, "feet")
  40873. },
  40874. {
  40875. name: "Small",
  40876. height: math.unit(300, "feet")
  40877. },
  40878. {
  40879. name: "Macro",
  40880. height: math.unit(2500, "feet"),
  40881. default: true
  40882. },
  40883. {
  40884. name: "Mega Macro",
  40885. height: math.unit(1500, "miles")
  40886. },
  40887. {
  40888. name: "Giga Macro",
  40889. height: math.unit(1.5e6, "miles")
  40890. },
  40891. ]
  40892. ))
  40893. characterMakers.push(() => makeCharacter(
  40894. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40895. {
  40896. front: {
  40897. height: math.unit(6, "feet"),
  40898. weight: math.unit(200, "lb"),
  40899. name: "Front",
  40900. image: {
  40901. source: "./media/characters/wulver/front.svg",
  40902. extra: 1724/1632,
  40903. bottom: 130/1854
  40904. }
  40905. },
  40906. frontNsfw: {
  40907. height: math.unit(6, "feet"),
  40908. weight: math.unit(200, "lb"),
  40909. name: "Front (NSFW)",
  40910. image: {
  40911. source: "./media/characters/wulver/front-nsfw.svg",
  40912. extra: 1724/1632,
  40913. bottom: 130/1854
  40914. }
  40915. },
  40916. },
  40917. [
  40918. {
  40919. name: "Human-Sized",
  40920. height: math.unit(6, "feet")
  40921. },
  40922. {
  40923. name: "Normal",
  40924. height: math.unit(4, "meters"),
  40925. default: true
  40926. },
  40927. {
  40928. name: "Large",
  40929. height: math.unit(6, "m")
  40930. },
  40931. ]
  40932. ))
  40933. characterMakers.push(() => makeCharacter(
  40934. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40935. {
  40936. front: {
  40937. height: math.unit(7, "feet"),
  40938. name: "Front",
  40939. image: {
  40940. source: "./media/characters/maru/front.svg",
  40941. extra: 1595/1570,
  40942. bottom: 0/1595
  40943. }
  40944. },
  40945. },
  40946. [
  40947. {
  40948. name: "Normal",
  40949. height: math.unit(7, "feet"),
  40950. default: true
  40951. },
  40952. {
  40953. name: "Macro",
  40954. height: math.unit(700, "feet")
  40955. },
  40956. {
  40957. name: "Mega Macro",
  40958. height: math.unit(25, "miles")
  40959. },
  40960. ]
  40961. ))
  40962. characterMakers.push(() => makeCharacter(
  40963. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40964. {
  40965. front: {
  40966. height: math.unit(6, "feet"),
  40967. weight: math.unit(170, "lb"),
  40968. name: "Front",
  40969. image: {
  40970. source: "./media/characters/xenon/front.svg",
  40971. extra: 1376/1305,
  40972. bottom: 56/1432
  40973. }
  40974. },
  40975. back: {
  40976. height: math.unit(6, "feet"),
  40977. weight: math.unit(170, "lb"),
  40978. name: "Back",
  40979. image: {
  40980. source: "./media/characters/xenon/back.svg",
  40981. extra: 1328/1259,
  40982. bottom: 95/1423
  40983. }
  40984. },
  40985. maw: {
  40986. height: math.unit(0.52, "feet"),
  40987. name: "Maw",
  40988. image: {
  40989. source: "./media/characters/xenon/maw.svg"
  40990. }
  40991. },
  40992. hand: {
  40993. height: math.unit(0.82, "feet"),
  40994. name: "Hand",
  40995. image: {
  40996. source: "./media/characters/xenon/hand.svg"
  40997. }
  40998. },
  40999. foot: {
  41000. height: math.unit(1.13, "feet"),
  41001. name: "Foot",
  41002. image: {
  41003. source: "./media/characters/xenon/foot.svg"
  41004. }
  41005. },
  41006. },
  41007. [
  41008. {
  41009. name: "Micro",
  41010. height: math.unit(0.8, "inches")
  41011. },
  41012. {
  41013. name: "Normal",
  41014. height: math.unit(6, "feet")
  41015. },
  41016. {
  41017. name: "Macro",
  41018. height: math.unit(50, "feet"),
  41019. default: true
  41020. },
  41021. {
  41022. name: "Macro+",
  41023. height: math.unit(250, "feet")
  41024. },
  41025. {
  41026. name: "Megamacro",
  41027. height: math.unit(1500, "feet")
  41028. },
  41029. ]
  41030. ))
  41031. characterMakers.push(() => makeCharacter(
  41032. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41033. {
  41034. front: {
  41035. height: math.unit(7 + 5/12, "feet"),
  41036. name: "Front",
  41037. image: {
  41038. source: "./media/characters/zane/front.svg",
  41039. extra: 1260/1203,
  41040. bottom: 94/1354
  41041. }
  41042. },
  41043. back: {
  41044. height: math.unit(5.05, "feet"),
  41045. name: "Back",
  41046. image: {
  41047. source: "./media/characters/zane/back.svg",
  41048. extra: 893/829,
  41049. bottom: 30/923
  41050. }
  41051. },
  41052. werewolf: {
  41053. height: math.unit(11, "feet"),
  41054. name: "Werewolf",
  41055. image: {
  41056. source: "./media/characters/zane/werewolf.svg",
  41057. extra: 1383/1323,
  41058. bottom: 89/1472
  41059. }
  41060. },
  41061. foot: {
  41062. height: math.unit(1.46, "feet"),
  41063. name: "Foot",
  41064. image: {
  41065. source: "./media/characters/zane/foot.svg"
  41066. }
  41067. },
  41068. footFront: {
  41069. height: math.unit(0.784, "feet"),
  41070. name: "Foot (Front)",
  41071. image: {
  41072. source: "./media/characters/zane/foot-front.svg"
  41073. }
  41074. },
  41075. dick: {
  41076. height: math.unit(1.95, "feet"),
  41077. name: "Dick",
  41078. image: {
  41079. source: "./media/characters/zane/dick.svg"
  41080. }
  41081. },
  41082. dickWerewolf: {
  41083. height: math.unit(3.77, "feet"),
  41084. name: "Dick (Werewolf)",
  41085. image: {
  41086. source: "./media/characters/zane/dick.svg"
  41087. }
  41088. },
  41089. },
  41090. [
  41091. {
  41092. name: "Normal",
  41093. height: math.unit(7 + 5/12, "feet"),
  41094. default: true
  41095. },
  41096. ]
  41097. ))
  41098. characterMakers.push(() => makeCharacter(
  41099. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41100. {
  41101. front: {
  41102. height: math.unit(6 + 2/12, "feet"),
  41103. weight: math.unit(284, "lb"),
  41104. name: "Front",
  41105. image: {
  41106. source: "./media/characters/benni-desparque/front.svg",
  41107. extra: 1353/1126,
  41108. bottom: 69/1422
  41109. }
  41110. },
  41111. },
  41112. [
  41113. {
  41114. name: "Civilian",
  41115. height: math.unit(6 + 2/12, "feet")
  41116. },
  41117. {
  41118. name: "Normal",
  41119. height: math.unit(98, "feet"),
  41120. default: true
  41121. },
  41122. {
  41123. name: "Kaiju Fighter",
  41124. height: math.unit(268, "feet")
  41125. },
  41126. ]
  41127. ))
  41128. characterMakers.push(() => makeCharacter(
  41129. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41130. {
  41131. front: {
  41132. height: math.unit(5, "feet"),
  41133. weight: math.unit(105, "lb"),
  41134. name: "Front",
  41135. image: {
  41136. source: "./media/characters/maxine/front.svg",
  41137. extra: 1386/1250,
  41138. bottom: 71/1457
  41139. }
  41140. },
  41141. },
  41142. [
  41143. {
  41144. name: "Normal",
  41145. height: math.unit(5, "feet"),
  41146. default: true
  41147. },
  41148. ]
  41149. ))
  41150. characterMakers.push(() => makeCharacter(
  41151. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41152. {
  41153. front: {
  41154. height: math.unit(11 + 7/12, "feet"),
  41155. weight: math.unit(9576, "lb"),
  41156. name: "Front",
  41157. image: {
  41158. source: "./media/characters/scaly/front.svg",
  41159. extra: 888/867,
  41160. bottom: 36/924
  41161. }
  41162. },
  41163. },
  41164. [
  41165. {
  41166. name: "Normal",
  41167. height: math.unit(11 + 7/12, "feet"),
  41168. default: true
  41169. },
  41170. ]
  41171. ))
  41172. characterMakers.push(() => makeCharacter(
  41173. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41174. {
  41175. front: {
  41176. height: math.unit(6 + 3/12, "feet"),
  41177. name: "Front",
  41178. image: {
  41179. source: "./media/characters/saelria/front.svg",
  41180. extra: 1243/1138,
  41181. bottom: 46/1289
  41182. }
  41183. },
  41184. },
  41185. [
  41186. {
  41187. name: "Micro",
  41188. height: math.unit(6, "inches"),
  41189. },
  41190. {
  41191. name: "Normal",
  41192. height: math.unit(6 + 3/12, "feet"),
  41193. default: true
  41194. },
  41195. {
  41196. name: "Macro",
  41197. height: math.unit(25, "feet")
  41198. },
  41199. ]
  41200. ))
  41201. characterMakers.push(() => makeCharacter(
  41202. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41203. {
  41204. front: {
  41205. height: math.unit(80, "meters"),
  41206. weight: math.unit(7000, "tonnes"),
  41207. name: "Front",
  41208. image: {
  41209. source: "./media/characters/tef/front.svg",
  41210. extra: 2036/1991,
  41211. bottom: 54/2090
  41212. }
  41213. },
  41214. back: {
  41215. height: math.unit(80, "meters"),
  41216. weight: math.unit(7000, "tonnes"),
  41217. name: "Back",
  41218. image: {
  41219. source: "./media/characters/tef/back.svg",
  41220. extra: 2036/1991,
  41221. bottom: 54/2090
  41222. }
  41223. },
  41224. },
  41225. [
  41226. {
  41227. name: "Macro",
  41228. height: math.unit(80, "meters"),
  41229. default: true
  41230. },
  41231. ]
  41232. ))
  41233. characterMakers.push(() => makeCharacter(
  41234. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41235. {
  41236. front: {
  41237. height: math.unit(13, "feet"),
  41238. weight: math.unit(6, "tons"),
  41239. name: "Front",
  41240. image: {
  41241. source: "./media/characters/rover/front.svg",
  41242. extra: 1233/1156,
  41243. bottom: 50/1283
  41244. }
  41245. },
  41246. back: {
  41247. height: math.unit(13, "feet"),
  41248. weight: math.unit(6, "tons"),
  41249. name: "Back",
  41250. image: {
  41251. source: "./media/characters/rover/back.svg",
  41252. extra: 1327/1258,
  41253. bottom: 39/1366
  41254. }
  41255. },
  41256. },
  41257. [
  41258. {
  41259. name: "Normal",
  41260. height: math.unit(13, "feet"),
  41261. default: true
  41262. },
  41263. {
  41264. name: "Macro",
  41265. height: math.unit(1300, "feet")
  41266. },
  41267. {
  41268. name: "Megamacro",
  41269. height: math.unit(1300, "miles")
  41270. },
  41271. {
  41272. name: "Gigamacro",
  41273. height: math.unit(1300000, "miles")
  41274. },
  41275. ]
  41276. ))
  41277. characterMakers.push(() => makeCharacter(
  41278. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41279. {
  41280. front: {
  41281. height: math.unit(6, "feet"),
  41282. weight: math.unit(150, "lb"),
  41283. name: "Front",
  41284. image: {
  41285. source: "./media/characters/ariz/front.svg",
  41286. extra: 1401/1346,
  41287. bottom: 5/1406
  41288. }
  41289. },
  41290. },
  41291. [
  41292. {
  41293. name: "Normal",
  41294. height: math.unit(10, "feet"),
  41295. default: true
  41296. },
  41297. ]
  41298. ))
  41299. characterMakers.push(() => makeCharacter(
  41300. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41301. {
  41302. front: {
  41303. height: math.unit(6, "feet"),
  41304. weight: math.unit(140, "lb"),
  41305. name: "Front",
  41306. image: {
  41307. source: "./media/characters/sigrun/front.svg",
  41308. extra: 1418/1359,
  41309. bottom: 27/1445
  41310. }
  41311. },
  41312. },
  41313. [
  41314. {
  41315. name: "Macro",
  41316. height: math.unit(35, "feet"),
  41317. default: true
  41318. },
  41319. ]
  41320. ))
  41321. characterMakers.push(() => makeCharacter(
  41322. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41323. {
  41324. front: {
  41325. height: math.unit(6, "feet"),
  41326. weight: math.unit(150, "lb"),
  41327. name: "Front",
  41328. image: {
  41329. source: "./media/characters/numin/front.svg",
  41330. extra: 1433/1388,
  41331. bottom: 12/1445
  41332. }
  41333. },
  41334. },
  41335. [
  41336. {
  41337. name: "Macro",
  41338. height: math.unit(21.5, "km"),
  41339. default: true
  41340. },
  41341. ]
  41342. ))
  41343. characterMakers.push(() => makeCharacter(
  41344. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41345. {
  41346. front: {
  41347. height: math.unit(6, "feet"),
  41348. weight: math.unit(463, "lb"),
  41349. name: "Front",
  41350. image: {
  41351. source: "./media/characters/melwa/front.svg",
  41352. extra: 1307/1248,
  41353. bottom: 93/1400
  41354. }
  41355. },
  41356. },
  41357. [
  41358. {
  41359. name: "Macro",
  41360. height: math.unit(50, "meters"),
  41361. default: true
  41362. },
  41363. ]
  41364. ))
  41365. characterMakers.push(() => makeCharacter(
  41366. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41367. {
  41368. front: {
  41369. height: math.unit(325, "feet"),
  41370. name: "Front",
  41371. image: {
  41372. source: "./media/characters/zorkaiju/front.svg",
  41373. extra: 1955/1814,
  41374. bottom: 40/1995
  41375. }
  41376. },
  41377. frontExtended: {
  41378. height: math.unit(325, "feet"),
  41379. name: "Front (Extended)",
  41380. image: {
  41381. source: "./media/characters/zorkaiju/front-extended.svg",
  41382. extra: 1955/1814,
  41383. bottom: 40/1995
  41384. }
  41385. },
  41386. side: {
  41387. height: math.unit(325, "feet"),
  41388. name: "Side",
  41389. image: {
  41390. source: "./media/characters/zorkaiju/side.svg",
  41391. extra: 1495/1396,
  41392. bottom: 17/1512
  41393. }
  41394. },
  41395. sideExtended: {
  41396. height: math.unit(325, "feet"),
  41397. name: "Side (Extended)",
  41398. image: {
  41399. source: "./media/characters/zorkaiju/side-extended.svg",
  41400. extra: 1495/1396,
  41401. bottom: 17/1512
  41402. }
  41403. },
  41404. back: {
  41405. height: math.unit(325, "feet"),
  41406. name: "Back",
  41407. image: {
  41408. source: "./media/characters/zorkaiju/back.svg",
  41409. extra: 1959/1821,
  41410. bottom: 31/1990
  41411. }
  41412. },
  41413. backExtended: {
  41414. height: math.unit(325, "feet"),
  41415. name: "Back (Extended)",
  41416. image: {
  41417. source: "./media/characters/zorkaiju/back-extended.svg",
  41418. extra: 1959/1821,
  41419. bottom: 31/1990
  41420. }
  41421. },
  41422. hand: {
  41423. height: math.unit(58.4, "feet"),
  41424. name: "Hand",
  41425. image: {
  41426. source: "./media/characters/zorkaiju/hand.svg"
  41427. }
  41428. },
  41429. handExtended: {
  41430. height: math.unit(61.4, "feet"),
  41431. name: "Hand (Extended)",
  41432. image: {
  41433. source: "./media/characters/zorkaiju/hand-extended.svg"
  41434. }
  41435. },
  41436. foot: {
  41437. height: math.unit(95, "feet"),
  41438. name: "Foot",
  41439. image: {
  41440. source: "./media/characters/zorkaiju/foot.svg"
  41441. }
  41442. },
  41443. leftArm: {
  41444. height: math.unit(59, "feet"),
  41445. name: "Left Arm",
  41446. image: {
  41447. source: "./media/characters/zorkaiju/left-arm.svg"
  41448. }
  41449. },
  41450. rightArm: {
  41451. height: math.unit(59, "feet"),
  41452. name: "Right Arm",
  41453. image: {
  41454. source: "./media/characters/zorkaiju/right-arm.svg"
  41455. }
  41456. },
  41457. tail: {
  41458. height: math.unit(104, "feet"),
  41459. name: "Tail",
  41460. image: {
  41461. source: "./media/characters/zorkaiju/tail.svg"
  41462. }
  41463. },
  41464. tailExtended: {
  41465. height: math.unit(104, "feet"),
  41466. name: "Tail (Extended)",
  41467. image: {
  41468. source: "./media/characters/zorkaiju/tail-extended.svg"
  41469. }
  41470. },
  41471. tailBottom: {
  41472. height: math.unit(104, "feet"),
  41473. name: "Tail Bottom",
  41474. image: {
  41475. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41476. }
  41477. },
  41478. crystal: {
  41479. height: math.unit(27.54, "feet"),
  41480. name: "Crystal",
  41481. image: {
  41482. source: "./media/characters/zorkaiju/crystal.svg"
  41483. }
  41484. },
  41485. },
  41486. [
  41487. {
  41488. name: "Kaiju",
  41489. height: math.unit(325, "feet"),
  41490. default: true
  41491. },
  41492. ]
  41493. ))
  41494. characterMakers.push(() => makeCharacter(
  41495. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41496. {
  41497. front: {
  41498. height: math.unit(6 + 1/12, "feet"),
  41499. weight: math.unit(115, "lb"),
  41500. name: "Front",
  41501. image: {
  41502. source: "./media/characters/bailey-belfry/front.svg",
  41503. extra: 1240/1121,
  41504. bottom: 101/1341
  41505. }
  41506. },
  41507. },
  41508. [
  41509. {
  41510. name: "Normal",
  41511. height: math.unit(6 + 1/12, "feet"),
  41512. default: true
  41513. },
  41514. ]
  41515. ))
  41516. characterMakers.push(() => makeCharacter(
  41517. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41518. {
  41519. side: {
  41520. height: math.unit(4, "meters"),
  41521. weight: math.unit(250, "kg"),
  41522. name: "Side",
  41523. image: {
  41524. source: "./media/characters/blacky/side.svg",
  41525. extra: 1027/919,
  41526. bottom: 43/1070
  41527. }
  41528. },
  41529. maw: {
  41530. height: math.unit(1, "meters"),
  41531. name: "Maw",
  41532. image: {
  41533. source: "./media/characters/blacky/maw.svg"
  41534. }
  41535. },
  41536. paw: {
  41537. height: math.unit(1, "meters"),
  41538. name: "Paw",
  41539. image: {
  41540. source: "./media/characters/blacky/paw.svg"
  41541. }
  41542. },
  41543. },
  41544. [
  41545. {
  41546. name: "Normal",
  41547. height: math.unit(4, "meters"),
  41548. default: true
  41549. },
  41550. ]
  41551. ))
  41552. characterMakers.push(() => makeCharacter(
  41553. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41554. {
  41555. front: {
  41556. height: math.unit(170, "cm"),
  41557. weight: math.unit(66, "kg"),
  41558. name: "Front",
  41559. image: {
  41560. source: "./media/characters/thux-ei/front.svg",
  41561. extra: 1109/1011,
  41562. bottom: 8/1117
  41563. }
  41564. },
  41565. },
  41566. [
  41567. {
  41568. name: "Normal",
  41569. height: math.unit(170, "cm"),
  41570. default: true
  41571. },
  41572. ]
  41573. ))
  41574. characterMakers.push(() => makeCharacter(
  41575. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41576. {
  41577. front: {
  41578. height: math.unit(5, "feet"),
  41579. weight: math.unit(120, "lb"),
  41580. name: "Front",
  41581. image: {
  41582. source: "./media/characters/roxanne-voltaire/front.svg",
  41583. extra: 1901/1779,
  41584. bottom: 53/1954
  41585. }
  41586. },
  41587. },
  41588. [
  41589. {
  41590. name: "Normal",
  41591. height: math.unit(5, "feet"),
  41592. default: true
  41593. },
  41594. {
  41595. name: "Giant",
  41596. height: math.unit(50, "feet")
  41597. },
  41598. {
  41599. name: "Titan",
  41600. height: math.unit(500, "feet")
  41601. },
  41602. {
  41603. name: "Macro",
  41604. height: math.unit(5000, "feet")
  41605. },
  41606. {
  41607. name: "Megamacro",
  41608. height: math.unit(50000, "feet")
  41609. },
  41610. {
  41611. name: "Gigamacro",
  41612. height: math.unit(500000, "feet")
  41613. },
  41614. {
  41615. name: "Teramacro",
  41616. height: math.unit(5e6, "feet")
  41617. },
  41618. ]
  41619. ))
  41620. characterMakers.push(() => makeCharacter(
  41621. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41622. {
  41623. front: {
  41624. height: math.unit(6 + 2/12, "feet"),
  41625. name: "Front",
  41626. image: {
  41627. source: "./media/characters/squeaks/front.svg",
  41628. extra: 1823/1768,
  41629. bottom: 138/1961
  41630. }
  41631. },
  41632. },
  41633. [
  41634. {
  41635. name: "Micro",
  41636. height: math.unit(0.5, "inches")
  41637. },
  41638. {
  41639. name: "Normal",
  41640. height: math.unit(6 + 2/12, "feet"),
  41641. default: true
  41642. },
  41643. {
  41644. name: "Macro",
  41645. height: math.unit(600, "feet")
  41646. },
  41647. ]
  41648. ))
  41649. characterMakers.push(() => makeCharacter(
  41650. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41651. {
  41652. front: {
  41653. height: math.unit(1.72, "meters"),
  41654. name: "Front",
  41655. image: {
  41656. source: "./media/characters/archinger/front.svg",
  41657. extra: 1861/1675,
  41658. bottom: 125/1986
  41659. }
  41660. },
  41661. back: {
  41662. height: math.unit(1.72, "meters"),
  41663. name: "Back",
  41664. image: {
  41665. source: "./media/characters/archinger/back.svg",
  41666. extra: 1844/1701,
  41667. bottom: 104/1948
  41668. }
  41669. },
  41670. cock: {
  41671. height: math.unit(0.59, "feet"),
  41672. name: "Cock",
  41673. image: {
  41674. source: "./media/characters/archinger/cock.svg"
  41675. }
  41676. },
  41677. },
  41678. [
  41679. {
  41680. name: "Normal",
  41681. height: math.unit(1.72, "meters"),
  41682. default: true
  41683. },
  41684. {
  41685. name: "Macro",
  41686. height: math.unit(84, "meters")
  41687. },
  41688. {
  41689. name: "Macro+",
  41690. height: math.unit(112, "meters")
  41691. },
  41692. {
  41693. name: "Macro++",
  41694. height: math.unit(960, "meters")
  41695. },
  41696. {
  41697. name: "Macro+++",
  41698. height: math.unit(4, "km")
  41699. },
  41700. {
  41701. name: "Macro++++",
  41702. height: math.unit(48, "km")
  41703. },
  41704. {
  41705. name: "Macro+++++",
  41706. height: math.unit(4500, "km")
  41707. },
  41708. ]
  41709. ))
  41710. characterMakers.push(() => makeCharacter(
  41711. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41712. {
  41713. front: {
  41714. height: math.unit(5 + 5/12, "feet"),
  41715. name: "Front",
  41716. image: {
  41717. source: "./media/characters/alsnapz/front.svg",
  41718. extra: 1157/1065,
  41719. bottom: 42/1199
  41720. }
  41721. },
  41722. },
  41723. [
  41724. {
  41725. name: "Normal",
  41726. height: math.unit(5 + 5/12, "feet"),
  41727. default: true
  41728. },
  41729. ]
  41730. ))
  41731. characterMakers.push(() => makeCharacter(
  41732. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41733. {
  41734. side: {
  41735. height: math.unit(3.2, "earths"),
  41736. name: "Side",
  41737. image: {
  41738. source: "./media/characters/mag/side.svg",
  41739. extra: 1331/1008,
  41740. bottom: 52/1383
  41741. }
  41742. },
  41743. wing: {
  41744. height: math.unit(1.94, "earths"),
  41745. name: "Wing",
  41746. image: {
  41747. source: "./media/characters/mag/wing.svg"
  41748. }
  41749. },
  41750. dick: {
  41751. height: math.unit(1.8, "earths"),
  41752. name: "Dick",
  41753. image: {
  41754. source: "./media/characters/mag/dick.svg"
  41755. }
  41756. },
  41757. ass: {
  41758. height: math.unit(1.33, "earths"),
  41759. name: "Ass",
  41760. image: {
  41761. source: "./media/characters/mag/ass.svg"
  41762. }
  41763. },
  41764. head: {
  41765. height: math.unit(1.1, "earths"),
  41766. name: "Head",
  41767. image: {
  41768. source: "./media/characters/mag/head.svg"
  41769. }
  41770. },
  41771. maw: {
  41772. height: math.unit(1.62, "earths"),
  41773. name: "Maw",
  41774. image: {
  41775. source: "./media/characters/mag/maw.svg"
  41776. }
  41777. },
  41778. },
  41779. [
  41780. {
  41781. name: "Small",
  41782. height: math.unit(162, "feet")
  41783. },
  41784. {
  41785. name: "Normal",
  41786. height: math.unit(3.2, "earths"),
  41787. default: true
  41788. },
  41789. ]
  41790. ))
  41791. characterMakers.push(() => makeCharacter(
  41792. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41793. {
  41794. front: {
  41795. height: math.unit(512, "feet"),
  41796. weight: math.unit(63509, "tonnes"),
  41797. name: "Front",
  41798. image: {
  41799. source: "./media/characters/vorrel-harroc/front.svg",
  41800. extra: 1075/1063,
  41801. bottom: 62/1137
  41802. }
  41803. },
  41804. },
  41805. [
  41806. {
  41807. name: "Normal",
  41808. height: math.unit(10, "feet")
  41809. },
  41810. {
  41811. name: "Macro",
  41812. height: math.unit(512, "feet"),
  41813. default: true
  41814. },
  41815. {
  41816. name: "Megamacro",
  41817. height: math.unit(256, "miles")
  41818. },
  41819. {
  41820. name: "Gigamacro",
  41821. height: math.unit(4096, "miles")
  41822. },
  41823. ]
  41824. ))
  41825. characterMakers.push(() => makeCharacter(
  41826. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41827. {
  41828. side: {
  41829. height: math.unit(50, "feet"),
  41830. name: "Side",
  41831. image: {
  41832. source: "./media/characters/froimar/side.svg",
  41833. extra: 855/638,
  41834. bottom: 99/954
  41835. }
  41836. },
  41837. },
  41838. [
  41839. {
  41840. name: "Macro",
  41841. height: math.unit(50, "feet"),
  41842. default: true
  41843. },
  41844. ]
  41845. ))
  41846. characterMakers.push(() => makeCharacter(
  41847. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41848. {
  41849. front: {
  41850. height: math.unit(210, "miles"),
  41851. name: "Front",
  41852. image: {
  41853. source: "./media/characters/timothy/front.svg",
  41854. extra: 1007/943,
  41855. bottom: 62/1069
  41856. }
  41857. },
  41858. frontSkirt: {
  41859. height: math.unit(210, "miles"),
  41860. name: "Front (Skirt)",
  41861. image: {
  41862. source: "./media/characters/timothy/front-skirt.svg",
  41863. extra: 1007/943,
  41864. bottom: 62/1069
  41865. }
  41866. },
  41867. frontCoat: {
  41868. height: math.unit(210, "miles"),
  41869. name: "Front (Coat)",
  41870. image: {
  41871. source: "./media/characters/timothy/front-coat.svg",
  41872. extra: 1007/943,
  41873. bottom: 62/1069
  41874. }
  41875. },
  41876. },
  41877. [
  41878. {
  41879. name: "Macro",
  41880. height: math.unit(210, "miles"),
  41881. default: true
  41882. },
  41883. {
  41884. name: "Megamacro",
  41885. height: math.unit(210000, "miles")
  41886. },
  41887. ]
  41888. ))
  41889. characterMakers.push(() => makeCharacter(
  41890. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41891. {
  41892. front: {
  41893. height: math.unit(188, "feet"),
  41894. name: "Front",
  41895. image: {
  41896. source: "./media/characters/pyotr/front.svg",
  41897. extra: 1912/1826,
  41898. bottom: 18/1930
  41899. }
  41900. },
  41901. },
  41902. [
  41903. {
  41904. name: "Macro",
  41905. height: math.unit(188, "feet"),
  41906. default: true
  41907. },
  41908. {
  41909. name: "Megamacro",
  41910. height: math.unit(8, "miles")
  41911. },
  41912. ]
  41913. ))
  41914. characterMakers.push(() => makeCharacter(
  41915. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41916. {
  41917. side: {
  41918. height: math.unit(10, "feet"),
  41919. weight: math.unit(4500, "lb"),
  41920. name: "Side",
  41921. image: {
  41922. source: "./media/characters/ackart/side.svg",
  41923. extra: 1776/1668,
  41924. bottom: 116/1892
  41925. }
  41926. },
  41927. },
  41928. [
  41929. {
  41930. name: "Normal",
  41931. height: math.unit(10, "feet"),
  41932. default: true
  41933. },
  41934. ]
  41935. ))
  41936. characterMakers.push(() => makeCharacter(
  41937. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41938. {
  41939. side: {
  41940. height: math.unit(21, "feet"),
  41941. name: "Side",
  41942. image: {
  41943. source: "./media/characters/nolow/side.svg",
  41944. extra: 1484/1434,
  41945. bottom: 85/1569
  41946. }
  41947. },
  41948. sideErect: {
  41949. height: math.unit(21, "feet"),
  41950. name: "Side-erect",
  41951. image: {
  41952. source: "./media/characters/nolow/side-erect.svg",
  41953. extra: 1484/1434,
  41954. bottom: 85/1569
  41955. }
  41956. },
  41957. },
  41958. [
  41959. {
  41960. name: "Regular",
  41961. height: math.unit(12, "feet")
  41962. },
  41963. {
  41964. name: "Big Chee",
  41965. height: math.unit(21, "feet"),
  41966. default: true
  41967. },
  41968. ]
  41969. ))
  41970. characterMakers.push(() => makeCharacter(
  41971. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41972. {
  41973. front: {
  41974. height: math.unit(7, "feet"),
  41975. weight: math.unit(250, "lb"),
  41976. name: "Front",
  41977. image: {
  41978. source: "./media/characters/nines/front.svg",
  41979. extra: 1741/1607,
  41980. bottom: 41/1782
  41981. }
  41982. },
  41983. side: {
  41984. height: math.unit(7, "feet"),
  41985. weight: math.unit(250, "lb"),
  41986. name: "Side",
  41987. image: {
  41988. source: "./media/characters/nines/side.svg",
  41989. extra: 1854/1735,
  41990. bottom: 93/1947
  41991. }
  41992. },
  41993. back: {
  41994. height: math.unit(7, "feet"),
  41995. weight: math.unit(250, "lb"),
  41996. name: "Back",
  41997. image: {
  41998. source: "./media/characters/nines/back.svg",
  41999. extra: 1748/1615,
  42000. bottom: 20/1768
  42001. }
  42002. },
  42003. },
  42004. [
  42005. {
  42006. name: "Megamacro",
  42007. height: math.unit(99, "km"),
  42008. default: true
  42009. },
  42010. ]
  42011. ))
  42012. characterMakers.push(() => makeCharacter(
  42013. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42014. {
  42015. front: {
  42016. height: math.unit(5 + 10/12, "feet"),
  42017. weight: math.unit(210, "lb"),
  42018. name: "Front",
  42019. image: {
  42020. source: "./media/characters/zenith/front.svg",
  42021. extra: 1531/1452,
  42022. bottom: 198/1729
  42023. }
  42024. },
  42025. back: {
  42026. height: math.unit(5 + 10/12, "feet"),
  42027. weight: math.unit(210, "lb"),
  42028. name: "Back",
  42029. image: {
  42030. source: "./media/characters/zenith/back.svg",
  42031. extra: 1571/1487,
  42032. bottom: 75/1646
  42033. }
  42034. },
  42035. },
  42036. [
  42037. {
  42038. name: "Normal",
  42039. height: math.unit(5 + 10/12, "feet"),
  42040. default: true
  42041. }
  42042. ]
  42043. ))
  42044. characterMakers.push(() => makeCharacter(
  42045. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42046. {
  42047. front: {
  42048. height: math.unit(4, "feet"),
  42049. weight: math.unit(60, "lb"),
  42050. name: "Front",
  42051. image: {
  42052. source: "./media/characters/jasper/front.svg",
  42053. extra: 1450/1379,
  42054. bottom: 19/1469
  42055. }
  42056. },
  42057. },
  42058. [
  42059. {
  42060. name: "Normal",
  42061. height: math.unit(4, "feet"),
  42062. default: true
  42063. },
  42064. ]
  42065. ))
  42066. characterMakers.push(() => makeCharacter(
  42067. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42068. {
  42069. front: {
  42070. height: math.unit(6 + 5/12, "feet"),
  42071. weight: math.unit(290, "lb"),
  42072. name: "Front",
  42073. image: {
  42074. source: "./media/characters/tiberius-thyben/front.svg",
  42075. extra: 757/739,
  42076. bottom: 39/796
  42077. }
  42078. },
  42079. },
  42080. [
  42081. {
  42082. name: "Micro",
  42083. height: math.unit(1.5, "inches")
  42084. },
  42085. {
  42086. name: "Normal",
  42087. height: math.unit(6 + 5/12, "feet"),
  42088. default: true
  42089. },
  42090. {
  42091. name: "Macro",
  42092. height: math.unit(300, "feet")
  42093. },
  42094. ]
  42095. ))
  42096. characterMakers.push(() => makeCharacter(
  42097. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42098. {
  42099. front: {
  42100. height: math.unit(5 + 6/12, "feet"),
  42101. weight: math.unit(60, "kg"),
  42102. name: "Front",
  42103. image: {
  42104. source: "./media/characters/sabre/front.svg",
  42105. extra: 738/671,
  42106. bottom: 27/765
  42107. }
  42108. },
  42109. },
  42110. [
  42111. {
  42112. name: "Teeny",
  42113. height: math.unit(2, "inches")
  42114. },
  42115. {
  42116. name: "Smol",
  42117. height: math.unit(8, "inches")
  42118. },
  42119. {
  42120. name: "Normal",
  42121. height: math.unit(5 + 6/12, "feet"),
  42122. default: true
  42123. },
  42124. {
  42125. name: "Mini-Macro",
  42126. height: math.unit(15, "feet")
  42127. },
  42128. {
  42129. name: "Macro",
  42130. height: math.unit(50, "feet")
  42131. },
  42132. ]
  42133. ))
  42134. characterMakers.push(() => makeCharacter(
  42135. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42136. {
  42137. front: {
  42138. height: math.unit(6 + 4/12, "feet"),
  42139. weight: math.unit(170, "lb"),
  42140. name: "Front",
  42141. image: {
  42142. source: "./media/characters/charlie/front.svg",
  42143. extra: 1348/1228,
  42144. bottom: 15/1363
  42145. }
  42146. },
  42147. },
  42148. [
  42149. {
  42150. name: "Macro",
  42151. height: math.unit(1700, "meters"),
  42152. default: true
  42153. },
  42154. {
  42155. name: "MegaMacro",
  42156. height: math.unit(20400, "meters")
  42157. },
  42158. ]
  42159. ))
  42160. characterMakers.push(() => makeCharacter(
  42161. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42162. {
  42163. front: {
  42164. height: math.unit(6 + 3/12, "feet"),
  42165. weight: math.unit(185, "lb"),
  42166. name: "Front",
  42167. image: {
  42168. source: "./media/characters/susan-grant/front.svg",
  42169. extra: 1351/1327,
  42170. bottom: 26/1377
  42171. }
  42172. },
  42173. },
  42174. [
  42175. {
  42176. name: "Normal",
  42177. height: math.unit(6 + 3/12, "feet"),
  42178. default: true
  42179. },
  42180. {
  42181. name: "Macro",
  42182. height: math.unit(225, "feet")
  42183. },
  42184. {
  42185. name: "Macro+",
  42186. height: math.unit(900, "feet")
  42187. },
  42188. {
  42189. name: "MegaMacro",
  42190. height: math.unit(14400, "feet")
  42191. },
  42192. ]
  42193. ))
  42194. characterMakers.push(() => makeCharacter(
  42195. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42196. {
  42197. front: {
  42198. height: math.unit(5 + 4/12, "feet"),
  42199. weight: math.unit(110, "lb"),
  42200. name: "Front",
  42201. image: {
  42202. source: "./media/characters/axel-isanov/front.svg",
  42203. extra: 1096/1065,
  42204. bottom: 13/1109
  42205. }
  42206. },
  42207. },
  42208. [
  42209. {
  42210. name: "Normal",
  42211. height: math.unit(5 + 4/12, "feet"),
  42212. default: true
  42213. },
  42214. ]
  42215. ))
  42216. characterMakers.push(() => makeCharacter(
  42217. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42218. {
  42219. front: {
  42220. height: math.unit(9, "feet"),
  42221. weight: math.unit(467, "lb"),
  42222. name: "Front",
  42223. image: {
  42224. source: "./media/characters/necahual/front.svg",
  42225. extra: 920/873,
  42226. bottom: 26/946
  42227. }
  42228. },
  42229. back: {
  42230. height: math.unit(9, "feet"),
  42231. weight: math.unit(467, "lb"),
  42232. name: "Back",
  42233. image: {
  42234. source: "./media/characters/necahual/back.svg",
  42235. extra: 930/884,
  42236. bottom: 16/946
  42237. }
  42238. },
  42239. frontUnderwear: {
  42240. height: math.unit(9, "feet"),
  42241. weight: math.unit(467, "lb"),
  42242. name: "Front (Underwear)",
  42243. image: {
  42244. source: "./media/characters/necahual/front-underwear.svg",
  42245. extra: 920/873,
  42246. bottom: 26/946
  42247. }
  42248. },
  42249. frontDressed: {
  42250. height: math.unit(9, "feet"),
  42251. weight: math.unit(467, "lb"),
  42252. name: "Front (Dressed)",
  42253. image: {
  42254. source: "./media/characters/necahual/front-dressed.svg",
  42255. extra: 920/873,
  42256. bottom: 26/946
  42257. }
  42258. },
  42259. },
  42260. [
  42261. {
  42262. name: "Comprsesed",
  42263. height: math.unit(9, "feet")
  42264. },
  42265. {
  42266. name: "Natural",
  42267. height: math.unit(15, "feet"),
  42268. default: true
  42269. },
  42270. {
  42271. name: "Boosted",
  42272. height: math.unit(50, "feet")
  42273. },
  42274. {
  42275. name: "Boosted+",
  42276. height: math.unit(150, "feet")
  42277. },
  42278. {
  42279. name: "Max",
  42280. height: math.unit(500, "feet")
  42281. },
  42282. ]
  42283. ))
  42284. characterMakers.push(() => makeCharacter(
  42285. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42286. {
  42287. front: {
  42288. height: math.unit(22 + 1/12, "feet"),
  42289. weight: math.unit(3200, "lb"),
  42290. name: "Front",
  42291. image: {
  42292. source: "./media/characters/theo-acacia/front.svg",
  42293. extra: 1796/1741,
  42294. bottom: 83/1879
  42295. }
  42296. },
  42297. frontUnderwear: {
  42298. height: math.unit(22 + 1/12, "feet"),
  42299. weight: math.unit(3200, "lb"),
  42300. name: "Front (Underwear)",
  42301. image: {
  42302. source: "./media/characters/theo-acacia/front-underwear.svg",
  42303. extra: 1796/1741,
  42304. bottom: 83/1879
  42305. }
  42306. },
  42307. frontNude: {
  42308. height: math.unit(22 + 1/12, "feet"),
  42309. weight: math.unit(3200, "lb"),
  42310. name: "Front (Nude)",
  42311. image: {
  42312. source: "./media/characters/theo-acacia/front-nude.svg",
  42313. extra: 1796/1741,
  42314. bottom: 83/1879
  42315. }
  42316. },
  42317. },
  42318. [
  42319. {
  42320. name: "Normal",
  42321. height: math.unit(22 + 1/12, "feet"),
  42322. default: true
  42323. },
  42324. ]
  42325. ))
  42326. characterMakers.push(() => makeCharacter(
  42327. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42328. {
  42329. front: {
  42330. height: math.unit(20, "feet"),
  42331. name: "Front",
  42332. image: {
  42333. source: "./media/characters/astra/front.svg",
  42334. extra: 1850/1714,
  42335. bottom: 106/1956
  42336. }
  42337. },
  42338. frontUndressed: {
  42339. height: math.unit(20, "feet"),
  42340. name: "Front (Undressed)",
  42341. image: {
  42342. source: "./media/characters/astra/front-undressed.svg",
  42343. extra: 1926/1749,
  42344. bottom: 0/1926
  42345. }
  42346. },
  42347. hand: {
  42348. height: math.unit(1.53, "feet"),
  42349. name: "Hand",
  42350. image: {
  42351. source: "./media/characters/astra/hand.svg"
  42352. }
  42353. },
  42354. paw: {
  42355. height: math.unit(1.53, "feet"),
  42356. name: "Paw",
  42357. image: {
  42358. source: "./media/characters/astra/paw.svg"
  42359. }
  42360. },
  42361. },
  42362. [
  42363. {
  42364. name: "Smallest",
  42365. height: math.unit(20, "feet")
  42366. },
  42367. {
  42368. name: "Normal",
  42369. height: math.unit(1e9, "miles"),
  42370. default: true
  42371. },
  42372. {
  42373. name: "Larger",
  42374. height: math.unit(5, "multiverses")
  42375. },
  42376. {
  42377. name: "Largest",
  42378. height: math.unit(1e9, "multiverses")
  42379. },
  42380. ]
  42381. ))
  42382. characterMakers.push(() => makeCharacter(
  42383. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42384. {
  42385. front: {
  42386. height: math.unit(8, "feet"),
  42387. name: "Front",
  42388. image: {
  42389. source: "./media/characters/breanna/front.svg",
  42390. extra: 1912/1632,
  42391. bottom: 33/1945
  42392. }
  42393. },
  42394. },
  42395. [
  42396. {
  42397. name: "Smallest",
  42398. height: math.unit(8, "feet")
  42399. },
  42400. {
  42401. name: "Normal",
  42402. height: math.unit(1, "mile"),
  42403. default: true
  42404. },
  42405. {
  42406. name: "Maximum",
  42407. height: math.unit(1500000000000, "lightyears")
  42408. },
  42409. ]
  42410. ))
  42411. characterMakers.push(() => makeCharacter(
  42412. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42413. {
  42414. front: {
  42415. height: math.unit(5 + 11/12, "feet"),
  42416. weight: math.unit(155, "lb"),
  42417. name: "Front",
  42418. image: {
  42419. source: "./media/characters/cai/front.svg",
  42420. extra: 1823/1702,
  42421. bottom: 32/1855
  42422. }
  42423. },
  42424. back: {
  42425. height: math.unit(5 + 11/12, "feet"),
  42426. weight: math.unit(155, "lb"),
  42427. name: "Back",
  42428. image: {
  42429. source: "./media/characters/cai/back.svg",
  42430. extra: 1809/1708,
  42431. bottom: 31/1840
  42432. }
  42433. },
  42434. },
  42435. [
  42436. {
  42437. name: "Normal",
  42438. height: math.unit(5 + 11/12, "feet"),
  42439. default: true
  42440. },
  42441. {
  42442. name: "Big",
  42443. height: math.unit(15, "feet")
  42444. },
  42445. {
  42446. name: "Macro",
  42447. height: math.unit(200, "feet")
  42448. },
  42449. ]
  42450. ))
  42451. characterMakers.push(() => makeCharacter(
  42452. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42453. {
  42454. front: {
  42455. height: math.unit(5 + 6/12, "feet"),
  42456. weight: math.unit(160, "lb"),
  42457. name: "Front",
  42458. image: {
  42459. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42460. extra: 1227/1174,
  42461. bottom: 37/1264
  42462. }
  42463. },
  42464. },
  42465. [
  42466. {
  42467. name: "Macro",
  42468. height: math.unit(444, "meters"),
  42469. default: true
  42470. },
  42471. ]
  42472. ))
  42473. characterMakers.push(() => makeCharacter(
  42474. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42475. {
  42476. front: {
  42477. height: math.unit(18 + 7/12, "feet"),
  42478. name: "Front",
  42479. image: {
  42480. source: "./media/characters/rex/front.svg",
  42481. extra: 1941/1807,
  42482. bottom: 66/2007
  42483. }
  42484. },
  42485. back: {
  42486. height: math.unit(18 + 7/12, "feet"),
  42487. name: "Back",
  42488. image: {
  42489. source: "./media/characters/rex/back.svg",
  42490. extra: 1937/1822,
  42491. bottom: 42/1979
  42492. }
  42493. },
  42494. boot: {
  42495. height: math.unit(3.45, "feet"),
  42496. name: "Boot",
  42497. image: {
  42498. source: "./media/characters/rex/boot.svg"
  42499. }
  42500. },
  42501. paw: {
  42502. height: math.unit(4.17, "feet"),
  42503. name: "Paw",
  42504. image: {
  42505. source: "./media/characters/rex/paw.svg"
  42506. }
  42507. },
  42508. head: {
  42509. height: math.unit(6.728, "feet"),
  42510. name: "Head",
  42511. image: {
  42512. source: "./media/characters/rex/head.svg"
  42513. }
  42514. },
  42515. },
  42516. [
  42517. {
  42518. name: "Nano",
  42519. height: math.unit(18 + 7/12, "feet")
  42520. },
  42521. {
  42522. name: "Micro",
  42523. height: math.unit(1.5, "megameters")
  42524. },
  42525. {
  42526. name: "Normal",
  42527. height: math.unit(440, "megameters"),
  42528. default: true
  42529. },
  42530. {
  42531. name: "Macro",
  42532. height: math.unit(2.5, "gigameters")
  42533. },
  42534. {
  42535. name: "Gigamacro",
  42536. height: math.unit(2, "galaxies")
  42537. },
  42538. ]
  42539. ))
  42540. characterMakers.push(() => makeCharacter(
  42541. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42542. {
  42543. side: {
  42544. height: math.unit(32, "feet"),
  42545. weight: math.unit(250000, "lb"),
  42546. name: "Side",
  42547. image: {
  42548. source: "./media/characters/silverwing/side.svg",
  42549. extra: 1100/1019,
  42550. bottom: 204/1304
  42551. }
  42552. },
  42553. },
  42554. [
  42555. {
  42556. name: "Normal",
  42557. height: math.unit(32, "feet"),
  42558. default: true
  42559. },
  42560. ]
  42561. ))
  42562. characterMakers.push(() => makeCharacter(
  42563. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42564. {
  42565. front: {
  42566. height: math.unit(6 + 6/12, "feet"),
  42567. weight: math.unit(350, "lb"),
  42568. name: "Front",
  42569. image: {
  42570. source: "./media/characters/tristan-hawthorne/front.svg",
  42571. extra: 1159/1124,
  42572. bottom: 37/1196
  42573. },
  42574. form: "labrador",
  42575. default: true
  42576. },
  42577. skunkFront: {
  42578. height: math.unit(4 + 6/12, "feet"),
  42579. weight: math.unit(120, "lb"),
  42580. name: "Front",
  42581. image: {
  42582. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42583. extra: 1609/1551,
  42584. bottom: 169/1778
  42585. },
  42586. form: "skunk",
  42587. default: true
  42588. },
  42589. },
  42590. [
  42591. {
  42592. name: "Normal",
  42593. height: math.unit(6 + 6/12, "feet"),
  42594. form: "labrador",
  42595. default: true
  42596. },
  42597. {
  42598. name: "Normal",
  42599. height: math.unit(4 + 6/12, "feet"),
  42600. form: "skunk",
  42601. default: true
  42602. },
  42603. ],
  42604. {
  42605. "labrador": {
  42606. name: "Labrador",
  42607. default: true
  42608. },
  42609. "skunk": {
  42610. name: "Skunk"
  42611. }
  42612. }
  42613. ))
  42614. characterMakers.push(() => makeCharacter(
  42615. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42616. {
  42617. front: {
  42618. height: math.unit(5 + 11/12, "feet"),
  42619. weight: math.unit(190, "lb"),
  42620. name: "Front",
  42621. image: {
  42622. source: "./media/characters/mizu/front.svg",
  42623. extra: 1988/1788,
  42624. bottom: 14/2002
  42625. }
  42626. },
  42627. },
  42628. [
  42629. {
  42630. name: "Normal",
  42631. height: math.unit(5 + 11/12, "feet"),
  42632. default: true
  42633. },
  42634. ]
  42635. ))
  42636. characterMakers.push(() => makeCharacter(
  42637. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42638. {
  42639. front: {
  42640. height: math.unit(1.7, "feet"),
  42641. weight: math.unit(50, "lb"),
  42642. name: "Front",
  42643. image: {
  42644. source: "./media/characters/dechroma/front.svg",
  42645. extra: 1095/859,
  42646. bottom: 64/1159
  42647. }
  42648. },
  42649. },
  42650. [
  42651. {
  42652. name: "Normal",
  42653. height: math.unit(1.7, "feet"),
  42654. default: true
  42655. },
  42656. ]
  42657. ))
  42658. characterMakers.push(() => makeCharacter(
  42659. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42660. {
  42661. side: {
  42662. height: math.unit(30, "feet"),
  42663. name: "Side",
  42664. image: {
  42665. source: "./media/characters/veluren-thanazel/side.svg",
  42666. extra: 1611/633,
  42667. bottom: 118/1729
  42668. }
  42669. },
  42670. front: {
  42671. height: math.unit(30, "feet"),
  42672. name: "Front",
  42673. image: {
  42674. source: "./media/characters/veluren-thanazel/front.svg",
  42675. extra: 1486/636,
  42676. bottom: 238/1724
  42677. }
  42678. },
  42679. head: {
  42680. height: math.unit(21.4, "feet"),
  42681. name: "Head",
  42682. image: {
  42683. source: "./media/characters/veluren-thanazel/head.svg"
  42684. }
  42685. },
  42686. genitals: {
  42687. height: math.unit(19.4, "feet"),
  42688. name: "Genitals",
  42689. image: {
  42690. source: "./media/characters/veluren-thanazel/genitals.svg"
  42691. }
  42692. },
  42693. },
  42694. [
  42695. {
  42696. name: "Social",
  42697. height: math.unit(6, "feet")
  42698. },
  42699. {
  42700. name: "Play",
  42701. height: math.unit(12, "feet")
  42702. },
  42703. {
  42704. name: "True",
  42705. height: math.unit(30, "feet"),
  42706. default: true
  42707. },
  42708. ]
  42709. ))
  42710. characterMakers.push(() => makeCharacter(
  42711. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42712. {
  42713. front: {
  42714. height: math.unit(7 + 6/12, "feet"),
  42715. weight: math.unit(500, "kg"),
  42716. name: "Front",
  42717. image: {
  42718. source: "./media/characters/arcturas/front.svg",
  42719. extra: 1700/1500,
  42720. bottom: 145/1845
  42721. }
  42722. },
  42723. },
  42724. [
  42725. {
  42726. name: "Normal",
  42727. height: math.unit(7 + 6/12, "feet"),
  42728. default: true
  42729. },
  42730. ]
  42731. ))
  42732. characterMakers.push(() => makeCharacter(
  42733. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42734. {
  42735. side: {
  42736. height: math.unit(6, "feet"),
  42737. weight: math.unit(2, "tons"),
  42738. name: "Side",
  42739. image: {
  42740. source: "./media/characters/vitaen/side.svg",
  42741. extra: 1157/617,
  42742. bottom: 122/1279
  42743. }
  42744. },
  42745. },
  42746. [
  42747. {
  42748. name: "Normal",
  42749. height: math.unit(6, "feet"),
  42750. default: true
  42751. },
  42752. ]
  42753. ))
  42754. characterMakers.push(() => makeCharacter(
  42755. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42756. {
  42757. front: {
  42758. height: math.unit(19, "feet"),
  42759. name: "Front",
  42760. image: {
  42761. source: "./media/characters/fia-dreamweaver/front.svg",
  42762. extra: 1630/1504,
  42763. bottom: 25/1655
  42764. }
  42765. },
  42766. },
  42767. [
  42768. {
  42769. name: "Normal",
  42770. height: math.unit(19, "feet"),
  42771. default: true
  42772. },
  42773. ]
  42774. ))
  42775. characterMakers.push(() => makeCharacter(
  42776. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42777. {
  42778. front: {
  42779. height: math.unit(5 + 4/12, "feet"),
  42780. name: "Front",
  42781. image: {
  42782. source: "./media/characters/artan/front.svg",
  42783. extra: 1618/1535,
  42784. bottom: 46/1664
  42785. }
  42786. },
  42787. back: {
  42788. height: math.unit(5 + 4/12, "feet"),
  42789. name: "Back",
  42790. image: {
  42791. source: "./media/characters/artan/back.svg",
  42792. extra: 1618/1543,
  42793. bottom: 31/1649
  42794. }
  42795. },
  42796. },
  42797. [
  42798. {
  42799. name: "Normal",
  42800. height: math.unit(5 + 4/12, "feet"),
  42801. default: true
  42802. },
  42803. ]
  42804. ))
  42805. characterMakers.push(() => makeCharacter(
  42806. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42807. {
  42808. side: {
  42809. height: math.unit(182, "cm"),
  42810. weight: math.unit(1000, "lb"),
  42811. name: "Side",
  42812. image: {
  42813. source: "./media/characters/silver-dragon/side.svg",
  42814. extra: 710/287,
  42815. bottom: 88/798
  42816. }
  42817. },
  42818. },
  42819. [
  42820. {
  42821. name: "Normal",
  42822. height: math.unit(182, "cm"),
  42823. default: true
  42824. },
  42825. ]
  42826. ))
  42827. characterMakers.push(() => makeCharacter(
  42828. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42829. {
  42830. side: {
  42831. height: math.unit(6 + 6/12, "feet"),
  42832. weight: math.unit(1.5, "tons"),
  42833. name: "Side",
  42834. image: {
  42835. source: "./media/characters/zephyr/side.svg",
  42836. extra: 1433/586,
  42837. bottom: 109/1542
  42838. }
  42839. },
  42840. },
  42841. [
  42842. {
  42843. name: "Normal",
  42844. height: math.unit(6 + 6/12, "feet"),
  42845. default: true
  42846. },
  42847. ]
  42848. ))
  42849. characterMakers.push(() => makeCharacter(
  42850. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42851. {
  42852. side: {
  42853. height: math.unit(1, "feet"),
  42854. name: "Side",
  42855. image: {
  42856. source: "./media/characters/vixye/side.svg",
  42857. extra: 632/541,
  42858. bottom: 0/632
  42859. }
  42860. },
  42861. },
  42862. [
  42863. {
  42864. name: "Normal",
  42865. height: math.unit(1, "feet"),
  42866. default: true
  42867. },
  42868. {
  42869. name: "True",
  42870. height: math.unit(1e15, "multiverses")
  42871. },
  42872. ]
  42873. ))
  42874. characterMakers.push(() => makeCharacter(
  42875. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42876. {
  42877. front: {
  42878. height: math.unit(8 + 2/12, "feet"),
  42879. weight: math.unit(650, "lb"),
  42880. name: "Front",
  42881. image: {
  42882. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42883. extra: 1174/1137,
  42884. bottom: 82/1256
  42885. }
  42886. },
  42887. back: {
  42888. height: math.unit(8 + 2/12, "feet"),
  42889. weight: math.unit(650, "lb"),
  42890. name: "Back",
  42891. image: {
  42892. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42893. extra: 1204/1157,
  42894. bottom: 46/1250
  42895. }
  42896. },
  42897. },
  42898. [
  42899. {
  42900. name: "Wildform",
  42901. height: math.unit(8 + 2/12, "feet"),
  42902. default: true
  42903. },
  42904. ]
  42905. ))
  42906. characterMakers.push(() => makeCharacter(
  42907. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42908. {
  42909. front: {
  42910. height: math.unit(18, "feet"),
  42911. name: "Front",
  42912. image: {
  42913. source: "./media/characters/cyphin/front.svg",
  42914. extra: 970/886,
  42915. bottom: 42/1012
  42916. }
  42917. },
  42918. back: {
  42919. height: math.unit(18, "feet"),
  42920. name: "Back",
  42921. image: {
  42922. source: "./media/characters/cyphin/back.svg",
  42923. extra: 1009/894,
  42924. bottom: 24/1033
  42925. }
  42926. },
  42927. head: {
  42928. height: math.unit(5.05, "feet"),
  42929. name: "Head",
  42930. image: {
  42931. source: "./media/characters/cyphin/head.svg"
  42932. }
  42933. },
  42934. tailbud: {
  42935. height: math.unit(5, "feet"),
  42936. name: "Tailbud",
  42937. image: {
  42938. source: "./media/characters/cyphin/tailbud.svg"
  42939. }
  42940. },
  42941. },
  42942. [
  42943. ]
  42944. ))
  42945. characterMakers.push(() => makeCharacter(
  42946. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42947. {
  42948. side: {
  42949. height: math.unit(10, "feet"),
  42950. weight: math.unit(6, "tons"),
  42951. name: "Side",
  42952. image: {
  42953. source: "./media/characters/raijin/side.svg",
  42954. extra: 1529/613,
  42955. bottom: 337/1866
  42956. }
  42957. },
  42958. },
  42959. [
  42960. {
  42961. name: "Normal",
  42962. height: math.unit(10, "feet"),
  42963. default: true
  42964. },
  42965. ]
  42966. ))
  42967. characterMakers.push(() => makeCharacter(
  42968. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42969. {
  42970. side: {
  42971. height: math.unit(9, "feet"),
  42972. name: "Side",
  42973. image: {
  42974. source: "./media/characters/nilghais/side.svg",
  42975. extra: 1047/744,
  42976. bottom: 91/1138
  42977. }
  42978. },
  42979. head: {
  42980. height: math.unit(3.14, "feet"),
  42981. name: "Head",
  42982. image: {
  42983. source: "./media/characters/nilghais/head.svg"
  42984. }
  42985. },
  42986. mouth: {
  42987. height: math.unit(4.6, "feet"),
  42988. name: "Mouth",
  42989. image: {
  42990. source: "./media/characters/nilghais/mouth.svg"
  42991. }
  42992. },
  42993. wings: {
  42994. height: math.unit(24, "feet"),
  42995. name: "Wings",
  42996. image: {
  42997. source: "./media/characters/nilghais/wings.svg"
  42998. }
  42999. },
  43000. ass: {
  43001. height: math.unit(6.12, "feet"),
  43002. name: "Ass",
  43003. image: {
  43004. source: "./media/characters/nilghais/ass.svg"
  43005. }
  43006. },
  43007. },
  43008. [
  43009. {
  43010. name: "Normal",
  43011. height: math.unit(9, "feet"),
  43012. default: true
  43013. },
  43014. ]
  43015. ))
  43016. characterMakers.push(() => makeCharacter(
  43017. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43018. {
  43019. regular: {
  43020. height: math.unit(16 + 2/12, "feet"),
  43021. weight: math.unit(2300, "lb"),
  43022. name: "Regular",
  43023. image: {
  43024. source: "./media/characters/zolgar/regular.svg",
  43025. extra: 1246/1004,
  43026. bottom: 124/1370
  43027. }
  43028. },
  43029. boxers: {
  43030. height: math.unit(16 + 2/12, "feet"),
  43031. weight: math.unit(2300, "lb"),
  43032. name: "Boxers",
  43033. image: {
  43034. source: "./media/characters/zolgar/boxers.svg",
  43035. extra: 1246/1004,
  43036. bottom: 124/1370
  43037. }
  43038. },
  43039. armored: {
  43040. height: math.unit(16 + 2/12, "feet"),
  43041. weight: math.unit(2300, "lb"),
  43042. name: "Armored",
  43043. image: {
  43044. source: "./media/characters/zolgar/armored.svg",
  43045. extra: 1246/1004,
  43046. bottom: 124/1370
  43047. }
  43048. },
  43049. goth: {
  43050. height: math.unit(16 + 2/12, "feet"),
  43051. weight: math.unit(2300, "lb"),
  43052. name: "Goth",
  43053. image: {
  43054. source: "./media/characters/zolgar/goth.svg",
  43055. extra: 1246/1004,
  43056. bottom: 124/1370
  43057. }
  43058. },
  43059. },
  43060. [
  43061. {
  43062. name: "Shrunken Down",
  43063. height: math.unit(9 + 2/12, "feet")
  43064. },
  43065. {
  43066. name: "Normal",
  43067. height: math.unit(16 + 2/12, "feet"),
  43068. default: true
  43069. },
  43070. ]
  43071. ))
  43072. characterMakers.push(() => makeCharacter(
  43073. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43074. {
  43075. front: {
  43076. height: math.unit(6, "feet"),
  43077. weight: math.unit(168, "lb"),
  43078. name: "Front",
  43079. image: {
  43080. source: "./media/characters/luca/front.svg",
  43081. extra: 841/667,
  43082. bottom: 102/943
  43083. }
  43084. },
  43085. },
  43086. [
  43087. {
  43088. name: "Normal",
  43089. height: math.unit(6, "feet"),
  43090. default: true
  43091. },
  43092. ]
  43093. ))
  43094. characterMakers.push(() => makeCharacter(
  43095. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43096. {
  43097. side: {
  43098. height: math.unit(7 + 3/12, "feet"),
  43099. weight: math.unit(312, "lb"),
  43100. name: "Side",
  43101. image: {
  43102. source: "./media/characters/zezo/side.svg",
  43103. extra: 1192/1067,
  43104. bottom: 63/1255
  43105. }
  43106. },
  43107. },
  43108. [
  43109. {
  43110. name: "Normal",
  43111. height: math.unit(7 + 3/12, "feet"),
  43112. default: true
  43113. },
  43114. ]
  43115. ))
  43116. characterMakers.push(() => makeCharacter(
  43117. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43118. {
  43119. front: {
  43120. height: math.unit(5 + 5/12, "feet"),
  43121. weight: math.unit(170, "lb"),
  43122. name: "Front",
  43123. image: {
  43124. source: "./media/characters/mayso/front.svg",
  43125. extra: 1215/1108,
  43126. bottom: 16/1231
  43127. }
  43128. },
  43129. },
  43130. [
  43131. {
  43132. name: "Normal",
  43133. height: math.unit(5 + 5/12, "feet"),
  43134. default: true
  43135. },
  43136. ]
  43137. ))
  43138. characterMakers.push(() => makeCharacter(
  43139. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43140. {
  43141. front: {
  43142. height: math.unit(4 + 3/12, "feet"),
  43143. weight: math.unit(80, "lb"),
  43144. name: "Front",
  43145. image: {
  43146. source: "./media/characters/hess/front.svg",
  43147. extra: 1200/1123,
  43148. bottom: 16/1216
  43149. }
  43150. },
  43151. },
  43152. [
  43153. {
  43154. name: "Normal",
  43155. height: math.unit(4 + 3/12, "feet"),
  43156. default: true
  43157. },
  43158. ]
  43159. ))
  43160. characterMakers.push(() => makeCharacter(
  43161. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43162. {
  43163. front: {
  43164. height: math.unit(1.9, "meters"),
  43165. name: "Front",
  43166. image: {
  43167. source: "./media/characters/ashgar/front.svg",
  43168. extra: 1177/1146,
  43169. bottom: 99/1276
  43170. }
  43171. },
  43172. back: {
  43173. height: math.unit(1.9, "meters"),
  43174. name: "Back",
  43175. image: {
  43176. source: "./media/characters/ashgar/back.svg",
  43177. extra: 1201/1183,
  43178. bottom: 53/1254
  43179. }
  43180. },
  43181. feral: {
  43182. height: math.unit(1.4, "meters"),
  43183. name: "Feral",
  43184. image: {
  43185. source: "./media/characters/ashgar/feral.svg",
  43186. extra: 370/345,
  43187. bottom: 45/415
  43188. }
  43189. },
  43190. },
  43191. [
  43192. {
  43193. name: "Normal",
  43194. height: math.unit(1.9, "meters"),
  43195. default: true
  43196. },
  43197. ]
  43198. ))
  43199. characterMakers.push(() => makeCharacter(
  43200. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43201. {
  43202. regular: {
  43203. height: math.unit(6, "feet"),
  43204. weight: math.unit(220, "lb"),
  43205. name: "Regular",
  43206. image: {
  43207. source: "./media/characters/phillip/regular.svg",
  43208. extra: 1373/1277,
  43209. bottom: 75/1448
  43210. }
  43211. },
  43212. dressed: {
  43213. height: math.unit(6, "feet"),
  43214. weight: math.unit(220, "lb"),
  43215. name: "Dressed",
  43216. image: {
  43217. source: "./media/characters/phillip/dressed.svg",
  43218. extra: 1373/1277,
  43219. bottom: 75/1448
  43220. }
  43221. },
  43222. paw: {
  43223. height: math.unit(1.44, "feet"),
  43224. name: "Paw",
  43225. image: {
  43226. source: "./media/characters/phillip/paw.svg"
  43227. }
  43228. },
  43229. },
  43230. [
  43231. {
  43232. name: "Normal",
  43233. height: math.unit(6, "feet"),
  43234. default: true
  43235. },
  43236. ]
  43237. ))
  43238. characterMakers.push(() => makeCharacter(
  43239. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43240. {
  43241. side: {
  43242. height: math.unit(42, "feet"),
  43243. name: "Side",
  43244. image: {
  43245. source: "./media/characters/uvula/side.svg",
  43246. extra: 683/586,
  43247. bottom: 60/743
  43248. }
  43249. },
  43250. front: {
  43251. height: math.unit(42, "feet"),
  43252. name: "Front",
  43253. image: {
  43254. source: "./media/characters/uvula/front.svg",
  43255. extra: 705/613,
  43256. bottom: 54/759
  43257. }
  43258. },
  43259. maw: {
  43260. height: math.unit(23.5, "feet"),
  43261. name: "Maw",
  43262. image: {
  43263. source: "./media/characters/uvula/maw.svg"
  43264. }
  43265. },
  43266. },
  43267. [
  43268. {
  43269. name: "Original Size",
  43270. height: math.unit(14, "inches")
  43271. },
  43272. {
  43273. name: "Human Size",
  43274. height: math.unit(6, "feet")
  43275. },
  43276. {
  43277. name: "Big",
  43278. height: math.unit(42, "feet"),
  43279. default: true
  43280. },
  43281. {
  43282. name: "Bigger",
  43283. height: math.unit(100, "feet")
  43284. },
  43285. ]
  43286. ))
  43287. characterMakers.push(() => makeCharacter(
  43288. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43289. {
  43290. front: {
  43291. height: math.unit(5 + 11/12, "feet"),
  43292. name: "Front",
  43293. image: {
  43294. source: "./media/characters/lannah/front.svg",
  43295. extra: 1208/1113,
  43296. bottom: 97/1305
  43297. }
  43298. },
  43299. },
  43300. [
  43301. {
  43302. name: "Normal",
  43303. height: math.unit(5 + 11/12, "feet"),
  43304. default: true
  43305. },
  43306. ]
  43307. ))
  43308. characterMakers.push(() => makeCharacter(
  43309. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43310. {
  43311. front: {
  43312. height: math.unit(6 + 3/12, "feet"),
  43313. weight: math.unit(3.5, "tons"),
  43314. name: "Front",
  43315. image: {
  43316. source: "./media/characters/emberflame/front.svg",
  43317. extra: 1198/672,
  43318. bottom: 82/1280
  43319. }
  43320. },
  43321. side: {
  43322. height: math.unit(6 + 3/12, "feet"),
  43323. weight: math.unit(3.5, "tons"),
  43324. name: "Side",
  43325. image: {
  43326. source: "./media/characters/emberflame/side.svg",
  43327. extra: 938/527,
  43328. bottom: 56/994
  43329. }
  43330. },
  43331. },
  43332. [
  43333. {
  43334. name: "Normal",
  43335. height: math.unit(6 + 3/12, "feet"),
  43336. default: true
  43337. },
  43338. ]
  43339. ))
  43340. characterMakers.push(() => makeCharacter(
  43341. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43342. {
  43343. side: {
  43344. height: math.unit(17.5, "feet"),
  43345. weight: math.unit(35, "tons"),
  43346. name: "Side",
  43347. image: {
  43348. source: "./media/characters/sophie-ambrose/side.svg",
  43349. extra: 1573/1242,
  43350. bottom: 71/1644
  43351. }
  43352. },
  43353. maw: {
  43354. height: math.unit(7.4, "feet"),
  43355. name: "Maw",
  43356. image: {
  43357. source: "./media/characters/sophie-ambrose/maw.svg"
  43358. }
  43359. },
  43360. },
  43361. [
  43362. {
  43363. name: "Normal",
  43364. height: math.unit(17.5, "feet"),
  43365. default: true
  43366. },
  43367. ]
  43368. ))
  43369. characterMakers.push(() => makeCharacter(
  43370. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43371. {
  43372. front: {
  43373. height: math.unit(280, "feet"),
  43374. weight: math.unit(550, "tons"),
  43375. name: "Front",
  43376. image: {
  43377. source: "./media/characters/king-mugi/front.svg",
  43378. extra: 1102/947,
  43379. bottom: 104/1206
  43380. }
  43381. },
  43382. },
  43383. [
  43384. {
  43385. name: "King Mugi",
  43386. height: math.unit(280, "feet"),
  43387. default: true
  43388. },
  43389. ]
  43390. ))
  43391. characterMakers.push(() => makeCharacter(
  43392. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43393. {
  43394. front: {
  43395. height: math.unit(64, "meters"),
  43396. name: "Front",
  43397. image: {
  43398. source: "./media/characters/nova-fox/front.svg",
  43399. extra: 1310/1246,
  43400. bottom: 65/1375
  43401. }
  43402. },
  43403. },
  43404. [
  43405. {
  43406. name: "Macro",
  43407. height: math.unit(64, "meters"),
  43408. default: true
  43409. },
  43410. ]
  43411. ))
  43412. characterMakers.push(() => makeCharacter(
  43413. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43414. {
  43415. front: {
  43416. height: math.unit(6 + 3/12, "feet"),
  43417. weight: math.unit(170, "lb"),
  43418. name: "Front",
  43419. image: {
  43420. source: "./media/characters/sam-bat/front.svg",
  43421. extra: 1601/1411,
  43422. bottom: 125/1726
  43423. }
  43424. },
  43425. back: {
  43426. height: math.unit(6 + 3/12, "feet"),
  43427. weight: math.unit(170, "lb"),
  43428. name: "Back",
  43429. image: {
  43430. source: "./media/characters/sam-bat/back.svg",
  43431. extra: 1577/1405,
  43432. bottom: 58/1635
  43433. }
  43434. },
  43435. },
  43436. [
  43437. {
  43438. name: "Normal",
  43439. height: math.unit(6 + 3/12, "feet"),
  43440. default: true
  43441. },
  43442. ]
  43443. ))
  43444. characterMakers.push(() => makeCharacter(
  43445. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43446. {
  43447. front: {
  43448. height: math.unit(59, "feet"),
  43449. weight: math.unit(40000, "lb"),
  43450. name: "Front",
  43451. image: {
  43452. source: "./media/characters/inari/front.svg",
  43453. extra: 1884/1350,
  43454. bottom: 95/1979
  43455. }
  43456. },
  43457. },
  43458. [
  43459. {
  43460. name: "Gigantamax",
  43461. height: math.unit(59, "feet"),
  43462. default: true
  43463. },
  43464. ]
  43465. ))
  43466. characterMakers.push(() => makeCharacter(
  43467. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43468. {
  43469. front: {
  43470. height: math.unit(5 + 8/12, "feet"),
  43471. name: "Front",
  43472. image: {
  43473. source: "./media/characters/elizabeth/front.svg",
  43474. extra: 1395/1298,
  43475. bottom: 54/1449
  43476. }
  43477. },
  43478. mouth: {
  43479. height: math.unit(1.97, "feet"),
  43480. name: "Mouth",
  43481. image: {
  43482. source: "./media/characters/elizabeth/mouth.svg"
  43483. }
  43484. },
  43485. foot: {
  43486. height: math.unit(1.17, "feet"),
  43487. name: "Foot",
  43488. image: {
  43489. source: "./media/characters/elizabeth/foot.svg"
  43490. }
  43491. },
  43492. },
  43493. [
  43494. {
  43495. name: "Normal",
  43496. height: math.unit(5 + 8/12, "feet"),
  43497. default: true
  43498. },
  43499. {
  43500. name: "Minimacro",
  43501. height: math.unit(18, "feet")
  43502. },
  43503. {
  43504. name: "Macro",
  43505. height: math.unit(180, "feet")
  43506. },
  43507. ]
  43508. ))
  43509. characterMakers.push(() => makeCharacter(
  43510. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43511. {
  43512. front: {
  43513. height: math.unit(5 + 2/12, "feet"),
  43514. name: "Front",
  43515. image: {
  43516. source: "./media/characters/october-gossamer/front.svg",
  43517. extra: 505/454,
  43518. bottom: 7/512
  43519. }
  43520. },
  43521. back: {
  43522. height: math.unit(5 + 2/12, "feet"),
  43523. name: "Back",
  43524. image: {
  43525. source: "./media/characters/october-gossamer/back.svg",
  43526. extra: 501/454,
  43527. bottom: 11/512
  43528. }
  43529. },
  43530. },
  43531. [
  43532. {
  43533. name: "Normal",
  43534. height: math.unit(5 + 2/12, "feet"),
  43535. default: true
  43536. },
  43537. ]
  43538. ))
  43539. characterMakers.push(() => makeCharacter(
  43540. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43541. {
  43542. front: {
  43543. height: math.unit(5, "feet"),
  43544. name: "Front",
  43545. image: {
  43546. source: "./media/characters/epiglottis/front.svg",
  43547. extra: 923/849,
  43548. bottom: 17/940
  43549. }
  43550. },
  43551. },
  43552. [
  43553. {
  43554. name: "Original Size",
  43555. height: math.unit(10, "inches")
  43556. },
  43557. {
  43558. name: "Human Size",
  43559. height: math.unit(5, "feet"),
  43560. default: true
  43561. },
  43562. {
  43563. name: "Big",
  43564. height: math.unit(25, "feet")
  43565. },
  43566. {
  43567. name: "Bigger",
  43568. height: math.unit(50, "feet")
  43569. },
  43570. {
  43571. name: "oh lawd",
  43572. height: math.unit(75, "feet")
  43573. },
  43574. ]
  43575. ))
  43576. characterMakers.push(() => makeCharacter(
  43577. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43578. {
  43579. front: {
  43580. height: math.unit(2 + 4/12, "feet"),
  43581. weight: math.unit(60, "lb"),
  43582. name: "Front",
  43583. image: {
  43584. source: "./media/characters/lerm/front.svg",
  43585. extra: 796/790,
  43586. bottom: 79/875
  43587. }
  43588. },
  43589. },
  43590. [
  43591. {
  43592. name: "Normal",
  43593. height: math.unit(2 + 4/12, "feet"),
  43594. default: true
  43595. },
  43596. ]
  43597. ))
  43598. characterMakers.push(() => makeCharacter(
  43599. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43600. {
  43601. front: {
  43602. height: math.unit(5.5, "feet"),
  43603. weight: math.unit(130, "lb"),
  43604. name: "Front",
  43605. image: {
  43606. source: "./media/characters/xena-nebadon/front.svg",
  43607. extra: 1828/1730,
  43608. bottom: 79/1907
  43609. }
  43610. },
  43611. },
  43612. [
  43613. {
  43614. name: "Tiny Puppy",
  43615. height: math.unit(3, "inches")
  43616. },
  43617. {
  43618. name: "Normal",
  43619. height: math.unit(5.5, "feet"),
  43620. default: true
  43621. },
  43622. {
  43623. name: "Lotta Lady",
  43624. height: math.unit(12, "feet")
  43625. },
  43626. {
  43627. name: "Pretty Big",
  43628. height: math.unit(100, "feet")
  43629. },
  43630. {
  43631. name: "Big",
  43632. height: math.unit(500, "feet")
  43633. },
  43634. {
  43635. name: "Skyscraper Toys",
  43636. height: math.unit(2500, "feet")
  43637. },
  43638. {
  43639. name: "Plane Catcher",
  43640. height: math.unit(8, "miles")
  43641. },
  43642. {
  43643. name: "Planet Toys",
  43644. height: math.unit(15, "earths")
  43645. },
  43646. {
  43647. name: "Stardust",
  43648. height: math.unit(0.25, "galaxies")
  43649. },
  43650. {
  43651. name: "Snacks",
  43652. height: math.unit(70, "universes")
  43653. },
  43654. ]
  43655. ))
  43656. characterMakers.push(() => makeCharacter(
  43657. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43658. {
  43659. front: {
  43660. height: math.unit(1.6, "meters"),
  43661. weight: math.unit(60, "kg"),
  43662. name: "Front",
  43663. image: {
  43664. source: "./media/characters/bounty/front.svg",
  43665. extra: 1426/1308,
  43666. bottom: 15/1441
  43667. }
  43668. },
  43669. back: {
  43670. height: math.unit(1.6, "meters"),
  43671. weight: math.unit(60, "kg"),
  43672. name: "Back",
  43673. image: {
  43674. source: "./media/characters/bounty/back.svg",
  43675. extra: 1417/1307,
  43676. bottom: 8/1425
  43677. }
  43678. },
  43679. },
  43680. [
  43681. {
  43682. name: "Normal",
  43683. height: math.unit(1.6, "meters"),
  43684. default: true
  43685. },
  43686. {
  43687. name: "Macro",
  43688. height: math.unit(300, "meters")
  43689. },
  43690. ]
  43691. ))
  43692. characterMakers.push(() => makeCharacter(
  43693. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43694. {
  43695. front: {
  43696. height: math.unit(2 + 8/12, "feet"),
  43697. weight: math.unit(15, "lb"),
  43698. name: "Front",
  43699. image: {
  43700. source: "./media/characters/mochi/front.svg",
  43701. extra: 1022/852,
  43702. bottom: 435/1457
  43703. }
  43704. },
  43705. back: {
  43706. height: math.unit(2 + 8/12, "feet"),
  43707. weight: math.unit(15, "lb"),
  43708. name: "Back",
  43709. image: {
  43710. source: "./media/characters/mochi/back.svg",
  43711. extra: 1335/1119,
  43712. bottom: 39/1374
  43713. }
  43714. },
  43715. bird: {
  43716. height: math.unit(2 + 8/12, "feet"),
  43717. weight: math.unit(15, "lb"),
  43718. name: "Bird",
  43719. image: {
  43720. source: "./media/characters/mochi/bird.svg",
  43721. extra: 1251/1113,
  43722. bottom: 178/1429
  43723. }
  43724. },
  43725. kaiju: {
  43726. height: math.unit(154, "feet"),
  43727. weight: math.unit(1e7, "lb"),
  43728. name: "Kaiju",
  43729. image: {
  43730. source: "./media/characters/mochi/kaiju.svg",
  43731. extra: 460/324,
  43732. bottom: 40/500
  43733. }
  43734. },
  43735. head: {
  43736. height: math.unit(1.21, "feet"),
  43737. name: "Head",
  43738. image: {
  43739. source: "./media/characters/mochi/head.svg"
  43740. }
  43741. },
  43742. alternateTail: {
  43743. height: math.unit(2 + 8/12, "feet"),
  43744. weight: math.unit(45, "lb"),
  43745. name: "Alternate Tail",
  43746. image: {
  43747. source: "./media/characters/mochi/alternate-tail.svg",
  43748. extra: 139/76,
  43749. bottom: 45/184
  43750. }
  43751. },
  43752. },
  43753. [
  43754. {
  43755. name: "Micro",
  43756. height: math.unit(2, "inches")
  43757. },
  43758. {
  43759. name: "Normal",
  43760. height: math.unit(2 + 8/12, "feet"),
  43761. default: true
  43762. },
  43763. {
  43764. name: "Macro",
  43765. height: math.unit(106, "feet")
  43766. },
  43767. ]
  43768. ))
  43769. characterMakers.push(() => makeCharacter(
  43770. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43771. {
  43772. front: {
  43773. height: math.unit(5.67, "feet"),
  43774. weight: math.unit(135, "lb"),
  43775. name: "Front",
  43776. image: {
  43777. source: "./media/characters/sarel/front.svg",
  43778. extra: 865/788,
  43779. bottom: 97/962
  43780. }
  43781. },
  43782. back: {
  43783. height: math.unit(5.67, "feet"),
  43784. weight: math.unit(135, "lb"),
  43785. name: "Back",
  43786. image: {
  43787. source: "./media/characters/sarel/back.svg",
  43788. extra: 857/777,
  43789. bottom: 32/889
  43790. }
  43791. },
  43792. chozoan: {
  43793. height: math.unit(5.67, "feet"),
  43794. weight: math.unit(135, "lb"),
  43795. name: "Chozoan",
  43796. image: {
  43797. source: "./media/characters/sarel/chozoan.svg",
  43798. extra: 865/788,
  43799. bottom: 97/962
  43800. }
  43801. },
  43802. current: {
  43803. height: math.unit(5.67, "feet"),
  43804. weight: math.unit(135, "lb"),
  43805. name: "Current",
  43806. image: {
  43807. source: "./media/characters/sarel/current.svg",
  43808. extra: 865/788,
  43809. bottom: 97/962
  43810. }
  43811. },
  43812. head: {
  43813. height: math.unit(1.77, "feet"),
  43814. name: "Head",
  43815. image: {
  43816. source: "./media/characters/sarel/head.svg"
  43817. }
  43818. },
  43819. claws: {
  43820. height: math.unit(1.8, "feet"),
  43821. name: "Claws",
  43822. image: {
  43823. source: "./media/characters/sarel/claws.svg"
  43824. }
  43825. },
  43826. clawsAlt: {
  43827. height: math.unit(1.8, "feet"),
  43828. name: "Claws-alt",
  43829. image: {
  43830. source: "./media/characters/sarel/claws-alt.svg"
  43831. }
  43832. },
  43833. },
  43834. [
  43835. {
  43836. name: "Normal",
  43837. height: math.unit(5.67, "feet"),
  43838. default: true
  43839. },
  43840. ]
  43841. ))
  43842. characterMakers.push(() => makeCharacter(
  43843. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43844. {
  43845. front: {
  43846. height: math.unit(5500, "feet"),
  43847. name: "Front",
  43848. image: {
  43849. source: "./media/characters/alyonia/front.svg",
  43850. extra: 1200/1135,
  43851. bottom: 29/1229
  43852. }
  43853. },
  43854. back: {
  43855. height: math.unit(5500, "feet"),
  43856. name: "Back",
  43857. image: {
  43858. source: "./media/characters/alyonia/back.svg",
  43859. extra: 1205/1138,
  43860. bottom: 10/1215
  43861. }
  43862. },
  43863. },
  43864. [
  43865. {
  43866. name: "Small",
  43867. height: math.unit(10, "feet")
  43868. },
  43869. {
  43870. name: "Macro",
  43871. height: math.unit(500, "feet")
  43872. },
  43873. {
  43874. name: "Mega Macro",
  43875. height: math.unit(5500, "feet"),
  43876. default: true
  43877. },
  43878. {
  43879. name: "Mega Macro+",
  43880. height: math.unit(500000, "feet")
  43881. },
  43882. {
  43883. name: "Giga Macro",
  43884. height: math.unit(3000, "miles")
  43885. },
  43886. {
  43887. name: "Tera Macro",
  43888. height: math.unit(2.8e6, "miles")
  43889. },
  43890. {
  43891. name: "Galactic",
  43892. height: math.unit(120000, "lightyears")
  43893. },
  43894. ]
  43895. ))
  43896. characterMakers.push(() => makeCharacter(
  43897. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43898. {
  43899. werewolf: {
  43900. height: math.unit(8, "feet"),
  43901. weight: math.unit(425, "lb"),
  43902. name: "Werewolf",
  43903. image: {
  43904. source: "./media/characters/autumn/werewolf.svg",
  43905. extra: 2154/2031,
  43906. bottom: 160/2314
  43907. }
  43908. },
  43909. human: {
  43910. height: math.unit(5 + 8/12, "feet"),
  43911. weight: math.unit(150, "lb"),
  43912. name: "Human",
  43913. image: {
  43914. source: "./media/characters/autumn/human.svg",
  43915. extra: 1200/1149,
  43916. bottom: 30/1230
  43917. }
  43918. },
  43919. },
  43920. [
  43921. {
  43922. name: "Normal",
  43923. height: math.unit(8, "feet"),
  43924. default: true
  43925. },
  43926. ]
  43927. ))
  43928. characterMakers.push(() => makeCharacter(
  43929. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43930. {
  43931. front: {
  43932. height: math.unit(8 + 5/12, "feet"),
  43933. weight: math.unit(825, "lb"),
  43934. name: "Front",
  43935. image: {
  43936. source: "./media/characters/cobalt-charizard/front.svg",
  43937. extra: 1268/1155,
  43938. bottom: 122/1390
  43939. }
  43940. },
  43941. side: {
  43942. height: math.unit(8 + 5/12, "feet"),
  43943. weight: math.unit(825, "lb"),
  43944. name: "Side",
  43945. image: {
  43946. source: "./media/characters/cobalt-charizard/side.svg",
  43947. extra: 1348/1257,
  43948. bottom: 58/1406
  43949. }
  43950. },
  43951. gMax: {
  43952. height: math.unit(134 + 11/12, "feet"),
  43953. name: "G-Max",
  43954. image: {
  43955. source: "./media/characters/cobalt-charizard/g-max.svg",
  43956. extra: 1835/1541,
  43957. bottom: 151/1986
  43958. }
  43959. },
  43960. },
  43961. [
  43962. {
  43963. name: "Normal",
  43964. height: math.unit(8 + 5/12, "feet"),
  43965. default: true
  43966. },
  43967. ]
  43968. ))
  43969. characterMakers.push(() => makeCharacter(
  43970. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43971. {
  43972. front: {
  43973. height: math.unit(6 + 3/12, "feet"),
  43974. weight: math.unit(210, "lb"),
  43975. name: "Front",
  43976. image: {
  43977. source: "./media/characters/stella/front.svg",
  43978. extra: 3549/3335,
  43979. bottom: 51/3600
  43980. }
  43981. },
  43982. },
  43983. [
  43984. {
  43985. name: "Normal",
  43986. height: math.unit(6 + 3/12, "feet"),
  43987. default: true
  43988. },
  43989. ]
  43990. ))
  43991. characterMakers.push(() => makeCharacter(
  43992. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43993. {
  43994. front: {
  43995. height: math.unit(5, "feet"),
  43996. weight: math.unit(90, "lb"),
  43997. name: "Front",
  43998. image: {
  43999. source: "./media/characters/riley-bishop/front.svg",
  44000. extra: 1450/1428,
  44001. bottom: 152/1602
  44002. }
  44003. },
  44004. },
  44005. [
  44006. {
  44007. name: "Normal",
  44008. height: math.unit(5, "feet"),
  44009. default: true
  44010. },
  44011. ]
  44012. ))
  44013. characterMakers.push(() => makeCharacter(
  44014. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44015. {
  44016. side: {
  44017. height: math.unit(8 + 2/12, "feet"),
  44018. weight: math.unit(500, "kg"),
  44019. name: "Side",
  44020. image: {
  44021. source: "./media/characters/theo-arcanine/side.svg",
  44022. extra: 1342/1074,
  44023. bottom: 111/1453
  44024. }
  44025. },
  44026. },
  44027. [
  44028. {
  44029. name: "Normal",
  44030. height: math.unit(8 + 2/12, "feet"),
  44031. default: true
  44032. },
  44033. ]
  44034. ))
  44035. characterMakers.push(() => makeCharacter(
  44036. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44037. {
  44038. front: {
  44039. height: math.unit(4, "feet"),
  44040. name: "Front",
  44041. image: {
  44042. source: "./media/characters/kali/front.svg",
  44043. extra: 1921/1357,
  44044. bottom: 70/1991
  44045. }
  44046. },
  44047. },
  44048. [
  44049. {
  44050. name: "Normal",
  44051. height: math.unit(4, "feet"),
  44052. default: true
  44053. },
  44054. {
  44055. name: "Macro",
  44056. height: math.unit(32, "meters")
  44057. },
  44058. {
  44059. name: "Macro+",
  44060. height: math.unit(150, "meters")
  44061. },
  44062. {
  44063. name: "Megamacro",
  44064. height: math.unit(7500, "meters")
  44065. },
  44066. {
  44067. name: "Megamacro+",
  44068. height: math.unit(80, "kilometers")
  44069. },
  44070. ]
  44071. ))
  44072. characterMakers.push(() => makeCharacter(
  44073. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44074. {
  44075. side: {
  44076. height: math.unit(5 + 11/12, "feet"),
  44077. weight: math.unit(236, "lb"),
  44078. name: "Side",
  44079. image: {
  44080. source: "./media/characters/gapp/side.svg",
  44081. extra: 775/340,
  44082. bottom: 58/833
  44083. }
  44084. },
  44085. mouth: {
  44086. height: math.unit(2.98, "feet"),
  44087. name: "Mouth",
  44088. image: {
  44089. source: "./media/characters/gapp/mouth.svg"
  44090. }
  44091. },
  44092. },
  44093. [
  44094. {
  44095. name: "Normal",
  44096. height: math.unit(5 + 1/12, "feet"),
  44097. default: true
  44098. },
  44099. ]
  44100. ))
  44101. characterMakers.push(() => makeCharacter(
  44102. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44103. {
  44104. front: {
  44105. height: math.unit(6, "feet"),
  44106. name: "Front",
  44107. image: {
  44108. source: "./media/characters/persephone/front.svg",
  44109. extra: 1895/1717,
  44110. bottom: 96/1991
  44111. }
  44112. },
  44113. back: {
  44114. height: math.unit(6, "feet"),
  44115. name: "Back",
  44116. image: {
  44117. source: "./media/characters/persephone/back.svg",
  44118. extra: 1868/1679,
  44119. bottom: 26/1894
  44120. }
  44121. },
  44122. casual: {
  44123. height: math.unit(6, "feet"),
  44124. name: "Casual",
  44125. image: {
  44126. source: "./media/characters/persephone/casual.svg",
  44127. extra: 1713/1541,
  44128. bottom: 76/1789
  44129. }
  44130. },
  44131. },
  44132. [
  44133. {
  44134. name: "Human Size",
  44135. height: math.unit(6, "feet")
  44136. },
  44137. {
  44138. name: "Big Steppy",
  44139. height: math.unit(600, "meters"),
  44140. default: true
  44141. },
  44142. {
  44143. name: "Galaxy Brain",
  44144. height: math.unit(1, "zettameter")
  44145. },
  44146. ]
  44147. ))
  44148. characterMakers.push(() => makeCharacter(
  44149. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44150. {
  44151. front: {
  44152. height: math.unit(1.85, "meters"),
  44153. name: "Front",
  44154. image: {
  44155. source: "./media/characters/riley-foxthing/front.svg",
  44156. extra: 1495/1354,
  44157. bottom: 122/1617
  44158. }
  44159. },
  44160. frontAlt: {
  44161. height: math.unit(1.85, "meters"),
  44162. name: "Front (Alt)",
  44163. image: {
  44164. source: "./media/characters/riley-foxthing/front-alt.svg",
  44165. extra: 1572/1389,
  44166. bottom: 116/1688
  44167. }
  44168. },
  44169. },
  44170. [
  44171. {
  44172. name: "Normal Sized",
  44173. height: math.unit(1.85, "meters"),
  44174. default: true
  44175. },
  44176. {
  44177. name: "Quite Sizable",
  44178. height: math.unit(5, "meters")
  44179. },
  44180. {
  44181. name: "Rather Large",
  44182. height: math.unit(20, "meters")
  44183. },
  44184. {
  44185. name: "Macro",
  44186. height: math.unit(450, "meters")
  44187. },
  44188. {
  44189. name: "Giga",
  44190. height: math.unit(5, "km")
  44191. },
  44192. ]
  44193. ))
  44194. characterMakers.push(() => makeCharacter(
  44195. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44196. {
  44197. front: {
  44198. height: math.unit(6, "feet"),
  44199. weight: math.unit(200, "lb"),
  44200. name: "Front",
  44201. image: {
  44202. source: "./media/characters/blizzard/front.svg",
  44203. extra: 1136/990,
  44204. bottom: 136/1272
  44205. }
  44206. },
  44207. back: {
  44208. height: math.unit(6, "feet"),
  44209. weight: math.unit(200, "lb"),
  44210. name: "Back",
  44211. image: {
  44212. source: "./media/characters/blizzard/back.svg",
  44213. extra: 1175/1034,
  44214. bottom: 97/1272
  44215. }
  44216. },
  44217. sitting: {
  44218. height: math.unit(3.725, "feet"),
  44219. weight: math.unit(200, "lb"),
  44220. name: "Sitting",
  44221. image: {
  44222. source: "./media/characters/blizzard/sitting.svg",
  44223. extra: 581/485,
  44224. bottom: 90/671
  44225. }
  44226. },
  44227. frontWizard: {
  44228. height: math.unit(7.9, "feet"),
  44229. weight: math.unit(200, "lb"),
  44230. name: "Front (Wizard)",
  44231. image: {
  44232. source: "./media/characters/blizzard/front-wizard.svg"
  44233. }
  44234. },
  44235. backWizard: {
  44236. height: math.unit(7.9, "feet"),
  44237. weight: math.unit(200, "lb"),
  44238. name: "Back (Wizard)",
  44239. image: {
  44240. source: "./media/characters/blizzard/back-wizard.svg"
  44241. }
  44242. },
  44243. frontNsfw: {
  44244. height: math.unit(6, "feet"),
  44245. weight: math.unit(200, "lb"),
  44246. name: "Front (NSFW)",
  44247. image: {
  44248. source: "./media/characters/blizzard/front-nsfw.svg",
  44249. extra: 1136/990,
  44250. bottom: 136/1272
  44251. }
  44252. },
  44253. backNsfw: {
  44254. height: math.unit(6, "feet"),
  44255. weight: math.unit(200, "lb"),
  44256. name: "Back (NSFW)",
  44257. image: {
  44258. source: "./media/characters/blizzard/back-nsfw.svg",
  44259. extra: 1175/1034,
  44260. bottom: 97/1272
  44261. }
  44262. },
  44263. sittingNsfw: {
  44264. height: math.unit(3.725, "feet"),
  44265. weight: math.unit(200, "lb"),
  44266. name: "Sitting (NSFW)",
  44267. image: {
  44268. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44269. extra: 581/485,
  44270. bottom: 90/671
  44271. }
  44272. },
  44273. wizardFrontNsfw: {
  44274. height: math.unit(7.9, "feet"),
  44275. weight: math.unit(200, "lb"),
  44276. name: "Wizard (Front, NSFW)",
  44277. image: {
  44278. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44279. }
  44280. },
  44281. },
  44282. [
  44283. {
  44284. name: "Normal",
  44285. height: math.unit(6, "feet"),
  44286. default: true
  44287. },
  44288. ]
  44289. ))
  44290. characterMakers.push(() => makeCharacter(
  44291. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44292. {
  44293. front: {
  44294. height: math.unit(5 + 2/12, "feet"),
  44295. name: "Front",
  44296. image: {
  44297. source: "./media/characters/lumi/front.svg",
  44298. extra: 1328/1268,
  44299. bottom: 103/1431
  44300. }
  44301. },
  44302. back: {
  44303. height: math.unit(5 + 2/12, "feet"),
  44304. name: "Back",
  44305. image: {
  44306. source: "./media/characters/lumi/back.svg",
  44307. extra: 1381/1327,
  44308. bottom: 43/1424
  44309. }
  44310. },
  44311. },
  44312. [
  44313. {
  44314. name: "Normal",
  44315. height: math.unit(5 + 2/12, "feet"),
  44316. default: true
  44317. },
  44318. ]
  44319. ))
  44320. characterMakers.push(() => makeCharacter(
  44321. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44322. {
  44323. front: {
  44324. height: math.unit(5 + 9/12, "feet"),
  44325. name: "Front",
  44326. image: {
  44327. source: "./media/characters/aliya-cotton/front.svg",
  44328. extra: 577/564,
  44329. bottom: 29/606
  44330. }
  44331. },
  44332. },
  44333. [
  44334. {
  44335. name: "Normal",
  44336. height: math.unit(5 + 9/12, "feet"),
  44337. default: true
  44338. },
  44339. ]
  44340. ))
  44341. characterMakers.push(() => makeCharacter(
  44342. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44343. {
  44344. front: {
  44345. height: math.unit(2.7, "meters"),
  44346. weight: math.unit(25000, "lb"),
  44347. name: "Front",
  44348. image: {
  44349. source: "./media/characters/noah-luxray/front.svg",
  44350. extra: 1644/825,
  44351. bottom: 339/1983
  44352. }
  44353. },
  44354. side: {
  44355. height: math.unit(2.97, "meters"),
  44356. weight: math.unit(25000, "lb"),
  44357. name: "Side",
  44358. image: {
  44359. source: "./media/characters/noah-luxray/side.svg",
  44360. extra: 1319/650,
  44361. bottom: 163/1482
  44362. }
  44363. },
  44364. dick: {
  44365. height: math.unit(7.4, "feet"),
  44366. weight: math.unit(2500, "lb"),
  44367. name: "Dick",
  44368. image: {
  44369. source: "./media/characters/noah-luxray/dick.svg"
  44370. }
  44371. },
  44372. dickAlt: {
  44373. height: math.unit(10.83, "feet"),
  44374. weight: math.unit(2500, "lb"),
  44375. name: "Dick-alt",
  44376. image: {
  44377. source: "./media/characters/noah-luxray/dick-alt.svg"
  44378. }
  44379. },
  44380. },
  44381. [
  44382. {
  44383. name: "BIG",
  44384. height: math.unit(2.7, "meters"),
  44385. default: true
  44386. },
  44387. ]
  44388. ))
  44389. characterMakers.push(() => makeCharacter(
  44390. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44391. {
  44392. standing: {
  44393. height: math.unit(183, "cm"),
  44394. weight: math.unit(68, "kg"),
  44395. name: "Standing",
  44396. image: {
  44397. source: "./media/characters/arion/standing.svg",
  44398. extra: 1869/1807,
  44399. bottom: 93/1962
  44400. }
  44401. },
  44402. reclining: {
  44403. height: math.unit(70.5, "cm"),
  44404. weight: math.unit(68, "lb"),
  44405. name: "Reclining",
  44406. image: {
  44407. source: "./media/characters/arion/reclining.svg",
  44408. extra: 937/870,
  44409. bottom: 63/1000
  44410. }
  44411. },
  44412. },
  44413. [
  44414. {
  44415. name: "Colossus Size, Low",
  44416. height: math.unit(33, "meters"),
  44417. default: true
  44418. },
  44419. {
  44420. name: "Colossus Size, Mid",
  44421. height: math.unit(52, "meters")
  44422. },
  44423. {
  44424. name: "Colossus Size, High",
  44425. height: math.unit(60, "meters")
  44426. },
  44427. {
  44428. name: "Titan Size, Low",
  44429. height: math.unit(91, "meters"),
  44430. },
  44431. {
  44432. name: "Titan Size, Mid",
  44433. height: math.unit(122, "meters")
  44434. },
  44435. {
  44436. name: "Titan Size, High",
  44437. height: math.unit(162, "meters")
  44438. },
  44439. ]
  44440. ))
  44441. characterMakers.push(() => makeCharacter(
  44442. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44443. {
  44444. front: {
  44445. height: math.unit(53, "meters"),
  44446. name: "Front",
  44447. image: {
  44448. source: "./media/characters/stellar-marbey/front.svg",
  44449. extra: 1913/1805,
  44450. bottom: 92/2005
  44451. }
  44452. },
  44453. back: {
  44454. height: math.unit(53, "meters"),
  44455. name: "Back",
  44456. image: {
  44457. source: "./media/characters/stellar-marbey/back.svg",
  44458. extra: 1960/1851,
  44459. bottom: 28/1988
  44460. }
  44461. },
  44462. mouth: {
  44463. height: math.unit(3.5, "meters"),
  44464. name: "Mouth",
  44465. image: {
  44466. source: "./media/characters/stellar-marbey/mouth.svg"
  44467. }
  44468. },
  44469. },
  44470. [
  44471. {
  44472. name: "Macro",
  44473. height: math.unit(53, "meters"),
  44474. default: true
  44475. },
  44476. ]
  44477. ))
  44478. characterMakers.push(() => makeCharacter(
  44479. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44480. {
  44481. front: {
  44482. height: math.unit(8 + 1/12, "feet"),
  44483. weight: math.unit(233, "lb"),
  44484. name: "Front",
  44485. image: {
  44486. source: "./media/characters/matsu/front.svg",
  44487. extra: 832/772,
  44488. bottom: 40/872
  44489. }
  44490. },
  44491. back: {
  44492. height: math.unit(8 + 1/12, "feet"),
  44493. weight: math.unit(233, "lb"),
  44494. name: "Back",
  44495. image: {
  44496. source: "./media/characters/matsu/back.svg",
  44497. extra: 839/780,
  44498. bottom: 47/886
  44499. }
  44500. },
  44501. },
  44502. [
  44503. {
  44504. name: "Normal",
  44505. height: math.unit(8 + 1/12, "feet"),
  44506. default: true
  44507. },
  44508. ]
  44509. ))
  44510. characterMakers.push(() => makeCharacter(
  44511. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44512. {
  44513. front: {
  44514. height: math.unit(4, "feet"),
  44515. weight: math.unit(148, "lb"),
  44516. name: "Front",
  44517. image: {
  44518. source: "./media/characters/thiz/front.svg",
  44519. extra: 1913/1748,
  44520. bottom: 62/1975
  44521. }
  44522. },
  44523. },
  44524. [
  44525. {
  44526. name: "Normal",
  44527. height: math.unit(4, "feet"),
  44528. default: true
  44529. },
  44530. ]
  44531. ))
  44532. characterMakers.push(() => makeCharacter(
  44533. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44534. {
  44535. front: {
  44536. height: math.unit(7 + 6/12, "feet"),
  44537. weight: math.unit(267, "lb"),
  44538. name: "Front",
  44539. image: {
  44540. source: "./media/characters/marcel/front.svg",
  44541. extra: 1221/1096,
  44542. bottom: 76/1297
  44543. }
  44544. },
  44545. },
  44546. [
  44547. {
  44548. name: "Normal",
  44549. height: math.unit(7 + 6/12, "feet"),
  44550. default: true
  44551. },
  44552. ]
  44553. ))
  44554. characterMakers.push(() => makeCharacter(
  44555. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44556. {
  44557. side: {
  44558. height: math.unit(42, "meters"),
  44559. name: "Side",
  44560. image: {
  44561. source: "./media/characters/flake/side.svg",
  44562. extra: 1525/1306,
  44563. bottom: 209/1734
  44564. }
  44565. },
  44566. },
  44567. [
  44568. {
  44569. name: "Normal",
  44570. height: math.unit(42, "meters"),
  44571. default: true
  44572. },
  44573. ]
  44574. ))
  44575. characterMakers.push(() => makeCharacter(
  44576. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44577. {
  44578. dressed: {
  44579. height: math.unit(6 + 4/12, "feet"),
  44580. weight: math.unit(520, "lb"),
  44581. name: "Dressed",
  44582. image: {
  44583. source: "./media/characters/someonne/dressed.svg",
  44584. extra: 1020/1010,
  44585. bottom: 178/1198
  44586. }
  44587. },
  44588. undressed: {
  44589. height: math.unit(6 + 4/12, "feet"),
  44590. weight: math.unit(520, "lb"),
  44591. name: "Undressed",
  44592. image: {
  44593. source: "./media/characters/someonne/undressed.svg",
  44594. extra: 1019/1014,
  44595. bottom: 169/1188
  44596. }
  44597. },
  44598. },
  44599. [
  44600. {
  44601. name: "Normal",
  44602. height: math.unit(6 + 4/12, "feet"),
  44603. default: true
  44604. },
  44605. ]
  44606. ))
  44607. characterMakers.push(() => makeCharacter(
  44608. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44609. {
  44610. front: {
  44611. height: math.unit(3, "feet"),
  44612. weight: math.unit(30, "lb"),
  44613. name: "Front",
  44614. image: {
  44615. source: "./media/characters/till/front.svg",
  44616. extra: 892/823,
  44617. bottom: 55/947
  44618. }
  44619. },
  44620. },
  44621. [
  44622. {
  44623. name: "Normal",
  44624. height: math.unit(3, "feet"),
  44625. default: true
  44626. },
  44627. ]
  44628. ))
  44629. characterMakers.push(() => makeCharacter(
  44630. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44631. {
  44632. front: {
  44633. height: math.unit(9 + 8/12, "feet"),
  44634. weight: math.unit(800, "lb"),
  44635. name: "Front",
  44636. image: {
  44637. source: "./media/characters/sydney-heki/front.svg",
  44638. extra: 1360/1300,
  44639. bottom: 22/1382
  44640. }
  44641. },
  44642. back: {
  44643. height: math.unit(9 + 8/12, "feet"),
  44644. weight: math.unit(800, "lb"),
  44645. name: "Back",
  44646. image: {
  44647. source: "./media/characters/sydney-heki/back.svg",
  44648. extra: 1356/1293,
  44649. bottom: 12/1368
  44650. }
  44651. },
  44652. frontDressed: {
  44653. height: math.unit(9 + 8/12, "feet"),
  44654. weight: math.unit(800, "lb"),
  44655. name: "Front-dressed",
  44656. image: {
  44657. source: "./media/characters/sydney-heki/front-dressed.svg",
  44658. extra: 1360/1300,
  44659. bottom: 22/1382
  44660. }
  44661. },
  44662. },
  44663. [
  44664. {
  44665. name: "Normal",
  44666. height: math.unit(9 + 8/12, "feet"),
  44667. default: true
  44668. },
  44669. {
  44670. name: "Macro",
  44671. height: math.unit(500, "feet")
  44672. },
  44673. {
  44674. name: "Megamacro",
  44675. height: math.unit(3.6, "miles")
  44676. },
  44677. ]
  44678. ))
  44679. characterMakers.push(() => makeCharacter(
  44680. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44681. {
  44682. front: {
  44683. height: math.unit(200, "cm"),
  44684. weight: math.unit(250, "lb"),
  44685. name: "Front",
  44686. image: {
  44687. source: "./media/characters/fowler-karlsson/front.svg",
  44688. extra: 897/845,
  44689. bottom: 123/1020
  44690. }
  44691. },
  44692. back: {
  44693. height: math.unit(200, "cm"),
  44694. weight: math.unit(250, "lb"),
  44695. name: "Back",
  44696. image: {
  44697. source: "./media/characters/fowler-karlsson/back.svg",
  44698. extra: 999/944,
  44699. bottom: 26/1025
  44700. }
  44701. },
  44702. dick: {
  44703. height: math.unit(1.92, "feet"),
  44704. weight: math.unit(150, "lb"),
  44705. name: "Dick",
  44706. image: {
  44707. source: "./media/characters/fowler-karlsson/dick.svg"
  44708. }
  44709. },
  44710. },
  44711. [
  44712. {
  44713. name: "Normal",
  44714. height: math.unit(200, "cm"),
  44715. default: true
  44716. },
  44717. {
  44718. name: "Smaller Macro",
  44719. height: math.unit(90, "m")
  44720. },
  44721. {
  44722. name: "Macro",
  44723. height: math.unit(150, "m")
  44724. },
  44725. {
  44726. name: "Bigger Macro",
  44727. height: math.unit(300, "m")
  44728. },
  44729. ]
  44730. ))
  44731. characterMakers.push(() => makeCharacter(
  44732. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44733. {
  44734. side: {
  44735. height: math.unit(8 + 2/12, "feet"),
  44736. weight: math.unit(1, "tonne"),
  44737. name: "Side",
  44738. image: {
  44739. source: "./media/characters/rylide/side.svg",
  44740. extra: 1318/1034,
  44741. bottom: 106/1424
  44742. }
  44743. },
  44744. sitting: {
  44745. height: math.unit(303, "cm"),
  44746. weight: math.unit(1, "tonne"),
  44747. name: "Sitting",
  44748. image: {
  44749. source: "./media/characters/rylide/sitting.svg",
  44750. extra: 1303/1103,
  44751. bottom: 36/1339
  44752. }
  44753. },
  44754. },
  44755. [
  44756. {
  44757. name: "Normal",
  44758. height: math.unit(8 + 2/12, "feet"),
  44759. default: true
  44760. },
  44761. ]
  44762. ))
  44763. characterMakers.push(() => makeCharacter(
  44764. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44765. {
  44766. front: {
  44767. height: math.unit(5 + 10/12, "feet"),
  44768. weight: math.unit(160, "lb"),
  44769. name: "Front",
  44770. image: {
  44771. source: "./media/characters/pudask/front.svg",
  44772. extra: 1616/1590,
  44773. bottom: 161/1777
  44774. }
  44775. },
  44776. },
  44777. [
  44778. {
  44779. name: "Ferret Height",
  44780. height: math.unit(2 + 5/12, "feet")
  44781. },
  44782. {
  44783. name: "Canon Height",
  44784. height: math.unit(5 + 10/12, "feet"),
  44785. default: true
  44786. },
  44787. ]
  44788. ))
  44789. characterMakers.push(() => makeCharacter(
  44790. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44791. {
  44792. front: {
  44793. height: math.unit(3 + 6/12, "feet"),
  44794. weight: math.unit(60, "lb"),
  44795. name: "Front",
  44796. image: {
  44797. source: "./media/characters/ramita/front.svg",
  44798. extra: 1402/1232,
  44799. bottom: 62/1464
  44800. }
  44801. },
  44802. dressed: {
  44803. height: math.unit(3 + 6/12, "feet"),
  44804. weight: math.unit(60, "lb"),
  44805. name: "Dressed",
  44806. image: {
  44807. source: "./media/characters/ramita/dressed.svg",
  44808. extra: 1534/1249,
  44809. bottom: 50/1584
  44810. }
  44811. },
  44812. },
  44813. [
  44814. {
  44815. name: "Normal",
  44816. height: math.unit(3 + 6/12, "feet"),
  44817. default: true
  44818. },
  44819. ]
  44820. ))
  44821. characterMakers.push(() => makeCharacter(
  44822. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44823. {
  44824. front: {
  44825. height: math.unit(8, "feet"),
  44826. name: "Front",
  44827. image: {
  44828. source: "./media/characters/ark/front.svg",
  44829. extra: 772/693,
  44830. bottom: 45/817
  44831. }
  44832. },
  44833. },
  44834. [
  44835. {
  44836. name: "Normal",
  44837. height: math.unit(8, "feet"),
  44838. default: true
  44839. },
  44840. ]
  44841. ))
  44842. characterMakers.push(() => makeCharacter(
  44843. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44844. {
  44845. front: {
  44846. height: math.unit(6, "feet"),
  44847. weight: math.unit(250, "lb"),
  44848. volume: math.unit(5/8, "gallons"),
  44849. name: "Front",
  44850. image: {
  44851. source: "./media/characters/ludwig-horn/front.svg",
  44852. extra: 1782/1635,
  44853. bottom: 96/1878
  44854. }
  44855. },
  44856. back: {
  44857. height: math.unit(6, "feet"),
  44858. weight: math.unit(250, "lb"),
  44859. volume: math.unit(5/8, "gallons"),
  44860. name: "Back",
  44861. image: {
  44862. source: "./media/characters/ludwig-horn/back.svg",
  44863. extra: 1874/1729,
  44864. bottom: 27/1901
  44865. }
  44866. },
  44867. dick: {
  44868. height: math.unit(1.05, "feet"),
  44869. weight: math.unit(15, "lb"),
  44870. volume: math.unit(5/8, "gallons"),
  44871. name: "Dick",
  44872. image: {
  44873. source: "./media/characters/ludwig-horn/dick.svg"
  44874. }
  44875. },
  44876. },
  44877. [
  44878. {
  44879. name: "Small",
  44880. height: math.unit(6, "feet")
  44881. },
  44882. {
  44883. name: "Typical",
  44884. height: math.unit(12, "feet"),
  44885. default: true
  44886. },
  44887. {
  44888. name: "Building",
  44889. height: math.unit(80, "feet")
  44890. },
  44891. {
  44892. name: "Town",
  44893. height: math.unit(800, "feet")
  44894. },
  44895. {
  44896. name: "Kingdom",
  44897. height: math.unit(80000, "feet")
  44898. },
  44899. {
  44900. name: "Planet",
  44901. height: math.unit(8000000, "feet")
  44902. },
  44903. {
  44904. name: "Universe",
  44905. height: math.unit(8000000000, "feet")
  44906. },
  44907. {
  44908. name: "Transcended",
  44909. height: math.unit(8e27, "feet")
  44910. },
  44911. ]
  44912. ))
  44913. characterMakers.push(() => makeCharacter(
  44914. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44915. {
  44916. front: {
  44917. height: math.unit(5, "feet"),
  44918. weight: math.unit(50, "kg"),
  44919. name: "Front",
  44920. image: {
  44921. source: "./media/characters/biot-avery/front.svg",
  44922. extra: 1295/1232,
  44923. bottom: 86/1381
  44924. }
  44925. },
  44926. },
  44927. [
  44928. {
  44929. name: "Normal",
  44930. height: math.unit(5, "feet"),
  44931. default: true
  44932. },
  44933. ]
  44934. ))
  44935. characterMakers.push(() => makeCharacter(
  44936. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44937. {
  44938. front: {
  44939. height: math.unit(6, "feet"),
  44940. name: "Front",
  44941. image: {
  44942. source: "./media/characters/kitsune-kiro/front.svg",
  44943. extra: 1270/1158,
  44944. bottom: 42/1312
  44945. }
  44946. },
  44947. frontAlt: {
  44948. height: math.unit(6, "feet"),
  44949. name: "Front-alt",
  44950. image: {
  44951. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44952. extra: 1130/1081,
  44953. bottom: 36/1166
  44954. }
  44955. },
  44956. },
  44957. [
  44958. {
  44959. name: "Smol",
  44960. height: math.unit(3, "feet")
  44961. },
  44962. {
  44963. name: "Normal",
  44964. height: math.unit(6, "feet"),
  44965. default: true
  44966. },
  44967. ]
  44968. ))
  44969. characterMakers.push(() => makeCharacter(
  44970. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44971. {
  44972. front: {
  44973. height: math.unit(6, "feet"),
  44974. weight: math.unit(125, "lb"),
  44975. name: "Front",
  44976. image: {
  44977. source: "./media/characters/jack-thatcher/front.svg",
  44978. extra: 1474/1370,
  44979. bottom: 26/1500
  44980. }
  44981. },
  44982. back: {
  44983. height: math.unit(6, "feet"),
  44984. weight: math.unit(125, "lb"),
  44985. name: "Back",
  44986. image: {
  44987. source: "./media/characters/jack-thatcher/back.svg",
  44988. extra: 1489/1384,
  44989. bottom: 18/1507
  44990. }
  44991. },
  44992. },
  44993. [
  44994. {
  44995. name: "Normal",
  44996. height: math.unit(6, "feet"),
  44997. default: true
  44998. },
  44999. {
  45000. name: "Macro",
  45001. height: math.unit(75, "feet")
  45002. },
  45003. {
  45004. name: "Macro-er",
  45005. height: math.unit(250, "feet")
  45006. },
  45007. ]
  45008. ))
  45009. characterMakers.push(() => makeCharacter(
  45010. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45011. {
  45012. front: {
  45013. height: math.unit(7, "feet"),
  45014. weight: math.unit(110, "kg"),
  45015. name: "Front",
  45016. image: {
  45017. source: "./media/characters/max-hyper/front.svg",
  45018. extra: 1969/1881,
  45019. bottom: 49/2018
  45020. }
  45021. },
  45022. },
  45023. [
  45024. {
  45025. name: "Normal",
  45026. height: math.unit(7, "feet"),
  45027. default: true
  45028. },
  45029. ]
  45030. ))
  45031. characterMakers.push(() => makeCharacter(
  45032. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45033. {
  45034. front: {
  45035. height: math.unit(5 + 5/12, "feet"),
  45036. weight: math.unit(160, "lb"),
  45037. name: "Front",
  45038. image: {
  45039. source: "./media/characters/spook/front.svg",
  45040. extra: 794/791,
  45041. bottom: 54/848
  45042. }
  45043. },
  45044. back: {
  45045. height: math.unit(5 + 5/12, "feet"),
  45046. weight: math.unit(160, "lb"),
  45047. name: "Back",
  45048. image: {
  45049. source: "./media/characters/spook/back.svg",
  45050. extra: 812/798,
  45051. bottom: 32/844
  45052. }
  45053. },
  45054. },
  45055. [
  45056. {
  45057. name: "Normal",
  45058. height: math.unit(5 + 5/12, "feet"),
  45059. default: true
  45060. },
  45061. ]
  45062. ))
  45063. characterMakers.push(() => makeCharacter(
  45064. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45065. {
  45066. front: {
  45067. height: math.unit(18, "feet"),
  45068. name: "Front",
  45069. image: {
  45070. source: "./media/characters/xeaduulix/front.svg",
  45071. extra: 1380/1166,
  45072. bottom: 110/1490
  45073. }
  45074. },
  45075. back: {
  45076. height: math.unit(18, "feet"),
  45077. name: "Back",
  45078. image: {
  45079. source: "./media/characters/xeaduulix/back.svg",
  45080. extra: 1592/1170,
  45081. bottom: 128/1720
  45082. }
  45083. },
  45084. frontNsfw: {
  45085. height: math.unit(18, "feet"),
  45086. name: "Front (NSFW)",
  45087. image: {
  45088. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45089. extra: 1380/1166,
  45090. bottom: 110/1490
  45091. }
  45092. },
  45093. backNsfw: {
  45094. height: math.unit(18, "feet"),
  45095. name: "Back (NSFW)",
  45096. image: {
  45097. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45098. extra: 1592/1170,
  45099. bottom: 128/1720
  45100. }
  45101. },
  45102. },
  45103. [
  45104. {
  45105. name: "Normal",
  45106. height: math.unit(18, "feet"),
  45107. default: true
  45108. },
  45109. ]
  45110. ))
  45111. characterMakers.push(() => makeCharacter(
  45112. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45113. {
  45114. spreadWings: {
  45115. height: math.unit(20, "feet"),
  45116. name: "Spread Wings",
  45117. image: {
  45118. source: "./media/characters/fledge/spread-wings.svg",
  45119. extra: 693/635,
  45120. bottom: 26/719
  45121. }
  45122. },
  45123. front: {
  45124. height: math.unit(20, "feet"),
  45125. name: "Front",
  45126. image: {
  45127. source: "./media/characters/fledge/front.svg",
  45128. extra: 684/637,
  45129. bottom: 18/702
  45130. }
  45131. },
  45132. frontAlt: {
  45133. height: math.unit(20, "feet"),
  45134. name: "Front (Alt)",
  45135. image: {
  45136. source: "./media/characters/fledge/front-alt.svg",
  45137. extra: 708/664,
  45138. bottom: 13/721
  45139. }
  45140. },
  45141. back: {
  45142. height: math.unit(20, "feet"),
  45143. name: "Back",
  45144. image: {
  45145. source: "./media/characters/fledge/back.svg",
  45146. extra: 718/634,
  45147. bottom: 22/740
  45148. }
  45149. },
  45150. head: {
  45151. height: math.unit(5.55, "feet"),
  45152. name: "Head",
  45153. image: {
  45154. source: "./media/characters/fledge/head.svg"
  45155. }
  45156. },
  45157. headAlt: {
  45158. height: math.unit(5.1, "feet"),
  45159. name: "Head (Alt)",
  45160. image: {
  45161. source: "./media/characters/fledge/head-alt.svg"
  45162. }
  45163. },
  45164. },
  45165. [
  45166. {
  45167. name: "Small",
  45168. height: math.unit(6 + 2/12, "feet")
  45169. },
  45170. {
  45171. name: "Big",
  45172. height: math.unit(20, "feet"),
  45173. default: true
  45174. },
  45175. {
  45176. name: "Giant",
  45177. height: math.unit(100, "feet")
  45178. },
  45179. {
  45180. name: "Macro",
  45181. height: math.unit(200, "feet")
  45182. },
  45183. ]
  45184. ))
  45185. characterMakers.push(() => makeCharacter(
  45186. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45187. {
  45188. front: {
  45189. height: math.unit(1, "meter"),
  45190. name: "Front",
  45191. image: {
  45192. source: "./media/characters/atlas-morenai/front.svg",
  45193. extra: 1275/1043,
  45194. bottom: 19/1294
  45195. }
  45196. },
  45197. back: {
  45198. height: math.unit(1, "meter"),
  45199. name: "Back",
  45200. image: {
  45201. source: "./media/characters/atlas-morenai/back.svg",
  45202. extra: 1141/1001,
  45203. bottom: 25/1166
  45204. }
  45205. },
  45206. },
  45207. [
  45208. {
  45209. name: "Normal",
  45210. height: math.unit(1, "meter"),
  45211. default: true
  45212. },
  45213. {
  45214. name: "Magic-Infused",
  45215. height: math.unit(5, "meters")
  45216. },
  45217. ]
  45218. ))
  45219. characterMakers.push(() => makeCharacter(
  45220. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45221. {
  45222. front: {
  45223. height: math.unit(5, "meters"),
  45224. name: "Front",
  45225. image: {
  45226. source: "./media/characters/cintia/front.svg",
  45227. extra: 1312/1228,
  45228. bottom: 38/1350
  45229. }
  45230. },
  45231. back: {
  45232. height: math.unit(5, "meters"),
  45233. name: "Back",
  45234. image: {
  45235. source: "./media/characters/cintia/back.svg",
  45236. extra: 1260/1166,
  45237. bottom: 98/1358
  45238. }
  45239. },
  45240. frontDick: {
  45241. height: math.unit(5, "meters"),
  45242. name: "Front (Dick)",
  45243. image: {
  45244. source: "./media/characters/cintia/front-dick.svg",
  45245. extra: 1312/1228,
  45246. bottom: 38/1350
  45247. }
  45248. },
  45249. backDick: {
  45250. height: math.unit(5, "meters"),
  45251. name: "Back (Dick)",
  45252. image: {
  45253. source: "./media/characters/cintia/back-dick.svg",
  45254. extra: 1260/1166,
  45255. bottom: 98/1358
  45256. }
  45257. },
  45258. bust: {
  45259. height: math.unit(1.97, "meters"),
  45260. name: "Bust",
  45261. image: {
  45262. source: "./media/characters/cintia/bust.svg",
  45263. extra: 617/565,
  45264. bottom: 0/617
  45265. }
  45266. },
  45267. },
  45268. [
  45269. {
  45270. name: "Normal",
  45271. height: math.unit(5, "meters"),
  45272. default: true
  45273. },
  45274. ]
  45275. ))
  45276. characterMakers.push(() => makeCharacter(
  45277. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45278. {
  45279. side: {
  45280. height: math.unit(100, "feet"),
  45281. name: "Side",
  45282. image: {
  45283. source: "./media/characters/denora/side.svg",
  45284. extra: 875/803,
  45285. bottom: 9/884
  45286. }
  45287. },
  45288. },
  45289. [
  45290. {
  45291. name: "Standard",
  45292. height: math.unit(100, "feet"),
  45293. default: true
  45294. },
  45295. {
  45296. name: "Grand",
  45297. height: math.unit(1000, "feet")
  45298. },
  45299. {
  45300. name: "Conquering",
  45301. height: math.unit(10000, "feet")
  45302. },
  45303. ]
  45304. ))
  45305. characterMakers.push(() => makeCharacter(
  45306. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45307. {
  45308. dressed: {
  45309. height: math.unit(8 + 5/12, "feet"),
  45310. weight: math.unit(700, "lb"),
  45311. name: "Dressed",
  45312. image: {
  45313. source: "./media/characters/kiva/dressed.svg",
  45314. extra: 1102/1055,
  45315. bottom: 60/1162
  45316. }
  45317. },
  45318. nude: {
  45319. height: math.unit(8 + 5/12, "feet"),
  45320. weight: math.unit(700, "lb"),
  45321. name: "Nude",
  45322. image: {
  45323. source: "./media/characters/kiva/nude.svg",
  45324. extra: 1102/1055,
  45325. bottom: 60/1162
  45326. }
  45327. },
  45328. },
  45329. [
  45330. {
  45331. name: "Base Height",
  45332. height: math.unit(8 + 5/12, "feet"),
  45333. default: true
  45334. },
  45335. {
  45336. name: "Macro",
  45337. height: math.unit(100, "feet")
  45338. },
  45339. {
  45340. name: "Max",
  45341. height: math.unit(3280, "feet")
  45342. },
  45343. ]
  45344. ))
  45345. characterMakers.push(() => makeCharacter(
  45346. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45347. {
  45348. front: {
  45349. height: math.unit(6 + 8/12, "feet"),
  45350. weight: math.unit(250, "lb"),
  45351. name: "Front",
  45352. image: {
  45353. source: "./media/characters/ztragon/front.svg",
  45354. extra: 1825/1684,
  45355. bottom: 98/1923
  45356. }
  45357. },
  45358. },
  45359. [
  45360. {
  45361. name: "Normal",
  45362. height: math.unit(6 + 8/12, "feet"),
  45363. default: true
  45364. },
  45365. {
  45366. name: "Macro",
  45367. height: math.unit(80, "feet")
  45368. },
  45369. ]
  45370. ))
  45371. characterMakers.push(() => makeCharacter(
  45372. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45373. {
  45374. front: {
  45375. height: math.unit(10.4, "feet"),
  45376. weight: math.unit(2, "tons"),
  45377. name: "Front",
  45378. image: {
  45379. source: "./media/characters/yesenia/front.svg",
  45380. extra: 1479/1474,
  45381. bottom: 233/1712
  45382. }
  45383. },
  45384. },
  45385. [
  45386. {
  45387. name: "Normal",
  45388. height: math.unit(10.4, "feet"),
  45389. default: true
  45390. },
  45391. ]
  45392. ))
  45393. characterMakers.push(() => makeCharacter(
  45394. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45395. {
  45396. normal: {
  45397. height: math.unit(6 + 1/12, "feet"),
  45398. weight: math.unit(180, "lb"),
  45399. name: "Normal",
  45400. image: {
  45401. source: "./media/characters/leanne-lycheborne/normal.svg",
  45402. extra: 1748/1660,
  45403. bottom: 98/1846
  45404. }
  45405. },
  45406. were: {
  45407. height: math.unit(12, "feet"),
  45408. weight: math.unit(1600, "lb"),
  45409. name: "Were",
  45410. image: {
  45411. source: "./media/characters/leanne-lycheborne/were.svg",
  45412. extra: 1485/1432,
  45413. bottom: 66/1551
  45414. }
  45415. },
  45416. },
  45417. [
  45418. {
  45419. name: "Normal",
  45420. height: math.unit(6 + 1/12, "feet"),
  45421. default: true
  45422. },
  45423. ]
  45424. ))
  45425. characterMakers.push(() => makeCharacter(
  45426. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45427. {
  45428. side: {
  45429. height: math.unit(13, "feet"),
  45430. name: "Side",
  45431. image: {
  45432. source: "./media/characters/kira-tyler/side.svg",
  45433. extra: 693/393,
  45434. bottom: 58/751
  45435. }
  45436. },
  45437. },
  45438. [
  45439. {
  45440. name: "Normal",
  45441. height: math.unit(13, "feet"),
  45442. default: true
  45443. },
  45444. ]
  45445. ))
  45446. characterMakers.push(() => makeCharacter(
  45447. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45448. {
  45449. front: {
  45450. height: math.unit(10.3, "feet"),
  45451. weight: math.unit(150, "lb"),
  45452. name: "Front",
  45453. image: {
  45454. source: "./media/characters/blaze/front.svg",
  45455. extra: 1378/1286,
  45456. bottom: 172/1550
  45457. }
  45458. },
  45459. },
  45460. [
  45461. {
  45462. name: "Normal",
  45463. height: math.unit(10.3, "feet"),
  45464. default: true
  45465. },
  45466. ]
  45467. ))
  45468. characterMakers.push(() => makeCharacter(
  45469. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45470. {
  45471. side: {
  45472. height: math.unit(2, "meters"),
  45473. weight: math.unit(400, "kg"),
  45474. name: "Side",
  45475. image: {
  45476. source: "./media/characters/anu/side.svg",
  45477. extra: 506/394,
  45478. bottom: 18/524
  45479. }
  45480. },
  45481. },
  45482. [
  45483. {
  45484. name: "Humanoid",
  45485. height: math.unit(2, "meters")
  45486. },
  45487. {
  45488. name: "Normal",
  45489. height: math.unit(5, "meters"),
  45490. default: true
  45491. },
  45492. ]
  45493. ))
  45494. characterMakers.push(() => makeCharacter(
  45495. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45496. {
  45497. front: {
  45498. height: math.unit(5 + 5/12, "feet"),
  45499. weight: math.unit(170, "lb"),
  45500. name: "Front",
  45501. image: {
  45502. source: "./media/characters/synx-the-lynx/front.svg",
  45503. extra: 1893/1745,
  45504. bottom: 17/1910
  45505. }
  45506. },
  45507. side: {
  45508. height: math.unit(5 + 5/12, "feet"),
  45509. weight: math.unit(170, "lb"),
  45510. name: "Side",
  45511. image: {
  45512. source: "./media/characters/synx-the-lynx/side.svg",
  45513. extra: 1884/1740,
  45514. bottom: 39/1923
  45515. }
  45516. },
  45517. back: {
  45518. height: math.unit(5 + 5/12, "feet"),
  45519. weight: math.unit(170, "lb"),
  45520. name: "Back",
  45521. image: {
  45522. source: "./media/characters/synx-the-lynx/back.svg",
  45523. extra: 1903/1755,
  45524. bottom: 14/1917
  45525. }
  45526. },
  45527. },
  45528. [
  45529. {
  45530. name: "Normal",
  45531. height: math.unit(5 + 5/12, "feet"),
  45532. default: true
  45533. },
  45534. ]
  45535. ))
  45536. characterMakers.push(() => makeCharacter(
  45537. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45538. {
  45539. back: {
  45540. height: math.unit(15, "feet"),
  45541. name: "Back",
  45542. image: {
  45543. source: "./media/characters/nadezda-fex/back.svg",
  45544. extra: 1695/1481,
  45545. bottom: 25/1720
  45546. }
  45547. },
  45548. },
  45549. [
  45550. {
  45551. name: "Normal",
  45552. height: math.unit(15, "feet"),
  45553. default: true
  45554. },
  45555. {
  45556. name: "Macro",
  45557. height: math.unit(2.5, "miles")
  45558. },
  45559. {
  45560. name: "Goddess",
  45561. height: math.unit(2, "multiverses")
  45562. },
  45563. ]
  45564. ))
  45565. characterMakers.push(() => makeCharacter(
  45566. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45567. {
  45568. front: {
  45569. height: math.unit(216, "cm"),
  45570. name: "Front",
  45571. image: {
  45572. source: "./media/characters/lev/front.svg",
  45573. extra: 1728/1670,
  45574. bottom: 82/1810
  45575. }
  45576. },
  45577. back: {
  45578. height: math.unit(216, "cm"),
  45579. name: "Back",
  45580. image: {
  45581. source: "./media/characters/lev/back.svg",
  45582. extra: 1738/1675,
  45583. bottom: 24/1762
  45584. }
  45585. },
  45586. dressed: {
  45587. height: math.unit(216, "cm"),
  45588. name: "Dressed",
  45589. image: {
  45590. source: "./media/characters/lev/dressed.svg",
  45591. extra: 1397/1351,
  45592. bottom: 73/1470
  45593. }
  45594. },
  45595. head: {
  45596. height: math.unit(0.51, "meter"),
  45597. name: "Head",
  45598. image: {
  45599. source: "./media/characters/lev/head.svg"
  45600. }
  45601. },
  45602. },
  45603. [
  45604. {
  45605. name: "Normal",
  45606. height: math.unit(216, "cm"),
  45607. default: true
  45608. },
  45609. {
  45610. name: "Relatively Macro",
  45611. height: math.unit(80, "meters")
  45612. },
  45613. {
  45614. name: "Megamacro",
  45615. height: math.unit(21600, "meters")
  45616. },
  45617. {
  45618. name: "Megamacro+",
  45619. height: math.unit(64800, "meters")
  45620. },
  45621. ]
  45622. ))
  45623. characterMakers.push(() => makeCharacter(
  45624. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45625. {
  45626. front: {
  45627. height: math.unit(2, "meters"),
  45628. weight: math.unit(80, "kg"),
  45629. name: "Front",
  45630. image: {
  45631. source: "./media/characters/moka/front.svg",
  45632. extra: 1337/1255,
  45633. bottom: 58/1395
  45634. }
  45635. },
  45636. },
  45637. [
  45638. {
  45639. name: "Micro",
  45640. height: math.unit(15, "cm")
  45641. },
  45642. {
  45643. name: "Normal",
  45644. height: math.unit(2, "meters"),
  45645. default: true
  45646. },
  45647. {
  45648. name: "Macro",
  45649. height: math.unit(20, "meters"),
  45650. },
  45651. ]
  45652. ))
  45653. characterMakers.push(() => makeCharacter(
  45654. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45655. {
  45656. front: {
  45657. height: math.unit(9, "feet"),
  45658. weight: math.unit(240, "lb"),
  45659. name: "Front",
  45660. image: {
  45661. source: "./media/characters/kuzco/front.svg",
  45662. extra: 1593/1487,
  45663. bottom: 32/1625
  45664. }
  45665. },
  45666. side: {
  45667. height: math.unit(9, "feet"),
  45668. weight: math.unit(240, "lb"),
  45669. name: "Side",
  45670. image: {
  45671. source: "./media/characters/kuzco/side.svg",
  45672. extra: 1575/1485,
  45673. bottom: 30/1605
  45674. }
  45675. },
  45676. back: {
  45677. height: math.unit(9, "feet"),
  45678. weight: math.unit(240, "lb"),
  45679. name: "Back",
  45680. image: {
  45681. source: "./media/characters/kuzco/back.svg",
  45682. extra: 1603/1514,
  45683. bottom: 14/1617
  45684. }
  45685. },
  45686. },
  45687. [
  45688. {
  45689. name: "Normal",
  45690. height: math.unit(9, "feet"),
  45691. default: true
  45692. },
  45693. ]
  45694. ))
  45695. characterMakers.push(() => makeCharacter(
  45696. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45697. {
  45698. side: {
  45699. height: math.unit(2, "meters"),
  45700. weight: math.unit(300, "kg"),
  45701. name: "Side",
  45702. image: {
  45703. source: "./media/characters/ceruleus/side.svg",
  45704. extra: 1068/974,
  45705. bottom: 126/1194
  45706. }
  45707. },
  45708. },
  45709. [
  45710. {
  45711. name: "Normal",
  45712. height: math.unit(16, "meters"),
  45713. default: true
  45714. },
  45715. ]
  45716. ))
  45717. characterMakers.push(() => makeCharacter(
  45718. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45719. {
  45720. front: {
  45721. height: math.unit(9, "feet"),
  45722. weight: math.unit(500, "kg"),
  45723. name: "Front",
  45724. image: {
  45725. source: "./media/characters/acouya/front.svg",
  45726. extra: 1660/1473,
  45727. bottom: 28/1688
  45728. }
  45729. },
  45730. },
  45731. [
  45732. {
  45733. name: "Normal",
  45734. height: math.unit(9, "feet"),
  45735. default: true
  45736. },
  45737. ]
  45738. ))
  45739. characterMakers.push(() => makeCharacter(
  45740. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45741. {
  45742. front: {
  45743. height: math.unit(5 + 6/12, "feet"),
  45744. weight: math.unit(195, "lb"),
  45745. name: "Front",
  45746. image: {
  45747. source: "./media/characters/vant/front.svg",
  45748. extra: 1396/1320,
  45749. bottom: 20/1416
  45750. }
  45751. },
  45752. back: {
  45753. height: math.unit(5 + 6/12, "feet"),
  45754. weight: math.unit(195, "lb"),
  45755. name: "Back",
  45756. image: {
  45757. source: "./media/characters/vant/back.svg",
  45758. extra: 1396/1320,
  45759. bottom: 20/1416
  45760. }
  45761. },
  45762. maw: {
  45763. height: math.unit(0.75, "feet"),
  45764. name: "Maw",
  45765. image: {
  45766. source: "./media/characters/vant/maw.svg"
  45767. }
  45768. },
  45769. paw: {
  45770. height: math.unit(1.07, "feet"),
  45771. name: "Paw",
  45772. image: {
  45773. source: "./media/characters/vant/paw.svg"
  45774. }
  45775. },
  45776. },
  45777. [
  45778. {
  45779. name: "Micro",
  45780. height: math.unit(0.25, "inches")
  45781. },
  45782. {
  45783. name: "Normal",
  45784. height: math.unit(5 + 6/12, "feet"),
  45785. default: true
  45786. },
  45787. {
  45788. name: "Macro",
  45789. height: math.unit(75, "feet")
  45790. },
  45791. ]
  45792. ))
  45793. characterMakers.push(() => makeCharacter(
  45794. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45795. {
  45796. front: {
  45797. height: math.unit(30, "meters"),
  45798. weight: math.unit(363, "tons"),
  45799. name: "Front",
  45800. image: {
  45801. source: "./media/characters/ahra/front.svg",
  45802. extra: 1914/1814,
  45803. bottom: 46/1960
  45804. }
  45805. },
  45806. },
  45807. [
  45808. {
  45809. name: "Macro",
  45810. height: math.unit(30, "meters"),
  45811. default: true
  45812. },
  45813. ]
  45814. ))
  45815. characterMakers.push(() => makeCharacter(
  45816. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45817. {
  45818. undressed: {
  45819. height: math.unit(2, "m"),
  45820. weight: math.unit(250, "kg"),
  45821. name: "Undressed",
  45822. image: {
  45823. source: "./media/characters/coriander/undressed.svg",
  45824. extra: 1757/1606,
  45825. bottom: 107/1864
  45826. }
  45827. },
  45828. dressed: {
  45829. height: math.unit(2, "m"),
  45830. weight: math.unit(250, "kg"),
  45831. name: "Dressed",
  45832. image: {
  45833. source: "./media/characters/coriander/dressed.svg",
  45834. extra: 1757/1606,
  45835. bottom: 107/1864
  45836. }
  45837. },
  45838. },
  45839. [
  45840. {
  45841. name: "Normal",
  45842. height: math.unit(4, "meters"),
  45843. default: true
  45844. },
  45845. {
  45846. name: "XL",
  45847. height: math.unit(6, "meters")
  45848. },
  45849. {
  45850. name: "XXL",
  45851. height: math.unit(8, "meters")
  45852. },
  45853. ]
  45854. ))
  45855. characterMakers.push(() => makeCharacter(
  45856. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45857. {
  45858. front: {
  45859. height: math.unit(6, "feet"),
  45860. name: "Front",
  45861. image: {
  45862. source: "./media/characters/syrinx/front.svg",
  45863. extra: 1557/1259,
  45864. bottom: 171/1728
  45865. }
  45866. },
  45867. },
  45868. [
  45869. {
  45870. name: "Normal",
  45871. height: math.unit(6 + 3/12, "feet"),
  45872. default: true
  45873. },
  45874. ]
  45875. ))
  45876. characterMakers.push(() => makeCharacter(
  45877. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45878. {
  45879. front: {
  45880. height: math.unit(11 + 6/12, "feet"),
  45881. weight: math.unit(1.5, "tons"),
  45882. name: "Front",
  45883. image: {
  45884. source: "./media/characters/bor/front.svg",
  45885. extra: 1189/1109,
  45886. bottom: 170/1359
  45887. }
  45888. },
  45889. },
  45890. [
  45891. {
  45892. name: "Normal",
  45893. height: math.unit(11 + 6/12, "feet"),
  45894. default: true
  45895. },
  45896. {
  45897. name: "Macro",
  45898. height: math.unit(32 + 9/12, "feet")
  45899. },
  45900. ]
  45901. ))
  45902. characterMakers.push(() => makeCharacter(
  45903. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45904. {
  45905. anthro: {
  45906. height: math.unit(9, "feet"),
  45907. weight: math.unit(2076, "lb"),
  45908. name: "Anthro",
  45909. image: {
  45910. source: "./media/characters/abacus/anthro.svg",
  45911. extra: 1540/1494,
  45912. bottom: 233/1773
  45913. }
  45914. },
  45915. pigeon: {
  45916. height: math.unit(1, "feet"),
  45917. name: "Pigeon",
  45918. image: {
  45919. source: "./media/characters/abacus/pigeon.svg",
  45920. extra: 528/525,
  45921. bottom: 46/574
  45922. }
  45923. },
  45924. },
  45925. [
  45926. {
  45927. name: "Normal",
  45928. height: math.unit(9, "feet"),
  45929. default: true
  45930. },
  45931. ]
  45932. ))
  45933. characterMakers.push(() => makeCharacter(
  45934. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45935. {
  45936. side: {
  45937. height: math.unit(6, "feet"),
  45938. name: "Side",
  45939. image: {
  45940. source: "./media/characters/delkhan/side.svg",
  45941. extra: 1884/1786,
  45942. bottom: 308/2192
  45943. }
  45944. },
  45945. head: {
  45946. height: math.unit(3.38, "feet"),
  45947. name: "Head",
  45948. image: {
  45949. source: "./media/characters/delkhan/head.svg"
  45950. }
  45951. },
  45952. },
  45953. [
  45954. {
  45955. name: "Normal",
  45956. height: math.unit(72, "feet"),
  45957. default: true
  45958. },
  45959. {
  45960. name: "Giant",
  45961. height: math.unit(172, "feet")
  45962. },
  45963. ]
  45964. ))
  45965. characterMakers.push(() => makeCharacter(
  45966. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45967. {
  45968. standing: {
  45969. height: math.unit(6, "feet"),
  45970. name: "Standing",
  45971. image: {
  45972. source: "./media/characters/euchidat/standing.svg",
  45973. extra: 1612/1553,
  45974. bottom: 116/1728
  45975. }
  45976. },
  45977. leaning: {
  45978. height: math.unit(6, "feet"),
  45979. name: "Leaning",
  45980. image: {
  45981. source: "./media/characters/euchidat/leaning.svg",
  45982. extra: 1719/1674,
  45983. bottom: 27/1746
  45984. }
  45985. },
  45986. },
  45987. [
  45988. {
  45989. name: "Normal",
  45990. height: math.unit(175, "feet"),
  45991. default: true
  45992. },
  45993. {
  45994. name: "Megamacro",
  45995. height: math.unit(190, "miles")
  45996. },
  45997. {
  45998. name: "Gigamacro",
  45999. height: math.unit(190000, "miles")
  46000. },
  46001. ]
  46002. ))
  46003. characterMakers.push(() => makeCharacter(
  46004. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46005. {
  46006. front: {
  46007. height: math.unit(6, "feet"),
  46008. weight: math.unit(150, "lb"),
  46009. name: "Front",
  46010. image: {
  46011. source: "./media/characters/rebecca-stack/front.svg",
  46012. extra: 1256/1201,
  46013. bottom: 18/1274
  46014. }
  46015. },
  46016. },
  46017. [
  46018. {
  46019. name: "Normal",
  46020. height: math.unit(5 + 8/12, "feet"),
  46021. default: true
  46022. },
  46023. {
  46024. name: "Demolitionist",
  46025. height: math.unit(200, "feet")
  46026. },
  46027. {
  46028. name: "Out of Control",
  46029. height: math.unit(2, "miles")
  46030. },
  46031. {
  46032. name: "Giga",
  46033. height: math.unit(7200, "miles")
  46034. },
  46035. ]
  46036. ))
  46037. characterMakers.push(() => makeCharacter(
  46038. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46039. {
  46040. front: {
  46041. height: math.unit(6, "feet"),
  46042. weight: math.unit(150, "lb"),
  46043. name: "Front",
  46044. image: {
  46045. source: "./media/characters/jenny-cartwright/front.svg",
  46046. extra: 1384/1376,
  46047. bottom: 58/1442
  46048. }
  46049. },
  46050. },
  46051. [
  46052. {
  46053. name: "Normal",
  46054. height: math.unit(6 + 7/12, "feet"),
  46055. default: true
  46056. },
  46057. {
  46058. name: "Librarian",
  46059. height: math.unit(55, "feet")
  46060. },
  46061. {
  46062. name: "Sightseer",
  46063. height: math.unit(50, "miles")
  46064. },
  46065. {
  46066. name: "Giga",
  46067. height: math.unit(30000, "miles")
  46068. },
  46069. ]
  46070. ))
  46071. characterMakers.push(() => makeCharacter(
  46072. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46073. {
  46074. nude: {
  46075. height: math.unit(8, "feet"),
  46076. weight: math.unit(225, "lb"),
  46077. name: "Nude",
  46078. image: {
  46079. source: "./media/characters/marvy/nude.svg",
  46080. extra: 1900/1683,
  46081. bottom: 89/1989
  46082. }
  46083. },
  46084. dressed: {
  46085. height: math.unit(8, "feet"),
  46086. weight: math.unit(225, "lb"),
  46087. name: "Dressed",
  46088. image: {
  46089. source: "./media/characters/marvy/dressed.svg",
  46090. extra: 1900/1683,
  46091. bottom: 89/1989
  46092. }
  46093. },
  46094. head: {
  46095. height: math.unit(2.85, "feet"),
  46096. name: "Head",
  46097. image: {
  46098. source: "./media/characters/marvy/head.svg"
  46099. }
  46100. },
  46101. },
  46102. [
  46103. {
  46104. name: "Normal",
  46105. height: math.unit(8, "feet"),
  46106. default: true
  46107. },
  46108. ]
  46109. ))
  46110. characterMakers.push(() => makeCharacter(
  46111. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46112. {
  46113. front: {
  46114. height: math.unit(8, "feet"),
  46115. weight: math.unit(250, "lb"),
  46116. name: "Front",
  46117. image: {
  46118. source: "./media/characters/leah/front.svg",
  46119. extra: 1257/1149,
  46120. bottom: 109/1366
  46121. }
  46122. },
  46123. },
  46124. [
  46125. {
  46126. name: "Normal",
  46127. height: math.unit(8, "feet"),
  46128. default: true
  46129. },
  46130. {
  46131. name: "Minimacro",
  46132. height: math.unit(40, "feet")
  46133. },
  46134. {
  46135. name: "Macro",
  46136. height: math.unit(124, "feet")
  46137. },
  46138. {
  46139. name: "Megamacro",
  46140. height: math.unit(850, "feet")
  46141. },
  46142. ]
  46143. ))
  46144. characterMakers.push(() => makeCharacter(
  46145. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46146. {
  46147. side: {
  46148. height: math.unit(13 + 6/12, "feet"),
  46149. weight: math.unit(3200, "lb"),
  46150. name: "Side",
  46151. image: {
  46152. source: "./media/characters/alvir/side.svg",
  46153. extra: 896/589,
  46154. bottom: 26/922
  46155. }
  46156. },
  46157. },
  46158. [
  46159. {
  46160. name: "Normal",
  46161. height: math.unit(13 + 6/12, "feet"),
  46162. default: true
  46163. },
  46164. ]
  46165. ))
  46166. characterMakers.push(() => makeCharacter(
  46167. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46168. {
  46169. front: {
  46170. height: math.unit(5 + 4/12, "feet"),
  46171. weight: math.unit(236, "lb"),
  46172. name: "Front",
  46173. image: {
  46174. source: "./media/characters/zaina-khalil/front.svg",
  46175. extra: 1533/1485,
  46176. bottom: 94/1627
  46177. }
  46178. },
  46179. side: {
  46180. height: math.unit(5 + 4/12, "feet"),
  46181. weight: math.unit(236, "lb"),
  46182. name: "Side",
  46183. image: {
  46184. source: "./media/characters/zaina-khalil/side.svg",
  46185. extra: 1537/1498,
  46186. bottom: 66/1603
  46187. }
  46188. },
  46189. back: {
  46190. height: math.unit(5 + 4/12, "feet"),
  46191. weight: math.unit(236, "lb"),
  46192. name: "Back",
  46193. image: {
  46194. source: "./media/characters/zaina-khalil/back.svg",
  46195. extra: 1546/1494,
  46196. bottom: 89/1635
  46197. }
  46198. },
  46199. },
  46200. [
  46201. {
  46202. name: "Normal",
  46203. height: math.unit(5 + 4/12, "feet"),
  46204. default: true
  46205. },
  46206. ]
  46207. ))
  46208. characterMakers.push(() => makeCharacter(
  46209. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46210. {
  46211. side: {
  46212. height: math.unit(12, "feet"),
  46213. weight: math.unit(4000, "lb"),
  46214. name: "Side",
  46215. image: {
  46216. source: "./media/characters/terry/side.svg",
  46217. extra: 1518/1439,
  46218. bottom: 149/1667
  46219. }
  46220. },
  46221. },
  46222. [
  46223. {
  46224. name: "Normal",
  46225. height: math.unit(12, "feet"),
  46226. default: true
  46227. },
  46228. ]
  46229. ))
  46230. characterMakers.push(() => makeCharacter(
  46231. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46232. {
  46233. front: {
  46234. height: math.unit(12, "feet"),
  46235. weight: math.unit(1500, "lb"),
  46236. name: "Front",
  46237. image: {
  46238. source: "./media/characters/kahea/front.svg",
  46239. extra: 1722/1617,
  46240. bottom: 179/1901
  46241. }
  46242. },
  46243. },
  46244. [
  46245. {
  46246. name: "Normal",
  46247. height: math.unit(12, "feet"),
  46248. default: true
  46249. },
  46250. ]
  46251. ))
  46252. characterMakers.push(() => makeCharacter(
  46253. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46254. {
  46255. demonFront: {
  46256. height: math.unit(36, "feet"),
  46257. name: "Front",
  46258. image: {
  46259. source: "./media/characters/alex-xuria/demon-front.svg",
  46260. extra: 1705/1673,
  46261. bottom: 198/1903
  46262. },
  46263. form: "demon",
  46264. default: true
  46265. },
  46266. demonBack: {
  46267. height: math.unit(36, "feet"),
  46268. name: "Back",
  46269. image: {
  46270. source: "./media/characters/alex-xuria/demon-back.svg",
  46271. extra: 1725/1693,
  46272. bottom: 70/1795
  46273. },
  46274. form: "demon"
  46275. },
  46276. demonHead: {
  46277. height: math.unit(2.14, "meters"),
  46278. name: "Head",
  46279. image: {
  46280. source: "./media/characters/alex-xuria/demon-head.svg"
  46281. },
  46282. form: "demon"
  46283. },
  46284. demonHand: {
  46285. height: math.unit(1.61, "meters"),
  46286. name: "Hand",
  46287. image: {
  46288. source: "./media/characters/alex-xuria/demon-hand.svg"
  46289. },
  46290. form: "demon"
  46291. },
  46292. demonPaw: {
  46293. height: math.unit(1.35, "meters"),
  46294. name: "Paw",
  46295. image: {
  46296. source: "./media/characters/alex-xuria/demon-paw.svg"
  46297. },
  46298. form: "demon"
  46299. },
  46300. demonFoot: {
  46301. height: math.unit(2.2, "meters"),
  46302. name: "Foot",
  46303. image: {
  46304. source: "./media/characters/alex-xuria/demon-foot.svg"
  46305. },
  46306. form: "demon"
  46307. },
  46308. demonCock: {
  46309. height: math.unit(1.74, "meters"),
  46310. name: "Cock",
  46311. image: {
  46312. source: "./media/characters/alex-xuria/demon-cock.svg"
  46313. },
  46314. form: "demon"
  46315. },
  46316. demonTailClosed: {
  46317. height: math.unit(1.47, "meters"),
  46318. name: "Tail (Closed)",
  46319. image: {
  46320. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46321. },
  46322. form: "demon"
  46323. },
  46324. demonTailOpen: {
  46325. height: math.unit(2.85, "meters"),
  46326. name: "Tail (Open)",
  46327. image: {
  46328. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46329. },
  46330. form: "demon"
  46331. },
  46332. incubusFront: {
  46333. height: math.unit(12, "feet"),
  46334. name: "Front",
  46335. image: {
  46336. source: "./media/characters/alex-xuria/incubus-front.svg",
  46337. extra: 1754/1677,
  46338. bottom: 125/1879
  46339. },
  46340. form: "incubus",
  46341. default: true
  46342. },
  46343. incubusBack: {
  46344. height: math.unit(12, "feet"),
  46345. name: "Back",
  46346. image: {
  46347. source: "./media/characters/alex-xuria/incubus-back.svg",
  46348. extra: 1702/1647,
  46349. bottom: 30/1732
  46350. },
  46351. form: "incubus"
  46352. },
  46353. incubusHead: {
  46354. height: math.unit(3.45, "feet"),
  46355. name: "Head",
  46356. image: {
  46357. source: "./media/characters/alex-xuria/incubus-head.svg"
  46358. },
  46359. form: "incubus"
  46360. },
  46361. rabbitFront: {
  46362. height: math.unit(6, "feet"),
  46363. name: "Front",
  46364. image: {
  46365. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46366. extra: 1369/1349,
  46367. bottom: 45/1414
  46368. },
  46369. form: "rabbit",
  46370. default: true
  46371. },
  46372. rabbitSide: {
  46373. height: math.unit(6, "feet"),
  46374. name: "Side",
  46375. image: {
  46376. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46377. extra: 1370/1356,
  46378. bottom: 37/1407
  46379. },
  46380. form: "rabbit"
  46381. },
  46382. rabbitBack: {
  46383. height: math.unit(6, "feet"),
  46384. name: "Back",
  46385. image: {
  46386. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46387. extra: 1375/1358,
  46388. bottom: 43/1418
  46389. },
  46390. form: "rabbit"
  46391. },
  46392. },
  46393. [
  46394. {
  46395. name: "Normal",
  46396. height: math.unit(6, "feet"),
  46397. default: true,
  46398. form: "rabbit"
  46399. },
  46400. {
  46401. name: "Incubus",
  46402. height: math.unit(12, "feet"),
  46403. default: true,
  46404. form: "incubus"
  46405. },
  46406. {
  46407. name: "Demon",
  46408. height: math.unit(36, "feet"),
  46409. default: true,
  46410. form: "demon"
  46411. }
  46412. ],
  46413. {
  46414. "demon": {
  46415. name: "Demon",
  46416. default: true
  46417. },
  46418. "incubus": {
  46419. name: "Incubus",
  46420. },
  46421. "rabbit": {
  46422. name: "Rabbit"
  46423. }
  46424. }
  46425. ))
  46426. characterMakers.push(() => makeCharacter(
  46427. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46428. {
  46429. front: {
  46430. height: math.unit(7 + 5/12, "feet"),
  46431. weight: math.unit(510, "lb"),
  46432. name: "Front",
  46433. image: {
  46434. source: "./media/characters/syrup/front.svg",
  46435. extra: 932/916,
  46436. bottom: 26/958
  46437. }
  46438. },
  46439. },
  46440. [
  46441. {
  46442. name: "Normal",
  46443. height: math.unit(7 + 5/12, "feet"),
  46444. default: true
  46445. },
  46446. {
  46447. name: "Big",
  46448. height: math.unit(50, "feet")
  46449. },
  46450. {
  46451. name: "Macro",
  46452. height: math.unit(300, "feet")
  46453. },
  46454. {
  46455. name: "Megamacro",
  46456. height: math.unit(1, "mile")
  46457. },
  46458. ]
  46459. ))
  46460. characterMakers.push(() => makeCharacter(
  46461. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46462. {
  46463. front: {
  46464. height: math.unit(6 + 9/12, "feet"),
  46465. name: "Front",
  46466. image: {
  46467. source: "./media/characters/zeimne/front.svg",
  46468. extra: 1969/1806,
  46469. bottom: 53/2022
  46470. }
  46471. },
  46472. },
  46473. [
  46474. {
  46475. name: "Normal",
  46476. height: math.unit(6 + 9/12, "feet"),
  46477. default: true
  46478. },
  46479. {
  46480. name: "Giant",
  46481. height: math.unit(550, "feet")
  46482. },
  46483. {
  46484. name: "Mega",
  46485. height: math.unit(3, "miles")
  46486. },
  46487. {
  46488. name: "Giga",
  46489. height: math.unit(250, "miles")
  46490. },
  46491. {
  46492. name: "Tera",
  46493. height: math.unit(1, "AU")
  46494. },
  46495. ]
  46496. ))
  46497. characterMakers.push(() => makeCharacter(
  46498. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46499. {
  46500. front: {
  46501. height: math.unit(5 + 2/12, "feet"),
  46502. name: "Front",
  46503. image: {
  46504. source: "./media/characters/grar/front.svg",
  46505. extra: 1331/1119,
  46506. bottom: 60/1391
  46507. }
  46508. },
  46509. back: {
  46510. height: math.unit(5 + 2/12, "feet"),
  46511. name: "Back",
  46512. image: {
  46513. source: "./media/characters/grar/back.svg",
  46514. extra: 1385/1169,
  46515. bottom: 23/1408
  46516. }
  46517. },
  46518. },
  46519. [
  46520. {
  46521. name: "Normal",
  46522. height: math.unit(5 + 2/12, "feet"),
  46523. default: true
  46524. },
  46525. ]
  46526. ))
  46527. characterMakers.push(() => makeCharacter(
  46528. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46529. {
  46530. front: {
  46531. height: math.unit(13 + 7/12, "feet"),
  46532. weight: math.unit(2200, "lb"),
  46533. name: "Front",
  46534. image: {
  46535. source: "./media/characters/endraya/front.svg",
  46536. extra: 1289/1215,
  46537. bottom: 50/1339
  46538. }
  46539. },
  46540. nude: {
  46541. height: math.unit(13 + 7/12, "feet"),
  46542. weight: math.unit(2200, "lb"),
  46543. name: "Nude",
  46544. image: {
  46545. source: "./media/characters/endraya/nude.svg",
  46546. extra: 1247/1171,
  46547. bottom: 40/1287
  46548. }
  46549. },
  46550. head: {
  46551. height: math.unit(2.6, "feet"),
  46552. name: "Head",
  46553. image: {
  46554. source: "./media/characters/endraya/head.svg"
  46555. }
  46556. },
  46557. slit: {
  46558. height: math.unit(3.4, "feet"),
  46559. name: "Slit",
  46560. image: {
  46561. source: "./media/characters/endraya/slit.svg"
  46562. }
  46563. },
  46564. },
  46565. [
  46566. {
  46567. name: "Normal",
  46568. height: math.unit(13 + 7/12, "feet"),
  46569. default: true
  46570. },
  46571. {
  46572. name: "Macro",
  46573. height: math.unit(200, "feet")
  46574. },
  46575. ]
  46576. ))
  46577. characterMakers.push(() => makeCharacter(
  46578. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46579. {
  46580. front: {
  46581. height: math.unit(1.81, "meters"),
  46582. weight: math.unit(69, "kg"),
  46583. name: "Front",
  46584. image: {
  46585. source: "./media/characters/rodryana/front.svg",
  46586. extra: 2002/1921,
  46587. bottom: 53/2055
  46588. }
  46589. },
  46590. back: {
  46591. height: math.unit(1.81, "meters"),
  46592. weight: math.unit(69, "kg"),
  46593. name: "Back",
  46594. image: {
  46595. source: "./media/characters/rodryana/back.svg",
  46596. extra: 1993/1926,
  46597. bottom: 48/2041
  46598. }
  46599. },
  46600. maw: {
  46601. height: math.unit(0.19769417475, "meters"),
  46602. name: "Maw",
  46603. image: {
  46604. source: "./media/characters/rodryana/maw.svg"
  46605. }
  46606. },
  46607. slit: {
  46608. height: math.unit(0.31631067961, "meters"),
  46609. name: "Slit",
  46610. image: {
  46611. source: "./media/characters/rodryana/slit.svg"
  46612. }
  46613. },
  46614. },
  46615. [
  46616. {
  46617. name: "Normal",
  46618. height: math.unit(1.81, "meters")
  46619. },
  46620. {
  46621. name: "Mini Macro",
  46622. height: math.unit(181, "meters")
  46623. },
  46624. {
  46625. name: "Macro",
  46626. height: math.unit(452, "meters"),
  46627. default: true
  46628. },
  46629. {
  46630. name: "Mega Macro",
  46631. height: math.unit(1.375, "km")
  46632. },
  46633. {
  46634. name: "Giga Macro",
  46635. height: math.unit(13.575, "km")
  46636. },
  46637. ]
  46638. ))
  46639. characterMakers.push(() => makeCharacter(
  46640. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46641. {
  46642. front: {
  46643. height: math.unit(6, "feet"),
  46644. weight: math.unit(1000, "lb"),
  46645. name: "Front",
  46646. image: {
  46647. source: "./media/characters/asaya/front.svg",
  46648. extra: 1460/1200,
  46649. bottom: 71/1531
  46650. }
  46651. },
  46652. },
  46653. [
  46654. {
  46655. name: "Normal",
  46656. height: math.unit(8, "km"),
  46657. default: true
  46658. },
  46659. ]
  46660. ))
  46661. characterMakers.push(() => makeCharacter(
  46662. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46663. {
  46664. front: {
  46665. height: math.unit(3.5, "meters"),
  46666. name: "Front",
  46667. image: {
  46668. source: "./media/characters/sarzu-and-israz/front.svg",
  46669. extra: 1570/1558,
  46670. bottom: 150/1720
  46671. },
  46672. },
  46673. back: {
  46674. height: math.unit(3.5, "meters"),
  46675. name: "Back",
  46676. image: {
  46677. source: "./media/characters/sarzu-and-israz/back.svg",
  46678. extra: 1523/1509,
  46679. bottom: 132/1655
  46680. },
  46681. },
  46682. frontFemale: {
  46683. height: math.unit(3.5, "meters"),
  46684. name: "Front (Female)",
  46685. image: {
  46686. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46687. extra: 1570/1558,
  46688. bottom: 150/1720
  46689. },
  46690. },
  46691. frontHerm: {
  46692. height: math.unit(3.5, "meters"),
  46693. name: "Front (Herm)",
  46694. image: {
  46695. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46696. extra: 1570/1558,
  46697. bottom: 150/1720
  46698. },
  46699. },
  46700. },
  46701. [
  46702. {
  46703. name: "Normal",
  46704. height: math.unit(3.5, "meters"),
  46705. default: true,
  46706. },
  46707. {
  46708. name: "Macro",
  46709. height: math.unit(65.5, "meters"),
  46710. },
  46711. ],
  46712. ))
  46713. characterMakers.push(() => makeCharacter(
  46714. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46715. {
  46716. front: {
  46717. height: math.unit(6, "feet"),
  46718. weight: math.unit(250, "lb"),
  46719. name: "Front",
  46720. image: {
  46721. source: "./media/characters/zenimma/front.svg",
  46722. extra: 1346/1320,
  46723. bottom: 58/1404
  46724. }
  46725. },
  46726. back: {
  46727. height: math.unit(6, "feet"),
  46728. weight: math.unit(250, "lb"),
  46729. name: "Back",
  46730. image: {
  46731. source: "./media/characters/zenimma/back.svg",
  46732. extra: 1324/1308,
  46733. bottom: 44/1368
  46734. }
  46735. },
  46736. dick: {
  46737. height: math.unit(1.44, "feet"),
  46738. name: "Dick",
  46739. image: {
  46740. source: "./media/characters/zenimma/dick.svg"
  46741. }
  46742. },
  46743. },
  46744. [
  46745. {
  46746. name: "Canon Height",
  46747. height: math.unit(66, "miles"),
  46748. default: true
  46749. },
  46750. ]
  46751. ))
  46752. characterMakers.push(() => makeCharacter(
  46753. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46754. {
  46755. nude: {
  46756. height: math.unit(6, "feet"),
  46757. weight: math.unit(150, "lb"),
  46758. name: "Nude",
  46759. image: {
  46760. source: "./media/characters/shavon/nude.svg",
  46761. extra: 1242/1096,
  46762. bottom: 98/1340
  46763. }
  46764. },
  46765. dressed: {
  46766. height: math.unit(6, "feet"),
  46767. weight: math.unit(150, "lb"),
  46768. name: "Dressed",
  46769. image: {
  46770. source: "./media/characters/shavon/dressed.svg",
  46771. extra: 1242/1096,
  46772. bottom: 98/1340
  46773. }
  46774. },
  46775. },
  46776. [
  46777. {
  46778. name: "Macro",
  46779. height: math.unit(255, "feet"),
  46780. default: true
  46781. },
  46782. ]
  46783. ))
  46784. characterMakers.push(() => makeCharacter(
  46785. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46786. {
  46787. front: {
  46788. height: math.unit(6, "feet"),
  46789. name: "Front",
  46790. image: {
  46791. source: "./media/characters/steph/front.svg",
  46792. extra: 1430/1330,
  46793. bottom: 54/1484
  46794. }
  46795. },
  46796. },
  46797. [
  46798. {
  46799. name: "Normal",
  46800. height: math.unit(6, "feet"),
  46801. default: true
  46802. },
  46803. ]
  46804. ))
  46805. characterMakers.push(() => makeCharacter(
  46806. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46807. {
  46808. front: {
  46809. height: math.unit(9, "feet"),
  46810. weight: math.unit(400, "lb"),
  46811. name: "Front",
  46812. image: {
  46813. source: "./media/characters/kil'aman/front.svg",
  46814. extra: 1210/1159,
  46815. bottom: 109/1319
  46816. }
  46817. },
  46818. head: {
  46819. height: math.unit(2.14, "feet"),
  46820. name: "Head",
  46821. image: {
  46822. source: "./media/characters/kil'aman/head.svg"
  46823. }
  46824. },
  46825. maw: {
  46826. height: math.unit(1.21, "feet"),
  46827. name: "Maw",
  46828. image: {
  46829. source: "./media/characters/kil'aman/maw.svg"
  46830. }
  46831. },
  46832. foot: {
  46833. height: math.unit(1.7, "feet"),
  46834. name: "Foot",
  46835. image: {
  46836. source: "./media/characters/kil'aman/foot.svg"
  46837. }
  46838. },
  46839. dick: {
  46840. height: math.unit(2.1, "feet"),
  46841. name: "Dick",
  46842. image: {
  46843. source: "./media/characters/kil'aman/dick.svg"
  46844. }
  46845. },
  46846. },
  46847. [
  46848. {
  46849. name: "Normal",
  46850. height: math.unit(9, "feet")
  46851. },
  46852. {
  46853. name: "Canon Height",
  46854. height: math.unit(10, "miles"),
  46855. default: true
  46856. },
  46857. {
  46858. name: "Maximum",
  46859. height: math.unit(6e9, "miles")
  46860. },
  46861. ]
  46862. ))
  46863. characterMakers.push(() => makeCharacter(
  46864. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46865. {
  46866. front: {
  46867. height: math.unit(90, "feet"),
  46868. weight: math.unit(675000, "lb"),
  46869. name: "Front",
  46870. image: {
  46871. source: "./media/characters/qadan/front.svg",
  46872. extra: 1012/1004,
  46873. bottom: 78/1090
  46874. }
  46875. },
  46876. back: {
  46877. height: math.unit(90, "feet"),
  46878. weight: math.unit(675000, "lb"),
  46879. name: "Back",
  46880. image: {
  46881. source: "./media/characters/qadan/back.svg",
  46882. extra: 1042/1031,
  46883. bottom: 55/1097
  46884. }
  46885. },
  46886. armored: {
  46887. height: math.unit(90, "feet"),
  46888. weight: math.unit(675000, "lb"),
  46889. name: "Armored",
  46890. image: {
  46891. source: "./media/characters/qadan/armored.svg",
  46892. extra: 1047/1037,
  46893. bottom: 48/1095
  46894. }
  46895. },
  46896. },
  46897. [
  46898. {
  46899. name: "Normal",
  46900. height: math.unit(90, "feet"),
  46901. default: true
  46902. },
  46903. ]
  46904. ))
  46905. characterMakers.push(() => makeCharacter(
  46906. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46907. {
  46908. front: {
  46909. height: math.unit(6, "feet"),
  46910. weight: math.unit(225, "lb"),
  46911. name: "Front",
  46912. image: {
  46913. source: "./media/characters/brooke/front.svg",
  46914. extra: 1050/1010,
  46915. bottom: 66/1116
  46916. }
  46917. },
  46918. back: {
  46919. height: math.unit(6, "feet"),
  46920. weight: math.unit(225, "lb"),
  46921. name: "Back",
  46922. image: {
  46923. source: "./media/characters/brooke/back.svg",
  46924. extra: 1053/1013,
  46925. bottom: 41/1094
  46926. }
  46927. },
  46928. dressed: {
  46929. height: math.unit(6, "feet"),
  46930. weight: math.unit(225, "lb"),
  46931. name: "Dressed",
  46932. image: {
  46933. source: "./media/characters/brooke/dressed.svg",
  46934. extra: 1050/1010,
  46935. bottom: 66/1116
  46936. }
  46937. },
  46938. },
  46939. [
  46940. {
  46941. name: "Canon Height",
  46942. height: math.unit(500, "miles"),
  46943. default: true
  46944. },
  46945. ]
  46946. ))
  46947. characterMakers.push(() => makeCharacter(
  46948. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46949. {
  46950. front: {
  46951. height: math.unit(6 + 2/12, "feet"),
  46952. weight: math.unit(210, "lb"),
  46953. name: "Front",
  46954. image: {
  46955. source: "./media/characters/wubs/front.svg",
  46956. extra: 1345/1325,
  46957. bottom: 70/1415
  46958. }
  46959. },
  46960. back: {
  46961. height: math.unit(6 + 2/12, "feet"),
  46962. weight: math.unit(210, "lb"),
  46963. name: "Back",
  46964. image: {
  46965. source: "./media/characters/wubs/back.svg",
  46966. extra: 1296/1275,
  46967. bottom: 58/1354
  46968. }
  46969. },
  46970. },
  46971. [
  46972. {
  46973. name: "Normal",
  46974. height: math.unit(6 + 2/12, "feet"),
  46975. default: true
  46976. },
  46977. {
  46978. name: "Macro",
  46979. height: math.unit(1000, "feet")
  46980. },
  46981. {
  46982. name: "Megamacro",
  46983. height: math.unit(1, "mile")
  46984. },
  46985. ]
  46986. ))
  46987. characterMakers.push(() => makeCharacter(
  46988. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46989. {
  46990. front: {
  46991. height: math.unit(4, "feet"),
  46992. weight: math.unit(120, "lb"),
  46993. name: "Front",
  46994. image: {
  46995. source: "./media/characters/blue/front.svg",
  46996. extra: 1636/1525,
  46997. bottom: 43/1679
  46998. }
  46999. },
  47000. back: {
  47001. height: math.unit(4, "feet"),
  47002. weight: math.unit(120, "lb"),
  47003. name: "Back",
  47004. image: {
  47005. source: "./media/characters/blue/back.svg",
  47006. extra: 1660/1560,
  47007. bottom: 57/1717
  47008. }
  47009. },
  47010. paws: {
  47011. height: math.unit(0.826, "feet"),
  47012. name: "Paws",
  47013. image: {
  47014. source: "./media/characters/blue/paws.svg"
  47015. }
  47016. },
  47017. },
  47018. [
  47019. {
  47020. name: "Micro",
  47021. height: math.unit(3, "inches")
  47022. },
  47023. {
  47024. name: "Normal",
  47025. height: math.unit(4, "feet"),
  47026. default: true
  47027. },
  47028. {
  47029. name: "Femenine Form",
  47030. height: math.unit(14, "feet")
  47031. },
  47032. {
  47033. name: "Werebat Form",
  47034. height: math.unit(18, "feet")
  47035. },
  47036. ]
  47037. ))
  47038. characterMakers.push(() => makeCharacter(
  47039. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47040. {
  47041. female: {
  47042. height: math.unit(7 + 4/12, "feet"),
  47043. weight: math.unit(243, "lb"),
  47044. name: "Female",
  47045. image: {
  47046. source: "./media/characters/kaya/female.svg",
  47047. extra: 975/898,
  47048. bottom: 34/1009
  47049. }
  47050. },
  47051. herm: {
  47052. height: math.unit(7 + 4/12, "feet"),
  47053. weight: math.unit(243, "lb"),
  47054. name: "Herm",
  47055. image: {
  47056. source: "./media/characters/kaya/herm.svg",
  47057. extra: 975/898,
  47058. bottom: 34/1009
  47059. }
  47060. },
  47061. },
  47062. [
  47063. {
  47064. name: "Normal",
  47065. height: math.unit(7 + 4/12, "feet"),
  47066. default: true
  47067. },
  47068. ]
  47069. ))
  47070. characterMakers.push(() => makeCharacter(
  47071. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47072. {
  47073. female: {
  47074. height: math.unit(9 + 4/12, "feet"),
  47075. weight: math.unit(398, "lb"),
  47076. name: "Female",
  47077. image: {
  47078. source: "./media/characters/kassandra/female.svg",
  47079. extra: 908/839,
  47080. bottom: 61/969
  47081. }
  47082. },
  47083. intersex: {
  47084. height: math.unit(9 + 4/12, "feet"),
  47085. weight: math.unit(398, "lb"),
  47086. name: "Intersex",
  47087. image: {
  47088. source: "./media/characters/kassandra/intersex.svg",
  47089. extra: 908/839,
  47090. bottom: 61/969
  47091. }
  47092. },
  47093. },
  47094. [
  47095. {
  47096. name: "Normal",
  47097. height: math.unit(9 + 4/12, "feet"),
  47098. default: true
  47099. },
  47100. ]
  47101. ))
  47102. characterMakers.push(() => makeCharacter(
  47103. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47104. {
  47105. front: {
  47106. height: math.unit(3, "meters"),
  47107. name: "Front",
  47108. image: {
  47109. source: "./media/characters/amy/front.svg",
  47110. extra: 1380/1343,
  47111. bottom: 70/1450
  47112. }
  47113. },
  47114. back: {
  47115. height: math.unit(3, "meters"),
  47116. name: "Back",
  47117. image: {
  47118. source: "./media/characters/amy/back.svg",
  47119. extra: 1380/1347,
  47120. bottom: 66/1446
  47121. }
  47122. },
  47123. },
  47124. [
  47125. {
  47126. name: "Normal",
  47127. height: math.unit(3, "meters"),
  47128. default: true
  47129. },
  47130. ]
  47131. ))
  47132. characterMakers.push(() => makeCharacter(
  47133. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47134. {
  47135. side: {
  47136. height: math.unit(47, "cm"),
  47137. weight: math.unit(10.8, "kg"),
  47138. name: "Side",
  47139. image: {
  47140. source: "./media/characters/alphaschakal/side.svg",
  47141. extra: 1058/568,
  47142. bottom: 62/1120
  47143. }
  47144. },
  47145. back: {
  47146. height: math.unit(78, "cm"),
  47147. weight: math.unit(10.8, "kg"),
  47148. name: "Back",
  47149. image: {
  47150. source: "./media/characters/alphaschakal/back.svg",
  47151. extra: 1102/942,
  47152. bottom: 185/1287
  47153. }
  47154. },
  47155. head: {
  47156. height: math.unit(28, "cm"),
  47157. name: "Head",
  47158. image: {
  47159. source: "./media/characters/alphaschakal/head.svg",
  47160. extra: 696/508,
  47161. bottom: 0/696
  47162. }
  47163. },
  47164. paw: {
  47165. height: math.unit(16, "cm"),
  47166. name: "Paw",
  47167. image: {
  47168. source: "./media/characters/alphaschakal/paw.svg"
  47169. }
  47170. },
  47171. },
  47172. [
  47173. {
  47174. name: "Normal",
  47175. height: math.unit(47, "cm"),
  47176. default: true
  47177. },
  47178. {
  47179. name: "Macro",
  47180. height: math.unit(340, "cm")
  47181. },
  47182. ]
  47183. ))
  47184. characterMakers.push(() => makeCharacter(
  47185. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47186. {
  47187. front: {
  47188. height: math.unit(36, "earths"),
  47189. name: "Front",
  47190. image: {
  47191. source: "./media/characters/ecobyss/front.svg",
  47192. extra: 1282/1215,
  47193. bottom: 11/1293
  47194. }
  47195. },
  47196. back: {
  47197. height: math.unit(36, "earths"),
  47198. name: "Back",
  47199. image: {
  47200. source: "./media/characters/ecobyss/back.svg",
  47201. extra: 1291/1222,
  47202. bottom: 8/1299
  47203. }
  47204. },
  47205. },
  47206. [
  47207. {
  47208. name: "Normal",
  47209. height: math.unit(36, "earths"),
  47210. default: true
  47211. },
  47212. ]
  47213. ))
  47214. characterMakers.push(() => makeCharacter(
  47215. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47216. {
  47217. front: {
  47218. height: math.unit(12, "feet"),
  47219. name: "Front",
  47220. image: {
  47221. source: "./media/characters/vasuk/front.svg",
  47222. extra: 1326/1207,
  47223. bottom: 64/1390
  47224. }
  47225. },
  47226. },
  47227. [
  47228. {
  47229. name: "Normal",
  47230. height: math.unit(12, "feet"),
  47231. default: true
  47232. },
  47233. ]
  47234. ))
  47235. characterMakers.push(() => makeCharacter(
  47236. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47237. {
  47238. side: {
  47239. height: math.unit(100, "feet"),
  47240. name: "Side",
  47241. image: {
  47242. source: "./media/characters/linneaus/side.svg",
  47243. extra: 987/807,
  47244. bottom: 47/1034
  47245. }
  47246. },
  47247. },
  47248. [
  47249. {
  47250. name: "Macro",
  47251. height: math.unit(100, "feet"),
  47252. default: true
  47253. },
  47254. ]
  47255. ))
  47256. characterMakers.push(() => makeCharacter(
  47257. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47258. {
  47259. front: {
  47260. height: math.unit(8, "feet"),
  47261. weight: math.unit(1200, "lb"),
  47262. name: "Front",
  47263. image: {
  47264. source: "./media/characters/nyterious-daligdig/front.svg",
  47265. extra: 1284/1094,
  47266. bottom: 84/1368
  47267. }
  47268. },
  47269. back: {
  47270. height: math.unit(8, "feet"),
  47271. weight: math.unit(1200, "lb"),
  47272. name: "Back",
  47273. image: {
  47274. source: "./media/characters/nyterious-daligdig/back.svg",
  47275. extra: 1301/1121,
  47276. bottom: 129/1430
  47277. }
  47278. },
  47279. mouth: {
  47280. height: math.unit(1.464, "feet"),
  47281. name: "Mouth",
  47282. image: {
  47283. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47284. }
  47285. },
  47286. },
  47287. [
  47288. {
  47289. name: "Small",
  47290. height: math.unit(8, "feet"),
  47291. default: true
  47292. },
  47293. {
  47294. name: "Normal",
  47295. height: math.unit(15, "feet")
  47296. },
  47297. {
  47298. name: "Macro",
  47299. height: math.unit(90, "feet")
  47300. },
  47301. ]
  47302. ))
  47303. characterMakers.push(() => makeCharacter(
  47304. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47305. {
  47306. front: {
  47307. height: math.unit(7 + 4/12, "feet"),
  47308. weight: math.unit(252, "lb"),
  47309. name: "Front",
  47310. image: {
  47311. source: "./media/characters/bandel/front.svg",
  47312. extra: 1946/1775,
  47313. bottom: 26/1972
  47314. }
  47315. },
  47316. back: {
  47317. height: math.unit(7 + 4/12, "feet"),
  47318. weight: math.unit(252, "lb"),
  47319. name: "Back",
  47320. image: {
  47321. source: "./media/characters/bandel/back.svg",
  47322. extra: 1940/1770,
  47323. bottom: 25/1965
  47324. }
  47325. },
  47326. maw: {
  47327. height: math.unit(2.15, "feet"),
  47328. name: "Maw",
  47329. image: {
  47330. source: "./media/characters/bandel/maw.svg"
  47331. }
  47332. },
  47333. stomach: {
  47334. height: math.unit(1.95, "feet"),
  47335. name: "Stomach",
  47336. image: {
  47337. source: "./media/characters/bandel/stomach.svg"
  47338. }
  47339. },
  47340. },
  47341. [
  47342. {
  47343. name: "Normal",
  47344. height: math.unit(7 + 4/12, "feet"),
  47345. default: true
  47346. },
  47347. ]
  47348. ))
  47349. characterMakers.push(() => makeCharacter(
  47350. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47351. {
  47352. front: {
  47353. height: math.unit(10 + 5/12, "feet"),
  47354. weight: math.unit(773.5, "kg"),
  47355. name: "Front",
  47356. image: {
  47357. source: "./media/characters/zed/front.svg",
  47358. extra: 987/941,
  47359. bottom: 52/1039
  47360. }
  47361. },
  47362. },
  47363. [
  47364. {
  47365. name: "Short",
  47366. height: math.unit(5 + 4/12, "feet")
  47367. },
  47368. {
  47369. name: "Average",
  47370. height: math.unit(10 + 5/12, "feet"),
  47371. default: true
  47372. },
  47373. {
  47374. name: "Mini-Macro",
  47375. height: math.unit(24 + 9/12, "feet")
  47376. },
  47377. {
  47378. name: "Macro",
  47379. height: math.unit(249, "feet")
  47380. },
  47381. {
  47382. name: "Mega-Macro",
  47383. height: math.unit(12490, "feet")
  47384. },
  47385. {
  47386. name: "Giga-Macro",
  47387. height: math.unit(24.9, "miles")
  47388. },
  47389. {
  47390. name: "Tera-Macro",
  47391. height: math.unit(24900, "miles")
  47392. },
  47393. {
  47394. name: "Cosmic Scale",
  47395. height: math.unit(38.9, "lightyears")
  47396. },
  47397. {
  47398. name: "Universal Scale",
  47399. height: math.unit(138e12, "lightyears")
  47400. },
  47401. ]
  47402. ))
  47403. characterMakers.push(() => makeCharacter(
  47404. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47405. {
  47406. front: {
  47407. height: math.unit(1561, "inches"),
  47408. name: "Front",
  47409. image: {
  47410. source: "./media/characters/ivan/front.svg",
  47411. extra: 1126/1071,
  47412. bottom: 26/1152
  47413. }
  47414. },
  47415. back: {
  47416. height: math.unit(1561, "inches"),
  47417. name: "Back",
  47418. image: {
  47419. source: "./media/characters/ivan/back.svg",
  47420. extra: 1134/1079,
  47421. bottom: 30/1164
  47422. }
  47423. },
  47424. },
  47425. [
  47426. {
  47427. name: "Normal",
  47428. height: math.unit(1561, "inches"),
  47429. default: true
  47430. },
  47431. ]
  47432. ))
  47433. characterMakers.push(() => makeCharacter(
  47434. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47435. {
  47436. front: {
  47437. height: math.unit(5 + 7/12, "feet"),
  47438. weight: math.unit(150, "lb"),
  47439. name: "Front",
  47440. image: {
  47441. source: "./media/characters/robin-arctic-hare/front.svg",
  47442. extra: 1148/974,
  47443. bottom: 20/1168
  47444. }
  47445. },
  47446. },
  47447. [
  47448. {
  47449. name: "Normal",
  47450. height: math.unit(5 + 7/12, "feet"),
  47451. default: true
  47452. },
  47453. ]
  47454. ))
  47455. characterMakers.push(() => makeCharacter(
  47456. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47457. {
  47458. side: {
  47459. height: math.unit(5, "feet"),
  47460. name: "Side",
  47461. image: {
  47462. source: "./media/characters/birch/side.svg",
  47463. extra: 985/796,
  47464. bottom: 111/1096
  47465. }
  47466. },
  47467. },
  47468. [
  47469. {
  47470. name: "Normal",
  47471. height: math.unit(5, "feet"),
  47472. default: true
  47473. },
  47474. ]
  47475. ))
  47476. characterMakers.push(() => makeCharacter(
  47477. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47478. {
  47479. front: {
  47480. height: math.unit(4, "feet"),
  47481. name: "Front",
  47482. image: {
  47483. source: "./media/characters/rasp/front.svg",
  47484. extra: 561/478,
  47485. bottom: 74/635
  47486. }
  47487. },
  47488. },
  47489. [
  47490. {
  47491. name: "Normal",
  47492. height: math.unit(4, "feet"),
  47493. default: true
  47494. },
  47495. ]
  47496. ))
  47497. characterMakers.push(() => makeCharacter(
  47498. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47499. {
  47500. front: {
  47501. height: math.unit(4 + 6/12, "feet"),
  47502. name: "Front",
  47503. image: {
  47504. source: "./media/characters/agatha/front.svg",
  47505. extra: 947/933,
  47506. bottom: 42/989
  47507. }
  47508. },
  47509. back: {
  47510. height: math.unit(4 + 6/12, "feet"),
  47511. name: "Back",
  47512. image: {
  47513. source: "./media/characters/agatha/back.svg",
  47514. extra: 935/922,
  47515. bottom: 48/983
  47516. }
  47517. },
  47518. },
  47519. [
  47520. {
  47521. name: "Normal",
  47522. height: math.unit(4 + 6 /12, "feet"),
  47523. default: true
  47524. },
  47525. {
  47526. name: "Max Size",
  47527. height: math.unit(500, "feet")
  47528. },
  47529. ]
  47530. ))
  47531. characterMakers.push(() => makeCharacter(
  47532. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47533. {
  47534. side: {
  47535. height: math.unit(30, "feet"),
  47536. name: "Side",
  47537. image: {
  47538. source: "./media/characters/roggy/side.svg",
  47539. extra: 909/643,
  47540. bottom: 63/972
  47541. }
  47542. },
  47543. lounging: {
  47544. height: math.unit(20, "feet"),
  47545. name: "Lounging",
  47546. image: {
  47547. source: "./media/characters/roggy/lounging.svg",
  47548. extra: 643/479,
  47549. bottom: 145/788
  47550. }
  47551. },
  47552. handpaw: {
  47553. height: math.unit(13.1, "feet"),
  47554. name: "Handpaw",
  47555. image: {
  47556. source: "./media/characters/roggy/handpaw.svg"
  47557. }
  47558. },
  47559. footpaw: {
  47560. height: math.unit(15.8, "feet"),
  47561. name: "Footpaw",
  47562. image: {
  47563. source: "./media/characters/roggy/footpaw.svg"
  47564. }
  47565. },
  47566. },
  47567. [
  47568. {
  47569. name: "Menacing",
  47570. height: math.unit(30, "feet"),
  47571. default: true
  47572. },
  47573. ]
  47574. ))
  47575. characterMakers.push(() => makeCharacter(
  47576. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47577. {
  47578. front: {
  47579. height: math.unit(5 + 7/12, "feet"),
  47580. weight: math.unit(135, "lb"),
  47581. name: "Front",
  47582. image: {
  47583. source: "./media/characters/naomi/front.svg",
  47584. extra: 1209/1154,
  47585. bottom: 129/1338
  47586. }
  47587. },
  47588. back: {
  47589. height: math.unit(5 + 7/12, "feet"),
  47590. weight: math.unit(135, "lb"),
  47591. name: "Back",
  47592. image: {
  47593. source: "./media/characters/naomi/back.svg",
  47594. extra: 1252/1190,
  47595. bottom: 23/1275
  47596. }
  47597. },
  47598. },
  47599. [
  47600. {
  47601. name: "Normal",
  47602. height: math.unit(5 + 7 /12, "feet"),
  47603. default: true
  47604. },
  47605. ]
  47606. ))
  47607. characterMakers.push(() => makeCharacter(
  47608. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47609. {
  47610. side: {
  47611. height: math.unit(35, "meters"),
  47612. name: "Side",
  47613. image: {
  47614. source: "./media/characters/kimpi/side.svg",
  47615. extra: 419/382,
  47616. bottom: 63/482
  47617. }
  47618. },
  47619. hand: {
  47620. height: math.unit(8.96, "meters"),
  47621. name: "Hand",
  47622. image: {
  47623. source: "./media/characters/kimpi/hand.svg"
  47624. }
  47625. },
  47626. },
  47627. [
  47628. {
  47629. name: "Normal",
  47630. height: math.unit(35, "meters"),
  47631. default: true
  47632. },
  47633. ]
  47634. ))
  47635. characterMakers.push(() => makeCharacter(
  47636. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47637. {
  47638. front: {
  47639. height: math.unit(4 + 4/12, "feet"),
  47640. name: "Front",
  47641. image: {
  47642. source: "./media/characters/pepper-purrloin/front.svg",
  47643. extra: 1141/1024,
  47644. bottom: 21/1162
  47645. }
  47646. },
  47647. },
  47648. [
  47649. {
  47650. name: "Normal",
  47651. height: math.unit(4 + 4/12, "feet"),
  47652. default: true
  47653. },
  47654. ]
  47655. ))
  47656. characterMakers.push(() => makeCharacter(
  47657. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47658. {
  47659. front: {
  47660. height: math.unit(6 + 2/12, "feet"),
  47661. name: "Front",
  47662. image: {
  47663. source: "./media/characters/raphael/front.svg",
  47664. extra: 1101/962,
  47665. bottom: 59/1160
  47666. }
  47667. },
  47668. },
  47669. [
  47670. {
  47671. name: "Normal",
  47672. height: math.unit(6 + 2/12, "feet"),
  47673. default: true
  47674. },
  47675. ]
  47676. ))
  47677. characterMakers.push(() => makeCharacter(
  47678. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47679. {
  47680. front: {
  47681. height: math.unit(6, "feet"),
  47682. weight: math.unit(150, "lb"),
  47683. name: "Front",
  47684. image: {
  47685. source: "./media/characters/victor-williams/front.svg",
  47686. extra: 1894/1825,
  47687. bottom: 67/1961
  47688. }
  47689. },
  47690. },
  47691. [
  47692. {
  47693. name: "Normal",
  47694. height: math.unit(6, "feet"),
  47695. default: true
  47696. },
  47697. ]
  47698. ))
  47699. characterMakers.push(() => makeCharacter(
  47700. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47701. {
  47702. front: {
  47703. height: math.unit(5 + 8/12, "feet"),
  47704. weight: math.unit(150, "lb"),
  47705. name: "Front",
  47706. image: {
  47707. source: "./media/characters/rachel/front.svg",
  47708. extra: 1902/1787,
  47709. bottom: 46/1948
  47710. }
  47711. },
  47712. },
  47713. [
  47714. {
  47715. name: "Base Height",
  47716. height: math.unit(5 + 8/12, "feet"),
  47717. default: true
  47718. },
  47719. {
  47720. name: "Macro",
  47721. height: math.unit(200, "feet")
  47722. },
  47723. {
  47724. name: "Mega Macro",
  47725. height: math.unit(1, "mile")
  47726. },
  47727. {
  47728. name: "Giga Macro",
  47729. height: math.unit(1500, "miles")
  47730. },
  47731. {
  47732. name: "Tera Macro",
  47733. height: math.unit(8000, "miles")
  47734. },
  47735. {
  47736. name: "Tera Macro+",
  47737. height: math.unit(2e5, "miles")
  47738. },
  47739. ]
  47740. ))
  47741. characterMakers.push(() => makeCharacter(
  47742. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47743. {
  47744. front: {
  47745. height: math.unit(6.5, "feet"),
  47746. name: "Front",
  47747. image: {
  47748. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47749. extra: 860/819,
  47750. bottom: 307/1167
  47751. }
  47752. },
  47753. back: {
  47754. height: math.unit(6.5, "feet"),
  47755. name: "Back",
  47756. image: {
  47757. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47758. extra: 880/837,
  47759. bottom: 395/1275
  47760. }
  47761. },
  47762. sleeping: {
  47763. height: math.unit(2.79, "feet"),
  47764. name: "Sleeping",
  47765. image: {
  47766. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47767. extra: 465/383,
  47768. bottom: 263/728
  47769. }
  47770. },
  47771. maw: {
  47772. height: math.unit(2.52, "feet"),
  47773. name: "Maw",
  47774. image: {
  47775. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47776. }
  47777. },
  47778. },
  47779. [
  47780. {
  47781. name: "Normal",
  47782. height: math.unit(6.5, "feet"),
  47783. default: true
  47784. },
  47785. ]
  47786. ))
  47787. characterMakers.push(() => makeCharacter(
  47788. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47789. {
  47790. front: {
  47791. height: math.unit(5, "feet"),
  47792. name: "Front",
  47793. image: {
  47794. source: "./media/characters/nova-nerium/front.svg",
  47795. extra: 1548/1392,
  47796. bottom: 374/1922
  47797. }
  47798. },
  47799. back: {
  47800. height: math.unit(5, "feet"),
  47801. name: "Back",
  47802. image: {
  47803. source: "./media/characters/nova-nerium/back.svg",
  47804. extra: 1658/1468,
  47805. bottom: 257/1915
  47806. }
  47807. },
  47808. },
  47809. [
  47810. {
  47811. name: "Normal",
  47812. height: math.unit(5, "feet"),
  47813. default: true
  47814. },
  47815. ]
  47816. ))
  47817. characterMakers.push(() => makeCharacter(
  47818. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47819. {
  47820. front: {
  47821. height: math.unit(5 + 4/12, "feet"),
  47822. name: "Front",
  47823. image: {
  47824. source: "./media/characters/ashe-pyriph/front.svg",
  47825. extra: 1935/1747,
  47826. bottom: 60/1995
  47827. }
  47828. },
  47829. },
  47830. [
  47831. {
  47832. name: "Normal",
  47833. height: math.unit(5 + 4/12, "feet"),
  47834. default: true
  47835. },
  47836. ]
  47837. ))
  47838. characterMakers.push(() => makeCharacter(
  47839. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47840. {
  47841. front: {
  47842. height: math.unit(8.7, "feet"),
  47843. name: "Front",
  47844. image: {
  47845. source: "./media/characters/flicker-wisp/front.svg",
  47846. extra: 1835/1613,
  47847. bottom: 449/2284
  47848. }
  47849. },
  47850. side: {
  47851. height: math.unit(8.7, "feet"),
  47852. name: "Side",
  47853. image: {
  47854. source: "./media/characters/flicker-wisp/side.svg",
  47855. extra: 1841/1642,
  47856. bottom: 336/2177
  47857. },
  47858. default: true
  47859. },
  47860. maw: {
  47861. height: math.unit(3.35, "feet"),
  47862. name: "Maw",
  47863. image: {
  47864. source: "./media/characters/flicker-wisp/maw.svg",
  47865. extra: 2338/1506,
  47866. bottom: 0/2338
  47867. }
  47868. },
  47869. ovipositor: {
  47870. height: math.unit(4.95, "feet"),
  47871. name: "Ovipositor",
  47872. image: {
  47873. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47874. }
  47875. },
  47876. egg: {
  47877. height: math.unit(0.385, "feet"),
  47878. weight: math.unit(2, "lb"),
  47879. name: "Egg",
  47880. image: {
  47881. source: "./media/characters/flicker-wisp/egg.svg"
  47882. }
  47883. },
  47884. },
  47885. [
  47886. {
  47887. name: "Normal",
  47888. height: math.unit(8.7, "feet"),
  47889. default: true
  47890. },
  47891. ]
  47892. ))
  47893. characterMakers.push(() => makeCharacter(
  47894. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47895. {
  47896. side: {
  47897. height: math.unit(11, "feet"),
  47898. name: "Side",
  47899. image: {
  47900. source: "./media/characters/faefnul/side.svg",
  47901. extra: 1100/1007,
  47902. bottom: 0/1100
  47903. }
  47904. },
  47905. },
  47906. [
  47907. {
  47908. name: "Normal",
  47909. height: math.unit(11, "feet"),
  47910. default: true
  47911. },
  47912. ]
  47913. ))
  47914. characterMakers.push(() => makeCharacter(
  47915. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47916. {
  47917. front: {
  47918. height: math.unit(6 + 2/12, "feet"),
  47919. name: "Front",
  47920. image: {
  47921. source: "./media/characters/shady/front.svg",
  47922. extra: 502/461,
  47923. bottom: 9/511
  47924. }
  47925. },
  47926. kneeling: {
  47927. height: math.unit(4.6, "feet"),
  47928. name: "Kneeling",
  47929. image: {
  47930. source: "./media/characters/shady/kneeling.svg",
  47931. extra: 1328/1219,
  47932. bottom: 117/1445
  47933. }
  47934. },
  47935. maw: {
  47936. height: math.unit(2, "feet"),
  47937. name: "Maw",
  47938. image: {
  47939. source: "./media/characters/shady/maw.svg"
  47940. }
  47941. },
  47942. },
  47943. [
  47944. {
  47945. name: "Nano",
  47946. height: math.unit(1, "mm")
  47947. },
  47948. {
  47949. name: "Micro",
  47950. height: math.unit(12, "mm")
  47951. },
  47952. {
  47953. name: "Tiny",
  47954. height: math.unit(3, "inches")
  47955. },
  47956. {
  47957. name: "Normal",
  47958. height: math.unit(6 + 2/12, "feet"),
  47959. default: true
  47960. },
  47961. {
  47962. name: "Big",
  47963. height: math.unit(15, "feet")
  47964. },
  47965. {
  47966. name: "Macro",
  47967. height: math.unit(150, "feet")
  47968. },
  47969. {
  47970. name: "Titanic",
  47971. height: math.unit(500, "feet")
  47972. },
  47973. ]
  47974. ))
  47975. characterMakers.push(() => makeCharacter(
  47976. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47977. {
  47978. front: {
  47979. height: math.unit(12, "feet"),
  47980. name: "Front",
  47981. image: {
  47982. source: "./media/characters/fenrir/front.svg",
  47983. extra: 968/875,
  47984. bottom: 22/990
  47985. }
  47986. },
  47987. },
  47988. [
  47989. {
  47990. name: "Big",
  47991. height: math.unit(12, "feet"),
  47992. default: true
  47993. },
  47994. ]
  47995. ))
  47996. characterMakers.push(() => makeCharacter(
  47997. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47998. {
  47999. front: {
  48000. height: math.unit(5 + 4/12, "feet"),
  48001. name: "Front",
  48002. image: {
  48003. source: "./media/characters/makar/front.svg",
  48004. extra: 1181/1112,
  48005. bottom: 78/1259
  48006. }
  48007. },
  48008. },
  48009. [
  48010. {
  48011. name: "Normal",
  48012. height: math.unit(5 + 4/12, "feet"),
  48013. default: true
  48014. },
  48015. ]
  48016. ))
  48017. characterMakers.push(() => makeCharacter(
  48018. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48019. {
  48020. front: {
  48021. height: math.unit(5 + 7/12, "feet"),
  48022. name: "Front",
  48023. image: {
  48024. source: "./media/characters/callow/front.svg",
  48025. extra: 1482/1304,
  48026. bottom: 23/1505
  48027. }
  48028. },
  48029. back: {
  48030. height: math.unit(5 + 7/12, "feet"),
  48031. name: "Back",
  48032. image: {
  48033. source: "./media/characters/callow/back.svg",
  48034. extra: 1484/1296,
  48035. bottom: 25/1509
  48036. }
  48037. },
  48038. },
  48039. [
  48040. {
  48041. name: "Micro",
  48042. height: math.unit(3, "inches"),
  48043. default: true
  48044. },
  48045. {
  48046. name: "Normal",
  48047. height: math.unit(5 + 7/12, "feet")
  48048. },
  48049. ]
  48050. ))
  48051. characterMakers.push(() => makeCharacter(
  48052. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48053. {
  48054. front: {
  48055. height: math.unit(6 + 2/12, "feet"),
  48056. name: "Front",
  48057. image: {
  48058. source: "./media/characters/natel/front.svg",
  48059. extra: 1833/1692,
  48060. bottom: 166/1999
  48061. }
  48062. },
  48063. },
  48064. [
  48065. {
  48066. name: "Normal",
  48067. height: math.unit(6 + 2/12, "feet"),
  48068. default: true
  48069. },
  48070. ]
  48071. ))
  48072. characterMakers.push(() => makeCharacter(
  48073. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48074. {
  48075. front: {
  48076. height: math.unit(1.75, "meters"),
  48077. name: "Front",
  48078. image: {
  48079. source: "./media/characters/misu/front.svg",
  48080. extra: 1690/1558,
  48081. bottom: 234/1924
  48082. }
  48083. },
  48084. back: {
  48085. height: math.unit(1.75, "meters"),
  48086. name: "Back",
  48087. image: {
  48088. source: "./media/characters/misu/back.svg",
  48089. extra: 1762/1618,
  48090. bottom: 146/1908
  48091. }
  48092. },
  48093. frontNude: {
  48094. height: math.unit(1.75, "meters"),
  48095. name: "Front (Nude)",
  48096. image: {
  48097. source: "./media/characters/misu/front-nude.svg",
  48098. extra: 1690/1558,
  48099. bottom: 234/1924
  48100. }
  48101. },
  48102. backNude: {
  48103. height: math.unit(1.75, "meters"),
  48104. name: "Back (Nude)",
  48105. image: {
  48106. source: "./media/characters/misu/back-nude.svg",
  48107. extra: 1762/1618,
  48108. bottom: 146/1908
  48109. }
  48110. },
  48111. frontErect: {
  48112. height: math.unit(1.75, "meters"),
  48113. name: "Front (Erect)",
  48114. image: {
  48115. source: "./media/characters/misu/front-erect.svg",
  48116. extra: 1690/1558,
  48117. bottom: 234/1924
  48118. }
  48119. },
  48120. maw: {
  48121. height: math.unit(0.47, "meters"),
  48122. name: "Maw",
  48123. image: {
  48124. source: "./media/characters/misu/maw.svg"
  48125. }
  48126. },
  48127. head: {
  48128. height: math.unit(0.35, "meters"),
  48129. name: "Head",
  48130. image: {
  48131. source: "./media/characters/misu/head.svg"
  48132. }
  48133. },
  48134. rear: {
  48135. height: math.unit(0.47, "meters"),
  48136. name: "Rear",
  48137. image: {
  48138. source: "./media/characters/misu/rear.svg"
  48139. }
  48140. },
  48141. },
  48142. [
  48143. {
  48144. name: "Normal",
  48145. height: math.unit(1.75, "meters")
  48146. },
  48147. {
  48148. name: "Not good for the people",
  48149. height: math.unit(42, "meters")
  48150. },
  48151. {
  48152. name: "Not good for the neighborhood",
  48153. height: math.unit(135, "meters")
  48154. },
  48155. {
  48156. name: "Bit bigger problem",
  48157. height: math.unit(380, "meters"),
  48158. default: true
  48159. },
  48160. {
  48161. name: "Not good for the city",
  48162. height: math.unit(1.5, "km")
  48163. },
  48164. {
  48165. name: "Not good for the county",
  48166. height: math.unit(5.5, "km")
  48167. },
  48168. {
  48169. name: "Not good for the state",
  48170. height: math.unit(25, "km")
  48171. },
  48172. {
  48173. name: "Not good for the country",
  48174. height: math.unit(125, "km")
  48175. },
  48176. {
  48177. name: "Not good for the continent",
  48178. height: math.unit(2100, "km")
  48179. },
  48180. {
  48181. name: "Not good for the planet",
  48182. height: math.unit(35000, "km")
  48183. },
  48184. {
  48185. name: "Just no",
  48186. height: math.unit(8.5e18, "km")
  48187. },
  48188. ]
  48189. ))
  48190. characterMakers.push(() => makeCharacter(
  48191. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48192. {
  48193. front: {
  48194. height: math.unit(6.5, "feet"),
  48195. name: "Front",
  48196. image: {
  48197. source: "./media/characters/poppy/front.svg",
  48198. extra: 1878/1812,
  48199. bottom: 43/1921
  48200. }
  48201. },
  48202. feet: {
  48203. height: math.unit(1.06, "feet"),
  48204. name: "Feet",
  48205. image: {
  48206. source: "./media/characters/poppy/feet.svg",
  48207. extra: 1083/1083,
  48208. bottom: 87/1170
  48209. }
  48210. },
  48211. },
  48212. [
  48213. {
  48214. name: "Human",
  48215. height: math.unit(6.5, "feet")
  48216. },
  48217. {
  48218. name: "Default",
  48219. height: math.unit(300, "feet"),
  48220. default: true
  48221. },
  48222. {
  48223. name: "Huge",
  48224. height: math.unit(850, "feet")
  48225. },
  48226. {
  48227. name: "Mega",
  48228. height: math.unit(8000, "feet")
  48229. },
  48230. {
  48231. name: "Giga",
  48232. height: math.unit(300, "miles")
  48233. },
  48234. ]
  48235. ))
  48236. characterMakers.push(() => makeCharacter(
  48237. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48238. {
  48239. bipedal: {
  48240. height: math.unit(7, "feet"),
  48241. name: "Bipedal",
  48242. image: {
  48243. source: "./media/characters/zener/bipedal.svg",
  48244. extra: 874/805,
  48245. bottom: 109/983
  48246. }
  48247. },
  48248. quadrupedal: {
  48249. height: math.unit(4.64, "feet"),
  48250. name: "Quadrupedal",
  48251. image: {
  48252. source: "./media/characters/zener/quadrupedal.svg",
  48253. extra: 638/507,
  48254. bottom: 190/828
  48255. }
  48256. },
  48257. cock: {
  48258. height: math.unit(18, "inches"),
  48259. name: "Cock",
  48260. image: {
  48261. source: "./media/characters/zener/cock.svg"
  48262. }
  48263. },
  48264. },
  48265. [
  48266. {
  48267. name: "Normal",
  48268. height: math.unit(7, "feet"),
  48269. default: true
  48270. },
  48271. ]
  48272. ))
  48273. characterMakers.push(() => makeCharacter(
  48274. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48275. {
  48276. nude: {
  48277. height: math.unit(5 + 6/12, "feet"),
  48278. name: "Nude",
  48279. image: {
  48280. source: "./media/characters/charlie-dog/nude.svg",
  48281. extra: 768/734,
  48282. bottom: 26/794
  48283. }
  48284. },
  48285. dressed: {
  48286. height: math.unit(5 + 6/12, "feet"),
  48287. name: "Dressed",
  48288. image: {
  48289. source: "./media/characters/charlie-dog/dressed.svg",
  48290. extra: 768/734,
  48291. bottom: 26/794
  48292. }
  48293. },
  48294. },
  48295. [
  48296. {
  48297. name: "Normal",
  48298. height: math.unit(5 + 6/12, "feet"),
  48299. default: true
  48300. },
  48301. ]
  48302. ))
  48303. characterMakers.push(() => makeCharacter(
  48304. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48305. {
  48306. front: {
  48307. height: math.unit(6 + 4/12, "feet"),
  48308. name: "Front",
  48309. image: {
  48310. source: "./media/characters/ir'istrasz/front.svg",
  48311. extra: 1014/977,
  48312. bottom: 65/1079
  48313. }
  48314. },
  48315. back: {
  48316. height: math.unit(6 + 4/12, "feet"),
  48317. name: "Back",
  48318. image: {
  48319. source: "./media/characters/ir'istrasz/back.svg",
  48320. extra: 1024/992,
  48321. bottom: 34/1058
  48322. }
  48323. },
  48324. },
  48325. [
  48326. {
  48327. name: "Normal",
  48328. height: math.unit(6 + 4/12, "feet"),
  48329. default: true
  48330. },
  48331. ]
  48332. ))
  48333. characterMakers.push(() => makeCharacter(
  48334. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48335. {
  48336. front: {
  48337. height: math.unit(5 + 8/12, "feet"),
  48338. name: "Front",
  48339. image: {
  48340. source: "./media/characters/dee-ditto/front.svg",
  48341. extra: 1874/1785,
  48342. bottom: 68/1942
  48343. }
  48344. },
  48345. back: {
  48346. height: math.unit(5 + 8/12, "feet"),
  48347. name: "Back",
  48348. image: {
  48349. source: "./media/characters/dee-ditto/back.svg",
  48350. extra: 1870/1783,
  48351. bottom: 77/1947
  48352. }
  48353. },
  48354. },
  48355. [
  48356. {
  48357. name: "Normal",
  48358. height: math.unit(5 + 8/12, "feet"),
  48359. default: true
  48360. },
  48361. ]
  48362. ))
  48363. characterMakers.push(() => makeCharacter(
  48364. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48365. {
  48366. front: {
  48367. height: math.unit(7 + 6/12, "feet"),
  48368. name: "Front",
  48369. image: {
  48370. source: "./media/characters/fey/front.svg",
  48371. extra: 995/979,
  48372. bottom: 30/1025
  48373. }
  48374. },
  48375. back: {
  48376. height: math.unit(7 + 6/12, "feet"),
  48377. name: "Back",
  48378. image: {
  48379. source: "./media/characters/fey/back.svg",
  48380. extra: 1079/1008,
  48381. bottom: 5/1084
  48382. }
  48383. },
  48384. dressed: {
  48385. height: math.unit(7 + 6/12, "feet"),
  48386. name: "Dressed",
  48387. image: {
  48388. source: "./media/characters/fey/dressed.svg",
  48389. extra: 995/979,
  48390. bottom: 30/1025
  48391. }
  48392. },
  48393. },
  48394. [
  48395. {
  48396. name: "Normal",
  48397. height: math.unit(7 + 6/12, "feet"),
  48398. default: true
  48399. },
  48400. ]
  48401. ))
  48402. characterMakers.push(() => makeCharacter(
  48403. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48404. {
  48405. standing: {
  48406. height: math.unit(17, "feet"),
  48407. name: "Standing",
  48408. image: {
  48409. source: "./media/characters/aster/standing.svg",
  48410. extra: 1798/1598,
  48411. bottom: 117/1915
  48412. }
  48413. },
  48414. },
  48415. [
  48416. {
  48417. name: "Normal",
  48418. height: math.unit(17, "feet"),
  48419. default: true
  48420. },
  48421. {
  48422. name: "Homewrecker",
  48423. height: math.unit(95, "feet")
  48424. },
  48425. {
  48426. name: "Planet Devourer",
  48427. height: math.unit(1008000, "miles")
  48428. },
  48429. ]
  48430. ))
  48431. characterMakers.push(() => makeCharacter(
  48432. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48433. {
  48434. front: {
  48435. height: math.unit(6 + 5/12, "feet"),
  48436. weight: math.unit(265, "lb"),
  48437. name: "Front",
  48438. image: {
  48439. source: "./media/characters/devon-childs/front.svg",
  48440. extra: 1795/1721,
  48441. bottom: 41/1836
  48442. }
  48443. },
  48444. side: {
  48445. height: math.unit(6 + 5/12, "feet"),
  48446. weight: math.unit(265, "lb"),
  48447. name: "Side",
  48448. image: {
  48449. source: "./media/characters/devon-childs/side.svg",
  48450. extra: 1812/1738,
  48451. bottom: 30/1842
  48452. }
  48453. },
  48454. back: {
  48455. height: math.unit(6 + 5/12, "feet"),
  48456. weight: math.unit(265, "lb"),
  48457. name: "Back",
  48458. image: {
  48459. source: "./media/characters/devon-childs/back.svg",
  48460. extra: 1808/1735,
  48461. bottom: 23/1831
  48462. }
  48463. },
  48464. hand: {
  48465. height: math.unit(1.464, "feet"),
  48466. name: "Hand",
  48467. image: {
  48468. source: "./media/characters/devon-childs/hand.svg"
  48469. }
  48470. },
  48471. foot: {
  48472. height: math.unit(1.6, "feet"),
  48473. name: "Foot",
  48474. image: {
  48475. source: "./media/characters/devon-childs/foot.svg"
  48476. }
  48477. },
  48478. },
  48479. [
  48480. {
  48481. name: "Micro",
  48482. height: math.unit(7, "cm")
  48483. },
  48484. {
  48485. name: "Normal",
  48486. height: math.unit(6 + 5/12, "feet"),
  48487. default: true
  48488. },
  48489. {
  48490. name: "Macro",
  48491. height: math.unit(154, "feet")
  48492. },
  48493. ]
  48494. ))
  48495. characterMakers.push(() => makeCharacter(
  48496. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48497. {
  48498. front: {
  48499. height: math.unit(6, "feet"),
  48500. weight: math.unit(180, "lb"),
  48501. name: "Front",
  48502. image: {
  48503. source: "./media/characters/lydemox-vir/front.svg",
  48504. extra: 1632/1435,
  48505. bottom: 58/1690
  48506. }
  48507. },
  48508. frontSFW: {
  48509. height: math.unit(6, "feet"),
  48510. weight: math.unit(180, "lb"),
  48511. name: "Front (SFW)",
  48512. image: {
  48513. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48514. extra: 1632/1435,
  48515. bottom: 58/1690
  48516. }
  48517. },
  48518. back: {
  48519. height: math.unit(6, "feet"),
  48520. weight: math.unit(180, "lb"),
  48521. name: "Back",
  48522. image: {
  48523. source: "./media/characters/lydemox-vir/back.svg",
  48524. extra: 1593/1408,
  48525. bottom: 31/1624
  48526. }
  48527. },
  48528. paw: {
  48529. height: math.unit(1.85, "feet"),
  48530. name: "Paw",
  48531. image: {
  48532. source: "./media/characters/lydemox-vir/paw.svg"
  48533. }
  48534. },
  48535. dick: {
  48536. height: math.unit(1.8, "feet"),
  48537. name: "Dick",
  48538. image: {
  48539. source: "./media/characters/lydemox-vir/dick.svg"
  48540. }
  48541. },
  48542. },
  48543. [
  48544. {
  48545. name: "Macro",
  48546. height: math.unit(100, "feet"),
  48547. default: true
  48548. },
  48549. {
  48550. name: "Teramacro",
  48551. height: math.unit(1, "earth")
  48552. },
  48553. {
  48554. name: "Planetary",
  48555. height: math.unit(20, "earths")
  48556. },
  48557. ]
  48558. ))
  48559. characterMakers.push(() => makeCharacter(
  48560. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48561. {
  48562. front: {
  48563. height: math.unit(15 + 8/12, "feet"),
  48564. weight: math.unit(1237, "kg"),
  48565. name: "Front",
  48566. image: {
  48567. source: "./media/characters/mia/front.svg",
  48568. extra: 1573/1446,
  48569. bottom: 58/1631
  48570. }
  48571. },
  48572. },
  48573. [
  48574. {
  48575. name: "Small",
  48576. height: math.unit(9 + 5/12, "feet")
  48577. },
  48578. {
  48579. name: "Normal",
  48580. height: math.unit(15 + 8/12, "feet"),
  48581. default: true
  48582. },
  48583. ]
  48584. ))
  48585. characterMakers.push(() => makeCharacter(
  48586. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48587. {
  48588. front: {
  48589. height: math.unit(10 + 6/12, "feet"),
  48590. weight: math.unit(1.3, "tons"),
  48591. name: "Front",
  48592. image: {
  48593. source: "./media/characters/mr-graves/front.svg",
  48594. extra: 1779/1695,
  48595. bottom: 198/1977
  48596. }
  48597. },
  48598. },
  48599. [
  48600. {
  48601. name: "Normal",
  48602. height: math.unit(10 + 6 /12, "feet"),
  48603. default: true
  48604. },
  48605. ]
  48606. ))
  48607. characterMakers.push(() => makeCharacter(
  48608. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48609. {
  48610. dressedFront: {
  48611. height: math.unit(5 + 8/12, "feet"),
  48612. weight: math.unit(125, "lb"),
  48613. name: "Dressed (Front)",
  48614. image: {
  48615. source: "./media/characters/jess/dressed-front.svg",
  48616. extra: 1176/1152,
  48617. bottom: 42/1218
  48618. }
  48619. },
  48620. dressedSide: {
  48621. height: math.unit(5 + 8/12, "feet"),
  48622. weight: math.unit(125, "lb"),
  48623. name: "Dressed (Side)",
  48624. image: {
  48625. source: "./media/characters/jess/dressed-side.svg",
  48626. extra: 1204/1190,
  48627. bottom: 6/1210
  48628. }
  48629. },
  48630. nudeFront: {
  48631. height: math.unit(5 + 8/12, "feet"),
  48632. weight: math.unit(125, "lb"),
  48633. name: "Nude (Front)",
  48634. image: {
  48635. source: "./media/characters/jess/nude-front.svg",
  48636. extra: 1176/1152,
  48637. bottom: 42/1218
  48638. }
  48639. },
  48640. nudeSide: {
  48641. height: math.unit(5 + 8/12, "feet"),
  48642. weight: math.unit(125, "lb"),
  48643. name: "Nude (Side)",
  48644. image: {
  48645. source: "./media/characters/jess/nude-side.svg",
  48646. extra: 1204/1190,
  48647. bottom: 6/1210
  48648. }
  48649. },
  48650. organsFront: {
  48651. height: math.unit(2.83799342105, "feet"),
  48652. name: "Organs (Front)",
  48653. image: {
  48654. source: "./media/characters/jess/organs-front.svg"
  48655. }
  48656. },
  48657. organsSide: {
  48658. height: math.unit(2.64225290474, "feet"),
  48659. name: "Organs (Side)",
  48660. image: {
  48661. source: "./media/characters/jess/organs-side.svg"
  48662. }
  48663. },
  48664. digestiveTractFront: {
  48665. height: math.unit(2.8106580871, "feet"),
  48666. name: "Digestive Tract (Front)",
  48667. image: {
  48668. source: "./media/characters/jess/digestive-tract-front.svg"
  48669. }
  48670. },
  48671. digestiveTractSide: {
  48672. height: math.unit(2.54365045014, "feet"),
  48673. name: "Digestive Tract (Side)",
  48674. image: {
  48675. source: "./media/characters/jess/digestive-tract-side.svg"
  48676. }
  48677. },
  48678. respiratorySystemFront: {
  48679. height: math.unit(1.11196233456, "feet"),
  48680. name: "Respiratory System (Front)",
  48681. image: {
  48682. source: "./media/characters/jess/respiratory-system-front.svg"
  48683. }
  48684. },
  48685. respiratorySystemSide: {
  48686. height: math.unit(0.89327966297, "feet"),
  48687. name: "Respiratory System (Side)",
  48688. image: {
  48689. source: "./media/characters/jess/respiratory-system-side.svg"
  48690. }
  48691. },
  48692. urinaryTractFront: {
  48693. height: math.unit(1.16126356186, "feet"),
  48694. name: "Urinary Tract (Front)",
  48695. image: {
  48696. source: "./media/characters/jess/urinary-tract-front.svg"
  48697. }
  48698. },
  48699. urinaryTractSide: {
  48700. height: math.unit(1.20910039627, "feet"),
  48701. name: "Urinary Tract (Side)",
  48702. image: {
  48703. source: "./media/characters/jess/urinary-tract-side.svg"
  48704. }
  48705. },
  48706. reproductiveOrgansFront: {
  48707. height: math.unit(0.48422591566, "feet"),
  48708. name: "Reproductive Organs (Front)",
  48709. image: {
  48710. source: "./media/characters/jess/reproductive-organs-front.svg"
  48711. }
  48712. },
  48713. reproductiveOrgansSide: {
  48714. height: math.unit(0.61553314481, "feet"),
  48715. name: "Reproductive Organs (Side)",
  48716. image: {
  48717. source: "./media/characters/jess/reproductive-organs-side.svg"
  48718. }
  48719. },
  48720. breastsFront: {
  48721. height: math.unit(0.47690395121, "feet"),
  48722. name: "Breasts (Front)",
  48723. image: {
  48724. source: "./media/characters/jess/breasts-front.svg"
  48725. }
  48726. },
  48727. breastsSide: {
  48728. height: math.unit(0.30556998307, "feet"),
  48729. name: "Breasts (Side)",
  48730. image: {
  48731. source: "./media/characters/jess/breasts-side.svg"
  48732. }
  48733. },
  48734. heartFront: {
  48735. height: math.unit(0.53011022622, "feet"),
  48736. name: "Heart (Front)",
  48737. image: {
  48738. source: "./media/characters/jess/heart-front.svg"
  48739. }
  48740. },
  48741. heartSide: {
  48742. height: math.unit(0.51790695213, "feet"),
  48743. name: "Heart (Side)",
  48744. image: {
  48745. source: "./media/characters/jess/heart-side.svg"
  48746. }
  48747. },
  48748. earsAndNoseFront: {
  48749. height: math.unit(0.29385483995, "feet"),
  48750. name: "Ears and Nose (Front)",
  48751. image: {
  48752. source: "./media/characters/jess/ears-and-nose-front.svg"
  48753. }
  48754. },
  48755. earsAndNoseSide: {
  48756. height: math.unit(0.18109658741, "feet"),
  48757. name: "Ears and Nose (Side)",
  48758. image: {
  48759. source: "./media/characters/jess/ears-and-nose-side.svg"
  48760. }
  48761. },
  48762. },
  48763. [
  48764. {
  48765. name: "Normal",
  48766. height: math.unit(5 + 8/12, "feet"),
  48767. default: true
  48768. },
  48769. ]
  48770. ))
  48771. characterMakers.push(() => makeCharacter(
  48772. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48773. {
  48774. front: {
  48775. height: math.unit(6, "feet"),
  48776. weight: math.unit(6.64467e-7, "grams"),
  48777. name: "Front",
  48778. image: {
  48779. source: "./media/characters/wimpering/front.svg",
  48780. extra: 597/587,
  48781. bottom: 34/631
  48782. }
  48783. },
  48784. },
  48785. [
  48786. {
  48787. name: "Micro",
  48788. height: math.unit(0.4, "mm"),
  48789. default: true
  48790. },
  48791. ]
  48792. ))
  48793. characterMakers.push(() => makeCharacter(
  48794. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48795. {
  48796. front: {
  48797. height: math.unit(5 + 2/12, "feet"),
  48798. weight: math.unit(110, "lb"),
  48799. name: "Front",
  48800. image: {
  48801. source: "./media/characters/keltre/front.svg",
  48802. extra: 1099/1057,
  48803. bottom: 22/1121
  48804. }
  48805. },
  48806. back: {
  48807. height: math.unit(5 + 2/12, "feet"),
  48808. weight: math.unit(110, "lb"),
  48809. name: "Back",
  48810. image: {
  48811. source: "./media/characters/keltre/back.svg",
  48812. extra: 1095/1053,
  48813. bottom: 17/1112
  48814. }
  48815. },
  48816. dressed: {
  48817. height: math.unit(5 + 2/12, "feet"),
  48818. weight: math.unit(110, "lb"),
  48819. name: "Dressed",
  48820. image: {
  48821. source: "./media/characters/keltre/dressed.svg",
  48822. extra: 1099/1057,
  48823. bottom: 22/1121
  48824. }
  48825. },
  48826. winter: {
  48827. height: math.unit(5 + 2/12, "feet"),
  48828. weight: math.unit(110, "lb"),
  48829. name: "Winter",
  48830. image: {
  48831. source: "./media/characters/keltre/winter.svg",
  48832. extra: 1099/1057,
  48833. bottom: 22/1121
  48834. }
  48835. },
  48836. head: {
  48837. height: math.unit(1.61 * 0.86, "feet"),
  48838. name: "Head",
  48839. image: {
  48840. source: "./media/characters/keltre/head.svg",
  48841. extra: 534/421,
  48842. bottom: 0/534
  48843. }
  48844. },
  48845. hand: {
  48846. height: math.unit(1.3 * 0.86, "feet"),
  48847. name: "Hand",
  48848. image: {
  48849. source: "./media/characters/keltre/hand.svg"
  48850. }
  48851. },
  48852. foot: {
  48853. height: math.unit(1.8 * 0.86, "feet"),
  48854. name: "Foot",
  48855. image: {
  48856. source: "./media/characters/keltre/foot.svg"
  48857. }
  48858. },
  48859. },
  48860. [
  48861. {
  48862. name: "Fine",
  48863. height: math.unit(1, "inch")
  48864. },
  48865. {
  48866. name: "Dimnutive",
  48867. height: math.unit(4, "inches")
  48868. },
  48869. {
  48870. name: "Tiny",
  48871. height: math.unit(1, "foot")
  48872. },
  48873. {
  48874. name: "Small",
  48875. height: math.unit(3, "feet")
  48876. },
  48877. {
  48878. name: "Normal",
  48879. height: math.unit(5 + 2/12, "feet"),
  48880. default: true
  48881. },
  48882. ]
  48883. ))
  48884. characterMakers.push(() => makeCharacter(
  48885. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48886. {
  48887. front: {
  48888. height: math.unit(6 + 2/12, "feet"),
  48889. name: "Front",
  48890. image: {
  48891. source: "./media/characters/nox/front.svg",
  48892. extra: 1917/1830,
  48893. bottom: 74/1991
  48894. }
  48895. },
  48896. back: {
  48897. height: math.unit(6 + 2/12, "feet"),
  48898. name: "Back",
  48899. image: {
  48900. source: "./media/characters/nox/back.svg",
  48901. extra: 1896/1815,
  48902. bottom: 21/1917
  48903. }
  48904. },
  48905. head: {
  48906. height: math.unit(1.1, "feet"),
  48907. name: "Head",
  48908. image: {
  48909. source: "./media/characters/nox/head.svg",
  48910. extra: 874/704,
  48911. bottom: 0/874
  48912. }
  48913. },
  48914. tattoo: {
  48915. height: math.unit(0.729, "feet"),
  48916. name: "Tattoo",
  48917. image: {
  48918. source: "./media/characters/nox/tattoo.svg"
  48919. }
  48920. },
  48921. },
  48922. [
  48923. {
  48924. name: "Normal",
  48925. height: math.unit(6 + 2/12, "feet")
  48926. },
  48927. {
  48928. name: "Gigamacro",
  48929. height: math.unit(2, "earths"),
  48930. default: true
  48931. },
  48932. {
  48933. name: "Cosmic",
  48934. height: math.unit(867, "yottameters")
  48935. },
  48936. ]
  48937. ))
  48938. characterMakers.push(() => makeCharacter(
  48939. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  48940. {
  48941. front: {
  48942. height: math.unit(6, "feet"),
  48943. weight: math.unit(150, "lb"),
  48944. name: "Front",
  48945. image: {
  48946. source: "./media/characters/caspian/front.svg",
  48947. extra: 1443/1359,
  48948. bottom: 0/1443
  48949. }
  48950. },
  48951. back: {
  48952. height: math.unit(6, "feet"),
  48953. weight: math.unit(150, "lb"),
  48954. name: "Back",
  48955. image: {
  48956. source: "./media/characters/caspian/back.svg",
  48957. extra: 1379/1309,
  48958. bottom: 0/1379
  48959. }
  48960. },
  48961. head: {
  48962. height: math.unit(0.9, "feet"),
  48963. name: "Head",
  48964. image: {
  48965. source: "./media/characters/caspian/head.svg",
  48966. extra: 692/492,
  48967. bottom: 0/692
  48968. }
  48969. },
  48970. headAlt: {
  48971. height: math.unit(0.95, "feet"),
  48972. name: "Head (Alt)",
  48973. image: {
  48974. source: "./media/characters/caspian/head-alt.svg",
  48975. extra: 668/508,
  48976. bottom: 0/668
  48977. }
  48978. },
  48979. hand: {
  48980. height: math.unit(0.8, "feet"),
  48981. name: "Hand",
  48982. image: {
  48983. source: "./media/characters/caspian/hand.svg"
  48984. }
  48985. },
  48986. paw: {
  48987. height: math.unit(0.95, "feet"),
  48988. name: "Paw",
  48989. image: {
  48990. source: "./media/characters/caspian/paw.svg"
  48991. }
  48992. },
  48993. },
  48994. [
  48995. {
  48996. name: "Normal",
  48997. height: math.unit(162, "feet"),
  48998. default: true
  48999. },
  49000. ]
  49001. ))
  49002. characterMakers.push(() => makeCharacter(
  49003. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49004. {
  49005. front: {
  49006. height: math.unit(6, "feet"),
  49007. name: "Front",
  49008. image: {
  49009. source: "./media/characters/myra-aisling/front.svg",
  49010. extra: 1268/1166,
  49011. bottom: 73/1341
  49012. }
  49013. },
  49014. back: {
  49015. height: math.unit(6, "feet"),
  49016. name: "Back",
  49017. image: {
  49018. source: "./media/characters/myra-aisling/back.svg",
  49019. extra: 1249/1149,
  49020. bottom: 79/1328
  49021. }
  49022. },
  49023. dressed: {
  49024. height: math.unit(6, "feet"),
  49025. name: "Dressed",
  49026. image: {
  49027. source: "./media/characters/myra-aisling/dressed.svg",
  49028. extra: 1290/1189,
  49029. bottom: 47/1337
  49030. }
  49031. },
  49032. hand: {
  49033. height: math.unit(1.1, "feet"),
  49034. name: "Hand",
  49035. image: {
  49036. source: "./media/characters/myra-aisling/hand.svg"
  49037. }
  49038. },
  49039. paw: {
  49040. height: math.unit(1.23, "feet"),
  49041. name: "Paw",
  49042. image: {
  49043. source: "./media/characters/myra-aisling/paw.svg"
  49044. }
  49045. },
  49046. },
  49047. [
  49048. {
  49049. name: "Normal",
  49050. height: math.unit(160, "feet"),
  49051. default: true
  49052. },
  49053. ]
  49054. ))
  49055. characterMakers.push(() => makeCharacter(
  49056. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49057. {
  49058. front: {
  49059. height: math.unit(6, "feet"),
  49060. name: "Front",
  49061. image: {
  49062. source: "./media/characters/tenley-sidero/front.svg",
  49063. extra: 1365/1276,
  49064. bottom: 47/1412
  49065. }
  49066. },
  49067. back: {
  49068. height: math.unit(6, "feet"),
  49069. name: "Back",
  49070. image: {
  49071. source: "./media/characters/tenley-sidero/back.svg",
  49072. extra: 1383/1283,
  49073. bottom: 35/1418
  49074. }
  49075. },
  49076. dressed: {
  49077. height: math.unit(6, "feet"),
  49078. name: "Dressed",
  49079. image: {
  49080. source: "./media/characters/tenley-sidero/dressed.svg",
  49081. extra: 1364/1275,
  49082. bottom: 42/1406
  49083. }
  49084. },
  49085. head: {
  49086. height: math.unit(1.47, "feet"),
  49087. name: "Head",
  49088. image: {
  49089. source: "./media/characters/tenley-sidero/head.svg",
  49090. extra: 610/490,
  49091. bottom: 0/610
  49092. }
  49093. },
  49094. },
  49095. [
  49096. {
  49097. name: "Normal",
  49098. height: math.unit(154, "feet"),
  49099. default: true
  49100. },
  49101. ]
  49102. ))
  49103. characterMakers.push(() => makeCharacter(
  49104. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49105. {
  49106. front: {
  49107. height: math.unit(5, "inches"),
  49108. name: "Front",
  49109. image: {
  49110. source: "./media/characters/mallory/front.svg",
  49111. extra: 1919/1678,
  49112. bottom: 29/1948
  49113. }
  49114. },
  49115. hand: {
  49116. height: math.unit(0.73, "inches"),
  49117. name: "Hand",
  49118. image: {
  49119. source: "./media/characters/mallory/hand.svg"
  49120. }
  49121. },
  49122. paw: {
  49123. height: math.unit(0.68, "inches"),
  49124. name: "Paw",
  49125. image: {
  49126. source: "./media/characters/mallory/paw.svg"
  49127. }
  49128. },
  49129. },
  49130. [
  49131. {
  49132. name: "Small",
  49133. height: math.unit(5, "inches"),
  49134. default: true
  49135. },
  49136. ]
  49137. ))
  49138. characterMakers.push(() => makeCharacter(
  49139. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49140. {
  49141. naked: {
  49142. height: math.unit(6, "feet"),
  49143. name: "Naked",
  49144. image: {
  49145. source: "./media/characters/mab/naked.svg",
  49146. extra: 1855/1757,
  49147. bottom: 208/2063
  49148. }
  49149. },
  49150. outside: {
  49151. height: math.unit(6, "feet"),
  49152. name: "Outside",
  49153. image: {
  49154. source: "./media/characters/mab/outside.svg",
  49155. extra: 1855/1757,
  49156. bottom: 208/2063
  49157. }
  49158. },
  49159. party: {
  49160. height: math.unit(6, "feet"),
  49161. name: "Party",
  49162. image: {
  49163. source: "./media/characters/mab/party.svg",
  49164. extra: 1855/1757,
  49165. bottom: 208/2063
  49166. }
  49167. },
  49168. },
  49169. [
  49170. {
  49171. name: "Normal",
  49172. height: math.unit(165, "feet"),
  49173. default: true
  49174. },
  49175. ]
  49176. ))
  49177. characterMakers.push(() => makeCharacter(
  49178. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49179. {
  49180. front: {
  49181. height: math.unit(12, "feet"),
  49182. weight: math.unit(4000, "lb"),
  49183. name: "Front",
  49184. image: {
  49185. source: "./media/characters/winter/front.svg",
  49186. extra: 1286/943,
  49187. bottom: 112/1398
  49188. }
  49189. },
  49190. frontNsfw: {
  49191. height: math.unit(12, "feet"),
  49192. weight: math.unit(4000, "lb"),
  49193. name: "Front (NSFW)",
  49194. image: {
  49195. source: "./media/characters/winter/front-nsfw.svg",
  49196. extra: 1286/943,
  49197. bottom: 112/1398
  49198. }
  49199. },
  49200. dick: {
  49201. height: math.unit(3.79, "feet"),
  49202. name: "Dick",
  49203. image: {
  49204. source: "./media/characters/winter/dick.svg"
  49205. }
  49206. },
  49207. },
  49208. [
  49209. {
  49210. name: "Big",
  49211. height: math.unit(12, "feet"),
  49212. default: true
  49213. },
  49214. ]
  49215. ))
  49216. characterMakers.push(() => makeCharacter(
  49217. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49218. {
  49219. front: {
  49220. height: math.unit(4.1, "inches"),
  49221. name: "Front",
  49222. image: {
  49223. source: "./media/characters/alto/front.svg",
  49224. extra: 736/627,
  49225. bottom: 90/826
  49226. }
  49227. },
  49228. },
  49229. [
  49230. {
  49231. name: "Normal",
  49232. height: math.unit(4.1, "inches"),
  49233. default: true
  49234. },
  49235. ]
  49236. ))
  49237. characterMakers.push(() => makeCharacter(
  49238. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49239. {
  49240. sitting: {
  49241. height: math.unit(3, "feet"),
  49242. name: "Sitting",
  49243. image: {
  49244. source: "./media/characters/ratstrid-v/sitting.svg",
  49245. extra: 355/310,
  49246. bottom: 136/491
  49247. }
  49248. },
  49249. },
  49250. [
  49251. {
  49252. name: "Normal",
  49253. height: math.unit(3, "feet"),
  49254. default: true
  49255. },
  49256. ]
  49257. ))
  49258. characterMakers.push(() => makeCharacter(
  49259. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49260. {
  49261. back: {
  49262. height: math.unit(6, "feet"),
  49263. weight: math.unit(350, "lb"),
  49264. name: "Back",
  49265. image: {
  49266. source: "./media/characters/siz/back.svg",
  49267. extra: 1449/1274,
  49268. bottom: 13/1462
  49269. }
  49270. },
  49271. },
  49272. [
  49273. {
  49274. name: "Over-Overcompressed",
  49275. height: math.unit(8, "feet")
  49276. },
  49277. {
  49278. name: "Overcompressed",
  49279. height: math.unit(32, "feet")
  49280. },
  49281. {
  49282. name: "Compressed",
  49283. height: math.unit(128, "feet"),
  49284. default: true
  49285. },
  49286. {
  49287. name: "Half-Compressed",
  49288. height: math.unit(512, "feet")
  49289. },
  49290. {
  49291. name: "Quarter-Compressed",
  49292. height: math.unit(2048, "feet")
  49293. },
  49294. {
  49295. name: "Uncompressed?",
  49296. height: math.unit(8192, "feet")
  49297. },
  49298. ]
  49299. ))
  49300. characterMakers.push(() => makeCharacter(
  49301. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49302. {
  49303. front: {
  49304. height: math.unit(5 + 9/12, "feet"),
  49305. weight: math.unit(150, "lb"),
  49306. name: "Front",
  49307. image: {
  49308. source: "./media/characters/ven/front.svg",
  49309. extra: 1372/1320,
  49310. bottom: 73/1445
  49311. }
  49312. },
  49313. side: {
  49314. height: math.unit(5 + 9/12, "feet"),
  49315. weight: math.unit(1150, "lb"),
  49316. name: "Side",
  49317. image: {
  49318. source: "./media/characters/ven/side.svg",
  49319. extra: 1119/1070,
  49320. bottom: 42/1161
  49321. },
  49322. default: true
  49323. },
  49324. },
  49325. [
  49326. {
  49327. name: "Normal",
  49328. height: math.unit(5 + 9/12, "feet"),
  49329. default: true
  49330. },
  49331. ]
  49332. ))
  49333. characterMakers.push(() => makeCharacter(
  49334. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49335. {
  49336. front: {
  49337. height: math.unit(12, "feet"),
  49338. weight: math.unit(1000, "kg"),
  49339. name: "Front",
  49340. image: {
  49341. source: "./media/characters/maple/front.svg",
  49342. extra: 1193/1081,
  49343. bottom: 22/1215
  49344. }
  49345. },
  49346. },
  49347. [
  49348. {
  49349. name: "Compressed",
  49350. height: math.unit(7, "feet")
  49351. },
  49352. {
  49353. name: "Normal",
  49354. height: math.unit(12, "feet"),
  49355. default: true
  49356. },
  49357. ]
  49358. ))
  49359. characterMakers.push(() => makeCharacter(
  49360. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49361. {
  49362. front: {
  49363. height: math.unit(9, "feet"),
  49364. weight: math.unit(1500, "lb"),
  49365. name: "Front",
  49366. image: {
  49367. source: "./media/characters/nora/front.svg",
  49368. extra: 1348/1286,
  49369. bottom: 218/1566
  49370. }
  49371. },
  49372. erect: {
  49373. height: math.unit(9, "feet"),
  49374. weight: math.unit(11500, "lb"),
  49375. name: "Erect",
  49376. image: {
  49377. source: "./media/characters/nora/erect.svg",
  49378. extra: 1488/1433,
  49379. bottom: 133/1621
  49380. }
  49381. },
  49382. },
  49383. [
  49384. {
  49385. name: "Normal",
  49386. height: math.unit(9, "feet"),
  49387. default: true
  49388. },
  49389. ]
  49390. ))
  49391. characterMakers.push(() => makeCharacter(
  49392. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49393. {
  49394. front: {
  49395. height: math.unit(25, "feet"),
  49396. weight: math.unit(27500, "lb"),
  49397. name: "Front",
  49398. image: {
  49399. source: "./media/characters/north-caudin/front.svg",
  49400. extra: 1184/1082,
  49401. bottom: 23/1207
  49402. }
  49403. },
  49404. },
  49405. [
  49406. {
  49407. name: "Compressed",
  49408. height: math.unit(10, "feet")
  49409. },
  49410. {
  49411. name: "Normal",
  49412. height: math.unit(25, "feet"),
  49413. default: true
  49414. },
  49415. ]
  49416. ))
  49417. characterMakers.push(() => makeCharacter(
  49418. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49419. {
  49420. front: {
  49421. height: math.unit(9, "feet"),
  49422. weight: math.unit(1250, "lb"),
  49423. name: "Front",
  49424. image: {
  49425. source: "./media/characters/merrian/front.svg",
  49426. extra: 2393/2304,
  49427. bottom: 40/2433
  49428. }
  49429. },
  49430. },
  49431. [
  49432. {
  49433. name: "Normal",
  49434. height: math.unit(9, "feet"),
  49435. default: true
  49436. },
  49437. ]
  49438. ))
  49439. characterMakers.push(() => makeCharacter(
  49440. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49441. {
  49442. front: {
  49443. height: math.unit(9, "feet"),
  49444. weight: math.unit(1000, "lb"),
  49445. name: "Front",
  49446. image: {
  49447. source: "./media/characters/hazel/front.svg",
  49448. extra: 2351/2298,
  49449. bottom: 38/2389
  49450. }
  49451. },
  49452. },
  49453. [
  49454. {
  49455. name: "Normal",
  49456. height: math.unit(9, "feet"),
  49457. default: true
  49458. },
  49459. ]
  49460. ))
  49461. characterMakers.push(() => makeCharacter(
  49462. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49463. {
  49464. front: {
  49465. height: math.unit(13, "feet"),
  49466. weight: math.unit(3200, "lb"),
  49467. name: "Front",
  49468. image: {
  49469. source: "./media/characters/emma/front.svg",
  49470. extra: 2263/2029,
  49471. bottom: 68/2331
  49472. }
  49473. },
  49474. },
  49475. [
  49476. {
  49477. name: "Normal",
  49478. height: math.unit(13, "feet"),
  49479. default: true
  49480. },
  49481. ]
  49482. ))
  49483. characterMakers.push(() => makeCharacter(
  49484. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49485. {
  49486. front: {
  49487. height: math.unit(11 + 9/12, "feet"),
  49488. weight: math.unit(2500, "lb"),
  49489. name: "Front",
  49490. image: {
  49491. source: "./media/characters/ilumina/front.svg",
  49492. extra: 2248/2209,
  49493. bottom: 164/2412
  49494. }
  49495. },
  49496. },
  49497. [
  49498. {
  49499. name: "Normal",
  49500. height: math.unit(11 + 9/12, "feet"),
  49501. default: true
  49502. },
  49503. ]
  49504. ))
  49505. characterMakers.push(() => makeCharacter(
  49506. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49507. {
  49508. front: {
  49509. height: math.unit(8 + 10/12, "feet"),
  49510. weight: math.unit(1350, "lb"),
  49511. name: "Front",
  49512. image: {
  49513. source: "./media/characters/moonshine/front.svg",
  49514. extra: 2395/2288,
  49515. bottom: 40/2435
  49516. }
  49517. },
  49518. },
  49519. [
  49520. {
  49521. name: "Normal",
  49522. height: math.unit(8 + 10/12, "feet"),
  49523. default: true
  49524. },
  49525. ]
  49526. ))
  49527. characterMakers.push(() => makeCharacter(
  49528. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49529. {
  49530. front: {
  49531. height: math.unit(14, "feet"),
  49532. weight: math.unit(3400, "lb"),
  49533. name: "Front",
  49534. image: {
  49535. source: "./media/characters/aletia/front.svg",
  49536. extra: 1185/1052,
  49537. bottom: 21/1206
  49538. }
  49539. },
  49540. },
  49541. [
  49542. {
  49543. name: "Compressed",
  49544. height: math.unit(8, "feet")
  49545. },
  49546. {
  49547. name: "Normal",
  49548. height: math.unit(14, "feet"),
  49549. default: true
  49550. },
  49551. ]
  49552. ))
  49553. characterMakers.push(() => makeCharacter(
  49554. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49555. {
  49556. front: {
  49557. height: math.unit(17, "feet"),
  49558. weight: math.unit(6500, "lb"),
  49559. name: "Front",
  49560. image: {
  49561. source: "./media/characters/deidra/front.svg",
  49562. extra: 1201/1081,
  49563. bottom: 16/1217
  49564. }
  49565. },
  49566. },
  49567. [
  49568. {
  49569. name: "Compressed",
  49570. height: math.unit(9 + 6/12, "feet")
  49571. },
  49572. {
  49573. name: "Normal",
  49574. height: math.unit(17, "feet"),
  49575. default: true
  49576. },
  49577. ]
  49578. ))
  49579. characterMakers.push(() => makeCharacter(
  49580. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49581. {
  49582. front: {
  49583. height: math.unit(7 + 4/12, "feet"),
  49584. weight: math.unit(280, "lb"),
  49585. name: "Front",
  49586. image: {
  49587. source: "./media/characters/freki-yrmori/front.svg",
  49588. extra: 1286/1182,
  49589. bottom: 29/1315
  49590. }
  49591. },
  49592. maw: {
  49593. height: math.unit(0.9, "feet"),
  49594. name: "Maw",
  49595. image: {
  49596. source: "./media/characters/freki-yrmori/maw.svg"
  49597. }
  49598. },
  49599. },
  49600. [
  49601. {
  49602. name: "Normal",
  49603. height: math.unit(7 + 4/12, "feet"),
  49604. default: true
  49605. },
  49606. {
  49607. name: "Macro",
  49608. height: math.unit(38.5, "meters")
  49609. },
  49610. ]
  49611. ))
  49612. characterMakers.push(() => makeCharacter(
  49613. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49614. {
  49615. side: {
  49616. height: math.unit(47.2, "meters"),
  49617. weight: math.unit(10000, "tons"),
  49618. name: "Side",
  49619. image: {
  49620. source: "./media/characters/aetherios/side.svg",
  49621. extra: 2363/642,
  49622. bottom: 221/2584
  49623. }
  49624. },
  49625. top: {
  49626. height: math.unit(240, "meters"),
  49627. weight: math.unit(10000, "tons"),
  49628. name: "Top",
  49629. image: {
  49630. source: "./media/characters/aetherios/top.svg"
  49631. }
  49632. },
  49633. bottom: {
  49634. height: math.unit(240, "meters"),
  49635. weight: math.unit(10000, "tons"),
  49636. name: "Bottom",
  49637. image: {
  49638. source: "./media/characters/aetherios/bottom.svg"
  49639. }
  49640. },
  49641. head: {
  49642. height: math.unit(38.6, "meters"),
  49643. name: "Head",
  49644. image: {
  49645. source: "./media/characters/aetherios/head.svg",
  49646. extra: 1335/1112,
  49647. bottom: 0/1335
  49648. }
  49649. },
  49650. front: {
  49651. height: math.unit(29, "meters"),
  49652. name: "Front",
  49653. image: {
  49654. source: "./media/characters/aetherios/front.svg",
  49655. extra: 1266/953,
  49656. bottom: 158/1424
  49657. }
  49658. },
  49659. maw: {
  49660. height: math.unit(16.37, "meters"),
  49661. name: "Maw",
  49662. image: {
  49663. source: "./media/characters/aetherios/maw.svg",
  49664. extra: 748/637,
  49665. bottom: 0/748
  49666. },
  49667. extraAttributes: {
  49668. preyCapacity: {
  49669. name: "Capacity",
  49670. power: 3,
  49671. type: "volume",
  49672. base: math.unit(1000, "people")
  49673. },
  49674. tongueSize: {
  49675. name: "Tongue Size",
  49676. power: 2,
  49677. type: "area",
  49678. base: math.unit(21, "m^2")
  49679. }
  49680. }
  49681. },
  49682. forepaw: {
  49683. height: math.unit(18, "meters"),
  49684. name: "Forepaw",
  49685. image: {
  49686. source: "./media/characters/aetherios/forepaw.svg"
  49687. }
  49688. },
  49689. hindpaw: {
  49690. height: math.unit(23, "meters"),
  49691. name: "Hindpaw",
  49692. image: {
  49693. source: "./media/characters/aetherios/hindpaw.svg"
  49694. }
  49695. },
  49696. genitals: {
  49697. height: math.unit(42, "meters"),
  49698. name: "Genitals",
  49699. image: {
  49700. source: "./media/characters/aetherios/genitals.svg"
  49701. }
  49702. },
  49703. },
  49704. [
  49705. {
  49706. name: "Normal",
  49707. height: math.unit(47.2, "meters"),
  49708. default: true
  49709. },
  49710. {
  49711. name: "Macro",
  49712. height: math.unit(160, "meters")
  49713. },
  49714. {
  49715. name: "Mega",
  49716. height: math.unit(1.87, "km")
  49717. },
  49718. {
  49719. name: "Giga",
  49720. height: math.unit(40000, "km")
  49721. },
  49722. {
  49723. name: "Stellar",
  49724. height: math.unit(158000000, "km")
  49725. },
  49726. {
  49727. name: "Cosmic",
  49728. height: math.unit(9.46e12, "km")
  49729. },
  49730. ]
  49731. ))
  49732. characterMakers.push(() => makeCharacter(
  49733. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  49734. {
  49735. front: {
  49736. height: math.unit(5 + 4/12, "feet"),
  49737. weight: math.unit(80, "lb"),
  49738. name: "Front",
  49739. image: {
  49740. source: "./media/characters/mizu-gieeg/front.svg",
  49741. extra: 850/709,
  49742. bottom: 52/902
  49743. }
  49744. },
  49745. back: {
  49746. height: math.unit(5 + 4/12, "feet"),
  49747. weight: math.unit(80, "lb"),
  49748. name: "Back",
  49749. image: {
  49750. source: "./media/characters/mizu-gieeg/back.svg",
  49751. extra: 882/745,
  49752. bottom: 25/907
  49753. }
  49754. },
  49755. },
  49756. [
  49757. {
  49758. name: "Normal",
  49759. height: math.unit(5 + 4/12, "feet"),
  49760. default: true
  49761. },
  49762. ]
  49763. ))
  49764. characterMakers.push(() => makeCharacter(
  49765. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  49766. {
  49767. front: {
  49768. height: math.unit(6, "feet"),
  49769. name: "Front",
  49770. image: {
  49771. source: "./media/characters/roselle-st-papier/front.svg",
  49772. extra: 1430/1280,
  49773. bottom: 37/1467
  49774. }
  49775. },
  49776. back: {
  49777. height: math.unit(6, "feet"),
  49778. name: "Back",
  49779. image: {
  49780. source: "./media/characters/roselle-st-papier/back.svg",
  49781. extra: 1491/1296,
  49782. bottom: 23/1514
  49783. }
  49784. },
  49785. ear: {
  49786. height: math.unit(1.26, "feet"),
  49787. name: "Ear",
  49788. image: {
  49789. source: "./media/characters/roselle-st-papier/ear.svg"
  49790. }
  49791. },
  49792. },
  49793. [
  49794. {
  49795. name: "Normal",
  49796. height: math.unit(150, "feet"),
  49797. default: true
  49798. },
  49799. ]
  49800. ))
  49801. characterMakers.push(() => makeCharacter(
  49802. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  49803. {
  49804. front: {
  49805. height: math.unit(1, "inches"),
  49806. name: "Front",
  49807. image: {
  49808. source: "./media/characters/valargent/front.svg",
  49809. extra: 1825/1694,
  49810. bottom: 62/1887
  49811. }
  49812. },
  49813. back: {
  49814. height: math.unit(1, "inches"),
  49815. name: "Back",
  49816. image: {
  49817. source: "./media/characters/valargent/back.svg",
  49818. extra: 1775/1682,
  49819. bottom: 88/1863
  49820. }
  49821. },
  49822. },
  49823. [
  49824. {
  49825. name: "Micro",
  49826. height: math.unit(1, "inch"),
  49827. default: true
  49828. },
  49829. ]
  49830. ))
  49831. characterMakers.push(() => makeCharacter(
  49832. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  49833. {
  49834. front: {
  49835. height: math.unit(3.4, "meters"),
  49836. name: "Front",
  49837. image: {
  49838. source: "./media/characters/zarina/front.svg",
  49839. extra: 1733/1425,
  49840. bottom: 93/1826
  49841. }
  49842. },
  49843. squatting: {
  49844. height: math.unit(2.14, "meters"),
  49845. name: "Squatting",
  49846. image: {
  49847. source: "./media/characters/zarina/squatting.svg",
  49848. extra: 1073/788,
  49849. bottom: 63/1136
  49850. }
  49851. },
  49852. back: {
  49853. height: math.unit(2.14, "meters"),
  49854. name: "Back",
  49855. image: {
  49856. source: "./media/characters/zarina/back.svg",
  49857. extra: 1128/885,
  49858. bottom: 0/1128
  49859. }
  49860. },
  49861. },
  49862. [
  49863. {
  49864. name: "Normal",
  49865. height: math.unit(3.4, "meters"),
  49866. default: true
  49867. },
  49868. {
  49869. name: "Big",
  49870. height: math.unit(5, "meters")
  49871. },
  49872. {
  49873. name: "Macro",
  49874. height: math.unit(110, "meters")
  49875. },
  49876. ]
  49877. ))
  49878. characterMakers.push(() => makeCharacter(
  49879. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  49880. {
  49881. front: {
  49882. height: math.unit(7, "feet"),
  49883. name: "Front",
  49884. image: {
  49885. source: "./media/characters/ventus-astro-fox/front.svg",
  49886. extra: 1792/1623,
  49887. bottom: 28/1820
  49888. }
  49889. },
  49890. back: {
  49891. height: math.unit(7, "feet"),
  49892. name: "Back",
  49893. image: {
  49894. source: "./media/characters/ventus-astro-fox/back.svg",
  49895. extra: 1789/1620,
  49896. bottom: 31/1820
  49897. }
  49898. },
  49899. outfit: {
  49900. height: math.unit(7, "feet"),
  49901. name: "Outfit",
  49902. image: {
  49903. source: "./media/characters/ventus-astro-fox/outfit.svg",
  49904. extra: 1054/925,
  49905. bottom: 15/1069
  49906. }
  49907. },
  49908. head: {
  49909. height: math.unit(1.12, "feet"),
  49910. name: "Head",
  49911. image: {
  49912. source: "./media/characters/ventus-astro-fox/head.svg",
  49913. extra: 866/504,
  49914. bottom: 0/866
  49915. }
  49916. },
  49917. hand: {
  49918. height: math.unit(1, "feet"),
  49919. name: "Hand",
  49920. image: {
  49921. source: "./media/characters/ventus-astro-fox/hand.svg"
  49922. }
  49923. },
  49924. paw: {
  49925. height: math.unit(1.5, "feet"),
  49926. name: "Paw",
  49927. image: {
  49928. source: "./media/characters/ventus-astro-fox/paw.svg"
  49929. }
  49930. },
  49931. },
  49932. [
  49933. {
  49934. name: "Normal",
  49935. height: math.unit(7, "feet"),
  49936. default: true
  49937. },
  49938. {
  49939. name: "Macro",
  49940. height: math.unit(200, "feet")
  49941. },
  49942. {
  49943. name: "Cosmic",
  49944. height: math.unit(3, "universes")
  49945. },
  49946. ]
  49947. ))
  49948. characterMakers.push(() => makeCharacter(
  49949. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  49950. {
  49951. front: {
  49952. height: math.unit(3, "meters"),
  49953. weight: math.unit(7000, "lb"),
  49954. name: "Front",
  49955. image: {
  49956. source: "./media/characters/core-t/front.svg",
  49957. extra: 5729/4941,
  49958. bottom: 1129/6858
  49959. }
  49960. },
  49961. },
  49962. [
  49963. {
  49964. name: "Big",
  49965. height: math.unit(3, "meters"),
  49966. default: true
  49967. },
  49968. ]
  49969. ))
  49970. characterMakers.push(() => makeCharacter(
  49971. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  49972. {
  49973. normal: {
  49974. height: math.unit(6 + 6/12, "feet"),
  49975. weight: math.unit(275, "lb"),
  49976. name: "Front",
  49977. image: {
  49978. source: "./media/characters/cadbunny/normal.svg",
  49979. extra: 1129/947,
  49980. bottom: 93/1222
  49981. },
  49982. default: true,
  49983. form: "normal"
  49984. },
  49985. gigantamax: {
  49986. height: math.unit(26, "feet"),
  49987. weight: math.unit(16000, "lb"),
  49988. name: "Front",
  49989. image: {
  49990. source: "./media/characters/cadbunny/gigantamax.svg",
  49991. extra: 1133/944,
  49992. bottom: 90/1223
  49993. },
  49994. default: true,
  49995. form: "gigantamax"
  49996. },
  49997. },
  49998. [
  49999. {
  50000. name: "Normal",
  50001. height: math.unit(6 + 6/12, "feet"),
  50002. default: true,
  50003. form: "normal"
  50004. },
  50005. {
  50006. name: "Small",
  50007. height: math.unit(26, "feet"),
  50008. default: true,
  50009. form: "gigantamax"
  50010. },
  50011. {
  50012. name: "Large",
  50013. height: math.unit(78, "feet"),
  50014. form: "gigantamax"
  50015. },
  50016. ],
  50017. {
  50018. "normal": {
  50019. name: "Normal",
  50020. default: true
  50021. },
  50022. "gigantamax": {
  50023. name: "Gigantamax"
  50024. }
  50025. }
  50026. ))
  50027. characterMakers.push(() => makeCharacter(
  50028. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50029. {
  50030. anthroFront: {
  50031. height: math.unit(8, "feet"),
  50032. weight: math.unit(300, "lb"),
  50033. name: "Front",
  50034. image: {
  50035. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50036. extra: 1272/1176,
  50037. bottom: 53/1325
  50038. },
  50039. form: "anthro",
  50040. default: true
  50041. },
  50042. feralSide: {
  50043. height: math.unit(4, "feet"),
  50044. weight: math.unit(250, "lb"),
  50045. name: "Side",
  50046. image: {
  50047. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50048. extra: 731/621,
  50049. bottom: 0/731
  50050. },
  50051. form: "feral",
  50052. default: true
  50053. },
  50054. },
  50055. [
  50056. {
  50057. name: "Regular",
  50058. height: math.unit(8, "feet"),
  50059. form: "anthro"
  50060. },
  50061. {
  50062. name: "Macro",
  50063. height: math.unit(250, "feet"),
  50064. form: "anthro",
  50065. default: true
  50066. },
  50067. {
  50068. name: "Regular",
  50069. height: math.unit(4, "feet"),
  50070. form: "feral"
  50071. },
  50072. {
  50073. name: "Macro",
  50074. height: math.unit(125, "feet"),
  50075. form: "feral",
  50076. default: true
  50077. },
  50078. ],
  50079. {
  50080. "anthro": {
  50081. name: "Anthro",
  50082. default: true
  50083. },
  50084. "feral": {
  50085. name: "Feral",
  50086. },
  50087. }
  50088. ))
  50089. characterMakers.push(() => makeCharacter(
  50090. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50091. {
  50092. front: {
  50093. height: math.unit(11 + 10/12, "feet"),
  50094. weight: math.unit(1587, "kg"),
  50095. name: "Front",
  50096. image: {
  50097. source: "./media/characters/maple-javira-dragon/front.svg",
  50098. extra: 1136/744,
  50099. bottom: 73/1209
  50100. }
  50101. },
  50102. side: {
  50103. height: math.unit(11 + 10/12, "feet"),
  50104. weight: math.unit(1587, "kg"),
  50105. name: "Side",
  50106. image: {
  50107. source: "./media/characters/maple-javira-dragon/side.svg",
  50108. extra: 712/505,
  50109. bottom: 17/729
  50110. }
  50111. },
  50112. head: {
  50113. height: math.unit(8.05, "feet"),
  50114. name: "Head",
  50115. image: {
  50116. source: "./media/characters/maple-javira-dragon/head.svg",
  50117. extra: 1420/1344,
  50118. bottom: 0/1420
  50119. }
  50120. },
  50121. },
  50122. [
  50123. {
  50124. name: "Normal",
  50125. height: math.unit(11 + 10/12, "feet"),
  50126. default: true
  50127. },
  50128. ]
  50129. ))
  50130. characterMakers.push(() => makeCharacter(
  50131. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50132. {
  50133. front: {
  50134. height: math.unit(117, "cm"),
  50135. weight: math.unit(50, "kg"),
  50136. name: "Front",
  50137. image: {
  50138. source: "./media/characters/sonia-wyverntail/front.svg",
  50139. extra: 708/592,
  50140. bottom: 25/733
  50141. }
  50142. },
  50143. },
  50144. [
  50145. {
  50146. name: "Normal",
  50147. height: math.unit(117, "cm"),
  50148. default: true
  50149. },
  50150. ]
  50151. ))
  50152. characterMakers.push(() => makeCharacter(
  50153. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50154. {
  50155. front: {
  50156. height: math.unit(6 + 5/12, "feet"),
  50157. name: "Front",
  50158. image: {
  50159. source: "./media/characters/micah/front.svg",
  50160. extra: 1758/1546,
  50161. bottom: 214/1972
  50162. }
  50163. },
  50164. },
  50165. [
  50166. {
  50167. name: "Normal",
  50168. height: math.unit(6 + 5/12, "feet"),
  50169. default: true
  50170. },
  50171. ]
  50172. ))
  50173. characterMakers.push(() => makeCharacter(
  50174. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50175. {
  50176. front: {
  50177. height: math.unit(5 + 10/12, "feet"),
  50178. weight: math.unit(220, "lb"),
  50179. name: "Front",
  50180. image: {
  50181. source: "./media/characters/zarya/front.svg",
  50182. extra: 593/572,
  50183. bottom: 50/643
  50184. }
  50185. },
  50186. back: {
  50187. height: math.unit(5 + 10/12, "feet"),
  50188. weight: math.unit(220, "lb"),
  50189. name: "Back",
  50190. image: {
  50191. source: "./media/characters/zarya/back.svg",
  50192. extra: 603/582,
  50193. bottom: 38/641
  50194. }
  50195. },
  50196. },
  50197. [
  50198. {
  50199. name: "Normal",
  50200. height: math.unit(5 + 10/12, "feet"),
  50201. default: true
  50202. },
  50203. ]
  50204. ))
  50205. characterMakers.push(() => makeCharacter(
  50206. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50207. {
  50208. front: {
  50209. height: math.unit(7.5, "feet"),
  50210. name: "Front",
  50211. image: {
  50212. source: "./media/characters/sven-hatisson/front.svg",
  50213. extra: 917/857,
  50214. bottom: 42/959
  50215. }
  50216. },
  50217. back: {
  50218. height: math.unit(7.5, "feet"),
  50219. name: "Back",
  50220. image: {
  50221. source: "./media/characters/sven-hatisson/back.svg",
  50222. extra: 903/856,
  50223. bottom: 15/918
  50224. }
  50225. },
  50226. },
  50227. [
  50228. {
  50229. name: "Base Height",
  50230. height: math.unit(7.5, "feet")
  50231. },
  50232. {
  50233. name: "Usual Height",
  50234. height: math.unit(13.5, "feet"),
  50235. default: true
  50236. },
  50237. {
  50238. name: "Smaller Macro",
  50239. height: math.unit(85, "feet")
  50240. },
  50241. {
  50242. name: "Moderate Macro",
  50243. height: math.unit(320, "feet")
  50244. },
  50245. {
  50246. name: "Large Macro",
  50247. height: math.unit(1000, "feet")
  50248. },
  50249. {
  50250. name: "Largest Size",
  50251. height: math.unit(2, "miles")
  50252. },
  50253. ]
  50254. ))
  50255. characterMakers.push(() => makeCharacter(
  50256. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50257. {
  50258. side: {
  50259. height: math.unit(1.8, "meters"),
  50260. weight: math.unit(275, "kg"),
  50261. name: "Side",
  50262. image: {
  50263. source: "./media/characters/terra/side.svg",
  50264. extra: 1273/1147,
  50265. bottom: 0/1273
  50266. }
  50267. },
  50268. },
  50269. [
  50270. {
  50271. name: "Normal",
  50272. height: math.unit(16.2, "meters"),
  50273. default: true
  50274. },
  50275. ]
  50276. ))
  50277. characterMakers.push(() => makeCharacter(
  50278. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50279. {
  50280. borzoiFront: {
  50281. height: math.unit(6 + 9/12, "feet"),
  50282. name: "Front",
  50283. image: {
  50284. source: "./media/characters/rae/borzoi-front.svg",
  50285. extra: 1161/1098,
  50286. bottom: 31/1192
  50287. },
  50288. form: "borzoi",
  50289. default: true
  50290. },
  50291. werewolfFront: {
  50292. height: math.unit(8 + 7/12, "feet"),
  50293. name: "Front",
  50294. image: {
  50295. source: "./media/characters/rae/werewolf-front.svg",
  50296. extra: 1411/1334,
  50297. bottom: 127/1538
  50298. },
  50299. form: "werewolf",
  50300. default: true
  50301. },
  50302. },
  50303. [
  50304. {
  50305. name: "Normal",
  50306. height: math.unit(6 + 9/12, "feet"),
  50307. default: true,
  50308. form: "borzoi"
  50309. },
  50310. {
  50311. name: "Normal",
  50312. height: math.unit(8 + 7/12, "feet"),
  50313. default: true,
  50314. form: "werewolf"
  50315. },
  50316. ],
  50317. {
  50318. "borzoi": {
  50319. name: "Borzoi",
  50320. default: true
  50321. },
  50322. "werewolf": {
  50323. name: "Werewolf",
  50324. },
  50325. }
  50326. ))
  50327. characterMakers.push(() => makeCharacter(
  50328. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50329. {
  50330. front: {
  50331. height: math.unit(8 + 7/12, "feet"),
  50332. weight: math.unit(482, "lb"),
  50333. name: "Front",
  50334. image: {
  50335. source: "./media/characters/kit/front.svg",
  50336. extra: 1247/1103,
  50337. bottom: 41/1288
  50338. }
  50339. },
  50340. back: {
  50341. height: math.unit(8 + 7/12, "feet"),
  50342. weight: math.unit(482, "lb"),
  50343. name: "Back",
  50344. image: {
  50345. source: "./media/characters/kit/back.svg",
  50346. extra: 1252/1123,
  50347. bottom: 21/1273
  50348. }
  50349. },
  50350. paw: {
  50351. height: math.unit(1.46, "feet"),
  50352. name: "Paw",
  50353. image: {
  50354. source: "./media/characters/kit/paw.svg"
  50355. }
  50356. },
  50357. },
  50358. [
  50359. {
  50360. name: "Normal",
  50361. height: math.unit(8 + 7/12, "feet"),
  50362. default: true
  50363. },
  50364. {
  50365. name: "Tall",
  50366. height: math.unit(7.8, "meters")
  50367. },
  50368. {
  50369. name: "Very Tall",
  50370. height: math.unit(17.9, "meters")
  50371. },
  50372. {
  50373. name: "Semi-Macro",
  50374. height: math.unit(45.8, "meters")
  50375. },
  50376. {
  50377. name: "Macro",
  50378. height: math.unit(86.1, "meters")
  50379. },
  50380. {
  50381. name: "Godlike",
  50382. height: math.unit(749.9, "meters")
  50383. },
  50384. {
  50385. name: "Second Form",
  50386. height: math.unit(92183.9, "meters")
  50387. },
  50388. {
  50389. name: "Third Form",
  50390. height: math.unit(164665.7, "meters")
  50391. },
  50392. {
  50393. name: "Fourth Form",
  50394. height: math.unit(745112.2, "meters")
  50395. },
  50396. {
  50397. name: "Final Form",
  50398. height: math.unit(9.14e144, "meters")
  50399. },
  50400. ]
  50401. ))
  50402. characterMakers.push(() => makeCharacter(
  50403. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50404. {
  50405. side: {
  50406. height: math.unit(0.6, "meters"),
  50407. weight: math.unit(24, "kg"),
  50408. name: "Side",
  50409. image: {
  50410. source: "./media/characters/celeste/side.svg",
  50411. extra: 810/517,
  50412. bottom: 53/863
  50413. }
  50414. },
  50415. },
  50416. [
  50417. {
  50418. name: "Velociraptor",
  50419. height: math.unit(0.6, "meters"),
  50420. default: true
  50421. },
  50422. {
  50423. name: "Utahraptor",
  50424. height: math.unit(1.8, "meters")
  50425. },
  50426. {
  50427. name: "Gallimimus",
  50428. height: math.unit(4.0, "meters")
  50429. },
  50430. {
  50431. name: "Large",
  50432. height: math.unit(20, "meters")
  50433. },
  50434. {
  50435. name: "Planetary",
  50436. height: math.unit(50, "megameters")
  50437. },
  50438. {
  50439. name: "Stellar",
  50440. height: math.unit(1.5, "gigameters")
  50441. },
  50442. {
  50443. name: "Galactic",
  50444. height: math.unit(100, "exameters")
  50445. },
  50446. ]
  50447. ))
  50448. characterMakers.push(() => makeCharacter(
  50449. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50450. {
  50451. front: {
  50452. height: math.unit(6, "feet"),
  50453. weight: math.unit(210, "lb"),
  50454. name: "Front",
  50455. image: {
  50456. source: "./media/characters/glacia/front.svg",
  50457. extra: 958/901,
  50458. bottom: 45/1003
  50459. }
  50460. },
  50461. },
  50462. [
  50463. {
  50464. name: "Macro",
  50465. height: math.unit(1000, "meters"),
  50466. default: true
  50467. },
  50468. ]
  50469. ))
  50470. characterMakers.push(() => makeCharacter(
  50471. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50472. {
  50473. front: {
  50474. height: math.unit(4, "meters"),
  50475. name: "Front",
  50476. image: {
  50477. source: "./media/characters/giri/front.svg",
  50478. extra: 966/894,
  50479. bottom: 21/987
  50480. }
  50481. },
  50482. },
  50483. [
  50484. {
  50485. name: "Normal",
  50486. height: math.unit(4, "meters"),
  50487. default: true
  50488. },
  50489. ]
  50490. ))
  50491. characterMakers.push(() => makeCharacter(
  50492. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50493. {
  50494. back: {
  50495. height: math.unit(4, "feet"),
  50496. weight: math.unit(37, "lb"),
  50497. name: "Back",
  50498. image: {
  50499. source: "./media/characters/tin/back.svg",
  50500. extra: 845/780,
  50501. bottom: 28/873
  50502. }
  50503. },
  50504. },
  50505. [
  50506. {
  50507. name: "Normal",
  50508. height: math.unit(4, "feet"),
  50509. default: true
  50510. },
  50511. ]
  50512. ))
  50513. characterMakers.push(() => makeCharacter(
  50514. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50515. {
  50516. front: {
  50517. height: math.unit(25, "feet"),
  50518. name: "Front",
  50519. image: {
  50520. source: "./media/characters/cadenza-vivace/front.svg",
  50521. extra: 1842/1578,
  50522. bottom: 30/1872
  50523. }
  50524. },
  50525. },
  50526. [
  50527. {
  50528. name: "Macro",
  50529. height: math.unit(25, "feet"),
  50530. default: true
  50531. },
  50532. ]
  50533. ))
  50534. //characters
  50535. function makeCharacters() {
  50536. const results = [];
  50537. characterMakers.forEach(character => {
  50538. results.push(character());
  50539. });
  50540. return results;
  50541. }