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.
 
 
 

54814 lines
1.4 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3 * 3 / 4,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "corvid"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "passerine"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["bird-of-prey"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["nargacuga"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["bird-of-prey"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. "mink": {
  2047. name: "Mink",
  2048. parents: ["mustelid"]
  2049. },
  2050. "sandcat": {
  2051. name: "Sandcat",
  2052. parents: ["cat"]
  2053. },
  2054. "hrothgar": {
  2055. name: "Hrothgar",
  2056. parents: ["cat"]
  2057. },
  2058. "garchomp": {
  2059. name: "Garchomp",
  2060. parents: ["dragon", "pokemon"]
  2061. },
  2062. "nargacuga": {
  2063. name: "Nargacuga",
  2064. parents: ["monster-hunter"]
  2065. },
  2066. "sable": {
  2067. name: "Sable",
  2068. parents: ["marten"]
  2069. },
  2070. "deino": {
  2071. name: "Deino",
  2072. parents: ["pokemon", "dinosaur"]
  2073. },
  2074. }
  2075. //species
  2076. function getSpeciesInfo(speciesList) {
  2077. let result = new Set();
  2078. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2079. result.add(entry)
  2080. });
  2081. return Array.from(result);
  2082. };
  2083. function getSpeciesInfoHelper(species) {
  2084. if (!speciesData[species]) {
  2085. console.warn(species + " doesn't exist");
  2086. return [];
  2087. }
  2088. if (speciesData[species].parents) {
  2089. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2090. } else {
  2091. return [species];
  2092. }
  2093. }
  2094. characterMakers.push(() => makeCharacter(
  2095. {
  2096. name: "Fen",
  2097. species: ["crux"],
  2098. description: {
  2099. title: "Bio",
  2100. text: "Very furry. Sheds on everything."
  2101. },
  2102. tags: [
  2103. "anthro",
  2104. "goo"
  2105. ]
  2106. },
  2107. {
  2108. front: {
  2109. height: math.unit(12, "feet"),
  2110. weight: math.unit(2400, "lb"),
  2111. name: "Front",
  2112. image: {
  2113. source: "./media/characters/fen/front.svg",
  2114. extra: 1804/1562,
  2115. bottom: 205/2009
  2116. },
  2117. extraAttributes: {
  2118. pawSize: {
  2119. name: "Paw Size",
  2120. power: 2,
  2121. type: "area",
  2122. base: math.unit(0.35, "m^2")
  2123. }
  2124. }
  2125. },
  2126. diving: {
  2127. height: math.unit(4.9, "meters"),
  2128. weight: math.unit(2400, "lb"),
  2129. name: "Diving",
  2130. image: {
  2131. source: "./media/characters/fen/diving.svg"
  2132. }
  2133. },
  2134. sleeby: {
  2135. height: math.unit(3.45, "meters"),
  2136. weight: math.unit(2400, "lb"),
  2137. name: "Sleeby",
  2138. image: {
  2139. source: "./media/characters/fen/sleeby.svg"
  2140. }
  2141. },
  2142. goo: {
  2143. height: math.unit(12, "feet"),
  2144. weight: math.unit(3600, "lb"),
  2145. volume: math.unit(1000, "liters"),
  2146. preyCapacity: math.unit(6, "people"),
  2147. name: "Goo",
  2148. image: {
  2149. source: "./media/characters/fen/goo.svg",
  2150. extra: 1307/1071,
  2151. bottom: 134/1441
  2152. }
  2153. },
  2154. gooNsfw: {
  2155. height: math.unit(12, "feet"),
  2156. weight: math.unit(3750, "lb"),
  2157. volume: math.unit(1000, "liters"),
  2158. preyCapacity: math.unit(6, "people"),
  2159. name: "Goo (NSFW)",
  2160. image: {
  2161. source: "./media/characters/fen/goo-nsfw.svg",
  2162. extra: 1875/1734,
  2163. bottom: 122/1997
  2164. }
  2165. },
  2166. maw: {
  2167. height: math.unit(5.03, "feet"),
  2168. name: "Maw",
  2169. image: {
  2170. source: "./media/characters/fen/maw.svg"
  2171. }
  2172. },
  2173. gooCeiling: {
  2174. height: math.unit(6.6, "feet"),
  2175. weight: math.unit(3000, "lb"),
  2176. volume: math.unit(1000, "liters"),
  2177. preyCapacity: math.unit(6, "people"),
  2178. name: "Goo (Ceiling)",
  2179. image: {
  2180. source: "./media/characters/fen/goo-ceiling.svg"
  2181. }
  2182. },
  2183. paw: {
  2184. height: math.unit(3.77, "feet"),
  2185. name: "Paw",
  2186. image: {
  2187. source: "./media/characters/fen/paw.svg"
  2188. },
  2189. extraAttributes: {
  2190. "toeSize": {
  2191. name: "Toe Size",
  2192. power: 2,
  2193. type: "area",
  2194. base: math.unit(0.02875, "m^2")
  2195. },
  2196. "pawSize": {
  2197. name: "Paw Size",
  2198. power: 2,
  2199. type: "area",
  2200. base: math.unit(0.378, "m^2")
  2201. },
  2202. }
  2203. },
  2204. tail: {
  2205. height: math.unit(12.1, "feet"),
  2206. name: "Tail",
  2207. image: {
  2208. source: "./media/characters/fen/tail.svg"
  2209. }
  2210. },
  2211. tailFull: {
  2212. height: math.unit(12.1, "feet"),
  2213. name: "Full Tail",
  2214. image: {
  2215. source: "./media/characters/fen/tail-full.svg"
  2216. }
  2217. },
  2218. back: {
  2219. height: math.unit(12, "feet"),
  2220. weight: math.unit(2400, "lb"),
  2221. name: "Back",
  2222. image: {
  2223. source: "./media/characters/fen/back.svg",
  2224. },
  2225. info: {
  2226. description: {
  2227. mode: "append",
  2228. text: "\n\nHe is not currently looking at you."
  2229. }
  2230. }
  2231. },
  2232. full: {
  2233. height: math.unit(1.85, "meter"),
  2234. weight: math.unit(3200, "lb"),
  2235. name: "Full",
  2236. image: {
  2237. source: "./media/characters/fen/full.svg",
  2238. extra: 1133/859,
  2239. bottom: 145/1278
  2240. },
  2241. info: {
  2242. description: {
  2243. mode: "append",
  2244. text: "\n\nMunch."
  2245. }
  2246. }
  2247. },
  2248. gooLounging: {
  2249. height: math.unit(4.53, "feet"),
  2250. weight: math.unit(3000, "lb"),
  2251. preyCapacity: math.unit(6, "people"),
  2252. name: "Goo (Lounging)",
  2253. image: {
  2254. source: "./media/characters/fen/goo-lounging.svg",
  2255. bottom: 116 / 613
  2256. }
  2257. },
  2258. lounging: {
  2259. height: math.unit(10.52, "feet"),
  2260. weight: math.unit(2400, "lb"),
  2261. name: "Lounging",
  2262. image: {
  2263. source: "./media/characters/fen/lounging.svg"
  2264. }
  2265. },
  2266. },
  2267. [
  2268. {
  2269. name: "Small",
  2270. height: math.unit(2.2428, "meter")
  2271. },
  2272. {
  2273. name: "Normal",
  2274. height: math.unit(12, "feet"),
  2275. default: true,
  2276. },
  2277. {
  2278. name: "Big",
  2279. height: math.unit(20, "feet")
  2280. },
  2281. {
  2282. name: "Minimacro",
  2283. height: math.unit(40, "feet"),
  2284. info: {
  2285. description: {
  2286. mode: "append",
  2287. text: "\n\nTOO DAMN BIG"
  2288. }
  2289. }
  2290. },
  2291. {
  2292. name: "Macro",
  2293. height: math.unit(100, "feet"),
  2294. info: {
  2295. description: {
  2296. mode: "append",
  2297. text: "\n\nTOO DAMN BIG"
  2298. }
  2299. }
  2300. },
  2301. {
  2302. name: "Megamacro",
  2303. height: math.unit(2, "miles")
  2304. },
  2305. {
  2306. name: "Gigamacro",
  2307. height: math.unit(10, "earths")
  2308. },
  2309. ]
  2310. ))
  2311. characterMakers.push(() => makeCharacter(
  2312. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2313. {
  2314. front: {
  2315. height: math.unit(183, "cm"),
  2316. weight: math.unit(80, "kg"),
  2317. name: "Front",
  2318. image: {
  2319. source: "./media/characters/sofia-fluttertail/front.svg",
  2320. bottom: 0.01,
  2321. extra: 2154 / 2081
  2322. }
  2323. },
  2324. frontAlt: {
  2325. height: math.unit(183, "cm"),
  2326. weight: math.unit(80, "kg"),
  2327. name: "Front (alt)",
  2328. image: {
  2329. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2330. }
  2331. },
  2332. back: {
  2333. height: math.unit(183, "cm"),
  2334. weight: math.unit(80, "kg"),
  2335. name: "Back",
  2336. image: {
  2337. source: "./media/characters/sofia-fluttertail/back.svg"
  2338. }
  2339. },
  2340. kneeling: {
  2341. height: math.unit(125, "cm"),
  2342. weight: math.unit(80, "kg"),
  2343. name: "Kneeling",
  2344. image: {
  2345. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2346. extra: 1033 / 977,
  2347. bottom: 23.7 / 1057
  2348. }
  2349. },
  2350. maw: {
  2351. height: math.unit(183 / 5, "cm"),
  2352. name: "Maw",
  2353. image: {
  2354. source: "./media/characters/sofia-fluttertail/maw.svg"
  2355. }
  2356. },
  2357. mawcloseup: {
  2358. height: math.unit(183 / 5 * 0.41, "cm"),
  2359. name: "Maw (Closeup)",
  2360. image: {
  2361. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2362. }
  2363. },
  2364. paws: {
  2365. height: math.unit(1.17, "feet"),
  2366. name: "Paws",
  2367. image: {
  2368. source: "./media/characters/sofia-fluttertail/paws.svg",
  2369. extra: 851 / 851,
  2370. bottom: 17 / 868
  2371. }
  2372. },
  2373. },
  2374. [
  2375. {
  2376. name: "Normal",
  2377. height: math.unit(1.83, "meter")
  2378. },
  2379. {
  2380. name: "Size Thief",
  2381. height: math.unit(18, "feet")
  2382. },
  2383. {
  2384. name: "50 Foot Collie",
  2385. height: math.unit(50, "feet")
  2386. },
  2387. {
  2388. name: "Macro",
  2389. height: math.unit(96, "feet"),
  2390. default: true
  2391. },
  2392. {
  2393. name: "Megamerger",
  2394. height: math.unit(650, "feet")
  2395. },
  2396. ]
  2397. ))
  2398. characterMakers.push(() => makeCharacter(
  2399. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2400. {
  2401. front: {
  2402. height: math.unit(7, "feet"),
  2403. weight: math.unit(100, "kg"),
  2404. name: "Front",
  2405. image: {
  2406. source: "./media/characters/march/front.svg",
  2407. extra: 1992/1851,
  2408. bottom: 39/2031
  2409. }
  2410. },
  2411. foot: {
  2412. height: math.unit(0.9, "feet"),
  2413. name: "Foot",
  2414. image: {
  2415. source: "./media/characters/march/foot.svg"
  2416. }
  2417. },
  2418. },
  2419. [
  2420. {
  2421. name: "Normal",
  2422. height: math.unit(7.9, "feet")
  2423. },
  2424. {
  2425. name: "Macro",
  2426. height: math.unit(220, "meters")
  2427. },
  2428. {
  2429. name: "Megamacro",
  2430. height: math.unit(2.98, "km"),
  2431. default: true
  2432. },
  2433. {
  2434. name: "Gigamacro",
  2435. height: math.unit(15963, "km")
  2436. },
  2437. {
  2438. name: "Teramacro",
  2439. height: math.unit(2980000000, "km")
  2440. },
  2441. {
  2442. name: "Examacro",
  2443. height: math.unit(250, "parsecs")
  2444. },
  2445. ]
  2446. ))
  2447. characterMakers.push(() => makeCharacter(
  2448. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2449. {
  2450. front: {
  2451. height: math.unit(6, "feet"),
  2452. weight: math.unit(60, "kg"),
  2453. name: "Front",
  2454. image: {
  2455. source: "./media/characters/noir/front.svg",
  2456. extra: 1,
  2457. bottom: 0.032
  2458. }
  2459. },
  2460. },
  2461. [
  2462. {
  2463. name: "Normal",
  2464. height: math.unit(6.6, "feet")
  2465. },
  2466. {
  2467. name: "Macro",
  2468. height: math.unit(500, "feet")
  2469. },
  2470. {
  2471. name: "Megamacro",
  2472. height: math.unit(2.5, "km"),
  2473. default: true
  2474. },
  2475. {
  2476. name: "Gigamacro",
  2477. height: math.unit(22500, "km")
  2478. },
  2479. {
  2480. name: "Teramacro",
  2481. height: math.unit(2500000000, "km")
  2482. },
  2483. {
  2484. name: "Examacro",
  2485. height: math.unit(200, "parsecs")
  2486. },
  2487. ]
  2488. ))
  2489. characterMakers.push(() => makeCharacter(
  2490. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2491. {
  2492. front: {
  2493. height: math.unit(7, "feet"),
  2494. weight: math.unit(100, "kg"),
  2495. name: "Front",
  2496. image: {
  2497. source: "./media/characters/okuri/front.svg",
  2498. extra: 739/665,
  2499. bottom: 39/778
  2500. }
  2501. },
  2502. back: {
  2503. height: math.unit(7, "feet"),
  2504. weight: math.unit(100, "kg"),
  2505. name: "Back",
  2506. image: {
  2507. source: "./media/characters/okuri/back.svg",
  2508. extra: 734/653,
  2509. bottom: 13/747
  2510. }
  2511. },
  2512. sitting: {
  2513. height: math.unit(2.95, "feet"),
  2514. weight: math.unit(100, "kg"),
  2515. name: "Sitting",
  2516. image: {
  2517. source: "./media/characters/okuri/sitting.svg",
  2518. extra: 370/318,
  2519. bottom: 99/469
  2520. }
  2521. },
  2522. },
  2523. [
  2524. {
  2525. name: "Smallest",
  2526. height: math.unit(5 + 2/12, "feet")
  2527. },
  2528. {
  2529. name: "Smaller",
  2530. height: math.unit(300, "feet")
  2531. },
  2532. {
  2533. name: "Small",
  2534. height: math.unit(1000, "feet")
  2535. },
  2536. {
  2537. name: "Macro",
  2538. height: math.unit(1, "mile")
  2539. },
  2540. {
  2541. name: "Mega Macro (Small)",
  2542. height: math.unit(20, "km")
  2543. },
  2544. {
  2545. name: "Mega Macro (Large)",
  2546. height: math.unit(600, "km")
  2547. },
  2548. {
  2549. name: "Giga Macro",
  2550. height: math.unit(10000, "km")
  2551. },
  2552. {
  2553. name: "Normal",
  2554. height: math.unit(577560, "km"),
  2555. default: true
  2556. },
  2557. {
  2558. name: "Large",
  2559. height: math.unit(4, "galaxies")
  2560. },
  2561. {
  2562. name: "Largest",
  2563. height: math.unit(15, "multiverses")
  2564. },
  2565. ]
  2566. ))
  2567. characterMakers.push(() => makeCharacter(
  2568. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2569. {
  2570. front: {
  2571. height: math.unit(7, "feet"),
  2572. weight: math.unit(100, "kg"),
  2573. name: "Front",
  2574. image: {
  2575. source: "./media/characters/manny/front.svg",
  2576. extra: 1,
  2577. bottom: 0.06
  2578. }
  2579. },
  2580. back: {
  2581. height: math.unit(7, "feet"),
  2582. weight: math.unit(100, "kg"),
  2583. name: "Back",
  2584. image: {
  2585. source: "./media/characters/manny/back.svg",
  2586. extra: 1,
  2587. bottom: 0.014
  2588. }
  2589. },
  2590. },
  2591. [
  2592. {
  2593. name: "Normal",
  2594. height: math.unit(7, "feet"),
  2595. },
  2596. {
  2597. name: "Macro",
  2598. height: math.unit(78, "feet"),
  2599. default: true
  2600. },
  2601. {
  2602. name: "Macro+",
  2603. height: math.unit(300, "meters")
  2604. },
  2605. {
  2606. name: "Macro++",
  2607. height: math.unit(2400, "meters")
  2608. },
  2609. {
  2610. name: "Megamacro",
  2611. height: math.unit(5167, "meters")
  2612. },
  2613. {
  2614. name: "Gigamacro",
  2615. height: math.unit(41769, "miles")
  2616. },
  2617. ]
  2618. ))
  2619. characterMakers.push(() => makeCharacter(
  2620. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2621. {
  2622. front: {
  2623. height: math.unit(7, "feet"),
  2624. weight: math.unit(100, "kg"),
  2625. name: "Front",
  2626. image: {
  2627. source: "./media/characters/adake/front-1.svg"
  2628. }
  2629. },
  2630. frontAlt: {
  2631. height: math.unit(7, "feet"),
  2632. weight: math.unit(100, "kg"),
  2633. name: "Front (Alt)",
  2634. image: {
  2635. source: "./media/characters/adake/front-2.svg",
  2636. extra: 1,
  2637. bottom: 0.01
  2638. }
  2639. },
  2640. back: {
  2641. height: math.unit(7, "feet"),
  2642. weight: math.unit(100, "kg"),
  2643. name: "Back",
  2644. image: {
  2645. source: "./media/characters/adake/back.svg",
  2646. }
  2647. },
  2648. kneel: {
  2649. height: math.unit(5.385, "feet"),
  2650. weight: math.unit(100, "kg"),
  2651. name: "Kneeling",
  2652. image: {
  2653. source: "./media/characters/adake/kneel.svg",
  2654. bottom: 0.052
  2655. }
  2656. },
  2657. },
  2658. [
  2659. {
  2660. name: "Normal",
  2661. height: math.unit(7, "feet"),
  2662. },
  2663. {
  2664. name: "Macro",
  2665. height: math.unit(78, "feet"),
  2666. default: true
  2667. },
  2668. {
  2669. name: "Macro+",
  2670. height: math.unit(300, "meters")
  2671. },
  2672. {
  2673. name: "Macro++",
  2674. height: math.unit(2400, "meters")
  2675. },
  2676. {
  2677. name: "Megamacro",
  2678. height: math.unit(5167, "meters")
  2679. },
  2680. {
  2681. name: "Gigamacro",
  2682. height: math.unit(41769, "miles")
  2683. },
  2684. ]
  2685. ))
  2686. characterMakers.push(() => makeCharacter(
  2687. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2688. {
  2689. front: {
  2690. height: math.unit(1.65, "meters"),
  2691. weight: math.unit(50, "kg"),
  2692. name: "Front",
  2693. image: {
  2694. source: "./media/characters/elijah/front.svg",
  2695. extra: 858 / 830,
  2696. bottom: 95.5 / 953.8559
  2697. }
  2698. },
  2699. back: {
  2700. height: math.unit(1.65, "meters"),
  2701. weight: math.unit(50, "kg"),
  2702. name: "Back",
  2703. image: {
  2704. source: "./media/characters/elijah/back.svg",
  2705. extra: 895 / 850,
  2706. bottom: 5.3 / 897.956
  2707. }
  2708. },
  2709. frontNsfw: {
  2710. height: math.unit(1.65, "meters"),
  2711. weight: math.unit(50, "kg"),
  2712. name: "Front (NSFW)",
  2713. image: {
  2714. source: "./media/characters/elijah/front-nsfw.svg",
  2715. extra: 858 / 830,
  2716. bottom: 95.5 / 953.8559
  2717. }
  2718. },
  2719. backNsfw: {
  2720. height: math.unit(1.65, "meters"),
  2721. weight: math.unit(50, "kg"),
  2722. name: "Back (NSFW)",
  2723. image: {
  2724. source: "./media/characters/elijah/back-nsfw.svg",
  2725. extra: 895 / 850,
  2726. bottom: 5.3 / 897.956
  2727. }
  2728. },
  2729. dick: {
  2730. height: math.unit(1, "feet"),
  2731. name: "Dick",
  2732. image: {
  2733. source: "./media/characters/elijah/dick.svg"
  2734. }
  2735. },
  2736. beakOpen: {
  2737. height: math.unit(1.25, "feet"),
  2738. name: "Beak (Open)",
  2739. image: {
  2740. source: "./media/characters/elijah/beak-open.svg"
  2741. }
  2742. },
  2743. beakShut: {
  2744. height: math.unit(1.25, "feet"),
  2745. name: "Beak (Shut)",
  2746. image: {
  2747. source: "./media/characters/elijah/beak-shut.svg"
  2748. }
  2749. },
  2750. footFlexing: {
  2751. height: math.unit(1.61, "feet"),
  2752. name: "Foot (Flexing)",
  2753. image: {
  2754. source: "./media/characters/elijah/foot-flexing.svg"
  2755. }
  2756. },
  2757. footStepping: {
  2758. height: math.unit(1.44, "feet"),
  2759. name: "Foot (Stepping)",
  2760. image: {
  2761. source: "./media/characters/elijah/foot-stepping.svg"
  2762. }
  2763. },
  2764. plantigradeLeg: {
  2765. height: math.unit(2.34, "feet"),
  2766. name: "Plantigrade Leg",
  2767. image: {
  2768. source: "./media/characters/elijah/plantigrade-leg.svg"
  2769. }
  2770. },
  2771. plantigradeFootLeft: {
  2772. height: math.unit(0.9, "feet"),
  2773. name: "Plantigrade Foot (Left)",
  2774. image: {
  2775. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2776. }
  2777. },
  2778. plantigradeFootRight: {
  2779. height: math.unit(0.9, "feet"),
  2780. name: "Plantigrade Foot (Right)",
  2781. image: {
  2782. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2783. }
  2784. },
  2785. },
  2786. [
  2787. {
  2788. name: "Normal",
  2789. height: math.unit(1.65, "meters")
  2790. },
  2791. {
  2792. name: "Macro",
  2793. height: math.unit(55, "meters"),
  2794. default: true
  2795. },
  2796. {
  2797. name: "Macro+",
  2798. height: math.unit(105, "meters")
  2799. },
  2800. ]
  2801. ))
  2802. characterMakers.push(() => makeCharacter(
  2803. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2804. {
  2805. front: {
  2806. height: math.unit(7 + 2/12, "feet"),
  2807. weight: math.unit(320, "kg"),
  2808. name: "Front",
  2809. image: {
  2810. source: "./media/characters/rai/front.svg",
  2811. extra: 1802/1696,
  2812. bottom: 68/1870
  2813. }
  2814. },
  2815. frontDressed: {
  2816. height: math.unit(7 + 2/12, "feet"),
  2817. weight: math.unit(320, "kg"),
  2818. name: "Front (Dressed)",
  2819. image: {
  2820. source: "./media/characters/rai/front-dressed.svg",
  2821. extra: 1802/1696,
  2822. bottom: 68/1870
  2823. }
  2824. },
  2825. side: {
  2826. height: math.unit(7 + 2/12, "feet"),
  2827. weight: math.unit(320, "kg"),
  2828. name: "Side",
  2829. image: {
  2830. source: "./media/characters/rai/side.svg",
  2831. extra: 1789/1710,
  2832. bottom: 115/1904
  2833. }
  2834. },
  2835. back: {
  2836. height: math.unit(7 + 2/12, "feet"),
  2837. weight: math.unit(320, "kg"),
  2838. name: "Back",
  2839. image: {
  2840. source: "./media/characters/rai/back.svg",
  2841. extra: 1770/1707,
  2842. bottom: 28/1798
  2843. }
  2844. },
  2845. feral: {
  2846. height: math.unit(9.5, "feet"),
  2847. weight: math.unit(640, "kg"),
  2848. name: "Feral",
  2849. image: {
  2850. source: "./media/characters/rai/feral.svg",
  2851. extra: 945/553,
  2852. bottom: 176/1121
  2853. }
  2854. },
  2855. dragon: {
  2856. height: math.unit(23, "feet"),
  2857. weight: math.unit(50000, "lb"),
  2858. name: "Dragon",
  2859. image: {
  2860. source: "./media/characters/rai/dragon.svg",
  2861. extra: 2498 / 2030,
  2862. bottom: 85.2 / 2584
  2863. }
  2864. },
  2865. maw: {
  2866. height: math.unit(1.69, "feet"),
  2867. name: "Maw",
  2868. image: {
  2869. source: "./media/characters/rai/maw.svg"
  2870. }
  2871. },
  2872. },
  2873. [
  2874. {
  2875. name: "Normal",
  2876. height: math.unit(7 + 2/12, "feet")
  2877. },
  2878. {
  2879. name: "Big",
  2880. height: math.unit(11, "feet")
  2881. },
  2882. {
  2883. name: "Macro",
  2884. height: math.unit(302, "feet"),
  2885. default: true
  2886. },
  2887. ]
  2888. ))
  2889. characterMakers.push(() => makeCharacter(
  2890. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2891. {
  2892. frontDressed: {
  2893. height: math.unit(216, "feet"),
  2894. weight: math.unit(7000000, "lb"),
  2895. name: "Front (Dressed)",
  2896. image: {
  2897. source: "./media/characters/jazzy/front-dressed.svg",
  2898. extra: 2738 / 2651,
  2899. bottom: 41.8 / 2786
  2900. }
  2901. },
  2902. backDressed: {
  2903. height: math.unit(216, "feet"),
  2904. weight: math.unit(7000000, "lb"),
  2905. name: "Back (Dressed)",
  2906. image: {
  2907. source: "./media/characters/jazzy/back-dressed.svg",
  2908. extra: 2775 / 2673,
  2909. bottom: 36.8 / 2817
  2910. }
  2911. },
  2912. front: {
  2913. height: math.unit(216, "feet"),
  2914. weight: math.unit(7000000, "lb"),
  2915. name: "Front",
  2916. image: {
  2917. source: "./media/characters/jazzy/front.svg",
  2918. extra: 2738 / 2651,
  2919. bottom: 41.8 / 2786
  2920. }
  2921. },
  2922. back: {
  2923. height: math.unit(216, "feet"),
  2924. weight: math.unit(7000000, "lb"),
  2925. name: "Back",
  2926. image: {
  2927. source: "./media/characters/jazzy/back.svg",
  2928. extra: 2775 / 2673,
  2929. bottom: 36.8 / 2817
  2930. }
  2931. },
  2932. maw: {
  2933. height: math.unit(20, "feet"),
  2934. name: "Maw",
  2935. image: {
  2936. source: "./media/characters/jazzy/maw.svg"
  2937. }
  2938. },
  2939. paws: {
  2940. height: math.unit(27.5, "feet"),
  2941. name: "Paws",
  2942. image: {
  2943. source: "./media/characters/jazzy/paws.svg"
  2944. }
  2945. },
  2946. eye: {
  2947. height: math.unit(4.4, "feet"),
  2948. name: "Eye",
  2949. image: {
  2950. source: "./media/characters/jazzy/eye.svg"
  2951. }
  2952. },
  2953. droneOffense: {
  2954. height: math.unit(9.5, "inches"),
  2955. name: "Drone (Offense)",
  2956. image: {
  2957. source: "./media/characters/jazzy/drone-offense.svg"
  2958. }
  2959. },
  2960. droneRecon: {
  2961. height: math.unit(9.5, "inches"),
  2962. name: "Drone (Recon)",
  2963. image: {
  2964. source: "./media/characters/jazzy/drone-recon.svg"
  2965. }
  2966. },
  2967. droneDefense: {
  2968. height: math.unit(9.5, "inches"),
  2969. name: "Drone (Defense)",
  2970. image: {
  2971. source: "./media/characters/jazzy/drone-defense.svg"
  2972. }
  2973. },
  2974. },
  2975. [
  2976. {
  2977. name: "Macro",
  2978. height: math.unit(216, "feet"),
  2979. default: true
  2980. },
  2981. ]
  2982. ))
  2983. characterMakers.push(() => makeCharacter(
  2984. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2985. {
  2986. front: {
  2987. height: math.unit(9 + 6/12, "feet"),
  2988. weight: math.unit(700, "lb"),
  2989. name: "Front",
  2990. image: {
  2991. source: "./media/characters/flamm/front.svg",
  2992. extra: 1751/1632,
  2993. bottom: 46/1797
  2994. }
  2995. },
  2996. buff: {
  2997. height: math.unit(9 + 6/12, "feet"),
  2998. weight: math.unit(950, "lb"),
  2999. name: "Buff",
  3000. image: {
  3001. source: "./media/characters/flamm/buff.svg",
  3002. extra: 3018/2874,
  3003. bottom: 221/3239
  3004. }
  3005. },
  3006. },
  3007. [
  3008. {
  3009. name: "Normal",
  3010. height: math.unit(9.5, "feet")
  3011. },
  3012. {
  3013. name: "Macro",
  3014. height: math.unit(200, "feet"),
  3015. default: true
  3016. },
  3017. ]
  3018. ))
  3019. characterMakers.push(() => makeCharacter(
  3020. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3021. {
  3022. front: {
  3023. height: math.unit(5 + 3/12, "feet"),
  3024. weight: math.unit(60, "kg"),
  3025. name: "Front",
  3026. image: {
  3027. source: "./media/characters/zephiro/front.svg",
  3028. extra: 1873/1761,
  3029. bottom: 147/2020
  3030. }
  3031. },
  3032. side: {
  3033. height: math.unit(5 + 3/12, "feet"),
  3034. weight: math.unit(60, "kg"),
  3035. name: "Side",
  3036. image: {
  3037. source: "./media/characters/zephiro/side.svg",
  3038. extra: 1929/1827,
  3039. bottom: 65/1994
  3040. }
  3041. },
  3042. back: {
  3043. height: math.unit(5 + 3/12, "feet"),
  3044. weight: math.unit(60, "kg"),
  3045. name: "Back",
  3046. image: {
  3047. source: "./media/characters/zephiro/back.svg",
  3048. extra: 1926/1816,
  3049. bottom: 41/1967
  3050. }
  3051. },
  3052. hand: {
  3053. height: math.unit(0.68, "feet"),
  3054. name: "Hand",
  3055. image: {
  3056. source: "./media/characters/zephiro/hand.svg"
  3057. }
  3058. },
  3059. paw: {
  3060. height: math.unit(1, "feet"),
  3061. name: "Paw",
  3062. image: {
  3063. source: "./media/characters/zephiro/paw.svg"
  3064. }
  3065. },
  3066. beans: {
  3067. height: math.unit(0.93, "feet"),
  3068. name: "Beans",
  3069. image: {
  3070. source: "./media/characters/zephiro/beans.svg"
  3071. }
  3072. },
  3073. },
  3074. [
  3075. {
  3076. name: "Micro",
  3077. height: math.unit(3, "inches")
  3078. },
  3079. {
  3080. name: "Normal",
  3081. height: math.unit(5 + 3 / 12, "feet"),
  3082. default: true
  3083. },
  3084. {
  3085. name: "Macro",
  3086. height: math.unit(118, "feet")
  3087. },
  3088. ]
  3089. ))
  3090. characterMakers.push(() => makeCharacter(
  3091. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3092. {
  3093. front: {
  3094. height: math.unit(5, "feet"),
  3095. weight: math.unit(90, "kg"),
  3096. name: "Front",
  3097. image: {
  3098. source: "./media/characters/fory/front.svg",
  3099. extra: 2862 / 2674,
  3100. bottom: 180 / 3043.8
  3101. }
  3102. },
  3103. back: {
  3104. height: math.unit(5, "feet"),
  3105. weight: math.unit(90, "kg"),
  3106. name: "Back",
  3107. image: {
  3108. source: "./media/characters/fory/back.svg",
  3109. extra: 2962 / 2791,
  3110. bottom: 106 / 3071.8
  3111. }
  3112. },
  3113. foot: {
  3114. height: math.unit(2.14, "feet"),
  3115. name: "Foot",
  3116. image: {
  3117. source: "./media/characters/fory/foot.svg"
  3118. }
  3119. },
  3120. },
  3121. [
  3122. {
  3123. name: "Normal",
  3124. height: math.unit(5, "feet")
  3125. },
  3126. {
  3127. name: "Macro",
  3128. height: math.unit(50, "feet"),
  3129. default: true
  3130. },
  3131. {
  3132. name: "Megamacro",
  3133. height: math.unit(10, "miles")
  3134. },
  3135. {
  3136. name: "Gigamacro",
  3137. height: math.unit(5, "earths")
  3138. },
  3139. ]
  3140. ))
  3141. characterMakers.push(() => makeCharacter(
  3142. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3143. {
  3144. front: {
  3145. height: math.unit(7, "feet"),
  3146. weight: math.unit(90, "kg"),
  3147. name: "Front",
  3148. image: {
  3149. source: "./media/characters/kurrikage/front.svg",
  3150. extra: 1845/1733,
  3151. bottom: 119/1964
  3152. }
  3153. },
  3154. back: {
  3155. height: math.unit(7, "feet"),
  3156. weight: math.unit(90, "kg"),
  3157. name: "Back",
  3158. image: {
  3159. source: "./media/characters/kurrikage/back.svg",
  3160. extra: 1790/1677,
  3161. bottom: 61/1851
  3162. }
  3163. },
  3164. dressed: {
  3165. height: math.unit(7, "feet"),
  3166. weight: math.unit(90, "kg"),
  3167. name: "Dressed",
  3168. image: {
  3169. source: "./media/characters/kurrikage/dressed.svg",
  3170. extra: 1845/1733,
  3171. bottom: 119/1964
  3172. }
  3173. },
  3174. foot: {
  3175. height: math.unit(1.5, "feet"),
  3176. name: "Foot",
  3177. image: {
  3178. source: "./media/characters/kurrikage/foot.svg"
  3179. }
  3180. },
  3181. staff: {
  3182. height: math.unit(6.7, "feet"),
  3183. name: "Staff",
  3184. image: {
  3185. source: "./media/characters/kurrikage/staff.svg"
  3186. }
  3187. },
  3188. peek: {
  3189. height: math.unit(1.05, "feet"),
  3190. name: "Peeking",
  3191. image: {
  3192. source: "./media/characters/kurrikage/peek.svg",
  3193. bottom: 0.08
  3194. }
  3195. },
  3196. },
  3197. [
  3198. {
  3199. name: "Normal",
  3200. height: math.unit(12, "feet"),
  3201. default: true
  3202. },
  3203. {
  3204. name: "Big",
  3205. height: math.unit(20, "feet")
  3206. },
  3207. {
  3208. name: "Macro",
  3209. height: math.unit(500, "feet")
  3210. },
  3211. {
  3212. name: "Megamacro",
  3213. height: math.unit(20, "miles")
  3214. },
  3215. ]
  3216. ))
  3217. characterMakers.push(() => makeCharacter(
  3218. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3219. {
  3220. front: {
  3221. height: math.unit(6, "feet"),
  3222. weight: math.unit(75, "kg"),
  3223. name: "Front",
  3224. image: {
  3225. source: "./media/characters/shingo/front.svg",
  3226. extra: 1900/1825,
  3227. bottom: 82/1982
  3228. }
  3229. },
  3230. side: {
  3231. height: math.unit(6, "feet"),
  3232. weight: math.unit(75, "kg"),
  3233. name: "Side",
  3234. image: {
  3235. source: "./media/characters/shingo/side.svg",
  3236. extra: 1930/1865,
  3237. bottom: 16/1946
  3238. }
  3239. },
  3240. back: {
  3241. height: math.unit(6, "feet"),
  3242. weight: math.unit(75, "kg"),
  3243. name: "Back",
  3244. image: {
  3245. source: "./media/characters/shingo/back.svg",
  3246. extra: 1922/1852,
  3247. bottom: 16/1938
  3248. }
  3249. },
  3250. frontDressed: {
  3251. height: math.unit(6, "feet"),
  3252. weight: math.unit(150, "lb"),
  3253. name: "Front-dressed",
  3254. image: {
  3255. source: "./media/characters/shingo/front-dressed.svg",
  3256. extra: 1900/1825,
  3257. bottom: 82/1982
  3258. }
  3259. },
  3260. paw: {
  3261. height: math.unit(1.29, "feet"),
  3262. name: "Paw",
  3263. image: {
  3264. source: "./media/characters/shingo/paw.svg"
  3265. }
  3266. },
  3267. hand: {
  3268. height: math.unit(1.07, "feet"),
  3269. name: "Hand",
  3270. image: {
  3271. source: "./media/characters/shingo/hand.svg"
  3272. }
  3273. },
  3274. frontAlt: {
  3275. height: math.unit(6, "feet"),
  3276. weight: math.unit(75, "kg"),
  3277. name: "Front (Alt)",
  3278. image: {
  3279. source: "./media/characters/shingo/front-alt.svg",
  3280. extra: 3511 / 3338,
  3281. bottom: 0.005
  3282. }
  3283. },
  3284. frontAlt2: {
  3285. height: math.unit(6, "feet"),
  3286. weight: math.unit(75, "kg"),
  3287. name: "Front (Alt 2)",
  3288. image: {
  3289. source: "./media/characters/shingo/front-alt-2.svg",
  3290. extra: 706/681,
  3291. bottom: 11/717
  3292. }
  3293. },
  3294. pawAlt: {
  3295. height: math.unit(1, "feet"),
  3296. name: "Paw (Alt)",
  3297. image: {
  3298. source: "./media/characters/shingo/paw-alt.svg"
  3299. }
  3300. },
  3301. },
  3302. [
  3303. {
  3304. name: "Micro",
  3305. height: math.unit(4, "inches")
  3306. },
  3307. {
  3308. name: "Normal",
  3309. height: math.unit(6, "feet"),
  3310. default: true
  3311. },
  3312. {
  3313. name: "Macro",
  3314. height: math.unit(108, "feet")
  3315. },
  3316. {
  3317. name: "Macro+",
  3318. height: math.unit(1500, "feet")
  3319. },
  3320. ]
  3321. ))
  3322. characterMakers.push(() => makeCharacter(
  3323. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3324. {
  3325. side: {
  3326. height: math.unit(6, "feet"),
  3327. weight: math.unit(75, "kg"),
  3328. name: "Side",
  3329. image: {
  3330. source: "./media/characters/aigey/side.svg"
  3331. }
  3332. },
  3333. },
  3334. [
  3335. {
  3336. name: "Macro",
  3337. height: math.unit(200, "feet"),
  3338. default: true
  3339. },
  3340. {
  3341. name: "Megamacro",
  3342. height: math.unit(100, "miles")
  3343. },
  3344. ]
  3345. )
  3346. )
  3347. characterMakers.push(() => makeCharacter(
  3348. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3349. {
  3350. front: {
  3351. height: math.unit(5 + 5 / 12, "feet"),
  3352. weight: math.unit(75, "kg"),
  3353. name: "Front",
  3354. image: {
  3355. source: "./media/characters/natasha/front.svg",
  3356. extra: 859 / 824,
  3357. bottom: 23 / 879.6
  3358. }
  3359. },
  3360. frontNsfw: {
  3361. height: math.unit(5 + 5 / 12, "feet"),
  3362. weight: math.unit(75, "kg"),
  3363. name: "Front (NSFW)",
  3364. image: {
  3365. source: "./media/characters/natasha/front-nsfw.svg",
  3366. extra: 859 / 824,
  3367. bottom: 23 / 879.6
  3368. }
  3369. },
  3370. frontErect: {
  3371. height: math.unit(5 + 5 / 12, "feet"),
  3372. weight: math.unit(75, "kg"),
  3373. name: "Front (Erect)",
  3374. image: {
  3375. source: "./media/characters/natasha/front-erect.svg",
  3376. extra: 859 / 824,
  3377. bottom: 23 / 879.6
  3378. }
  3379. },
  3380. back: {
  3381. height: math.unit(5 + 5 / 12, "feet"),
  3382. weight: math.unit(75, "kg"),
  3383. name: "Back",
  3384. image: {
  3385. source: "./media/characters/natasha/back.svg",
  3386. extra: 887.9 / 852.6,
  3387. bottom: 9.7 / 896.4
  3388. }
  3389. },
  3390. backAlt: {
  3391. height: math.unit(5 + 5 / 12, "feet"),
  3392. weight: math.unit(75, "kg"),
  3393. name: "Back (Alt)",
  3394. image: {
  3395. source: "./media/characters/natasha/back-alt.svg",
  3396. extra: 1236.7 / 1192,
  3397. bottom: 22.3 / 1258.2
  3398. }
  3399. },
  3400. dick: {
  3401. height: math.unit(1.772, "feet"),
  3402. name: "Dick",
  3403. image: {
  3404. source: "./media/characters/natasha/dick.svg"
  3405. }
  3406. },
  3407. paw: {
  3408. height: math.unit(0.250, "meters"),
  3409. name: "Paw",
  3410. image: {
  3411. source: "./media/characters/natasha/paw.svg"
  3412. },
  3413. extraAttributes: {
  3414. "toeSize": {
  3415. name: "Toe Size",
  3416. power: 2,
  3417. type: "area",
  3418. base: math.unit(0.0024, "m^2")
  3419. },
  3420. "padSize": {
  3421. name: "Pad Size",
  3422. power: 2,
  3423. type: "area",
  3424. base: math.unit(0.00889, "m^2")
  3425. },
  3426. "pawSize": {
  3427. name: "Paw Size",
  3428. power: 2,
  3429. type: "area",
  3430. base: math.unit(0.023667, "m^2")
  3431. },
  3432. }
  3433. },
  3434. },
  3435. [
  3436. {
  3437. name: "Shortstack",
  3438. height: math.unit(3, "feet"),
  3439. default: true
  3440. },
  3441. {
  3442. name: "Normal",
  3443. height: math.unit(5 + 5 / 12, "feet")
  3444. },
  3445. {
  3446. name: "Large",
  3447. height: math.unit(12, "feet")
  3448. },
  3449. {
  3450. name: "Macro",
  3451. height: math.unit(100, "feet")
  3452. },
  3453. {
  3454. name: "Macro+",
  3455. height: math.unit(260, "feet")
  3456. },
  3457. {
  3458. name: "Macro++",
  3459. height: math.unit(1, "mile")
  3460. },
  3461. ]
  3462. ))
  3463. characterMakers.push(() => makeCharacter(
  3464. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3465. {
  3466. front: {
  3467. height: math.unit(6, "feet"),
  3468. weight: math.unit(75, "kg"),
  3469. name: "Front",
  3470. image: {
  3471. source: "./media/characters/malik/front.svg",
  3472. extra: 1750/1561,
  3473. bottom: 80/1830
  3474. },
  3475. extraAttributes: {
  3476. "toeSize": {
  3477. name: "Toe Size",
  3478. power: 2,
  3479. type: "area",
  3480. base: math.unit(0.0159, "m^2")
  3481. },
  3482. "pawSize": {
  3483. name: "Paw Size",
  3484. power: 2,
  3485. type: "area",
  3486. base: math.unit(0.09834, "m^2")
  3487. },
  3488. }
  3489. },
  3490. side: {
  3491. height: math.unit(6, "feet"),
  3492. weight: math.unit(75, "kg"),
  3493. name: "Side",
  3494. image: {
  3495. source: "./media/characters/malik/side.svg",
  3496. extra: 1802/1685,
  3497. bottom: 42/1844
  3498. },
  3499. extraAttributes: {
  3500. "toeSize": {
  3501. name: "Toe Size",
  3502. power: 2,
  3503. type: "area",
  3504. base: math.unit(0.0159, "m^2")
  3505. },
  3506. "pawSize": {
  3507. name: "Paw Size",
  3508. power: 2,
  3509. type: "area",
  3510. base: math.unit(0.09834, "m^2")
  3511. },
  3512. }
  3513. },
  3514. back: {
  3515. height: math.unit(6, "feet"),
  3516. weight: math.unit(75, "kg"),
  3517. name: "Back",
  3518. image: {
  3519. source: "./media/characters/malik/back.svg",
  3520. extra: 1803/1607,
  3521. bottom: 33/1836
  3522. },
  3523. extraAttributes: {
  3524. "toeSize": {
  3525. name: "Toe Size",
  3526. power: 2,
  3527. type: "area",
  3528. base: math.unit(0.0159, "m^2")
  3529. },
  3530. "pawSize": {
  3531. name: "Paw Size",
  3532. power: 2,
  3533. type: "area",
  3534. base: math.unit(0.09834, "m^2")
  3535. },
  3536. }
  3537. },
  3538. },
  3539. [
  3540. {
  3541. name: "Macro",
  3542. height: math.unit(156, "feet"),
  3543. default: true
  3544. },
  3545. {
  3546. name: "Macro+",
  3547. height: math.unit(1188, "feet")
  3548. },
  3549. ]
  3550. ))
  3551. characterMakers.push(() => makeCharacter(
  3552. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3553. {
  3554. front: {
  3555. height: math.unit(6, "feet"),
  3556. weight: math.unit(75, "kg"),
  3557. name: "Front",
  3558. image: {
  3559. source: "./media/characters/sefer/front.svg",
  3560. extra: 848 / 659,
  3561. bottom: 28.3 / 876.442
  3562. }
  3563. },
  3564. back: {
  3565. height: math.unit(6, "feet"),
  3566. weight: math.unit(75, "kg"),
  3567. name: "Back",
  3568. image: {
  3569. source: "./media/characters/sefer/back.svg",
  3570. extra: 864 / 695,
  3571. bottom: 10 / 871
  3572. }
  3573. },
  3574. frontDressed: {
  3575. height: math.unit(6, "feet"),
  3576. weight: math.unit(75, "kg"),
  3577. name: "Dressed",
  3578. image: {
  3579. source: "./media/characters/sefer/dressed.svg",
  3580. extra: 839 / 653,
  3581. bottom: 37.6 / 878
  3582. }
  3583. },
  3584. },
  3585. [
  3586. {
  3587. name: "Normal",
  3588. height: math.unit(6, "feet"),
  3589. default: true
  3590. },
  3591. {
  3592. name: "Big",
  3593. height: math.unit(8, "meters")
  3594. },
  3595. ]
  3596. ))
  3597. characterMakers.push(() => makeCharacter(
  3598. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3599. {
  3600. body: {
  3601. height: math.unit(2.2428, "meter"),
  3602. weight: math.unit(124.738, "kg"),
  3603. name: "Body",
  3604. image: {
  3605. extra: 1225 / 1050,
  3606. source: "./media/characters/north/front.svg"
  3607. }
  3608. }
  3609. },
  3610. [
  3611. {
  3612. name: "Micro",
  3613. height: math.unit(4, "inches")
  3614. },
  3615. {
  3616. name: "Macro",
  3617. height: math.unit(63, "meters")
  3618. },
  3619. {
  3620. name: "Megamacro",
  3621. height: math.unit(101, "miles"),
  3622. default: true
  3623. }
  3624. ]
  3625. ))
  3626. characterMakers.push(() => makeCharacter(
  3627. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3628. {
  3629. angled: {
  3630. height: math.unit(4, "meter"),
  3631. weight: math.unit(150, "kg"),
  3632. name: "Angled",
  3633. image: {
  3634. source: "./media/characters/talan/angled-sfw.svg",
  3635. bottom: 29 / 3734
  3636. }
  3637. },
  3638. angledNsfw: {
  3639. height: math.unit(4, "meter"),
  3640. weight: math.unit(150, "kg"),
  3641. name: "Angled (NSFW)",
  3642. image: {
  3643. source: "./media/characters/talan/angled-nsfw.svg",
  3644. bottom: 29 / 3734
  3645. }
  3646. },
  3647. frontNsfw: {
  3648. height: math.unit(4, "meter"),
  3649. weight: math.unit(150, "kg"),
  3650. name: "Front (NSFW)",
  3651. image: {
  3652. source: "./media/characters/talan/front-nsfw.svg",
  3653. bottom: 29 / 3734
  3654. }
  3655. },
  3656. sideNsfw: {
  3657. height: math.unit(4, "meter"),
  3658. weight: math.unit(150, "kg"),
  3659. name: "Side (NSFW)",
  3660. image: {
  3661. source: "./media/characters/talan/side-nsfw.svg",
  3662. bottom: 29 / 3734
  3663. }
  3664. },
  3665. back: {
  3666. height: math.unit(4, "meter"),
  3667. weight: math.unit(150, "kg"),
  3668. name: "Back",
  3669. image: {
  3670. source: "./media/characters/talan/back.svg"
  3671. }
  3672. },
  3673. dickBottom: {
  3674. height: math.unit(0.621, "meter"),
  3675. name: "Dick (Bottom)",
  3676. image: {
  3677. source: "./media/characters/talan/dick-bottom.svg"
  3678. }
  3679. },
  3680. dickTop: {
  3681. height: math.unit(0.621, "meter"),
  3682. name: "Dick (Top)",
  3683. image: {
  3684. source: "./media/characters/talan/dick-top.svg"
  3685. }
  3686. },
  3687. dickSide: {
  3688. height: math.unit(0.305, "meter"),
  3689. name: "Dick (Side)",
  3690. image: {
  3691. source: "./media/characters/talan/dick-side.svg"
  3692. }
  3693. },
  3694. dickFront: {
  3695. height: math.unit(0.305, "meter"),
  3696. name: "Dick (Front)",
  3697. image: {
  3698. source: "./media/characters/talan/dick-front.svg"
  3699. }
  3700. },
  3701. },
  3702. [
  3703. {
  3704. name: "Normal",
  3705. height: math.unit(4, "meters")
  3706. },
  3707. {
  3708. name: "Macro",
  3709. height: math.unit(100, "meters")
  3710. },
  3711. {
  3712. name: "Megamacro",
  3713. height: math.unit(2, "miles"),
  3714. default: true
  3715. },
  3716. {
  3717. name: "Gigamacro",
  3718. height: math.unit(5000, "miles")
  3719. },
  3720. {
  3721. name: "Teramacro",
  3722. height: math.unit(100, "parsecs")
  3723. }
  3724. ]
  3725. ))
  3726. characterMakers.push(() => makeCharacter(
  3727. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3728. {
  3729. front: {
  3730. height: math.unit(2, "meter"),
  3731. weight: math.unit(90, "kg"),
  3732. name: "Front",
  3733. image: {
  3734. source: "./media/characters/gael'rathus/front.svg"
  3735. }
  3736. },
  3737. frontAlt: {
  3738. height: math.unit(2, "meter"),
  3739. weight: math.unit(90, "kg"),
  3740. name: "Front (alt)",
  3741. image: {
  3742. source: "./media/characters/gael'rathus/front-alt.svg"
  3743. }
  3744. },
  3745. frontAlt2: {
  3746. height: math.unit(2, "meter"),
  3747. weight: math.unit(90, "kg"),
  3748. name: "Front (alt 2)",
  3749. image: {
  3750. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3751. }
  3752. }
  3753. },
  3754. [
  3755. {
  3756. name: "Normal",
  3757. height: math.unit(9, "feet"),
  3758. default: true
  3759. },
  3760. {
  3761. name: "Large",
  3762. height: math.unit(25, "feet")
  3763. },
  3764. {
  3765. name: "Macro",
  3766. height: math.unit(0.25, "miles")
  3767. },
  3768. {
  3769. name: "Megamacro",
  3770. height: math.unit(10, "miles")
  3771. }
  3772. ]
  3773. ))
  3774. characterMakers.push(() => makeCharacter(
  3775. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3776. {
  3777. side: {
  3778. height: math.unit(2, "meter"),
  3779. weight: math.unit(140, "kg"),
  3780. name: "Side",
  3781. image: {
  3782. source: "./media/characters/sosha/side.svg",
  3783. extra: 1170/1006,
  3784. bottom: 94/1264
  3785. }
  3786. },
  3787. maw: {
  3788. height: math.unit(2.87, "feet"),
  3789. name: "Maw",
  3790. image: {
  3791. source: "./media/characters/sosha/maw.svg",
  3792. extra: 966/865,
  3793. bottom: 0/966
  3794. }
  3795. },
  3796. cooch: {
  3797. height: math.unit(5.6, "feet"),
  3798. name: "Cooch",
  3799. image: {
  3800. source: "./media/characters/sosha/cooch.svg"
  3801. }
  3802. },
  3803. },
  3804. [
  3805. {
  3806. name: "Normal",
  3807. height: math.unit(12, "feet"),
  3808. default: true
  3809. }
  3810. ]
  3811. ))
  3812. characterMakers.push(() => makeCharacter(
  3813. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3814. {
  3815. side: {
  3816. height: math.unit(5 + 5 / 12, "feet"),
  3817. weight: math.unit(170, "kg"),
  3818. name: "Side",
  3819. image: {
  3820. source: "./media/characters/runnola/side.svg",
  3821. extra: 741 / 448,
  3822. bottom: 0.05
  3823. }
  3824. },
  3825. },
  3826. [
  3827. {
  3828. name: "Small",
  3829. height: math.unit(3, "feet")
  3830. },
  3831. {
  3832. name: "Normal",
  3833. height: math.unit(5 + 5 / 12, "feet"),
  3834. default: true
  3835. },
  3836. {
  3837. name: "Big",
  3838. height: math.unit(10, "feet")
  3839. },
  3840. ]
  3841. ))
  3842. characterMakers.push(() => makeCharacter(
  3843. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3844. {
  3845. front: {
  3846. height: math.unit(2, "meter"),
  3847. weight: math.unit(50, "kg"),
  3848. name: "Front",
  3849. image: {
  3850. source: "./media/characters/kurribird/front.svg",
  3851. bottom: 0.015
  3852. }
  3853. },
  3854. frontAlt: {
  3855. height: math.unit(1.5, "meter"),
  3856. weight: math.unit(50, "kg"),
  3857. name: "Front (Alt)",
  3858. image: {
  3859. source: "./media/characters/kurribird/front-alt.svg",
  3860. extra: 1.45
  3861. }
  3862. },
  3863. },
  3864. [
  3865. {
  3866. name: "Normal",
  3867. height: math.unit(7, "feet")
  3868. },
  3869. {
  3870. name: "Big",
  3871. height: math.unit(12, "feet"),
  3872. default: true
  3873. },
  3874. {
  3875. name: "Macro",
  3876. height: math.unit(1500, "feet")
  3877. },
  3878. {
  3879. name: "Megamacro",
  3880. height: math.unit(2, "miles")
  3881. }
  3882. ]
  3883. ))
  3884. characterMakers.push(() => makeCharacter(
  3885. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3886. {
  3887. front: {
  3888. height: math.unit(2, "meter"),
  3889. weight: math.unit(80, "kg"),
  3890. name: "Front",
  3891. image: {
  3892. source: "./media/characters/elbial/front.svg",
  3893. extra: 1643 / 1556,
  3894. bottom: 60.2 / 1696
  3895. }
  3896. },
  3897. side: {
  3898. height: math.unit(2, "meter"),
  3899. weight: math.unit(80, "kg"),
  3900. name: "Side",
  3901. image: {
  3902. source: "./media/characters/elbial/side.svg",
  3903. extra: 1601/1528,
  3904. bottom: 97/1698
  3905. }
  3906. },
  3907. back: {
  3908. height: math.unit(2, "meter"),
  3909. weight: math.unit(80, "kg"),
  3910. name: "Back",
  3911. image: {
  3912. source: "./media/characters/elbial/back.svg",
  3913. extra: 1653/1569,
  3914. bottom: 20/1673
  3915. }
  3916. },
  3917. frontDressed: {
  3918. height: math.unit(2, "meter"),
  3919. weight: math.unit(80, "kg"),
  3920. name: "Front (Dressed)",
  3921. image: {
  3922. source: "./media/characters/elbial/front-dressed.svg",
  3923. extra: 1638/1569,
  3924. bottom: 70/1708
  3925. }
  3926. },
  3927. genitals: {
  3928. height: math.unit(2 / 3.367, "meter"),
  3929. name: "Genitals",
  3930. image: {
  3931. source: "./media/characters/elbial/genitals.svg"
  3932. }
  3933. },
  3934. },
  3935. [
  3936. {
  3937. name: "Large",
  3938. height: math.unit(100, "feet")
  3939. },
  3940. {
  3941. name: "Macro",
  3942. height: math.unit(500, "feet"),
  3943. default: true
  3944. },
  3945. {
  3946. name: "Megamacro",
  3947. height: math.unit(10, "miles")
  3948. },
  3949. {
  3950. name: "Gigamacro",
  3951. height: math.unit(25000, "miles")
  3952. },
  3953. {
  3954. name: "Full-Size",
  3955. height: math.unit(8000000, "gigaparsecs")
  3956. }
  3957. ]
  3958. ))
  3959. characterMakers.push(() => makeCharacter(
  3960. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3961. {
  3962. front: {
  3963. height: math.unit(2, "meter"),
  3964. weight: math.unit(60, "kg"),
  3965. name: "Front",
  3966. image: {
  3967. source: "./media/characters/noah/front.svg"
  3968. }
  3969. },
  3970. talons: {
  3971. height: math.unit(0.315, "meter"),
  3972. name: "Talons",
  3973. image: {
  3974. source: "./media/characters/noah/talons.svg"
  3975. }
  3976. }
  3977. },
  3978. [
  3979. {
  3980. name: "Large",
  3981. height: math.unit(50, "feet")
  3982. },
  3983. {
  3984. name: "Macro",
  3985. height: math.unit(750, "feet"),
  3986. default: true
  3987. },
  3988. {
  3989. name: "Megamacro",
  3990. height: math.unit(50, "miles")
  3991. },
  3992. {
  3993. name: "Gigamacro",
  3994. height: math.unit(100000, "miles")
  3995. },
  3996. {
  3997. name: "Full-Size",
  3998. height: math.unit(3000000000, "miles")
  3999. }
  4000. ]
  4001. ))
  4002. characterMakers.push(() => makeCharacter(
  4003. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4004. {
  4005. front: {
  4006. height: math.unit(2, "meter"),
  4007. weight: math.unit(80, "kg"),
  4008. name: "Front",
  4009. image: {
  4010. source: "./media/characters/natalya/front.svg"
  4011. }
  4012. },
  4013. back: {
  4014. height: math.unit(2, "meter"),
  4015. weight: math.unit(80, "kg"),
  4016. name: "Back",
  4017. image: {
  4018. source: "./media/characters/natalya/back.svg"
  4019. }
  4020. }
  4021. },
  4022. [
  4023. {
  4024. name: "Normal",
  4025. height: math.unit(150, "feet"),
  4026. default: true
  4027. },
  4028. {
  4029. name: "Megamacro",
  4030. height: math.unit(5, "miles")
  4031. },
  4032. {
  4033. name: "Full-Size",
  4034. height: math.unit(600, "kiloparsecs")
  4035. }
  4036. ]
  4037. ))
  4038. characterMakers.push(() => makeCharacter(
  4039. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4040. {
  4041. front: {
  4042. height: math.unit(2, "meter"),
  4043. weight: math.unit(50, "kg"),
  4044. name: "Front",
  4045. image: {
  4046. source: "./media/characters/erestrebah/front.svg",
  4047. extra: 1262/1162,
  4048. bottom: 96/1358
  4049. }
  4050. },
  4051. back: {
  4052. height: math.unit(2, "meter"),
  4053. weight: math.unit(50, "kg"),
  4054. name: "Back",
  4055. image: {
  4056. source: "./media/characters/erestrebah/back.svg",
  4057. extra: 1257/1139,
  4058. bottom: 13/1270
  4059. }
  4060. },
  4061. wing: {
  4062. height: math.unit(2, "meter"),
  4063. weight: math.unit(50, "kg"),
  4064. name: "Wing",
  4065. image: {
  4066. source: "./media/characters/erestrebah/wing.svg",
  4067. extra: 1262/1162,
  4068. bottom: 96/1358
  4069. }
  4070. },
  4071. mouth: {
  4072. height: math.unit(0.39, "feet"),
  4073. name: "Mouth",
  4074. image: {
  4075. source: "./media/characters/erestrebah/mouth.svg"
  4076. }
  4077. }
  4078. },
  4079. [
  4080. {
  4081. name: "Normal",
  4082. height: math.unit(10, "feet")
  4083. },
  4084. {
  4085. name: "Large",
  4086. height: math.unit(50, "feet"),
  4087. default: true
  4088. },
  4089. {
  4090. name: "Macro",
  4091. height: math.unit(300, "feet")
  4092. },
  4093. {
  4094. name: "Macro+",
  4095. height: math.unit(750, "feet")
  4096. },
  4097. {
  4098. name: "Megamacro",
  4099. height: math.unit(3, "miles")
  4100. }
  4101. ]
  4102. ))
  4103. characterMakers.push(() => makeCharacter(
  4104. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4105. {
  4106. front: {
  4107. height: math.unit(2, "meter"),
  4108. weight: math.unit(80, "kg"),
  4109. name: "Front",
  4110. image: {
  4111. source: "./media/characters/jennifer/front.svg",
  4112. bottom: 0.11,
  4113. extra: 1.16
  4114. }
  4115. },
  4116. frontAlt: {
  4117. height: math.unit(2, "meter"),
  4118. weight: math.unit(80, "kg"),
  4119. name: "Front (Alt)",
  4120. image: {
  4121. source: "./media/characters/jennifer/front-alt.svg"
  4122. }
  4123. }
  4124. },
  4125. [
  4126. {
  4127. name: "Canon Height",
  4128. height: math.unit(120, "feet"),
  4129. default: true
  4130. },
  4131. {
  4132. name: "Macro+",
  4133. height: math.unit(300, "feet")
  4134. },
  4135. {
  4136. name: "Megamacro",
  4137. height: math.unit(20000, "feet")
  4138. }
  4139. ]
  4140. ))
  4141. characterMakers.push(() => makeCharacter(
  4142. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4143. {
  4144. front: {
  4145. height: math.unit(2, "meter"),
  4146. weight: math.unit(50, "kg"),
  4147. name: "Front",
  4148. image: {
  4149. source: "./media/characters/kalista/front.svg",
  4150. extra: 1314/1145,
  4151. bottom: 101/1415
  4152. }
  4153. },
  4154. back: {
  4155. height: math.unit(2, "meter"),
  4156. weight: math.unit(50, "kg"),
  4157. name: "Back",
  4158. image: {
  4159. source: "./media/characters/kalista/back.svg",
  4160. extra: 1366 / 1156,
  4161. bottom: 33.9 / 1362.78
  4162. }
  4163. }
  4164. },
  4165. [
  4166. {
  4167. name: "Uncomfortably Small",
  4168. height: math.unit(10, "feet")
  4169. },
  4170. {
  4171. name: "Small",
  4172. height: math.unit(30, "feet")
  4173. },
  4174. {
  4175. name: "Macro",
  4176. height: math.unit(100, "feet"),
  4177. default: true
  4178. },
  4179. {
  4180. name: "Macro+",
  4181. height: math.unit(2000, "feet")
  4182. },
  4183. {
  4184. name: "True Form",
  4185. height: math.unit(8924, "miles")
  4186. }
  4187. ]
  4188. ))
  4189. characterMakers.push(() => makeCharacter(
  4190. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4191. {
  4192. front: {
  4193. height: math.unit(2, "meter"),
  4194. weight: math.unit(120, "kg"),
  4195. name: "Front",
  4196. image: {
  4197. source: "./media/characters/ggv/front.svg"
  4198. }
  4199. },
  4200. side: {
  4201. height: math.unit(2, "meter"),
  4202. weight: math.unit(120, "kg"),
  4203. name: "Side",
  4204. image: {
  4205. source: "./media/characters/ggv/side.svg"
  4206. }
  4207. }
  4208. },
  4209. [
  4210. {
  4211. name: "Extremely Puny",
  4212. height: math.unit(9 + 5 / 12, "feet")
  4213. },
  4214. {
  4215. name: "Horribly Small",
  4216. height: math.unit(47.7, "miles"),
  4217. default: true
  4218. },
  4219. {
  4220. name: "Reasonably Sized",
  4221. height: math.unit(25000, "parsecs")
  4222. },
  4223. {
  4224. name: "Slightly Uncompressed",
  4225. height: math.unit(7.77e31, "parsecs")
  4226. },
  4227. {
  4228. name: "Omniversal",
  4229. height: math.unit(1e300, "meters")
  4230. },
  4231. ]
  4232. ))
  4233. characterMakers.push(() => makeCharacter(
  4234. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4235. {
  4236. front: {
  4237. height: math.unit(2, "meter"),
  4238. weight: math.unit(75, "lb"),
  4239. name: "Front",
  4240. image: {
  4241. source: "./media/characters/napalm/front.svg"
  4242. }
  4243. },
  4244. back: {
  4245. height: math.unit(2, "meter"),
  4246. weight: math.unit(75, "lb"),
  4247. name: "Back",
  4248. image: {
  4249. source: "./media/characters/napalm/back.svg"
  4250. }
  4251. }
  4252. },
  4253. [
  4254. {
  4255. name: "Standard",
  4256. height: math.unit(55, "feet"),
  4257. default: true
  4258. }
  4259. ]
  4260. ))
  4261. characterMakers.push(() => makeCharacter(
  4262. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4263. {
  4264. front: {
  4265. height: math.unit(7 + 5 / 6, "feet"),
  4266. weight: math.unit(325, "lb"),
  4267. name: "Front",
  4268. image: {
  4269. source: "./media/characters/asana/front.svg",
  4270. extra: 1133 / 1060,
  4271. bottom: 15.2 / 1148.6
  4272. }
  4273. },
  4274. back: {
  4275. height: math.unit(7 + 5 / 6, "feet"),
  4276. weight: math.unit(325, "lb"),
  4277. name: "Back",
  4278. image: {
  4279. source: "./media/characters/asana/back.svg",
  4280. extra: 1114 / 1043,
  4281. bottom: 5 / 1120
  4282. }
  4283. },
  4284. dressedDark: {
  4285. height: math.unit(7 + 5 / 6, "feet"),
  4286. weight: math.unit(325, "lb"),
  4287. name: "Dressed (Dark)",
  4288. image: {
  4289. source: "./media/characters/asana/dressed-dark.svg",
  4290. extra: 1133 / 1060,
  4291. bottom: 15.2 / 1148.6
  4292. }
  4293. },
  4294. dressedLight: {
  4295. height: math.unit(7 + 5 / 6, "feet"),
  4296. weight: math.unit(325, "lb"),
  4297. name: "Dressed (Light)",
  4298. image: {
  4299. source: "./media/characters/asana/dressed-light.svg",
  4300. extra: 1133 / 1060,
  4301. bottom: 15.2 / 1148.6
  4302. }
  4303. },
  4304. },
  4305. [
  4306. {
  4307. name: "Standard",
  4308. height: math.unit(7 + 5 / 6, "feet"),
  4309. default: true
  4310. },
  4311. {
  4312. name: "Large",
  4313. height: math.unit(10, "meters")
  4314. },
  4315. {
  4316. name: "Macro",
  4317. height: math.unit(2500, "meters")
  4318. },
  4319. {
  4320. name: "Megamacro",
  4321. height: math.unit(5e6, "meters")
  4322. },
  4323. {
  4324. name: "Examacro",
  4325. height: math.unit(5e12, "lightyears")
  4326. },
  4327. {
  4328. name: "Max Size",
  4329. height: math.unit(1e31, "lightyears")
  4330. }
  4331. ]
  4332. ))
  4333. characterMakers.push(() => makeCharacter(
  4334. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4335. {
  4336. front: {
  4337. height: math.unit(2, "meter"),
  4338. weight: math.unit(60, "kg"),
  4339. name: "Front",
  4340. image: {
  4341. source: "./media/characters/ebony/front.svg",
  4342. bottom: 0.03,
  4343. extra: 1045 / 810 + 0.03
  4344. }
  4345. },
  4346. side: {
  4347. height: math.unit(2, "meter"),
  4348. weight: math.unit(60, "kg"),
  4349. name: "Side",
  4350. image: {
  4351. source: "./media/characters/ebony/side.svg",
  4352. bottom: 0.03,
  4353. extra: 1045 / 810 + 0.03
  4354. }
  4355. },
  4356. back: {
  4357. height: math.unit(2, "meter"),
  4358. weight: math.unit(60, "kg"),
  4359. name: "Back",
  4360. image: {
  4361. source: "./media/characters/ebony/back.svg",
  4362. bottom: 0.01,
  4363. extra: 1045 / 810 + 0.01
  4364. }
  4365. },
  4366. },
  4367. [
  4368. // TODO check why I did this lol
  4369. {
  4370. name: "Standard",
  4371. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4372. default: true
  4373. },
  4374. {
  4375. name: "Macro",
  4376. height: math.unit(200, "feet")
  4377. },
  4378. {
  4379. name: "Gigamacro",
  4380. height: math.unit(13000, "km")
  4381. }
  4382. ]
  4383. ))
  4384. characterMakers.push(() => makeCharacter(
  4385. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4386. {
  4387. front: {
  4388. height: math.unit(6, "feet"),
  4389. weight: math.unit(175, "lb"),
  4390. name: "Front",
  4391. image: {
  4392. source: "./media/characters/mountain/front.svg",
  4393. extra: 972 / 955,
  4394. bottom: 64 / 1036.6
  4395. }
  4396. },
  4397. back: {
  4398. height: math.unit(6, "feet"),
  4399. weight: math.unit(175, "lb"),
  4400. name: "Back",
  4401. image: {
  4402. source: "./media/characters/mountain/back.svg",
  4403. extra: 970 / 950,
  4404. bottom: 28.25 / 999
  4405. }
  4406. },
  4407. },
  4408. [
  4409. {
  4410. name: "Large",
  4411. height: math.unit(20, "meters")
  4412. },
  4413. {
  4414. name: "Macro",
  4415. height: math.unit(300, "meters")
  4416. },
  4417. {
  4418. name: "Gigamacro",
  4419. height: math.unit(10000, "km"),
  4420. default: true
  4421. },
  4422. {
  4423. name: "Examacro",
  4424. height: math.unit(10e9, "lightyears")
  4425. }
  4426. ]
  4427. ))
  4428. characterMakers.push(() => makeCharacter(
  4429. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4430. {
  4431. front: {
  4432. height: math.unit(8, "feet"),
  4433. weight: math.unit(500, "lb"),
  4434. name: "Front",
  4435. image: {
  4436. source: "./media/characters/rick/front.svg"
  4437. }
  4438. }
  4439. },
  4440. [
  4441. {
  4442. name: "Normal",
  4443. height: math.unit(8, "feet"),
  4444. default: true
  4445. },
  4446. {
  4447. name: "Macro",
  4448. height: math.unit(5, "km")
  4449. }
  4450. ]
  4451. ))
  4452. characterMakers.push(() => makeCharacter(
  4453. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4454. {
  4455. front: {
  4456. height: math.unit(8, "feet"),
  4457. weight: math.unit(120, "lb"),
  4458. name: "Front",
  4459. image: {
  4460. source: "./media/characters/ona/front.svg"
  4461. }
  4462. },
  4463. frontAlt: {
  4464. height: math.unit(8, "feet"),
  4465. weight: math.unit(120, "lb"),
  4466. name: "Front (Alt)",
  4467. image: {
  4468. source: "./media/characters/ona/front-alt.svg"
  4469. }
  4470. },
  4471. back: {
  4472. height: math.unit(8, "feet"),
  4473. weight: math.unit(120, "lb"),
  4474. name: "Back",
  4475. image: {
  4476. source: "./media/characters/ona/back.svg"
  4477. }
  4478. },
  4479. foot: {
  4480. height: math.unit(1.1, "feet"),
  4481. name: "Foot",
  4482. image: {
  4483. source: "./media/characters/ona/foot.svg"
  4484. }
  4485. }
  4486. },
  4487. [
  4488. {
  4489. name: "Megamacro",
  4490. height: math.unit(70, "km"),
  4491. default: true
  4492. },
  4493. {
  4494. name: "Gigamacro",
  4495. height: math.unit(681818, "miles")
  4496. },
  4497. {
  4498. name: "Examacro",
  4499. height: math.unit(3800000, "lightyears")
  4500. },
  4501. ]
  4502. ))
  4503. characterMakers.push(() => makeCharacter(
  4504. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4505. {
  4506. front: {
  4507. height: math.unit(12, "feet"),
  4508. weight: math.unit(3000, "lb"),
  4509. name: "Front",
  4510. image: {
  4511. source: "./media/characters/mech/front.svg",
  4512. extra: 2900 / 2770,
  4513. bottom: 110 / 3010
  4514. }
  4515. },
  4516. back: {
  4517. height: math.unit(12, "feet"),
  4518. weight: math.unit(3000, "lb"),
  4519. name: "Back",
  4520. image: {
  4521. source: "./media/characters/mech/back.svg",
  4522. extra: 3011 / 2890,
  4523. bottom: 94 / 3105
  4524. }
  4525. },
  4526. maw: {
  4527. height: math.unit(3.07, "feet"),
  4528. name: "Maw",
  4529. image: {
  4530. source: "./media/characters/mech/maw.svg"
  4531. }
  4532. },
  4533. head: {
  4534. height: math.unit(3.07, "feet"),
  4535. name: "Head",
  4536. image: {
  4537. source: "./media/characters/mech/head.svg"
  4538. }
  4539. },
  4540. dick: {
  4541. height: math.unit(1.43, "feet"),
  4542. name: "Dick",
  4543. image: {
  4544. source: "./media/characters/mech/dick.svg"
  4545. }
  4546. },
  4547. },
  4548. [
  4549. {
  4550. name: "Normal",
  4551. height: math.unit(12, "feet")
  4552. },
  4553. {
  4554. name: "Macro",
  4555. height: math.unit(300, "feet"),
  4556. default: true
  4557. },
  4558. {
  4559. name: "Macro+",
  4560. height: math.unit(1500, "feet")
  4561. },
  4562. ]
  4563. ))
  4564. characterMakers.push(() => makeCharacter(
  4565. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4566. {
  4567. front: {
  4568. height: math.unit(1.3, "meter"),
  4569. weight: math.unit(30, "kg"),
  4570. name: "Front",
  4571. image: {
  4572. source: "./media/characters/gregory/front.svg",
  4573. }
  4574. }
  4575. },
  4576. [
  4577. {
  4578. name: "Normal",
  4579. height: math.unit(1.3, "meter"),
  4580. default: true
  4581. },
  4582. {
  4583. name: "Macro",
  4584. height: math.unit(20, "meter")
  4585. }
  4586. ]
  4587. ))
  4588. characterMakers.push(() => makeCharacter(
  4589. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4590. {
  4591. front: {
  4592. height: math.unit(2.8, "meter"),
  4593. weight: math.unit(200, "kg"),
  4594. name: "Front",
  4595. image: {
  4596. source: "./media/characters/elory/front.svg",
  4597. }
  4598. }
  4599. },
  4600. [
  4601. {
  4602. name: "Normal",
  4603. height: math.unit(2.8, "meter"),
  4604. default: true
  4605. },
  4606. {
  4607. name: "Macro",
  4608. height: math.unit(38, "meter")
  4609. }
  4610. ]
  4611. ))
  4612. characterMakers.push(() => makeCharacter(
  4613. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4614. {
  4615. front: {
  4616. height: math.unit(470, "feet"),
  4617. weight: math.unit(924, "tons"),
  4618. name: "Front",
  4619. image: {
  4620. source: "./media/characters/angelpatamon/front.svg",
  4621. }
  4622. }
  4623. },
  4624. [
  4625. {
  4626. name: "Normal",
  4627. height: math.unit(470, "feet"),
  4628. default: true
  4629. },
  4630. {
  4631. name: "Deity Size I",
  4632. height: math.unit(28651.2, "km")
  4633. },
  4634. {
  4635. name: "Deity Size II",
  4636. height: math.unit(171907.2, "km")
  4637. }
  4638. ]
  4639. ))
  4640. characterMakers.push(() => makeCharacter(
  4641. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4642. {
  4643. side: {
  4644. height: math.unit(7.2, "meter"),
  4645. weight: math.unit(8.2, "tons"),
  4646. name: "Side",
  4647. image: {
  4648. source: "./media/characters/cryae/side.svg",
  4649. extra: 3500 / 1500
  4650. }
  4651. }
  4652. },
  4653. [
  4654. {
  4655. name: "Normal",
  4656. height: math.unit(7.2, "meter"),
  4657. default: true
  4658. }
  4659. ]
  4660. ))
  4661. characterMakers.push(() => makeCharacter(
  4662. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4663. {
  4664. front: {
  4665. height: math.unit(6, "feet"),
  4666. weight: math.unit(175, "lb"),
  4667. name: "Front",
  4668. image: {
  4669. source: "./media/characters/xera/front.svg",
  4670. extra: 2377 / 1972,
  4671. bottom: 75.5 / 2452
  4672. }
  4673. },
  4674. side: {
  4675. height: math.unit(6, "feet"),
  4676. weight: math.unit(175, "lb"),
  4677. name: "Side",
  4678. image: {
  4679. source: "./media/characters/xera/side.svg",
  4680. extra: 2345 / 2019,
  4681. bottom: 39.7 / 2384
  4682. }
  4683. },
  4684. back: {
  4685. height: math.unit(6, "feet"),
  4686. weight: math.unit(175, "lb"),
  4687. name: "Back",
  4688. image: {
  4689. source: "./media/characters/xera/back.svg",
  4690. extra: 2095 / 1984,
  4691. bottom: 67 / 2166
  4692. }
  4693. },
  4694. },
  4695. [
  4696. {
  4697. name: "Small",
  4698. height: math.unit(10, "feet")
  4699. },
  4700. {
  4701. name: "Macro",
  4702. height: math.unit(500, "meters"),
  4703. default: true
  4704. },
  4705. {
  4706. name: "Macro+",
  4707. height: math.unit(10, "km")
  4708. },
  4709. {
  4710. name: "Gigamacro",
  4711. height: math.unit(25000, "km")
  4712. },
  4713. {
  4714. name: "Teramacro",
  4715. height: math.unit(3e6, "km")
  4716. }
  4717. ]
  4718. ))
  4719. characterMakers.push(() => makeCharacter(
  4720. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4721. {
  4722. front: {
  4723. height: math.unit(6, "feet"),
  4724. weight: math.unit(175, "lb"),
  4725. name: "Front",
  4726. image: {
  4727. source: "./media/characters/nebula/front.svg",
  4728. extra: 2566 / 2362,
  4729. bottom: 81 / 2644
  4730. }
  4731. }
  4732. },
  4733. [
  4734. {
  4735. name: "Small",
  4736. height: math.unit(4.5, "meters")
  4737. },
  4738. {
  4739. name: "Macro",
  4740. height: math.unit(1500, "meters"),
  4741. default: true
  4742. },
  4743. {
  4744. name: "Megamacro",
  4745. height: math.unit(150, "km")
  4746. },
  4747. {
  4748. name: "Gigamacro",
  4749. height: math.unit(27000, "km")
  4750. }
  4751. ]
  4752. ))
  4753. characterMakers.push(() => makeCharacter(
  4754. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4755. {
  4756. front: {
  4757. height: math.unit(6, "feet"),
  4758. weight: math.unit(225, "lb"),
  4759. name: "Front",
  4760. image: {
  4761. source: "./media/characters/abysgar/front.svg",
  4762. extra: 1739/1614,
  4763. bottom: 71/1810
  4764. }
  4765. },
  4766. frontNsfw: {
  4767. height: math.unit(6, "feet"),
  4768. weight: math.unit(225, "lb"),
  4769. name: "Front (NSFW)",
  4770. image: {
  4771. source: "./media/characters/abysgar/front-nsfw.svg",
  4772. extra: 1739/1614,
  4773. bottom: 71/1810
  4774. }
  4775. },
  4776. back: {
  4777. height: math.unit(4.6, "feet"),
  4778. weight: math.unit(225, "lb"),
  4779. name: "Back",
  4780. image: {
  4781. source: "./media/characters/abysgar/back.svg",
  4782. extra: 1384/1327,
  4783. bottom: 0/1384
  4784. }
  4785. },
  4786. head: {
  4787. height: math.unit(1.25, "feet"),
  4788. name: "Head",
  4789. image: {
  4790. source: "./media/characters/abysgar/head.svg",
  4791. extra: 669/569,
  4792. bottom: 0/669
  4793. }
  4794. },
  4795. },
  4796. [
  4797. {
  4798. name: "Small",
  4799. height: math.unit(4.5, "meters")
  4800. },
  4801. {
  4802. name: "Macro",
  4803. height: math.unit(1250, "meters"),
  4804. default: true
  4805. },
  4806. {
  4807. name: "Megamacro",
  4808. height: math.unit(125, "km")
  4809. },
  4810. {
  4811. name: "Gigamacro",
  4812. height: math.unit(26000, "km")
  4813. }
  4814. ]
  4815. ))
  4816. characterMakers.push(() => makeCharacter(
  4817. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4818. {
  4819. front: {
  4820. height: math.unit(6, "feet"),
  4821. weight: math.unit(180, "lb"),
  4822. name: "Front",
  4823. image: {
  4824. source: "./media/characters/yakuz/front.svg"
  4825. }
  4826. }
  4827. },
  4828. [
  4829. {
  4830. name: "Small",
  4831. height: math.unit(5, "meters")
  4832. },
  4833. {
  4834. name: "Macro",
  4835. height: math.unit(1500, "meters"),
  4836. default: true
  4837. },
  4838. {
  4839. name: "Megamacro",
  4840. height: math.unit(200, "km")
  4841. },
  4842. {
  4843. name: "Gigamacro",
  4844. height: math.unit(100000, "km")
  4845. }
  4846. ]
  4847. ))
  4848. characterMakers.push(() => makeCharacter(
  4849. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4850. {
  4851. front: {
  4852. height: math.unit(6, "feet"),
  4853. weight: math.unit(175, "lb"),
  4854. name: "Front",
  4855. image: {
  4856. source: "./media/characters/mirova/front.svg",
  4857. extra: 3334 / 3071,
  4858. bottom: 42 / 3375.6
  4859. }
  4860. }
  4861. },
  4862. [
  4863. {
  4864. name: "Small",
  4865. height: math.unit(5, "meters")
  4866. },
  4867. {
  4868. name: "Macro",
  4869. height: math.unit(900, "meters"),
  4870. default: true
  4871. },
  4872. {
  4873. name: "Megamacro",
  4874. height: math.unit(135, "km")
  4875. },
  4876. {
  4877. name: "Gigamacro",
  4878. height: math.unit(20000, "km")
  4879. }
  4880. ]
  4881. ))
  4882. characterMakers.push(() => makeCharacter(
  4883. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4884. {
  4885. side: {
  4886. height: math.unit(28.35, "feet"),
  4887. weight: math.unit(99.75, "tons"),
  4888. name: "Side",
  4889. image: {
  4890. source: "./media/characters/asana-mech/side.svg",
  4891. extra: 923 / 699,
  4892. bottom: 50 / 975
  4893. }
  4894. },
  4895. chaingun: {
  4896. height: math.unit(7, "feet"),
  4897. weight: math.unit(2400, "lb"),
  4898. name: "Chaingun",
  4899. image: {
  4900. source: "./media/characters/asana-mech/chaingun.svg"
  4901. }
  4902. },
  4903. laser: {
  4904. height: math.unit(7.12, "feet"),
  4905. weight: math.unit(2000, "lb"),
  4906. name: "Laser",
  4907. image: {
  4908. source: "./media/characters/asana-mech/laser.svg"
  4909. }
  4910. },
  4911. },
  4912. [
  4913. {
  4914. name: "Normal",
  4915. height: math.unit(28.35, "feet"),
  4916. default: true
  4917. },
  4918. {
  4919. name: "Macro",
  4920. height: math.unit(2500, "feet")
  4921. },
  4922. {
  4923. name: "Megamacro",
  4924. height: math.unit(25, "miles")
  4925. },
  4926. {
  4927. name: "Examacro",
  4928. height: math.unit(6e8, "lightyears")
  4929. },
  4930. ]
  4931. ))
  4932. characterMakers.push(() => makeCharacter(
  4933. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4934. {
  4935. front: {
  4936. height: math.unit(5, "meters"),
  4937. weight: math.unit(1000, "kg"),
  4938. name: "Front",
  4939. image: {
  4940. source: "./media/characters/asche/front.svg",
  4941. extra: 1258 / 1190,
  4942. bottom: 47 / 1305
  4943. }
  4944. },
  4945. frontUnderwear: {
  4946. height: math.unit(5, "meters"),
  4947. weight: math.unit(1000, "kg"),
  4948. name: "Front (Underwear)",
  4949. image: {
  4950. source: "./media/characters/asche/front-underwear.svg",
  4951. extra: 1258 / 1190,
  4952. bottom: 47 / 1305
  4953. }
  4954. },
  4955. frontDressed: {
  4956. height: math.unit(5, "meters"),
  4957. weight: math.unit(1000, "kg"),
  4958. name: "Front (Dressed)",
  4959. image: {
  4960. source: "./media/characters/asche/front-dressed.svg",
  4961. extra: 1258 / 1190,
  4962. bottom: 47 / 1305
  4963. }
  4964. },
  4965. frontArmor: {
  4966. height: math.unit(5, "meters"),
  4967. weight: math.unit(1000, "kg"),
  4968. name: "Front (Armored)",
  4969. image: {
  4970. source: "./media/characters/asche/front-armored.svg",
  4971. extra: 1374 / 1308,
  4972. bottom: 23 / 1397
  4973. }
  4974. },
  4975. mp724: {
  4976. height: math.unit(0.96, "meters"),
  4977. weight: math.unit(38, "kg"),
  4978. name: "H&K MP724",
  4979. image: {
  4980. source: "./media/characters/asche/h&k-mp724.svg"
  4981. }
  4982. },
  4983. side: {
  4984. height: math.unit(5, "meters"),
  4985. weight: math.unit(1000, "kg"),
  4986. name: "Side",
  4987. image: {
  4988. source: "./media/characters/asche/side.svg",
  4989. extra: 1717 / 1609,
  4990. bottom: 0.005
  4991. }
  4992. },
  4993. back: {
  4994. height: math.unit(5, "meters"),
  4995. weight: math.unit(1000, "kg"),
  4996. name: "Back",
  4997. image: {
  4998. source: "./media/characters/asche/back.svg",
  4999. extra: 1570 / 1501
  5000. }
  5001. },
  5002. },
  5003. [
  5004. {
  5005. name: "DEFCON 5",
  5006. height: math.unit(5, "meters")
  5007. },
  5008. {
  5009. name: "DEFCON 4",
  5010. height: math.unit(500, "meters"),
  5011. default: true
  5012. },
  5013. {
  5014. name: "DEFCON 3",
  5015. height: math.unit(5, "km")
  5016. },
  5017. {
  5018. name: "DEFCON 2",
  5019. height: math.unit(500, "km")
  5020. },
  5021. {
  5022. name: "DEFCON 1",
  5023. height: math.unit(500000, "km")
  5024. },
  5025. {
  5026. name: "DEFCON 0",
  5027. height: math.unit(3, "gigaparsecs")
  5028. },
  5029. ]
  5030. ))
  5031. characterMakers.push(() => makeCharacter(
  5032. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5033. {
  5034. front: {
  5035. height: math.unit(2, "meters"),
  5036. weight: math.unit(76, "kg"),
  5037. name: "Front",
  5038. image: {
  5039. source: "./media/characters/gale/front.svg"
  5040. }
  5041. },
  5042. frontAlt1: {
  5043. height: math.unit(2, "meters"),
  5044. weight: math.unit(76, "kg"),
  5045. name: "Front (Alt 1)",
  5046. image: {
  5047. source: "./media/characters/gale/front-alt-1.svg"
  5048. }
  5049. },
  5050. frontAlt2: {
  5051. height: math.unit(2, "meters"),
  5052. weight: math.unit(76, "kg"),
  5053. name: "Front (Alt 2)",
  5054. image: {
  5055. source: "./media/characters/gale/front-alt-2.svg"
  5056. }
  5057. },
  5058. },
  5059. [
  5060. {
  5061. name: "Normal",
  5062. height: math.unit(7, "feet")
  5063. },
  5064. {
  5065. name: "Macro",
  5066. height: math.unit(150, "feet"),
  5067. default: true
  5068. },
  5069. {
  5070. name: "Macro+",
  5071. height: math.unit(300, "feet")
  5072. },
  5073. ]
  5074. ))
  5075. characterMakers.push(() => makeCharacter(
  5076. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5077. {
  5078. front: {
  5079. height: math.unit(5 + 10/12, "feet"),
  5080. weight: math.unit(67, "kg"),
  5081. name: "Front",
  5082. image: {
  5083. source: "./media/characters/draylen/front.svg",
  5084. extra: 832/777,
  5085. bottom: 85/917
  5086. }
  5087. }
  5088. },
  5089. [
  5090. {
  5091. name: "Normal",
  5092. height: math.unit(5 + 10/12, "feet")
  5093. },
  5094. {
  5095. name: "Macro",
  5096. height: math.unit(150, "feet"),
  5097. default: true
  5098. }
  5099. ]
  5100. ))
  5101. characterMakers.push(() => makeCharacter(
  5102. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5103. {
  5104. front: {
  5105. height: math.unit(7 + 9 / 12, "feet"),
  5106. weight: math.unit(379, "lbs"),
  5107. name: "Front",
  5108. image: {
  5109. source: "./media/characters/chez/front.svg"
  5110. }
  5111. },
  5112. side: {
  5113. height: math.unit(7 + 9 / 12, "feet"),
  5114. weight: math.unit(379, "lbs"),
  5115. name: "Side",
  5116. image: {
  5117. source: "./media/characters/chez/side.svg"
  5118. }
  5119. }
  5120. },
  5121. [
  5122. {
  5123. name: "Normal",
  5124. height: math.unit(7 + 9 / 12, "feet"),
  5125. default: true
  5126. },
  5127. {
  5128. name: "God King",
  5129. height: math.unit(9750000, "meters")
  5130. }
  5131. ]
  5132. ))
  5133. characterMakers.push(() => makeCharacter(
  5134. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5135. {
  5136. front: {
  5137. height: math.unit(6, "feet"),
  5138. weight: math.unit(275, "lbs"),
  5139. name: "Front",
  5140. image: {
  5141. source: "./media/characters/kaylum/front.svg",
  5142. bottom: 0.01,
  5143. extra: 1166 / 1031
  5144. }
  5145. },
  5146. frontWingless: {
  5147. height: math.unit(6, "feet"),
  5148. weight: math.unit(275, "lbs"),
  5149. name: "Front (Wingless)",
  5150. image: {
  5151. source: "./media/characters/kaylum/front-wingless.svg",
  5152. bottom: 0.01,
  5153. extra: 1117 / 1031
  5154. }
  5155. }
  5156. },
  5157. [
  5158. {
  5159. name: "Normal",
  5160. height: math.unit(3.05, "meters")
  5161. },
  5162. {
  5163. name: "Master",
  5164. height: math.unit(5.5, "meters")
  5165. },
  5166. {
  5167. name: "Rampage",
  5168. height: math.unit(19, "meters")
  5169. },
  5170. {
  5171. name: "Macro Lite",
  5172. height: math.unit(37, "meters")
  5173. },
  5174. {
  5175. name: "Hyper Predator",
  5176. height: math.unit(61, "meters")
  5177. },
  5178. {
  5179. name: "Macro",
  5180. height: math.unit(138, "meters"),
  5181. default: true
  5182. }
  5183. ]
  5184. ))
  5185. characterMakers.push(() => makeCharacter(
  5186. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5187. {
  5188. front: {
  5189. height: math.unit(5 + 5 / 12, "feet"),
  5190. weight: math.unit(120, "lbs"),
  5191. name: "Front",
  5192. image: {
  5193. source: "./media/characters/geta/front.svg",
  5194. extra: 1003/933,
  5195. bottom: 21/1024
  5196. }
  5197. },
  5198. paw: {
  5199. height: math.unit(0.35, "feet"),
  5200. name: "Paw",
  5201. image: {
  5202. source: "./media/characters/geta/paw.svg"
  5203. }
  5204. },
  5205. },
  5206. [
  5207. {
  5208. name: "Micro",
  5209. height: math.unit(3, "inches"),
  5210. default: true
  5211. },
  5212. {
  5213. name: "Normal",
  5214. height: math.unit(5 + 5 / 12, "feet")
  5215. }
  5216. ]
  5217. ))
  5218. characterMakers.push(() => makeCharacter(
  5219. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5220. {
  5221. front: {
  5222. height: math.unit(6, "feet"),
  5223. weight: math.unit(300, "lbs"),
  5224. name: "Front",
  5225. image: {
  5226. source: "./media/characters/tyrnn/front.svg"
  5227. }
  5228. }
  5229. },
  5230. [
  5231. {
  5232. name: "Main Height",
  5233. height: math.unit(355, "feet"),
  5234. default: true
  5235. },
  5236. {
  5237. name: "Fave. Height",
  5238. height: math.unit(2400, "feet")
  5239. }
  5240. ]
  5241. ))
  5242. characterMakers.push(() => makeCharacter(
  5243. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5244. {
  5245. front: {
  5246. height: math.unit(6, "feet"),
  5247. weight: math.unit(300, "lbs"),
  5248. name: "Front",
  5249. image: {
  5250. source: "./media/characters/appledectomy/front.svg"
  5251. }
  5252. }
  5253. },
  5254. [
  5255. {
  5256. name: "Macro",
  5257. height: math.unit(2500, "feet")
  5258. },
  5259. {
  5260. name: "Megamacro",
  5261. height: math.unit(50, "miles"),
  5262. default: true
  5263. },
  5264. {
  5265. name: "Gigamacro",
  5266. height: math.unit(5000, "miles")
  5267. },
  5268. {
  5269. name: "Teramacro",
  5270. height: math.unit(250000, "miles")
  5271. },
  5272. ]
  5273. ))
  5274. characterMakers.push(() => makeCharacter(
  5275. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5276. {
  5277. front: {
  5278. height: math.unit(6, "feet"),
  5279. weight: math.unit(200, "lbs"),
  5280. name: "Front",
  5281. image: {
  5282. source: "./media/characters/vulpes/front.svg",
  5283. extra: 573 / 543,
  5284. bottom: 0.033
  5285. }
  5286. },
  5287. side: {
  5288. height: math.unit(6, "feet"),
  5289. weight: math.unit(200, "lbs"),
  5290. name: "Side",
  5291. image: {
  5292. source: "./media/characters/vulpes/side.svg",
  5293. extra: 577 / 549,
  5294. bottom: 11 / 588
  5295. }
  5296. },
  5297. back: {
  5298. height: math.unit(6, "feet"),
  5299. weight: math.unit(200, "lbs"),
  5300. name: "Back",
  5301. image: {
  5302. source: "./media/characters/vulpes/back.svg",
  5303. extra: 573 / 549,
  5304. bottom: 20 / 593
  5305. }
  5306. },
  5307. feet: {
  5308. height: math.unit(1.276, "feet"),
  5309. name: "Feet",
  5310. image: {
  5311. source: "./media/characters/vulpes/feet.svg"
  5312. }
  5313. },
  5314. maw: {
  5315. height: math.unit(1.18, "feet"),
  5316. name: "Maw",
  5317. image: {
  5318. source: "./media/characters/vulpes/maw.svg"
  5319. }
  5320. },
  5321. },
  5322. [
  5323. {
  5324. name: "Micro",
  5325. height: math.unit(2, "inches")
  5326. },
  5327. {
  5328. name: "Normal",
  5329. height: math.unit(6.3, "feet")
  5330. },
  5331. {
  5332. name: "Macro",
  5333. height: math.unit(850, "feet")
  5334. },
  5335. {
  5336. name: "Megamacro",
  5337. height: math.unit(7500, "feet"),
  5338. default: true
  5339. },
  5340. {
  5341. name: "Gigamacro",
  5342. height: math.unit(570000, "miles")
  5343. }
  5344. ]
  5345. ))
  5346. characterMakers.push(() => makeCharacter(
  5347. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5348. {
  5349. front: {
  5350. height: math.unit(6, "feet"),
  5351. weight: math.unit(210, "lbs"),
  5352. name: "Front",
  5353. image: {
  5354. source: "./media/characters/rain-fallen/front.svg"
  5355. }
  5356. },
  5357. side: {
  5358. height: math.unit(6, "feet"),
  5359. weight: math.unit(210, "lbs"),
  5360. name: "Side",
  5361. image: {
  5362. source: "./media/characters/rain-fallen/side.svg"
  5363. }
  5364. },
  5365. back: {
  5366. height: math.unit(6, "feet"),
  5367. weight: math.unit(210, "lbs"),
  5368. name: "Back",
  5369. image: {
  5370. source: "./media/characters/rain-fallen/back.svg"
  5371. }
  5372. },
  5373. feral: {
  5374. height: math.unit(9, "feet"),
  5375. weight: math.unit(700, "lbs"),
  5376. name: "Feral",
  5377. image: {
  5378. source: "./media/characters/rain-fallen/feral.svg"
  5379. }
  5380. },
  5381. },
  5382. [
  5383. {
  5384. name: "Meddling with Mortals",
  5385. height: math.unit(8 + 8/12, "feet")
  5386. },
  5387. {
  5388. name: "Normal",
  5389. height: math.unit(5, "meter")
  5390. },
  5391. {
  5392. name: "Macro",
  5393. height: math.unit(150, "meter"),
  5394. default: true
  5395. },
  5396. {
  5397. name: "Megamacro",
  5398. height: math.unit(278e6, "meter")
  5399. },
  5400. {
  5401. name: "Gigamacro",
  5402. height: math.unit(2e9, "meter")
  5403. },
  5404. {
  5405. name: "Teramacro",
  5406. height: math.unit(8e12, "meter")
  5407. },
  5408. {
  5409. name: "Devourer",
  5410. height: math.unit(14, "zettameters")
  5411. },
  5412. {
  5413. name: "Scarlet King",
  5414. height: math.unit(18, "yottameters")
  5415. },
  5416. {
  5417. name: "Void",
  5418. height: math.unit(1e88, "yottameters")
  5419. }
  5420. ]
  5421. ))
  5422. characterMakers.push(() => makeCharacter(
  5423. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5424. {
  5425. standing: {
  5426. height: math.unit(6, "feet"),
  5427. weight: math.unit(180, "lbs"),
  5428. name: "Standing",
  5429. image: {
  5430. source: "./media/characters/zaakira/standing.svg",
  5431. extra: 1599/1504,
  5432. bottom: 39/1638
  5433. }
  5434. },
  5435. laying: {
  5436. height: math.unit(3.3, "feet"),
  5437. weight: math.unit(180, "lbs"),
  5438. name: "Laying",
  5439. image: {
  5440. source: "./media/characters/zaakira/laying.svg"
  5441. }
  5442. },
  5443. },
  5444. [
  5445. {
  5446. name: "Normal",
  5447. height: math.unit(12, "feet")
  5448. },
  5449. {
  5450. name: "Macro",
  5451. height: math.unit(279, "feet"),
  5452. default: true
  5453. }
  5454. ]
  5455. ))
  5456. characterMakers.push(() => makeCharacter(
  5457. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5458. {
  5459. femSfw: {
  5460. height: math.unit(8, "feet"),
  5461. weight: math.unit(350, "lb"),
  5462. name: "Fem",
  5463. image: {
  5464. source: "./media/characters/sigvald/fem-sfw.svg",
  5465. extra: 182 / 164,
  5466. bottom: 8.7 / 190.5
  5467. }
  5468. },
  5469. femNsfw: {
  5470. height: math.unit(8, "feet"),
  5471. weight: math.unit(350, "lb"),
  5472. name: "Fem (NSFW)",
  5473. image: {
  5474. source: "./media/characters/sigvald/fem-nsfw.svg",
  5475. extra: 182 / 164,
  5476. bottom: 8.7 / 190.5
  5477. }
  5478. },
  5479. maleNsfw: {
  5480. height: math.unit(8, "feet"),
  5481. weight: math.unit(350, "lb"),
  5482. name: "Male (NSFW)",
  5483. image: {
  5484. source: "./media/characters/sigvald/male-nsfw.svg",
  5485. extra: 182 / 164,
  5486. bottom: 8.7 / 190.5
  5487. }
  5488. },
  5489. hermNsfw: {
  5490. height: math.unit(8, "feet"),
  5491. weight: math.unit(350, "lb"),
  5492. name: "Herm (NSFW)",
  5493. image: {
  5494. source: "./media/characters/sigvald/herm-nsfw.svg",
  5495. extra: 182 / 164,
  5496. bottom: 8.7 / 190.5
  5497. }
  5498. },
  5499. dick: {
  5500. height: math.unit(2.36, "feet"),
  5501. name: "Dick",
  5502. image: {
  5503. source: "./media/characters/sigvald/dick.svg"
  5504. }
  5505. },
  5506. eye: {
  5507. height: math.unit(0.31, "feet"),
  5508. name: "Eye",
  5509. image: {
  5510. source: "./media/characters/sigvald/eye.svg"
  5511. }
  5512. },
  5513. mouth: {
  5514. height: math.unit(0.92, "feet"),
  5515. name: "Mouth",
  5516. image: {
  5517. source: "./media/characters/sigvald/mouth.svg"
  5518. }
  5519. },
  5520. paws: {
  5521. height: math.unit(2.2, "feet"),
  5522. name: "Paws",
  5523. image: {
  5524. source: "./media/characters/sigvald/paws.svg"
  5525. }
  5526. }
  5527. },
  5528. [
  5529. {
  5530. name: "Normal",
  5531. height: math.unit(8, "feet")
  5532. },
  5533. {
  5534. name: "Large",
  5535. height: math.unit(12, "feet")
  5536. },
  5537. {
  5538. name: "Larger",
  5539. height: math.unit(20, "feet")
  5540. },
  5541. {
  5542. name: "Macro",
  5543. height: math.unit(150, "feet")
  5544. },
  5545. {
  5546. name: "Macro+",
  5547. height: math.unit(200, "feet"),
  5548. default: true
  5549. },
  5550. ]
  5551. ))
  5552. characterMakers.push(() => makeCharacter(
  5553. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5554. {
  5555. side: {
  5556. height: math.unit(12, "feet"),
  5557. weight: math.unit(2000, "kg"),
  5558. name: "Side",
  5559. image: {
  5560. source: "./media/characters/scott/side.svg",
  5561. extra: 754 / 724,
  5562. bottom: 0.069
  5563. }
  5564. },
  5565. upright: {
  5566. height: math.unit(12, "feet"),
  5567. weight: math.unit(2000, "kg"),
  5568. name: "Upright",
  5569. image: {
  5570. source: "./media/characters/scott/upright.svg",
  5571. extra: 3881 / 3722,
  5572. bottom: 0.05
  5573. }
  5574. },
  5575. },
  5576. [
  5577. {
  5578. name: "Normal",
  5579. height: math.unit(12, "feet"),
  5580. default: true
  5581. },
  5582. ]
  5583. ))
  5584. characterMakers.push(() => makeCharacter(
  5585. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5586. {
  5587. side: {
  5588. height: math.unit(8, "meters"),
  5589. weight: math.unit(84755, "lbs"),
  5590. name: "Side",
  5591. image: {
  5592. source: "./media/characters/tobias/side.svg",
  5593. extra: 1474 / 1096,
  5594. bottom: 38.9 / 1513.1235
  5595. }
  5596. },
  5597. },
  5598. [
  5599. {
  5600. name: "Normal",
  5601. height: math.unit(8, "meters"),
  5602. default: true
  5603. },
  5604. ]
  5605. ))
  5606. characterMakers.push(() => makeCharacter(
  5607. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5608. {
  5609. front: {
  5610. height: math.unit(5.5, "feet"),
  5611. weight: math.unit(400, "lbs"),
  5612. name: "Front",
  5613. image: {
  5614. source: "./media/characters/kieran/front.svg",
  5615. extra: 2694 / 2364,
  5616. bottom: 217 / 2908
  5617. }
  5618. },
  5619. side: {
  5620. height: math.unit(5.5, "feet"),
  5621. weight: math.unit(400, "lbs"),
  5622. name: "Side",
  5623. image: {
  5624. source: "./media/characters/kieran/side.svg",
  5625. extra: 875 / 777,
  5626. bottom: 84.6 / 959
  5627. }
  5628. },
  5629. },
  5630. [
  5631. {
  5632. name: "Normal",
  5633. height: math.unit(5.5, "feet"),
  5634. default: true
  5635. },
  5636. ]
  5637. ))
  5638. characterMakers.push(() => makeCharacter(
  5639. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5640. {
  5641. side: {
  5642. height: math.unit(2, "meters"),
  5643. weight: math.unit(70, "kg"),
  5644. name: "Side",
  5645. image: {
  5646. source: "./media/characters/sanya/side.svg",
  5647. bottom: 0.02,
  5648. extra: 1.02
  5649. }
  5650. },
  5651. },
  5652. [
  5653. {
  5654. name: "Small",
  5655. height: math.unit(2, "meters")
  5656. },
  5657. {
  5658. name: "Normal",
  5659. height: math.unit(3, "meters")
  5660. },
  5661. {
  5662. name: "Macro",
  5663. height: math.unit(16, "meters"),
  5664. default: true
  5665. },
  5666. ]
  5667. ))
  5668. characterMakers.push(() => makeCharacter(
  5669. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5670. {
  5671. front: {
  5672. height: math.unit(2, "meters"),
  5673. weight: math.unit(120, "kg"),
  5674. name: "Front",
  5675. image: {
  5676. source: "./media/characters/miranda/front.svg",
  5677. extra: 195 / 185,
  5678. bottom: 10.9 / 206.5
  5679. }
  5680. },
  5681. back: {
  5682. height: math.unit(2, "meters"),
  5683. weight: math.unit(120, "kg"),
  5684. name: "Back",
  5685. image: {
  5686. source: "./media/characters/miranda/back.svg",
  5687. extra: 201 / 193,
  5688. bottom: 2.3 / 203.7
  5689. }
  5690. },
  5691. },
  5692. [
  5693. {
  5694. name: "Normal",
  5695. height: math.unit(10, "feet"),
  5696. default: true
  5697. }
  5698. ]
  5699. ))
  5700. characterMakers.push(() => makeCharacter(
  5701. { name: "James", species: ["deer"], tags: ["anthro"] },
  5702. {
  5703. side: {
  5704. height: math.unit(2, "meters"),
  5705. weight: math.unit(100, "kg"),
  5706. name: "Front",
  5707. image: {
  5708. source: "./media/characters/james/front.svg",
  5709. extra: 10 / 8.5
  5710. }
  5711. },
  5712. },
  5713. [
  5714. {
  5715. name: "Normal",
  5716. height: math.unit(8.5, "feet"),
  5717. default: true
  5718. }
  5719. ]
  5720. ))
  5721. characterMakers.push(() => makeCharacter(
  5722. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5723. {
  5724. side: {
  5725. height: math.unit(9.5, "feet"),
  5726. weight: math.unit(2500, "lbs"),
  5727. name: "Side",
  5728. image: {
  5729. source: "./media/characters/heather/side.svg"
  5730. }
  5731. },
  5732. },
  5733. [
  5734. {
  5735. name: "Normal",
  5736. height: math.unit(9.5, "feet"),
  5737. default: true
  5738. }
  5739. ]
  5740. ))
  5741. characterMakers.push(() => makeCharacter(
  5742. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5743. {
  5744. side: {
  5745. height: math.unit(6.5, "feet"),
  5746. weight: math.unit(400, "lbs"),
  5747. name: "Side",
  5748. image: {
  5749. source: "./media/characters/lukas/side.svg",
  5750. extra: 7.25 / 6.5
  5751. }
  5752. },
  5753. },
  5754. [
  5755. {
  5756. name: "Normal",
  5757. height: math.unit(6.5, "feet"),
  5758. default: true
  5759. }
  5760. ]
  5761. ))
  5762. characterMakers.push(() => makeCharacter(
  5763. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5764. {
  5765. side: {
  5766. height: math.unit(5, "feet"),
  5767. weight: math.unit(3000, "lbs"),
  5768. name: "Side",
  5769. image: {
  5770. source: "./media/characters/louise/side.svg"
  5771. }
  5772. },
  5773. },
  5774. [
  5775. {
  5776. name: "Normal",
  5777. height: math.unit(5, "feet"),
  5778. default: true
  5779. }
  5780. ]
  5781. ))
  5782. characterMakers.push(() => makeCharacter(
  5783. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5784. {
  5785. side: {
  5786. height: math.unit(6, "feet"),
  5787. weight: math.unit(150, "lbs"),
  5788. name: "Side",
  5789. image: {
  5790. source: "./media/characters/ramona/side.svg",
  5791. extra: 871/854,
  5792. bottom: 41/912
  5793. }
  5794. },
  5795. },
  5796. [
  5797. {
  5798. name: "Normal",
  5799. height: math.unit(6 + 4/12, "feet")
  5800. },
  5801. {
  5802. name: "Minimacro",
  5803. height: math.unit(5.3, "meters"),
  5804. default: true
  5805. },
  5806. {
  5807. name: "Macro",
  5808. height: math.unit(20, "stories")
  5809. },
  5810. {
  5811. name: "Macro+",
  5812. height: math.unit(50, "stories")
  5813. },
  5814. ]
  5815. ))
  5816. characterMakers.push(() => makeCharacter(
  5817. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5818. {
  5819. standing: {
  5820. height: math.unit(5.75, "feet"),
  5821. weight: math.unit(160, "lbs"),
  5822. name: "Standing",
  5823. image: {
  5824. source: "./media/characters/deerpuff/standing.svg",
  5825. extra: 682 / 624
  5826. }
  5827. },
  5828. sitting: {
  5829. height: math.unit(5.75 / 1.79, "feet"),
  5830. weight: math.unit(160, "lbs"),
  5831. name: "Sitting",
  5832. image: {
  5833. source: "./media/characters/deerpuff/sitting.svg",
  5834. bottom: 44 / 400,
  5835. extra: 1
  5836. }
  5837. },
  5838. taurLaying: {
  5839. height: math.unit(6, "feet"),
  5840. weight: math.unit(400, "lbs"),
  5841. name: "Taur (Laying)",
  5842. image: {
  5843. source: "./media/characters/deerpuff/taur-laying.svg"
  5844. }
  5845. },
  5846. },
  5847. [
  5848. {
  5849. name: "Puffball",
  5850. height: math.unit(6, "inches")
  5851. },
  5852. {
  5853. name: "Normalpuff",
  5854. height: math.unit(5.75, "feet")
  5855. },
  5856. {
  5857. name: "Macropuff",
  5858. height: math.unit(1500, "feet"),
  5859. default: true
  5860. },
  5861. {
  5862. name: "Megapuff",
  5863. height: math.unit(500, "miles")
  5864. },
  5865. {
  5866. name: "Gigapuff",
  5867. height: math.unit(250000, "miles")
  5868. },
  5869. {
  5870. name: "Omegapuff",
  5871. height: math.unit(1000, "lightyears")
  5872. },
  5873. ]
  5874. ))
  5875. characterMakers.push(() => makeCharacter(
  5876. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5877. {
  5878. stomping: {
  5879. height: math.unit(6, "feet"),
  5880. weight: math.unit(170, "lbs"),
  5881. name: "Stomping",
  5882. image: {
  5883. source: "./media/characters/vivian/stomping.svg"
  5884. }
  5885. },
  5886. sitting: {
  5887. height: math.unit(6 / 1.75, "feet"),
  5888. weight: math.unit(170, "lbs"),
  5889. name: "Sitting",
  5890. image: {
  5891. source: "./media/characters/vivian/sitting.svg",
  5892. bottom: 1 / 6.4,
  5893. extra: 1,
  5894. }
  5895. },
  5896. },
  5897. [
  5898. {
  5899. name: "Normal",
  5900. height: math.unit(7, "feet"),
  5901. default: true
  5902. },
  5903. {
  5904. name: "Macro",
  5905. height: math.unit(10, "stories")
  5906. },
  5907. {
  5908. name: "Macro+",
  5909. height: math.unit(30, "stories")
  5910. },
  5911. {
  5912. name: "Megamacro",
  5913. height: math.unit(10, "miles")
  5914. },
  5915. {
  5916. name: "Megamacro+",
  5917. height: math.unit(2750000, "meters")
  5918. },
  5919. ]
  5920. ))
  5921. characterMakers.push(() => makeCharacter(
  5922. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5923. {
  5924. front: {
  5925. height: math.unit(6, "feet"),
  5926. weight: math.unit(160, "lbs"),
  5927. name: "Front",
  5928. image: {
  5929. source: "./media/characters/prince/front.svg",
  5930. extra: 3400 / 3000
  5931. }
  5932. },
  5933. jumping: {
  5934. height: math.unit(6, "feet"),
  5935. weight: math.unit(160, "lbs"),
  5936. name: "Jumping",
  5937. image: {
  5938. source: "./media/characters/prince/jump.svg",
  5939. extra: 2555 / 2134
  5940. }
  5941. },
  5942. },
  5943. [
  5944. {
  5945. name: "Normal",
  5946. height: math.unit(7.75, "feet"),
  5947. default: true
  5948. },
  5949. {
  5950. name: "Not cute",
  5951. height: math.unit(17, "feet")
  5952. },
  5953. {
  5954. name: "I said NOT",
  5955. height: math.unit(91, "feet")
  5956. },
  5957. {
  5958. name: "Please stop",
  5959. height: math.unit(560, "feet")
  5960. },
  5961. {
  5962. name: "What have you done",
  5963. height: math.unit(2200, "feet")
  5964. },
  5965. {
  5966. name: "Deer God",
  5967. height: math.unit(3.6, "miles")
  5968. },
  5969. ]
  5970. ))
  5971. characterMakers.push(() => makeCharacter(
  5972. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5973. {
  5974. standing: {
  5975. height: math.unit(6, "feet"),
  5976. weight: math.unit(300, "lbs"),
  5977. name: "Standing",
  5978. image: {
  5979. source: "./media/characters/psymon/standing.svg",
  5980. extra: 1888 / 1810,
  5981. bottom: 0.05
  5982. }
  5983. },
  5984. slithering: {
  5985. height: math.unit(6, "feet"),
  5986. weight: math.unit(300, "lbs"),
  5987. name: "Slithering",
  5988. image: {
  5989. source: "./media/characters/psymon/slithering.svg",
  5990. extra: 1330 / 1224
  5991. }
  5992. },
  5993. slitheringAlt: {
  5994. height: math.unit(6, "feet"),
  5995. weight: math.unit(300, "lbs"),
  5996. name: "Slithering (Alt)",
  5997. image: {
  5998. source: "./media/characters/psymon/slithering-alt.svg",
  5999. extra: 1330 / 1224
  6000. }
  6001. },
  6002. },
  6003. [
  6004. {
  6005. name: "Normal",
  6006. height: math.unit(11.25, "feet"),
  6007. default: true
  6008. },
  6009. {
  6010. name: "Large",
  6011. height: math.unit(27, "feet")
  6012. },
  6013. {
  6014. name: "Giant",
  6015. height: math.unit(87, "feet")
  6016. },
  6017. {
  6018. name: "Macro",
  6019. height: math.unit(365, "feet")
  6020. },
  6021. {
  6022. name: "Megamacro",
  6023. height: math.unit(3, "miles")
  6024. },
  6025. {
  6026. name: "World Serpent",
  6027. height: math.unit(8000, "miles")
  6028. },
  6029. ]
  6030. ))
  6031. characterMakers.push(() => makeCharacter(
  6032. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6033. {
  6034. front: {
  6035. height: math.unit(6, "feet"),
  6036. weight: math.unit(180, "lbs"),
  6037. name: "Front",
  6038. image: {
  6039. source: "./media/characters/daimos/front.svg",
  6040. extra: 4160 / 3897,
  6041. bottom: 0.021
  6042. }
  6043. }
  6044. },
  6045. [
  6046. {
  6047. name: "Normal",
  6048. height: math.unit(8, "feet"),
  6049. default: true
  6050. },
  6051. {
  6052. name: "Big Dog",
  6053. height: math.unit(22, "feet")
  6054. },
  6055. {
  6056. name: "Macro",
  6057. height: math.unit(127, "feet")
  6058. },
  6059. {
  6060. name: "Megamacro",
  6061. height: math.unit(3600, "feet")
  6062. },
  6063. ]
  6064. ))
  6065. characterMakers.push(() => makeCharacter(
  6066. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6067. {
  6068. side: {
  6069. height: math.unit(6, "feet"),
  6070. weight: math.unit(180, "lbs"),
  6071. name: "Side",
  6072. image: {
  6073. source: "./media/characters/blake/side.svg",
  6074. extra: 1212 / 1120,
  6075. bottom: 0.05
  6076. }
  6077. },
  6078. crouched: {
  6079. height: math.unit(6 * 0.57, "feet"),
  6080. weight: math.unit(180, "lbs"),
  6081. name: "Crouched",
  6082. image: {
  6083. source: "./media/characters/blake/crouched.svg",
  6084. extra: 840 / 587,
  6085. bottom: 0.04
  6086. }
  6087. },
  6088. bent: {
  6089. height: math.unit(6 * 0.75, "feet"),
  6090. weight: math.unit(180, "lbs"),
  6091. name: "Bent",
  6092. image: {
  6093. source: "./media/characters/blake/bent.svg",
  6094. extra: 592 / 544,
  6095. bottom: 0.035
  6096. }
  6097. },
  6098. },
  6099. [
  6100. {
  6101. name: "Normal",
  6102. height: math.unit(8 + 1 / 6, "feet"),
  6103. default: true
  6104. },
  6105. {
  6106. name: "Big Backside",
  6107. height: math.unit(37, "feet")
  6108. },
  6109. {
  6110. name: "Subway Shredder",
  6111. height: math.unit(72, "feet")
  6112. },
  6113. {
  6114. name: "City Carver",
  6115. height: math.unit(1675, "feet")
  6116. },
  6117. {
  6118. name: "Tectonic Tweaker",
  6119. height: math.unit(2300, "miles")
  6120. },
  6121. ]
  6122. ))
  6123. characterMakers.push(() => makeCharacter(
  6124. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6125. {
  6126. front: {
  6127. height: math.unit(6, "feet"),
  6128. weight: math.unit(180, "lbs"),
  6129. name: "Front",
  6130. image: {
  6131. source: "./media/characters/guisetto/front.svg",
  6132. extra: 856 / 817,
  6133. bottom: 0.06
  6134. }
  6135. },
  6136. airborne: {
  6137. height: math.unit(6, "feet"),
  6138. weight: math.unit(180, "lbs"),
  6139. name: "Airborne",
  6140. image: {
  6141. source: "./media/characters/guisetto/airborne.svg",
  6142. extra: 584 / 525
  6143. }
  6144. },
  6145. },
  6146. [
  6147. {
  6148. name: "Normal",
  6149. height: math.unit(10 + 11 / 12, "feet"),
  6150. default: true
  6151. },
  6152. {
  6153. name: "Large",
  6154. height: math.unit(35, "feet")
  6155. },
  6156. {
  6157. name: "Macro",
  6158. height: math.unit(475, "feet")
  6159. },
  6160. ]
  6161. ))
  6162. characterMakers.push(() => makeCharacter(
  6163. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6164. {
  6165. front: {
  6166. height: math.unit(6, "feet"),
  6167. weight: math.unit(180, "lbs"),
  6168. name: "Front",
  6169. image: {
  6170. source: "./media/characters/luxor/front.svg",
  6171. extra: 2940 / 2152
  6172. }
  6173. },
  6174. back: {
  6175. height: math.unit(6, "feet"),
  6176. weight: math.unit(180, "lbs"),
  6177. name: "Back",
  6178. image: {
  6179. source: "./media/characters/luxor/back.svg",
  6180. extra: 1083 / 960
  6181. }
  6182. },
  6183. },
  6184. [
  6185. {
  6186. name: "Normal",
  6187. height: math.unit(5 + 5 / 6, "feet"),
  6188. default: true
  6189. },
  6190. {
  6191. name: "Lamp",
  6192. height: math.unit(50, "feet")
  6193. },
  6194. {
  6195. name: "Lämp",
  6196. height: math.unit(300, "feet")
  6197. },
  6198. {
  6199. name: "The sun is a lamp",
  6200. height: math.unit(250000, "miles")
  6201. },
  6202. ]
  6203. ))
  6204. characterMakers.push(() => makeCharacter(
  6205. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6206. {
  6207. front: {
  6208. height: math.unit(6, "feet"),
  6209. weight: math.unit(50, "lbs"),
  6210. name: "Front",
  6211. image: {
  6212. source: "./media/characters/huoyan/front.svg"
  6213. }
  6214. },
  6215. side: {
  6216. height: math.unit(6, "feet"),
  6217. weight: math.unit(180, "lbs"),
  6218. name: "Side",
  6219. image: {
  6220. source: "./media/characters/huoyan/side.svg"
  6221. }
  6222. },
  6223. },
  6224. [
  6225. {
  6226. name: "Chef",
  6227. height: math.unit(9, "feet")
  6228. },
  6229. {
  6230. name: "Normal",
  6231. height: math.unit(65, "feet"),
  6232. default: true
  6233. },
  6234. {
  6235. name: "Macro",
  6236. height: math.unit(780, "feet")
  6237. },
  6238. {
  6239. name: "Flaming Mountain",
  6240. height: math.unit(4.8, "miles")
  6241. },
  6242. {
  6243. name: "Celestial",
  6244. height: math.unit(765000, "miles")
  6245. },
  6246. ]
  6247. ))
  6248. characterMakers.push(() => makeCharacter(
  6249. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6250. {
  6251. front: {
  6252. height: math.unit(5 + 3 / 4, "feet"),
  6253. weight: math.unit(120, "lbs"),
  6254. name: "Front",
  6255. image: {
  6256. source: "./media/characters/tails/front.svg"
  6257. }
  6258. }
  6259. },
  6260. [
  6261. {
  6262. name: "Normal",
  6263. height: math.unit(5 + 3 / 4, "feet"),
  6264. default: true
  6265. }
  6266. ]
  6267. ))
  6268. characterMakers.push(() => makeCharacter(
  6269. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6270. {
  6271. front: {
  6272. height: math.unit(4, "feet"),
  6273. weight: math.unit(50, "lbs"),
  6274. name: "Front",
  6275. image: {
  6276. source: "./media/characters/rainy/front.svg"
  6277. }
  6278. }
  6279. },
  6280. [
  6281. {
  6282. name: "Macro",
  6283. height: math.unit(800, "feet"),
  6284. default: true
  6285. }
  6286. ]
  6287. ))
  6288. characterMakers.push(() => makeCharacter(
  6289. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6290. {
  6291. front: {
  6292. height: math.unit(6, "feet"),
  6293. weight: math.unit(150, "lbs"),
  6294. name: "Front",
  6295. image: {
  6296. source: "./media/characters/rainier/front.svg"
  6297. }
  6298. }
  6299. },
  6300. [
  6301. {
  6302. name: "Micro",
  6303. height: math.unit(2, "mm"),
  6304. default: true
  6305. }
  6306. ]
  6307. ))
  6308. characterMakers.push(() => makeCharacter(
  6309. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6310. {
  6311. front: {
  6312. height: math.unit(8 + 4/12, "feet"),
  6313. weight: math.unit(450, "kilograms"),
  6314. volume: math.unit(5, "cups"),
  6315. name: "Front",
  6316. image: {
  6317. source: "./media/characters/andy-renard/front.svg",
  6318. extra: 1839/1726,
  6319. bottom: 134/1973
  6320. }
  6321. },
  6322. back: {
  6323. height: math.unit(8 + 4/12, "feet"),
  6324. weight: math.unit(450, "kilograms"),
  6325. volume: math.unit(5, "cups"),
  6326. name: "Back",
  6327. image: {
  6328. source: "./media/characters/andy-renard/back.svg",
  6329. extra: 1838/1710,
  6330. bottom: 105/1943
  6331. }
  6332. },
  6333. },
  6334. [
  6335. {
  6336. name: "Tall",
  6337. height: math.unit(8 + 4/12, "feet")
  6338. },
  6339. {
  6340. name: "Mini Macro",
  6341. height: math.unit(15, "feet"),
  6342. default: true
  6343. },
  6344. {
  6345. name: "Macro",
  6346. height: math.unit(100, "feet")
  6347. },
  6348. {
  6349. name: "Mega Macro",
  6350. height: math.unit(1000, "feet")
  6351. },
  6352. {
  6353. name: "Giga Macro",
  6354. height: math.unit(10, "miles")
  6355. },
  6356. {
  6357. name: "God Macro",
  6358. height: math.unit(1, "multiverse")
  6359. },
  6360. ]
  6361. ))
  6362. characterMakers.push(() => makeCharacter(
  6363. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6364. {
  6365. front: {
  6366. height: math.unit(6, "feet"),
  6367. weight: math.unit(210, "lbs"),
  6368. name: "Front",
  6369. image: {
  6370. source: "./media/characters/cimmaron/front-sfw.svg",
  6371. extra: 701 / 676,
  6372. bottom: 0.046
  6373. }
  6374. },
  6375. back: {
  6376. height: math.unit(6, "feet"),
  6377. weight: math.unit(210, "lbs"),
  6378. name: "Back",
  6379. image: {
  6380. source: "./media/characters/cimmaron/back-sfw.svg",
  6381. extra: 701 / 676,
  6382. bottom: 0.046
  6383. }
  6384. },
  6385. frontNsfw: {
  6386. height: math.unit(6, "feet"),
  6387. weight: math.unit(210, "lbs"),
  6388. name: "Front (NSFW)",
  6389. image: {
  6390. source: "./media/characters/cimmaron/front-nsfw.svg",
  6391. extra: 701 / 676,
  6392. bottom: 0.046
  6393. }
  6394. },
  6395. backNsfw: {
  6396. height: math.unit(6, "feet"),
  6397. weight: math.unit(210, "lbs"),
  6398. name: "Back (NSFW)",
  6399. image: {
  6400. source: "./media/characters/cimmaron/back-nsfw.svg",
  6401. extra: 701 / 676,
  6402. bottom: 0.046
  6403. }
  6404. },
  6405. dick: {
  6406. height: math.unit(1.714, "feet"),
  6407. name: "Dick",
  6408. image: {
  6409. source: "./media/characters/cimmaron/dick.svg"
  6410. }
  6411. },
  6412. },
  6413. [
  6414. {
  6415. name: "Normal",
  6416. height: math.unit(6, "feet"),
  6417. default: true
  6418. },
  6419. {
  6420. name: "Macro Mayor",
  6421. height: math.unit(350, "meters")
  6422. },
  6423. ]
  6424. ))
  6425. characterMakers.push(() => makeCharacter(
  6426. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6427. {
  6428. front: {
  6429. height: math.unit(6, "feet"),
  6430. weight: math.unit(200, "lbs"),
  6431. name: "Front",
  6432. image: {
  6433. source: "./media/characters/akari/front.svg",
  6434. extra: 962 / 901,
  6435. bottom: 0.04
  6436. }
  6437. }
  6438. },
  6439. [
  6440. {
  6441. name: "Micro",
  6442. height: math.unit(5, "inches"),
  6443. default: true
  6444. },
  6445. {
  6446. name: "Normal",
  6447. height: math.unit(7, "feet")
  6448. },
  6449. ]
  6450. ))
  6451. characterMakers.push(() => makeCharacter(
  6452. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6453. {
  6454. front: {
  6455. height: math.unit(6, "feet"),
  6456. weight: math.unit(140, "lbs"),
  6457. name: "Front",
  6458. image: {
  6459. source: "./media/characters/cynosura/front.svg",
  6460. extra: 896 / 847
  6461. }
  6462. },
  6463. back: {
  6464. height: math.unit(6, "feet"),
  6465. weight: math.unit(140, "lbs"),
  6466. name: "Back",
  6467. image: {
  6468. source: "./media/characters/cynosura/back.svg",
  6469. extra: 1365 / 1250
  6470. }
  6471. },
  6472. },
  6473. [
  6474. {
  6475. name: "Micro",
  6476. height: math.unit(4, "inches")
  6477. },
  6478. {
  6479. name: "Normal",
  6480. height: math.unit(5.75, "feet"),
  6481. default: true
  6482. },
  6483. {
  6484. name: "Tall",
  6485. height: math.unit(10, "feet")
  6486. },
  6487. {
  6488. name: "Big",
  6489. height: math.unit(20, "feet")
  6490. },
  6491. {
  6492. name: "Macro",
  6493. height: math.unit(50, "feet")
  6494. },
  6495. ]
  6496. ))
  6497. characterMakers.push(() => makeCharacter(
  6498. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6499. {
  6500. front: {
  6501. height: math.unit(13 + 2/12, "feet"),
  6502. weight: math.unit(800, "kg"),
  6503. name: "Front",
  6504. image: {
  6505. source: "./media/characters/gin/front.svg",
  6506. extra: 1312/1191,
  6507. bottom: 45/1357
  6508. }
  6509. },
  6510. mouth: {
  6511. height: math.unit(2.39 * 1.8, "feet"),
  6512. name: "Mouth",
  6513. image: {
  6514. source: "./media/characters/gin/mouth.svg"
  6515. }
  6516. },
  6517. hand: {
  6518. height: math.unit(1.57 * 2.19, "feet"),
  6519. name: "Hand",
  6520. image: {
  6521. source: "./media/characters/gin/hand.svg"
  6522. }
  6523. },
  6524. foot: {
  6525. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6526. name: "Foot",
  6527. image: {
  6528. source: "./media/characters/gin/foot.svg"
  6529. }
  6530. },
  6531. sole: {
  6532. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6533. name: "Sole",
  6534. image: {
  6535. source: "./media/characters/gin/sole.svg"
  6536. }
  6537. },
  6538. },
  6539. [
  6540. {
  6541. name: "Very Small",
  6542. height: math.unit(13 + 2 / 12, "feet")
  6543. },
  6544. {
  6545. name: "Micro",
  6546. height: math.unit(600, "miles")
  6547. },
  6548. {
  6549. name: "Regular",
  6550. height: math.unit(20, "earths"),
  6551. default: true
  6552. },
  6553. {
  6554. name: "Macro",
  6555. height: math.unit(2.2, "solarradii")
  6556. },
  6557. {
  6558. name: "Teramacro",
  6559. height: math.unit(1.2, "galaxies")
  6560. },
  6561. {
  6562. name: "Omegamacro",
  6563. height: math.unit(200, "universes")
  6564. },
  6565. ]
  6566. ))
  6567. characterMakers.push(() => makeCharacter(
  6568. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6569. {
  6570. front: {
  6571. height: math.unit(6 + 1 / 6, "feet"),
  6572. weight: math.unit(178, "lbs"),
  6573. name: "Front",
  6574. image: {
  6575. source: "./media/characters/guy/front.svg"
  6576. }
  6577. }
  6578. },
  6579. [
  6580. {
  6581. name: "Normal",
  6582. height: math.unit(6 + 1 / 6, "feet"),
  6583. default: true
  6584. },
  6585. {
  6586. name: "Large",
  6587. height: math.unit(25 + 7 / 12, "feet")
  6588. },
  6589. {
  6590. name: "Macro",
  6591. height: math.unit(60 + 9 / 12, "feet")
  6592. },
  6593. {
  6594. name: "Macro+",
  6595. height: math.unit(246, "feet")
  6596. },
  6597. {
  6598. name: "Macro++",
  6599. height: math.unit(878, "feet")
  6600. }
  6601. ]
  6602. ))
  6603. characterMakers.push(() => makeCharacter(
  6604. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6605. {
  6606. front: {
  6607. height: math.unit(9, "feet"),
  6608. weight: math.unit(800, "lbs"),
  6609. name: "Front",
  6610. image: {
  6611. source: "./media/characters/tiberius/front.svg",
  6612. extra: 2295 / 2071
  6613. }
  6614. },
  6615. back: {
  6616. height: math.unit(9, "feet"),
  6617. weight: math.unit(800, "lbs"),
  6618. name: "Back",
  6619. image: {
  6620. source: "./media/characters/tiberius/back.svg",
  6621. extra: 2373 / 2160
  6622. }
  6623. },
  6624. },
  6625. [
  6626. {
  6627. name: "Normal",
  6628. height: math.unit(9, "feet"),
  6629. default: true
  6630. }
  6631. ]
  6632. ))
  6633. characterMakers.push(() => makeCharacter(
  6634. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6635. {
  6636. front: {
  6637. height: math.unit(6, "feet"),
  6638. weight: math.unit(600, "lbs"),
  6639. name: "Front",
  6640. image: {
  6641. source: "./media/characters/surgo/front.svg",
  6642. extra: 3591 / 2227
  6643. }
  6644. },
  6645. back: {
  6646. height: math.unit(6, "feet"),
  6647. weight: math.unit(600, "lbs"),
  6648. name: "Back",
  6649. image: {
  6650. source: "./media/characters/surgo/back.svg",
  6651. extra: 3557 / 2228
  6652. }
  6653. },
  6654. laying: {
  6655. height: math.unit(6 * 0.85, "feet"),
  6656. weight: math.unit(600, "lbs"),
  6657. name: "Laying",
  6658. image: {
  6659. source: "./media/characters/surgo/laying.svg"
  6660. }
  6661. },
  6662. },
  6663. [
  6664. {
  6665. name: "Normal",
  6666. height: math.unit(6, "feet"),
  6667. default: true
  6668. }
  6669. ]
  6670. ))
  6671. characterMakers.push(() => makeCharacter(
  6672. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6673. {
  6674. side: {
  6675. height: math.unit(6, "feet"),
  6676. weight: math.unit(150, "lbs"),
  6677. name: "Side",
  6678. image: {
  6679. source: "./media/characters/cibus/side.svg",
  6680. extra: 800 / 400
  6681. }
  6682. },
  6683. },
  6684. [
  6685. {
  6686. name: "Normal",
  6687. height: math.unit(6, "feet"),
  6688. default: true
  6689. }
  6690. ]
  6691. ))
  6692. characterMakers.push(() => makeCharacter(
  6693. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6694. {
  6695. front: {
  6696. height: math.unit(6, "feet"),
  6697. weight: math.unit(240, "lbs"),
  6698. name: "Front",
  6699. image: {
  6700. source: "./media/characters/nibbles/front.svg"
  6701. }
  6702. },
  6703. side: {
  6704. height: math.unit(6, "feet"),
  6705. weight: math.unit(240, "lbs"),
  6706. name: "Side",
  6707. image: {
  6708. source: "./media/characters/nibbles/side.svg"
  6709. }
  6710. },
  6711. },
  6712. [
  6713. {
  6714. name: "Normal",
  6715. height: math.unit(9, "feet"),
  6716. default: true
  6717. }
  6718. ]
  6719. ))
  6720. characterMakers.push(() => makeCharacter(
  6721. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6722. {
  6723. side: {
  6724. height: math.unit(5 + 1 / 6, "feet"),
  6725. weight: math.unit(130, "lbs"),
  6726. name: "Side",
  6727. image: {
  6728. source: "./media/characters/rikky/side.svg",
  6729. extra: 851 / 801
  6730. }
  6731. },
  6732. },
  6733. [
  6734. {
  6735. name: "Normal",
  6736. height: math.unit(5 + 1 / 6, "feet")
  6737. },
  6738. {
  6739. name: "Macro",
  6740. height: math.unit(152, "feet"),
  6741. default: true
  6742. },
  6743. {
  6744. name: "Megamacro",
  6745. height: math.unit(7, "miles")
  6746. }
  6747. ]
  6748. ))
  6749. characterMakers.push(() => makeCharacter(
  6750. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6751. {
  6752. side: {
  6753. height: math.unit(370, "cm"),
  6754. weight: math.unit(350, "lbs"),
  6755. name: "Side",
  6756. image: {
  6757. source: "./media/characters/malfressa/side.svg"
  6758. }
  6759. },
  6760. walking: {
  6761. height: math.unit(370, "cm"),
  6762. weight: math.unit(350, "lbs"),
  6763. name: "Walking",
  6764. image: {
  6765. source: "./media/characters/malfressa/walking.svg"
  6766. }
  6767. },
  6768. feral: {
  6769. height: math.unit(2500, "cm"),
  6770. weight: math.unit(100000, "lbs"),
  6771. name: "Feral",
  6772. image: {
  6773. source: "./media/characters/malfressa/feral.svg",
  6774. extra: 2108 / 837,
  6775. bottom: 0.02
  6776. }
  6777. },
  6778. },
  6779. [
  6780. {
  6781. name: "Normal",
  6782. height: math.unit(370, "cm")
  6783. },
  6784. {
  6785. name: "Macro",
  6786. height: math.unit(300, "meters"),
  6787. default: true
  6788. }
  6789. ]
  6790. ))
  6791. characterMakers.push(() => makeCharacter(
  6792. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6793. {
  6794. front: {
  6795. height: math.unit(6, "feet"),
  6796. weight: math.unit(60, "kg"),
  6797. name: "Front",
  6798. image: {
  6799. source: "./media/characters/jaro/front.svg",
  6800. extra: 845/817,
  6801. bottom: 45/890
  6802. }
  6803. },
  6804. back: {
  6805. height: math.unit(6, "feet"),
  6806. weight: math.unit(60, "kg"),
  6807. name: "Back",
  6808. image: {
  6809. source: "./media/characters/jaro/back.svg",
  6810. extra: 847/817,
  6811. bottom: 34/881
  6812. }
  6813. },
  6814. },
  6815. [
  6816. {
  6817. name: "Micro",
  6818. height: math.unit(7, "inches")
  6819. },
  6820. {
  6821. name: "Normal",
  6822. height: math.unit(5.5, "feet"),
  6823. default: true
  6824. },
  6825. {
  6826. name: "Minimacro",
  6827. height: math.unit(20, "feet")
  6828. },
  6829. {
  6830. name: "Macro",
  6831. height: math.unit(200, "meters")
  6832. }
  6833. ]
  6834. ))
  6835. characterMakers.push(() => makeCharacter(
  6836. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6837. {
  6838. front: {
  6839. height: math.unit(6, "feet"),
  6840. weight: math.unit(195, "lb"),
  6841. name: "Front",
  6842. image: {
  6843. source: "./media/characters/rogue/front.svg"
  6844. }
  6845. },
  6846. },
  6847. [
  6848. {
  6849. name: "Macro",
  6850. height: math.unit(90, "feet"),
  6851. default: true
  6852. },
  6853. ]
  6854. ))
  6855. characterMakers.push(() => makeCharacter(
  6856. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6857. {
  6858. standing: {
  6859. height: math.unit(5 + 8 / 12, "feet"),
  6860. weight: math.unit(140, "lb"),
  6861. name: "Standing",
  6862. image: {
  6863. source: "./media/characters/piper/standing.svg",
  6864. extra: 1440/1284,
  6865. bottom: 66/1506
  6866. }
  6867. },
  6868. running: {
  6869. height: math.unit(5 + 8 / 12, "feet"),
  6870. weight: math.unit(140, "lb"),
  6871. name: "Running",
  6872. image: {
  6873. source: "./media/characters/piper/running.svg",
  6874. extra: 3948/3655,
  6875. bottom: 0/3948
  6876. }
  6877. },
  6878. sole: {
  6879. height: math.unit(0.81, "feet"),
  6880. weight: math.unit(2, "kg"),
  6881. name: "Sole",
  6882. image: {
  6883. source: "./media/characters/piper/sole.svg"
  6884. }
  6885. },
  6886. nipple: {
  6887. height: math.unit(0.25, "feet"),
  6888. weight: math.unit(1.5, "lb"),
  6889. name: "Nipple",
  6890. image: {
  6891. source: "./media/characters/piper/nipple.svg"
  6892. }
  6893. },
  6894. head: {
  6895. height: math.unit(1.1, "feet"),
  6896. name: "Head",
  6897. image: {
  6898. source: "./media/characters/piper/head.svg"
  6899. }
  6900. },
  6901. },
  6902. [
  6903. {
  6904. name: "Micro",
  6905. height: math.unit(2, "inches")
  6906. },
  6907. {
  6908. name: "Normal",
  6909. height: math.unit(5 + 8 / 12, "feet")
  6910. },
  6911. {
  6912. name: "Macro",
  6913. height: math.unit(250, "feet"),
  6914. default: true
  6915. },
  6916. {
  6917. name: "Megamacro",
  6918. height: math.unit(7, "miles")
  6919. },
  6920. ]
  6921. ))
  6922. characterMakers.push(() => makeCharacter(
  6923. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6924. {
  6925. front: {
  6926. height: math.unit(6, "feet"),
  6927. weight: math.unit(220, "lb"),
  6928. name: "Front",
  6929. image: {
  6930. source: "./media/characters/gemini/front.svg"
  6931. }
  6932. },
  6933. back: {
  6934. height: math.unit(6, "feet"),
  6935. weight: math.unit(220, "lb"),
  6936. name: "Back",
  6937. image: {
  6938. source: "./media/characters/gemini/back.svg"
  6939. }
  6940. },
  6941. kneeling: {
  6942. height: math.unit(6 / 1.5, "feet"),
  6943. weight: math.unit(220, "lb"),
  6944. name: "Kneeling",
  6945. image: {
  6946. source: "./media/characters/gemini/kneeling.svg",
  6947. bottom: 0.02
  6948. }
  6949. },
  6950. },
  6951. [
  6952. {
  6953. name: "Macro",
  6954. height: math.unit(300, "meters"),
  6955. default: true
  6956. },
  6957. {
  6958. name: "Megamacro",
  6959. height: math.unit(6900, "meters")
  6960. },
  6961. ]
  6962. ))
  6963. characterMakers.push(() => makeCharacter(
  6964. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6965. {
  6966. anthro: {
  6967. height: math.unit(2.35, "meters"),
  6968. weight: math.unit(73, "kg"),
  6969. name: "Anthro",
  6970. image: {
  6971. source: "./media/characters/alicia/anthro.svg",
  6972. extra: 2571 / 2385,
  6973. bottom: 75 / 2648
  6974. }
  6975. },
  6976. paw: {
  6977. height: math.unit(1.32, "feet"),
  6978. name: "Paw",
  6979. image: {
  6980. source: "./media/characters/alicia/paw.svg"
  6981. }
  6982. },
  6983. feral: {
  6984. height: math.unit(1.69, "meters"),
  6985. weight: math.unit(73, "kg"),
  6986. name: "Feral",
  6987. image: {
  6988. source: "./media/characters/alicia/feral.svg",
  6989. extra: 2123 / 1715,
  6990. bottom: 222 / 2349
  6991. }
  6992. },
  6993. },
  6994. [
  6995. {
  6996. name: "Normal",
  6997. height: math.unit(2.35, "meters")
  6998. },
  6999. {
  7000. name: "Macro",
  7001. height: math.unit(60, "meters"),
  7002. default: true
  7003. },
  7004. {
  7005. name: "Megamacro",
  7006. height: math.unit(10000, "kilometers")
  7007. },
  7008. ]
  7009. ))
  7010. characterMakers.push(() => makeCharacter(
  7011. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7012. {
  7013. front: {
  7014. height: math.unit(7, "feet"),
  7015. weight: math.unit(250, "lbs"),
  7016. name: "Front",
  7017. image: {
  7018. source: "./media/characters/archy/front.svg"
  7019. }
  7020. }
  7021. },
  7022. [
  7023. {
  7024. name: "Micro",
  7025. height: math.unit(1, "inch")
  7026. },
  7027. {
  7028. name: "Shorty",
  7029. height: math.unit(5, "feet")
  7030. },
  7031. {
  7032. name: "Normal",
  7033. height: math.unit(7, "feet")
  7034. },
  7035. {
  7036. name: "Macro",
  7037. height: math.unit(600, "meters"),
  7038. default: true
  7039. },
  7040. {
  7041. name: "Megamacro",
  7042. height: math.unit(1, "mile")
  7043. },
  7044. ]
  7045. ))
  7046. characterMakers.push(() => makeCharacter(
  7047. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7048. {
  7049. front: {
  7050. height: math.unit(1.65, "meters"),
  7051. weight: math.unit(74, "kg"),
  7052. name: "Front",
  7053. image: {
  7054. source: "./media/characters/berri/front.svg",
  7055. extra: 857 / 837,
  7056. bottom: 18 / 877
  7057. }
  7058. },
  7059. bum: {
  7060. height: math.unit(1.46, "feet"),
  7061. name: "Bum",
  7062. image: {
  7063. source: "./media/characters/berri/bum.svg"
  7064. }
  7065. },
  7066. mouth: {
  7067. height: math.unit(0.44, "feet"),
  7068. name: "Mouth",
  7069. image: {
  7070. source: "./media/characters/berri/mouth.svg"
  7071. }
  7072. },
  7073. paw: {
  7074. height: math.unit(0.826, "feet"),
  7075. name: "Paw",
  7076. image: {
  7077. source: "./media/characters/berri/paw.svg"
  7078. }
  7079. },
  7080. },
  7081. [
  7082. {
  7083. name: "Normal",
  7084. height: math.unit(1.65, "meters")
  7085. },
  7086. {
  7087. name: "Macro",
  7088. height: math.unit(60, "m"),
  7089. default: true
  7090. },
  7091. {
  7092. name: "Megamacro",
  7093. height: math.unit(9.213, "km")
  7094. },
  7095. {
  7096. name: "Planet Eater",
  7097. height: math.unit(489, "megameters")
  7098. },
  7099. {
  7100. name: "Teramacro",
  7101. height: math.unit(2471635000000, "meters")
  7102. },
  7103. {
  7104. name: "Examacro",
  7105. height: math.unit(8.0624e+26, "meters")
  7106. }
  7107. ]
  7108. ))
  7109. characterMakers.push(() => makeCharacter(
  7110. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7111. {
  7112. front: {
  7113. height: math.unit(1.72, "meters"),
  7114. weight: math.unit(68, "kg"),
  7115. name: "Front",
  7116. image: {
  7117. source: "./media/characters/lexi/front.svg"
  7118. }
  7119. }
  7120. },
  7121. [
  7122. {
  7123. name: "Very Smol",
  7124. height: math.unit(10, "mm")
  7125. },
  7126. {
  7127. name: "Micro",
  7128. height: math.unit(6.8, "cm"),
  7129. default: true
  7130. },
  7131. {
  7132. name: "Normal",
  7133. height: math.unit(1.72, "m")
  7134. }
  7135. ]
  7136. ))
  7137. characterMakers.push(() => makeCharacter(
  7138. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7139. {
  7140. front: {
  7141. height: math.unit(1.69, "meters"),
  7142. weight: math.unit(68, "kg"),
  7143. name: "Front",
  7144. image: {
  7145. source: "./media/characters/martin/front.svg",
  7146. extra: 596 / 581
  7147. }
  7148. }
  7149. },
  7150. [
  7151. {
  7152. name: "Micro",
  7153. height: math.unit(6.85, "cm"),
  7154. default: true
  7155. },
  7156. {
  7157. name: "Normal",
  7158. height: math.unit(1.69, "m")
  7159. }
  7160. ]
  7161. ))
  7162. characterMakers.push(() => makeCharacter(
  7163. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7164. {
  7165. front: {
  7166. height: math.unit(1.69, "meters"),
  7167. weight: math.unit(68, "kg"),
  7168. name: "Front",
  7169. image: {
  7170. source: "./media/characters/juno/front.svg"
  7171. }
  7172. }
  7173. },
  7174. [
  7175. {
  7176. name: "Micro",
  7177. height: math.unit(7, "cm")
  7178. },
  7179. {
  7180. name: "Normal",
  7181. height: math.unit(1.89, "m")
  7182. },
  7183. {
  7184. name: "Macro",
  7185. height: math.unit(353, "meters"),
  7186. default: true
  7187. }
  7188. ]
  7189. ))
  7190. characterMakers.push(() => makeCharacter(
  7191. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7192. {
  7193. front: {
  7194. height: math.unit(1.93, "meters"),
  7195. weight: math.unit(83, "kg"),
  7196. name: "Front",
  7197. image: {
  7198. source: "./media/characters/samantha/front.svg"
  7199. }
  7200. },
  7201. frontClothed: {
  7202. height: math.unit(1.93, "meters"),
  7203. weight: math.unit(83, "kg"),
  7204. name: "Front (Clothed)",
  7205. image: {
  7206. source: "./media/characters/samantha/front-clothed.svg"
  7207. }
  7208. },
  7209. back: {
  7210. height: math.unit(1.93, "meters"),
  7211. weight: math.unit(83, "kg"),
  7212. name: "Back",
  7213. image: {
  7214. source: "./media/characters/samantha/back.svg"
  7215. }
  7216. },
  7217. },
  7218. [
  7219. {
  7220. name: "Normal",
  7221. height: math.unit(1.93, "m")
  7222. },
  7223. {
  7224. name: "Macro",
  7225. height: math.unit(74, "meters"),
  7226. default: true
  7227. },
  7228. {
  7229. name: "Macro+",
  7230. height: math.unit(223, "meters"),
  7231. },
  7232. {
  7233. name: "Megamacro",
  7234. height: math.unit(8381, "meters"),
  7235. },
  7236. {
  7237. name: "Megamacro+",
  7238. height: math.unit(12000, "kilometers")
  7239. },
  7240. ]
  7241. ))
  7242. characterMakers.push(() => makeCharacter(
  7243. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7244. {
  7245. front: {
  7246. height: math.unit(1.92, "meters"),
  7247. weight: math.unit(80, "kg"),
  7248. name: "Front",
  7249. image: {
  7250. source: "./media/characters/dr-clay/front.svg"
  7251. }
  7252. },
  7253. frontClothed: {
  7254. height: math.unit(1.92, "meters"),
  7255. weight: math.unit(80, "kg"),
  7256. name: "Front (Clothed)",
  7257. image: {
  7258. source: "./media/characters/dr-clay/front-clothed.svg"
  7259. }
  7260. }
  7261. },
  7262. [
  7263. {
  7264. name: "Normal",
  7265. height: math.unit(1.92, "m")
  7266. },
  7267. {
  7268. name: "Macro",
  7269. height: math.unit(214, "meters"),
  7270. default: true
  7271. },
  7272. {
  7273. name: "Macro+",
  7274. height: math.unit(12.237, "meters"),
  7275. },
  7276. {
  7277. name: "Megamacro",
  7278. height: math.unit(557, "megameters"),
  7279. },
  7280. {
  7281. name: "Unimaginable",
  7282. height: math.unit(120e9, "lightyears")
  7283. },
  7284. ]
  7285. ))
  7286. characterMakers.push(() => makeCharacter(
  7287. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7288. {
  7289. front: {
  7290. height: math.unit(2, "meters"),
  7291. weight: math.unit(80, "kg"),
  7292. name: "Front",
  7293. image: {
  7294. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7295. }
  7296. }
  7297. },
  7298. [
  7299. {
  7300. name: "Teramacro",
  7301. height: math.unit(500000, "lightyears"),
  7302. default: true
  7303. },
  7304. ]
  7305. ))
  7306. characterMakers.push(() => makeCharacter(
  7307. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7308. {
  7309. crux: {
  7310. height: math.unit(2, "meters"),
  7311. weight: math.unit(150, "kg"),
  7312. name: "Crux",
  7313. image: {
  7314. source: "./media/characters/vemus/crux.svg",
  7315. extra: 1074/936,
  7316. bottom: 23/1097
  7317. }
  7318. },
  7319. skunkTanuki: {
  7320. height: math.unit(2, "meters"),
  7321. weight: math.unit(150, "kg"),
  7322. name: "Skunk-Tanuki",
  7323. image: {
  7324. source: "./media/characters/vemus/skunk-tanuki.svg",
  7325. extra: 926/893,
  7326. bottom: 20/946
  7327. }
  7328. },
  7329. },
  7330. [
  7331. {
  7332. name: "Normal",
  7333. height: math.unit(4, "meters"),
  7334. default: true
  7335. },
  7336. {
  7337. name: "Big",
  7338. height: math.unit(8, "meters")
  7339. },
  7340. {
  7341. name: "Macro",
  7342. height: math.unit(100, "meters")
  7343. },
  7344. {
  7345. name: "Macro+",
  7346. height: math.unit(1500, "meters")
  7347. },
  7348. {
  7349. name: "Stellar",
  7350. height: math.unit(14e8, "meters")
  7351. },
  7352. ]
  7353. ))
  7354. characterMakers.push(() => makeCharacter(
  7355. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7356. {
  7357. front: {
  7358. height: math.unit(2, "meters"),
  7359. weight: math.unit(70, "kg"),
  7360. name: "Front",
  7361. image: {
  7362. source: "./media/characters/beherit/front.svg",
  7363. extra: 1234/1109,
  7364. bottom: 55/1289
  7365. }
  7366. }
  7367. },
  7368. [
  7369. {
  7370. name: "Normal",
  7371. height: math.unit(6, "feet")
  7372. },
  7373. {
  7374. name: "Lorg",
  7375. height: math.unit(25, "feet"),
  7376. default: true
  7377. },
  7378. {
  7379. name: "Lorger",
  7380. height: math.unit(75, "feet")
  7381. },
  7382. {
  7383. name: "Macro",
  7384. height: math.unit(200, "meters")
  7385. },
  7386. ]
  7387. ))
  7388. characterMakers.push(() => makeCharacter(
  7389. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7390. {
  7391. front: {
  7392. height: math.unit(2, "meters"),
  7393. weight: math.unit(150, "kg"),
  7394. name: "Front",
  7395. image: {
  7396. source: "./media/characters/everett/front.svg",
  7397. extra: 1017/866,
  7398. bottom: 86/1103
  7399. }
  7400. },
  7401. paw: {
  7402. height: math.unit(2 / 3.6, "meters"),
  7403. name: "Paw",
  7404. image: {
  7405. source: "./media/characters/everett/paw.svg"
  7406. }
  7407. },
  7408. },
  7409. [
  7410. {
  7411. name: "Normal",
  7412. height: math.unit(15, "feet"),
  7413. default: true
  7414. },
  7415. {
  7416. name: "Lorg",
  7417. height: math.unit(70, "feet"),
  7418. default: true
  7419. },
  7420. {
  7421. name: "Lorger",
  7422. height: math.unit(250, "feet")
  7423. },
  7424. {
  7425. name: "Macro",
  7426. height: math.unit(500, "meters")
  7427. },
  7428. ]
  7429. ))
  7430. characterMakers.push(() => makeCharacter(
  7431. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7432. {
  7433. front: {
  7434. height: math.unit(2, "meters"),
  7435. weight: math.unit(86, "kg"),
  7436. name: "Front",
  7437. image: {
  7438. source: "./media/characters/rose/front.svg",
  7439. extra: 1785/1636,
  7440. bottom: 30/1815
  7441. },
  7442. form: "liom",
  7443. default: true
  7444. },
  7445. frontSporty: {
  7446. height: math.unit(2, "meters"),
  7447. weight: math.unit(86, "kg"),
  7448. name: "Front (Sporty)",
  7449. image: {
  7450. source: "./media/characters/rose/front-sporty.svg",
  7451. extra: 350/335,
  7452. bottom: 10/360
  7453. },
  7454. form: "liom"
  7455. },
  7456. frontAlt: {
  7457. height: math.unit(1.6, "meters"),
  7458. weight: math.unit(86, "kg"),
  7459. name: "Front (Alt)",
  7460. image: {
  7461. source: "./media/characters/rose/front-alt.svg",
  7462. extra: 299/283,
  7463. bottom: 3/302
  7464. },
  7465. form: "liom"
  7466. },
  7467. plush: {
  7468. height: math.unit(2, "meters"),
  7469. weight: math.unit(86/3, "kg"),
  7470. name: "Plush",
  7471. image: {
  7472. source: "./media/characters/rose/plush.svg",
  7473. extra: 361/337,
  7474. bottom: 11/372
  7475. },
  7476. form: "plush",
  7477. default: true
  7478. },
  7479. faeStanding: {
  7480. height: math.unit(10, "cm"),
  7481. weight: math.unit(10, "grams"),
  7482. name: "Standing",
  7483. image: {
  7484. source: "./media/characters/rose/fae-standing.svg",
  7485. extra: 1189/1060,
  7486. bottom: 27/1216
  7487. },
  7488. form: "fae",
  7489. default: true
  7490. },
  7491. faeSitting: {
  7492. height: math.unit(5, "cm"),
  7493. weight: math.unit(10, "grams"),
  7494. name: "Sitting",
  7495. image: {
  7496. source: "./media/characters/rose/fae-sitting.svg",
  7497. extra: 737/577,
  7498. bottom: 356/1093
  7499. },
  7500. form: "fae"
  7501. },
  7502. faePaw: {
  7503. height: math.unit(1.35, "cm"),
  7504. name: "Paw",
  7505. image: {
  7506. source: "./media/characters/rose/fae-paw.svg"
  7507. },
  7508. form: "fae"
  7509. },
  7510. },
  7511. [
  7512. {
  7513. name: "True Micro",
  7514. height: math.unit(9, "cm"),
  7515. form: "liom"
  7516. },
  7517. {
  7518. name: "Micro",
  7519. height: math.unit(16, "cm"),
  7520. form: "liom"
  7521. },
  7522. {
  7523. name: "Normal",
  7524. height: math.unit(1.85, "meters"),
  7525. default: true,
  7526. form: "liom"
  7527. },
  7528. {
  7529. name: "Mini-Macro",
  7530. height: math.unit(5, "meters"),
  7531. form: "liom"
  7532. },
  7533. {
  7534. name: "Macro",
  7535. height: math.unit(15, "meters"),
  7536. form: "liom"
  7537. },
  7538. {
  7539. name: "True Macro",
  7540. height: math.unit(40, "meters"),
  7541. form: "liom"
  7542. },
  7543. {
  7544. name: "City Scale",
  7545. height: math.unit(1, "km"),
  7546. form: "liom"
  7547. },
  7548. {
  7549. name: "Plushie",
  7550. height: math.unit(9, "cm"),
  7551. form: "plush",
  7552. default: true
  7553. },
  7554. {
  7555. name: "Fae",
  7556. height: math.unit(10, "cm"),
  7557. form: "fae",
  7558. default: true
  7559. },
  7560. ],
  7561. {
  7562. "liom": {
  7563. name: "Liom"
  7564. },
  7565. "plush": {
  7566. name: "Plush"
  7567. },
  7568. "fae": {
  7569. name: "Fae Fox",
  7570. default: true
  7571. }
  7572. }
  7573. ))
  7574. characterMakers.push(() => makeCharacter(
  7575. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7576. {
  7577. front: {
  7578. height: math.unit(2, "meters"),
  7579. weight: math.unit(350, "lbs"),
  7580. name: "Front",
  7581. image: {
  7582. source: "./media/characters/regal/front.svg"
  7583. }
  7584. },
  7585. back: {
  7586. height: math.unit(2, "meters"),
  7587. weight: math.unit(350, "lbs"),
  7588. name: "Back",
  7589. image: {
  7590. source: "./media/characters/regal/back.svg"
  7591. }
  7592. },
  7593. },
  7594. [
  7595. {
  7596. name: "Macro",
  7597. height: math.unit(350, "feet"),
  7598. default: true
  7599. }
  7600. ]
  7601. ))
  7602. characterMakers.push(() => makeCharacter(
  7603. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7604. {
  7605. front: {
  7606. height: math.unit(4 + 11 / 12, "feet"),
  7607. weight: math.unit(100, "lbs"),
  7608. name: "Front",
  7609. image: {
  7610. source: "./media/characters/opal/front.svg"
  7611. }
  7612. },
  7613. frontAlt: {
  7614. height: math.unit(4 + 11 / 12, "feet"),
  7615. weight: math.unit(100, "lbs"),
  7616. name: "Front (Alt)",
  7617. image: {
  7618. source: "./media/characters/opal/front-alt.svg"
  7619. }
  7620. },
  7621. },
  7622. [
  7623. {
  7624. name: "Small",
  7625. height: math.unit(4 + 11 / 12, "feet")
  7626. },
  7627. {
  7628. name: "Normal",
  7629. height: math.unit(20, "feet"),
  7630. default: true
  7631. },
  7632. {
  7633. name: "Macro",
  7634. height: math.unit(120, "feet")
  7635. },
  7636. {
  7637. name: "Megamacro",
  7638. height: math.unit(80, "miles")
  7639. },
  7640. {
  7641. name: "True Size",
  7642. height: math.unit(100000, "lightyears")
  7643. },
  7644. ]
  7645. ))
  7646. characterMakers.push(() => makeCharacter(
  7647. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7648. {
  7649. front: {
  7650. height: math.unit(6, "feet"),
  7651. weight: math.unit(200, "lbs"),
  7652. name: "Front",
  7653. image: {
  7654. source: "./media/characters/vector-wuff/front.svg"
  7655. }
  7656. }
  7657. },
  7658. [
  7659. {
  7660. name: "Normal",
  7661. height: math.unit(2.8, "meters")
  7662. },
  7663. {
  7664. name: "Macro",
  7665. height: math.unit(450, "meters"),
  7666. default: true
  7667. },
  7668. {
  7669. name: "Megamacro",
  7670. height: math.unit(15, "kilometers")
  7671. }
  7672. ]
  7673. ))
  7674. characterMakers.push(() => makeCharacter(
  7675. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7676. {
  7677. front: {
  7678. height: math.unit(6, "feet"),
  7679. weight: math.unit(256, "lbs"),
  7680. name: "Front",
  7681. image: {
  7682. source: "./media/characters/dannik/front.svg"
  7683. }
  7684. }
  7685. },
  7686. [
  7687. {
  7688. name: "Macro",
  7689. height: math.unit(69.57, "meters"),
  7690. default: true
  7691. },
  7692. ]
  7693. ))
  7694. characterMakers.push(() => makeCharacter(
  7695. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7696. {
  7697. front: {
  7698. height: math.unit(6, "feet"),
  7699. weight: math.unit(120, "lbs"),
  7700. name: "Front",
  7701. image: {
  7702. source: "./media/characters/azura-saharah/front.svg"
  7703. }
  7704. },
  7705. back: {
  7706. height: math.unit(6, "feet"),
  7707. weight: math.unit(120, "lbs"),
  7708. name: "Back",
  7709. image: {
  7710. source: "./media/characters/azura-saharah/back.svg"
  7711. }
  7712. },
  7713. },
  7714. [
  7715. {
  7716. name: "Macro",
  7717. height: math.unit(100, "feet"),
  7718. default: true
  7719. },
  7720. ]
  7721. ))
  7722. characterMakers.push(() => makeCharacter(
  7723. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7724. {
  7725. side: {
  7726. height: math.unit(5 + 4 / 12, "feet"),
  7727. weight: math.unit(163, "lbs"),
  7728. name: "Side",
  7729. image: {
  7730. source: "./media/characters/kennedy/side.svg"
  7731. }
  7732. }
  7733. },
  7734. [
  7735. {
  7736. name: "Standard Doggo",
  7737. height: math.unit(5 + 4 / 12, "feet")
  7738. },
  7739. {
  7740. name: "Big Doggo",
  7741. height: math.unit(25 + 3 / 12, "feet"),
  7742. default: true
  7743. },
  7744. ]
  7745. ))
  7746. characterMakers.push(() => makeCharacter(
  7747. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7748. {
  7749. front: {
  7750. height: math.unit(5 + 5/12, "feet"),
  7751. weight: math.unit(100, "lbs"),
  7752. name: "Front",
  7753. image: {
  7754. source: "./media/characters/odios-de-lunar/front.svg",
  7755. extra: 1468/1323,
  7756. bottom: 22/1490
  7757. }
  7758. }
  7759. },
  7760. [
  7761. {
  7762. name: "Micro",
  7763. height: math.unit(3, "inches")
  7764. },
  7765. {
  7766. name: "Normal",
  7767. height: math.unit(5.5, "feet"),
  7768. default: true
  7769. },
  7770. {
  7771. name: "Macro",
  7772. height: math.unit(100, "feet")
  7773. },
  7774. ]
  7775. ))
  7776. characterMakers.push(() => makeCharacter(
  7777. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7778. {
  7779. back: {
  7780. height: math.unit(6, "feet"),
  7781. weight: math.unit(220, "lbs"),
  7782. name: "Back",
  7783. image: {
  7784. source: "./media/characters/mandake/back.svg"
  7785. }
  7786. }
  7787. },
  7788. [
  7789. {
  7790. name: "Normal",
  7791. height: math.unit(7, "feet"),
  7792. default: true
  7793. },
  7794. {
  7795. name: "Macro",
  7796. height: math.unit(78, "feet")
  7797. },
  7798. {
  7799. name: "Macro+",
  7800. height: math.unit(300, "meters")
  7801. },
  7802. {
  7803. name: "Macro++",
  7804. height: math.unit(2400, "feet")
  7805. },
  7806. {
  7807. name: "Megamacro",
  7808. height: math.unit(5167, "meters")
  7809. },
  7810. {
  7811. name: "Gigamacro",
  7812. height: math.unit(41769, "miles")
  7813. },
  7814. ]
  7815. ))
  7816. characterMakers.push(() => makeCharacter(
  7817. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7818. {
  7819. front: {
  7820. height: math.unit(6, "feet"),
  7821. weight: math.unit(120, "lbs"),
  7822. name: "Front",
  7823. image: {
  7824. source: "./media/characters/yozey/front.svg"
  7825. }
  7826. },
  7827. frontAlt: {
  7828. height: math.unit(6, "feet"),
  7829. weight: math.unit(120, "lbs"),
  7830. name: "Front (Alt)",
  7831. image: {
  7832. source: "./media/characters/yozey/front-alt.svg"
  7833. }
  7834. },
  7835. side: {
  7836. height: math.unit(6, "feet"),
  7837. weight: math.unit(120, "lbs"),
  7838. name: "Side",
  7839. image: {
  7840. source: "./media/characters/yozey/side.svg"
  7841. }
  7842. },
  7843. },
  7844. [
  7845. {
  7846. name: "Micro",
  7847. height: math.unit(3, "inches"),
  7848. default: true
  7849. },
  7850. {
  7851. name: "Normal",
  7852. height: math.unit(6, "feet")
  7853. }
  7854. ]
  7855. ))
  7856. characterMakers.push(() => makeCharacter(
  7857. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7858. {
  7859. front: {
  7860. height: math.unit(6, "feet"),
  7861. weight: math.unit(103, "lbs"),
  7862. name: "Front",
  7863. image: {
  7864. source: "./media/characters/valeska-voss/front.svg"
  7865. }
  7866. }
  7867. },
  7868. [
  7869. {
  7870. name: "Mini-Sized Sub",
  7871. height: math.unit(3.1, "inches")
  7872. },
  7873. {
  7874. name: "Mid-Sized Sub",
  7875. height: math.unit(6.2, "inches")
  7876. },
  7877. {
  7878. name: "Full-Sized Sub",
  7879. height: math.unit(9.3, "inches")
  7880. },
  7881. {
  7882. name: "Normal",
  7883. height: math.unit(5 + 2 / 12, "foot"),
  7884. default: true
  7885. },
  7886. ]
  7887. ))
  7888. characterMakers.push(() => makeCharacter(
  7889. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7890. {
  7891. front: {
  7892. height: math.unit(6, "feet"),
  7893. weight: math.unit(160, "lbs"),
  7894. name: "Front",
  7895. image: {
  7896. source: "./media/characters/gene-zeta/front.svg",
  7897. extra: 3006 / 2826,
  7898. bottom: 182 / 3188
  7899. }
  7900. }
  7901. },
  7902. [
  7903. {
  7904. name: "Micro",
  7905. height: math.unit(6, "inches")
  7906. },
  7907. {
  7908. name: "Normal",
  7909. height: math.unit(5 + 11 / 12, "foot"),
  7910. default: true
  7911. },
  7912. {
  7913. name: "Macro",
  7914. height: math.unit(140, "feet")
  7915. },
  7916. {
  7917. name: "Supercharged",
  7918. height: math.unit(2500, "feet")
  7919. },
  7920. ]
  7921. ))
  7922. characterMakers.push(() => makeCharacter(
  7923. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7924. {
  7925. front: {
  7926. height: math.unit(6, "feet"),
  7927. weight: math.unit(350, "lbs"),
  7928. name: "Front",
  7929. image: {
  7930. source: "./media/characters/razinox/front.svg",
  7931. extra: 1686 / 1548,
  7932. bottom: 28.2 / 1868
  7933. }
  7934. },
  7935. back: {
  7936. height: math.unit(6, "feet"),
  7937. weight: math.unit(350, "lbs"),
  7938. name: "Back",
  7939. image: {
  7940. source: "./media/characters/razinox/back.svg",
  7941. extra: 1660 / 1590,
  7942. bottom: 15 / 1665
  7943. }
  7944. },
  7945. },
  7946. [
  7947. {
  7948. name: "Normal",
  7949. height: math.unit(10 + 8 / 12, "foot")
  7950. },
  7951. {
  7952. name: "Minimacro",
  7953. height: math.unit(15, "foot")
  7954. },
  7955. {
  7956. name: "Macro",
  7957. height: math.unit(60, "foot"),
  7958. default: true
  7959. },
  7960. {
  7961. name: "Megamacro",
  7962. height: math.unit(5, "miles")
  7963. },
  7964. {
  7965. name: "Gigamacro",
  7966. height: math.unit(6000, "miles")
  7967. },
  7968. ]
  7969. ))
  7970. characterMakers.push(() => makeCharacter(
  7971. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7972. {
  7973. front: {
  7974. height: math.unit(6, "feet"),
  7975. weight: math.unit(150, "lbs"),
  7976. name: "Front",
  7977. image: {
  7978. source: "./media/characters/cobalt/front.svg"
  7979. }
  7980. }
  7981. },
  7982. [
  7983. {
  7984. name: "Normal",
  7985. height: math.unit(8 + 1 / 12, "foot")
  7986. },
  7987. {
  7988. name: "Macro",
  7989. height: math.unit(111, "foot"),
  7990. default: true
  7991. },
  7992. {
  7993. name: "Supracosmic",
  7994. height: math.unit(1e42, "feet")
  7995. },
  7996. ]
  7997. ))
  7998. characterMakers.push(() => makeCharacter(
  7999. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8000. {
  8001. front: {
  8002. height: math.unit(5, "inches"),
  8003. name: "Front",
  8004. image: {
  8005. source: "./media/characters/amanda/front.svg",
  8006. extra: 926/791,
  8007. bottom: 38/964
  8008. }
  8009. },
  8010. back: {
  8011. height: math.unit(5, "inches"),
  8012. name: "Back",
  8013. image: {
  8014. source: "./media/characters/amanda/back.svg",
  8015. extra: 909/805,
  8016. bottom: 43/952
  8017. }
  8018. },
  8019. },
  8020. [
  8021. {
  8022. name: "Micro",
  8023. height: math.unit(5, "inches"),
  8024. default: true
  8025. },
  8026. ]
  8027. ))
  8028. characterMakers.push(() => makeCharacter(
  8029. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8030. {
  8031. front: {
  8032. height: math.unit(2.75, "meters"),
  8033. weight: math.unit(1200, "lb"),
  8034. name: "Front",
  8035. image: {
  8036. source: "./media/characters/teal/front.svg",
  8037. extra: 2463 / 2320,
  8038. bottom: 166 / 2629
  8039. }
  8040. },
  8041. back: {
  8042. height: math.unit(2.75, "meters"),
  8043. weight: math.unit(1200, "lb"),
  8044. name: "Back",
  8045. image: {
  8046. source: "./media/characters/teal/back.svg",
  8047. extra: 2580 / 2489,
  8048. bottom: 151 / 2731
  8049. }
  8050. },
  8051. sitting: {
  8052. height: math.unit(1.9, "meters"),
  8053. weight: math.unit(1200, "lb"),
  8054. name: "Sitting",
  8055. image: {
  8056. source: "./media/characters/teal/sitting.svg",
  8057. extra: 623 / 590,
  8058. bottom: 121 / 744
  8059. }
  8060. },
  8061. standing: {
  8062. height: math.unit(2.75, "meters"),
  8063. weight: math.unit(1200, "lb"),
  8064. name: "Standing",
  8065. image: {
  8066. source: "./media/characters/teal/standing.svg",
  8067. extra: 923 / 893,
  8068. bottom: 60 / 983
  8069. }
  8070. },
  8071. stretching: {
  8072. height: math.unit(3.65, "meters"),
  8073. weight: math.unit(1200, "lb"),
  8074. name: "Stretching",
  8075. image: {
  8076. source: "./media/characters/teal/stretching.svg",
  8077. extra: 1276 / 1244,
  8078. bottom: 0 / 1276
  8079. }
  8080. },
  8081. legged: {
  8082. height: math.unit(1.3, "meters"),
  8083. weight: math.unit(100, "lb"),
  8084. name: "Legged",
  8085. image: {
  8086. source: "./media/characters/teal/legged.svg",
  8087. extra: 462 / 437,
  8088. bottom: 24 / 486
  8089. }
  8090. },
  8091. naga: {
  8092. height: math.unit(5.4, "meters"),
  8093. weight: math.unit(4000, "lb"),
  8094. name: "Naga",
  8095. image: {
  8096. source: "./media/characters/teal/naga.svg",
  8097. extra: 1902 / 1858,
  8098. bottom: 0 / 1902
  8099. }
  8100. },
  8101. hand: {
  8102. height: math.unit(0.52, "meters"),
  8103. name: "Hand",
  8104. image: {
  8105. source: "./media/characters/teal/hand.svg"
  8106. }
  8107. },
  8108. maw: {
  8109. height: math.unit(0.43, "meters"),
  8110. name: "Maw",
  8111. image: {
  8112. source: "./media/characters/teal/maw.svg"
  8113. }
  8114. },
  8115. slit: {
  8116. height: math.unit(0.25, "meters"),
  8117. name: "Slit",
  8118. image: {
  8119. source: "./media/characters/teal/slit.svg"
  8120. }
  8121. },
  8122. },
  8123. [
  8124. {
  8125. name: "Normal",
  8126. height: math.unit(2.75, "meters"),
  8127. default: true
  8128. },
  8129. {
  8130. name: "Macro",
  8131. height: math.unit(300, "feet")
  8132. },
  8133. {
  8134. name: "Macro+",
  8135. height: math.unit(2000, "feet")
  8136. },
  8137. ]
  8138. ))
  8139. characterMakers.push(() => makeCharacter(
  8140. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8141. {
  8142. frontCat: {
  8143. height: math.unit(6, "feet"),
  8144. weight: math.unit(180, "lbs"),
  8145. name: "Front (Cat)",
  8146. image: {
  8147. source: "./media/characters/ravin-amulet/front-cat.svg"
  8148. }
  8149. },
  8150. frontCatAlt: {
  8151. height: math.unit(6, "feet"),
  8152. weight: math.unit(180, "lbs"),
  8153. name: "Front (Alt, Cat)",
  8154. image: {
  8155. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8156. }
  8157. },
  8158. frontWerewolf: {
  8159. height: math.unit(6 * 1.2, "feet"),
  8160. weight: math.unit(225, "lbs"),
  8161. name: "Front (Werewolf)",
  8162. image: {
  8163. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8164. }
  8165. },
  8166. backWerewolf: {
  8167. height: math.unit(6 * 1.2, "feet"),
  8168. weight: math.unit(225, "lbs"),
  8169. name: "Back (Werewolf)",
  8170. image: {
  8171. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8172. }
  8173. },
  8174. },
  8175. [
  8176. {
  8177. name: "Nano",
  8178. height: math.unit(1, "micrometer")
  8179. },
  8180. {
  8181. name: "Micro",
  8182. height: math.unit(1, "inch")
  8183. },
  8184. {
  8185. name: "Normal",
  8186. height: math.unit(6, "feet"),
  8187. default: true
  8188. },
  8189. {
  8190. name: "Macro",
  8191. height: math.unit(60, "feet")
  8192. }
  8193. ]
  8194. ))
  8195. characterMakers.push(() => makeCharacter(
  8196. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8197. {
  8198. front: {
  8199. height: math.unit(6, "feet"),
  8200. weight: math.unit(165, "lbs"),
  8201. name: "Front",
  8202. image: {
  8203. source: "./media/characters/fluoresce/front.svg"
  8204. }
  8205. }
  8206. },
  8207. [
  8208. {
  8209. name: "Micro",
  8210. height: math.unit(6, "cm")
  8211. },
  8212. {
  8213. name: "Normal",
  8214. height: math.unit(5 + 7 / 12, "feet"),
  8215. default: true
  8216. },
  8217. {
  8218. name: "Macro",
  8219. height: math.unit(56, "feet")
  8220. },
  8221. {
  8222. name: "Megamacro",
  8223. height: math.unit(1.9, "miles")
  8224. },
  8225. ]
  8226. ))
  8227. characterMakers.push(() => makeCharacter(
  8228. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8229. {
  8230. front: {
  8231. height: math.unit(9 + 6 / 12, "feet"),
  8232. weight: math.unit(523, "lbs"),
  8233. name: "Side",
  8234. image: {
  8235. source: "./media/characters/aurora/side.svg"
  8236. }
  8237. }
  8238. },
  8239. [
  8240. {
  8241. name: "Normal",
  8242. height: math.unit(9 + 6 / 12, "feet")
  8243. },
  8244. {
  8245. name: "Macro",
  8246. height: math.unit(96, "feet"),
  8247. default: true
  8248. },
  8249. {
  8250. name: "Macro+",
  8251. height: math.unit(243, "feet")
  8252. },
  8253. ]
  8254. ))
  8255. characterMakers.push(() => makeCharacter(
  8256. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8257. {
  8258. front: {
  8259. height: math.unit(194, "cm"),
  8260. weight: math.unit(90, "kg"),
  8261. name: "Front",
  8262. image: {
  8263. source: "./media/characters/ranek/front.svg",
  8264. extra: 1862/1791,
  8265. bottom: 80/1942
  8266. }
  8267. },
  8268. back: {
  8269. height: math.unit(194, "cm"),
  8270. weight: math.unit(90, "kg"),
  8271. name: "Back",
  8272. image: {
  8273. source: "./media/characters/ranek/back.svg",
  8274. extra: 1853/1787,
  8275. bottom: 74/1927
  8276. }
  8277. },
  8278. feral: {
  8279. height: math.unit(30, "cm"),
  8280. weight: math.unit(1.6, "lbs"),
  8281. name: "Feral",
  8282. image: {
  8283. source: "./media/characters/ranek/feral.svg",
  8284. extra: 990/631,
  8285. bottom: 29/1019
  8286. }
  8287. },
  8288. },
  8289. [
  8290. {
  8291. name: "Normal",
  8292. height: math.unit(194, "cm"),
  8293. default: true
  8294. },
  8295. {
  8296. name: "Macro",
  8297. height: math.unit(100, "meters")
  8298. },
  8299. ]
  8300. ))
  8301. characterMakers.push(() => makeCharacter(
  8302. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8303. {
  8304. front: {
  8305. height: math.unit(5 + 6 / 12, "feet"),
  8306. weight: math.unit(153, "lbs"),
  8307. name: "Front",
  8308. image: {
  8309. source: "./media/characters/andrew-cooper/front.svg"
  8310. }
  8311. },
  8312. },
  8313. [
  8314. {
  8315. name: "Nano",
  8316. height: math.unit(1, "mm")
  8317. },
  8318. {
  8319. name: "Micro",
  8320. height: math.unit(2, "inches")
  8321. },
  8322. {
  8323. name: "Normal",
  8324. height: math.unit(5 + 6 / 12, "feet"),
  8325. default: true
  8326. }
  8327. ]
  8328. ))
  8329. characterMakers.push(() => makeCharacter(
  8330. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8331. {
  8332. front: {
  8333. height: math.unit(6, "feet"),
  8334. weight: math.unit(180, "lbs"),
  8335. name: "Front",
  8336. image: {
  8337. source: "./media/characters/akane-sato/front.svg",
  8338. extra: 1219 / 1140
  8339. }
  8340. },
  8341. back: {
  8342. height: math.unit(6, "feet"),
  8343. weight: math.unit(180, "lbs"),
  8344. name: "Back",
  8345. image: {
  8346. source: "./media/characters/akane-sato/back.svg",
  8347. extra: 1219 / 1170
  8348. }
  8349. },
  8350. },
  8351. [
  8352. {
  8353. name: "Normal",
  8354. height: math.unit(2.5, "meters")
  8355. },
  8356. {
  8357. name: "Macro",
  8358. height: math.unit(250, "meters"),
  8359. default: true
  8360. },
  8361. {
  8362. name: "Megamacro",
  8363. height: math.unit(25, "km")
  8364. },
  8365. ]
  8366. ))
  8367. characterMakers.push(() => makeCharacter(
  8368. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8369. {
  8370. front: {
  8371. height: math.unit(6, "feet"),
  8372. weight: math.unit(65, "kg"),
  8373. name: "Front",
  8374. image: {
  8375. source: "./media/characters/rook/front.svg",
  8376. extra: 960 / 950
  8377. }
  8378. }
  8379. },
  8380. [
  8381. {
  8382. name: "Normal",
  8383. height: math.unit(8.8, "feet")
  8384. },
  8385. {
  8386. name: "Macro",
  8387. height: math.unit(88, "feet"),
  8388. default: true
  8389. },
  8390. {
  8391. name: "Megamacro",
  8392. height: math.unit(8, "miles")
  8393. },
  8394. ]
  8395. ))
  8396. characterMakers.push(() => makeCharacter(
  8397. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8398. {
  8399. front: {
  8400. height: math.unit(12 + 2 / 12, "feet"),
  8401. weight: math.unit(808, "lbs"),
  8402. name: "Front",
  8403. image: {
  8404. source: "./media/characters/prodigy/front.svg"
  8405. }
  8406. }
  8407. },
  8408. [
  8409. {
  8410. name: "Normal",
  8411. height: math.unit(12 + 2 / 12, "feet"),
  8412. default: true
  8413. },
  8414. {
  8415. name: "Macro",
  8416. height: math.unit(143, "feet")
  8417. },
  8418. {
  8419. name: "Macro+",
  8420. height: math.unit(400, "feet")
  8421. },
  8422. ]
  8423. ))
  8424. characterMakers.push(() => makeCharacter(
  8425. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8426. {
  8427. front: {
  8428. height: math.unit(6, "feet"),
  8429. weight: math.unit(225, "lbs"),
  8430. name: "Front",
  8431. image: {
  8432. source: "./media/characters/daniel/front.svg"
  8433. }
  8434. },
  8435. leaning: {
  8436. height: math.unit(6, "feet"),
  8437. weight: math.unit(225, "lbs"),
  8438. name: "Leaning",
  8439. image: {
  8440. source: "./media/characters/daniel/leaning.svg"
  8441. }
  8442. },
  8443. },
  8444. [
  8445. {
  8446. name: "Macro",
  8447. height: math.unit(1000, "feet"),
  8448. default: true
  8449. },
  8450. ]
  8451. ))
  8452. characterMakers.push(() => makeCharacter(
  8453. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8454. {
  8455. front: {
  8456. height: math.unit(6, "feet"),
  8457. weight: math.unit(88, "lbs"),
  8458. name: "Front",
  8459. image: {
  8460. source: "./media/characters/chiros/front.svg",
  8461. extra: 306 / 226
  8462. }
  8463. },
  8464. side: {
  8465. height: math.unit(6, "feet"),
  8466. weight: math.unit(88, "lbs"),
  8467. name: "Side",
  8468. image: {
  8469. source: "./media/characters/chiros/side.svg",
  8470. extra: 306 / 226
  8471. }
  8472. },
  8473. },
  8474. [
  8475. {
  8476. name: "Normal",
  8477. height: math.unit(6, "cm"),
  8478. default: true
  8479. },
  8480. ]
  8481. ))
  8482. characterMakers.push(() => makeCharacter(
  8483. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8484. {
  8485. front: {
  8486. height: math.unit(6, "feet"),
  8487. weight: math.unit(100, "lbs"),
  8488. name: "Front",
  8489. image: {
  8490. source: "./media/characters/selka/front.svg",
  8491. extra: 947 / 887
  8492. }
  8493. }
  8494. },
  8495. [
  8496. {
  8497. name: "Normal",
  8498. height: math.unit(5, "cm"),
  8499. default: true
  8500. },
  8501. ]
  8502. ))
  8503. characterMakers.push(() => makeCharacter(
  8504. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8505. {
  8506. front: {
  8507. height: math.unit(8 + 3 / 12, "feet"),
  8508. weight: math.unit(424, "lbs"),
  8509. name: "Front",
  8510. image: {
  8511. source: "./media/characters/verin/front.svg",
  8512. extra: 1845 / 1550
  8513. }
  8514. },
  8515. frontArmored: {
  8516. height: math.unit(8 + 3 / 12, "feet"),
  8517. weight: math.unit(424, "lbs"),
  8518. name: "Front (Armored)",
  8519. image: {
  8520. source: "./media/characters/verin/front-armor.svg",
  8521. extra: 1845 / 1550,
  8522. bottom: 0.01
  8523. }
  8524. },
  8525. back: {
  8526. height: math.unit(8 + 3 / 12, "feet"),
  8527. weight: math.unit(424, "lbs"),
  8528. name: "Back",
  8529. image: {
  8530. source: "./media/characters/verin/back.svg",
  8531. bottom: 0.1,
  8532. extra: 1
  8533. }
  8534. },
  8535. foot: {
  8536. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8537. name: "Foot",
  8538. image: {
  8539. source: "./media/characters/verin/foot.svg"
  8540. }
  8541. },
  8542. },
  8543. [
  8544. {
  8545. name: "Normal",
  8546. height: math.unit(8 + 3 / 12, "feet")
  8547. },
  8548. {
  8549. name: "Minimacro",
  8550. height: math.unit(21, "feet"),
  8551. default: true
  8552. },
  8553. {
  8554. name: "Macro",
  8555. height: math.unit(626, "feet")
  8556. },
  8557. ]
  8558. ))
  8559. characterMakers.push(() => makeCharacter(
  8560. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8561. {
  8562. front: {
  8563. height: math.unit(2.718, "meters"),
  8564. weight: math.unit(150, "lbs"),
  8565. name: "Front",
  8566. image: {
  8567. source: "./media/characters/sovrim-terraquian/front.svg",
  8568. extra: 1752/1689,
  8569. bottom: 36/1788
  8570. }
  8571. },
  8572. back: {
  8573. height: math.unit(2.718, "meters"),
  8574. weight: math.unit(150, "lbs"),
  8575. name: "Back",
  8576. image: {
  8577. source: "./media/characters/sovrim-terraquian/back.svg",
  8578. extra: 1698/1657,
  8579. bottom: 58/1756
  8580. }
  8581. },
  8582. tongue: {
  8583. height: math.unit(2.865, "feet"),
  8584. name: "Tongue",
  8585. image: {
  8586. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8587. }
  8588. },
  8589. hand: {
  8590. height: math.unit(1.61, "feet"),
  8591. name: "Hand",
  8592. image: {
  8593. source: "./media/characters/sovrim-terraquian/hand.svg"
  8594. }
  8595. },
  8596. foot: {
  8597. height: math.unit(1.05, "feet"),
  8598. name: "Foot",
  8599. image: {
  8600. source: "./media/characters/sovrim-terraquian/foot.svg"
  8601. }
  8602. },
  8603. footAlt: {
  8604. height: math.unit(0.88, "feet"),
  8605. name: "Foot (Alt)",
  8606. image: {
  8607. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8608. }
  8609. },
  8610. },
  8611. [
  8612. {
  8613. name: "Micro",
  8614. height: math.unit(2, "inches")
  8615. },
  8616. {
  8617. name: "Small",
  8618. height: math.unit(1, "meter")
  8619. },
  8620. {
  8621. name: "Normal",
  8622. height: math.unit(Math.E, "meters"),
  8623. default: true
  8624. },
  8625. {
  8626. name: "Macro",
  8627. height: math.unit(20, "meters")
  8628. },
  8629. {
  8630. name: "Macro+",
  8631. height: math.unit(400, "meters")
  8632. },
  8633. ]
  8634. ))
  8635. characterMakers.push(() => makeCharacter(
  8636. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8637. {
  8638. front: {
  8639. height: math.unit(7, "feet"),
  8640. weight: math.unit(489, "lbs"),
  8641. name: "Front",
  8642. image: {
  8643. source: "./media/characters/reece-silvermane/front.svg",
  8644. bottom: 0.02,
  8645. extra: 1
  8646. }
  8647. },
  8648. },
  8649. [
  8650. {
  8651. name: "Macro",
  8652. height: math.unit(1.5, "miles"),
  8653. default: true
  8654. },
  8655. ]
  8656. ))
  8657. characterMakers.push(() => makeCharacter(
  8658. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8659. {
  8660. front: {
  8661. height: math.unit(6, "feet"),
  8662. weight: math.unit(78, "kg"),
  8663. name: "Front",
  8664. image: {
  8665. source: "./media/characters/kane/front.svg",
  8666. extra: 978 / 899
  8667. }
  8668. },
  8669. },
  8670. [
  8671. {
  8672. name: "Normal",
  8673. height: math.unit(2.1, "m"),
  8674. },
  8675. {
  8676. name: "Macro",
  8677. height: math.unit(1, "km"),
  8678. default: true
  8679. },
  8680. ]
  8681. ))
  8682. characterMakers.push(() => makeCharacter(
  8683. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8684. {
  8685. front: {
  8686. height: math.unit(6, "feet"),
  8687. weight: math.unit(200, "kg"),
  8688. name: "Front",
  8689. image: {
  8690. source: "./media/characters/tegon/front.svg",
  8691. bottom: 0.01,
  8692. extra: 1
  8693. }
  8694. },
  8695. },
  8696. [
  8697. {
  8698. name: "Micro",
  8699. height: math.unit(1, "inch")
  8700. },
  8701. {
  8702. name: "Normal",
  8703. height: math.unit(6 + 3 / 12, "feet"),
  8704. default: true
  8705. },
  8706. {
  8707. name: "Macro",
  8708. height: math.unit(300, "feet")
  8709. },
  8710. {
  8711. name: "Megamacro",
  8712. height: math.unit(69, "miles")
  8713. },
  8714. ]
  8715. ))
  8716. characterMakers.push(() => makeCharacter(
  8717. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8718. {
  8719. side: {
  8720. height: math.unit(6, "feet"),
  8721. weight: math.unit(2304, "lbs"),
  8722. name: "Side",
  8723. image: {
  8724. source: "./media/characters/arcturax/side.svg",
  8725. extra: 790 / 376,
  8726. bottom: 0.01
  8727. }
  8728. },
  8729. },
  8730. [
  8731. {
  8732. name: "Micro",
  8733. height: math.unit(2, "inch")
  8734. },
  8735. {
  8736. name: "Normal",
  8737. height: math.unit(6, "feet")
  8738. },
  8739. {
  8740. name: "Macro",
  8741. height: math.unit(39, "feet"),
  8742. default: true
  8743. },
  8744. {
  8745. name: "Megamacro",
  8746. height: math.unit(7, "miles")
  8747. },
  8748. ]
  8749. ))
  8750. characterMakers.push(() => makeCharacter(
  8751. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8752. {
  8753. front: {
  8754. height: math.unit(6, "feet"),
  8755. weight: math.unit(50, "lbs"),
  8756. name: "Front",
  8757. image: {
  8758. source: "./media/characters/sentri/front.svg",
  8759. extra: 1750 / 1570,
  8760. bottom: 0.025
  8761. }
  8762. },
  8763. frontAlt: {
  8764. height: math.unit(6, "feet"),
  8765. weight: math.unit(50, "lbs"),
  8766. name: "Front (Alt)",
  8767. image: {
  8768. source: "./media/characters/sentri/front-alt.svg",
  8769. extra: 1750 / 1570,
  8770. bottom: 0.025
  8771. }
  8772. },
  8773. },
  8774. [
  8775. {
  8776. name: "Normal",
  8777. height: math.unit(15, "feet"),
  8778. default: true
  8779. },
  8780. {
  8781. name: "Macro",
  8782. height: math.unit(2500, "feet")
  8783. }
  8784. ]
  8785. ))
  8786. characterMakers.push(() => makeCharacter(
  8787. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8788. {
  8789. front: {
  8790. height: math.unit(5 + 8 / 12, "feet"),
  8791. weight: math.unit(130, "lbs"),
  8792. name: "Front",
  8793. image: {
  8794. source: "./media/characters/corvin/front.svg",
  8795. extra: 1803 / 1629
  8796. }
  8797. },
  8798. frontShirt: {
  8799. height: math.unit(5 + 8 / 12, "feet"),
  8800. weight: math.unit(130, "lbs"),
  8801. name: "Front (Shirt)",
  8802. image: {
  8803. source: "./media/characters/corvin/front-shirt.svg",
  8804. extra: 1803 / 1629
  8805. }
  8806. },
  8807. frontPoncho: {
  8808. height: math.unit(5 + 8 / 12, "feet"),
  8809. weight: math.unit(130, "lbs"),
  8810. name: "Front (Poncho)",
  8811. image: {
  8812. source: "./media/characters/corvin/front-poncho.svg",
  8813. extra: 1803 / 1629
  8814. }
  8815. },
  8816. side: {
  8817. height: math.unit(5 + 8 / 12, "feet"),
  8818. weight: math.unit(130, "lbs"),
  8819. name: "Side",
  8820. image: {
  8821. source: "./media/characters/corvin/side.svg",
  8822. extra: 1012 / 945
  8823. }
  8824. },
  8825. back: {
  8826. height: math.unit(5 + 8 / 12, "feet"),
  8827. weight: math.unit(130, "lbs"),
  8828. name: "Back",
  8829. image: {
  8830. source: "./media/characters/corvin/back.svg",
  8831. extra: 1803 / 1629
  8832. }
  8833. },
  8834. },
  8835. [
  8836. {
  8837. name: "Micro",
  8838. height: math.unit(3, "inches")
  8839. },
  8840. {
  8841. name: "Normal",
  8842. height: math.unit(5 + 8 / 12, "feet")
  8843. },
  8844. {
  8845. name: "Macro",
  8846. height: math.unit(300, "feet"),
  8847. default: true
  8848. },
  8849. {
  8850. name: "Megamacro",
  8851. height: math.unit(500, "miles")
  8852. }
  8853. ]
  8854. ))
  8855. characterMakers.push(() => makeCharacter(
  8856. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8857. {
  8858. front: {
  8859. height: math.unit(6, "feet"),
  8860. weight: math.unit(135, "lbs"),
  8861. name: "Front",
  8862. image: {
  8863. source: "./media/characters/q/front.svg",
  8864. extra: 854 / 752,
  8865. bottom: 0.005
  8866. }
  8867. },
  8868. back: {
  8869. height: math.unit(6, "feet"),
  8870. weight: math.unit(130, "lbs"),
  8871. name: "Back",
  8872. image: {
  8873. source: "./media/characters/q/back.svg",
  8874. extra: 854 / 752
  8875. }
  8876. },
  8877. },
  8878. [
  8879. {
  8880. name: "Macro",
  8881. height: math.unit(90, "feet"),
  8882. default: true
  8883. },
  8884. {
  8885. name: "Extra Macro",
  8886. height: math.unit(300, "feet"),
  8887. },
  8888. {
  8889. name: "BIG WALF",
  8890. height: math.unit(750, "feet"),
  8891. },
  8892. ]
  8893. ))
  8894. characterMakers.push(() => makeCharacter(
  8895. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8896. {
  8897. front: {
  8898. height: math.unit(3, "feet"),
  8899. weight: math.unit(28, "lbs"),
  8900. name: "Front",
  8901. image: {
  8902. source: "./media/characters/citrine/front.svg"
  8903. }
  8904. }
  8905. },
  8906. [
  8907. {
  8908. name: "Normal",
  8909. height: math.unit(3, "feet"),
  8910. default: true
  8911. }
  8912. ]
  8913. ))
  8914. characterMakers.push(() => makeCharacter(
  8915. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8916. {
  8917. front: {
  8918. height: math.unit(14, "feet"),
  8919. weight: math.unit(1450, "kg"),
  8920. preyCapacity: math.unit(15, "people"),
  8921. name: "Front",
  8922. image: {
  8923. source: "./media/characters/aura-starwind/front.svg",
  8924. extra: 1440/1327,
  8925. bottom: 11/1451
  8926. }
  8927. },
  8928. side: {
  8929. height: math.unit(14, "feet"),
  8930. weight: math.unit(1450, "kg"),
  8931. preyCapacity: math.unit(15, "people"),
  8932. name: "Side",
  8933. image: {
  8934. source: "./media/characters/aura-starwind/side.svg",
  8935. extra: 1654 / 1497
  8936. }
  8937. },
  8938. taur: {
  8939. height: math.unit(18, "feet"),
  8940. weight: math.unit(5500, "kg"),
  8941. preyCapacity: math.unit(50, "people"),
  8942. name: "Taur",
  8943. image: {
  8944. source: "./media/characters/aura-starwind/taur.svg",
  8945. extra: 1760 / 1650
  8946. }
  8947. },
  8948. feral: {
  8949. height: math.unit(46, "feet"),
  8950. weight: math.unit(25000, "kg"),
  8951. preyCapacity: math.unit(120, "people"),
  8952. name: "Feral",
  8953. image: {
  8954. source: "./media/characters/aura-starwind/feral.svg"
  8955. }
  8956. },
  8957. },
  8958. [
  8959. {
  8960. name: "Normal",
  8961. height: math.unit(14, "feet"),
  8962. default: true
  8963. },
  8964. {
  8965. name: "Macro",
  8966. height: math.unit(50, "meters")
  8967. },
  8968. {
  8969. name: "Megamacro",
  8970. height: math.unit(5000, "meters")
  8971. },
  8972. {
  8973. name: "Gigamacro",
  8974. height: math.unit(100000, "kilometers")
  8975. },
  8976. ]
  8977. ))
  8978. characterMakers.push(() => makeCharacter(
  8979. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8980. {
  8981. front: {
  8982. height: math.unit(2 + 7 / 12, "feet"),
  8983. weight: math.unit(32, "lbs"),
  8984. name: "Front",
  8985. image: {
  8986. source: "./media/characters/rivet/front.svg",
  8987. extra: 1716 / 1658,
  8988. bottom: 0.03
  8989. }
  8990. },
  8991. foot: {
  8992. height: math.unit(0.551, "feet"),
  8993. name: "Rivet's Foot",
  8994. image: {
  8995. source: "./media/characters/rivet/foot.svg"
  8996. },
  8997. rename: true
  8998. }
  8999. },
  9000. [
  9001. {
  9002. name: "Micro",
  9003. height: math.unit(1.5, "inches"),
  9004. },
  9005. {
  9006. name: "Normal",
  9007. height: math.unit(2 + 7 / 12, "feet"),
  9008. default: true
  9009. },
  9010. {
  9011. name: "Macro",
  9012. height: math.unit(85, "feet")
  9013. },
  9014. {
  9015. name: "Megamacro",
  9016. height: math.unit(2.2, "km")
  9017. }
  9018. ]
  9019. ))
  9020. characterMakers.push(() => makeCharacter(
  9021. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9022. {
  9023. front: {
  9024. height: math.unit(5 + 9 / 12, "feet"),
  9025. weight: math.unit(150, "lbs"),
  9026. name: "Front",
  9027. image: {
  9028. source: "./media/characters/coffee/front.svg",
  9029. extra: 946/880,
  9030. bottom: 66/1012
  9031. }
  9032. },
  9033. foot: {
  9034. height: math.unit(1.29, "feet"),
  9035. name: "Foot",
  9036. image: {
  9037. source: "./media/characters/coffee/foot.svg"
  9038. }
  9039. },
  9040. },
  9041. [
  9042. {
  9043. name: "Micro",
  9044. height: math.unit(2, "inches"),
  9045. },
  9046. {
  9047. name: "Normal",
  9048. height: math.unit(5 + 9 / 12, "feet"),
  9049. default: true
  9050. },
  9051. {
  9052. name: "Macro",
  9053. height: math.unit(800, "feet")
  9054. },
  9055. {
  9056. name: "Megamacro",
  9057. height: math.unit(25, "miles")
  9058. }
  9059. ]
  9060. ))
  9061. characterMakers.push(() => makeCharacter(
  9062. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9063. {
  9064. front: {
  9065. height: math.unit(6, "feet"),
  9066. weight: math.unit(200, "lbs"),
  9067. name: "Front",
  9068. image: {
  9069. source: "./media/characters/chari-gal/front.svg",
  9070. extra: 1568 / 1385,
  9071. bottom: 0.047
  9072. }
  9073. },
  9074. gigantamax: {
  9075. height: math.unit(6 * 16, "feet"),
  9076. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9077. name: "Gigantamax",
  9078. image: {
  9079. source: "./media/characters/chari-gal/gigantamax.svg",
  9080. extra: 1124 / 888,
  9081. bottom: 0.03
  9082. }
  9083. },
  9084. },
  9085. [
  9086. {
  9087. name: "Normal",
  9088. height: math.unit(5 + 7 / 12, "feet")
  9089. },
  9090. {
  9091. name: "Macro",
  9092. height: math.unit(200, "feet"),
  9093. default: true
  9094. }
  9095. ]
  9096. ))
  9097. characterMakers.push(() => makeCharacter(
  9098. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9099. {
  9100. front: {
  9101. height: math.unit(6, "feet"),
  9102. weight: math.unit(150, "lbs"),
  9103. name: "Front",
  9104. image: {
  9105. source: "./media/characters/nova/front.svg",
  9106. extra: 5000 / 4722,
  9107. bottom: 0.02
  9108. }
  9109. }
  9110. },
  9111. [
  9112. {
  9113. name: "Micro-",
  9114. height: math.unit(0.8, "inches")
  9115. },
  9116. {
  9117. name: "Micro",
  9118. height: math.unit(2, "inches"),
  9119. default: true
  9120. },
  9121. ]
  9122. ))
  9123. characterMakers.push(() => makeCharacter(
  9124. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9125. {
  9126. koboldFront: {
  9127. height: math.unit(3 + 1 / 12, "feet"),
  9128. weight: math.unit(21.7, "lbs"),
  9129. name: "Front",
  9130. image: {
  9131. source: "./media/characters/argent/kobold-front.svg",
  9132. extra: 1471 / 1331,
  9133. bottom: 100.8 / 1575.5
  9134. },
  9135. form: "kobold",
  9136. default: true
  9137. },
  9138. dragonFront: {
  9139. height: math.unit(75, "inches"),
  9140. name: "Front",
  9141. image: {
  9142. source: "./media/characters/argent/dragon-front.svg",
  9143. extra: 1389/1248,
  9144. bottom: 54/1443
  9145. },
  9146. form: "dragon",
  9147. },
  9148. dragonBack: {
  9149. height: math.unit(75, "inches"),
  9150. name: "Back",
  9151. image: {
  9152. source: "./media/characters/argent/dragon-back.svg",
  9153. extra: 1399/1271,
  9154. bottom: 23/1422
  9155. },
  9156. form: "dragon",
  9157. },
  9158. dragonDressed: {
  9159. height: math.unit(75, "inches"),
  9160. name: "Dressed",
  9161. image: {
  9162. source: "./media/characters/argent/dragon-dressed.svg",
  9163. extra: 1350/1215,
  9164. bottom: 26/1376
  9165. },
  9166. form: "dragon"
  9167. },
  9168. dragonHead: {
  9169. height: math.unit(23.5, "inches"),
  9170. name: "Head",
  9171. image: {
  9172. source: "./media/characters/argent/dragon-head.svg"
  9173. },
  9174. form: "dragon",
  9175. },
  9176. },
  9177. [
  9178. {
  9179. name: "Micro",
  9180. height: math.unit(2, "inches"),
  9181. form: "kobold",
  9182. },
  9183. {
  9184. name: "Normal",
  9185. height: math.unit(3 + 1 / 12, "feet"),
  9186. form: "kobold",
  9187. default: true
  9188. },
  9189. {
  9190. name: "Macro",
  9191. height: math.unit(120, "feet"),
  9192. form: "kobold",
  9193. },
  9194. {
  9195. name: "Speck",
  9196. height: math.unit(1, "mm"),
  9197. form: "dragon",
  9198. },
  9199. {
  9200. name: "Tiny",
  9201. height: math.unit(1, "cm"),
  9202. form: "dragon",
  9203. },
  9204. {
  9205. name: "Micro",
  9206. height: math.unit(5, "cm"),
  9207. form: "dragon",
  9208. },
  9209. {
  9210. name: "Normal",
  9211. height: math.unit(75, "inches"),
  9212. form: "dragon",
  9213. default: true
  9214. },
  9215. {
  9216. name: "Extra Tall",
  9217. height: math.unit(9, "feet"),
  9218. form: "dragon",
  9219. },
  9220. {
  9221. name: "Inconvenient",
  9222. height: math.unit(5, "meters"),
  9223. form: "dragon",
  9224. },
  9225. {
  9226. name: "Macro",
  9227. height: math.unit(70, "meters"),
  9228. form: "dragon",
  9229. },
  9230. {
  9231. name: "Macro+",
  9232. height: math.unit(250, "meters"),
  9233. form: "dragon",
  9234. },
  9235. {
  9236. name: "Megamacro",
  9237. height: math.unit(20, "km"),
  9238. form: "dragon",
  9239. },
  9240. {
  9241. name: "Mountainous",
  9242. height: math.unit(100, "km"),
  9243. form: "dragon",
  9244. },
  9245. {
  9246. name: "Continental",
  9247. height: math.unit(2, "megameters"),
  9248. form: "dragon",
  9249. },
  9250. {
  9251. name: "Too Big",
  9252. height: math.unit(900, "megameters"),
  9253. form: "dragon",
  9254. },
  9255. ],
  9256. {
  9257. "kobold": {
  9258. name: "Kobold",
  9259. default: true
  9260. },
  9261. "dragon": {
  9262. name: "Dragon",
  9263. },
  9264. }
  9265. ))
  9266. characterMakers.push(() => makeCharacter(
  9267. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9268. {
  9269. lamp: {
  9270. height: math.unit(7 * 1559 / 989, "feet"),
  9271. name: "Magic Lamp",
  9272. image: {
  9273. source: "./media/characters/mira-al-cul/lamp.svg",
  9274. extra: 1617 / 1559
  9275. }
  9276. },
  9277. front: {
  9278. height: math.unit(7, "feet"),
  9279. name: "Front",
  9280. image: {
  9281. source: "./media/characters/mira-al-cul/front.svg",
  9282. extra: 1044 / 990
  9283. }
  9284. },
  9285. },
  9286. [
  9287. {
  9288. name: "Heavily Restricted",
  9289. height: math.unit(7 * 1559 / 989, "feet")
  9290. },
  9291. {
  9292. name: "Freshly Freed",
  9293. height: math.unit(50 * 1559 / 989, "feet")
  9294. },
  9295. {
  9296. name: "World Encompassing",
  9297. height: math.unit(10000 * 1559 / 989, "miles")
  9298. },
  9299. {
  9300. name: "Galactic",
  9301. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9302. },
  9303. {
  9304. name: "Palmed Universe",
  9305. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9306. default: true
  9307. },
  9308. {
  9309. name: "Multiversal Matriarch",
  9310. height: math.unit(8.87e10, "yottameters")
  9311. },
  9312. {
  9313. name: "Void Mother",
  9314. height: math.unit(3.14e110, "yottaparsecs")
  9315. },
  9316. {
  9317. name: "Toying with Transcendence",
  9318. height: math.unit(1e307, "meters")
  9319. },
  9320. ]
  9321. ))
  9322. characterMakers.push(() => makeCharacter(
  9323. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9324. {
  9325. front: {
  9326. height: math.unit(17 + 1 / 12, "feet"),
  9327. weight: math.unit(476.2 * 5, "lbs"),
  9328. name: "Front",
  9329. image: {
  9330. source: "./media/characters/kuro-shi-uchū/front.svg",
  9331. extra: 2329 / 1835,
  9332. bottom: 0.02
  9333. }
  9334. },
  9335. },
  9336. [
  9337. {
  9338. name: "Micro",
  9339. height: math.unit(2, "inches")
  9340. },
  9341. {
  9342. name: "Normal",
  9343. height: math.unit(12, "meters")
  9344. },
  9345. {
  9346. name: "Planetary",
  9347. height: math.unit(0.00929, "AU"),
  9348. default: true
  9349. },
  9350. {
  9351. name: "Universal",
  9352. height: math.unit(20, "gigaparsecs")
  9353. },
  9354. ]
  9355. ))
  9356. characterMakers.push(() => makeCharacter(
  9357. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9358. {
  9359. front: {
  9360. height: math.unit(5 + 2 / 12, "feet"),
  9361. weight: math.unit(120, "lbs"),
  9362. name: "Front",
  9363. image: {
  9364. source: "./media/characters/katherine/front.svg",
  9365. extra: 2075 / 1969
  9366. }
  9367. },
  9368. dress: {
  9369. height: math.unit(5 + 2 / 12, "feet"),
  9370. weight: math.unit(120, "lbs"),
  9371. name: "Dress",
  9372. image: {
  9373. source: "./media/characters/katherine/dress.svg",
  9374. extra: 2258 / 2064
  9375. }
  9376. },
  9377. },
  9378. [
  9379. {
  9380. name: "Micro",
  9381. height: math.unit(1, "inches"),
  9382. default: true
  9383. },
  9384. {
  9385. name: "Normal",
  9386. height: math.unit(5 + 2 / 12, "feet")
  9387. },
  9388. {
  9389. name: "Macro",
  9390. height: math.unit(100, "meters")
  9391. },
  9392. {
  9393. name: "Megamacro",
  9394. height: math.unit(80, "miles")
  9395. },
  9396. ]
  9397. ))
  9398. characterMakers.push(() => makeCharacter(
  9399. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9400. {
  9401. front: {
  9402. height: math.unit(7 + 8 / 12, "feet"),
  9403. weight: math.unit(250, "lbs"),
  9404. name: "Front",
  9405. image: {
  9406. source: "./media/characters/yevis/front.svg",
  9407. extra: 1938 / 1755
  9408. }
  9409. }
  9410. },
  9411. [
  9412. {
  9413. name: "Mortal",
  9414. height: math.unit(7 + 8 / 12, "feet")
  9415. },
  9416. {
  9417. name: "Battle",
  9418. height: math.unit(25 + 11 / 12, "feet")
  9419. },
  9420. {
  9421. name: "Wrath",
  9422. height: math.unit(1654 + 11 / 12, "feet")
  9423. },
  9424. {
  9425. name: "Planet Destroyer",
  9426. height: math.unit(12000, "miles")
  9427. },
  9428. {
  9429. name: "Galaxy Conqueror",
  9430. height: math.unit(1.45, "zettameters"),
  9431. default: true
  9432. },
  9433. {
  9434. name: "Universal War",
  9435. height: math.unit(184, "gigaparsecs")
  9436. },
  9437. {
  9438. name: "Eternity War",
  9439. height: math.unit(1.98e55, "yottaparsecs")
  9440. },
  9441. ]
  9442. ))
  9443. characterMakers.push(() => makeCharacter(
  9444. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9445. {
  9446. front: {
  9447. height: math.unit(5 + 8 / 12, "feet"),
  9448. weight: math.unit(63, "kg"),
  9449. name: "Front",
  9450. image: {
  9451. source: "./media/characters/xavier/front.svg",
  9452. extra: 944 / 883
  9453. }
  9454. },
  9455. frontStretch: {
  9456. height: math.unit(5 + 8 / 12, "feet"),
  9457. weight: math.unit(63, "kg"),
  9458. name: "Stretching",
  9459. image: {
  9460. source: "./media/characters/xavier/front-stretch.svg",
  9461. extra: 962 / 820
  9462. }
  9463. },
  9464. },
  9465. [
  9466. {
  9467. name: "Normal",
  9468. height: math.unit(5 + 8 / 12, "feet")
  9469. },
  9470. {
  9471. name: "Macro",
  9472. height: math.unit(100, "meters"),
  9473. default: true
  9474. },
  9475. {
  9476. name: "McLargeHuge",
  9477. height: math.unit(10, "miles")
  9478. },
  9479. ]
  9480. ))
  9481. characterMakers.push(() => makeCharacter(
  9482. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9483. {
  9484. front: {
  9485. height: math.unit(5 + 5 / 12, "feet"),
  9486. weight: math.unit(150, "lb"),
  9487. name: "Front",
  9488. image: {
  9489. source: "./media/characters/joshii/front.svg",
  9490. extra: 765 / 653,
  9491. bottom: 51 / 816
  9492. }
  9493. },
  9494. foot: {
  9495. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9496. name: "Foot",
  9497. image: {
  9498. source: "./media/characters/joshii/foot.svg"
  9499. }
  9500. },
  9501. },
  9502. [
  9503. {
  9504. name: "Micro",
  9505. height: math.unit(2, "inches")
  9506. },
  9507. {
  9508. name: "Normal",
  9509. height: math.unit(5 + 5 / 12, "feet")
  9510. },
  9511. {
  9512. name: "Macro",
  9513. height: math.unit(785, "feet"),
  9514. default: true
  9515. },
  9516. {
  9517. name: "Megamacro",
  9518. height: math.unit(24.5, "miles")
  9519. },
  9520. ]
  9521. ))
  9522. characterMakers.push(() => makeCharacter(
  9523. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9524. {
  9525. front: {
  9526. height: math.unit(6, "feet"),
  9527. weight: math.unit(150, "lb"),
  9528. name: "Front",
  9529. image: {
  9530. source: "./media/characters/goddess-elizabeth/front.svg",
  9531. extra: 1800 / 1525,
  9532. bottom: 0.005
  9533. }
  9534. },
  9535. foot: {
  9536. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9537. name: "Foot",
  9538. image: {
  9539. source: "./media/characters/goddess-elizabeth/foot.svg"
  9540. }
  9541. },
  9542. mouth: {
  9543. height: math.unit(6, "feet"),
  9544. name: "Mouth",
  9545. image: {
  9546. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9547. }
  9548. },
  9549. },
  9550. [
  9551. {
  9552. name: "Micro",
  9553. height: math.unit(12, "feet")
  9554. },
  9555. {
  9556. name: "Normal",
  9557. height: math.unit(80, "miles"),
  9558. default: true
  9559. },
  9560. {
  9561. name: "Macro",
  9562. height: math.unit(15000, "parsecs")
  9563. },
  9564. ]
  9565. ))
  9566. characterMakers.push(() => makeCharacter(
  9567. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9568. {
  9569. front: {
  9570. height: math.unit(5 + 9 / 12, "feet"),
  9571. weight: math.unit(144, "lb"),
  9572. name: "Front",
  9573. image: {
  9574. source: "./media/characters/kara/front.svg"
  9575. }
  9576. },
  9577. feet: {
  9578. height: math.unit(6 / 6.765, "feet"),
  9579. name: "Kara's Feet",
  9580. rename: true,
  9581. image: {
  9582. source: "./media/characters/kara/feet.svg"
  9583. }
  9584. },
  9585. },
  9586. [
  9587. {
  9588. name: "Normal",
  9589. height: math.unit(5 + 9 / 12, "feet")
  9590. },
  9591. {
  9592. name: "Macro",
  9593. height: math.unit(174, "feet"),
  9594. default: true
  9595. },
  9596. ]
  9597. ))
  9598. characterMakers.push(() => makeCharacter(
  9599. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9600. {
  9601. front: {
  9602. height: math.unit(18, "feet"),
  9603. weight: math.unit(4050, "lb"),
  9604. name: "Front",
  9605. image: {
  9606. source: "./media/characters/tyrone/front.svg",
  9607. extra: 2405 / 2270,
  9608. bottom: 182 / 2587
  9609. }
  9610. },
  9611. },
  9612. [
  9613. {
  9614. name: "Normal",
  9615. height: math.unit(18, "feet"),
  9616. default: true
  9617. },
  9618. {
  9619. name: "Macro",
  9620. height: math.unit(300, "feet")
  9621. },
  9622. {
  9623. name: "Megamacro",
  9624. height: math.unit(15, "km")
  9625. },
  9626. {
  9627. name: "Gigamacro",
  9628. height: math.unit(500, "km")
  9629. },
  9630. {
  9631. name: "Teramacro",
  9632. height: math.unit(0.5, "gigameters")
  9633. },
  9634. {
  9635. name: "Omnimacro",
  9636. height: math.unit(1e252, "yottauniverse")
  9637. },
  9638. ]
  9639. ))
  9640. characterMakers.push(() => makeCharacter(
  9641. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9642. {
  9643. front: {
  9644. height: math.unit(7 + 8 / 12, "feet"),
  9645. weight: math.unit(120, "lb"),
  9646. name: "Front",
  9647. image: {
  9648. source: "./media/characters/danny/front.svg",
  9649. extra: 1490 / 1350
  9650. }
  9651. },
  9652. back: {
  9653. height: math.unit(7 + 8 / 12, "feet"),
  9654. weight: math.unit(120, "lb"),
  9655. name: "Back",
  9656. image: {
  9657. source: "./media/characters/danny/back.svg",
  9658. extra: 1490 / 1350
  9659. }
  9660. },
  9661. },
  9662. [
  9663. {
  9664. name: "Normal",
  9665. height: math.unit(7 + 8 / 12, "feet"),
  9666. default: true
  9667. },
  9668. ]
  9669. ))
  9670. characterMakers.push(() => makeCharacter(
  9671. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9672. {
  9673. front: {
  9674. height: math.unit(3.5, "inches"),
  9675. weight: math.unit(19, "grams"),
  9676. name: "Front",
  9677. image: {
  9678. source: "./media/characters/mallow/front.svg",
  9679. extra: 471 / 431
  9680. }
  9681. },
  9682. back: {
  9683. height: math.unit(3.5, "inches"),
  9684. weight: math.unit(19, "grams"),
  9685. name: "Back",
  9686. image: {
  9687. source: "./media/characters/mallow/back.svg",
  9688. extra: 471 / 431
  9689. }
  9690. },
  9691. },
  9692. [
  9693. {
  9694. name: "Normal",
  9695. height: math.unit(3.5, "inches"),
  9696. default: true
  9697. },
  9698. ]
  9699. ))
  9700. characterMakers.push(() => makeCharacter(
  9701. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9702. {
  9703. front: {
  9704. height: math.unit(9, "feet"),
  9705. weight: math.unit(230, "kg"),
  9706. name: "Front",
  9707. image: {
  9708. source: "./media/characters/starry-aqua/front.svg"
  9709. }
  9710. },
  9711. back: {
  9712. height: math.unit(9, "feet"),
  9713. weight: math.unit(230, "kg"),
  9714. name: "Back",
  9715. image: {
  9716. source: "./media/characters/starry-aqua/back.svg"
  9717. }
  9718. },
  9719. hand: {
  9720. height: math.unit(9 * 0.1168, "feet"),
  9721. name: "Hand",
  9722. image: {
  9723. source: "./media/characters/starry-aqua/hand.svg"
  9724. }
  9725. },
  9726. foot: {
  9727. height: math.unit(9 * 0.18, "feet"),
  9728. name: "Foot",
  9729. image: {
  9730. source: "./media/characters/starry-aqua/foot.svg"
  9731. }
  9732. }
  9733. },
  9734. [
  9735. {
  9736. name: "Micro",
  9737. height: math.unit(3, "inches")
  9738. },
  9739. {
  9740. name: "Normal",
  9741. height: math.unit(9, "feet")
  9742. },
  9743. {
  9744. name: "Macro",
  9745. height: math.unit(300, "feet"),
  9746. default: true
  9747. },
  9748. {
  9749. name: "Megamacro",
  9750. height: math.unit(3200, "feet")
  9751. }
  9752. ]
  9753. ))
  9754. characterMakers.push(() => makeCharacter(
  9755. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9756. {
  9757. front: {
  9758. height: math.unit(15, "feet"),
  9759. weight: math.unit(5026, "lb"),
  9760. name: "Front",
  9761. image: {
  9762. source: "./media/characters/luka-towers/front.svg",
  9763. extra: 1269/1133,
  9764. bottom: 51/1320
  9765. }
  9766. },
  9767. },
  9768. [
  9769. {
  9770. name: "Normal",
  9771. height: math.unit(15, "feet"),
  9772. default: true
  9773. },
  9774. {
  9775. name: "Minimacro",
  9776. height: math.unit(25, "feet")
  9777. },
  9778. {
  9779. name: "Macro",
  9780. height: math.unit(320, "feet")
  9781. },
  9782. {
  9783. name: "Megamacro",
  9784. height: math.unit(35000, "feet")
  9785. },
  9786. {
  9787. name: "Gigamacro",
  9788. height: math.unit(4000, "miles")
  9789. },
  9790. {
  9791. name: "Teramacro",
  9792. height: math.unit(15000, "miles")
  9793. },
  9794. ]
  9795. ))
  9796. characterMakers.push(() => makeCharacter(
  9797. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9798. {
  9799. front: {
  9800. height: math.unit(6, "feet"),
  9801. weight: math.unit(150, "lb"),
  9802. name: "Front",
  9803. image: {
  9804. source: "./media/characters/natalie-nightring/front.svg",
  9805. extra: 1,
  9806. bottom: 0.06
  9807. }
  9808. },
  9809. },
  9810. [
  9811. {
  9812. name: "Uh Oh",
  9813. height: math.unit(0.1, "mm")
  9814. },
  9815. {
  9816. name: "Small",
  9817. height: math.unit(3, "inches")
  9818. },
  9819. {
  9820. name: "Human Scale",
  9821. height: math.unit(6, "feet")
  9822. },
  9823. {
  9824. name: "Librarian",
  9825. height: math.unit(50, "feet"),
  9826. default: true
  9827. },
  9828. {
  9829. name: "Immense",
  9830. height: math.unit(200, "miles")
  9831. },
  9832. ]
  9833. ))
  9834. characterMakers.push(() => makeCharacter(
  9835. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9836. {
  9837. front: {
  9838. height: math.unit(6, "feet"),
  9839. weight: math.unit(180, "lbs"),
  9840. name: "Front",
  9841. image: {
  9842. source: "./media/characters/danni-rosie/front.svg",
  9843. extra: 1260 / 1128,
  9844. bottom: 0.022
  9845. }
  9846. },
  9847. },
  9848. [
  9849. {
  9850. name: "Micro",
  9851. height: math.unit(2, "inches"),
  9852. default: true
  9853. },
  9854. ]
  9855. ))
  9856. characterMakers.push(() => makeCharacter(
  9857. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9858. {
  9859. front: {
  9860. height: math.unit(5 + 9 / 12, "feet"),
  9861. weight: math.unit(220, "lb"),
  9862. name: "Front",
  9863. image: {
  9864. source: "./media/characters/samantha-kruse/front.svg",
  9865. extra: (985 / 935),
  9866. bottom: 0.03
  9867. }
  9868. },
  9869. frontUndressed: {
  9870. height: math.unit(5 + 9 / 12, "feet"),
  9871. weight: math.unit(220, "lb"),
  9872. name: "Front (Undressed)",
  9873. image: {
  9874. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9875. extra: (973 / 923),
  9876. bottom: 0.025
  9877. }
  9878. },
  9879. fat: {
  9880. height: math.unit(5 + 9 / 12, "feet"),
  9881. weight: math.unit(900, "lb"),
  9882. name: "Front (Fat)",
  9883. image: {
  9884. source: "./media/characters/samantha-kruse/fat.svg",
  9885. extra: 2688 / 2561
  9886. }
  9887. },
  9888. },
  9889. [
  9890. {
  9891. name: "Normal",
  9892. height: math.unit(5 + 9 / 12, "feet"),
  9893. default: true
  9894. }
  9895. ]
  9896. ))
  9897. characterMakers.push(() => makeCharacter(
  9898. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9899. {
  9900. back: {
  9901. height: math.unit(5 + 4 / 12, "feet"),
  9902. weight: math.unit(4963, "lb"),
  9903. name: "Back",
  9904. image: {
  9905. source: "./media/characters/amelia-rosie/back.svg",
  9906. extra: 1113 / 963,
  9907. bottom: 0.01
  9908. }
  9909. },
  9910. },
  9911. [
  9912. {
  9913. name: "Level 0",
  9914. height: math.unit(5 + 4 / 12, "feet")
  9915. },
  9916. {
  9917. name: "Level 1",
  9918. height: math.unit(164597, "feet"),
  9919. default: true
  9920. },
  9921. {
  9922. name: "Level 2",
  9923. height: math.unit(956243, "miles")
  9924. },
  9925. {
  9926. name: "Level 3",
  9927. height: math.unit(29421709423, "miles")
  9928. },
  9929. {
  9930. name: "Level 4",
  9931. height: math.unit(154, "lightyears")
  9932. },
  9933. {
  9934. name: "Level 5",
  9935. height: math.unit(4738272, "lightyears")
  9936. },
  9937. {
  9938. name: "Level 6",
  9939. height: math.unit(145787152896, "lightyears")
  9940. },
  9941. ]
  9942. ))
  9943. characterMakers.push(() => makeCharacter(
  9944. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9945. {
  9946. front: {
  9947. height: math.unit(5 + 11 / 12, "feet"),
  9948. weight: math.unit(65, "kg"),
  9949. name: "Front",
  9950. image: {
  9951. source: "./media/characters/rook-kitara/front.svg",
  9952. extra: 1347 / 1274,
  9953. bottom: 0.005
  9954. }
  9955. },
  9956. },
  9957. [
  9958. {
  9959. name: "Totally Unfair",
  9960. height: math.unit(1.8, "mm")
  9961. },
  9962. {
  9963. name: "Lap Rookie",
  9964. height: math.unit(1.4, "feet")
  9965. },
  9966. {
  9967. name: "Normal",
  9968. height: math.unit(5 + 11 / 12, "feet"),
  9969. default: true
  9970. },
  9971. {
  9972. name: "How Did This Happen",
  9973. height: math.unit(80, "miles")
  9974. }
  9975. ]
  9976. ))
  9977. characterMakers.push(() => makeCharacter(
  9978. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9979. {
  9980. front: {
  9981. height: math.unit(7, "feet"),
  9982. weight: math.unit(300, "lb"),
  9983. name: "Front",
  9984. image: {
  9985. source: "./media/characters/pisces/front.svg",
  9986. extra: 2255 / 2115,
  9987. bottom: 0.03
  9988. }
  9989. },
  9990. back: {
  9991. height: math.unit(7, "feet"),
  9992. weight: math.unit(300, "lb"),
  9993. name: "Back",
  9994. image: {
  9995. source: "./media/characters/pisces/back.svg",
  9996. extra: 2146 / 2055,
  9997. bottom: 0.04
  9998. }
  9999. },
  10000. },
  10001. [
  10002. {
  10003. name: "Normal",
  10004. height: math.unit(7, "feet"),
  10005. default: true
  10006. },
  10007. {
  10008. name: "Swimming Pool",
  10009. height: math.unit(12.2, "meters")
  10010. },
  10011. {
  10012. name: "Olympic Swimming Pool",
  10013. height: math.unit(56.3, "meters")
  10014. },
  10015. {
  10016. name: "Lake Superior",
  10017. height: math.unit(93900, "meters")
  10018. },
  10019. {
  10020. name: "Mediterranean Sea",
  10021. height: math.unit(644457, "meters")
  10022. },
  10023. {
  10024. name: "World's Oceans",
  10025. height: math.unit(4567491, "meters")
  10026. },
  10027. ]
  10028. ))
  10029. characterMakers.push(() => makeCharacter(
  10030. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10031. {
  10032. front: {
  10033. height: math.unit(2.3, "meters"),
  10034. weight: math.unit(120, "kg"),
  10035. name: "Front",
  10036. image: {
  10037. source: "./media/characters/zelas/front.svg"
  10038. }
  10039. },
  10040. side: {
  10041. height: math.unit(2.3, "meters"),
  10042. weight: math.unit(120, "kg"),
  10043. name: "Side",
  10044. image: {
  10045. source: "./media/characters/zelas/side.svg"
  10046. }
  10047. },
  10048. back: {
  10049. height: math.unit(2.3, "meters"),
  10050. weight: math.unit(120, "kg"),
  10051. name: "Back",
  10052. image: {
  10053. source: "./media/characters/zelas/back.svg"
  10054. }
  10055. },
  10056. foot: {
  10057. height: math.unit(1.116, "feet"),
  10058. name: "Foot",
  10059. image: {
  10060. source: "./media/characters/zelas/foot.svg"
  10061. }
  10062. },
  10063. },
  10064. [
  10065. {
  10066. name: "Normal",
  10067. height: math.unit(2.3, "meters")
  10068. },
  10069. {
  10070. name: "Macro",
  10071. height: math.unit(30, "meters"),
  10072. default: true
  10073. },
  10074. ]
  10075. ))
  10076. characterMakers.push(() => makeCharacter(
  10077. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10078. {
  10079. front: {
  10080. height: math.unit(1, "inch"),
  10081. weight: math.unit(0.21, "grams"),
  10082. name: "Front",
  10083. image: {
  10084. source: "./media/characters/talbot/front.svg",
  10085. extra: 594 / 544
  10086. }
  10087. },
  10088. },
  10089. [
  10090. {
  10091. name: "Micro",
  10092. height: math.unit(1, "inch"),
  10093. default: true
  10094. },
  10095. ]
  10096. ))
  10097. characterMakers.push(() => makeCharacter(
  10098. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10099. {
  10100. front: {
  10101. height: math.unit(3 + 3 / 12, "feet"),
  10102. weight: math.unit(51.8, "lb"),
  10103. name: "Front",
  10104. image: {
  10105. source: "./media/characters/fliss/front.svg",
  10106. extra: 840 / 640
  10107. }
  10108. },
  10109. },
  10110. [
  10111. {
  10112. name: "Teeny Tiny",
  10113. height: math.unit(1, "mm")
  10114. },
  10115. {
  10116. name: "Small",
  10117. height: math.unit(1, "inch"),
  10118. default: true
  10119. },
  10120. {
  10121. name: "Standard Sylveon",
  10122. height: math.unit(3 + 3 / 12, "feet")
  10123. },
  10124. {
  10125. name: "Large Nuisance",
  10126. height: math.unit(33, "feet")
  10127. },
  10128. {
  10129. name: "City Filler",
  10130. height: math.unit(3000, "feet")
  10131. },
  10132. {
  10133. name: "New Horizon",
  10134. height: math.unit(6000, "miles")
  10135. },
  10136. ]
  10137. ))
  10138. characterMakers.push(() => makeCharacter(
  10139. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10140. {
  10141. front: {
  10142. height: math.unit(5, "cm"),
  10143. weight: math.unit(1.94, "g"),
  10144. name: "Front",
  10145. image: {
  10146. source: "./media/characters/fleta/front.svg",
  10147. extra: 835 / 803
  10148. }
  10149. },
  10150. back: {
  10151. height: math.unit(5, "cm"),
  10152. weight: math.unit(1.94, "g"),
  10153. name: "Back",
  10154. image: {
  10155. source: "./media/characters/fleta/back.svg",
  10156. extra: 835 / 803
  10157. }
  10158. },
  10159. },
  10160. [
  10161. {
  10162. name: "Micro",
  10163. height: math.unit(5, "cm"),
  10164. default: true
  10165. },
  10166. ]
  10167. ))
  10168. characterMakers.push(() => makeCharacter(
  10169. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10170. {
  10171. front: {
  10172. height: math.unit(6, "feet"),
  10173. weight: math.unit(225, "lb"),
  10174. name: "Front",
  10175. image: {
  10176. source: "./media/characters/dominic/front.svg",
  10177. extra: 1770 / 1620,
  10178. bottom: 0.025
  10179. }
  10180. },
  10181. back: {
  10182. height: math.unit(6, "feet"),
  10183. weight: math.unit(225, "lb"),
  10184. name: "Back",
  10185. image: {
  10186. source: "./media/characters/dominic/back.svg",
  10187. extra: 1745 / 1620,
  10188. bottom: 0.065
  10189. }
  10190. },
  10191. },
  10192. [
  10193. {
  10194. name: "Nano",
  10195. height: math.unit(0.1, "mm")
  10196. },
  10197. {
  10198. name: "Micro-",
  10199. height: math.unit(1, "mm")
  10200. },
  10201. {
  10202. name: "Micro",
  10203. height: math.unit(4, "inches")
  10204. },
  10205. {
  10206. name: "Normal",
  10207. height: math.unit(6 + 4 / 12, "feet"),
  10208. default: true
  10209. },
  10210. {
  10211. name: "Macro",
  10212. height: math.unit(115, "feet")
  10213. },
  10214. {
  10215. name: "Macro+",
  10216. height: math.unit(955, "feet")
  10217. },
  10218. {
  10219. name: "Megamacro",
  10220. height: math.unit(8990, "feet")
  10221. },
  10222. {
  10223. name: "Gigmacro",
  10224. height: math.unit(9310, "miles")
  10225. },
  10226. {
  10227. name: "Teramacro",
  10228. height: math.unit(1567005010, "miles")
  10229. },
  10230. {
  10231. name: "Examacro",
  10232. height: math.unit(1425, "parsecs")
  10233. },
  10234. ]
  10235. ))
  10236. characterMakers.push(() => makeCharacter(
  10237. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10238. {
  10239. front: {
  10240. height: math.unit(400, "feet"),
  10241. weight: math.unit(44444444, "lb"),
  10242. name: "Front",
  10243. image: {
  10244. source: "./media/characters/major-colonel/front.svg"
  10245. }
  10246. },
  10247. back: {
  10248. height: math.unit(400, "feet"),
  10249. weight: math.unit(44444444, "lb"),
  10250. name: "Back",
  10251. image: {
  10252. source: "./media/characters/major-colonel/back.svg"
  10253. }
  10254. },
  10255. },
  10256. [
  10257. {
  10258. name: "Macro",
  10259. height: math.unit(400, "feet"),
  10260. default: true
  10261. },
  10262. ]
  10263. ))
  10264. characterMakers.push(() => makeCharacter(
  10265. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10266. {
  10267. catFront: {
  10268. height: math.unit(6, "feet"),
  10269. weight: math.unit(120, "lb"),
  10270. name: "Front (Cat Side)",
  10271. image: {
  10272. source: "./media/characters/axel-lycan/cat-front.svg",
  10273. extra: 430 / 402,
  10274. bottom: 43 / 472.35
  10275. }
  10276. },
  10277. catBack: {
  10278. height: math.unit(6, "feet"),
  10279. weight: math.unit(120, "lb"),
  10280. name: "Back (Cat Side)",
  10281. image: {
  10282. source: "./media/characters/axel-lycan/cat-back.svg",
  10283. extra: 447 / 419,
  10284. bottom: 23.3 / 469
  10285. }
  10286. },
  10287. wolfFront: {
  10288. height: math.unit(6, "feet"),
  10289. weight: math.unit(120, "lb"),
  10290. name: "Front (Wolf Side)",
  10291. image: {
  10292. source: "./media/characters/axel-lycan/wolf-front.svg",
  10293. extra: 485 / 456,
  10294. bottom: 19 / 504
  10295. }
  10296. },
  10297. wolfBack: {
  10298. height: math.unit(6, "feet"),
  10299. weight: math.unit(120, "lb"),
  10300. name: "Back (Wolf Side)",
  10301. image: {
  10302. source: "./media/characters/axel-lycan/wolf-back.svg",
  10303. extra: 475 / 438,
  10304. bottom: 39.2 / 514
  10305. }
  10306. },
  10307. },
  10308. [
  10309. {
  10310. name: "Macro",
  10311. height: math.unit(1, "km"),
  10312. default: true
  10313. },
  10314. ]
  10315. ))
  10316. characterMakers.push(() => makeCharacter(
  10317. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10318. {
  10319. front: {
  10320. height: math.unit(5 + 9 / 12, "feet"),
  10321. weight: math.unit(175, "lb"),
  10322. name: "Front",
  10323. image: {
  10324. source: "./media/characters/vanrel-hyena/front.svg",
  10325. extra: 1086 / 1010,
  10326. bottom: 0.04
  10327. }
  10328. },
  10329. },
  10330. [
  10331. {
  10332. name: "Normal",
  10333. height: math.unit(5 + 9 / 12, "feet"),
  10334. default: true
  10335. },
  10336. ]
  10337. ))
  10338. characterMakers.push(() => makeCharacter(
  10339. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10340. {
  10341. front: {
  10342. height: math.unit(6, "feet"),
  10343. weight: math.unit(103, "lb"),
  10344. name: "Front",
  10345. image: {
  10346. source: "./media/characters/abbott-absol/front.svg",
  10347. extra: 2010 / 1842
  10348. }
  10349. },
  10350. },
  10351. [
  10352. {
  10353. name: "Megamicro",
  10354. height: math.unit(0.1, "mm")
  10355. },
  10356. {
  10357. name: "Micro",
  10358. height: math.unit(1, "inch")
  10359. },
  10360. {
  10361. name: "Normal",
  10362. height: math.unit(6, "feet"),
  10363. default: true
  10364. },
  10365. ]
  10366. ))
  10367. characterMakers.push(() => makeCharacter(
  10368. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10369. {
  10370. front: {
  10371. height: math.unit(6, "feet"),
  10372. weight: math.unit(264, "lb"),
  10373. name: "Front",
  10374. image: {
  10375. source: "./media/characters/hector/front.svg",
  10376. extra: 2280 / 2130,
  10377. bottom: 0.07
  10378. }
  10379. },
  10380. },
  10381. [
  10382. {
  10383. name: "Normal",
  10384. height: math.unit(12.25, "foot"),
  10385. default: true
  10386. },
  10387. {
  10388. name: "Macro",
  10389. height: math.unit(160, "feet")
  10390. },
  10391. ]
  10392. ))
  10393. characterMakers.push(() => makeCharacter(
  10394. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10395. {
  10396. front: {
  10397. height: math.unit(6, "feet"),
  10398. weight: math.unit(150, "lb"),
  10399. name: "Front",
  10400. image: {
  10401. source: "./media/characters/sal/front.svg",
  10402. extra: 1846 / 1699,
  10403. bottom: 0.04
  10404. }
  10405. },
  10406. },
  10407. [
  10408. {
  10409. name: "Megamacro",
  10410. height: math.unit(10, "miles"),
  10411. default: true
  10412. },
  10413. ]
  10414. ))
  10415. characterMakers.push(() => makeCharacter(
  10416. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10417. {
  10418. front: {
  10419. height: math.unit(3, "meters"),
  10420. weight: math.unit(450, "kg"),
  10421. name: "front",
  10422. image: {
  10423. source: "./media/characters/ranger/front.svg",
  10424. extra: 2401 / 2243,
  10425. bottom: 0.05
  10426. }
  10427. },
  10428. },
  10429. [
  10430. {
  10431. name: "Normal",
  10432. height: math.unit(3, "meters"),
  10433. default: true
  10434. },
  10435. ]
  10436. ))
  10437. characterMakers.push(() => makeCharacter(
  10438. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10439. {
  10440. front: {
  10441. height: math.unit(14, "feet"),
  10442. weight: math.unit(800, "kg"),
  10443. name: "Front",
  10444. image: {
  10445. source: "./media/characters/theresa/front.svg",
  10446. extra: 3575 / 3346,
  10447. bottom: 0.03
  10448. }
  10449. },
  10450. },
  10451. [
  10452. {
  10453. name: "Normal",
  10454. height: math.unit(14, "feet"),
  10455. default: true
  10456. },
  10457. ]
  10458. ))
  10459. characterMakers.push(() => makeCharacter(
  10460. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10461. {
  10462. front: {
  10463. height: math.unit(6, "feet"),
  10464. weight: math.unit(3, "kg"),
  10465. name: "Front",
  10466. image: {
  10467. source: "./media/characters/ine/front.svg",
  10468. extra: 678 / 539,
  10469. bottom: 0.023
  10470. }
  10471. },
  10472. },
  10473. [
  10474. {
  10475. name: "Normal",
  10476. height: math.unit(2.265, "feet"),
  10477. default: true
  10478. },
  10479. ]
  10480. ))
  10481. characterMakers.push(() => makeCharacter(
  10482. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10483. {
  10484. front: {
  10485. height: math.unit(5, "feet"),
  10486. weight: math.unit(30, "kg"),
  10487. name: "Front",
  10488. image: {
  10489. source: "./media/characters/vial/front.svg",
  10490. extra: 1365 / 1277,
  10491. bottom: 0.04
  10492. }
  10493. },
  10494. },
  10495. [
  10496. {
  10497. name: "Normal",
  10498. height: math.unit(5, "feet"),
  10499. default: true
  10500. },
  10501. ]
  10502. ))
  10503. characterMakers.push(() => makeCharacter(
  10504. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10505. {
  10506. side: {
  10507. height: math.unit(3.4, "meters"),
  10508. weight: math.unit(1000, "lb"),
  10509. name: "Side",
  10510. image: {
  10511. source: "./media/characters/rovoska/side.svg",
  10512. extra: 4403 / 1515
  10513. }
  10514. },
  10515. },
  10516. [
  10517. {
  10518. name: "Normal",
  10519. height: math.unit(3.4, "meters"),
  10520. default: true
  10521. },
  10522. ]
  10523. ))
  10524. characterMakers.push(() => makeCharacter(
  10525. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10526. {
  10527. front: {
  10528. height: math.unit(8, "feet"),
  10529. weight: math.unit(315, "lb"),
  10530. name: "Front",
  10531. image: {
  10532. source: "./media/characters/gunner-rotthbauer/front.svg"
  10533. }
  10534. },
  10535. back: {
  10536. height: math.unit(8, "feet"),
  10537. weight: math.unit(315, "lb"),
  10538. name: "Back",
  10539. image: {
  10540. source: "./media/characters/gunner-rotthbauer/back.svg"
  10541. }
  10542. },
  10543. },
  10544. [
  10545. {
  10546. name: "Micro",
  10547. height: math.unit(3.5, "inches")
  10548. },
  10549. {
  10550. name: "Normal",
  10551. height: math.unit(8, "feet"),
  10552. default: true
  10553. },
  10554. {
  10555. name: "Macro",
  10556. height: math.unit(250, "feet")
  10557. },
  10558. {
  10559. name: "Megamacro",
  10560. height: math.unit(1, "AU")
  10561. },
  10562. ]
  10563. ))
  10564. characterMakers.push(() => makeCharacter(
  10565. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10566. {
  10567. front: {
  10568. height: math.unit(5 + 5 / 12, "feet"),
  10569. weight: math.unit(140, "lb"),
  10570. name: "Front",
  10571. image: {
  10572. source: "./media/characters/allatia/front.svg",
  10573. extra: 1227 / 1180,
  10574. bottom: 0.027
  10575. }
  10576. },
  10577. },
  10578. [
  10579. {
  10580. name: "Normal",
  10581. height: math.unit(5 + 5 / 12, "feet")
  10582. },
  10583. {
  10584. name: "Macro",
  10585. height: math.unit(250, "feet"),
  10586. default: true
  10587. },
  10588. {
  10589. name: "Megamacro",
  10590. height: math.unit(8, "miles")
  10591. }
  10592. ]
  10593. ))
  10594. characterMakers.push(() => makeCharacter(
  10595. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10596. {
  10597. front: {
  10598. height: math.unit(6, "feet"),
  10599. weight: math.unit(120, "lb"),
  10600. name: "Front",
  10601. image: {
  10602. source: "./media/characters/tene/front.svg",
  10603. extra: 814/750,
  10604. bottom: 36/850
  10605. }
  10606. },
  10607. stomping: {
  10608. height: math.unit(2.025, "meters"),
  10609. weight: math.unit(120, "lb"),
  10610. name: "Stomping",
  10611. image: {
  10612. source: "./media/characters/tene/stomping.svg",
  10613. extra: 885/821,
  10614. bottom: 15/900
  10615. }
  10616. },
  10617. sitting: {
  10618. height: math.unit(1, "meter"),
  10619. weight: math.unit(120, "lb"),
  10620. name: "Sitting",
  10621. image: {
  10622. source: "./media/characters/tene/sitting.svg",
  10623. extra: 396/366,
  10624. bottom: 79/475
  10625. }
  10626. },
  10627. smiling: {
  10628. height: math.unit(1.2, "feet"),
  10629. name: "Smiling",
  10630. image: {
  10631. source: "./media/characters/tene/smiling.svg",
  10632. extra: 1364/1071,
  10633. bottom: 0/1364
  10634. }
  10635. },
  10636. smug: {
  10637. height: math.unit(1.3, "feet"),
  10638. name: "Smug",
  10639. image: {
  10640. source: "./media/characters/tene/smug.svg",
  10641. extra: 1323/1082,
  10642. bottom: 0/1323
  10643. }
  10644. },
  10645. feral: {
  10646. height: math.unit(3.9, "feet"),
  10647. weight: math.unit(250, "lb"),
  10648. name: "Feral",
  10649. image: {
  10650. source: "./media/characters/tene/feral.svg",
  10651. extra: 717 / 458,
  10652. bottom: 0.179
  10653. }
  10654. },
  10655. },
  10656. [
  10657. {
  10658. name: "Normal",
  10659. height: math.unit(6, "feet")
  10660. },
  10661. {
  10662. name: "Macro",
  10663. height: math.unit(300, "feet"),
  10664. default: true
  10665. },
  10666. {
  10667. name: "Megamacro",
  10668. height: math.unit(5, "miles")
  10669. },
  10670. ]
  10671. ))
  10672. characterMakers.push(() => makeCharacter(
  10673. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10674. {
  10675. side: {
  10676. height: math.unit(6, "feet"),
  10677. name: "Side",
  10678. image: {
  10679. source: "./media/characters/evander/side.svg",
  10680. extra: 877 / 477
  10681. }
  10682. },
  10683. },
  10684. [
  10685. {
  10686. name: "Normal",
  10687. height: math.unit(0.83, "meters"),
  10688. default: true
  10689. },
  10690. ]
  10691. ))
  10692. characterMakers.push(() => makeCharacter(
  10693. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10694. {
  10695. front: {
  10696. height: math.unit(12, "feet"),
  10697. weight: math.unit(1000, "lb"),
  10698. name: "Front",
  10699. image: {
  10700. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10701. extra: 1762 / 1611
  10702. }
  10703. },
  10704. back: {
  10705. height: math.unit(12, "feet"),
  10706. weight: math.unit(1000, "lb"),
  10707. name: "Back",
  10708. image: {
  10709. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10710. extra: 1762 / 1611
  10711. }
  10712. },
  10713. },
  10714. [
  10715. {
  10716. name: "Normal",
  10717. height: math.unit(12, "feet"),
  10718. default: true
  10719. },
  10720. {
  10721. name: "Kaiju",
  10722. height: math.unit(150, "feet")
  10723. },
  10724. ]
  10725. ))
  10726. characterMakers.push(() => makeCharacter(
  10727. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10728. {
  10729. front: {
  10730. height: math.unit(6, "feet"),
  10731. weight: math.unit(150, "lb"),
  10732. name: "Front",
  10733. image: {
  10734. source: "./media/characters/zero-alurus/front.svg"
  10735. }
  10736. },
  10737. back: {
  10738. height: math.unit(6, "feet"),
  10739. weight: math.unit(150, "lb"),
  10740. name: "Back",
  10741. image: {
  10742. source: "./media/characters/zero-alurus/back.svg"
  10743. }
  10744. },
  10745. },
  10746. [
  10747. {
  10748. name: "Normal",
  10749. height: math.unit(5 + 10 / 12, "feet")
  10750. },
  10751. {
  10752. name: "Macro",
  10753. height: math.unit(60, "feet"),
  10754. default: true
  10755. },
  10756. {
  10757. name: "Macro+",
  10758. height: math.unit(450, "feet")
  10759. },
  10760. ]
  10761. ))
  10762. characterMakers.push(() => makeCharacter(
  10763. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10764. {
  10765. front: {
  10766. height: math.unit(6, "feet"),
  10767. weight: math.unit(200, "lb"),
  10768. name: "Front",
  10769. image: {
  10770. source: "./media/characters/mega-shi/front.svg",
  10771. extra: 1279 / 1250,
  10772. bottom: 0.02
  10773. }
  10774. },
  10775. back: {
  10776. height: math.unit(6, "feet"),
  10777. weight: math.unit(200, "lb"),
  10778. name: "Back",
  10779. image: {
  10780. source: "./media/characters/mega-shi/back.svg",
  10781. extra: 1279 / 1250,
  10782. bottom: 0.02
  10783. }
  10784. },
  10785. },
  10786. [
  10787. {
  10788. name: "Micro",
  10789. height: math.unit(16 + 6 / 12, "feet")
  10790. },
  10791. {
  10792. name: "Third Dimension",
  10793. height: math.unit(40, "meters")
  10794. },
  10795. {
  10796. name: "Normal",
  10797. height: math.unit(660, "feet"),
  10798. default: true
  10799. },
  10800. {
  10801. name: "Megamacro",
  10802. height: math.unit(10, "miles")
  10803. },
  10804. {
  10805. name: "Planetary Launch",
  10806. height: math.unit(500, "miles")
  10807. },
  10808. {
  10809. name: "Interstellar",
  10810. height: math.unit(1e9, "miles")
  10811. },
  10812. {
  10813. name: "Leaving the Universe",
  10814. height: math.unit(1, "gigaparsec")
  10815. },
  10816. {
  10817. name: "Travelling Universes",
  10818. height: math.unit(30e15, "parsecs")
  10819. },
  10820. ]
  10821. ))
  10822. characterMakers.push(() => makeCharacter(
  10823. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10824. {
  10825. front: {
  10826. height: math.unit(5 + 4/12, "feet"),
  10827. weight: math.unit(120, "lb"),
  10828. name: "Front",
  10829. image: {
  10830. source: "./media/characters/odyssey/front.svg",
  10831. extra: 1747/1571,
  10832. bottom: 47/1794
  10833. }
  10834. },
  10835. side: {
  10836. height: math.unit(5.1, "feet"),
  10837. weight: math.unit(120, "lb"),
  10838. name: "Side",
  10839. image: {
  10840. source: "./media/characters/odyssey/side.svg",
  10841. extra: 1847/1619,
  10842. bottom: 47/1894
  10843. }
  10844. },
  10845. lounging: {
  10846. height: math.unit(1.464, "feet"),
  10847. weight: math.unit(120, "lb"),
  10848. name: "Lounging",
  10849. image: {
  10850. source: "./media/characters/odyssey/lounging.svg",
  10851. extra: 1235/837,
  10852. bottom: 551/1786
  10853. }
  10854. },
  10855. },
  10856. [
  10857. {
  10858. name: "Normal",
  10859. height: math.unit(5 + 4 / 12, "feet")
  10860. },
  10861. {
  10862. name: "Macro",
  10863. height: math.unit(1, "km")
  10864. },
  10865. {
  10866. name: "Megamacro",
  10867. height: math.unit(3000, "km")
  10868. },
  10869. {
  10870. name: "Gigamacro",
  10871. height: math.unit(1, "AU"),
  10872. default: true
  10873. },
  10874. {
  10875. name: "Omniversal",
  10876. height: math.unit(100e14, "lightyears")
  10877. },
  10878. ]
  10879. ))
  10880. characterMakers.push(() => makeCharacter(
  10881. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10882. {
  10883. front: {
  10884. height: math.unit(6, "feet"),
  10885. weight: math.unit(300, "lb"),
  10886. name: "Front",
  10887. image: {
  10888. source: "./media/characters/mekuto/front.svg",
  10889. extra: 921 / 832,
  10890. bottom: 0.03
  10891. }
  10892. },
  10893. hand: {
  10894. height: math.unit(6 / 10.24, "feet"),
  10895. name: "Hand",
  10896. image: {
  10897. source: "./media/characters/mekuto/hand.svg"
  10898. }
  10899. },
  10900. foot: {
  10901. height: math.unit(6 / 5.05, "feet"),
  10902. name: "Foot",
  10903. image: {
  10904. source: "./media/characters/mekuto/foot.svg"
  10905. }
  10906. },
  10907. },
  10908. [
  10909. {
  10910. name: "Minimicro",
  10911. height: math.unit(0.2, "inches")
  10912. },
  10913. {
  10914. name: "Micro",
  10915. height: math.unit(1.5, "inches")
  10916. },
  10917. {
  10918. name: "Normal",
  10919. height: math.unit(5 + 11 / 12, "feet"),
  10920. default: true
  10921. },
  10922. {
  10923. name: "Minimacro",
  10924. height: math.unit(17 + 9 / 12, "feet")
  10925. },
  10926. {
  10927. name: "Macro",
  10928. height: math.unit(177.5, "feet")
  10929. },
  10930. {
  10931. name: "Megamacro",
  10932. height: math.unit(152, "miles")
  10933. },
  10934. ]
  10935. ))
  10936. characterMakers.push(() => makeCharacter(
  10937. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10938. {
  10939. front: {
  10940. height: math.unit(6.5, "inches"),
  10941. weight: math.unit(13, "oz"),
  10942. name: "Front",
  10943. image: {
  10944. source: "./media/characters/dafydd-tomos/front.svg",
  10945. extra: 2990 / 2603,
  10946. bottom: 0.03
  10947. }
  10948. },
  10949. },
  10950. [
  10951. {
  10952. name: "Micro",
  10953. height: math.unit(6.5, "inches"),
  10954. default: true
  10955. },
  10956. ]
  10957. ))
  10958. characterMakers.push(() => makeCharacter(
  10959. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10960. {
  10961. front: {
  10962. height: math.unit(6, "feet"),
  10963. weight: math.unit(150, "lb"),
  10964. name: "Front",
  10965. image: {
  10966. source: "./media/characters/splinter/front.svg",
  10967. extra: 2990 / 2882,
  10968. bottom: 0.04
  10969. }
  10970. },
  10971. back: {
  10972. height: math.unit(6, "feet"),
  10973. weight: math.unit(150, "lb"),
  10974. name: "Back",
  10975. image: {
  10976. source: "./media/characters/splinter/back.svg",
  10977. extra: 2990 / 2882,
  10978. bottom: 0.04
  10979. }
  10980. },
  10981. },
  10982. [
  10983. {
  10984. name: "Normal",
  10985. height: math.unit(6, "feet")
  10986. },
  10987. {
  10988. name: "Macro",
  10989. height: math.unit(230, "meters"),
  10990. default: true
  10991. },
  10992. ]
  10993. ))
  10994. characterMakers.push(() => makeCharacter(
  10995. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10996. {
  10997. front: {
  10998. height: math.unit(4 + 10 / 12, "feet"),
  10999. weight: math.unit(480, "lb"),
  11000. name: "Front",
  11001. image: {
  11002. source: "./media/characters/snow-gabumon/front.svg",
  11003. extra: 1140 / 963,
  11004. bottom: 0.058
  11005. }
  11006. },
  11007. back: {
  11008. height: math.unit(4 + 10 / 12, "feet"),
  11009. weight: math.unit(480, "lb"),
  11010. name: "Back",
  11011. image: {
  11012. source: "./media/characters/snow-gabumon/back.svg",
  11013. extra: 1115 / 962,
  11014. bottom: 0.041
  11015. }
  11016. },
  11017. frontUndresed: {
  11018. height: math.unit(4 + 10 / 12, "feet"),
  11019. weight: math.unit(480, "lb"),
  11020. name: "Front (Undressed)",
  11021. image: {
  11022. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11023. extra: 1061 / 960,
  11024. bottom: 0.045
  11025. }
  11026. },
  11027. },
  11028. [
  11029. {
  11030. name: "Micro",
  11031. height: math.unit(1, "inch")
  11032. },
  11033. {
  11034. name: "Normal",
  11035. height: math.unit(4 + 10 / 12, "feet"),
  11036. default: true
  11037. },
  11038. {
  11039. name: "Macro",
  11040. height: math.unit(200, "feet")
  11041. },
  11042. {
  11043. name: "Megamacro",
  11044. height: math.unit(120, "miles")
  11045. },
  11046. {
  11047. name: "Gigamacro",
  11048. height: math.unit(9800, "miles")
  11049. },
  11050. ]
  11051. ))
  11052. characterMakers.push(() => makeCharacter(
  11053. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11054. {
  11055. front: {
  11056. height: math.unit(1.7, "meters"),
  11057. weight: math.unit(140, "lb"),
  11058. name: "Front",
  11059. image: {
  11060. source: "./media/characters/moody/front.svg",
  11061. extra: 3226 / 3007,
  11062. bottom: 0.087
  11063. }
  11064. },
  11065. },
  11066. [
  11067. {
  11068. name: "Micro",
  11069. height: math.unit(1, "mm")
  11070. },
  11071. {
  11072. name: "Normal",
  11073. height: math.unit(1.7, "meters"),
  11074. default: true
  11075. },
  11076. {
  11077. name: "Macro",
  11078. height: math.unit(80, "meters")
  11079. },
  11080. {
  11081. name: "Macro+",
  11082. height: math.unit(500, "meters")
  11083. },
  11084. ]
  11085. ))
  11086. characterMakers.push(() => makeCharacter(
  11087. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11088. {
  11089. front: {
  11090. height: math.unit(6, "feet"),
  11091. weight: math.unit(150, "lb"),
  11092. name: "Front",
  11093. image: {
  11094. source: "./media/characters/zyas/front.svg",
  11095. extra: 1180 / 1120,
  11096. bottom: 0.045
  11097. }
  11098. },
  11099. },
  11100. [
  11101. {
  11102. name: "Normal",
  11103. height: math.unit(10, "feet"),
  11104. default: true
  11105. },
  11106. {
  11107. name: "Macro",
  11108. height: math.unit(500, "feet")
  11109. },
  11110. {
  11111. name: "Megamacro",
  11112. height: math.unit(5, "miles")
  11113. },
  11114. {
  11115. name: "Teramacro",
  11116. height: math.unit(150000, "miles")
  11117. },
  11118. ]
  11119. ))
  11120. characterMakers.push(() => makeCharacter(
  11121. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11122. {
  11123. front: {
  11124. height: math.unit(6, "feet"),
  11125. weight: math.unit(150, "lb"),
  11126. name: "Front",
  11127. image: {
  11128. source: "./media/characters/cuon/front.svg",
  11129. extra: 1390 / 1320,
  11130. bottom: 0.008
  11131. }
  11132. },
  11133. },
  11134. [
  11135. {
  11136. name: "Micro",
  11137. height: math.unit(3, "inches")
  11138. },
  11139. {
  11140. name: "Normal",
  11141. height: math.unit(18 + 9 / 12, "feet"),
  11142. default: true
  11143. },
  11144. {
  11145. name: "Macro",
  11146. height: math.unit(360, "feet")
  11147. },
  11148. {
  11149. name: "Megamacro",
  11150. height: math.unit(360, "miles")
  11151. },
  11152. ]
  11153. ))
  11154. characterMakers.push(() => makeCharacter(
  11155. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11156. {
  11157. front: {
  11158. height: math.unit(2.4, "meters"),
  11159. weight: math.unit(70, "kg"),
  11160. name: "Front",
  11161. image: {
  11162. source: "./media/characters/nyanuxk/front.svg",
  11163. extra: 1172 / 1084,
  11164. bottom: 0.065
  11165. }
  11166. },
  11167. side: {
  11168. height: math.unit(2.4, "meters"),
  11169. weight: math.unit(70, "kg"),
  11170. name: "Side",
  11171. image: {
  11172. source: "./media/characters/nyanuxk/side.svg",
  11173. extra: 1190 / 1132,
  11174. bottom: 0.007
  11175. }
  11176. },
  11177. back: {
  11178. height: math.unit(2.4, "meters"),
  11179. weight: math.unit(70, "kg"),
  11180. name: "Back",
  11181. image: {
  11182. source: "./media/characters/nyanuxk/back.svg",
  11183. extra: 1200 / 1141,
  11184. bottom: 0.015
  11185. }
  11186. },
  11187. foot: {
  11188. height: math.unit(0.52, "meters"),
  11189. name: "Foot",
  11190. image: {
  11191. source: "./media/characters/nyanuxk/foot.svg"
  11192. }
  11193. },
  11194. },
  11195. [
  11196. {
  11197. name: "Micro",
  11198. height: math.unit(2, "cm")
  11199. },
  11200. {
  11201. name: "Normal",
  11202. height: math.unit(2.4, "meters"),
  11203. default: true
  11204. },
  11205. {
  11206. name: "Smaller Macro",
  11207. height: math.unit(120, "meters")
  11208. },
  11209. {
  11210. name: "Bigger Macro",
  11211. height: math.unit(1.2, "km")
  11212. },
  11213. {
  11214. name: "Megamacro",
  11215. height: math.unit(15, "kilometers")
  11216. },
  11217. {
  11218. name: "Gigamacro",
  11219. height: math.unit(2000, "km")
  11220. },
  11221. {
  11222. name: "Teramacro",
  11223. height: math.unit(500000, "km")
  11224. },
  11225. ]
  11226. ))
  11227. characterMakers.push(() => makeCharacter(
  11228. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11229. {
  11230. side: {
  11231. height: math.unit(6, "feet"),
  11232. name: "Side",
  11233. image: {
  11234. source: "./media/characters/ailbhe/side.svg",
  11235. extra: 757 / 464,
  11236. bottom: 0.041
  11237. }
  11238. },
  11239. },
  11240. [
  11241. {
  11242. name: "Normal",
  11243. height: math.unit(1.07, "meters"),
  11244. default: true
  11245. },
  11246. ]
  11247. ))
  11248. characterMakers.push(() => makeCharacter(
  11249. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11250. {
  11251. front: {
  11252. height: math.unit(6, "feet"),
  11253. weight: math.unit(120, "kg"),
  11254. name: "Front",
  11255. image: {
  11256. source: "./media/characters/zevulfius/front.svg",
  11257. extra: 965 / 903
  11258. }
  11259. },
  11260. side: {
  11261. height: math.unit(6, "feet"),
  11262. weight: math.unit(120, "kg"),
  11263. name: "Side",
  11264. image: {
  11265. source: "./media/characters/zevulfius/side.svg",
  11266. extra: 939 / 900
  11267. }
  11268. },
  11269. back: {
  11270. height: math.unit(6, "feet"),
  11271. weight: math.unit(120, "kg"),
  11272. name: "Back",
  11273. image: {
  11274. source: "./media/characters/zevulfius/back.svg",
  11275. extra: 918 / 854,
  11276. bottom: 0.005
  11277. }
  11278. },
  11279. foot: {
  11280. height: math.unit(6 / 3.72, "feet"),
  11281. name: "Foot",
  11282. image: {
  11283. source: "./media/characters/zevulfius/foot.svg"
  11284. }
  11285. },
  11286. },
  11287. [
  11288. {
  11289. name: "Macro",
  11290. height: math.unit(750, "meters")
  11291. },
  11292. {
  11293. name: "Megamacro",
  11294. height: math.unit(20, "km"),
  11295. default: true
  11296. },
  11297. {
  11298. name: "Gigamacro",
  11299. height: math.unit(2000, "km")
  11300. },
  11301. {
  11302. name: "Teramacro",
  11303. height: math.unit(250000, "km")
  11304. },
  11305. ]
  11306. ))
  11307. characterMakers.push(() => makeCharacter(
  11308. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11309. {
  11310. front: {
  11311. height: math.unit(100, "feet"),
  11312. weight: math.unit(350, "kg"),
  11313. name: "Front",
  11314. image: {
  11315. source: "./media/characters/rikes/front.svg",
  11316. extra: 1565 / 1483,
  11317. bottom: 0.017
  11318. }
  11319. },
  11320. },
  11321. [
  11322. {
  11323. name: "Macro",
  11324. height: math.unit(100, "feet"),
  11325. default: true
  11326. },
  11327. ]
  11328. ))
  11329. characterMakers.push(() => makeCharacter(
  11330. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11331. {
  11332. front: {
  11333. height: math.unit(8, "feet"),
  11334. weight: math.unit(356, "lb"),
  11335. name: "Front",
  11336. image: {
  11337. source: "./media/characters/adam-silver-mane/front.svg",
  11338. extra: 1036/937,
  11339. bottom: 63/1099
  11340. }
  11341. },
  11342. side: {
  11343. height: math.unit(8, "feet"),
  11344. weight: math.unit(356, "lb"),
  11345. name: "Side",
  11346. image: {
  11347. source: "./media/characters/adam-silver-mane/side.svg",
  11348. extra: 997/901,
  11349. bottom: 59/1056
  11350. }
  11351. },
  11352. frontNsfw: {
  11353. height: math.unit(8, "feet"),
  11354. weight: math.unit(356, "lb"),
  11355. name: "Front (NSFW)",
  11356. image: {
  11357. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11358. extra: 1036/937,
  11359. bottom: 63/1099
  11360. }
  11361. },
  11362. sideNsfw: {
  11363. height: math.unit(8, "feet"),
  11364. weight: math.unit(356, "lb"),
  11365. name: "Side (NSFW)",
  11366. image: {
  11367. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11368. extra: 997/901,
  11369. bottom: 59/1056
  11370. }
  11371. },
  11372. dick: {
  11373. height: math.unit(2.1, "feet"),
  11374. name: "Dick",
  11375. image: {
  11376. source: "./media/characters/adam-silver-mane/dick.svg"
  11377. }
  11378. },
  11379. taur: {
  11380. height: math.unit(16, "feet"),
  11381. weight: math.unit(1500, "kg"),
  11382. name: "Taur",
  11383. image: {
  11384. source: "./media/characters/adam-silver-mane/taur.svg",
  11385. extra: 1713 / 1571,
  11386. bottom: 0.01
  11387. }
  11388. },
  11389. },
  11390. [
  11391. {
  11392. name: "Normal",
  11393. height: math.unit(8, "feet")
  11394. },
  11395. {
  11396. name: "Minimacro",
  11397. height: math.unit(80, "feet")
  11398. },
  11399. {
  11400. name: "MDA",
  11401. height: math.unit(80, "meters")
  11402. },
  11403. {
  11404. name: "Macro",
  11405. height: math.unit(800, "feet"),
  11406. default: true
  11407. },
  11408. {
  11409. name: "Megamacro",
  11410. height: math.unit(8000, "feet")
  11411. },
  11412. {
  11413. name: "Gigamacro",
  11414. height: math.unit(800, "miles")
  11415. },
  11416. {
  11417. name: "Teramacro",
  11418. height: math.unit(80000, "miles")
  11419. },
  11420. {
  11421. name: "Celestial",
  11422. height: math.unit(8e6, "miles")
  11423. },
  11424. {
  11425. name: "Star Dragon",
  11426. height: math.unit(800000, "parsecs")
  11427. },
  11428. {
  11429. name: "Godly",
  11430. height: math.unit(800, "teraparsecs")
  11431. },
  11432. ]
  11433. ))
  11434. characterMakers.push(() => makeCharacter(
  11435. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11436. {
  11437. front: {
  11438. height: math.unit(6, "feet"),
  11439. weight: math.unit(150, "lb"),
  11440. name: "Front",
  11441. image: {
  11442. source: "./media/characters/ky'owin/front.svg",
  11443. extra: 3888 / 3068,
  11444. bottom: 0.015
  11445. }
  11446. },
  11447. },
  11448. [
  11449. {
  11450. name: "Normal",
  11451. height: math.unit(6 + 8 / 12, "feet")
  11452. },
  11453. {
  11454. name: "Large",
  11455. height: math.unit(68, "feet")
  11456. },
  11457. {
  11458. name: "Macro",
  11459. height: math.unit(132, "feet")
  11460. },
  11461. {
  11462. name: "Macro+",
  11463. height: math.unit(340, "feet")
  11464. },
  11465. {
  11466. name: "Macro++",
  11467. height: math.unit(680, "feet"),
  11468. default: true
  11469. },
  11470. {
  11471. name: "Megamacro",
  11472. height: math.unit(1, "mile")
  11473. },
  11474. {
  11475. name: "Megamacro+",
  11476. height: math.unit(10, "miles")
  11477. },
  11478. ]
  11479. ))
  11480. characterMakers.push(() => makeCharacter(
  11481. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11482. {
  11483. front: {
  11484. height: math.unit(4, "feet"),
  11485. weight: math.unit(50, "lb"),
  11486. name: "Front",
  11487. image: {
  11488. source: "./media/characters/mal/front.svg",
  11489. extra: 785 / 724,
  11490. bottom: 0.07
  11491. }
  11492. },
  11493. },
  11494. [
  11495. {
  11496. name: "Micro",
  11497. height: math.unit(4, "inches")
  11498. },
  11499. {
  11500. name: "Normal",
  11501. height: math.unit(4, "feet"),
  11502. default: true
  11503. },
  11504. {
  11505. name: "Macro",
  11506. height: math.unit(200, "feet")
  11507. },
  11508. ]
  11509. ))
  11510. characterMakers.push(() => makeCharacter(
  11511. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11512. {
  11513. front: {
  11514. height: math.unit(6, "feet"),
  11515. weight: math.unit(150, "lb"),
  11516. name: "Front",
  11517. image: {
  11518. source: "./media/characters/jordan-deware/front.svg",
  11519. extra: 1191 / 1012
  11520. }
  11521. },
  11522. },
  11523. [
  11524. {
  11525. name: "Nano",
  11526. height: math.unit(0.01, "mm")
  11527. },
  11528. {
  11529. name: "Minimicro",
  11530. height: math.unit(1, "mm")
  11531. },
  11532. {
  11533. name: "Micro",
  11534. height: math.unit(0.5, "inches")
  11535. },
  11536. {
  11537. name: "Normal",
  11538. height: math.unit(4, "feet"),
  11539. default: true
  11540. },
  11541. {
  11542. name: "Minimacro",
  11543. height: math.unit(40, "meters")
  11544. },
  11545. {
  11546. name: "Small Macro",
  11547. height: math.unit(400, "meters")
  11548. },
  11549. {
  11550. name: "Macro",
  11551. height: math.unit(4, "miles")
  11552. },
  11553. {
  11554. name: "Megamacro",
  11555. height: math.unit(40, "miles")
  11556. },
  11557. {
  11558. name: "Megamacro+",
  11559. height: math.unit(400, "miles")
  11560. },
  11561. {
  11562. name: "Gigamacro",
  11563. height: math.unit(400000, "miles")
  11564. },
  11565. ]
  11566. ))
  11567. characterMakers.push(() => makeCharacter(
  11568. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11569. {
  11570. side: {
  11571. height: math.unit(6, "feet"),
  11572. weight: math.unit(150, "lb"),
  11573. name: "Side",
  11574. image: {
  11575. source: "./media/characters/kimiko/side.svg",
  11576. extra: 600 / 358
  11577. }
  11578. },
  11579. },
  11580. [
  11581. {
  11582. name: "Normal",
  11583. height: math.unit(15, "feet"),
  11584. default: true
  11585. },
  11586. {
  11587. name: "Macro",
  11588. height: math.unit(220, "feet")
  11589. },
  11590. {
  11591. name: "Macro+",
  11592. height: math.unit(1450, "feet")
  11593. },
  11594. {
  11595. name: "Megamacro",
  11596. height: math.unit(11500, "feet")
  11597. },
  11598. {
  11599. name: "Gigamacro",
  11600. height: math.unit(9500, "miles")
  11601. },
  11602. {
  11603. name: "Teramacro",
  11604. height: math.unit(2208005005, "miles")
  11605. },
  11606. {
  11607. name: "Examacro",
  11608. height: math.unit(2750, "parsecs")
  11609. },
  11610. {
  11611. name: "Zettamacro",
  11612. height: math.unit(101500, "parsecs")
  11613. },
  11614. ]
  11615. ))
  11616. characterMakers.push(() => makeCharacter(
  11617. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11618. {
  11619. front: {
  11620. height: math.unit(6, "feet"),
  11621. weight: math.unit(70, "kg"),
  11622. name: "Front",
  11623. image: {
  11624. source: "./media/characters/andrew-sleepy/front.svg"
  11625. }
  11626. },
  11627. side: {
  11628. height: math.unit(6, "feet"),
  11629. weight: math.unit(70, "kg"),
  11630. name: "Side",
  11631. image: {
  11632. source: "./media/characters/andrew-sleepy/side.svg"
  11633. }
  11634. },
  11635. },
  11636. [
  11637. {
  11638. name: "Micro",
  11639. height: math.unit(1, "mm"),
  11640. default: true
  11641. },
  11642. ]
  11643. ))
  11644. characterMakers.push(() => makeCharacter(
  11645. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11646. {
  11647. front: {
  11648. height: math.unit(6, "feet"),
  11649. weight: math.unit(150, "lb"),
  11650. name: "Front",
  11651. image: {
  11652. source: "./media/characters/judio/front.svg",
  11653. extra: 1258 / 1110
  11654. }
  11655. },
  11656. },
  11657. [
  11658. {
  11659. name: "Normal",
  11660. height: math.unit(5 + 6 / 12, "feet")
  11661. },
  11662. {
  11663. name: "Macro",
  11664. height: math.unit(1000, "feet"),
  11665. default: true
  11666. },
  11667. {
  11668. name: "Megamacro",
  11669. height: math.unit(10, "miles")
  11670. },
  11671. ]
  11672. ))
  11673. characterMakers.push(() => makeCharacter(
  11674. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11675. {
  11676. frontDressed: {
  11677. height: math.unit(6, "feet"),
  11678. weight: math.unit(68, "kg"),
  11679. name: "Front (Dressed)",
  11680. image: {
  11681. source: "./media/characters/nomaxice/front-dressed.svg",
  11682. extra: 1137/824,
  11683. bottom: 74/1211
  11684. }
  11685. },
  11686. frontShorts: {
  11687. height: math.unit(6, "feet"),
  11688. weight: math.unit(68, "kg"),
  11689. name: "Front (Shorts)",
  11690. image: {
  11691. source: "./media/characters/nomaxice/front-shorts.svg",
  11692. extra: 1137/824,
  11693. bottom: 74/1211
  11694. }
  11695. },
  11696. back: {
  11697. height: math.unit(6, "feet"),
  11698. weight: math.unit(68, "kg"),
  11699. name: "Back",
  11700. image: {
  11701. source: "./media/characters/nomaxice/back.svg",
  11702. extra: 822/786,
  11703. bottom: 39/861
  11704. }
  11705. },
  11706. hand: {
  11707. height: math.unit(0.565, "feet"),
  11708. name: "Hand",
  11709. image: {
  11710. source: "./media/characters/nomaxice/hand.svg"
  11711. }
  11712. },
  11713. foot: {
  11714. height: math.unit(1, "feet"),
  11715. name: "Foot",
  11716. image: {
  11717. source: "./media/characters/nomaxice/foot.svg"
  11718. }
  11719. },
  11720. },
  11721. [
  11722. {
  11723. name: "Micro",
  11724. height: math.unit(8, "cm")
  11725. },
  11726. {
  11727. name: "Norm",
  11728. height: math.unit(1.82, "m")
  11729. },
  11730. {
  11731. name: "Norm+",
  11732. height: math.unit(8.8, "feet"),
  11733. default: true
  11734. },
  11735. {
  11736. name: "Big",
  11737. height: math.unit(8, "meters")
  11738. },
  11739. {
  11740. name: "Macro",
  11741. height: math.unit(18, "meters")
  11742. },
  11743. {
  11744. name: "Macro+",
  11745. height: math.unit(88, "meters")
  11746. },
  11747. ]
  11748. ))
  11749. characterMakers.push(() => makeCharacter(
  11750. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11751. {
  11752. front: {
  11753. height: math.unit(12, "feet"),
  11754. weight: math.unit(1.5, "tons"),
  11755. name: "Front",
  11756. image: {
  11757. source: "./media/characters/dydros/front.svg",
  11758. extra: 863 / 800,
  11759. bottom: 0.015
  11760. }
  11761. },
  11762. back: {
  11763. height: math.unit(12, "feet"),
  11764. weight: math.unit(1.5, "tons"),
  11765. name: "Back",
  11766. image: {
  11767. source: "./media/characters/dydros/back.svg",
  11768. extra: 900 / 843,
  11769. bottom: 0.005
  11770. }
  11771. },
  11772. },
  11773. [
  11774. {
  11775. name: "Normal",
  11776. height: math.unit(12, "feet"),
  11777. default: true
  11778. },
  11779. ]
  11780. ))
  11781. characterMakers.push(() => makeCharacter(
  11782. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11783. {
  11784. front: {
  11785. height: math.unit(6, "feet"),
  11786. weight: math.unit(100, "kg"),
  11787. name: "Front",
  11788. image: {
  11789. source: "./media/characters/riggi/front.svg",
  11790. extra: 5787 / 5303
  11791. }
  11792. },
  11793. hyper: {
  11794. height: math.unit(6 * 5 / 3, "feet"),
  11795. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11796. name: "Hyper",
  11797. image: {
  11798. source: "./media/characters/riggi/hyper.svg",
  11799. extra: 3595 / 3485
  11800. }
  11801. },
  11802. },
  11803. [
  11804. {
  11805. name: "Small Macro",
  11806. height: math.unit(50, "feet")
  11807. },
  11808. {
  11809. name: "Default",
  11810. height: math.unit(200, "feet"),
  11811. default: true
  11812. },
  11813. {
  11814. name: "Loom",
  11815. height: math.unit(10000, "feet")
  11816. },
  11817. {
  11818. name: "Cruising Altitude",
  11819. height: math.unit(30000, "feet")
  11820. },
  11821. {
  11822. name: "Megamacro",
  11823. height: math.unit(100, "miles")
  11824. },
  11825. {
  11826. name: "Continent Sized",
  11827. height: math.unit(2800, "miles")
  11828. },
  11829. {
  11830. name: "Earth Sized",
  11831. height: math.unit(8000, "miles")
  11832. },
  11833. ]
  11834. ))
  11835. characterMakers.push(() => makeCharacter(
  11836. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11837. {
  11838. front: {
  11839. height: math.unit(6, "feet"),
  11840. weight: math.unit(250, "lb"),
  11841. name: "Front",
  11842. image: {
  11843. source: "./media/characters/alexi/front.svg",
  11844. extra: 3483 / 3291,
  11845. bottom: 0.04
  11846. }
  11847. },
  11848. back: {
  11849. height: math.unit(6, "feet"),
  11850. weight: math.unit(250, "lb"),
  11851. name: "Back",
  11852. image: {
  11853. source: "./media/characters/alexi/back.svg",
  11854. extra: 3533 / 3356,
  11855. bottom: 0.021
  11856. }
  11857. },
  11858. frontTransforming: {
  11859. height: math.unit(8.58, "feet"),
  11860. weight: math.unit(1300, "lb"),
  11861. name: "Transforming",
  11862. image: {
  11863. source: "./media/characters/alexi/front-transforming.svg",
  11864. extra: 437 / 409,
  11865. bottom: 19 / 458.66
  11866. }
  11867. },
  11868. frontTransformed: {
  11869. height: math.unit(12.5, "feet"),
  11870. weight: math.unit(4000, "lb"),
  11871. name: "Transformed",
  11872. image: {
  11873. source: "./media/characters/alexi/front-transformed.svg",
  11874. extra: 639 / 614,
  11875. bottom: 30.55 / 671
  11876. }
  11877. },
  11878. },
  11879. [
  11880. {
  11881. name: "Normal",
  11882. height: math.unit(14, "feet"),
  11883. default: true
  11884. },
  11885. {
  11886. name: "Minimacro",
  11887. height: math.unit(30, "meters")
  11888. },
  11889. {
  11890. name: "Macro",
  11891. height: math.unit(500, "meters")
  11892. },
  11893. {
  11894. name: "Megamacro",
  11895. height: math.unit(9000, "km")
  11896. },
  11897. {
  11898. name: "Teramacro",
  11899. height: math.unit(384000, "km")
  11900. },
  11901. ]
  11902. ))
  11903. characterMakers.push(() => makeCharacter(
  11904. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11905. {
  11906. front: {
  11907. height: math.unit(6, "feet"),
  11908. weight: math.unit(150, "lb"),
  11909. name: "Front",
  11910. image: {
  11911. source: "./media/characters/kayroo/front.svg",
  11912. extra: 1153 / 1038,
  11913. bottom: 0.06
  11914. }
  11915. },
  11916. foot: {
  11917. height: math.unit(6, "feet"),
  11918. weight: math.unit(150, "lb"),
  11919. name: "Foot",
  11920. image: {
  11921. source: "./media/characters/kayroo/foot.svg"
  11922. }
  11923. },
  11924. },
  11925. [
  11926. {
  11927. name: "Normal",
  11928. height: math.unit(8, "feet"),
  11929. default: true
  11930. },
  11931. {
  11932. name: "Minimacro",
  11933. height: math.unit(250, "feet")
  11934. },
  11935. {
  11936. name: "Macro",
  11937. height: math.unit(2800, "feet")
  11938. },
  11939. {
  11940. name: "Megamacro",
  11941. height: math.unit(5200, "feet")
  11942. },
  11943. {
  11944. name: "Gigamacro",
  11945. height: math.unit(27000, "feet")
  11946. },
  11947. {
  11948. name: "Omega",
  11949. height: math.unit(45000, "feet")
  11950. },
  11951. ]
  11952. ))
  11953. characterMakers.push(() => makeCharacter(
  11954. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11955. {
  11956. front: {
  11957. height: math.unit(18, "feet"),
  11958. weight: math.unit(5800, "lb"),
  11959. name: "Front",
  11960. image: {
  11961. source: "./media/characters/rhys/front.svg",
  11962. extra: 3386 / 3090,
  11963. bottom: 0.07
  11964. }
  11965. },
  11966. },
  11967. [
  11968. {
  11969. name: "Normal",
  11970. height: math.unit(18, "feet"),
  11971. default: true
  11972. },
  11973. {
  11974. name: "Working Size",
  11975. height: math.unit(200, "feet")
  11976. },
  11977. {
  11978. name: "Demolition Size",
  11979. height: math.unit(2000, "feet")
  11980. },
  11981. {
  11982. name: "Maximum Licensed Size",
  11983. height: math.unit(5, "miles")
  11984. },
  11985. {
  11986. name: "Maximum Observed Size",
  11987. height: math.unit(10, "yottameters")
  11988. },
  11989. ]
  11990. ))
  11991. characterMakers.push(() => makeCharacter(
  11992. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11993. {
  11994. front: {
  11995. height: math.unit(6, "feet"),
  11996. weight: math.unit(250, "lb"),
  11997. name: "Front",
  11998. image: {
  11999. source: "./media/characters/toto/front.svg",
  12000. extra: 527 / 479,
  12001. bottom: 0.05
  12002. }
  12003. },
  12004. },
  12005. [
  12006. {
  12007. name: "Micro",
  12008. height: math.unit(3, "feet")
  12009. },
  12010. {
  12011. name: "Normal",
  12012. height: math.unit(10, "feet")
  12013. },
  12014. {
  12015. name: "Macro",
  12016. height: math.unit(150, "feet"),
  12017. default: true
  12018. },
  12019. {
  12020. name: "Megamacro",
  12021. height: math.unit(1200, "feet")
  12022. },
  12023. ]
  12024. ))
  12025. characterMakers.push(() => makeCharacter(
  12026. { name: "King", species: ["lion"], tags: ["anthro"] },
  12027. {
  12028. back: {
  12029. height: math.unit(6, "feet"),
  12030. weight: math.unit(150, "lb"),
  12031. name: "Back",
  12032. image: {
  12033. source: "./media/characters/king/back.svg"
  12034. }
  12035. },
  12036. },
  12037. [
  12038. {
  12039. name: "Micro",
  12040. height: math.unit(2, "inches")
  12041. },
  12042. {
  12043. name: "Normal",
  12044. height: math.unit(8, "feet")
  12045. },
  12046. {
  12047. name: "Macro",
  12048. height: math.unit(200, "feet"),
  12049. default: true
  12050. },
  12051. {
  12052. name: "Megamacro",
  12053. height: math.unit(50, "miles")
  12054. },
  12055. ]
  12056. ))
  12057. characterMakers.push(() => makeCharacter(
  12058. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12059. {
  12060. front: {
  12061. height: math.unit(11, "feet"),
  12062. weight: math.unit(1400, "lb"),
  12063. name: "Front",
  12064. image: {
  12065. source: "./media/characters/cordite/front.svg",
  12066. extra: 1919/1827,
  12067. bottom: 40/1959
  12068. }
  12069. },
  12070. side: {
  12071. height: math.unit(11, "feet"),
  12072. weight: math.unit(1400, "lb"),
  12073. name: "Side",
  12074. image: {
  12075. source: "./media/characters/cordite/side.svg",
  12076. extra: 1908/1793,
  12077. bottom: 38/1946
  12078. }
  12079. },
  12080. back: {
  12081. height: math.unit(11, "feet"),
  12082. weight: math.unit(1400, "lb"),
  12083. name: "Back",
  12084. image: {
  12085. source: "./media/characters/cordite/back.svg",
  12086. extra: 1938/1837,
  12087. bottom: 10/1948
  12088. }
  12089. },
  12090. feral: {
  12091. height: math.unit(2, "feet"),
  12092. weight: math.unit(90, "lb"),
  12093. name: "Feral",
  12094. image: {
  12095. source: "./media/characters/cordite/feral.svg",
  12096. extra: 1260 / 755,
  12097. bottom: 0.05
  12098. }
  12099. },
  12100. },
  12101. [
  12102. {
  12103. name: "Normal",
  12104. height: math.unit(11, "feet"),
  12105. default: true
  12106. },
  12107. ]
  12108. ))
  12109. characterMakers.push(() => makeCharacter(
  12110. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12111. {
  12112. front: {
  12113. height: math.unit(6, "feet"),
  12114. weight: math.unit(150, "lb"),
  12115. name: "Front",
  12116. image: {
  12117. source: "./media/characters/pianostrong/front.svg",
  12118. extra: 6577 / 6254,
  12119. bottom: 0.02
  12120. }
  12121. },
  12122. side: {
  12123. height: math.unit(6, "feet"),
  12124. weight: math.unit(150, "lb"),
  12125. name: "Side",
  12126. image: {
  12127. source: "./media/characters/pianostrong/side.svg",
  12128. extra: 6106 / 5730
  12129. }
  12130. },
  12131. back: {
  12132. height: math.unit(6, "feet"),
  12133. weight: math.unit(150, "lb"),
  12134. name: "Back",
  12135. image: {
  12136. source: "./media/characters/pianostrong/back.svg",
  12137. extra: 6085 / 5733,
  12138. bottom: 0.01
  12139. }
  12140. },
  12141. },
  12142. [
  12143. {
  12144. name: "Macro",
  12145. height: math.unit(100, "feet")
  12146. },
  12147. {
  12148. name: "Macro+",
  12149. height: math.unit(300, "feet"),
  12150. default: true
  12151. },
  12152. {
  12153. name: "Macro++",
  12154. height: math.unit(1000, "feet")
  12155. },
  12156. ]
  12157. ))
  12158. characterMakers.push(() => makeCharacter(
  12159. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12160. {
  12161. front: {
  12162. height: math.unit(6, "feet"),
  12163. weight: math.unit(150, "lb"),
  12164. name: "Front",
  12165. image: {
  12166. source: "./media/characters/kona/front.svg",
  12167. extra: 2960 / 2629,
  12168. bottom: 0.005
  12169. }
  12170. },
  12171. },
  12172. [
  12173. {
  12174. name: "Normal",
  12175. height: math.unit(11 + 8 / 12, "feet")
  12176. },
  12177. {
  12178. name: "Macro",
  12179. height: math.unit(850, "feet"),
  12180. default: true
  12181. },
  12182. {
  12183. name: "Macro+",
  12184. height: math.unit(1.5, "km"),
  12185. default: true
  12186. },
  12187. {
  12188. name: "Megamacro",
  12189. height: math.unit(80, "miles")
  12190. },
  12191. {
  12192. name: "Gigamacro",
  12193. height: math.unit(3500, "miles")
  12194. },
  12195. ]
  12196. ))
  12197. characterMakers.push(() => makeCharacter(
  12198. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12199. {
  12200. side: {
  12201. height: math.unit(1.9, "meters"),
  12202. weight: math.unit(326, "kg"),
  12203. name: "Side",
  12204. image: {
  12205. source: "./media/characters/levi/side.svg",
  12206. extra: 1704 / 1334,
  12207. bottom: 0.02
  12208. }
  12209. },
  12210. },
  12211. [
  12212. {
  12213. name: "Normal",
  12214. height: math.unit(1.9, "meters"),
  12215. default: true
  12216. },
  12217. {
  12218. name: "Macro",
  12219. height: math.unit(20, "meters")
  12220. },
  12221. {
  12222. name: "Macro+",
  12223. height: math.unit(200, "meters")
  12224. },
  12225. {
  12226. name: "Megamacro",
  12227. height: math.unit(2, "km")
  12228. },
  12229. {
  12230. name: "Megamacro+",
  12231. height: math.unit(20, "km")
  12232. },
  12233. {
  12234. name: "Gigamacro",
  12235. height: math.unit(2500, "km")
  12236. },
  12237. {
  12238. name: "Gigamacro+",
  12239. height: math.unit(120000, "km")
  12240. },
  12241. {
  12242. name: "Teramacro",
  12243. height: math.unit(7.77e6, "km")
  12244. },
  12245. ]
  12246. ))
  12247. characterMakers.push(() => makeCharacter(
  12248. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12249. {
  12250. front: {
  12251. height: math.unit(6 + 4/12, "feet"),
  12252. weight: math.unit(190, "lb"),
  12253. name: "Front",
  12254. image: {
  12255. source: "./media/characters/bmc/front.svg",
  12256. extra: 1626/1472,
  12257. bottom: 79/1705
  12258. }
  12259. },
  12260. back: {
  12261. height: math.unit(6 + 4/12, "feet"),
  12262. weight: math.unit(190, "lb"),
  12263. name: "Back",
  12264. image: {
  12265. source: "./media/characters/bmc/back.svg",
  12266. extra: 1640/1479,
  12267. bottom: 45/1685
  12268. }
  12269. },
  12270. frontArmor: {
  12271. height: math.unit(6 + 4/12, "feet"),
  12272. weight: math.unit(190, "lb"),
  12273. name: "Front-armor",
  12274. image: {
  12275. source: "./media/characters/bmc/front-armor.svg",
  12276. extra: 1538/1468,
  12277. bottom: 79/1617
  12278. }
  12279. },
  12280. },
  12281. [
  12282. {
  12283. name: "Human-sized",
  12284. height: math.unit(6 + 4 / 12, "feet")
  12285. },
  12286. {
  12287. name: "Interactive Size",
  12288. height: math.unit(25, "feet")
  12289. },
  12290. {
  12291. name: "Small",
  12292. height: math.unit(250, "feet")
  12293. },
  12294. {
  12295. name: "Normal",
  12296. height: math.unit(1250, "feet"),
  12297. default: true
  12298. },
  12299. {
  12300. name: "Good Day",
  12301. height: math.unit(88, "miles")
  12302. },
  12303. {
  12304. name: "Largest Measured Size",
  12305. height: math.unit(105.960, "galaxies")
  12306. },
  12307. ]
  12308. ))
  12309. characterMakers.push(() => makeCharacter(
  12310. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12311. {
  12312. front: {
  12313. height: math.unit(20, "feet"),
  12314. weight: math.unit(2016, "kg"),
  12315. name: "Front",
  12316. image: {
  12317. source: "./media/characters/sven-the-kaiju/front.svg",
  12318. extra: 1277/1250,
  12319. bottom: 35/1312
  12320. }
  12321. },
  12322. mouth: {
  12323. height: math.unit(1.85, "feet"),
  12324. name: "Mouth",
  12325. image: {
  12326. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12327. }
  12328. },
  12329. },
  12330. [
  12331. {
  12332. name: "Fairy",
  12333. height: math.unit(6, "inches")
  12334. },
  12335. {
  12336. name: "Normal",
  12337. height: math.unit(20, "feet"),
  12338. default: true
  12339. },
  12340. {
  12341. name: "Rampage",
  12342. height: math.unit(200, "feet")
  12343. },
  12344. {
  12345. name: "Archfey Forest Guardian",
  12346. height: math.unit(1, "mile")
  12347. },
  12348. ]
  12349. ))
  12350. characterMakers.push(() => makeCharacter(
  12351. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12352. {
  12353. front: {
  12354. height: math.unit(4, "meters"),
  12355. weight: math.unit(2, "tons"),
  12356. name: "Front",
  12357. image: {
  12358. source: "./media/characters/marik/front.svg",
  12359. extra: 1057 / 1003,
  12360. bottom: 0.08
  12361. }
  12362. },
  12363. },
  12364. [
  12365. {
  12366. name: "Normal",
  12367. height: math.unit(4, "meters"),
  12368. default: true
  12369. },
  12370. {
  12371. name: "Macro",
  12372. height: math.unit(20, "meters")
  12373. },
  12374. {
  12375. name: "Megamacro",
  12376. height: math.unit(50, "km")
  12377. },
  12378. {
  12379. name: "Gigamacro",
  12380. height: math.unit(100, "km")
  12381. },
  12382. {
  12383. name: "Alpha Macro",
  12384. height: math.unit(7.88e7, "yottameters")
  12385. },
  12386. ]
  12387. ))
  12388. characterMakers.push(() => makeCharacter(
  12389. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12390. {
  12391. front: {
  12392. height: math.unit(6, "feet"),
  12393. weight: math.unit(110, "lb"),
  12394. name: "Front",
  12395. image: {
  12396. source: "./media/characters/mel/front.svg",
  12397. extra: 736 / 617,
  12398. bottom: 0.017
  12399. }
  12400. },
  12401. },
  12402. [
  12403. {
  12404. name: "Pico",
  12405. height: math.unit(3, "pm")
  12406. },
  12407. {
  12408. name: "Nano",
  12409. height: math.unit(3, "nm")
  12410. },
  12411. {
  12412. name: "Micro",
  12413. height: math.unit(0.3, "mm"),
  12414. default: true
  12415. },
  12416. {
  12417. name: "Micro+",
  12418. height: math.unit(3, "mm")
  12419. },
  12420. {
  12421. name: "Normal",
  12422. height: math.unit(5 + 10.5 / 12, "feet")
  12423. },
  12424. ]
  12425. ))
  12426. characterMakers.push(() => makeCharacter(
  12427. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12428. {
  12429. kaiju: {
  12430. height: math.unit(1.75, "meters"),
  12431. weight: math.unit(55, "kg"),
  12432. name: "Kaiju",
  12433. image: {
  12434. source: "./media/characters/lykonous/kaiju.svg",
  12435. extra: 1055 / 946,
  12436. bottom: 0.135
  12437. }
  12438. },
  12439. },
  12440. [
  12441. {
  12442. name: "Normal",
  12443. height: math.unit(2.5, "meters"),
  12444. default: true
  12445. },
  12446. {
  12447. name: "Kaiju Dragon",
  12448. height: math.unit(60, "meters")
  12449. },
  12450. {
  12451. name: "Mega Kaiju",
  12452. height: math.unit(120, "km")
  12453. },
  12454. {
  12455. name: "Giga Kaiju",
  12456. height: math.unit(200, "megameters")
  12457. },
  12458. {
  12459. name: "Terra Kaiju",
  12460. height: math.unit(400, "gigameters")
  12461. },
  12462. {
  12463. name: "Kaiju Dragon God",
  12464. height: math.unit(13000, "exaparsecs")
  12465. },
  12466. ]
  12467. ))
  12468. characterMakers.push(() => makeCharacter(
  12469. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12470. {
  12471. front: {
  12472. height: math.unit(6, "feet"),
  12473. weight: math.unit(150, "lb"),
  12474. name: "Front",
  12475. image: {
  12476. source: "./media/characters/blü/front.svg",
  12477. extra: 1883 / 1564,
  12478. bottom: 0.031
  12479. }
  12480. },
  12481. },
  12482. [
  12483. {
  12484. name: "Normal",
  12485. height: math.unit(13, "feet"),
  12486. default: true
  12487. },
  12488. {
  12489. name: "Big Boi",
  12490. height: math.unit(150, "meters")
  12491. },
  12492. {
  12493. name: "Mini Stomper",
  12494. height: math.unit(300, "meters")
  12495. },
  12496. {
  12497. name: "Macro",
  12498. height: math.unit(1000, "meters")
  12499. },
  12500. {
  12501. name: "Megamacro",
  12502. height: math.unit(11000, "meters")
  12503. },
  12504. {
  12505. name: "Gigamacro",
  12506. height: math.unit(11000, "km")
  12507. },
  12508. {
  12509. name: "Teramacro",
  12510. height: math.unit(420000, "km")
  12511. },
  12512. {
  12513. name: "Examacro",
  12514. height: math.unit(120, "parsecs")
  12515. },
  12516. {
  12517. name: "God Tho",
  12518. height: math.unit(98000000000, "parsecs")
  12519. },
  12520. ]
  12521. ))
  12522. characterMakers.push(() => makeCharacter(
  12523. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12524. {
  12525. taurFront: {
  12526. height: math.unit(6, "feet"),
  12527. weight: math.unit(200, "lb"),
  12528. name: "Taur (Front)",
  12529. image: {
  12530. source: "./media/characters/scales/taur-front.svg",
  12531. extra: 1,
  12532. bottom: 0.05
  12533. }
  12534. },
  12535. taurBack: {
  12536. height: math.unit(6, "feet"),
  12537. weight: math.unit(200, "lb"),
  12538. name: "Taur (Back)",
  12539. image: {
  12540. source: "./media/characters/scales/taur-back.svg",
  12541. extra: 1,
  12542. bottom: 0.08
  12543. }
  12544. },
  12545. anthro: {
  12546. height: math.unit(6 * 7 / 12, "feet"),
  12547. weight: math.unit(100, "lb"),
  12548. name: "Anthro",
  12549. image: {
  12550. source: "./media/characters/scales/anthro.svg",
  12551. extra: 1,
  12552. bottom: 0.06
  12553. }
  12554. },
  12555. },
  12556. [
  12557. {
  12558. name: "Normal",
  12559. height: math.unit(12, "feet"),
  12560. default: true
  12561. },
  12562. ]
  12563. ))
  12564. characterMakers.push(() => makeCharacter(
  12565. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12566. {
  12567. front: {
  12568. height: math.unit(6, "feet"),
  12569. weight: math.unit(150, "lb"),
  12570. name: "Front",
  12571. image: {
  12572. source: "./media/characters/koragos/front.svg",
  12573. extra: 841 / 794,
  12574. bottom: 0.035
  12575. }
  12576. },
  12577. back: {
  12578. height: math.unit(6, "feet"),
  12579. weight: math.unit(150, "lb"),
  12580. name: "Back",
  12581. image: {
  12582. source: "./media/characters/koragos/back.svg",
  12583. extra: 841 / 810,
  12584. bottom: 0.022
  12585. }
  12586. },
  12587. },
  12588. [
  12589. {
  12590. name: "Normal",
  12591. height: math.unit(6 + 11 / 12, "feet"),
  12592. default: true
  12593. },
  12594. {
  12595. name: "Macro",
  12596. height: math.unit(490, "feet")
  12597. },
  12598. {
  12599. name: "Megamacro",
  12600. height: math.unit(10, "miles")
  12601. },
  12602. {
  12603. name: "Gigamacro",
  12604. height: math.unit(50, "miles")
  12605. },
  12606. ]
  12607. ))
  12608. characterMakers.push(() => makeCharacter(
  12609. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12610. {
  12611. front: {
  12612. height: math.unit(6, "feet"),
  12613. weight: math.unit(250, "lb"),
  12614. name: "Front",
  12615. image: {
  12616. source: "./media/characters/xylrem/front.svg",
  12617. extra: 3323 / 3050,
  12618. bottom: 0.065
  12619. }
  12620. },
  12621. },
  12622. [
  12623. {
  12624. name: "Micro",
  12625. height: math.unit(4, "feet")
  12626. },
  12627. {
  12628. name: "Normal",
  12629. height: math.unit(16, "feet"),
  12630. default: true
  12631. },
  12632. {
  12633. name: "Macro",
  12634. height: math.unit(2720, "feet")
  12635. },
  12636. {
  12637. name: "Megamacro",
  12638. height: math.unit(25000, "miles")
  12639. },
  12640. ]
  12641. ))
  12642. characterMakers.push(() => makeCharacter(
  12643. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12644. {
  12645. front: {
  12646. height: math.unit(8, "feet"),
  12647. weight: math.unit(250, "kg"),
  12648. name: "Front",
  12649. image: {
  12650. source: "./media/characters/ikideru/front.svg",
  12651. extra: 930 / 870,
  12652. bottom: 0.087
  12653. }
  12654. },
  12655. back: {
  12656. height: math.unit(8, "feet"),
  12657. weight: math.unit(250, "kg"),
  12658. name: "Back",
  12659. image: {
  12660. source: "./media/characters/ikideru/back.svg",
  12661. extra: 919 / 852,
  12662. bottom: 0.055
  12663. }
  12664. },
  12665. },
  12666. [
  12667. {
  12668. name: "Rare",
  12669. height: math.unit(8, "feet"),
  12670. default: true
  12671. },
  12672. {
  12673. name: "Playful Loom",
  12674. height: math.unit(80, "feet")
  12675. },
  12676. {
  12677. name: "City Leaner",
  12678. height: math.unit(230, "feet")
  12679. },
  12680. {
  12681. name: "Megamacro",
  12682. height: math.unit(2500, "feet")
  12683. },
  12684. {
  12685. name: "Gigamacro",
  12686. height: math.unit(26400, "feet")
  12687. },
  12688. {
  12689. name: "Tectonic Shifter",
  12690. height: math.unit(1.7, "megameters")
  12691. },
  12692. {
  12693. name: "Planet Carer",
  12694. height: math.unit(21, "megameters")
  12695. },
  12696. {
  12697. name: "God",
  12698. height: math.unit(11157.22, "parsecs")
  12699. },
  12700. ]
  12701. ))
  12702. characterMakers.push(() => makeCharacter(
  12703. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12704. {
  12705. front: {
  12706. height: math.unit(6, "feet"),
  12707. weight: math.unit(120, "lb"),
  12708. name: "Front",
  12709. image: {
  12710. source: "./media/characters/neo/front.svg"
  12711. }
  12712. },
  12713. },
  12714. [
  12715. {
  12716. name: "Micro",
  12717. height: math.unit(2, "inches"),
  12718. default: true
  12719. },
  12720. {
  12721. name: "Human Size",
  12722. height: math.unit(5 + 8 / 12, "feet")
  12723. },
  12724. ]
  12725. ))
  12726. characterMakers.push(() => makeCharacter(
  12727. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12728. {
  12729. front: {
  12730. height: math.unit(13 + 10 / 12, "feet"),
  12731. weight: math.unit(5320, "lb"),
  12732. name: "Front",
  12733. image: {
  12734. source: "./media/characters/chauncey-chantz/front.svg",
  12735. extra: 1587 / 1435,
  12736. bottom: 0.02
  12737. }
  12738. },
  12739. },
  12740. [
  12741. {
  12742. name: "Normal",
  12743. height: math.unit(13 + 10 / 12, "feet"),
  12744. default: true
  12745. },
  12746. {
  12747. name: "Macro",
  12748. height: math.unit(45, "feet")
  12749. },
  12750. {
  12751. name: "Megamacro",
  12752. height: math.unit(250, "miles")
  12753. },
  12754. {
  12755. name: "Planetary",
  12756. height: math.unit(10000, "miles")
  12757. },
  12758. {
  12759. name: "Galactic",
  12760. height: math.unit(40000, "parsecs")
  12761. },
  12762. {
  12763. name: "Universal",
  12764. height: math.unit(1, "yottameter")
  12765. },
  12766. ]
  12767. ))
  12768. characterMakers.push(() => makeCharacter(
  12769. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12770. {
  12771. front: {
  12772. height: math.unit(6, "feet"),
  12773. weight: math.unit(150, "lb"),
  12774. name: "Front",
  12775. image: {
  12776. source: "./media/characters/epifox/front.svg",
  12777. extra: 1,
  12778. bottom: 0.075
  12779. }
  12780. },
  12781. },
  12782. [
  12783. {
  12784. name: "Micro",
  12785. height: math.unit(6, "inches")
  12786. },
  12787. {
  12788. name: "Normal",
  12789. height: math.unit(12, "feet"),
  12790. default: true
  12791. },
  12792. {
  12793. name: "Macro",
  12794. height: math.unit(3810, "feet")
  12795. },
  12796. {
  12797. name: "Megamacro",
  12798. height: math.unit(500, "miles")
  12799. },
  12800. ]
  12801. ))
  12802. characterMakers.push(() => makeCharacter(
  12803. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12804. {
  12805. front: {
  12806. height: math.unit(1.8796, "m"),
  12807. weight: math.unit(230, "lb"),
  12808. name: "Front",
  12809. image: {
  12810. source: "./media/characters/colin-t/front.svg",
  12811. extra: 1272 / 1193,
  12812. bottom: 0.07
  12813. }
  12814. },
  12815. },
  12816. [
  12817. {
  12818. name: "Micro",
  12819. height: math.unit(0.571, "meters")
  12820. },
  12821. {
  12822. name: "Normal",
  12823. height: math.unit(1.8796, "meters"),
  12824. default: true
  12825. },
  12826. {
  12827. name: "Tall",
  12828. height: math.unit(4, "meters")
  12829. },
  12830. {
  12831. name: "Macro",
  12832. height: math.unit(67.241, "meters")
  12833. },
  12834. {
  12835. name: "Megamacro",
  12836. height: math.unit(371.856, "meters")
  12837. },
  12838. {
  12839. name: "Planetary",
  12840. height: math.unit(12631.5689, "km")
  12841. },
  12842. ]
  12843. ))
  12844. characterMakers.push(() => makeCharacter(
  12845. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12846. {
  12847. front: {
  12848. height: math.unit(1.85, "meters"),
  12849. weight: math.unit(80, "kg"),
  12850. name: "Front",
  12851. image: {
  12852. source: "./media/characters/matvei/front.svg",
  12853. extra: 614 / 594,
  12854. bottom: 0.01
  12855. }
  12856. },
  12857. },
  12858. [
  12859. {
  12860. name: "Normal",
  12861. height: math.unit(1.85, "meters"),
  12862. default: true
  12863. },
  12864. ]
  12865. ))
  12866. characterMakers.push(() => makeCharacter(
  12867. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12868. {
  12869. front: {
  12870. height: math.unit(5 + 9 / 12, "feet"),
  12871. weight: math.unit(70, "lb"),
  12872. name: "Front",
  12873. image: {
  12874. source: "./media/characters/quincy/front.svg",
  12875. extra: 3041 / 2751
  12876. }
  12877. },
  12878. back: {
  12879. height: math.unit(5 + 9 / 12, "feet"),
  12880. weight: math.unit(70, "lb"),
  12881. name: "Back",
  12882. image: {
  12883. source: "./media/characters/quincy/back.svg",
  12884. extra: 3041 / 2751
  12885. }
  12886. },
  12887. flying: {
  12888. height: math.unit(5 + 4 / 12, "feet"),
  12889. weight: math.unit(70, "lb"),
  12890. name: "Flying",
  12891. image: {
  12892. source: "./media/characters/quincy/flying.svg",
  12893. extra: 1044 / 930
  12894. }
  12895. },
  12896. },
  12897. [
  12898. {
  12899. name: "Micro",
  12900. height: math.unit(3, "cm")
  12901. },
  12902. {
  12903. name: "Normal",
  12904. height: math.unit(5 + 9 / 12, "feet")
  12905. },
  12906. {
  12907. name: "Macro",
  12908. height: math.unit(200, "meters"),
  12909. default: true
  12910. },
  12911. {
  12912. name: "Megamacro",
  12913. height: math.unit(1000, "meters")
  12914. },
  12915. ]
  12916. ))
  12917. characterMakers.push(() => makeCharacter(
  12918. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12919. {
  12920. front: {
  12921. height: math.unit(3 + 11/12, "feet"),
  12922. weight: math.unit(50, "lb"),
  12923. name: "Front",
  12924. image: {
  12925. source: "./media/characters/vanrel/front.svg",
  12926. extra: 1104/949,
  12927. bottom: 52/1156
  12928. }
  12929. },
  12930. back: {
  12931. height: math.unit(3 + 11/12, "feet"),
  12932. weight: math.unit(50, "lb"),
  12933. name: "Back",
  12934. image: {
  12935. source: "./media/characters/vanrel/back.svg",
  12936. extra: 1119/976,
  12937. bottom: 37/1156
  12938. }
  12939. },
  12940. tome: {
  12941. height: math.unit(1.35, "feet"),
  12942. weight: math.unit(10, "lb"),
  12943. name: "Vanrel's Tome",
  12944. rename: true,
  12945. image: {
  12946. source: "./media/characters/vanrel/tome.svg"
  12947. }
  12948. },
  12949. beans: {
  12950. height: math.unit(0.89, "feet"),
  12951. name: "Beans",
  12952. image: {
  12953. source: "./media/characters/vanrel/beans.svg"
  12954. }
  12955. },
  12956. },
  12957. [
  12958. {
  12959. name: "Normal",
  12960. height: math.unit(3 + 11/12, "feet"),
  12961. default: true
  12962. },
  12963. ]
  12964. ))
  12965. characterMakers.push(() => makeCharacter(
  12966. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12967. {
  12968. front: {
  12969. height: math.unit(7 + 5 / 12, "feet"),
  12970. name: "Front",
  12971. image: {
  12972. source: "./media/characters/kuiper-vanrel/front.svg",
  12973. extra: 1219/1169,
  12974. bottom: 69/1288
  12975. }
  12976. },
  12977. back: {
  12978. height: math.unit(7 + 5 / 12, "feet"),
  12979. name: "Back",
  12980. image: {
  12981. source: "./media/characters/kuiper-vanrel/back.svg",
  12982. extra: 1236/1193,
  12983. bottom: 27/1263
  12984. }
  12985. },
  12986. foot: {
  12987. height: math.unit(0.55, "meters"),
  12988. name: "Foot",
  12989. image: {
  12990. source: "./media/characters/kuiper-vanrel/foot.svg",
  12991. }
  12992. },
  12993. battle: {
  12994. height: math.unit(6.824, "feet"),
  12995. name: "Battle",
  12996. image: {
  12997. source: "./media/characters/kuiper-vanrel/battle.svg",
  12998. extra: 1466 / 1327,
  12999. bottom: 29 / 1492.5
  13000. }
  13001. },
  13002. meerkui: {
  13003. height: math.unit(18, "inches"),
  13004. name: "Meerkui",
  13005. image: {
  13006. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13007. extra: 1354/1289,
  13008. bottom: 69/1423
  13009. }
  13010. },
  13011. },
  13012. [
  13013. {
  13014. name: "Normal",
  13015. height: math.unit(7 + 5 / 12, "feet"),
  13016. default: true
  13017. },
  13018. ]
  13019. ))
  13020. characterMakers.push(() => makeCharacter(
  13021. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13022. {
  13023. front: {
  13024. height: math.unit(8 + 5 / 12, "feet"),
  13025. name: "Front",
  13026. image: {
  13027. source: "./media/characters/keset-vanrel/front.svg",
  13028. extra: 1231/1148,
  13029. bottom: 82/1313
  13030. }
  13031. },
  13032. back: {
  13033. height: math.unit(8 + 5 / 12, "feet"),
  13034. name: "Back",
  13035. image: {
  13036. source: "./media/characters/keset-vanrel/back.svg",
  13037. extra: 1240/1174,
  13038. bottom: 33/1273
  13039. }
  13040. },
  13041. hand: {
  13042. height: math.unit(0.6, "meters"),
  13043. name: "Hand",
  13044. image: {
  13045. source: "./media/characters/keset-vanrel/hand.svg"
  13046. }
  13047. },
  13048. foot: {
  13049. height: math.unit(0.94978, "meters"),
  13050. name: "Foot",
  13051. image: {
  13052. source: "./media/characters/keset-vanrel/foot.svg"
  13053. }
  13054. },
  13055. battle: {
  13056. height: math.unit(7.408, "feet"),
  13057. name: "Battle",
  13058. image: {
  13059. source: "./media/characters/keset-vanrel/battle.svg",
  13060. extra: 1890 / 1386,
  13061. bottom: 73.28 / 1970
  13062. }
  13063. },
  13064. },
  13065. [
  13066. {
  13067. name: "Normal",
  13068. height: math.unit(8 + 5 / 12, "feet"),
  13069. default: true
  13070. },
  13071. ]
  13072. ))
  13073. characterMakers.push(() => makeCharacter(
  13074. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13075. {
  13076. front: {
  13077. height: math.unit(6, "feet"),
  13078. weight: math.unit(150, "lb"),
  13079. name: "Front",
  13080. image: {
  13081. source: "./media/characters/neos/front.svg",
  13082. extra: 1696 / 992,
  13083. bottom: 0.14
  13084. }
  13085. },
  13086. },
  13087. [
  13088. {
  13089. name: "Normal",
  13090. height: math.unit(54, "cm"),
  13091. default: true
  13092. },
  13093. {
  13094. name: "Macro",
  13095. height: math.unit(100, "m")
  13096. },
  13097. {
  13098. name: "Megamacro",
  13099. height: math.unit(10, "km")
  13100. },
  13101. {
  13102. name: "Megamacro+",
  13103. height: math.unit(100, "km")
  13104. },
  13105. {
  13106. name: "Gigamacro",
  13107. height: math.unit(100, "Mm")
  13108. },
  13109. {
  13110. name: "Teramacro",
  13111. height: math.unit(100, "Gm")
  13112. },
  13113. {
  13114. name: "Examacro",
  13115. height: math.unit(100, "Em")
  13116. },
  13117. {
  13118. name: "Godly",
  13119. height: math.unit(10000, "Ym")
  13120. },
  13121. {
  13122. name: "Beyond Godly",
  13123. height: math.unit(25, "multiverses")
  13124. },
  13125. ]
  13126. ))
  13127. characterMakers.push(() => makeCharacter(
  13128. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13129. {
  13130. feminine: {
  13131. height: math.unit(5, "feet"),
  13132. weight: math.unit(100, "lb"),
  13133. name: "Feminine",
  13134. image: {
  13135. source: "./media/characters/sammy-mouse/feminine.svg",
  13136. extra: 2526 / 2425,
  13137. bottom: 0.123
  13138. }
  13139. },
  13140. masculine: {
  13141. height: math.unit(5, "feet"),
  13142. weight: math.unit(100, "lb"),
  13143. name: "Masculine",
  13144. image: {
  13145. source: "./media/characters/sammy-mouse/masculine.svg",
  13146. extra: 2526 / 2425,
  13147. bottom: 0.123
  13148. }
  13149. },
  13150. },
  13151. [
  13152. {
  13153. name: "Micro",
  13154. height: math.unit(5, "inches")
  13155. },
  13156. {
  13157. name: "Normal",
  13158. height: math.unit(5, "feet"),
  13159. default: true
  13160. },
  13161. {
  13162. name: "Macro",
  13163. height: math.unit(60, "feet")
  13164. },
  13165. ]
  13166. ))
  13167. characterMakers.push(() => makeCharacter(
  13168. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13169. {
  13170. front: {
  13171. height: math.unit(4, "feet"),
  13172. weight: math.unit(50, "lb"),
  13173. name: "Front",
  13174. image: {
  13175. source: "./media/characters/kole/front.svg",
  13176. extra: 1423 / 1303,
  13177. bottom: 0.025
  13178. }
  13179. },
  13180. back: {
  13181. height: math.unit(4, "feet"),
  13182. weight: math.unit(50, "lb"),
  13183. name: "Back",
  13184. image: {
  13185. source: "./media/characters/kole/back.svg",
  13186. extra: 1426 / 1280,
  13187. bottom: 0.02
  13188. }
  13189. },
  13190. },
  13191. [
  13192. {
  13193. name: "Normal",
  13194. height: math.unit(4, "feet"),
  13195. default: true
  13196. },
  13197. ]
  13198. ))
  13199. characterMakers.push(() => makeCharacter(
  13200. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13201. {
  13202. front: {
  13203. height: math.unit(2.5, "feet"),
  13204. weight: math.unit(32, "lb"),
  13205. name: "Front",
  13206. image: {
  13207. source: "./media/characters/rufran/front.svg",
  13208. extra: 1313/885,
  13209. bottom: 94/1407
  13210. }
  13211. },
  13212. side: {
  13213. height: math.unit(2.5, "feet"),
  13214. weight: math.unit(32, "lb"),
  13215. name: "Side",
  13216. image: {
  13217. source: "./media/characters/rufran/side.svg",
  13218. extra: 1109/852,
  13219. bottom: 118/1227
  13220. }
  13221. },
  13222. back: {
  13223. height: math.unit(2.5, "feet"),
  13224. weight: math.unit(32, "lb"),
  13225. name: "Back",
  13226. image: {
  13227. source: "./media/characters/rufran/back.svg",
  13228. extra: 1280/878,
  13229. bottom: 131/1411
  13230. }
  13231. },
  13232. mouth: {
  13233. height: math.unit(1.13, "feet"),
  13234. name: "Mouth",
  13235. image: {
  13236. source: "./media/characters/rufran/mouth.svg"
  13237. }
  13238. },
  13239. foot: {
  13240. height: math.unit(1.33, "feet"),
  13241. name: "Foot",
  13242. image: {
  13243. source: "./media/characters/rufran/foot.svg"
  13244. }
  13245. },
  13246. koboldFront: {
  13247. height: math.unit(2 + 6 / 12, "feet"),
  13248. weight: math.unit(20, "lb"),
  13249. name: "Front (Kobold)",
  13250. image: {
  13251. source: "./media/characters/rufran/kobold-front.svg",
  13252. extra: 2041 / 1839,
  13253. bottom: 0.055
  13254. }
  13255. },
  13256. koboldBack: {
  13257. height: math.unit(2 + 6 / 12, "feet"),
  13258. weight: math.unit(20, "lb"),
  13259. name: "Back (Kobold)",
  13260. image: {
  13261. source: "./media/characters/rufran/kobold-back.svg",
  13262. extra: 2054 / 1839,
  13263. bottom: 0.01
  13264. }
  13265. },
  13266. koboldHand: {
  13267. height: math.unit(0.2166, "meters"),
  13268. name: "Hand (Kobold)",
  13269. image: {
  13270. source: "./media/characters/rufran/kobold-hand.svg"
  13271. }
  13272. },
  13273. koboldFoot: {
  13274. height: math.unit(0.185, "meters"),
  13275. name: "Foot (Kobold)",
  13276. image: {
  13277. source: "./media/characters/rufran/kobold-foot.svg"
  13278. }
  13279. },
  13280. },
  13281. [
  13282. {
  13283. name: "Micro",
  13284. height: math.unit(1, "inch")
  13285. },
  13286. {
  13287. name: "Normal",
  13288. height: math.unit(2 + 6 / 12, "feet"),
  13289. default: true
  13290. },
  13291. {
  13292. name: "Big",
  13293. height: math.unit(60, "feet")
  13294. },
  13295. {
  13296. name: "Macro",
  13297. height: math.unit(325, "feet")
  13298. },
  13299. ]
  13300. ))
  13301. characterMakers.push(() => makeCharacter(
  13302. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13303. {
  13304. front: {
  13305. height: math.unit(0.3, "meters"),
  13306. weight: math.unit(3.5, "kg"),
  13307. name: "Front",
  13308. image: {
  13309. source: "./media/characters/chip/front.svg",
  13310. extra: 748 / 674
  13311. }
  13312. },
  13313. },
  13314. [
  13315. {
  13316. name: "Micro",
  13317. height: math.unit(1, "inch"),
  13318. default: true
  13319. },
  13320. ]
  13321. ))
  13322. characterMakers.push(() => makeCharacter(
  13323. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13324. {
  13325. side: {
  13326. height: math.unit(2.3, "meters"),
  13327. weight: math.unit(3500, "lb"),
  13328. name: "Side",
  13329. image: {
  13330. source: "./media/characters/torvid/side.svg",
  13331. extra: 1972 / 722,
  13332. bottom: 0.035
  13333. }
  13334. },
  13335. },
  13336. [
  13337. {
  13338. name: "Normal",
  13339. height: math.unit(2.3, "meters"),
  13340. default: true
  13341. },
  13342. ]
  13343. ))
  13344. characterMakers.push(() => makeCharacter(
  13345. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13346. {
  13347. front: {
  13348. height: math.unit(2, "meters"),
  13349. weight: math.unit(150.5, "kg"),
  13350. name: "Front",
  13351. image: {
  13352. source: "./media/characters/susan/front.svg",
  13353. extra: 693 / 635,
  13354. bottom: 0.05
  13355. }
  13356. },
  13357. },
  13358. [
  13359. {
  13360. name: "Megamacro",
  13361. height: math.unit(505, "miles"),
  13362. default: true
  13363. },
  13364. ]
  13365. ))
  13366. characterMakers.push(() => makeCharacter(
  13367. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13368. {
  13369. front: {
  13370. height: math.unit(6, "feet"),
  13371. weight: math.unit(150, "lb"),
  13372. name: "Front",
  13373. image: {
  13374. source: "./media/characters/raindrops/front.svg",
  13375. extra: 2655 / 2461,
  13376. bottom: 49 / 2705
  13377. }
  13378. },
  13379. back: {
  13380. height: math.unit(6, "feet"),
  13381. weight: math.unit(150, "lb"),
  13382. name: "Back",
  13383. image: {
  13384. source: "./media/characters/raindrops/back.svg",
  13385. extra: 2574 / 2400,
  13386. bottom: 65 / 2634
  13387. }
  13388. },
  13389. },
  13390. [
  13391. {
  13392. name: "Micro",
  13393. height: math.unit(6, "inches")
  13394. },
  13395. {
  13396. name: "Normal",
  13397. height: math.unit(6 + 2 / 12, "feet")
  13398. },
  13399. {
  13400. name: "Macro",
  13401. height: math.unit(131, "feet"),
  13402. default: true
  13403. },
  13404. {
  13405. name: "Megamacro",
  13406. height: math.unit(15, "miles")
  13407. },
  13408. {
  13409. name: "Gigamacro",
  13410. height: math.unit(4000, "miles")
  13411. },
  13412. {
  13413. name: "Teramacro",
  13414. height: math.unit(315000, "miles")
  13415. },
  13416. ]
  13417. ))
  13418. characterMakers.push(() => makeCharacter(
  13419. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13420. {
  13421. front: {
  13422. height: math.unit(2.794, "meters"),
  13423. weight: math.unit(325, "kg"),
  13424. name: "Front",
  13425. image: {
  13426. source: "./media/characters/tezwa/front.svg",
  13427. extra: 2083 / 1906,
  13428. bottom: 0.031
  13429. }
  13430. },
  13431. foot: {
  13432. height: math.unit(0.687, "meters"),
  13433. name: "Foot",
  13434. image: {
  13435. source: "./media/characters/tezwa/foot.svg"
  13436. }
  13437. },
  13438. },
  13439. [
  13440. {
  13441. name: "Normal",
  13442. height: math.unit(9 + 2 / 12, "feet"),
  13443. default: true
  13444. },
  13445. ]
  13446. ))
  13447. characterMakers.push(() => makeCharacter(
  13448. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13449. {
  13450. front: {
  13451. height: math.unit(58, "feet"),
  13452. weight: math.unit(89000, "lb"),
  13453. name: "Front",
  13454. image: {
  13455. source: "./media/characters/typhus/front.svg",
  13456. extra: 816 / 800,
  13457. bottom: 0.065
  13458. }
  13459. },
  13460. },
  13461. [
  13462. {
  13463. name: "Macro",
  13464. height: math.unit(58, "feet"),
  13465. default: true
  13466. },
  13467. ]
  13468. ))
  13469. characterMakers.push(() => makeCharacter(
  13470. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13471. {
  13472. front: {
  13473. height: math.unit(12, "feet"),
  13474. weight: math.unit(6, "tonnes"),
  13475. name: "Front",
  13476. image: {
  13477. source: "./media/characters/lyra-von-wulf/front.svg",
  13478. extra: 1,
  13479. bottom: 0.10
  13480. }
  13481. },
  13482. frontMecha: {
  13483. height: math.unit(12, "feet"),
  13484. weight: math.unit(12, "tonnes"),
  13485. name: "Front (Mecha)",
  13486. image: {
  13487. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13488. extra: 1,
  13489. bottom: 0.042
  13490. }
  13491. },
  13492. maw: {
  13493. height: math.unit(2.2, "feet"),
  13494. name: "Maw",
  13495. image: {
  13496. source: "./media/characters/lyra-von-wulf/maw.svg"
  13497. }
  13498. },
  13499. },
  13500. [
  13501. {
  13502. name: "Normal",
  13503. height: math.unit(12, "feet"),
  13504. default: true
  13505. },
  13506. {
  13507. name: "Classic",
  13508. height: math.unit(50, "feet")
  13509. },
  13510. {
  13511. name: "Macro",
  13512. height: math.unit(500, "feet")
  13513. },
  13514. {
  13515. name: "Megamacro",
  13516. height: math.unit(1, "mile")
  13517. },
  13518. {
  13519. name: "Gigamacro",
  13520. height: math.unit(400, "miles")
  13521. },
  13522. {
  13523. name: "Teramacro",
  13524. height: math.unit(22000, "miles")
  13525. },
  13526. {
  13527. name: "Solarmacro",
  13528. height: math.unit(8600000, "miles")
  13529. },
  13530. {
  13531. name: "Galactic",
  13532. height: math.unit(1057000, "lightyears")
  13533. },
  13534. ]
  13535. ))
  13536. characterMakers.push(() => makeCharacter(
  13537. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13538. {
  13539. front: {
  13540. height: math.unit(6 + 10 / 12, "feet"),
  13541. weight: math.unit(150, "lb"),
  13542. name: "Front",
  13543. image: {
  13544. source: "./media/characters/dixon/front.svg",
  13545. extra: 3361 / 3209,
  13546. bottom: 0.01
  13547. }
  13548. },
  13549. },
  13550. [
  13551. {
  13552. name: "Normal",
  13553. height: math.unit(6 + 10 / 12, "feet"),
  13554. default: true
  13555. },
  13556. {
  13557. name: "Big",
  13558. height: math.unit(12, "meters")
  13559. },
  13560. {
  13561. name: "Macro",
  13562. height: math.unit(500, "meters")
  13563. },
  13564. {
  13565. name: "Megamacro",
  13566. height: math.unit(2, "km")
  13567. },
  13568. ]
  13569. ))
  13570. characterMakers.push(() => makeCharacter(
  13571. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13572. {
  13573. front: {
  13574. height: math.unit(185, "cm"),
  13575. weight: math.unit(68, "kg"),
  13576. name: "Front",
  13577. image: {
  13578. source: "./media/characters/kauko/front.svg",
  13579. extra: 1455 / 1421,
  13580. bottom: 0.03
  13581. }
  13582. },
  13583. back: {
  13584. height: math.unit(185, "cm"),
  13585. weight: math.unit(68, "kg"),
  13586. name: "Back",
  13587. image: {
  13588. source: "./media/characters/kauko/back.svg",
  13589. extra: 1455 / 1421,
  13590. bottom: 0.004
  13591. }
  13592. },
  13593. },
  13594. [
  13595. {
  13596. name: "Normal",
  13597. height: math.unit(185, "cm"),
  13598. default: true
  13599. },
  13600. ]
  13601. ))
  13602. characterMakers.push(() => makeCharacter(
  13603. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13604. {
  13605. front: {
  13606. height: math.unit(6, "feet"),
  13607. weight: math.unit(150, "kg"),
  13608. name: "Front",
  13609. image: {
  13610. source: "./media/characters/varg/front.svg",
  13611. extra: 1108 / 1018,
  13612. bottom: 0.0375
  13613. }
  13614. },
  13615. },
  13616. [
  13617. {
  13618. name: "Normal",
  13619. height: math.unit(5, "meters")
  13620. },
  13621. {
  13622. name: "Macro",
  13623. height: math.unit(200, "meters")
  13624. },
  13625. {
  13626. name: "Megamacro",
  13627. height: math.unit(20, "kilometers")
  13628. },
  13629. {
  13630. name: "True Size",
  13631. height: math.unit(211, "km"),
  13632. default: true
  13633. },
  13634. {
  13635. name: "Gigamacro",
  13636. height: math.unit(1000, "km")
  13637. },
  13638. {
  13639. name: "Gigamacro+",
  13640. height: math.unit(8000, "km")
  13641. },
  13642. {
  13643. name: "Teramacro",
  13644. height: math.unit(1000000, "km")
  13645. },
  13646. ]
  13647. ))
  13648. characterMakers.push(() => makeCharacter(
  13649. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13650. {
  13651. front: {
  13652. height: math.unit(7 + 7 / 12, "feet"),
  13653. weight: math.unit(267, "lb"),
  13654. name: "Front",
  13655. image: {
  13656. source: "./media/characters/dayza/front.svg",
  13657. extra: 1262 / 1200,
  13658. bottom: 0.035
  13659. }
  13660. },
  13661. side: {
  13662. height: math.unit(7 + 7 / 12, "feet"),
  13663. weight: math.unit(267, "lb"),
  13664. name: "Side",
  13665. image: {
  13666. source: "./media/characters/dayza/side.svg",
  13667. extra: 1295 / 1245,
  13668. bottom: 0.05
  13669. }
  13670. },
  13671. back: {
  13672. height: math.unit(7 + 7 / 12, "feet"),
  13673. weight: math.unit(267, "lb"),
  13674. name: "Back",
  13675. image: {
  13676. source: "./media/characters/dayza/back.svg",
  13677. extra: 1241 / 1170
  13678. }
  13679. },
  13680. },
  13681. [
  13682. {
  13683. name: "Normal",
  13684. height: math.unit(7 + 7 / 12, "feet"),
  13685. default: true
  13686. },
  13687. {
  13688. name: "Macro",
  13689. height: math.unit(155, "feet")
  13690. },
  13691. ]
  13692. ))
  13693. characterMakers.push(() => makeCharacter(
  13694. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13695. {
  13696. front: {
  13697. height: math.unit(6 + 5 / 12, "feet"),
  13698. weight: math.unit(160, "lb"),
  13699. name: "Front",
  13700. image: {
  13701. source: "./media/characters/xanthos/front.svg",
  13702. extra: 1,
  13703. bottom: 0.04
  13704. }
  13705. },
  13706. back: {
  13707. height: math.unit(6 + 5 / 12, "feet"),
  13708. weight: math.unit(160, "lb"),
  13709. name: "Back",
  13710. image: {
  13711. source: "./media/characters/xanthos/back.svg",
  13712. extra: 1,
  13713. bottom: 0.03
  13714. }
  13715. },
  13716. hand: {
  13717. height: math.unit(0.928, "feet"),
  13718. name: "Hand",
  13719. image: {
  13720. source: "./media/characters/xanthos/hand.svg"
  13721. }
  13722. },
  13723. foot: {
  13724. height: math.unit(1.286, "feet"),
  13725. name: "Foot",
  13726. image: {
  13727. source: "./media/characters/xanthos/foot.svg"
  13728. }
  13729. },
  13730. },
  13731. [
  13732. {
  13733. name: "Normal",
  13734. height: math.unit(6 + 5 / 12, "feet"),
  13735. default: true
  13736. },
  13737. {
  13738. name: "Normal+",
  13739. height: math.unit(6, "meters")
  13740. },
  13741. {
  13742. name: "Macro",
  13743. height: math.unit(40, "feet")
  13744. },
  13745. {
  13746. name: "Macro+",
  13747. height: math.unit(200, "meters")
  13748. },
  13749. {
  13750. name: "Megamacro",
  13751. height: math.unit(20, "km")
  13752. },
  13753. {
  13754. name: "Megamacro+",
  13755. height: math.unit(100, "km")
  13756. },
  13757. {
  13758. name: "Gigamacro",
  13759. height: math.unit(200, "megameters")
  13760. },
  13761. {
  13762. name: "Gigamacro+",
  13763. height: math.unit(1.5, "gigameters")
  13764. },
  13765. ]
  13766. ))
  13767. characterMakers.push(() => makeCharacter(
  13768. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13769. {
  13770. front: {
  13771. height: math.unit(6 + 3 / 12, "feet"),
  13772. weight: math.unit(215, "lb"),
  13773. name: "Front",
  13774. image: {
  13775. source: "./media/characters/grynn/front.svg",
  13776. extra: 4627 / 4209,
  13777. bottom: 0.047
  13778. }
  13779. },
  13780. },
  13781. [
  13782. {
  13783. name: "Micro",
  13784. height: math.unit(6, "inches")
  13785. },
  13786. {
  13787. name: "Normal",
  13788. height: math.unit(6 + 3 / 12, "feet"),
  13789. default: true
  13790. },
  13791. {
  13792. name: "Big",
  13793. height: math.unit(104, "feet")
  13794. },
  13795. {
  13796. name: "Macro",
  13797. height: math.unit(944, "feet")
  13798. },
  13799. {
  13800. name: "Macro+",
  13801. height: math.unit(9480, "feet")
  13802. },
  13803. {
  13804. name: "Megamacro",
  13805. height: math.unit(78752, "feet")
  13806. },
  13807. {
  13808. name: "Megamacro+",
  13809. height: math.unit(630128, "feet")
  13810. },
  13811. {
  13812. name: "Megamacro++",
  13813. height: math.unit(3150695, "feet")
  13814. },
  13815. ]
  13816. ))
  13817. characterMakers.push(() => makeCharacter(
  13818. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13819. {
  13820. front: {
  13821. height: math.unit(7 + 5 / 12, "feet"),
  13822. weight: math.unit(450, "lb"),
  13823. name: "Front",
  13824. image: {
  13825. source: "./media/characters/mocha-aura/front.svg",
  13826. extra: 1907 / 1817,
  13827. bottom: 0.04
  13828. }
  13829. },
  13830. back: {
  13831. height: math.unit(7 + 5 / 12, "feet"),
  13832. weight: math.unit(450, "lb"),
  13833. name: "Back",
  13834. image: {
  13835. source: "./media/characters/mocha-aura/back.svg",
  13836. extra: 1900 / 1825,
  13837. bottom: 0.045
  13838. }
  13839. },
  13840. },
  13841. [
  13842. {
  13843. name: "Nano",
  13844. height: math.unit(1, "nm")
  13845. },
  13846. {
  13847. name: "Megamicro",
  13848. height: math.unit(1, "mm")
  13849. },
  13850. {
  13851. name: "Micro",
  13852. height: math.unit(3, "inches")
  13853. },
  13854. {
  13855. name: "Normal",
  13856. height: math.unit(7 + 5 / 12, "feet"),
  13857. default: true
  13858. },
  13859. {
  13860. name: "Macro",
  13861. height: math.unit(30, "feet")
  13862. },
  13863. {
  13864. name: "Megamacro",
  13865. height: math.unit(3500, "feet")
  13866. },
  13867. {
  13868. name: "Teramacro",
  13869. height: math.unit(500000, "miles")
  13870. },
  13871. {
  13872. name: "Petamacro",
  13873. height: math.unit(50000000000000000, "parsecs")
  13874. },
  13875. ]
  13876. ))
  13877. characterMakers.push(() => makeCharacter(
  13878. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13879. {
  13880. front: {
  13881. height: math.unit(6, "feet"),
  13882. weight: math.unit(150, "lb"),
  13883. name: "Front",
  13884. image: {
  13885. source: "./media/characters/ilisha-devya/front.svg",
  13886. extra: 1053/1049,
  13887. bottom: 270/1323
  13888. }
  13889. },
  13890. back: {
  13891. height: math.unit(6, "feet"),
  13892. weight: math.unit(150, "lb"),
  13893. name: "Back",
  13894. image: {
  13895. source: "./media/characters/ilisha-devya/back.svg",
  13896. extra: 1131/1128,
  13897. bottom: 39/1170
  13898. }
  13899. },
  13900. },
  13901. [
  13902. {
  13903. name: "Macro",
  13904. height: math.unit(500, "feet"),
  13905. default: true
  13906. },
  13907. {
  13908. name: "Megamacro",
  13909. height: math.unit(10, "miles")
  13910. },
  13911. {
  13912. name: "Gigamacro",
  13913. height: math.unit(100000, "miles")
  13914. },
  13915. {
  13916. name: "Examacro",
  13917. height: math.unit(1e9, "lightyears")
  13918. },
  13919. {
  13920. name: "Omniversal",
  13921. height: math.unit(1e33, "lightyears")
  13922. },
  13923. {
  13924. name: "Beyond Infinite",
  13925. height: math.unit(1e100, "lightyears")
  13926. },
  13927. ]
  13928. ))
  13929. characterMakers.push(() => makeCharacter(
  13930. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13931. {
  13932. Side: {
  13933. height: math.unit(6, "feet"),
  13934. weight: math.unit(150, "lb"),
  13935. name: "Side",
  13936. image: {
  13937. source: "./media/characters/mira/side.svg",
  13938. extra: 900 / 799,
  13939. bottom: 0.02
  13940. }
  13941. },
  13942. },
  13943. [
  13944. {
  13945. name: "Human Size",
  13946. height: math.unit(6, "feet")
  13947. },
  13948. {
  13949. name: "Macro",
  13950. height: math.unit(100, "feet"),
  13951. default: true
  13952. },
  13953. {
  13954. name: "Megamacro",
  13955. height: math.unit(10, "miles")
  13956. },
  13957. {
  13958. name: "Gigamacro",
  13959. height: math.unit(25000, "miles")
  13960. },
  13961. {
  13962. name: "Teramacro",
  13963. height: math.unit(300, "AU")
  13964. },
  13965. {
  13966. name: "Full Size",
  13967. height: math.unit(4.5e10, "lightyears")
  13968. },
  13969. ]
  13970. ))
  13971. characterMakers.push(() => makeCharacter(
  13972. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13973. {
  13974. front: {
  13975. height: math.unit(6, "feet"),
  13976. weight: math.unit(150, "lb"),
  13977. name: "Front",
  13978. image: {
  13979. source: "./media/characters/holly/front.svg",
  13980. extra: 639 / 606
  13981. }
  13982. },
  13983. back: {
  13984. height: math.unit(6, "feet"),
  13985. weight: math.unit(150, "lb"),
  13986. name: "Back",
  13987. image: {
  13988. source: "./media/characters/holly/back.svg",
  13989. extra: 623 / 598
  13990. }
  13991. },
  13992. frontWorking: {
  13993. height: math.unit(6, "feet"),
  13994. weight: math.unit(150, "lb"),
  13995. name: "Front (Working)",
  13996. image: {
  13997. source: "./media/characters/holly/front-working.svg",
  13998. extra: 607 / 577,
  13999. bottom: 0.048
  14000. }
  14001. },
  14002. },
  14003. [
  14004. {
  14005. name: "Normal",
  14006. height: math.unit(12 + 3 / 12, "feet"),
  14007. default: true
  14008. },
  14009. ]
  14010. ))
  14011. characterMakers.push(() => makeCharacter(
  14012. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14013. {
  14014. front: {
  14015. height: math.unit(6, "feet"),
  14016. weight: math.unit(150, "lb"),
  14017. name: "Front",
  14018. image: {
  14019. source: "./media/characters/porter/front.svg",
  14020. extra: 1,
  14021. bottom: 0.01
  14022. }
  14023. },
  14024. frontRobes: {
  14025. height: math.unit(6, "feet"),
  14026. weight: math.unit(150, "lb"),
  14027. name: "Front (Robes)",
  14028. image: {
  14029. source: "./media/characters/porter/front-robes.svg",
  14030. extra: 1.01,
  14031. bottom: 0.01
  14032. }
  14033. },
  14034. },
  14035. [
  14036. {
  14037. name: "Normal",
  14038. height: math.unit(11 + 9 / 12, "feet"),
  14039. default: true
  14040. },
  14041. ]
  14042. ))
  14043. characterMakers.push(() => makeCharacter(
  14044. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14045. {
  14046. legendary: {
  14047. height: math.unit(6, "feet"),
  14048. weight: math.unit(150, "lb"),
  14049. name: "Legendary",
  14050. image: {
  14051. source: "./media/characters/lucy/legendary.svg",
  14052. extra: 1355 / 1100,
  14053. bottom: 0.045
  14054. }
  14055. },
  14056. },
  14057. [
  14058. {
  14059. name: "Legendary",
  14060. height: math.unit(86882 * 2, "miles"),
  14061. default: true
  14062. },
  14063. ]
  14064. ))
  14065. characterMakers.push(() => makeCharacter(
  14066. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14067. {
  14068. front: {
  14069. height: math.unit(6, "feet"),
  14070. weight: math.unit(150, "lb"),
  14071. name: "Front",
  14072. image: {
  14073. source: "./media/characters/drusilla/front.svg",
  14074. extra: 678 / 635,
  14075. bottom: 0.03
  14076. }
  14077. },
  14078. back: {
  14079. height: math.unit(6, "feet"),
  14080. weight: math.unit(150, "lb"),
  14081. name: "Back",
  14082. image: {
  14083. source: "./media/characters/drusilla/back.svg",
  14084. extra: 678 / 635,
  14085. bottom: 0.005
  14086. }
  14087. },
  14088. },
  14089. [
  14090. {
  14091. name: "Macro",
  14092. height: math.unit(100, "feet")
  14093. },
  14094. {
  14095. name: "Canon Height",
  14096. height: math.unit(2000, "feet"),
  14097. default: true
  14098. },
  14099. ]
  14100. ))
  14101. characterMakers.push(() => makeCharacter(
  14102. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14103. {
  14104. front: {
  14105. height: math.unit(6, "feet"),
  14106. weight: math.unit(180, "lb"),
  14107. name: "Front",
  14108. image: {
  14109. source: "./media/characters/renard-thatch/front.svg",
  14110. extra: 2411 / 2275,
  14111. bottom: 0.01
  14112. }
  14113. },
  14114. frontPosing: {
  14115. height: math.unit(6, "feet"),
  14116. weight: math.unit(180, "lb"),
  14117. name: "Front (Posing)",
  14118. image: {
  14119. source: "./media/characters/renard-thatch/front-posing.svg",
  14120. extra: 2381 / 2261,
  14121. bottom: 0.01
  14122. }
  14123. },
  14124. back: {
  14125. height: math.unit(6, "feet"),
  14126. weight: math.unit(180, "lb"),
  14127. name: "Back",
  14128. image: {
  14129. source: "./media/characters/renard-thatch/back.svg",
  14130. extra: 2428 / 2288
  14131. }
  14132. },
  14133. },
  14134. [
  14135. {
  14136. name: "Micro",
  14137. height: math.unit(3, "inches")
  14138. },
  14139. {
  14140. name: "Default",
  14141. height: math.unit(6, "feet"),
  14142. default: true
  14143. },
  14144. {
  14145. name: "Macro",
  14146. height: math.unit(75, "feet")
  14147. },
  14148. ]
  14149. ))
  14150. characterMakers.push(() => makeCharacter(
  14151. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14152. {
  14153. front: {
  14154. height: math.unit(1450, "feet"),
  14155. weight: math.unit(1.21e6, "tons"),
  14156. name: "Front",
  14157. image: {
  14158. source: "./media/characters/sekvra/front.svg",
  14159. extra: 1193/1190,
  14160. bottom: 78/1271
  14161. }
  14162. },
  14163. side: {
  14164. height: math.unit(1450, "feet"),
  14165. weight: math.unit(1.21e6, "tons"),
  14166. name: "Side",
  14167. image: {
  14168. source: "./media/characters/sekvra/side.svg",
  14169. extra: 1193/1190,
  14170. bottom: 52/1245
  14171. }
  14172. },
  14173. back: {
  14174. height: math.unit(1450, "feet"),
  14175. weight: math.unit(1.21e6, "tons"),
  14176. name: "Back",
  14177. image: {
  14178. source: "./media/characters/sekvra/back.svg",
  14179. extra: 1219/1216,
  14180. bottom: 21/1240
  14181. }
  14182. },
  14183. frontClothed: {
  14184. height: math.unit(1450, "feet"),
  14185. weight: math.unit(1.21e6, "tons"),
  14186. name: "Front (Clothed)",
  14187. image: {
  14188. source: "./media/characters/sekvra/front-clothed.svg",
  14189. extra: 1192/1189,
  14190. bottom: 79/1271
  14191. }
  14192. },
  14193. },
  14194. [
  14195. {
  14196. name: "Macro",
  14197. height: math.unit(1450, "feet"),
  14198. default: true
  14199. },
  14200. {
  14201. name: "Megamacro",
  14202. height: math.unit(15000, "feet")
  14203. },
  14204. ]
  14205. ))
  14206. characterMakers.push(() => makeCharacter(
  14207. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14208. {
  14209. front: {
  14210. height: math.unit(6, "feet"),
  14211. weight: math.unit(150, "lb"),
  14212. name: "Front",
  14213. image: {
  14214. source: "./media/characters/carmine/front.svg",
  14215. extra: 1,
  14216. bottom: 0.035
  14217. }
  14218. },
  14219. frontArmor: {
  14220. height: math.unit(6, "feet"),
  14221. weight: math.unit(150, "lb"),
  14222. name: "Front (Armor)",
  14223. image: {
  14224. source: "./media/characters/carmine/front-armor.svg",
  14225. extra: 1,
  14226. bottom: 0.035
  14227. }
  14228. },
  14229. },
  14230. [
  14231. {
  14232. name: "Large",
  14233. height: math.unit(1, "mile")
  14234. },
  14235. {
  14236. name: "Huge",
  14237. height: math.unit(40, "miles"),
  14238. default: true
  14239. },
  14240. {
  14241. name: "Colossal",
  14242. height: math.unit(2500, "miles")
  14243. },
  14244. ]
  14245. ))
  14246. characterMakers.push(() => makeCharacter(
  14247. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14248. {
  14249. front: {
  14250. height: math.unit(6, "feet"),
  14251. weight: math.unit(150, "lb"),
  14252. name: "Front",
  14253. image: {
  14254. source: "./media/characters/elyssia/front.svg",
  14255. extra: 2201 / 2035,
  14256. bottom: 0.05
  14257. }
  14258. },
  14259. frontClothed: {
  14260. height: math.unit(6, "feet"),
  14261. weight: math.unit(150, "lb"),
  14262. name: "Front (Clothed)",
  14263. image: {
  14264. source: "./media/characters/elyssia/front-clothed.svg",
  14265. extra: 2201 / 2035,
  14266. bottom: 0.05
  14267. }
  14268. },
  14269. back: {
  14270. height: math.unit(6, "feet"),
  14271. weight: math.unit(150, "lb"),
  14272. name: "Back",
  14273. image: {
  14274. source: "./media/characters/elyssia/back.svg",
  14275. extra: 2201 / 2035,
  14276. bottom: 0.013
  14277. }
  14278. },
  14279. },
  14280. [
  14281. {
  14282. name: "Smaller",
  14283. height: math.unit(150, "feet")
  14284. },
  14285. {
  14286. name: "Standard",
  14287. height: math.unit(1400, "feet"),
  14288. default: true
  14289. },
  14290. {
  14291. name: "Distracted",
  14292. height: math.unit(15000, "feet")
  14293. },
  14294. ]
  14295. ))
  14296. characterMakers.push(() => makeCharacter(
  14297. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14298. {
  14299. front: {
  14300. height: math.unit(7 + 4/12, "feet"),
  14301. weight: math.unit(690, "lb"),
  14302. name: "Front",
  14303. image: {
  14304. source: "./media/characters/geno-maxwell/front.svg",
  14305. extra: 984/856,
  14306. bottom: 87/1071
  14307. }
  14308. },
  14309. back: {
  14310. height: math.unit(7 + 4/12, "feet"),
  14311. weight: math.unit(690, "lb"),
  14312. name: "Back",
  14313. image: {
  14314. source: "./media/characters/geno-maxwell/back.svg",
  14315. extra: 981/854,
  14316. bottom: 57/1038
  14317. }
  14318. },
  14319. frontCostume: {
  14320. height: math.unit(7 + 4/12, "feet"),
  14321. weight: math.unit(690, "lb"),
  14322. name: "Front (Costume)",
  14323. image: {
  14324. source: "./media/characters/geno-maxwell/front-costume.svg",
  14325. extra: 984/856,
  14326. bottom: 87/1071
  14327. }
  14328. },
  14329. backcostume: {
  14330. height: math.unit(7 + 4/12, "feet"),
  14331. weight: math.unit(690, "lb"),
  14332. name: "Back (Costume)",
  14333. image: {
  14334. source: "./media/characters/geno-maxwell/back-costume.svg",
  14335. extra: 981/854,
  14336. bottom: 57/1038
  14337. }
  14338. },
  14339. },
  14340. [
  14341. {
  14342. name: "Micro",
  14343. height: math.unit(3, "inches")
  14344. },
  14345. {
  14346. name: "Normal",
  14347. height: math.unit(7 + 4 / 12, "feet"),
  14348. default: true
  14349. },
  14350. {
  14351. name: "Macro",
  14352. height: math.unit(220, "feet")
  14353. },
  14354. {
  14355. name: "Megamacro",
  14356. height: math.unit(11, "miles")
  14357. },
  14358. ]
  14359. ))
  14360. characterMakers.push(() => makeCharacter(
  14361. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14362. {
  14363. front: {
  14364. height: math.unit(7 + 4/12, "feet"),
  14365. weight: math.unit(750, "lb"),
  14366. name: "Front",
  14367. image: {
  14368. source: "./media/characters/regena-maxwell/front.svg",
  14369. extra: 984/856,
  14370. bottom: 87/1071
  14371. }
  14372. },
  14373. back: {
  14374. height: math.unit(7 + 4/12, "feet"),
  14375. weight: math.unit(750, "lb"),
  14376. name: "Back",
  14377. image: {
  14378. source: "./media/characters/regena-maxwell/back.svg",
  14379. extra: 981/854,
  14380. bottom: 57/1038
  14381. }
  14382. },
  14383. frontCostume: {
  14384. height: math.unit(7 + 4/12, "feet"),
  14385. weight: math.unit(750, "lb"),
  14386. name: "Front (Costume)",
  14387. image: {
  14388. source: "./media/characters/regena-maxwell/front-costume.svg",
  14389. extra: 984/856,
  14390. bottom: 87/1071
  14391. }
  14392. },
  14393. backcostume: {
  14394. height: math.unit(7 + 4/12, "feet"),
  14395. weight: math.unit(750, "lb"),
  14396. name: "Back (Costume)",
  14397. image: {
  14398. source: "./media/characters/regena-maxwell/back-costume.svg",
  14399. extra: 981/854,
  14400. bottom: 57/1038
  14401. }
  14402. },
  14403. },
  14404. [
  14405. {
  14406. name: "Normal",
  14407. height: math.unit(7 + 4 / 12, "feet"),
  14408. default: true
  14409. },
  14410. {
  14411. name: "Macro",
  14412. height: math.unit(220, "feet")
  14413. },
  14414. {
  14415. name: "Megamacro",
  14416. height: math.unit(11, "miles")
  14417. },
  14418. ]
  14419. ))
  14420. characterMakers.push(() => makeCharacter(
  14421. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14422. {
  14423. front: {
  14424. height: math.unit(6, "feet"),
  14425. weight: math.unit(150, "lb"),
  14426. name: "Front",
  14427. image: {
  14428. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14429. extra: 860 / 690,
  14430. bottom: 0.03
  14431. }
  14432. },
  14433. },
  14434. [
  14435. {
  14436. name: "Normal",
  14437. height: math.unit(1.7, "meters"),
  14438. default: true
  14439. },
  14440. ]
  14441. ))
  14442. characterMakers.push(() => makeCharacter(
  14443. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14444. {
  14445. front: {
  14446. height: math.unit(6, "feet"),
  14447. weight: math.unit(150, "lb"),
  14448. name: "Front",
  14449. image: {
  14450. source: "./media/characters/quilly/front.svg",
  14451. extra: 890 / 776
  14452. }
  14453. },
  14454. },
  14455. [
  14456. {
  14457. name: "Gigamacro",
  14458. height: math.unit(404090, "miles"),
  14459. default: true
  14460. },
  14461. ]
  14462. ))
  14463. characterMakers.push(() => makeCharacter(
  14464. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14465. {
  14466. front: {
  14467. height: math.unit(7 + 8 / 12, "feet"),
  14468. weight: math.unit(350, "lb"),
  14469. name: "Front",
  14470. image: {
  14471. source: "./media/characters/tempest/front.svg",
  14472. extra: 1175 / 1086,
  14473. bottom: 0.02
  14474. }
  14475. },
  14476. },
  14477. [
  14478. {
  14479. name: "Normal",
  14480. height: math.unit(7 + 8 / 12, "feet"),
  14481. default: true
  14482. },
  14483. ]
  14484. ))
  14485. characterMakers.push(() => makeCharacter(
  14486. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14487. {
  14488. side: {
  14489. height: math.unit(4 + 5 / 12, "feet"),
  14490. weight: math.unit(80, "lb"),
  14491. name: "Side",
  14492. image: {
  14493. source: "./media/characters/rodger/side.svg",
  14494. extra: 1235 / 1118
  14495. }
  14496. },
  14497. },
  14498. [
  14499. {
  14500. name: "Micro",
  14501. height: math.unit(1, "inch")
  14502. },
  14503. {
  14504. name: "Normal",
  14505. height: math.unit(4 + 5 / 12, "feet"),
  14506. default: true
  14507. },
  14508. {
  14509. name: "Macro",
  14510. height: math.unit(120, "feet")
  14511. },
  14512. ]
  14513. ))
  14514. characterMakers.push(() => makeCharacter(
  14515. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14516. {
  14517. front: {
  14518. height: math.unit(6, "feet"),
  14519. weight: math.unit(150, "lb"),
  14520. name: "Front",
  14521. image: {
  14522. source: "./media/characters/danyel/front.svg",
  14523. extra: 1185 / 1123,
  14524. bottom: 0.05
  14525. }
  14526. },
  14527. },
  14528. [
  14529. {
  14530. name: "Shrunken",
  14531. height: math.unit(0.5, "mm")
  14532. },
  14533. {
  14534. name: "Micro",
  14535. height: math.unit(1, "mm"),
  14536. default: true
  14537. },
  14538. {
  14539. name: "Upsized",
  14540. height: math.unit(5 + 5 / 12, "feet")
  14541. },
  14542. ]
  14543. ))
  14544. characterMakers.push(() => makeCharacter(
  14545. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14546. {
  14547. front: {
  14548. height: math.unit(5 + 6 / 12, "feet"),
  14549. weight: math.unit(200, "lb"),
  14550. name: "Front",
  14551. image: {
  14552. source: "./media/characters/vivian-bijoux/front.svg",
  14553. extra: 1217/1209,
  14554. bottom: 76/1293
  14555. }
  14556. },
  14557. back: {
  14558. height: math.unit(5 + 6 / 12, "feet"),
  14559. weight: math.unit(200, "lb"),
  14560. name: "Back",
  14561. image: {
  14562. source: "./media/characters/vivian-bijoux/back.svg",
  14563. extra: 1214/1208,
  14564. bottom: 51/1265
  14565. }
  14566. },
  14567. dressed: {
  14568. height: math.unit(5 + 6 / 12, "feet"),
  14569. weight: math.unit(200, "lb"),
  14570. name: "Dressed",
  14571. image: {
  14572. source: "./media/characters/vivian-bijoux/dressed.svg",
  14573. extra: 1217/1209,
  14574. bottom: 76/1293
  14575. }
  14576. },
  14577. },
  14578. [
  14579. {
  14580. name: "Normal",
  14581. height: math.unit(5 + 6 / 12, "feet"),
  14582. default: true
  14583. },
  14584. {
  14585. name: "Bad Dream",
  14586. height: math.unit(500, "feet")
  14587. },
  14588. {
  14589. name: "Nightmare",
  14590. height: math.unit(500, "miles")
  14591. },
  14592. ]
  14593. ))
  14594. characterMakers.push(() => makeCharacter(
  14595. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14596. {
  14597. front: {
  14598. height: math.unit(6 + 1 / 12, "feet"),
  14599. weight: math.unit(260, "lb"),
  14600. name: "Front",
  14601. image: {
  14602. source: "./media/characters/zeta/front.svg",
  14603. extra: 1968 / 1889,
  14604. bottom: 0.06
  14605. }
  14606. },
  14607. back: {
  14608. height: math.unit(6 + 1 / 12, "feet"),
  14609. weight: math.unit(260, "lb"),
  14610. name: "Back",
  14611. image: {
  14612. source: "./media/characters/zeta/back.svg",
  14613. extra: 1944 / 1858,
  14614. bottom: 0.03
  14615. }
  14616. },
  14617. hand: {
  14618. height: math.unit(1.112, "feet"),
  14619. name: "Hand",
  14620. image: {
  14621. source: "./media/characters/zeta/hand.svg"
  14622. }
  14623. },
  14624. foot: {
  14625. height: math.unit(1.48, "feet"),
  14626. name: "Foot",
  14627. image: {
  14628. source: "./media/characters/zeta/foot.svg"
  14629. }
  14630. },
  14631. },
  14632. [
  14633. {
  14634. name: "Micro",
  14635. height: math.unit(6, "inches")
  14636. },
  14637. {
  14638. name: "Normal",
  14639. height: math.unit(6 + 1 / 12, "feet"),
  14640. default: true
  14641. },
  14642. {
  14643. name: "Macro",
  14644. height: math.unit(20, "feet")
  14645. },
  14646. ]
  14647. ))
  14648. characterMakers.push(() => makeCharacter(
  14649. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14650. {
  14651. front: {
  14652. height: math.unit(6, "feet"),
  14653. weight: math.unit(150, "lb"),
  14654. name: "Front",
  14655. image: {
  14656. source: "./media/characters/jamie-larsen/front.svg",
  14657. extra: 962 / 933,
  14658. bottom: 0.02
  14659. }
  14660. },
  14661. back: {
  14662. height: math.unit(6, "feet"),
  14663. weight: math.unit(150, "lb"),
  14664. name: "Back",
  14665. image: {
  14666. source: "./media/characters/jamie-larsen/back.svg",
  14667. extra: 997 / 946
  14668. }
  14669. },
  14670. },
  14671. [
  14672. {
  14673. name: "Macro",
  14674. height: math.unit(28 + 7 / 12, "feet"),
  14675. default: true
  14676. },
  14677. {
  14678. name: "Macro+",
  14679. height: math.unit(180, "feet")
  14680. },
  14681. {
  14682. name: "Megamacro",
  14683. height: math.unit(10, "miles")
  14684. },
  14685. {
  14686. name: "Gigamacro",
  14687. height: math.unit(200000, "miles")
  14688. },
  14689. ]
  14690. ))
  14691. characterMakers.push(() => makeCharacter(
  14692. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14693. {
  14694. front: {
  14695. height: math.unit(6, "feet"),
  14696. weight: math.unit(120, "lb"),
  14697. name: "Front",
  14698. image: {
  14699. source: "./media/characters/vance/front.svg",
  14700. extra: 1980 / 1890,
  14701. bottom: 0.09
  14702. }
  14703. },
  14704. back: {
  14705. height: math.unit(6, "feet"),
  14706. weight: math.unit(120, "lb"),
  14707. name: "Back",
  14708. image: {
  14709. source: "./media/characters/vance/back.svg",
  14710. extra: 2081 / 1994,
  14711. bottom: 0.014
  14712. }
  14713. },
  14714. hand: {
  14715. height: math.unit(0.88, "feet"),
  14716. name: "Hand",
  14717. image: {
  14718. source: "./media/characters/vance/hand.svg"
  14719. }
  14720. },
  14721. foot: {
  14722. height: math.unit(0.64, "feet"),
  14723. name: "Foot",
  14724. image: {
  14725. source: "./media/characters/vance/foot.svg"
  14726. }
  14727. },
  14728. },
  14729. [
  14730. {
  14731. name: "Small",
  14732. height: math.unit(90, "feet"),
  14733. default: true
  14734. },
  14735. {
  14736. name: "Macro",
  14737. height: math.unit(100, "meters")
  14738. },
  14739. {
  14740. name: "Megamacro",
  14741. height: math.unit(15, "miles")
  14742. },
  14743. ]
  14744. ))
  14745. characterMakers.push(() => makeCharacter(
  14746. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14747. {
  14748. front: {
  14749. height: math.unit(6, "feet"),
  14750. weight: math.unit(180, "lb"),
  14751. name: "Front",
  14752. image: {
  14753. source: "./media/characters/xochitl/front.svg",
  14754. extra: 2297 / 2261,
  14755. bottom: 0.065
  14756. }
  14757. },
  14758. back: {
  14759. height: math.unit(6, "feet"),
  14760. weight: math.unit(180, "lb"),
  14761. name: "Back",
  14762. image: {
  14763. source: "./media/characters/xochitl/back.svg",
  14764. extra: 2386 / 2354,
  14765. bottom: 0.01
  14766. }
  14767. },
  14768. foot: {
  14769. height: math.unit(6 / 5 * 1.15, "feet"),
  14770. weight: math.unit(150, "lb"),
  14771. name: "Foot",
  14772. image: {
  14773. source: "./media/characters/xochitl/foot.svg"
  14774. }
  14775. },
  14776. },
  14777. [
  14778. {
  14779. name: "Macro",
  14780. height: math.unit(80, "feet")
  14781. },
  14782. {
  14783. name: "Macro+",
  14784. height: math.unit(400, "feet"),
  14785. default: true
  14786. },
  14787. {
  14788. name: "Gigamacro",
  14789. height: math.unit(80000, "miles")
  14790. },
  14791. {
  14792. name: "Gigamacro+",
  14793. height: math.unit(400000, "miles")
  14794. },
  14795. {
  14796. name: "Teramacro",
  14797. height: math.unit(300, "AU")
  14798. },
  14799. ]
  14800. ))
  14801. characterMakers.push(() => makeCharacter(
  14802. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14803. {
  14804. front: {
  14805. height: math.unit(6, "feet"),
  14806. weight: math.unit(150, "lb"),
  14807. name: "Front",
  14808. image: {
  14809. source: "./media/characters/vincent/front.svg",
  14810. extra: 1130 / 1080,
  14811. bottom: 0.055
  14812. }
  14813. },
  14814. beak: {
  14815. height: math.unit(6 * 0.1, "feet"),
  14816. name: "Beak",
  14817. image: {
  14818. source: "./media/characters/vincent/beak.svg"
  14819. }
  14820. },
  14821. hand: {
  14822. height: math.unit(6 * 0.85, "feet"),
  14823. weight: math.unit(150, "lb"),
  14824. name: "Hand",
  14825. image: {
  14826. source: "./media/characters/vincent/hand.svg"
  14827. }
  14828. },
  14829. foot: {
  14830. height: math.unit(6 * 0.19, "feet"),
  14831. weight: math.unit(150, "lb"),
  14832. name: "Foot",
  14833. image: {
  14834. source: "./media/characters/vincent/foot.svg"
  14835. }
  14836. },
  14837. },
  14838. [
  14839. {
  14840. name: "Base",
  14841. height: math.unit(6 + 5 / 12, "feet"),
  14842. default: true
  14843. },
  14844. {
  14845. name: "Macro",
  14846. height: math.unit(300, "feet")
  14847. },
  14848. {
  14849. name: "Megamacro",
  14850. height: math.unit(2, "miles")
  14851. },
  14852. {
  14853. name: "Gigamacro",
  14854. height: math.unit(1000, "miles")
  14855. },
  14856. ]
  14857. ))
  14858. characterMakers.push(() => makeCharacter(
  14859. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14860. {
  14861. front: {
  14862. height: math.unit(2, "meters"),
  14863. weight: math.unit(500, "kg"),
  14864. name: "Front",
  14865. image: {
  14866. source: "./media/characters/coatl/front.svg",
  14867. extra: 3948 / 3500,
  14868. bottom: 0.082
  14869. }
  14870. },
  14871. },
  14872. [
  14873. {
  14874. name: "Normal",
  14875. height: math.unit(4, "meters")
  14876. },
  14877. {
  14878. name: "Macro",
  14879. height: math.unit(100, "meters"),
  14880. default: true
  14881. },
  14882. {
  14883. name: "Macro+",
  14884. height: math.unit(300, "meters")
  14885. },
  14886. {
  14887. name: "Megamacro",
  14888. height: math.unit(3, "gigameters")
  14889. },
  14890. {
  14891. name: "Megamacro+",
  14892. height: math.unit(300, "terameters")
  14893. },
  14894. {
  14895. name: "Megamacro++",
  14896. height: math.unit(3, "lightyears")
  14897. },
  14898. ]
  14899. ))
  14900. characterMakers.push(() => makeCharacter(
  14901. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14902. {
  14903. front: {
  14904. height: math.unit(6, "feet"),
  14905. weight: math.unit(50, "kg"),
  14906. name: "front",
  14907. image: {
  14908. source: "./media/characters/shiroryu/front.svg",
  14909. extra: 1990 / 1935
  14910. }
  14911. },
  14912. },
  14913. [
  14914. {
  14915. name: "Mortal Mingling",
  14916. height: math.unit(3, "meters")
  14917. },
  14918. {
  14919. name: "Kaiju-ish",
  14920. height: math.unit(250, "meters")
  14921. },
  14922. {
  14923. name: "Somewhat Godly",
  14924. height: math.unit(400, "km"),
  14925. default: true
  14926. },
  14927. {
  14928. name: "Planetary",
  14929. height: math.unit(300, "megameters")
  14930. },
  14931. {
  14932. name: "Galaxy-dwarfing",
  14933. height: math.unit(450, "kiloparsecs")
  14934. },
  14935. {
  14936. name: "Universe Eater",
  14937. height: math.unit(150, "gigaparsecs")
  14938. },
  14939. {
  14940. name: "Almost Immeasurable",
  14941. height: math.unit(1.3e266, "yottaparsecs")
  14942. },
  14943. ]
  14944. ))
  14945. characterMakers.push(() => makeCharacter(
  14946. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14947. {
  14948. front: {
  14949. height: math.unit(6, "feet"),
  14950. weight: math.unit(150, "lb"),
  14951. name: "Front",
  14952. image: {
  14953. source: "./media/characters/umeko/front.svg",
  14954. extra: 1,
  14955. bottom: 0.019
  14956. }
  14957. },
  14958. frontArmored: {
  14959. height: math.unit(6, "feet"),
  14960. weight: math.unit(150, "lb"),
  14961. name: "Front (Armored)",
  14962. image: {
  14963. source: "./media/characters/umeko/front-armored.svg",
  14964. extra: 1,
  14965. bottom: 0.021
  14966. }
  14967. },
  14968. },
  14969. [
  14970. {
  14971. name: "Macro",
  14972. height: math.unit(220, "feet"),
  14973. default: true
  14974. },
  14975. {
  14976. name: "Guardian Dragon",
  14977. height: math.unit(50, "miles")
  14978. },
  14979. {
  14980. name: "Cosmic",
  14981. height: math.unit(800000, "miles")
  14982. },
  14983. ]
  14984. ))
  14985. characterMakers.push(() => makeCharacter(
  14986. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14987. {
  14988. front: {
  14989. height: math.unit(6, "feet"),
  14990. weight: math.unit(150, "lb"),
  14991. name: "Front",
  14992. image: {
  14993. source: "./media/characters/cassidy/front.svg",
  14994. extra: 810/808,
  14995. bottom: 41/851
  14996. }
  14997. },
  14998. },
  14999. [
  15000. {
  15001. name: "Canon Height",
  15002. height: math.unit(120, "feet"),
  15003. default: true
  15004. },
  15005. {
  15006. name: "Macro+",
  15007. height: math.unit(400, "feet")
  15008. },
  15009. {
  15010. name: "Macro++",
  15011. height: math.unit(4000, "feet")
  15012. },
  15013. {
  15014. name: "Megamacro",
  15015. height: math.unit(3, "miles")
  15016. },
  15017. ]
  15018. ))
  15019. characterMakers.push(() => makeCharacter(
  15020. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15021. {
  15022. front: {
  15023. height: math.unit(6, "feet"),
  15024. weight: math.unit(150, "lb"),
  15025. name: "Front",
  15026. image: {
  15027. source: "./media/characters/isaac/front.svg",
  15028. extra: 896 / 815,
  15029. bottom: 0.11
  15030. }
  15031. },
  15032. },
  15033. [
  15034. {
  15035. name: "Human Size",
  15036. height: math.unit(8, "feet"),
  15037. default: true
  15038. },
  15039. {
  15040. name: "Macro",
  15041. height: math.unit(400, "feet")
  15042. },
  15043. {
  15044. name: "Megamacro",
  15045. height: math.unit(50, "miles")
  15046. },
  15047. {
  15048. name: "Canon Height",
  15049. height: math.unit(200, "AU")
  15050. },
  15051. ]
  15052. ))
  15053. characterMakers.push(() => makeCharacter(
  15054. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15055. {
  15056. front: {
  15057. height: math.unit(6, "feet"),
  15058. weight: math.unit(72, "kg"),
  15059. name: "Front",
  15060. image: {
  15061. source: "./media/characters/sleekit/front.svg",
  15062. extra: 4693 / 4487,
  15063. bottom: 0.012
  15064. }
  15065. },
  15066. },
  15067. [
  15068. {
  15069. name: "Minimum Height",
  15070. height: math.unit(10, "meters")
  15071. },
  15072. {
  15073. name: "Smaller",
  15074. height: math.unit(25, "meters")
  15075. },
  15076. {
  15077. name: "Larger",
  15078. height: math.unit(38, "meters"),
  15079. default: true
  15080. },
  15081. {
  15082. name: "Maximum height",
  15083. height: math.unit(100, "meters")
  15084. },
  15085. ]
  15086. ))
  15087. characterMakers.push(() => makeCharacter(
  15088. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15089. {
  15090. front: {
  15091. height: math.unit(6, "feet"),
  15092. weight: math.unit(150, "lb"),
  15093. name: "Front",
  15094. image: {
  15095. source: "./media/characters/nillia/front.svg",
  15096. extra: 2195 / 2037,
  15097. bottom: 0.005
  15098. }
  15099. },
  15100. back: {
  15101. height: math.unit(6, "feet"),
  15102. weight: math.unit(150, "lb"),
  15103. name: "Back",
  15104. image: {
  15105. source: "./media/characters/nillia/back.svg",
  15106. extra: 2195 / 2037,
  15107. bottom: 0.005
  15108. }
  15109. },
  15110. },
  15111. [
  15112. {
  15113. name: "Canon Height",
  15114. height: math.unit(489, "feet"),
  15115. default: true
  15116. }
  15117. ]
  15118. ))
  15119. characterMakers.push(() => makeCharacter(
  15120. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15121. {
  15122. front: {
  15123. height: math.unit(6, "feet"),
  15124. weight: math.unit(150, "lb"),
  15125. name: "Front",
  15126. image: {
  15127. source: "./media/characters/mesmyriza/front.svg",
  15128. extra: 2067 / 1784,
  15129. bottom: 0.035
  15130. }
  15131. },
  15132. foot: {
  15133. height: math.unit(6 / (250 / 35), "feet"),
  15134. name: "Foot",
  15135. image: {
  15136. source: "./media/characters/mesmyriza/foot.svg"
  15137. }
  15138. },
  15139. },
  15140. [
  15141. {
  15142. name: "Macro",
  15143. height: math.unit(457, "meters"),
  15144. default: true
  15145. },
  15146. {
  15147. name: "Megamacro",
  15148. height: math.unit(8, "megameters")
  15149. },
  15150. ]
  15151. ))
  15152. characterMakers.push(() => makeCharacter(
  15153. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15154. {
  15155. front: {
  15156. height: math.unit(6, "feet"),
  15157. weight: math.unit(250, "lb"),
  15158. name: "Front",
  15159. image: {
  15160. source: "./media/characters/saudade/front.svg",
  15161. extra: 1172 / 1139,
  15162. bottom: 0.035
  15163. }
  15164. },
  15165. },
  15166. [
  15167. {
  15168. name: "Micro",
  15169. height: math.unit(3, "inches")
  15170. },
  15171. {
  15172. name: "Normal",
  15173. height: math.unit(6, "feet"),
  15174. default: true
  15175. },
  15176. {
  15177. name: "Macro",
  15178. height: math.unit(50, "feet")
  15179. },
  15180. {
  15181. name: "Megamacro",
  15182. height: math.unit(2800, "feet")
  15183. },
  15184. ]
  15185. ))
  15186. characterMakers.push(() => makeCharacter(
  15187. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15188. {
  15189. front: {
  15190. height: math.unit(5 + 4 / 12, "feet"),
  15191. weight: math.unit(100, "lb"),
  15192. name: "Front",
  15193. image: {
  15194. source: "./media/characters/keireer/front.svg",
  15195. extra: 716 / 666,
  15196. bottom: 0.05
  15197. }
  15198. },
  15199. },
  15200. [
  15201. {
  15202. name: "Normal",
  15203. height: math.unit(5 + 4 / 12, "feet"),
  15204. default: true
  15205. },
  15206. ]
  15207. ))
  15208. characterMakers.push(() => makeCharacter(
  15209. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15210. {
  15211. front: {
  15212. height: math.unit(5.5, "feet"),
  15213. weight: math.unit(90, "kg"),
  15214. name: "Front",
  15215. image: {
  15216. source: "./media/characters/mirja/front.svg",
  15217. extra: 1452/1262,
  15218. bottom: 67/1519
  15219. }
  15220. },
  15221. frontDressed: {
  15222. height: math.unit(5.5, "feet"),
  15223. weight: math.unit(90, "lb"),
  15224. name: "Front (Dressed)",
  15225. image: {
  15226. source: "./media/characters/mirja/dressed.svg",
  15227. extra: 1452/1262,
  15228. bottom: 67/1519
  15229. }
  15230. },
  15231. back: {
  15232. height: math.unit(6, "feet"),
  15233. weight: math.unit(90, "lb"),
  15234. name: "Back",
  15235. image: {
  15236. source: "./media/characters/mirja/back.svg",
  15237. extra: 1892/1795,
  15238. bottom: 48/1940
  15239. }
  15240. },
  15241. maw: {
  15242. height: math.unit(1.312, "feet"),
  15243. name: "Maw",
  15244. image: {
  15245. source: "./media/characters/mirja/maw.svg"
  15246. }
  15247. },
  15248. paw: {
  15249. height: math.unit(1.15, "feet"),
  15250. name: "Paw",
  15251. image: {
  15252. source: "./media/characters/mirja/paw.svg"
  15253. }
  15254. },
  15255. },
  15256. [
  15257. {
  15258. name: "\"Incognito\"",
  15259. height: math.unit(3, "meters")
  15260. },
  15261. {
  15262. name: "Strolling Size",
  15263. height: math.unit(15, "km")
  15264. },
  15265. {
  15266. name: "Larger Strolling Size",
  15267. height: math.unit(400, "km")
  15268. },
  15269. {
  15270. name: "Preferred Size",
  15271. height: math.unit(5000, "km"),
  15272. default: true
  15273. },
  15274. {
  15275. name: "True Size",
  15276. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15277. },
  15278. ]
  15279. ))
  15280. characterMakers.push(() => makeCharacter(
  15281. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15282. {
  15283. front: {
  15284. height: math.unit(15, "feet"),
  15285. weight: math.unit(880, "kg"),
  15286. name: "Front",
  15287. image: {
  15288. source: "./media/characters/nightraver/front.svg",
  15289. extra: 2444 / 2160,
  15290. bottom: 0.027
  15291. }
  15292. },
  15293. back: {
  15294. height: math.unit(15, "feet"),
  15295. weight: math.unit(880, "kg"),
  15296. name: "Back",
  15297. image: {
  15298. source: "./media/characters/nightraver/back.svg",
  15299. extra: 2309 / 2180,
  15300. bottom: 0.005
  15301. }
  15302. },
  15303. sole: {
  15304. height: math.unit(2.878, "feet"),
  15305. name: "Sole",
  15306. image: {
  15307. source: "./media/characters/nightraver/sole.svg"
  15308. }
  15309. },
  15310. foot: {
  15311. height: math.unit(2.285, "feet"),
  15312. name: "Foot",
  15313. image: {
  15314. source: "./media/characters/nightraver/foot.svg"
  15315. }
  15316. },
  15317. maw: {
  15318. height: math.unit(2.67, "feet"),
  15319. name: "Maw",
  15320. image: {
  15321. source: "./media/characters/nightraver/maw.svg"
  15322. }
  15323. },
  15324. },
  15325. [
  15326. {
  15327. name: "Micro",
  15328. height: math.unit(1, "cm")
  15329. },
  15330. {
  15331. name: "Normal",
  15332. height: math.unit(15, "feet"),
  15333. default: true
  15334. },
  15335. {
  15336. name: "Macro",
  15337. height: math.unit(300, "feet")
  15338. },
  15339. {
  15340. name: "Megamacro",
  15341. height: math.unit(300, "miles")
  15342. },
  15343. {
  15344. name: "Gigamacro",
  15345. height: math.unit(10000, "miles")
  15346. },
  15347. ]
  15348. ))
  15349. characterMakers.push(() => makeCharacter(
  15350. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15351. {
  15352. side: {
  15353. height: math.unit(2, "inches"),
  15354. weight: math.unit(5, "grams"),
  15355. name: "Side",
  15356. image: {
  15357. source: "./media/characters/arc/side.svg"
  15358. }
  15359. },
  15360. },
  15361. [
  15362. {
  15363. name: "Micro",
  15364. height: math.unit(2, "inches"),
  15365. default: true
  15366. },
  15367. ]
  15368. ))
  15369. characterMakers.push(() => makeCharacter(
  15370. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15371. {
  15372. front: {
  15373. height: math.unit(1.1938, "meters"),
  15374. weight: math.unit(54, "kg"),
  15375. name: "Front",
  15376. image: {
  15377. source: "./media/characters/nebula-shahar/front.svg",
  15378. extra: 1642 / 1436,
  15379. bottom: 0.06
  15380. }
  15381. },
  15382. },
  15383. [
  15384. {
  15385. name: "Megamicro",
  15386. height: math.unit(0.3, "mm")
  15387. },
  15388. {
  15389. name: "Micro",
  15390. height: math.unit(3, "cm")
  15391. },
  15392. {
  15393. name: "Normal",
  15394. height: math.unit(138, "cm"),
  15395. default: true
  15396. },
  15397. {
  15398. name: "Macro",
  15399. height: math.unit(30, "m")
  15400. },
  15401. ]
  15402. ))
  15403. characterMakers.push(() => makeCharacter(
  15404. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15405. {
  15406. front: {
  15407. height: math.unit(5.24, "feet"),
  15408. weight: math.unit(150, "lb"),
  15409. name: "Front",
  15410. image: {
  15411. source: "./media/characters/shayla/front.svg",
  15412. extra: 1512 / 1414,
  15413. bottom: 0.01
  15414. }
  15415. },
  15416. back: {
  15417. height: math.unit(5.24, "feet"),
  15418. weight: math.unit(150, "lb"),
  15419. name: "Back",
  15420. image: {
  15421. source: "./media/characters/shayla/back.svg",
  15422. extra: 1512 / 1414
  15423. }
  15424. },
  15425. hand: {
  15426. height: math.unit(0.7781496062992126, "feet"),
  15427. name: "Hand",
  15428. image: {
  15429. source: "./media/characters/shayla/hand.svg"
  15430. }
  15431. },
  15432. foot: {
  15433. height: math.unit(1.4206036745406823, "feet"),
  15434. name: "Foot",
  15435. image: {
  15436. source: "./media/characters/shayla/foot.svg"
  15437. }
  15438. },
  15439. },
  15440. [
  15441. {
  15442. name: "Micro",
  15443. height: math.unit(0.32, "feet")
  15444. },
  15445. {
  15446. name: "Normal",
  15447. height: math.unit(5.24, "feet"),
  15448. default: true
  15449. },
  15450. {
  15451. name: "Macro",
  15452. height: math.unit(492.12, "feet")
  15453. },
  15454. {
  15455. name: "Megamacro",
  15456. height: math.unit(186.41, "miles")
  15457. },
  15458. ]
  15459. ))
  15460. characterMakers.push(() => makeCharacter(
  15461. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15462. {
  15463. front: {
  15464. height: math.unit(2.2, "m"),
  15465. weight: math.unit(120, "kg"),
  15466. name: "Front",
  15467. image: {
  15468. source: "./media/characters/pia-jr/front.svg",
  15469. extra: 1000 / 970,
  15470. bottom: 0.035
  15471. }
  15472. },
  15473. hand: {
  15474. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15475. name: "Hand",
  15476. image: {
  15477. source: "./media/characters/pia-jr/hand.svg"
  15478. }
  15479. },
  15480. paw: {
  15481. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15482. name: "Paw",
  15483. image: {
  15484. source: "./media/characters/pia-jr/paw.svg"
  15485. }
  15486. },
  15487. },
  15488. [
  15489. {
  15490. name: "Micro",
  15491. height: math.unit(1.2, "cm")
  15492. },
  15493. {
  15494. name: "Normal",
  15495. height: math.unit(2.2, "m"),
  15496. default: true
  15497. },
  15498. {
  15499. name: "Macro",
  15500. height: math.unit(180, "m")
  15501. },
  15502. {
  15503. name: "Megamacro",
  15504. height: math.unit(420, "km")
  15505. },
  15506. ]
  15507. ))
  15508. characterMakers.push(() => makeCharacter(
  15509. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15510. {
  15511. front: {
  15512. height: math.unit(2, "m"),
  15513. weight: math.unit(115, "kg"),
  15514. name: "Front",
  15515. image: {
  15516. source: "./media/characters/pia-sr/front.svg",
  15517. extra: 760 / 730,
  15518. bottom: 0.015
  15519. }
  15520. },
  15521. back: {
  15522. height: math.unit(2, "m"),
  15523. weight: math.unit(115, "kg"),
  15524. name: "Back",
  15525. image: {
  15526. source: "./media/characters/pia-sr/back.svg",
  15527. extra: 760 / 730,
  15528. bottom: 0.01
  15529. }
  15530. },
  15531. hand: {
  15532. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15533. name: "Hand",
  15534. image: {
  15535. source: "./media/characters/pia-sr/hand.svg"
  15536. }
  15537. },
  15538. foot: {
  15539. height: math.unit(1.83, "feet"),
  15540. name: "Foot",
  15541. image: {
  15542. source: "./media/characters/pia-sr/foot.svg"
  15543. }
  15544. },
  15545. },
  15546. [
  15547. {
  15548. name: "Micro",
  15549. height: math.unit(88, "mm")
  15550. },
  15551. {
  15552. name: "Normal",
  15553. height: math.unit(2, "m"),
  15554. default: true
  15555. },
  15556. {
  15557. name: "Macro",
  15558. height: math.unit(200, "m")
  15559. },
  15560. {
  15561. name: "Megamacro",
  15562. height: math.unit(420, "km")
  15563. },
  15564. ]
  15565. ))
  15566. characterMakers.push(() => makeCharacter(
  15567. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15568. {
  15569. front: {
  15570. height: math.unit(8 + 2 / 12, "feet"),
  15571. weight: math.unit(300, "lb"),
  15572. name: "Front",
  15573. image: {
  15574. source: "./media/characters/kibibyte/front.svg",
  15575. extra: 2221 / 2098,
  15576. bottom: 0.04
  15577. }
  15578. },
  15579. },
  15580. [
  15581. {
  15582. name: "Normal",
  15583. height: math.unit(8 + 2 / 12, "feet"),
  15584. default: true
  15585. },
  15586. {
  15587. name: "Socialable Macro",
  15588. height: math.unit(50, "feet")
  15589. },
  15590. {
  15591. name: "Macro",
  15592. height: math.unit(300, "feet")
  15593. },
  15594. {
  15595. name: "Megamacro",
  15596. height: math.unit(500, "miles")
  15597. },
  15598. ]
  15599. ))
  15600. characterMakers.push(() => makeCharacter(
  15601. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15602. {
  15603. front: {
  15604. height: math.unit(6, "feet"),
  15605. weight: math.unit(150, "lb"),
  15606. name: "Front",
  15607. image: {
  15608. source: "./media/characters/felix/front.svg",
  15609. extra: 762 / 722,
  15610. bottom: 0.02
  15611. }
  15612. },
  15613. frontClothed: {
  15614. height: math.unit(6, "feet"),
  15615. weight: math.unit(150, "lb"),
  15616. name: "Front (Clothed)",
  15617. image: {
  15618. source: "./media/characters/felix/front-clothed.svg",
  15619. extra: 762 / 722,
  15620. bottom: 0.02
  15621. }
  15622. },
  15623. },
  15624. [
  15625. {
  15626. name: "Normal",
  15627. height: math.unit(6 + 8 / 12, "feet"),
  15628. default: true
  15629. },
  15630. {
  15631. name: "Macro",
  15632. height: math.unit(2600, "feet")
  15633. },
  15634. {
  15635. name: "Megamacro",
  15636. height: math.unit(450, "miles")
  15637. },
  15638. ]
  15639. ))
  15640. characterMakers.push(() => makeCharacter(
  15641. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15642. {
  15643. front: {
  15644. height: math.unit(6 + 1 / 12, "feet"),
  15645. weight: math.unit(250, "lb"),
  15646. name: "Front",
  15647. image: {
  15648. source: "./media/characters/tobo/front.svg",
  15649. extra: 608 / 586,
  15650. bottom: 0.023
  15651. }
  15652. },
  15653. back: {
  15654. height: math.unit(6 + 1 / 12, "feet"),
  15655. weight: math.unit(250, "lb"),
  15656. name: "Back",
  15657. image: {
  15658. source: "./media/characters/tobo/back.svg",
  15659. extra: 608 / 586
  15660. }
  15661. },
  15662. },
  15663. [
  15664. {
  15665. name: "Nano",
  15666. height: math.unit(2, "nm")
  15667. },
  15668. {
  15669. name: "Megamicro",
  15670. height: math.unit(0.1, "mm")
  15671. },
  15672. {
  15673. name: "Micro",
  15674. height: math.unit(1, "inch"),
  15675. default: true
  15676. },
  15677. {
  15678. name: "Human-sized",
  15679. height: math.unit(6 + 1 / 12, "feet")
  15680. },
  15681. {
  15682. name: "Macro",
  15683. height: math.unit(250, "feet")
  15684. },
  15685. {
  15686. name: "Megamacro",
  15687. height: math.unit(75, "miles")
  15688. },
  15689. {
  15690. name: "Texas-sized",
  15691. height: math.unit(750, "miles")
  15692. },
  15693. {
  15694. name: "Teramacro",
  15695. height: math.unit(50000, "miles")
  15696. },
  15697. ]
  15698. ))
  15699. characterMakers.push(() => makeCharacter(
  15700. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15701. {
  15702. front: {
  15703. height: math.unit(6, "feet"),
  15704. weight: math.unit(269, "lb"),
  15705. name: "Front",
  15706. image: {
  15707. source: "./media/characters/danny-kapowsky/front.svg",
  15708. extra: 766 / 736,
  15709. bottom: 0.044
  15710. }
  15711. },
  15712. back: {
  15713. height: math.unit(6, "feet"),
  15714. weight: math.unit(269, "lb"),
  15715. name: "Back",
  15716. image: {
  15717. source: "./media/characters/danny-kapowsky/back.svg",
  15718. extra: 797 / 760,
  15719. bottom: 0.025
  15720. }
  15721. },
  15722. },
  15723. [
  15724. {
  15725. name: "Macro",
  15726. height: math.unit(150, "feet"),
  15727. default: true
  15728. },
  15729. {
  15730. name: "Macro+",
  15731. height: math.unit(200, "feet")
  15732. },
  15733. {
  15734. name: "Macro++",
  15735. height: math.unit(300, "feet")
  15736. },
  15737. {
  15738. name: "Macro+++",
  15739. height: math.unit(400, "feet")
  15740. },
  15741. ]
  15742. ))
  15743. characterMakers.push(() => makeCharacter(
  15744. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15745. {
  15746. side: {
  15747. height: math.unit(6, "feet"),
  15748. weight: math.unit(170, "lb"),
  15749. name: "Side",
  15750. image: {
  15751. source: "./media/characters/finn/side.svg",
  15752. extra: 1953 / 1807,
  15753. bottom: 0.057
  15754. }
  15755. },
  15756. },
  15757. [
  15758. {
  15759. name: "Megamacro",
  15760. height: math.unit(14445, "feet"),
  15761. default: true
  15762. },
  15763. ]
  15764. ))
  15765. characterMakers.push(() => makeCharacter(
  15766. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15767. {
  15768. front: {
  15769. height: math.unit(5 + 6 / 12, "feet"),
  15770. weight: math.unit(125, "lb"),
  15771. name: "Front",
  15772. image: {
  15773. source: "./media/characters/roy/front.svg",
  15774. extra: 1,
  15775. bottom: 0.11
  15776. }
  15777. },
  15778. },
  15779. [
  15780. {
  15781. name: "Micro",
  15782. height: math.unit(3, "inches"),
  15783. default: true
  15784. },
  15785. {
  15786. name: "Normal",
  15787. height: math.unit(5 + 6 / 12, "feet")
  15788. },
  15789. {
  15790. name: "Lesser Macro",
  15791. height: math.unit(60, "feet")
  15792. },
  15793. {
  15794. name: "Greater Macro",
  15795. height: math.unit(120, "feet")
  15796. },
  15797. ]
  15798. ))
  15799. characterMakers.push(() => makeCharacter(
  15800. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15801. {
  15802. front: {
  15803. height: math.unit(6, "feet"),
  15804. weight: math.unit(100, "lb"),
  15805. name: "Front",
  15806. image: {
  15807. source: "./media/characters/aevsivs/front.svg",
  15808. extra: 1,
  15809. bottom: 0.03
  15810. }
  15811. },
  15812. back: {
  15813. height: math.unit(6, "feet"),
  15814. weight: math.unit(100, "lb"),
  15815. name: "Back",
  15816. image: {
  15817. source: "./media/characters/aevsivs/back.svg"
  15818. }
  15819. },
  15820. },
  15821. [
  15822. {
  15823. name: "Micro",
  15824. height: math.unit(2, "inches"),
  15825. default: true
  15826. },
  15827. {
  15828. name: "Normal",
  15829. height: math.unit(5, "feet")
  15830. },
  15831. ]
  15832. ))
  15833. characterMakers.push(() => makeCharacter(
  15834. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15835. {
  15836. front: {
  15837. height: math.unit(5 + 7 / 12, "feet"),
  15838. weight: math.unit(159, "lb"),
  15839. name: "Front",
  15840. image: {
  15841. source: "./media/characters/hildegard/front.svg",
  15842. extra: 289 / 269,
  15843. bottom: 7.63 / 297.8
  15844. }
  15845. },
  15846. back: {
  15847. height: math.unit(5 + 7 / 12, "feet"),
  15848. weight: math.unit(159, "lb"),
  15849. name: "Back",
  15850. image: {
  15851. source: "./media/characters/hildegard/back.svg",
  15852. extra: 280 / 260,
  15853. bottom: 2.3 / 282
  15854. }
  15855. },
  15856. },
  15857. [
  15858. {
  15859. name: "Normal",
  15860. height: math.unit(5 + 7 / 12, "feet"),
  15861. default: true
  15862. },
  15863. ]
  15864. ))
  15865. characterMakers.push(() => makeCharacter(
  15866. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15867. {
  15868. bernard: {
  15869. height: math.unit(2 + 7 / 12, "feet"),
  15870. weight: math.unit(66, "lb"),
  15871. name: "Bernard",
  15872. rename: true,
  15873. image: {
  15874. source: "./media/characters/bernard-wilder/bernard.svg",
  15875. extra: 192 / 128,
  15876. bottom: 0.05
  15877. }
  15878. },
  15879. wilder: {
  15880. height: math.unit(5 + 8 / 12, "feet"),
  15881. weight: math.unit(143, "lb"),
  15882. name: "Wilder",
  15883. rename: true,
  15884. image: {
  15885. source: "./media/characters/bernard-wilder/wilder.svg",
  15886. extra: 361 / 312,
  15887. bottom: 0.02
  15888. }
  15889. },
  15890. },
  15891. [
  15892. {
  15893. name: "Normal",
  15894. height: math.unit(2 + 7 / 12, "feet"),
  15895. default: true
  15896. },
  15897. ]
  15898. ))
  15899. characterMakers.push(() => makeCharacter(
  15900. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15901. {
  15902. anthro: {
  15903. height: math.unit(6 + 1 / 12, "feet"),
  15904. weight: math.unit(155, "lb"),
  15905. name: "Anthro",
  15906. image: {
  15907. source: "./media/characters/hearth/anthro.svg",
  15908. extra: 1178/1136,
  15909. bottom: 28/1206
  15910. }
  15911. },
  15912. feral: {
  15913. height: math.unit(3.78, "feet"),
  15914. weight: math.unit(35, "kg"),
  15915. name: "Feral",
  15916. image: {
  15917. source: "./media/characters/hearth/feral.svg",
  15918. extra: 153 / 135,
  15919. bottom: 0.03
  15920. }
  15921. },
  15922. },
  15923. [
  15924. {
  15925. name: "Normal",
  15926. height: math.unit(6 + 1 / 12, "feet"),
  15927. default: true
  15928. },
  15929. ]
  15930. ))
  15931. characterMakers.push(() => makeCharacter(
  15932. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15933. {
  15934. front: {
  15935. height: math.unit(6, "feet"),
  15936. weight: math.unit(182, "lb"),
  15937. name: "Front",
  15938. image: {
  15939. source: "./media/characters/ingrid/front.svg",
  15940. extra: 294 / 268,
  15941. bottom: 0.027
  15942. }
  15943. },
  15944. },
  15945. [
  15946. {
  15947. name: "Normal",
  15948. height: math.unit(6, "feet"),
  15949. default: true
  15950. },
  15951. ]
  15952. ))
  15953. characterMakers.push(() => makeCharacter(
  15954. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15955. {
  15956. eevee: {
  15957. height: math.unit(2 + 10 / 12, "feet"),
  15958. weight: math.unit(86, "lb"),
  15959. name: "Malgam",
  15960. image: {
  15961. source: "./media/characters/malgam/eevee.svg",
  15962. extra: 952/784,
  15963. bottom: 38/990
  15964. }
  15965. },
  15966. sylveon: {
  15967. height: math.unit(4, "feet"),
  15968. weight: math.unit(101, "lb"),
  15969. name: "Future Malgam",
  15970. rename: true,
  15971. image: {
  15972. source: "./media/characters/malgam/sylveon.svg",
  15973. extra: 371 / 325,
  15974. bottom: 0.015
  15975. }
  15976. },
  15977. gigantamax: {
  15978. height: math.unit(50, "feet"),
  15979. name: "Gigantamax Malgam",
  15980. rename: true,
  15981. image: {
  15982. source: "./media/characters/malgam/gigantamax.svg"
  15983. }
  15984. },
  15985. },
  15986. [
  15987. {
  15988. name: "Normal",
  15989. height: math.unit(2 + 10 / 12, "feet"),
  15990. default: true
  15991. },
  15992. ]
  15993. ))
  15994. characterMakers.push(() => makeCharacter(
  15995. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15996. {
  15997. front: {
  15998. height: math.unit(5 + 11 / 12, "feet"),
  15999. weight: math.unit(188, "lb"),
  16000. name: "Front",
  16001. image: {
  16002. source: "./media/characters/fleur/front.svg",
  16003. extra: 309 / 283,
  16004. bottom: 0.007
  16005. }
  16006. },
  16007. },
  16008. [
  16009. {
  16010. name: "Normal",
  16011. height: math.unit(5 + 11 / 12, "feet"),
  16012. default: true
  16013. },
  16014. ]
  16015. ))
  16016. characterMakers.push(() => makeCharacter(
  16017. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16018. {
  16019. front: {
  16020. height: math.unit(5 + 4 / 12, "feet"),
  16021. weight: math.unit(122, "lb"),
  16022. name: "Front",
  16023. image: {
  16024. source: "./media/characters/jude/front.svg",
  16025. extra: 288 / 273,
  16026. bottom: 0.03
  16027. }
  16028. },
  16029. },
  16030. [
  16031. {
  16032. name: "Normal",
  16033. height: math.unit(5 + 4 / 12, "feet"),
  16034. default: true
  16035. },
  16036. ]
  16037. ))
  16038. characterMakers.push(() => makeCharacter(
  16039. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16040. {
  16041. front: {
  16042. height: math.unit(5 + 11 / 12, "feet"),
  16043. weight: math.unit(190, "lb"),
  16044. name: "Front",
  16045. image: {
  16046. source: "./media/characters/seara/front.svg",
  16047. extra: 1,
  16048. bottom: 0.05
  16049. }
  16050. },
  16051. },
  16052. [
  16053. {
  16054. name: "Normal",
  16055. height: math.unit(5 + 11 / 12, "feet"),
  16056. default: true
  16057. },
  16058. ]
  16059. ))
  16060. characterMakers.push(() => makeCharacter(
  16061. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16062. {
  16063. front: {
  16064. height: math.unit(16 + 5 / 12, "feet"),
  16065. weight: math.unit(524, "lb"),
  16066. name: "Front",
  16067. image: {
  16068. source: "./media/characters/caspian-lugia/front.svg",
  16069. extra: 1,
  16070. bottom: 0.04
  16071. }
  16072. },
  16073. },
  16074. [
  16075. {
  16076. name: "Normal",
  16077. height: math.unit(16 + 5 / 12, "feet"),
  16078. default: true
  16079. },
  16080. ]
  16081. ))
  16082. characterMakers.push(() => makeCharacter(
  16083. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16084. {
  16085. front: {
  16086. height: math.unit(5 + 7 / 12, "feet"),
  16087. weight: math.unit(170, "lb"),
  16088. name: "Front",
  16089. image: {
  16090. source: "./media/characters/mika/front.svg",
  16091. extra: 1,
  16092. bottom: 0.016
  16093. }
  16094. },
  16095. },
  16096. [
  16097. {
  16098. name: "Normal",
  16099. height: math.unit(5 + 7 / 12, "feet"),
  16100. default: true
  16101. },
  16102. ]
  16103. ))
  16104. characterMakers.push(() => makeCharacter(
  16105. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16106. {
  16107. front: {
  16108. height: math.unit(6 + 2 / 12, "feet"),
  16109. weight: math.unit(268, "lb"),
  16110. name: "Front",
  16111. image: {
  16112. source: "./media/characters/sol/front.svg",
  16113. extra: 247 / 231,
  16114. bottom: 0.05
  16115. }
  16116. },
  16117. },
  16118. [
  16119. {
  16120. name: "Normal",
  16121. height: math.unit(6 + 2 / 12, "feet"),
  16122. default: true
  16123. },
  16124. ]
  16125. ))
  16126. characterMakers.push(() => makeCharacter(
  16127. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16128. {
  16129. buizel: {
  16130. height: math.unit(2 + 5 / 12, "feet"),
  16131. weight: math.unit(87, "lb"),
  16132. name: "Front",
  16133. image: {
  16134. source: "./media/characters/umiko/buizel.svg",
  16135. extra: 172 / 157,
  16136. bottom: 0.01
  16137. },
  16138. form: "buizel",
  16139. default: true
  16140. },
  16141. floatzel: {
  16142. height: math.unit(5 + 9 / 12, "feet"),
  16143. weight: math.unit(250, "lb"),
  16144. name: "Front",
  16145. image: {
  16146. source: "./media/characters/umiko/floatzel.svg",
  16147. extra: 1076/1006,
  16148. bottom: 15/1091
  16149. },
  16150. form: "floatzel",
  16151. default: true
  16152. },
  16153. },
  16154. [
  16155. {
  16156. name: "Normal",
  16157. height: math.unit(2 + 5 / 12, "feet"),
  16158. form: "buizel",
  16159. default: true
  16160. },
  16161. {
  16162. name: "Normal",
  16163. height: math.unit(5 + 9 / 12, "feet"),
  16164. form: "floatzel",
  16165. default: true
  16166. },
  16167. ],
  16168. {
  16169. "buizel": {
  16170. name: "Buizel"
  16171. },
  16172. "floatzel": {
  16173. name: "Floatzel",
  16174. default: true
  16175. }
  16176. }
  16177. ))
  16178. characterMakers.push(() => makeCharacter(
  16179. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16180. {
  16181. front: {
  16182. height: math.unit(6 + 2 / 12, "feet"),
  16183. weight: math.unit(146, "lb"),
  16184. name: "Front",
  16185. image: {
  16186. source: "./media/characters/iliac/front.svg",
  16187. extra: 389 / 365,
  16188. bottom: 0.035
  16189. }
  16190. },
  16191. },
  16192. [
  16193. {
  16194. name: "Normal",
  16195. height: math.unit(6 + 2 / 12, "feet"),
  16196. default: true
  16197. },
  16198. ]
  16199. ))
  16200. characterMakers.push(() => makeCharacter(
  16201. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16202. {
  16203. front: {
  16204. height: math.unit(6, "feet"),
  16205. weight: math.unit(170, "lb"),
  16206. name: "Front",
  16207. image: {
  16208. source: "./media/characters/topaz/front.svg",
  16209. extra: 317 / 303,
  16210. bottom: 0.055
  16211. }
  16212. },
  16213. },
  16214. [
  16215. {
  16216. name: "Normal",
  16217. height: math.unit(6, "feet"),
  16218. default: true
  16219. },
  16220. ]
  16221. ))
  16222. characterMakers.push(() => makeCharacter(
  16223. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16224. {
  16225. front: {
  16226. height: math.unit(5 + 11 / 12, "feet"),
  16227. weight: math.unit(144, "lb"),
  16228. name: "Front",
  16229. image: {
  16230. source: "./media/characters/gabriel/front.svg",
  16231. extra: 285 / 262,
  16232. bottom: 0.004
  16233. }
  16234. },
  16235. },
  16236. [
  16237. {
  16238. name: "Normal",
  16239. height: math.unit(5 + 11 / 12, "feet"),
  16240. default: true
  16241. },
  16242. ]
  16243. ))
  16244. characterMakers.push(() => makeCharacter(
  16245. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16246. {
  16247. side: {
  16248. height: math.unit(6 + 5 / 12, "feet"),
  16249. weight: math.unit(300, "lb"),
  16250. name: "Side",
  16251. image: {
  16252. source: "./media/characters/tempest-suicune/side.svg",
  16253. extra: 195 / 154,
  16254. bottom: 0.04
  16255. }
  16256. },
  16257. },
  16258. [
  16259. {
  16260. name: "Normal",
  16261. height: math.unit(6 + 5 / 12, "feet"),
  16262. default: true
  16263. },
  16264. ]
  16265. ))
  16266. characterMakers.push(() => makeCharacter(
  16267. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16268. {
  16269. front: {
  16270. height: math.unit(7 + 2 / 12, "feet"),
  16271. weight: math.unit(322, "lb"),
  16272. name: "Front",
  16273. image: {
  16274. source: "./media/characters/vulcan/front.svg",
  16275. extra: 154 / 147,
  16276. bottom: 0.04
  16277. }
  16278. },
  16279. },
  16280. [
  16281. {
  16282. name: "Normal",
  16283. height: math.unit(7 + 2 / 12, "feet"),
  16284. default: true
  16285. },
  16286. ]
  16287. ))
  16288. characterMakers.push(() => makeCharacter(
  16289. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16290. {
  16291. front: {
  16292. height: math.unit(5 + 10 / 12, "feet"),
  16293. weight: math.unit(264, "lb"),
  16294. name: "Front",
  16295. image: {
  16296. source: "./media/characters/gault/front.svg",
  16297. extra: 161 / 140,
  16298. bottom: 0.028
  16299. }
  16300. },
  16301. },
  16302. [
  16303. {
  16304. name: "Normal",
  16305. height: math.unit(5 + 10 / 12, "feet"),
  16306. default: true
  16307. },
  16308. ]
  16309. ))
  16310. characterMakers.push(() => makeCharacter(
  16311. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16312. {
  16313. front: {
  16314. height: math.unit(6, "feet"),
  16315. weight: math.unit(150, "lb"),
  16316. name: "Front",
  16317. image: {
  16318. source: "./media/characters/shard/front.svg",
  16319. extra: 273 / 238,
  16320. bottom: 0.02
  16321. }
  16322. },
  16323. },
  16324. [
  16325. {
  16326. name: "Normal",
  16327. height: math.unit(3 + 6 / 12, "feet"),
  16328. default: true
  16329. },
  16330. ]
  16331. ))
  16332. characterMakers.push(() => makeCharacter(
  16333. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16334. {
  16335. front: {
  16336. height: math.unit(5 + 11 / 12, "feet"),
  16337. weight: math.unit(146, "lb"),
  16338. name: "Front",
  16339. image: {
  16340. source: "./media/characters/ashe/front.svg",
  16341. extra: 400 / 373,
  16342. bottom: 0.01
  16343. }
  16344. },
  16345. },
  16346. [
  16347. {
  16348. name: "Normal",
  16349. height: math.unit(5 + 11 / 12, "feet"),
  16350. default: true
  16351. },
  16352. ]
  16353. ))
  16354. characterMakers.push(() => makeCharacter(
  16355. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16356. {
  16357. front: {
  16358. height: math.unit(5 + 5 / 12, "feet"),
  16359. weight: math.unit(135, "lb"),
  16360. name: "Front",
  16361. image: {
  16362. source: "./media/characters/beatrix/front.svg",
  16363. extra: 392 / 379,
  16364. bottom: 0.01
  16365. }
  16366. },
  16367. },
  16368. [
  16369. {
  16370. name: "Normal",
  16371. height: math.unit(6, "feet"),
  16372. default: true
  16373. },
  16374. ]
  16375. ))
  16376. characterMakers.push(() => makeCharacter(
  16377. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16378. {
  16379. front: {
  16380. height: math.unit(6 + 2/12, "feet"),
  16381. weight: math.unit(135, "lb"),
  16382. name: "Front",
  16383. image: {
  16384. source: "./media/characters/ignatius/front.svg",
  16385. extra: 1380/1259,
  16386. bottom: 27/1407
  16387. }
  16388. },
  16389. },
  16390. [
  16391. {
  16392. name: "Normal",
  16393. height: math.unit(6 + 2/12, "feet"),
  16394. default: true
  16395. },
  16396. ]
  16397. ))
  16398. characterMakers.push(() => makeCharacter(
  16399. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16400. {
  16401. front: {
  16402. height: math.unit(6 + 2 / 12, "feet"),
  16403. weight: math.unit(138, "lb"),
  16404. name: "Front",
  16405. image: {
  16406. source: "./media/characters/mei-li/front.svg",
  16407. extra: 237 / 229,
  16408. bottom: 0.03
  16409. }
  16410. },
  16411. },
  16412. [
  16413. {
  16414. name: "Normal",
  16415. height: math.unit(6 + 2 / 12, "feet"),
  16416. default: true
  16417. },
  16418. ]
  16419. ))
  16420. characterMakers.push(() => makeCharacter(
  16421. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16422. {
  16423. front: {
  16424. height: math.unit(2 + 4 / 12, "feet"),
  16425. weight: math.unit(62, "lb"),
  16426. name: "Front",
  16427. image: {
  16428. source: "./media/characters/puru/front.svg",
  16429. extra: 206 / 149,
  16430. bottom: 0.06
  16431. }
  16432. },
  16433. },
  16434. [
  16435. {
  16436. name: "Normal",
  16437. height: math.unit(2 + 4 / 12, "feet"),
  16438. default: true
  16439. },
  16440. ]
  16441. ))
  16442. characterMakers.push(() => makeCharacter(
  16443. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16444. {
  16445. anthro: {
  16446. height: math.unit(5 + 8/12, "feet"),
  16447. weight: math.unit(200, "lb"),
  16448. energyNeed: math.unit(2000, "kcal"),
  16449. name: "Anthro",
  16450. image: {
  16451. source: "./media/characters/kee/anthro.svg",
  16452. extra: 3251/3184,
  16453. bottom: 250/3501
  16454. }
  16455. },
  16456. taur: {
  16457. height: math.unit(11, "feet"),
  16458. weight: math.unit(500, "lb"),
  16459. energyNeed: math.unit(5000, "kcal"),
  16460. name: "Taur",
  16461. image: {
  16462. source: "./media/characters/kee/taur.svg",
  16463. extra: 1362/1320,
  16464. bottom: 83/1445
  16465. }
  16466. },
  16467. },
  16468. [
  16469. {
  16470. name: "Normal",
  16471. height: math.unit(5 + 8/12, "feet"),
  16472. default: true
  16473. },
  16474. {
  16475. name: "Macro",
  16476. height: math.unit(35, "feet")
  16477. },
  16478. ]
  16479. ))
  16480. characterMakers.push(() => makeCharacter(
  16481. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16482. {
  16483. anthro: {
  16484. height: math.unit(7, "feet"),
  16485. weight: math.unit(190, "lb"),
  16486. name: "Anthro",
  16487. image: {
  16488. source: "./media/characters/cobalt-dracha/anthro.svg",
  16489. extra: 231 / 225,
  16490. bottom: 0.04
  16491. }
  16492. },
  16493. feral: {
  16494. height: math.unit(9 + 7 / 12, "feet"),
  16495. weight: math.unit(294, "lb"),
  16496. name: "Feral",
  16497. image: {
  16498. source: "./media/characters/cobalt-dracha/feral.svg",
  16499. extra: 692 / 633,
  16500. bottom: 0.05
  16501. }
  16502. },
  16503. },
  16504. [
  16505. {
  16506. name: "Normal",
  16507. height: math.unit(7, "feet"),
  16508. default: true
  16509. },
  16510. ]
  16511. ))
  16512. characterMakers.push(() => makeCharacter(
  16513. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16514. {
  16515. fallen: {
  16516. height: math.unit(11 + 8 / 12, "feet"),
  16517. weight: math.unit(485, "lb"),
  16518. name: "Java (Fallen)",
  16519. rename: true,
  16520. image: {
  16521. source: "./media/characters/java/fallen.svg",
  16522. extra: 226 / 208,
  16523. bottom: 0.005
  16524. }
  16525. },
  16526. godkin: {
  16527. height: math.unit(10 + 6 / 12, "feet"),
  16528. weight: math.unit(328, "lb"),
  16529. name: "Java (Godkin)",
  16530. rename: true,
  16531. image: {
  16532. source: "./media/characters/java/godkin.svg",
  16533. extra: 1104/1068,
  16534. bottom: 36/1140
  16535. }
  16536. },
  16537. },
  16538. [
  16539. {
  16540. name: "Normal",
  16541. height: math.unit(11 + 8 / 12, "feet"),
  16542. default: true
  16543. },
  16544. ]
  16545. ))
  16546. characterMakers.push(() => makeCharacter(
  16547. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16548. {
  16549. front: {
  16550. height: math.unit(5 + 9 / 12, "feet"),
  16551. weight: math.unit(170, "lb"),
  16552. name: "Front",
  16553. image: {
  16554. source: "./media/characters/purna/front.svg",
  16555. extra: 239 / 229,
  16556. bottom: 0.01
  16557. }
  16558. },
  16559. },
  16560. [
  16561. {
  16562. name: "Normal",
  16563. height: math.unit(5 + 9 / 12, "feet"),
  16564. default: true
  16565. },
  16566. ]
  16567. ))
  16568. characterMakers.push(() => makeCharacter(
  16569. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16570. {
  16571. front: {
  16572. height: math.unit(5 + 9 / 12, "feet"),
  16573. weight: math.unit(142, "lb"),
  16574. name: "Front",
  16575. image: {
  16576. source: "./media/characters/kuva/front.svg",
  16577. extra: 281 / 271,
  16578. bottom: 0.006
  16579. }
  16580. },
  16581. },
  16582. [
  16583. {
  16584. name: "Normal",
  16585. height: math.unit(5 + 9 / 12, "feet"),
  16586. default: true
  16587. },
  16588. ]
  16589. ))
  16590. characterMakers.push(() => makeCharacter(
  16591. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16592. {
  16593. anthro: {
  16594. height: math.unit(9 + 2 / 12, "feet"),
  16595. weight: math.unit(270, "lb"),
  16596. name: "Anthro",
  16597. image: {
  16598. source: "./media/characters/embra/anthro.svg",
  16599. extra: 200 / 187,
  16600. bottom: 0.02
  16601. }
  16602. },
  16603. feral: {
  16604. height: math.unit(18 + 8 / 12, "feet"),
  16605. weight: math.unit(576, "lb"),
  16606. name: "Feral",
  16607. image: {
  16608. source: "./media/characters/embra/feral.svg",
  16609. extra: 152 / 137,
  16610. bottom: 0.037
  16611. }
  16612. },
  16613. },
  16614. [
  16615. {
  16616. name: "Normal",
  16617. height: math.unit(9 + 2 / 12, "feet"),
  16618. default: true
  16619. },
  16620. ]
  16621. ))
  16622. characterMakers.push(() => makeCharacter(
  16623. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16624. {
  16625. anthro: {
  16626. height: math.unit(10 + 9 / 12, "feet"),
  16627. weight: math.unit(224, "lb"),
  16628. name: "Anthro",
  16629. image: {
  16630. source: "./media/characters/grottos/anthro.svg",
  16631. extra: 350 / 332,
  16632. bottom: 0.045
  16633. }
  16634. },
  16635. feral: {
  16636. height: math.unit(20 + 7 / 12, "feet"),
  16637. weight: math.unit(629, "lb"),
  16638. name: "Feral",
  16639. image: {
  16640. source: "./media/characters/grottos/feral.svg",
  16641. extra: 207 / 190,
  16642. bottom: 0.05
  16643. }
  16644. },
  16645. },
  16646. [
  16647. {
  16648. name: "Normal",
  16649. height: math.unit(10 + 9 / 12, "feet"),
  16650. default: true
  16651. },
  16652. ]
  16653. ))
  16654. characterMakers.push(() => makeCharacter(
  16655. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16656. {
  16657. anthro: {
  16658. height: math.unit(9 + 6 / 12, "feet"),
  16659. weight: math.unit(298, "lb"),
  16660. name: "Anthro",
  16661. image: {
  16662. source: "./media/characters/frifna/anthro.svg",
  16663. extra: 282 / 269,
  16664. bottom: 0.015
  16665. }
  16666. },
  16667. feral: {
  16668. height: math.unit(16 + 2 / 12, "feet"),
  16669. weight: math.unit(624, "lb"),
  16670. name: "Feral",
  16671. image: {
  16672. source: "./media/characters/frifna/feral.svg"
  16673. }
  16674. },
  16675. },
  16676. [
  16677. {
  16678. name: "Normal",
  16679. height: math.unit(9 + 6 / 12, "feet"),
  16680. default: true
  16681. },
  16682. ]
  16683. ))
  16684. characterMakers.push(() => makeCharacter(
  16685. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16686. {
  16687. front: {
  16688. height: math.unit(6 + 2 / 12, "feet"),
  16689. weight: math.unit(168, "lb"),
  16690. name: "Front",
  16691. image: {
  16692. source: "./media/characters/elise/front.svg",
  16693. extra: 276 / 271
  16694. }
  16695. },
  16696. },
  16697. [
  16698. {
  16699. name: "Normal",
  16700. height: math.unit(6 + 2 / 12, "feet"),
  16701. default: true
  16702. },
  16703. ]
  16704. ))
  16705. characterMakers.push(() => makeCharacter(
  16706. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16707. {
  16708. front: {
  16709. height: math.unit(5 + 10 / 12, "feet"),
  16710. weight: math.unit(210, "lb"),
  16711. name: "Front",
  16712. image: {
  16713. source: "./media/characters/glade/front.svg",
  16714. extra: 258 / 247,
  16715. bottom: 0.008
  16716. }
  16717. },
  16718. },
  16719. [
  16720. {
  16721. name: "Normal",
  16722. height: math.unit(5 + 10 / 12, "feet"),
  16723. default: true
  16724. },
  16725. ]
  16726. ))
  16727. characterMakers.push(() => makeCharacter(
  16728. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16729. {
  16730. front: {
  16731. height: math.unit(5 + 10 / 12, "feet"),
  16732. weight: math.unit(129, "lb"),
  16733. name: "Front",
  16734. image: {
  16735. source: "./media/characters/rina/front.svg",
  16736. extra: 266 / 255,
  16737. bottom: 0.005
  16738. }
  16739. },
  16740. },
  16741. [
  16742. {
  16743. name: "Normal",
  16744. height: math.unit(5 + 10 / 12, "feet"),
  16745. default: true
  16746. },
  16747. ]
  16748. ))
  16749. characterMakers.push(() => makeCharacter(
  16750. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16751. {
  16752. front: {
  16753. height: math.unit(6 + 1 / 12, "feet"),
  16754. weight: math.unit(192, "lb"),
  16755. name: "Front",
  16756. image: {
  16757. source: "./media/characters/veronica/front.svg",
  16758. extra: 319 / 309,
  16759. bottom: 0.005
  16760. }
  16761. },
  16762. },
  16763. [
  16764. {
  16765. name: "Normal",
  16766. height: math.unit(6 + 1 / 12, "feet"),
  16767. default: true
  16768. },
  16769. ]
  16770. ))
  16771. characterMakers.push(() => makeCharacter(
  16772. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16773. {
  16774. front: {
  16775. height: math.unit(9 + 3 / 12, "feet"),
  16776. weight: math.unit(1100, "lb"),
  16777. name: "Front",
  16778. image: {
  16779. source: "./media/characters/braxton/front.svg",
  16780. extra: 1057 / 984,
  16781. bottom: 0.05
  16782. }
  16783. },
  16784. },
  16785. [
  16786. {
  16787. name: "Normal",
  16788. height: math.unit(9 + 3 / 12, "feet")
  16789. },
  16790. {
  16791. name: "Giant",
  16792. height: math.unit(300, "feet"),
  16793. default: true
  16794. },
  16795. {
  16796. name: "Macro",
  16797. height: math.unit(700, "feet")
  16798. },
  16799. {
  16800. name: "Megamacro",
  16801. height: math.unit(6000, "feet")
  16802. },
  16803. ]
  16804. ))
  16805. characterMakers.push(() => makeCharacter(
  16806. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16807. {
  16808. front: {
  16809. height: math.unit(6 + 7 / 12, "feet"),
  16810. weight: math.unit(150, "lb"),
  16811. name: "Front",
  16812. image: {
  16813. source: "./media/characters/blue-feyonics/front.svg",
  16814. extra: 1403 / 1306,
  16815. bottom: 0.047
  16816. }
  16817. },
  16818. },
  16819. [
  16820. {
  16821. name: "Normal",
  16822. height: math.unit(6 + 7 / 12, "feet"),
  16823. default: true
  16824. },
  16825. ]
  16826. ))
  16827. characterMakers.push(() => makeCharacter(
  16828. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16829. {
  16830. front: {
  16831. height: math.unit(1.8, "meters"),
  16832. weight: math.unit(60, "kg"),
  16833. name: "Front",
  16834. image: {
  16835. source: "./media/characters/maxwell/front.svg",
  16836. extra: 2060 / 1873
  16837. }
  16838. },
  16839. },
  16840. [
  16841. {
  16842. name: "Micro",
  16843. height: math.unit(1, "mm")
  16844. },
  16845. {
  16846. name: "Normal",
  16847. height: math.unit(1.8, "meter"),
  16848. default: true
  16849. },
  16850. {
  16851. name: "Macro",
  16852. height: math.unit(30, "meters")
  16853. },
  16854. {
  16855. name: "Megamacro",
  16856. height: math.unit(10, "km")
  16857. },
  16858. ]
  16859. ))
  16860. characterMakers.push(() => makeCharacter(
  16861. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16862. {
  16863. front: {
  16864. height: math.unit(6, "feet"),
  16865. weight: math.unit(150, "lb"),
  16866. name: "Front",
  16867. image: {
  16868. source: "./media/characters/jack/front.svg",
  16869. extra: 1754 / 1640,
  16870. bottom: 0.01
  16871. }
  16872. },
  16873. },
  16874. [
  16875. {
  16876. name: "Normal",
  16877. height: math.unit(80000, "feet"),
  16878. default: true
  16879. },
  16880. {
  16881. name: "Max size",
  16882. height: math.unit(10, "lightyears")
  16883. },
  16884. ]
  16885. ))
  16886. characterMakers.push(() => makeCharacter(
  16887. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16888. {
  16889. urban: {
  16890. height: math.unit(5, "feet"),
  16891. weight: math.unit(240, "lb"),
  16892. name: "Urban",
  16893. image: {
  16894. source: "./media/characters/cafat/urban.svg",
  16895. extra: 1223/1126,
  16896. bottom: 205/1428
  16897. }
  16898. },
  16899. summer: {
  16900. height: math.unit(5, "feet"),
  16901. weight: math.unit(240, "lb"),
  16902. name: "Summer",
  16903. image: {
  16904. source: "./media/characters/cafat/summer.svg",
  16905. extra: 1223/1126,
  16906. bottom: 205/1428
  16907. }
  16908. },
  16909. winter: {
  16910. height: math.unit(5, "feet"),
  16911. weight: math.unit(240, "lb"),
  16912. name: "Winter",
  16913. image: {
  16914. source: "./media/characters/cafat/winter.svg",
  16915. extra: 1223/1126,
  16916. bottom: 205/1428
  16917. }
  16918. },
  16919. lingerie: {
  16920. height: math.unit(5, "feet"),
  16921. weight: math.unit(240, "lb"),
  16922. name: "Lingerie",
  16923. image: {
  16924. source: "./media/characters/cafat/lingerie.svg",
  16925. extra: 1223/1126,
  16926. bottom: 205/1428
  16927. }
  16928. },
  16929. upright: {
  16930. height: math.unit(6.3, "feet"),
  16931. weight: math.unit(240, "lb"),
  16932. name: "Upright",
  16933. image: {
  16934. source: "./media/characters/cafat/upright.svg",
  16935. bottom: 0.01
  16936. }
  16937. },
  16938. uprightFull: {
  16939. height: math.unit(6.3, "feet"),
  16940. weight: math.unit(240, "lb"),
  16941. name: "Upright (Full)",
  16942. image: {
  16943. source: "./media/characters/cafat/upright-full.svg",
  16944. bottom: 0.01
  16945. }
  16946. },
  16947. },
  16948. [
  16949. {
  16950. name: "Small",
  16951. height: math.unit(5, "feet"),
  16952. default: true
  16953. },
  16954. {
  16955. name: "Large",
  16956. height: math.unit(13, "feet")
  16957. },
  16958. ]
  16959. ))
  16960. characterMakers.push(() => makeCharacter(
  16961. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16962. {
  16963. front: {
  16964. height: math.unit(6, "feet"),
  16965. weight: math.unit(150, "lb"),
  16966. name: "Front",
  16967. image: {
  16968. source: "./media/characters/verin-raharra/front.svg",
  16969. extra: 5019 / 4835,
  16970. bottom: 0.023
  16971. }
  16972. },
  16973. },
  16974. [
  16975. {
  16976. name: "Normal",
  16977. height: math.unit(7 + 5 / 12, "feet"),
  16978. default: true
  16979. },
  16980. {
  16981. name: "Upsized",
  16982. height: math.unit(20, "feet")
  16983. },
  16984. ]
  16985. ))
  16986. characterMakers.push(() => makeCharacter(
  16987. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16988. {
  16989. front: {
  16990. height: math.unit(7, "feet"),
  16991. weight: math.unit(230, "lb"),
  16992. name: "Front",
  16993. image: {
  16994. source: "./media/characters/nakata/front.svg",
  16995. extra: 1.005,
  16996. bottom: 0.01
  16997. }
  16998. },
  16999. },
  17000. [
  17001. {
  17002. name: "Normal",
  17003. height: math.unit(7, "feet"),
  17004. default: true
  17005. },
  17006. {
  17007. name: "Big",
  17008. height: math.unit(14, "feet")
  17009. },
  17010. {
  17011. name: "Macro",
  17012. height: math.unit(400, "feet")
  17013. },
  17014. ]
  17015. ))
  17016. characterMakers.push(() => makeCharacter(
  17017. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17018. {
  17019. front: {
  17020. height: math.unit(4.91, "feet"),
  17021. weight: math.unit(100, "lb"),
  17022. name: "Front",
  17023. image: {
  17024. source: "./media/characters/lily/front.svg",
  17025. extra: 1585 / 1415,
  17026. bottom: 0.02
  17027. }
  17028. },
  17029. },
  17030. [
  17031. {
  17032. name: "Normal",
  17033. height: math.unit(4.91, "feet"),
  17034. default: true
  17035. },
  17036. ]
  17037. ))
  17038. characterMakers.push(() => makeCharacter(
  17039. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17040. {
  17041. laying: {
  17042. height: math.unit(4 + 4 / 12, "feet"),
  17043. weight: math.unit(600, "lb"),
  17044. name: "Laying",
  17045. image: {
  17046. source: "./media/characters/sheila/laying.svg",
  17047. extra: 1333 / 1265,
  17048. bottom: 0.16
  17049. }
  17050. },
  17051. },
  17052. [
  17053. {
  17054. name: "Normal",
  17055. height: math.unit(4 + 4 / 12, "feet"),
  17056. default: true
  17057. },
  17058. ]
  17059. ))
  17060. characterMakers.push(() => makeCharacter(
  17061. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17062. {
  17063. front: {
  17064. height: math.unit(6, "feet"),
  17065. weight: math.unit(190, "lb"),
  17066. name: "Front",
  17067. image: {
  17068. source: "./media/characters/sax/front.svg",
  17069. extra: 1187 / 973,
  17070. bottom: 0.042
  17071. }
  17072. },
  17073. },
  17074. [
  17075. {
  17076. name: "Micro",
  17077. height: math.unit(4, "inches"),
  17078. default: true
  17079. },
  17080. ]
  17081. ))
  17082. characterMakers.push(() => makeCharacter(
  17083. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17084. {
  17085. front: {
  17086. height: math.unit(6, "feet"),
  17087. weight: math.unit(150, "lb"),
  17088. name: "Front",
  17089. image: {
  17090. source: "./media/characters/pandora/front.svg",
  17091. extra: 2720 / 2556,
  17092. bottom: 0.015
  17093. }
  17094. },
  17095. back: {
  17096. height: math.unit(6, "feet"),
  17097. weight: math.unit(150, "lb"),
  17098. name: "Back",
  17099. image: {
  17100. source: "./media/characters/pandora/back.svg",
  17101. extra: 2720 / 2556,
  17102. bottom: 0.01
  17103. }
  17104. },
  17105. beans: {
  17106. height: math.unit(6 / 8, "feet"),
  17107. name: "Beans",
  17108. image: {
  17109. source: "./media/characters/pandora/beans.svg"
  17110. }
  17111. },
  17112. collar: {
  17113. height: math.unit(0.31, "feet"),
  17114. name: "Collar",
  17115. image: {
  17116. source: "./media/characters/pandora/collar.svg"
  17117. }
  17118. },
  17119. skirt: {
  17120. height: math.unit(6, "feet"),
  17121. weight: math.unit(150, "lb"),
  17122. name: "Skirt",
  17123. image: {
  17124. source: "./media/characters/pandora/skirt.svg",
  17125. extra: 1622 / 1525,
  17126. bottom: 0.015
  17127. }
  17128. },
  17129. hoodie: {
  17130. height: math.unit(6, "feet"),
  17131. weight: math.unit(150, "lb"),
  17132. name: "Hoodie",
  17133. image: {
  17134. source: "./media/characters/pandora/hoodie.svg",
  17135. extra: 1622 / 1525,
  17136. bottom: 0.015
  17137. }
  17138. },
  17139. casual: {
  17140. height: math.unit(6, "feet"),
  17141. weight: math.unit(150, "lb"),
  17142. name: "Casual",
  17143. image: {
  17144. source: "./media/characters/pandora/casual.svg",
  17145. extra: 1622 / 1525,
  17146. bottom: 0.015
  17147. }
  17148. },
  17149. },
  17150. [
  17151. {
  17152. name: "Normal",
  17153. height: math.unit(6, "feet")
  17154. },
  17155. {
  17156. name: "Big Steppy",
  17157. height: math.unit(1, "km"),
  17158. default: true
  17159. },
  17160. {
  17161. name: "Galactic Steppy",
  17162. height: math.unit(2, "gigameters")
  17163. },
  17164. ]
  17165. ))
  17166. characterMakers.push(() => makeCharacter(
  17167. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17168. {
  17169. side: {
  17170. height: math.unit(10, "feet"),
  17171. weight: math.unit(800, "kg"),
  17172. name: "Side",
  17173. image: {
  17174. source: "./media/characters/venio-darcony/side.svg",
  17175. extra: 1373 / 1003,
  17176. bottom: 0.037
  17177. }
  17178. },
  17179. front: {
  17180. height: math.unit(19, "feet"),
  17181. weight: math.unit(800, "kg"),
  17182. name: "Front",
  17183. image: {
  17184. source: "./media/characters/venio-darcony/front.svg"
  17185. }
  17186. },
  17187. back: {
  17188. height: math.unit(19, "feet"),
  17189. weight: math.unit(800, "kg"),
  17190. name: "Back",
  17191. image: {
  17192. source: "./media/characters/venio-darcony/back.svg"
  17193. }
  17194. },
  17195. sideNsfw: {
  17196. height: math.unit(10, "feet"),
  17197. weight: math.unit(800, "kg"),
  17198. name: "Side (NSFW)",
  17199. image: {
  17200. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17201. extra: 1373 / 1003,
  17202. bottom: 0.037
  17203. }
  17204. },
  17205. frontNsfw: {
  17206. height: math.unit(19, "feet"),
  17207. weight: math.unit(800, "kg"),
  17208. name: "Front (NSFW)",
  17209. image: {
  17210. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17211. }
  17212. },
  17213. backNsfw: {
  17214. height: math.unit(19, "feet"),
  17215. weight: math.unit(800, "kg"),
  17216. name: "Back (NSFW)",
  17217. image: {
  17218. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17219. }
  17220. },
  17221. sideArmored: {
  17222. height: math.unit(10, "feet"),
  17223. weight: math.unit(800, "kg"),
  17224. name: "Side (Armored)",
  17225. image: {
  17226. source: "./media/characters/venio-darcony/side-armored.svg",
  17227. extra: 1373 / 1003,
  17228. bottom: 0.037
  17229. }
  17230. },
  17231. frontArmored: {
  17232. height: math.unit(19, "feet"),
  17233. weight: math.unit(900, "kg"),
  17234. name: "Front (Armored)",
  17235. image: {
  17236. source: "./media/characters/venio-darcony/front-armored.svg"
  17237. }
  17238. },
  17239. backArmored: {
  17240. height: math.unit(19, "feet"),
  17241. weight: math.unit(900, "kg"),
  17242. name: "Back (Armored)",
  17243. image: {
  17244. source: "./media/characters/venio-darcony/back-armored.svg"
  17245. }
  17246. },
  17247. sword: {
  17248. height: math.unit(10, "feet"),
  17249. weight: math.unit(50, "lb"),
  17250. name: "Sword",
  17251. image: {
  17252. source: "./media/characters/venio-darcony/sword.svg"
  17253. }
  17254. },
  17255. },
  17256. [
  17257. {
  17258. name: "Normal",
  17259. height: math.unit(10, "feet")
  17260. },
  17261. {
  17262. name: "Macro",
  17263. height: math.unit(130, "feet"),
  17264. default: true
  17265. },
  17266. {
  17267. name: "Macro+",
  17268. height: math.unit(240, "feet")
  17269. },
  17270. ]
  17271. ))
  17272. characterMakers.push(() => makeCharacter(
  17273. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17274. {
  17275. front: {
  17276. height: math.unit(6, "feet"),
  17277. weight: math.unit(150, "lb"),
  17278. name: "Front",
  17279. image: {
  17280. source: "./media/characters/veski/front.svg",
  17281. extra: 1299 / 1225,
  17282. bottom: 0.04
  17283. }
  17284. },
  17285. back: {
  17286. height: math.unit(6, "feet"),
  17287. weight: math.unit(150, "lb"),
  17288. name: "Back",
  17289. image: {
  17290. source: "./media/characters/veski/back.svg",
  17291. extra: 1299 / 1225,
  17292. bottom: 0.008
  17293. }
  17294. },
  17295. maw: {
  17296. height: math.unit(1.5 * 1.21, "feet"),
  17297. name: "Maw",
  17298. image: {
  17299. source: "./media/characters/veski/maw.svg"
  17300. }
  17301. },
  17302. },
  17303. [
  17304. {
  17305. name: "Macro",
  17306. height: math.unit(2, "km"),
  17307. default: true
  17308. },
  17309. ]
  17310. ))
  17311. characterMakers.push(() => makeCharacter(
  17312. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17313. {
  17314. front: {
  17315. height: math.unit(5 + 7 / 12, "feet"),
  17316. name: "Front",
  17317. image: {
  17318. source: "./media/characters/isabelle/front.svg",
  17319. extra: 2130 / 1976,
  17320. bottom: 0.05
  17321. }
  17322. },
  17323. },
  17324. [
  17325. {
  17326. name: "Supermicro",
  17327. height: math.unit(10, "micrometers")
  17328. },
  17329. {
  17330. name: "Micro",
  17331. height: math.unit(1, "inch")
  17332. },
  17333. {
  17334. name: "Tiny",
  17335. height: math.unit(5, "inches")
  17336. },
  17337. {
  17338. name: "Standard",
  17339. height: math.unit(5 + 7 / 12, "inches")
  17340. },
  17341. {
  17342. name: "Macro",
  17343. height: math.unit(80, "meters"),
  17344. default: true
  17345. },
  17346. {
  17347. name: "Megamacro",
  17348. height: math.unit(250, "meters")
  17349. },
  17350. {
  17351. name: "Gigamacro",
  17352. height: math.unit(5, "km")
  17353. },
  17354. {
  17355. name: "Cosmic",
  17356. height: math.unit(2.5e6, "miles")
  17357. },
  17358. ]
  17359. ))
  17360. characterMakers.push(() => makeCharacter(
  17361. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17362. {
  17363. front: {
  17364. height: math.unit(6, "feet"),
  17365. weight: math.unit(150, "lb"),
  17366. name: "Front",
  17367. image: {
  17368. source: "./media/characters/hanzo/front.svg",
  17369. extra: 374 / 344,
  17370. bottom: 0.02
  17371. }
  17372. },
  17373. },
  17374. [
  17375. {
  17376. name: "Normal",
  17377. height: math.unit(8, "feet"),
  17378. default: true
  17379. },
  17380. ]
  17381. ))
  17382. characterMakers.push(() => makeCharacter(
  17383. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17384. {
  17385. front: {
  17386. height: math.unit(7, "feet"),
  17387. weight: math.unit(130, "lb"),
  17388. name: "Front",
  17389. image: {
  17390. source: "./media/characters/anna/front.svg",
  17391. extra: 169 / 145,
  17392. bottom: 0.06
  17393. }
  17394. },
  17395. full: {
  17396. height: math.unit(4.96, "feet"),
  17397. weight: math.unit(220, "lb"),
  17398. name: "Full",
  17399. image: {
  17400. source: "./media/characters/anna/full.svg",
  17401. extra: 138 / 114,
  17402. bottom: 0.15
  17403. }
  17404. },
  17405. tongue: {
  17406. height: math.unit(2.53, "feet"),
  17407. name: "Tongue",
  17408. image: {
  17409. source: "./media/characters/anna/tongue.svg"
  17410. }
  17411. },
  17412. },
  17413. [
  17414. {
  17415. name: "Normal",
  17416. height: math.unit(7, "feet"),
  17417. default: true
  17418. },
  17419. ]
  17420. ))
  17421. characterMakers.push(() => makeCharacter(
  17422. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17423. {
  17424. front: {
  17425. height: math.unit(7, "feet"),
  17426. weight: math.unit(150, "lb"),
  17427. name: "Front",
  17428. image: {
  17429. source: "./media/characters/ian-corvid/front.svg",
  17430. extra: 150 / 142,
  17431. bottom: 0.02
  17432. }
  17433. },
  17434. back: {
  17435. height: math.unit(7, "feet"),
  17436. weight: math.unit(150, "lb"),
  17437. name: "Back",
  17438. image: {
  17439. source: "./media/characters/ian-corvid/back.svg",
  17440. extra: 150 / 143,
  17441. bottom: 0.01
  17442. }
  17443. },
  17444. stomping: {
  17445. height: math.unit(7, "feet"),
  17446. weight: math.unit(150, "lb"),
  17447. name: "Stomping",
  17448. image: {
  17449. source: "./media/characters/ian-corvid/stomping.svg",
  17450. extra: 76 / 72
  17451. }
  17452. },
  17453. sitting: {
  17454. height: math.unit(7 / 1.8, "feet"),
  17455. weight: math.unit(150, "lb"),
  17456. name: "Sitting",
  17457. image: {
  17458. source: "./media/characters/ian-corvid/sitting.svg",
  17459. extra: 1400 / 1269,
  17460. bottom: 0.15
  17461. }
  17462. },
  17463. },
  17464. [
  17465. {
  17466. name: "Tiny Microw",
  17467. height: math.unit(1, "inch")
  17468. },
  17469. {
  17470. name: "Microw",
  17471. height: math.unit(6, "inches")
  17472. },
  17473. {
  17474. name: "Crow",
  17475. height: math.unit(7 + 1 / 12, "feet"),
  17476. default: true
  17477. },
  17478. {
  17479. name: "Macrow",
  17480. height: math.unit(176, "feet")
  17481. },
  17482. ]
  17483. ))
  17484. characterMakers.push(() => makeCharacter(
  17485. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17486. {
  17487. front: {
  17488. height: math.unit(5 + 7 / 12, "feet"),
  17489. weight: math.unit(147, "lb"),
  17490. name: "Front",
  17491. image: {
  17492. source: "./media/characters/natalie-kellon/front.svg",
  17493. extra: 1214 / 1141,
  17494. bottom: 0.02
  17495. }
  17496. },
  17497. },
  17498. [
  17499. {
  17500. name: "Micro",
  17501. height: math.unit(1 / 16, "inch")
  17502. },
  17503. {
  17504. name: "Tiny",
  17505. height: math.unit(4, "inches")
  17506. },
  17507. {
  17508. name: "Normal",
  17509. height: math.unit(5 + 7 / 12, "feet"),
  17510. default: true
  17511. },
  17512. {
  17513. name: "Amazon",
  17514. height: math.unit(12, "feet")
  17515. },
  17516. {
  17517. name: "Giantess",
  17518. height: math.unit(160, "meters")
  17519. },
  17520. {
  17521. name: "Titaness",
  17522. height: math.unit(800, "meters")
  17523. },
  17524. ]
  17525. ))
  17526. characterMakers.push(() => makeCharacter(
  17527. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17528. {
  17529. front: {
  17530. height: math.unit(6, "feet"),
  17531. weight: math.unit(150, "lb"),
  17532. name: "Front",
  17533. image: {
  17534. source: "./media/characters/alluria/front.svg",
  17535. extra: 806 / 738,
  17536. bottom: 0.01
  17537. }
  17538. },
  17539. side: {
  17540. height: math.unit(6, "feet"),
  17541. weight: math.unit(150, "lb"),
  17542. name: "Side",
  17543. image: {
  17544. source: "./media/characters/alluria/side.svg",
  17545. extra: 800 / 750,
  17546. }
  17547. },
  17548. back: {
  17549. height: math.unit(6, "feet"),
  17550. weight: math.unit(150, "lb"),
  17551. name: "Back",
  17552. image: {
  17553. source: "./media/characters/alluria/back.svg",
  17554. extra: 806 / 738,
  17555. }
  17556. },
  17557. frontMaid: {
  17558. height: math.unit(6, "feet"),
  17559. weight: math.unit(150, "lb"),
  17560. name: "Front (Maid)",
  17561. image: {
  17562. source: "./media/characters/alluria/front-maid.svg",
  17563. extra: 806 / 738,
  17564. bottom: 0.01
  17565. }
  17566. },
  17567. sideMaid: {
  17568. height: math.unit(6, "feet"),
  17569. weight: math.unit(150, "lb"),
  17570. name: "Side (Maid)",
  17571. image: {
  17572. source: "./media/characters/alluria/side-maid.svg",
  17573. extra: 800 / 750,
  17574. bottom: 0.005
  17575. }
  17576. },
  17577. backMaid: {
  17578. height: math.unit(6, "feet"),
  17579. weight: math.unit(150, "lb"),
  17580. name: "Back (Maid)",
  17581. image: {
  17582. source: "./media/characters/alluria/back-maid.svg",
  17583. extra: 806 / 738,
  17584. }
  17585. },
  17586. },
  17587. [
  17588. {
  17589. name: "Micro",
  17590. height: math.unit(6, "inches"),
  17591. default: true
  17592. },
  17593. ]
  17594. ))
  17595. characterMakers.push(() => makeCharacter(
  17596. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17597. {
  17598. front: {
  17599. height: math.unit(6, "feet"),
  17600. weight: math.unit(150, "lb"),
  17601. name: "Front",
  17602. image: {
  17603. source: "./media/characters/kyle/front.svg",
  17604. extra: 1069 / 962,
  17605. bottom: 77.228 / 1727.45
  17606. }
  17607. },
  17608. },
  17609. [
  17610. {
  17611. name: "Macro",
  17612. height: math.unit(150, "feet"),
  17613. default: true
  17614. },
  17615. ]
  17616. ))
  17617. characterMakers.push(() => makeCharacter(
  17618. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17619. {
  17620. front: {
  17621. height: math.unit(6, "feet"),
  17622. weight: math.unit(300, "lb"),
  17623. name: "Front",
  17624. image: {
  17625. source: "./media/characters/duncan/front.svg",
  17626. extra: 1650 / 1482,
  17627. bottom: 0.05
  17628. }
  17629. },
  17630. },
  17631. [
  17632. {
  17633. name: "Macro",
  17634. height: math.unit(100, "feet"),
  17635. default: true
  17636. },
  17637. ]
  17638. ))
  17639. characterMakers.push(() => makeCharacter(
  17640. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17641. {
  17642. front: {
  17643. height: math.unit(5 + 4 / 12, "feet"),
  17644. weight: math.unit(220, "lb"),
  17645. name: "Front",
  17646. image: {
  17647. source: "./media/characters/memory/front.svg",
  17648. extra: 3641 / 3545,
  17649. bottom: 0.03
  17650. }
  17651. },
  17652. back: {
  17653. height: math.unit(5 + 4 / 12, "feet"),
  17654. weight: math.unit(220, "lb"),
  17655. name: "Back",
  17656. image: {
  17657. source: "./media/characters/memory/back.svg",
  17658. extra: 3641 / 3545,
  17659. bottom: 0.025
  17660. }
  17661. },
  17662. frontSkirt: {
  17663. height: math.unit(5 + 4 / 12, "feet"),
  17664. weight: math.unit(220, "lb"),
  17665. name: "Front (Skirt)",
  17666. image: {
  17667. source: "./media/characters/memory/front-skirt.svg",
  17668. extra: 3641 / 3545,
  17669. bottom: 0.03
  17670. }
  17671. },
  17672. frontDress: {
  17673. height: math.unit(5 + 4 / 12, "feet"),
  17674. weight: math.unit(220, "lb"),
  17675. name: "Front (Dress)",
  17676. image: {
  17677. source: "./media/characters/memory/front-dress.svg",
  17678. extra: 3641 / 3545,
  17679. bottom: 0.03
  17680. }
  17681. },
  17682. },
  17683. [
  17684. {
  17685. name: "Micro",
  17686. height: math.unit(6, "inches"),
  17687. default: true
  17688. },
  17689. {
  17690. name: "Normal",
  17691. height: math.unit(5 + 4 / 12, "feet")
  17692. },
  17693. ]
  17694. ))
  17695. characterMakers.push(() => makeCharacter(
  17696. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17697. {
  17698. front: {
  17699. height: math.unit(4 + 11 / 12, "feet"),
  17700. weight: math.unit(100, "lb"),
  17701. name: "Front",
  17702. image: {
  17703. source: "./media/characters/luno/front.svg",
  17704. extra: 1535 / 1487,
  17705. bottom: 0.03
  17706. }
  17707. },
  17708. },
  17709. [
  17710. {
  17711. name: "Micro",
  17712. height: math.unit(3, "inches")
  17713. },
  17714. {
  17715. name: "Normal",
  17716. height: math.unit(4 + 11 / 12, "feet"),
  17717. default: true
  17718. },
  17719. {
  17720. name: "Macro",
  17721. height: math.unit(300, "feet")
  17722. },
  17723. {
  17724. name: "Megamacro",
  17725. height: math.unit(700, "miles")
  17726. },
  17727. ]
  17728. ))
  17729. characterMakers.push(() => makeCharacter(
  17730. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17731. {
  17732. front: {
  17733. height: math.unit(6 + 2 / 12, "feet"),
  17734. weight: math.unit(170, "lb"),
  17735. name: "Front",
  17736. image: {
  17737. source: "./media/characters/jamesy/front.svg",
  17738. extra: 440 / 382,
  17739. bottom: 0.005
  17740. }
  17741. },
  17742. },
  17743. [
  17744. {
  17745. name: "Micro",
  17746. height: math.unit(3, "inches")
  17747. },
  17748. {
  17749. name: "Normal",
  17750. height: math.unit(6 + 2 / 12, "feet"),
  17751. default: true
  17752. },
  17753. {
  17754. name: "Macro",
  17755. height: math.unit(300, "feet")
  17756. },
  17757. {
  17758. name: "Megamacro",
  17759. height: math.unit(700, "miles")
  17760. },
  17761. ]
  17762. ))
  17763. characterMakers.push(() => makeCharacter(
  17764. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17765. {
  17766. front: {
  17767. height: math.unit(6, "feet"),
  17768. weight: math.unit(160, "lb"),
  17769. name: "Front",
  17770. image: {
  17771. source: "./media/characters/mark/front.svg",
  17772. extra: 3300 / 3100,
  17773. bottom: 136.42 / 3440.47
  17774. }
  17775. },
  17776. },
  17777. [
  17778. {
  17779. name: "Macro",
  17780. height: math.unit(120, "meters")
  17781. },
  17782. {
  17783. name: "Bigger Macro",
  17784. height: math.unit(350, "meters")
  17785. },
  17786. {
  17787. name: "Megamacro",
  17788. height: math.unit(8, "km"),
  17789. default: true
  17790. },
  17791. {
  17792. name: "Continental",
  17793. height: math.unit(4550, "km")
  17794. },
  17795. {
  17796. name: "Planetary",
  17797. height: math.unit(65000, "km")
  17798. },
  17799. ]
  17800. ))
  17801. characterMakers.push(() => makeCharacter(
  17802. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17803. {
  17804. front: {
  17805. height: math.unit(6, "feet"),
  17806. weight: math.unit(400, "lb"),
  17807. name: "Front",
  17808. image: {
  17809. source: "./media/characters/mac/front.svg",
  17810. extra: 1048 / 987.7,
  17811. bottom: 60 / 1107.6,
  17812. }
  17813. },
  17814. },
  17815. [
  17816. {
  17817. name: "Macro",
  17818. height: math.unit(500, "feet"),
  17819. default: true
  17820. },
  17821. ]
  17822. ))
  17823. characterMakers.push(() => makeCharacter(
  17824. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17825. {
  17826. front: {
  17827. height: math.unit(5 + 2 / 12, "feet"),
  17828. weight: math.unit(190, "lb"),
  17829. name: "Front",
  17830. image: {
  17831. source: "./media/characters/bari/front.svg",
  17832. extra: 3156 / 2880,
  17833. bottom: 0.03
  17834. }
  17835. },
  17836. back: {
  17837. height: math.unit(5 + 2 / 12, "feet"),
  17838. weight: math.unit(190, "lb"),
  17839. name: "Back",
  17840. image: {
  17841. source: "./media/characters/bari/back.svg",
  17842. extra: 3260 / 2834,
  17843. bottom: 0.025
  17844. }
  17845. },
  17846. frontPlush: {
  17847. height: math.unit(5 + 2 / 12, "feet"),
  17848. weight: math.unit(190, "lb"),
  17849. name: "Front (Plush)",
  17850. image: {
  17851. source: "./media/characters/bari/front-plush.svg",
  17852. extra: 1112 / 1061,
  17853. bottom: 0.002
  17854. }
  17855. },
  17856. },
  17857. [
  17858. {
  17859. name: "Micro",
  17860. height: math.unit(3, "inches")
  17861. },
  17862. {
  17863. name: "Normal",
  17864. height: math.unit(5 + 2 / 12, "feet"),
  17865. default: true
  17866. },
  17867. {
  17868. name: "Macro",
  17869. height: math.unit(20, "feet")
  17870. },
  17871. ]
  17872. ))
  17873. characterMakers.push(() => makeCharacter(
  17874. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17875. {
  17876. front: {
  17877. height: math.unit(6 + 1 / 12, "feet"),
  17878. weight: math.unit(275, "lb"),
  17879. name: "Front",
  17880. image: {
  17881. source: "./media/characters/hunter-misha-raven/front.svg"
  17882. }
  17883. },
  17884. },
  17885. [
  17886. {
  17887. name: "Mortal",
  17888. height: math.unit(6 + 1 / 12, "feet")
  17889. },
  17890. {
  17891. name: "Divine",
  17892. height: math.unit(1.12134e34, "parsecs"),
  17893. default: true
  17894. },
  17895. ]
  17896. ))
  17897. characterMakers.push(() => makeCharacter(
  17898. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17899. {
  17900. front: {
  17901. height: math.unit(6 + 3 / 12, "feet"),
  17902. weight: math.unit(220, "lb"),
  17903. name: "Front",
  17904. image: {
  17905. source: "./media/characters/max-calore/front.svg",
  17906. extra: 1700 / 1648,
  17907. bottom: 0.01
  17908. }
  17909. },
  17910. back: {
  17911. height: math.unit(6 + 3 / 12, "feet"),
  17912. weight: math.unit(220, "lb"),
  17913. name: "Back",
  17914. image: {
  17915. source: "./media/characters/max-calore/back.svg",
  17916. extra: 1700 / 1648,
  17917. bottom: 0.01
  17918. }
  17919. },
  17920. },
  17921. [
  17922. {
  17923. name: "Normal",
  17924. height: math.unit(6 + 3 / 12, "feet"),
  17925. default: true
  17926. },
  17927. ]
  17928. ))
  17929. characterMakers.push(() => makeCharacter(
  17930. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17931. {
  17932. side: {
  17933. height: math.unit(2 + 8 / 12, "feet"),
  17934. weight: math.unit(99, "lb"),
  17935. name: "Side",
  17936. image: {
  17937. source: "./media/characters/aspen/side.svg",
  17938. extra: 152 / 138,
  17939. bottom: 0.032
  17940. }
  17941. },
  17942. },
  17943. [
  17944. {
  17945. name: "Normal",
  17946. height: math.unit(2 + 8 / 12, "feet"),
  17947. default: true
  17948. },
  17949. ]
  17950. ))
  17951. characterMakers.push(() => makeCharacter(
  17952. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17953. {
  17954. side: {
  17955. height: math.unit(3 + 2 / 12, "feet"),
  17956. weight: math.unit(224, "lb"),
  17957. name: "Side",
  17958. image: {
  17959. source: "./media/characters/sheila-feral-wolf/side.svg",
  17960. extra: 179 / 166,
  17961. bottom: 0.03
  17962. }
  17963. },
  17964. },
  17965. [
  17966. {
  17967. name: "Normal",
  17968. height: math.unit(3 + 2 / 12, "feet"),
  17969. default: true
  17970. },
  17971. ]
  17972. ))
  17973. characterMakers.push(() => makeCharacter(
  17974. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17975. {
  17976. side: {
  17977. height: math.unit(1 + 9 / 12, "feet"),
  17978. weight: math.unit(38, "lb"),
  17979. name: "Side",
  17980. image: {
  17981. source: "./media/characters/michelle/side.svg",
  17982. extra: 147 / 136.7,
  17983. bottom: 0.03
  17984. }
  17985. },
  17986. },
  17987. [
  17988. {
  17989. name: "Normal",
  17990. height: math.unit(1 + 9 / 12, "feet"),
  17991. default: true
  17992. },
  17993. ]
  17994. ))
  17995. characterMakers.push(() => makeCharacter(
  17996. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17997. {
  17998. front: {
  17999. height: math.unit(1.54, "feet"),
  18000. weight: math.unit(50, "lb"),
  18001. name: "Front",
  18002. image: {
  18003. source: "./media/characters/nino/front.svg"
  18004. }
  18005. },
  18006. },
  18007. [
  18008. {
  18009. name: "Normal",
  18010. height: math.unit(1.54, "feet"),
  18011. default: true
  18012. },
  18013. ]
  18014. ))
  18015. characterMakers.push(() => makeCharacter(
  18016. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18017. {
  18018. front: {
  18019. height: math.unit(1.49, "feet"),
  18020. weight: math.unit(45, "lb"),
  18021. name: "Front",
  18022. image: {
  18023. source: "./media/characters/viola/front.svg"
  18024. }
  18025. },
  18026. },
  18027. [
  18028. {
  18029. name: "Normal",
  18030. height: math.unit(1.49, "feet"),
  18031. default: true
  18032. },
  18033. ]
  18034. ))
  18035. characterMakers.push(() => makeCharacter(
  18036. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18037. {
  18038. front: {
  18039. height: math.unit(6 + 5 / 12, "feet"),
  18040. weight: math.unit(580, "lb"),
  18041. name: "Front",
  18042. image: {
  18043. source: "./media/characters/atlas/front.svg",
  18044. extra: 298.5 / 290,
  18045. bottom: 0.015
  18046. }
  18047. },
  18048. },
  18049. [
  18050. {
  18051. name: "Normal",
  18052. height: math.unit(6 + 5 / 12, "feet"),
  18053. default: true
  18054. },
  18055. ]
  18056. ))
  18057. characterMakers.push(() => makeCharacter(
  18058. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18059. {
  18060. side: {
  18061. height: math.unit(15.6, "inches"),
  18062. weight: math.unit(10, "lb"),
  18063. name: "Side",
  18064. image: {
  18065. source: "./media/characters/davy/side.svg",
  18066. extra: 200 / 170,
  18067. bottom: 0.01
  18068. }
  18069. },
  18070. },
  18071. [
  18072. {
  18073. name: "Normal",
  18074. height: math.unit(15.6, "inches"),
  18075. default: true
  18076. },
  18077. ]
  18078. ))
  18079. characterMakers.push(() => makeCharacter(
  18080. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18081. {
  18082. side: {
  18083. height: math.unit(4 + 8 / 12, "feet"),
  18084. weight: math.unit(166, "lb"),
  18085. name: "Side",
  18086. image: {
  18087. source: "./media/characters/fiona/side.svg",
  18088. extra: 232 / 220,
  18089. bottom: 0.03
  18090. }
  18091. },
  18092. },
  18093. [
  18094. {
  18095. name: "Normal",
  18096. height: math.unit(4 + 8 / 12, "feet"),
  18097. default: true
  18098. },
  18099. ]
  18100. ))
  18101. characterMakers.push(() => makeCharacter(
  18102. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18103. {
  18104. front: {
  18105. height: math.unit(26, "inches"),
  18106. weight: math.unit(35, "lb"),
  18107. name: "Front",
  18108. image: {
  18109. source: "./media/characters/lyla/front.svg",
  18110. bottom: 0.1
  18111. }
  18112. },
  18113. },
  18114. [
  18115. {
  18116. name: "Normal",
  18117. height: math.unit(3, "feet"),
  18118. default: true
  18119. },
  18120. ]
  18121. ))
  18122. characterMakers.push(() => makeCharacter(
  18123. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18124. {
  18125. side: {
  18126. height: math.unit(1.8, "feet"),
  18127. weight: math.unit(44, "lb"),
  18128. name: "Side",
  18129. image: {
  18130. source: "./media/characters/perseus/side.svg",
  18131. bottom: 0.21
  18132. }
  18133. },
  18134. },
  18135. [
  18136. {
  18137. name: "Normal",
  18138. height: math.unit(1.8, "feet"),
  18139. default: true
  18140. },
  18141. ]
  18142. ))
  18143. characterMakers.push(() => makeCharacter(
  18144. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18145. {
  18146. side: {
  18147. height: math.unit(4 + 2 / 12, "feet"),
  18148. weight: math.unit(20, "lb"),
  18149. name: "Side",
  18150. image: {
  18151. source: "./media/characters/remus/side.svg"
  18152. }
  18153. },
  18154. },
  18155. [
  18156. {
  18157. name: "Normal",
  18158. height: math.unit(4 + 2 / 12, "feet"),
  18159. default: true
  18160. },
  18161. ]
  18162. ))
  18163. characterMakers.push(() => makeCharacter(
  18164. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18165. {
  18166. front: {
  18167. height: math.unit(4 + 11 / 12, "feet"),
  18168. weight: math.unit(114, "lb"),
  18169. name: "Front",
  18170. image: {
  18171. source: "./media/characters/raf/front.svg",
  18172. extra: 1504/1339,
  18173. bottom: 26/1530
  18174. }
  18175. },
  18176. side: {
  18177. height: math.unit(4 + 11 / 12, "feet"),
  18178. weight: math.unit(114, "lb"),
  18179. name: "Side",
  18180. image: {
  18181. source: "./media/characters/raf/side.svg",
  18182. extra: 1466/1316,
  18183. bottom: 29/1495
  18184. }
  18185. },
  18186. paw: {
  18187. height: math.unit(1.45, "feet"),
  18188. name: "Paw",
  18189. image: {
  18190. source: "./media/characters/raf/paw.svg"
  18191. },
  18192. extraAttributes: {
  18193. "toeSize": {
  18194. name: "Toe Size",
  18195. power: 2,
  18196. type: "area",
  18197. base: math.unit(0.004, "m^2")
  18198. },
  18199. "padSize": {
  18200. name: "Pad Size",
  18201. power: 2,
  18202. type: "area",
  18203. base: math.unit(0.04, "m^2")
  18204. },
  18205. "footSize": {
  18206. name: "Foot Size",
  18207. power: 2,
  18208. type: "area",
  18209. base: math.unit(0.08, "m^2")
  18210. },
  18211. }
  18212. },
  18213. },
  18214. [
  18215. {
  18216. name: "Micro",
  18217. height: math.unit(2, "inches")
  18218. },
  18219. {
  18220. name: "Normal",
  18221. height: math.unit(4 + 11 / 12, "feet"),
  18222. default: true
  18223. },
  18224. {
  18225. name: "Macro",
  18226. height: math.unit(70, "feet")
  18227. },
  18228. ]
  18229. ))
  18230. characterMakers.push(() => makeCharacter(
  18231. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18232. {
  18233. front: {
  18234. height: math.unit(1.5, "meters"),
  18235. weight: math.unit(68, "kg"),
  18236. name: "Front",
  18237. image: {
  18238. source: "./media/characters/liam-einarr/front.svg",
  18239. extra: 2822 / 2666
  18240. }
  18241. },
  18242. back: {
  18243. height: math.unit(1.5, "meters"),
  18244. weight: math.unit(68, "kg"),
  18245. name: "Back",
  18246. image: {
  18247. source: "./media/characters/liam-einarr/back.svg",
  18248. extra: 2822 / 2666,
  18249. bottom: 0.015
  18250. }
  18251. },
  18252. },
  18253. [
  18254. {
  18255. name: "Normal",
  18256. height: math.unit(1.5, "meters"),
  18257. default: true
  18258. },
  18259. {
  18260. name: "Macro",
  18261. height: math.unit(150, "meters")
  18262. },
  18263. {
  18264. name: "Megamacro",
  18265. height: math.unit(35, "km")
  18266. },
  18267. ]
  18268. ))
  18269. characterMakers.push(() => makeCharacter(
  18270. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18271. {
  18272. front: {
  18273. height: math.unit(6, "feet"),
  18274. weight: math.unit(75, "kg"),
  18275. name: "Front",
  18276. image: {
  18277. source: "./media/characters/linda/front.svg",
  18278. extra: 930 / 874,
  18279. bottom: 0.004
  18280. }
  18281. },
  18282. },
  18283. [
  18284. {
  18285. name: "Normal",
  18286. height: math.unit(6, "feet"),
  18287. default: true
  18288. },
  18289. ]
  18290. ))
  18291. characterMakers.push(() => makeCharacter(
  18292. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18293. {
  18294. front: {
  18295. height: math.unit(6 + 8 / 12, "feet"),
  18296. weight: math.unit(220, "lb"),
  18297. name: "Front",
  18298. image: {
  18299. source: "./media/characters/caylex/front.svg",
  18300. extra: 821 / 772,
  18301. bottom: 0.07
  18302. }
  18303. },
  18304. back: {
  18305. height: math.unit(6 + 8 / 12, "feet"),
  18306. weight: math.unit(220, "lb"),
  18307. name: "Back",
  18308. image: {
  18309. source: "./media/characters/caylex/back.svg",
  18310. extra: 821 / 772,
  18311. bottom: 0.022
  18312. }
  18313. },
  18314. hand: {
  18315. height: math.unit(1.25, "feet"),
  18316. name: "Hand",
  18317. image: {
  18318. source: "./media/characters/caylex/hand.svg"
  18319. }
  18320. },
  18321. foot: {
  18322. height: math.unit(1.6, "feet"),
  18323. name: "Foot",
  18324. image: {
  18325. source: "./media/characters/caylex/foot.svg"
  18326. }
  18327. },
  18328. armored: {
  18329. height: math.unit(6 + 8 / 12, "feet"),
  18330. weight: math.unit(250, "lb"),
  18331. name: "Armored",
  18332. image: {
  18333. source: "./media/characters/caylex/armored.svg",
  18334. extra: 1420 / 1310,
  18335. bottom: 0.045
  18336. }
  18337. },
  18338. },
  18339. [
  18340. {
  18341. name: "Normal",
  18342. height: math.unit(6 + 8 / 12, "feet"),
  18343. default: true
  18344. },
  18345. {
  18346. name: "Normal+",
  18347. height: math.unit(12, "feet")
  18348. },
  18349. ]
  18350. ))
  18351. characterMakers.push(() => makeCharacter(
  18352. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18353. {
  18354. front: {
  18355. height: math.unit(7 + 6 / 12, "feet"),
  18356. weight: math.unit(288, "lb"),
  18357. name: "Front",
  18358. image: {
  18359. source: "./media/characters/alana/front.svg",
  18360. extra: 679 / 653,
  18361. bottom: 22.5 / 701
  18362. }
  18363. },
  18364. },
  18365. [
  18366. {
  18367. name: "Normal",
  18368. height: math.unit(7 + 6 / 12, "feet")
  18369. },
  18370. {
  18371. name: "Large",
  18372. height: math.unit(50, "feet")
  18373. },
  18374. {
  18375. name: "Macro",
  18376. height: math.unit(100, "feet"),
  18377. default: true
  18378. },
  18379. {
  18380. name: "Macro+",
  18381. height: math.unit(200, "feet")
  18382. },
  18383. ]
  18384. ))
  18385. characterMakers.push(() => makeCharacter(
  18386. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18387. {
  18388. front: {
  18389. height: math.unit(6 + 1 / 12, "feet"),
  18390. weight: math.unit(210, "lb"),
  18391. name: "Front",
  18392. image: {
  18393. source: "./media/characters/hasani/front.svg",
  18394. extra: 244 / 232,
  18395. bottom: 0.01
  18396. }
  18397. },
  18398. back: {
  18399. height: math.unit(6 + 1 / 12, "feet"),
  18400. weight: math.unit(210, "lb"),
  18401. name: "Back",
  18402. image: {
  18403. source: "./media/characters/hasani/back.svg",
  18404. extra: 244 / 232,
  18405. bottom: 0.01
  18406. }
  18407. },
  18408. },
  18409. [
  18410. {
  18411. name: "Normal",
  18412. height: math.unit(6 + 1 / 12, "feet")
  18413. },
  18414. {
  18415. name: "Macro",
  18416. height: math.unit(175, "feet"),
  18417. default: true
  18418. },
  18419. ]
  18420. ))
  18421. characterMakers.push(() => makeCharacter(
  18422. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18423. {
  18424. front: {
  18425. height: math.unit(1.82, "meters"),
  18426. weight: math.unit(140, "lb"),
  18427. name: "Front",
  18428. image: {
  18429. source: "./media/characters/nita/front.svg",
  18430. extra: 2473 / 2363,
  18431. bottom: 0.01
  18432. }
  18433. },
  18434. },
  18435. [
  18436. {
  18437. name: "Normal",
  18438. height: math.unit(1.82, "m")
  18439. },
  18440. {
  18441. name: "Macro",
  18442. height: math.unit(300, "m")
  18443. },
  18444. {
  18445. name: "Mistake Canon",
  18446. height: math.unit(0.5, "miles"),
  18447. default: true
  18448. },
  18449. {
  18450. name: "Big Mistake",
  18451. height: math.unit(13, "miles")
  18452. },
  18453. {
  18454. name: "Playing God",
  18455. height: math.unit(2450, "miles")
  18456. },
  18457. ]
  18458. ))
  18459. characterMakers.push(() => makeCharacter(
  18460. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18461. {
  18462. front: {
  18463. height: math.unit(4, "feet"),
  18464. weight: math.unit(120, "lb"),
  18465. name: "Front",
  18466. image: {
  18467. source: "./media/characters/shiriko/front.svg",
  18468. extra: 970/934,
  18469. bottom: 5/975
  18470. }
  18471. },
  18472. },
  18473. [
  18474. {
  18475. name: "Normal",
  18476. height: math.unit(4, "feet"),
  18477. default: true
  18478. },
  18479. ]
  18480. ))
  18481. characterMakers.push(() => makeCharacter(
  18482. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18483. {
  18484. front: {
  18485. height: math.unit(6, "feet"),
  18486. name: "front",
  18487. image: {
  18488. source: "./media/characters/deja/front.svg",
  18489. extra: 926 / 840,
  18490. bottom: 0.07
  18491. }
  18492. },
  18493. },
  18494. [
  18495. {
  18496. name: "Planck Length",
  18497. height: math.unit(1.6e-35, "meters")
  18498. },
  18499. {
  18500. name: "Normal",
  18501. height: math.unit(30.48, "meters"),
  18502. default: true
  18503. },
  18504. {
  18505. name: "Universal",
  18506. height: math.unit(8.8e26, "meters")
  18507. },
  18508. ]
  18509. ))
  18510. characterMakers.push(() => makeCharacter(
  18511. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18512. {
  18513. side: {
  18514. height: math.unit(8, "feet"),
  18515. weight: math.unit(6300, "lb"),
  18516. name: "Side",
  18517. image: {
  18518. source: "./media/characters/anima/side.svg",
  18519. bottom: 0.035
  18520. }
  18521. },
  18522. },
  18523. [
  18524. {
  18525. name: "Normal",
  18526. height: math.unit(8, "feet"),
  18527. default: true
  18528. },
  18529. ]
  18530. ))
  18531. characterMakers.push(() => makeCharacter(
  18532. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18533. {
  18534. front: {
  18535. height: math.unit(8, "feet"),
  18536. weight: math.unit(350, "lb"),
  18537. name: "Front",
  18538. image: {
  18539. source: "./media/characters/bianca/front.svg",
  18540. extra: 234 / 225,
  18541. bottom: 0.03
  18542. }
  18543. },
  18544. },
  18545. [
  18546. {
  18547. name: "Normal",
  18548. height: math.unit(8, "feet"),
  18549. default: true
  18550. },
  18551. ]
  18552. ))
  18553. characterMakers.push(() => makeCharacter(
  18554. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18555. {
  18556. front: {
  18557. height: math.unit(11 + 5/12, "feet"),
  18558. weight: math.unit(1200, "lb"),
  18559. name: "Front",
  18560. image: {
  18561. source: "./media/characters/adinia/front.svg",
  18562. extra: 1767/1641,
  18563. bottom: 44/1811
  18564. },
  18565. extraAttributes: {
  18566. "energyIntake": {
  18567. name: "Energy Intake",
  18568. power: 3,
  18569. type: "energy",
  18570. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18571. },
  18572. }
  18573. },
  18574. back: {
  18575. height: math.unit(11 + 5/12, "feet"),
  18576. weight: math.unit(1200, "lb"),
  18577. name: "Back",
  18578. image: {
  18579. source: "./media/characters/adinia/back.svg",
  18580. extra: 1834/1684,
  18581. bottom: 14/1848
  18582. },
  18583. extraAttributes: {
  18584. "energyIntake": {
  18585. name: "Energy Intake",
  18586. power: 3,
  18587. type: "energy",
  18588. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18589. },
  18590. }
  18591. },
  18592. maw: {
  18593. height: math.unit(3.79, "feet"),
  18594. name: "Maw",
  18595. image: {
  18596. source: "./media/characters/adinia/maw.svg"
  18597. }
  18598. },
  18599. rump: {
  18600. height: math.unit(4.6, "feet"),
  18601. name: "Rump",
  18602. image: {
  18603. source: "./media/characters/adinia/rump.svg"
  18604. }
  18605. },
  18606. },
  18607. [
  18608. {
  18609. name: "Normal",
  18610. height: math.unit(11 + 5 / 12, "feet"),
  18611. default: true
  18612. },
  18613. ]
  18614. ))
  18615. characterMakers.push(() => makeCharacter(
  18616. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18617. {
  18618. front: {
  18619. height: math.unit(3, "meters"),
  18620. weight: math.unit(200, "kg"),
  18621. name: "Front",
  18622. image: {
  18623. source: "./media/characters/lykasa/front.svg",
  18624. extra: 1076 / 976,
  18625. bottom: 0.06
  18626. }
  18627. },
  18628. },
  18629. [
  18630. {
  18631. name: "Normal",
  18632. height: math.unit(3, "meters")
  18633. },
  18634. {
  18635. name: "Kaiju",
  18636. height: math.unit(120, "meters"),
  18637. default: true
  18638. },
  18639. {
  18640. name: "Mega Kaiju",
  18641. height: math.unit(240, "km")
  18642. },
  18643. {
  18644. name: "Giga Kaiju",
  18645. height: math.unit(400, "megameters")
  18646. },
  18647. {
  18648. name: "Tera Kaiju",
  18649. height: math.unit(800, "gigameters")
  18650. },
  18651. {
  18652. name: "Kaiju Dragon Goddess",
  18653. height: math.unit(26, "zettaparsecs")
  18654. },
  18655. ]
  18656. ))
  18657. characterMakers.push(() => makeCharacter(
  18658. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18659. {
  18660. side: {
  18661. height: math.unit(283 / 124 * 6, "feet"),
  18662. weight: math.unit(35000, "lb"),
  18663. name: "Side",
  18664. image: {
  18665. source: "./media/characters/malfaren/side.svg",
  18666. extra: 1310/529,
  18667. bottom: 24/1334
  18668. }
  18669. },
  18670. front: {
  18671. height: math.unit(22.36, "feet"),
  18672. weight: math.unit(35000, "lb"),
  18673. name: "Front",
  18674. image: {
  18675. source: "./media/characters/malfaren/front.svg",
  18676. extra: 1237/1115,
  18677. bottom: 32/1269
  18678. }
  18679. },
  18680. maw: {
  18681. height: math.unit(6.9, "feet"),
  18682. name: "Maw",
  18683. image: {
  18684. source: "./media/characters/malfaren/maw.svg"
  18685. }
  18686. },
  18687. dick: {
  18688. height: math.unit(6.19, "feet"),
  18689. name: "Dick",
  18690. image: {
  18691. source: "./media/characters/malfaren/dick.svg"
  18692. }
  18693. },
  18694. eye: {
  18695. height: math.unit(0.69, "feet"),
  18696. name: "Eye",
  18697. image: {
  18698. source: "./media/characters/malfaren/eye.svg"
  18699. }
  18700. },
  18701. },
  18702. [
  18703. {
  18704. name: "Big",
  18705. height: math.unit(283 / 162 * 6, "feet"),
  18706. },
  18707. {
  18708. name: "Bigger",
  18709. height: math.unit(283 / 124 * 6, "feet")
  18710. },
  18711. {
  18712. name: "Massive",
  18713. height: math.unit(283 / 92 * 6, "feet"),
  18714. default: true
  18715. },
  18716. {
  18717. name: "👀💦",
  18718. height: math.unit(283 / 73 * 6, "feet"),
  18719. },
  18720. ]
  18721. ))
  18722. characterMakers.push(() => makeCharacter(
  18723. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18724. {
  18725. front: {
  18726. height: math.unit(1.7, "m"),
  18727. weight: math.unit(70, "kg"),
  18728. name: "Front",
  18729. image: {
  18730. source: "./media/characters/kernel/front.svg",
  18731. extra: 222 / 210,
  18732. bottom: 0.007
  18733. }
  18734. },
  18735. },
  18736. [
  18737. {
  18738. name: "Nano",
  18739. height: math.unit(17, "micrometers")
  18740. },
  18741. {
  18742. name: "Micro",
  18743. height: math.unit(1.7, "mm")
  18744. },
  18745. {
  18746. name: "Small",
  18747. height: math.unit(1.7, "cm")
  18748. },
  18749. {
  18750. name: "Normal",
  18751. height: math.unit(1.7, "m"),
  18752. default: true
  18753. },
  18754. ]
  18755. ))
  18756. characterMakers.push(() => makeCharacter(
  18757. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18758. {
  18759. front: {
  18760. height: math.unit(1.75, "meters"),
  18761. weight: math.unit(65, "kg"),
  18762. name: "Front",
  18763. image: {
  18764. source: "./media/characters/jayne-folest/front.svg",
  18765. extra: 2115 / 2007,
  18766. bottom: 0.02
  18767. }
  18768. },
  18769. back: {
  18770. height: math.unit(1.75, "meters"),
  18771. weight: math.unit(65, "kg"),
  18772. name: "Back",
  18773. image: {
  18774. source: "./media/characters/jayne-folest/back.svg",
  18775. extra: 2115 / 2007,
  18776. bottom: 0.005
  18777. }
  18778. },
  18779. frontClothed: {
  18780. height: math.unit(1.75, "meters"),
  18781. weight: math.unit(65, "kg"),
  18782. name: "Front (Clothed)",
  18783. image: {
  18784. source: "./media/characters/jayne-folest/front-clothed.svg",
  18785. extra: 2115 / 2007,
  18786. bottom: 0.035
  18787. }
  18788. },
  18789. hand: {
  18790. height: math.unit(1 / 1.260, "feet"),
  18791. name: "Hand",
  18792. image: {
  18793. source: "./media/characters/jayne-folest/hand.svg"
  18794. }
  18795. },
  18796. foot: {
  18797. height: math.unit(1 / 0.918, "feet"),
  18798. name: "Foot",
  18799. image: {
  18800. source: "./media/characters/jayne-folest/foot.svg"
  18801. }
  18802. },
  18803. },
  18804. [
  18805. {
  18806. name: "Micro",
  18807. height: math.unit(4, "cm")
  18808. },
  18809. {
  18810. name: "Normal",
  18811. height: math.unit(1.75, "meters")
  18812. },
  18813. {
  18814. name: "Macro",
  18815. height: math.unit(47.5, "meters"),
  18816. default: true
  18817. },
  18818. ]
  18819. ))
  18820. characterMakers.push(() => makeCharacter(
  18821. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18822. {
  18823. front: {
  18824. height: math.unit(180, "cm"),
  18825. weight: math.unit(70, "kg"),
  18826. name: "Front",
  18827. image: {
  18828. source: "./media/characters/algier/front.svg",
  18829. extra: 596 / 572,
  18830. bottom: 0.04
  18831. }
  18832. },
  18833. back: {
  18834. height: math.unit(180, "cm"),
  18835. weight: math.unit(70, "kg"),
  18836. name: "Back",
  18837. image: {
  18838. source: "./media/characters/algier/back.svg",
  18839. extra: 596 / 572,
  18840. bottom: 0.025
  18841. }
  18842. },
  18843. frontdressed: {
  18844. height: math.unit(180, "cm"),
  18845. weight: math.unit(150, "kg"),
  18846. name: "Front-dressed",
  18847. image: {
  18848. source: "./media/characters/algier/front-dressed.svg",
  18849. extra: 596 / 572,
  18850. bottom: 0.038
  18851. }
  18852. },
  18853. },
  18854. [
  18855. {
  18856. name: "Micro",
  18857. height: math.unit(5, "cm")
  18858. },
  18859. {
  18860. name: "Normal",
  18861. height: math.unit(180, "cm"),
  18862. default: true
  18863. },
  18864. {
  18865. name: "Macro",
  18866. height: math.unit(64, "m")
  18867. },
  18868. ]
  18869. ))
  18870. characterMakers.push(() => makeCharacter(
  18871. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18872. {
  18873. upright: {
  18874. height: math.unit(7, "feet"),
  18875. weight: math.unit(300, "lb"),
  18876. name: "Upright",
  18877. image: {
  18878. source: "./media/characters/pretzel/upright.svg",
  18879. extra: 534 / 522,
  18880. bottom: 0.065
  18881. }
  18882. },
  18883. sprawling: {
  18884. height: math.unit(3.75, "feet"),
  18885. weight: math.unit(300, "lb"),
  18886. name: "Sprawling",
  18887. image: {
  18888. source: "./media/characters/pretzel/sprawling.svg",
  18889. extra: 314 / 281,
  18890. bottom: 0.1
  18891. }
  18892. },
  18893. tongue: {
  18894. height: math.unit(2, "feet"),
  18895. name: "Tongue",
  18896. image: {
  18897. source: "./media/characters/pretzel/tongue.svg"
  18898. }
  18899. },
  18900. },
  18901. [
  18902. {
  18903. name: "Normal",
  18904. height: math.unit(7, "feet"),
  18905. default: true
  18906. },
  18907. {
  18908. name: "Oversized",
  18909. height: math.unit(15, "feet")
  18910. },
  18911. {
  18912. name: "Huge",
  18913. height: math.unit(30, "feet")
  18914. },
  18915. {
  18916. name: "Macro",
  18917. height: math.unit(250, "feet")
  18918. },
  18919. ]
  18920. ))
  18921. characterMakers.push(() => makeCharacter(
  18922. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18923. {
  18924. sideFront: {
  18925. height: math.unit(5 + 2 / 12, "feet"),
  18926. weight: math.unit(120, "lb"),
  18927. name: "Front Side",
  18928. image: {
  18929. source: "./media/characters/roxi/side-front.svg",
  18930. extra: 2924 / 2717,
  18931. bottom: 0.08
  18932. }
  18933. },
  18934. sideBack: {
  18935. height: math.unit(5 + 2 / 12, "feet"),
  18936. weight: math.unit(120, "lb"),
  18937. name: "Back Side",
  18938. image: {
  18939. source: "./media/characters/roxi/side-back.svg",
  18940. extra: 2904 / 2693,
  18941. bottom: 0.06
  18942. }
  18943. },
  18944. front: {
  18945. height: math.unit(5 + 2 / 12, "feet"),
  18946. weight: math.unit(120, "lb"),
  18947. name: "Front",
  18948. image: {
  18949. source: "./media/characters/roxi/front.svg",
  18950. extra: 2028 / 1907,
  18951. bottom: 0.01
  18952. }
  18953. },
  18954. frontAlt: {
  18955. height: math.unit(5 + 2 / 12, "feet"),
  18956. weight: math.unit(120, "lb"),
  18957. name: "Front (Alt)",
  18958. image: {
  18959. source: "./media/characters/roxi/front-alt.svg",
  18960. extra: 1828 / 1798,
  18961. bottom: 0.01
  18962. }
  18963. },
  18964. sitting: {
  18965. height: math.unit(2.8, "feet"),
  18966. weight: math.unit(120, "lb"),
  18967. name: "Sitting",
  18968. image: {
  18969. source: "./media/characters/roxi/sitting.svg",
  18970. extra: 2660 / 2462,
  18971. bottom: 0.1
  18972. }
  18973. },
  18974. },
  18975. [
  18976. {
  18977. name: "Normal",
  18978. height: math.unit(5 + 2 / 12, "feet"),
  18979. default: true
  18980. },
  18981. ]
  18982. ))
  18983. characterMakers.push(() => makeCharacter(
  18984. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18985. {
  18986. side: {
  18987. height: math.unit(55, "feet"),
  18988. weight: math.unit(153, "tons"),
  18989. name: "Side",
  18990. image: {
  18991. source: "./media/characters/shadow/side.svg",
  18992. extra: 701 / 628,
  18993. bottom: 0.02
  18994. }
  18995. },
  18996. flying: {
  18997. height: math.unit(145, "feet"),
  18998. weight: math.unit(153, "tons"),
  18999. name: "Flying",
  19000. image: {
  19001. source: "./media/characters/shadow/flying.svg"
  19002. }
  19003. },
  19004. },
  19005. [
  19006. {
  19007. name: "Normal",
  19008. height: math.unit(55, "feet"),
  19009. default: true
  19010. },
  19011. ]
  19012. ))
  19013. characterMakers.push(() => makeCharacter(
  19014. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19015. {
  19016. front: {
  19017. height: math.unit(6, "feet"),
  19018. weight: math.unit(200, "lb"),
  19019. name: "Front",
  19020. image: {
  19021. source: "./media/characters/marcie/front.svg",
  19022. extra: 960 / 876,
  19023. bottom: 58 / 1017.87
  19024. }
  19025. },
  19026. },
  19027. [
  19028. {
  19029. name: "Macro",
  19030. height: math.unit(1, "mile"),
  19031. default: true
  19032. },
  19033. ]
  19034. ))
  19035. characterMakers.push(() => makeCharacter(
  19036. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19037. {
  19038. front: {
  19039. height: math.unit(7, "feet"),
  19040. weight: math.unit(200, "lb"),
  19041. name: "Front",
  19042. image: {
  19043. source: "./media/characters/kachina/front.svg",
  19044. extra: 1290.68 / 1119,
  19045. bottom: 36.5 / 1327.18
  19046. }
  19047. },
  19048. },
  19049. [
  19050. {
  19051. name: "Normal",
  19052. height: math.unit(7, "feet"),
  19053. default: true
  19054. },
  19055. ]
  19056. ))
  19057. characterMakers.push(() => makeCharacter(
  19058. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19059. {
  19060. looking: {
  19061. height: math.unit(2, "meters"),
  19062. weight: math.unit(300, "kg"),
  19063. name: "Looking",
  19064. image: {
  19065. source: "./media/characters/kash/looking.svg",
  19066. extra: 474 / 344,
  19067. bottom: 0.03
  19068. }
  19069. },
  19070. side: {
  19071. height: math.unit(2, "meters"),
  19072. weight: math.unit(300, "kg"),
  19073. name: "Side",
  19074. image: {
  19075. source: "./media/characters/kash/side.svg",
  19076. extra: 302 / 251,
  19077. bottom: 0.03
  19078. }
  19079. },
  19080. front: {
  19081. height: math.unit(2, "meters"),
  19082. weight: math.unit(300, "kg"),
  19083. name: "Front",
  19084. image: {
  19085. source: "./media/characters/kash/front.svg",
  19086. extra: 495 / 360,
  19087. bottom: 0.015
  19088. }
  19089. },
  19090. },
  19091. [
  19092. {
  19093. name: "Normal",
  19094. height: math.unit(2, "meters"),
  19095. default: true
  19096. },
  19097. {
  19098. name: "Big",
  19099. height: math.unit(3, "meters")
  19100. },
  19101. {
  19102. name: "Large",
  19103. height: math.unit(5, "meters")
  19104. },
  19105. ]
  19106. ))
  19107. characterMakers.push(() => makeCharacter(
  19108. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19109. {
  19110. feeding: {
  19111. height: math.unit(6.7, "feet"),
  19112. weight: math.unit(350, "lb"),
  19113. name: "Feeding",
  19114. image: {
  19115. source: "./media/characters/lalim/feeding.svg",
  19116. }
  19117. },
  19118. },
  19119. [
  19120. {
  19121. name: "Normal",
  19122. height: math.unit(6.7, "feet"),
  19123. default: true
  19124. },
  19125. ]
  19126. ))
  19127. characterMakers.push(() => makeCharacter(
  19128. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19129. {
  19130. front: {
  19131. height: math.unit(9.5, "feet"),
  19132. weight: math.unit(600, "lb"),
  19133. name: "Front",
  19134. image: {
  19135. source: "./media/characters/de'vout/front.svg",
  19136. extra: 1443 / 1328,
  19137. bottom: 0.025
  19138. }
  19139. },
  19140. back: {
  19141. height: math.unit(9.5, "feet"),
  19142. weight: math.unit(600, "lb"),
  19143. name: "Back",
  19144. image: {
  19145. source: "./media/characters/de'vout/back.svg",
  19146. extra: 1443 / 1328
  19147. }
  19148. },
  19149. frontDressed: {
  19150. height: math.unit(9.5, "feet"),
  19151. weight: math.unit(600, "lb"),
  19152. name: "Front (Dressed",
  19153. image: {
  19154. source: "./media/characters/de'vout/front-dressed.svg",
  19155. extra: 1443 / 1328,
  19156. bottom: 0.025
  19157. }
  19158. },
  19159. backDressed: {
  19160. height: math.unit(9.5, "feet"),
  19161. weight: math.unit(600, "lb"),
  19162. name: "Back (Dressed",
  19163. image: {
  19164. source: "./media/characters/de'vout/back-dressed.svg",
  19165. extra: 1443 / 1328
  19166. }
  19167. },
  19168. },
  19169. [
  19170. {
  19171. name: "Normal",
  19172. height: math.unit(9.5, "feet"),
  19173. default: true
  19174. },
  19175. ]
  19176. ))
  19177. characterMakers.push(() => makeCharacter(
  19178. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19179. {
  19180. front: {
  19181. height: math.unit(8, "feet"),
  19182. weight: math.unit(225, "lb"),
  19183. name: "Front",
  19184. image: {
  19185. source: "./media/characters/talana/front.svg",
  19186. extra: 1410 / 1300,
  19187. bottom: 0.015
  19188. }
  19189. },
  19190. frontDressed: {
  19191. height: math.unit(8, "feet"),
  19192. weight: math.unit(225, "lb"),
  19193. name: "Front (Dressed",
  19194. image: {
  19195. source: "./media/characters/talana/front-dressed.svg",
  19196. extra: 1410 / 1300,
  19197. bottom: 0.015
  19198. }
  19199. },
  19200. },
  19201. [
  19202. {
  19203. name: "Normal",
  19204. height: math.unit(8, "feet"),
  19205. default: true
  19206. },
  19207. ]
  19208. ))
  19209. characterMakers.push(() => makeCharacter(
  19210. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19211. {
  19212. side: {
  19213. height: math.unit(7.2, "feet"),
  19214. weight: math.unit(150, "lb"),
  19215. name: "Side",
  19216. image: {
  19217. source: "./media/characters/xeauvok/side.svg",
  19218. extra: 1975 / 1523,
  19219. bottom: 0.07
  19220. }
  19221. },
  19222. },
  19223. [
  19224. {
  19225. name: "Normal",
  19226. height: math.unit(7.2, "feet"),
  19227. default: true
  19228. },
  19229. ]
  19230. ))
  19231. characterMakers.push(() => makeCharacter(
  19232. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19233. {
  19234. side: {
  19235. height: math.unit(4, "meters"),
  19236. weight: math.unit(2200, "kg"),
  19237. name: "Side",
  19238. image: {
  19239. source: "./media/characters/zara/side.svg",
  19240. extra: 765/744,
  19241. bottom: 156/921
  19242. }
  19243. },
  19244. },
  19245. [
  19246. {
  19247. name: "Normal",
  19248. height: math.unit(4, "meters"),
  19249. default: true
  19250. },
  19251. ]
  19252. ))
  19253. characterMakers.push(() => makeCharacter(
  19254. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19255. {
  19256. side: {
  19257. height: math.unit(6, "feet"),
  19258. weight: math.unit(150, "lb"),
  19259. name: "Side",
  19260. image: {
  19261. source: "./media/characters/richard-dragon/side.svg",
  19262. extra: 845 / 340,
  19263. bottom: 0.017
  19264. }
  19265. },
  19266. maw: {
  19267. height: math.unit(2.97, "feet"),
  19268. name: "Maw",
  19269. image: {
  19270. source: "./media/characters/richard-dragon/maw.svg"
  19271. }
  19272. },
  19273. },
  19274. [
  19275. ]
  19276. ))
  19277. characterMakers.push(() => makeCharacter(
  19278. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19279. {
  19280. front: {
  19281. height: math.unit(4, "feet"),
  19282. weight: math.unit(100, "lb"),
  19283. name: "Front",
  19284. image: {
  19285. source: "./media/characters/richard-smeargle/front.svg",
  19286. extra: 2952 / 2820,
  19287. bottom: 0.028
  19288. }
  19289. },
  19290. },
  19291. [
  19292. {
  19293. name: "Normal",
  19294. height: math.unit(4, "feet"),
  19295. default: true
  19296. },
  19297. {
  19298. name: "Dynamax",
  19299. height: math.unit(20, "meters")
  19300. },
  19301. ]
  19302. ))
  19303. characterMakers.push(() => makeCharacter(
  19304. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19305. {
  19306. front: {
  19307. height: math.unit(6, "feet"),
  19308. weight: math.unit(110, "lb"),
  19309. name: "Front",
  19310. image: {
  19311. source: "./media/characters/klay/front.svg",
  19312. extra: 962 / 883,
  19313. bottom: 0.04
  19314. }
  19315. },
  19316. back: {
  19317. height: math.unit(6, "feet"),
  19318. weight: math.unit(110, "lb"),
  19319. name: "Back",
  19320. image: {
  19321. source: "./media/characters/klay/back.svg",
  19322. extra: 962 / 883
  19323. }
  19324. },
  19325. beans: {
  19326. height: math.unit(1.15, "feet"),
  19327. name: "Beans",
  19328. image: {
  19329. source: "./media/characters/klay/beans.svg"
  19330. }
  19331. },
  19332. },
  19333. [
  19334. {
  19335. name: "Micro",
  19336. height: math.unit(6, "inches")
  19337. },
  19338. {
  19339. name: "Mini",
  19340. height: math.unit(3, "feet")
  19341. },
  19342. {
  19343. name: "Normal",
  19344. height: math.unit(6, "feet"),
  19345. default: true
  19346. },
  19347. {
  19348. name: "Big",
  19349. height: math.unit(25, "feet")
  19350. },
  19351. {
  19352. name: "Macro",
  19353. height: math.unit(100, "feet")
  19354. },
  19355. {
  19356. name: "Megamacro",
  19357. height: math.unit(400, "feet")
  19358. },
  19359. ]
  19360. ))
  19361. characterMakers.push(() => makeCharacter(
  19362. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19363. {
  19364. front: {
  19365. height: math.unit(6, "feet"),
  19366. weight: math.unit(160, "lb"),
  19367. name: "Front",
  19368. image: {
  19369. source: "./media/characters/marcus/front.svg",
  19370. extra: 734 / 676,
  19371. bottom: 0.03
  19372. }
  19373. },
  19374. },
  19375. [
  19376. {
  19377. name: "Little",
  19378. height: math.unit(6, "feet")
  19379. },
  19380. {
  19381. name: "Normal",
  19382. height: math.unit(110, "feet"),
  19383. default: true
  19384. },
  19385. {
  19386. name: "Macro",
  19387. height: math.unit(250, "feet")
  19388. },
  19389. {
  19390. name: "Megamacro",
  19391. height: math.unit(1000, "feet")
  19392. },
  19393. ]
  19394. ))
  19395. characterMakers.push(() => makeCharacter(
  19396. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19397. {
  19398. front: {
  19399. height: math.unit(7, "feet"),
  19400. weight: math.unit(275, "lb"),
  19401. name: "Front",
  19402. image: {
  19403. source: "./media/characters/claude-delroute/front.svg",
  19404. extra: 902/827,
  19405. bottom: 26/928
  19406. }
  19407. },
  19408. side: {
  19409. height: math.unit(7, "feet"),
  19410. weight: math.unit(275, "lb"),
  19411. name: "Side",
  19412. image: {
  19413. source: "./media/characters/claude-delroute/side.svg",
  19414. extra: 908/853,
  19415. bottom: 16/924
  19416. }
  19417. },
  19418. back: {
  19419. height: math.unit(7, "feet"),
  19420. weight: math.unit(275, "lb"),
  19421. name: "Back",
  19422. image: {
  19423. source: "./media/characters/claude-delroute/back.svg",
  19424. extra: 911/829,
  19425. bottom: 18/929
  19426. }
  19427. },
  19428. maw: {
  19429. height: math.unit(0.6407, "meters"),
  19430. name: "Maw",
  19431. image: {
  19432. source: "./media/characters/claude-delroute/maw.svg"
  19433. }
  19434. },
  19435. },
  19436. [
  19437. {
  19438. name: "Normal",
  19439. height: math.unit(7, "feet"),
  19440. default: true
  19441. },
  19442. {
  19443. name: "Lorge",
  19444. height: math.unit(20, "feet")
  19445. },
  19446. ]
  19447. ))
  19448. characterMakers.push(() => makeCharacter(
  19449. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19450. {
  19451. front: {
  19452. height: math.unit(8 + 4 / 12, "feet"),
  19453. weight: math.unit(600, "lb"),
  19454. name: "Front",
  19455. image: {
  19456. source: "./media/characters/dragonien/front.svg",
  19457. extra: 100 / 94,
  19458. bottom: 3.3 / 103.3445
  19459. }
  19460. },
  19461. back: {
  19462. height: math.unit(8 + 4 / 12, "feet"),
  19463. weight: math.unit(600, "lb"),
  19464. name: "Back",
  19465. image: {
  19466. source: "./media/characters/dragonien/back.svg",
  19467. extra: 776 / 746,
  19468. bottom: 6.4 / 782.0616
  19469. }
  19470. },
  19471. foot: {
  19472. height: math.unit(1.54, "feet"),
  19473. name: "Foot",
  19474. image: {
  19475. source: "./media/characters/dragonien/foot.svg",
  19476. }
  19477. },
  19478. },
  19479. [
  19480. {
  19481. name: "Normal",
  19482. height: math.unit(8 + 4 / 12, "feet"),
  19483. default: true
  19484. },
  19485. {
  19486. name: "Macro",
  19487. height: math.unit(200, "feet")
  19488. },
  19489. {
  19490. name: "Megamacro",
  19491. height: math.unit(1, "mile")
  19492. },
  19493. {
  19494. name: "Gigamacro",
  19495. height: math.unit(1000, "miles")
  19496. },
  19497. ]
  19498. ))
  19499. characterMakers.push(() => makeCharacter(
  19500. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19501. {
  19502. front: {
  19503. height: math.unit(5 + 2 / 12, "feet"),
  19504. weight: math.unit(110, "lb"),
  19505. name: "Front",
  19506. image: {
  19507. source: "./media/characters/desta/front.svg",
  19508. extra: 767 / 726,
  19509. bottom: 11.7 / 779
  19510. }
  19511. },
  19512. back: {
  19513. height: math.unit(5 + 2 / 12, "feet"),
  19514. weight: math.unit(110, "lb"),
  19515. name: "Back",
  19516. image: {
  19517. source: "./media/characters/desta/back.svg",
  19518. extra: 777 / 728,
  19519. bottom: 6 / 784
  19520. }
  19521. },
  19522. frontAlt: {
  19523. height: math.unit(5 + 2 / 12, "feet"),
  19524. weight: math.unit(110, "lb"),
  19525. name: "Front",
  19526. image: {
  19527. source: "./media/characters/desta/front-alt.svg",
  19528. extra: 1482 / 1417
  19529. }
  19530. },
  19531. side: {
  19532. height: math.unit(5 + 2 / 12, "feet"),
  19533. weight: math.unit(110, "lb"),
  19534. name: "Side",
  19535. image: {
  19536. source: "./media/characters/desta/side.svg",
  19537. extra: 2579 / 2491,
  19538. bottom: 0.053
  19539. }
  19540. },
  19541. },
  19542. [
  19543. {
  19544. name: "Micro",
  19545. height: math.unit(6, "inches")
  19546. },
  19547. {
  19548. name: "Normal",
  19549. height: math.unit(5 + 2 / 12, "feet"),
  19550. default: true
  19551. },
  19552. {
  19553. name: "Macro",
  19554. height: math.unit(62, "feet")
  19555. },
  19556. {
  19557. name: "Megamacro",
  19558. height: math.unit(1800, "feet")
  19559. },
  19560. ]
  19561. ))
  19562. characterMakers.push(() => makeCharacter(
  19563. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19564. {
  19565. front: {
  19566. height: math.unit(10, "feet"),
  19567. weight: math.unit(700, "lb"),
  19568. name: "Front",
  19569. image: {
  19570. source: "./media/characters/storm-alystar/front.svg",
  19571. extra: 2112 / 1898,
  19572. bottom: 0.034
  19573. }
  19574. },
  19575. },
  19576. [
  19577. {
  19578. name: "Micro",
  19579. height: math.unit(3.5, "inches")
  19580. },
  19581. {
  19582. name: "Normal",
  19583. height: math.unit(10, "feet"),
  19584. default: true
  19585. },
  19586. {
  19587. name: "Macro",
  19588. height: math.unit(400, "feet")
  19589. },
  19590. {
  19591. name: "Deific",
  19592. height: math.unit(60, "miles")
  19593. },
  19594. ]
  19595. ))
  19596. characterMakers.push(() => makeCharacter(
  19597. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19598. {
  19599. front: {
  19600. height: math.unit(2.35, "meters"),
  19601. weight: math.unit(119, "kg"),
  19602. name: "Front",
  19603. image: {
  19604. source: "./media/characters/ilia/front.svg",
  19605. extra: 1285 / 1255,
  19606. bottom: 0.06
  19607. }
  19608. },
  19609. },
  19610. [
  19611. {
  19612. name: "Normal",
  19613. height: math.unit(2.35, "meters")
  19614. },
  19615. {
  19616. name: "Macro",
  19617. height: math.unit(140, "meters"),
  19618. default: true
  19619. },
  19620. {
  19621. name: "Megamacro",
  19622. height: math.unit(100, "miles")
  19623. },
  19624. ]
  19625. ))
  19626. characterMakers.push(() => makeCharacter(
  19627. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19628. {
  19629. front: {
  19630. height: math.unit(6 + 5 / 12, "feet"),
  19631. weight: math.unit(190, "lb"),
  19632. name: "Front",
  19633. image: {
  19634. source: "./media/characters/kingdead/front.svg",
  19635. extra: 1228 / 1177
  19636. }
  19637. },
  19638. },
  19639. [
  19640. {
  19641. name: "Micro",
  19642. height: math.unit(7, "inches")
  19643. },
  19644. {
  19645. name: "Normal",
  19646. height: math.unit(6 + 5 / 12, "feet")
  19647. },
  19648. {
  19649. name: "Macro",
  19650. height: math.unit(150, "feet"),
  19651. default: true
  19652. },
  19653. {
  19654. name: "Megamacro",
  19655. height: math.unit(200, "miles")
  19656. },
  19657. ]
  19658. ))
  19659. characterMakers.push(() => makeCharacter(
  19660. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19661. {
  19662. front: {
  19663. height: math.unit(8, "feet"),
  19664. weight: math.unit(600, "lb"),
  19665. name: "Front",
  19666. image: {
  19667. source: "./media/characters/kyrehx/front.svg",
  19668. extra: 1195 / 1095,
  19669. bottom: 0.034
  19670. }
  19671. },
  19672. },
  19673. [
  19674. {
  19675. name: "Micro",
  19676. height: math.unit(2, "inches")
  19677. },
  19678. {
  19679. name: "Normal",
  19680. height: math.unit(8, "feet"),
  19681. default: true
  19682. },
  19683. {
  19684. name: "Macro",
  19685. height: math.unit(255, "feet")
  19686. },
  19687. ]
  19688. ))
  19689. characterMakers.push(() => makeCharacter(
  19690. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19691. {
  19692. front: {
  19693. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19694. weight: math.unit(184, "lb"),
  19695. name: "Front",
  19696. image: {
  19697. source: "./media/characters/xang/front.svg",
  19698. extra: 845 / 755
  19699. }
  19700. },
  19701. },
  19702. [
  19703. {
  19704. name: "Normal",
  19705. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19706. default: true
  19707. },
  19708. {
  19709. name: "Macro",
  19710. height: math.unit(0.935 * 146, "feet")
  19711. },
  19712. {
  19713. name: "Megamacro",
  19714. height: math.unit(0.935 * 3, "miles")
  19715. },
  19716. ]
  19717. ))
  19718. characterMakers.push(() => makeCharacter(
  19719. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19720. {
  19721. frontDressed: {
  19722. height: math.unit(5 + 7 / 12, "feet"),
  19723. weight: math.unit(140, "lb"),
  19724. name: "Front (Dressed)",
  19725. image: {
  19726. source: "./media/characters/doc-weardno/front-dressed.svg",
  19727. extra: 263 / 234
  19728. }
  19729. },
  19730. backDressed: {
  19731. height: math.unit(5 + 7 / 12, "feet"),
  19732. weight: math.unit(140, "lb"),
  19733. name: "Back (Dressed)",
  19734. image: {
  19735. source: "./media/characters/doc-weardno/back-dressed.svg",
  19736. extra: 266 / 238
  19737. }
  19738. },
  19739. front: {
  19740. height: math.unit(5 + 7 / 12, "feet"),
  19741. weight: math.unit(140, "lb"),
  19742. name: "Front",
  19743. image: {
  19744. source: "./media/characters/doc-weardno/front.svg",
  19745. extra: 254 / 233
  19746. }
  19747. },
  19748. },
  19749. [
  19750. {
  19751. name: "Micro",
  19752. height: math.unit(3, "inches")
  19753. },
  19754. {
  19755. name: "Normal",
  19756. height: math.unit(5 + 7 / 12, "feet"),
  19757. default: true
  19758. },
  19759. {
  19760. name: "Macro",
  19761. height: math.unit(25, "feet")
  19762. },
  19763. {
  19764. name: "Megamacro",
  19765. height: math.unit(2, "miles")
  19766. },
  19767. ]
  19768. ))
  19769. characterMakers.push(() => makeCharacter(
  19770. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19771. {
  19772. front: {
  19773. height: math.unit(6 + 2 / 12, "feet"),
  19774. weight: math.unit(153, "lb"),
  19775. name: "Front",
  19776. image: {
  19777. source: "./media/characters/seth-whilst/front.svg",
  19778. bottom: 0.07
  19779. }
  19780. },
  19781. },
  19782. [
  19783. {
  19784. name: "Micro",
  19785. height: math.unit(5, "inches")
  19786. },
  19787. {
  19788. name: "Normal",
  19789. height: math.unit(6 + 2 / 12, "feet"),
  19790. default: true
  19791. },
  19792. ]
  19793. ))
  19794. characterMakers.push(() => makeCharacter(
  19795. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19796. {
  19797. front: {
  19798. height: math.unit(3, "inches"),
  19799. weight: math.unit(8, "grams"),
  19800. name: "Front",
  19801. image: {
  19802. source: "./media/characters/pocket-jabari/front.svg",
  19803. extra: 1024 / 974,
  19804. bottom: 0.039
  19805. }
  19806. },
  19807. },
  19808. [
  19809. {
  19810. name: "Minimicro",
  19811. height: math.unit(8, "mm")
  19812. },
  19813. {
  19814. name: "Micro",
  19815. height: math.unit(3, "inches"),
  19816. default: true
  19817. },
  19818. {
  19819. name: "Normal",
  19820. height: math.unit(3, "feet")
  19821. },
  19822. ]
  19823. ))
  19824. characterMakers.push(() => makeCharacter(
  19825. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19826. {
  19827. frontDressed: {
  19828. height: math.unit(15, "feet"),
  19829. weight: math.unit(3280, "lb"),
  19830. name: "Front (Dressed)",
  19831. image: {
  19832. source: "./media/characters/sapphy/front-dressed.svg",
  19833. extra: 1951/1654,
  19834. bottom: 194/2145
  19835. },
  19836. form: "anthro",
  19837. default: true
  19838. },
  19839. backDressed: {
  19840. height: math.unit(15, "feet"),
  19841. weight: math.unit(3280, "lb"),
  19842. name: "Back (Dressed)",
  19843. image: {
  19844. source: "./media/characters/sapphy/back-dressed.svg",
  19845. extra: 2058/1918,
  19846. bottom: 125/2183
  19847. },
  19848. form: "anthro"
  19849. },
  19850. frontNude: {
  19851. height: math.unit(15, "feet"),
  19852. weight: math.unit(3280, "lb"),
  19853. name: "Front (Nude)",
  19854. image: {
  19855. source: "./media/characters/sapphy/front-nude.svg",
  19856. extra: 1951/1654,
  19857. bottom: 194/2145
  19858. },
  19859. form: "anthro"
  19860. },
  19861. backNude: {
  19862. height: math.unit(15, "feet"),
  19863. weight: math.unit(3280, "lb"),
  19864. name: "Back (Nude)",
  19865. image: {
  19866. source: "./media/characters/sapphy/back-nude.svg",
  19867. extra: 2058/1918,
  19868. bottom: 125/2183
  19869. },
  19870. form: "anthro"
  19871. },
  19872. full: {
  19873. height: math.unit(15, "feet"),
  19874. weight: math.unit(3280, "lb"),
  19875. name: "Full",
  19876. image: {
  19877. source: "./media/characters/sapphy/full.svg",
  19878. extra: 1396/1317,
  19879. bottom: 44/1440
  19880. },
  19881. form: "anthro"
  19882. },
  19883. dick: {
  19884. height: math.unit(3.8, "feet"),
  19885. name: "Dick",
  19886. image: {
  19887. source: "./media/characters/sapphy/dick.svg"
  19888. },
  19889. form: "anthro"
  19890. },
  19891. feral: {
  19892. height: math.unit(35, "feet"),
  19893. weight: math.unit(160, "tons"),
  19894. name: "Feral",
  19895. image: {
  19896. source: "./media/characters/sapphy/feral.svg",
  19897. extra: 1050/573,
  19898. bottom: 60/1110
  19899. },
  19900. form: "feral",
  19901. default: true
  19902. },
  19903. },
  19904. [
  19905. {
  19906. name: "Normal",
  19907. height: math.unit(15, "feet"),
  19908. form: "anthro"
  19909. },
  19910. {
  19911. name: "Casual Macro",
  19912. height: math.unit(120, "feet"),
  19913. form: "anthro"
  19914. },
  19915. {
  19916. name: "Macro",
  19917. height: math.unit(2150, "feet"),
  19918. default: true,
  19919. form: "anthro"
  19920. },
  19921. {
  19922. name: "Megamacro",
  19923. height: math.unit(8, "miles"),
  19924. form: "anthro"
  19925. },
  19926. {
  19927. name: "Galaxy Mom",
  19928. height: math.unit(6, "megalightyears"),
  19929. form: "anthro"
  19930. },
  19931. {
  19932. name: "Normal",
  19933. height: math.unit(35, "feet"),
  19934. form: "feral",
  19935. default: true
  19936. },
  19937. {
  19938. name: "Macro",
  19939. height: math.unit(300, "feet"),
  19940. form: "feral"
  19941. },
  19942. {
  19943. name: "Galaxy Mom",
  19944. height: math.unit(10, "megalightyears"),
  19945. form: "feral"
  19946. },
  19947. ],
  19948. {
  19949. "anthro": {
  19950. name: "Anthro",
  19951. default: true
  19952. },
  19953. "feral": {
  19954. name: "Feral"
  19955. }
  19956. }
  19957. ))
  19958. characterMakers.push(() => makeCharacter(
  19959. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19960. {
  19961. front: {
  19962. height: math.unit(6, "feet"),
  19963. weight: math.unit(170, "lb"),
  19964. name: "Front",
  19965. image: {
  19966. source: "./media/characters/kiro/front.svg",
  19967. extra: 1064 / 1012,
  19968. bottom: 0.052
  19969. }
  19970. },
  19971. },
  19972. [
  19973. {
  19974. name: "Micro",
  19975. height: math.unit(6, "inches")
  19976. },
  19977. {
  19978. name: "Normal",
  19979. height: math.unit(6, "feet"),
  19980. default: true
  19981. },
  19982. {
  19983. name: "Macro",
  19984. height: math.unit(72, "feet")
  19985. },
  19986. ]
  19987. ))
  19988. characterMakers.push(() => makeCharacter(
  19989. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19990. {
  19991. front: {
  19992. height: math.unit(5 + 9 / 12, "feet"),
  19993. weight: math.unit(175, "lb"),
  19994. name: "Front",
  19995. image: {
  19996. source: "./media/characters/irishfox/front.svg",
  19997. extra: 1912 / 1680,
  19998. bottom: 0.02
  19999. }
  20000. },
  20001. },
  20002. [
  20003. {
  20004. name: "Nano",
  20005. height: math.unit(1, "mm")
  20006. },
  20007. {
  20008. name: "Micro",
  20009. height: math.unit(2, "inches")
  20010. },
  20011. {
  20012. name: "Normal",
  20013. height: math.unit(5 + 9 / 12, "feet"),
  20014. default: true
  20015. },
  20016. {
  20017. name: "Macro",
  20018. height: math.unit(45, "feet")
  20019. },
  20020. ]
  20021. ))
  20022. characterMakers.push(() => makeCharacter(
  20023. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20024. {
  20025. front: {
  20026. height: math.unit(6 + 1 / 12, "feet"),
  20027. weight: math.unit(75, "lb"),
  20028. name: "Front",
  20029. image: {
  20030. source: "./media/characters/aronai-sieyes/front.svg",
  20031. extra: 1532/1450,
  20032. bottom: 42/1574
  20033. }
  20034. },
  20035. side: {
  20036. height: math.unit(6 + 1 / 12, "feet"),
  20037. weight: math.unit(75, "lb"),
  20038. name: "Side",
  20039. image: {
  20040. source: "./media/characters/aronai-sieyes/side.svg",
  20041. extra: 1422/1365,
  20042. bottom: 148/1570
  20043. }
  20044. },
  20045. back: {
  20046. height: math.unit(6 + 1 / 12, "feet"),
  20047. weight: math.unit(75, "lb"),
  20048. name: "Back",
  20049. image: {
  20050. source: "./media/characters/aronai-sieyes/back.svg",
  20051. extra: 1526/1464,
  20052. bottom: 51/1577
  20053. }
  20054. },
  20055. dressed: {
  20056. height: math.unit(6 + 1 / 12, "feet"),
  20057. weight: math.unit(75, "lb"),
  20058. name: "Dressed",
  20059. image: {
  20060. source: "./media/characters/aronai-sieyes/dressed.svg",
  20061. extra: 1559/1483,
  20062. bottom: 39/1598
  20063. }
  20064. },
  20065. slit: {
  20066. height: math.unit(1.3, "feet"),
  20067. name: "Slit",
  20068. image: {
  20069. source: "./media/characters/aronai-sieyes/slit.svg"
  20070. }
  20071. },
  20072. slitSpread: {
  20073. height: math.unit(0.9, "feet"),
  20074. name: "Slit (Spread)",
  20075. image: {
  20076. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20077. }
  20078. },
  20079. rump: {
  20080. height: math.unit(1.3, "feet"),
  20081. name: "Rump",
  20082. image: {
  20083. source: "./media/characters/aronai-sieyes/rump.svg"
  20084. }
  20085. },
  20086. maw: {
  20087. height: math.unit(1.25, "feet"),
  20088. name: "Maw",
  20089. image: {
  20090. source: "./media/characters/aronai-sieyes/maw.svg"
  20091. }
  20092. },
  20093. feral: {
  20094. height: math.unit(18, "feet"),
  20095. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20096. name: "Feral",
  20097. image: {
  20098. source: "./media/characters/aronai-sieyes/feral.svg",
  20099. extra: 1530 / 1240,
  20100. bottom: 0.035
  20101. }
  20102. },
  20103. },
  20104. [
  20105. {
  20106. name: "Micro",
  20107. height: math.unit(2, "inches")
  20108. },
  20109. {
  20110. name: "Normal",
  20111. height: math.unit(6 + 1 / 12, "feet"),
  20112. default: true
  20113. }
  20114. ]
  20115. ))
  20116. characterMakers.push(() => makeCharacter(
  20117. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20118. {
  20119. front: {
  20120. height: math.unit(12, "feet"),
  20121. weight: math.unit(410, "kg"),
  20122. name: "Front",
  20123. image: {
  20124. source: "./media/characters/xuna/front.svg",
  20125. extra: 2184 / 1980
  20126. }
  20127. },
  20128. side: {
  20129. height: math.unit(12, "feet"),
  20130. weight: math.unit(410, "kg"),
  20131. name: "Side",
  20132. image: {
  20133. source: "./media/characters/xuna/side.svg",
  20134. extra: 2184 / 1980
  20135. }
  20136. },
  20137. back: {
  20138. height: math.unit(12, "feet"),
  20139. weight: math.unit(410, "kg"),
  20140. name: "Back",
  20141. image: {
  20142. source: "./media/characters/xuna/back.svg",
  20143. extra: 2184 / 1980
  20144. }
  20145. },
  20146. },
  20147. [
  20148. {
  20149. name: "Nano glow",
  20150. height: math.unit(10, "nm")
  20151. },
  20152. {
  20153. name: "Micro floof",
  20154. height: math.unit(0.3, "m")
  20155. },
  20156. {
  20157. name: "Huggable softy boi",
  20158. height: math.unit(3.6576, "m"),
  20159. default: true
  20160. },
  20161. {
  20162. name: "Admirable floof",
  20163. height: math.unit(80, "meters")
  20164. },
  20165. {
  20166. name: "Gentle macro",
  20167. height: math.unit(300, "meters")
  20168. },
  20169. {
  20170. name: "Very careful floof",
  20171. height: math.unit(3200, "meters")
  20172. },
  20173. {
  20174. name: "The mega floof",
  20175. height: math.unit(36000, "meters")
  20176. },
  20177. {
  20178. name: "Giga-fur-Wicker",
  20179. height: math.unit(4800000, "meters")
  20180. },
  20181. {
  20182. name: "Licky world",
  20183. height: math.unit(20000000, "meters")
  20184. },
  20185. {
  20186. name: "Floofy cyan sun",
  20187. height: math.unit(1500000000, "meters")
  20188. },
  20189. {
  20190. name: "Milky Wicker",
  20191. height: math.unit(1000000000000000000000, "meters")
  20192. },
  20193. {
  20194. name: "The observing Wicker",
  20195. height: math.unit(999999999999999999999999999, "meters")
  20196. },
  20197. ]
  20198. ))
  20199. characterMakers.push(() => makeCharacter(
  20200. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20201. {
  20202. front: {
  20203. height: math.unit(5 + 9 / 12, "feet"),
  20204. weight: math.unit(150, "lb"),
  20205. name: "Front",
  20206. image: {
  20207. source: "./media/characters/arokha-sieyes/front.svg",
  20208. extra: 1425 / 1284,
  20209. bottom: 0.05
  20210. }
  20211. },
  20212. },
  20213. [
  20214. {
  20215. name: "Normal",
  20216. height: math.unit(5 + 9 / 12, "feet")
  20217. },
  20218. {
  20219. name: "Macro",
  20220. height: math.unit(30, "meters"),
  20221. default: true
  20222. },
  20223. ]
  20224. ))
  20225. characterMakers.push(() => makeCharacter(
  20226. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20227. {
  20228. front: {
  20229. height: math.unit(6, "feet"),
  20230. weight: math.unit(180, "lb"),
  20231. name: "Front",
  20232. image: {
  20233. source: "./media/characters/arokh-sieyes/front.svg",
  20234. extra: 1830 / 1769,
  20235. bottom: 0.01
  20236. }
  20237. },
  20238. },
  20239. [
  20240. {
  20241. name: "Normal",
  20242. height: math.unit(6, "feet")
  20243. },
  20244. {
  20245. name: "Macro",
  20246. height: math.unit(30, "meters"),
  20247. default: true
  20248. },
  20249. ]
  20250. ))
  20251. characterMakers.push(() => makeCharacter(
  20252. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20253. {
  20254. side: {
  20255. height: math.unit(13 + 1 / 12, "feet"),
  20256. weight: math.unit(8.5, "tonnes"),
  20257. name: "Side",
  20258. image: {
  20259. source: "./media/characters/goldeneye/side.svg",
  20260. extra: 1182 / 778,
  20261. bottom: 0.067
  20262. }
  20263. },
  20264. paw: {
  20265. height: math.unit(3.4, "feet"),
  20266. name: "Paw",
  20267. image: {
  20268. source: "./media/characters/goldeneye/paw.svg"
  20269. }
  20270. },
  20271. },
  20272. [
  20273. {
  20274. name: "Normal",
  20275. height: math.unit(13 + 1 / 12, "feet"),
  20276. default: true
  20277. },
  20278. ]
  20279. ))
  20280. characterMakers.push(() => makeCharacter(
  20281. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20282. {
  20283. front: {
  20284. height: math.unit(6 + 1 / 12, "feet"),
  20285. weight: math.unit(210, "lb"),
  20286. name: "Front",
  20287. image: {
  20288. source: "./media/characters/leonardo-lycheborne/front.svg",
  20289. extra: 776/723,
  20290. bottom: 34/810
  20291. }
  20292. },
  20293. side: {
  20294. height: math.unit(6 + 1 / 12, "feet"),
  20295. weight: math.unit(210, "lb"),
  20296. name: "Side",
  20297. image: {
  20298. source: "./media/characters/leonardo-lycheborne/side.svg",
  20299. extra: 780/728,
  20300. bottom: 12/792
  20301. }
  20302. },
  20303. back: {
  20304. height: math.unit(6 + 1 / 12, "feet"),
  20305. weight: math.unit(210, "lb"),
  20306. name: "Back",
  20307. image: {
  20308. source: "./media/characters/leonardo-lycheborne/back.svg",
  20309. extra: 775/721,
  20310. bottom: 17/792
  20311. }
  20312. },
  20313. hand: {
  20314. height: math.unit(1.08, "feet"),
  20315. name: "Hand",
  20316. image: {
  20317. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20318. }
  20319. },
  20320. foot: {
  20321. height: math.unit(1.32, "feet"),
  20322. name: "Foot",
  20323. image: {
  20324. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20325. }
  20326. },
  20327. maw: {
  20328. height: math.unit(1, "feet"),
  20329. name: "Maw",
  20330. image: {
  20331. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20332. }
  20333. },
  20334. were: {
  20335. height: math.unit(20, "feet"),
  20336. weight: math.unit(7800, "lb"),
  20337. name: "Were",
  20338. image: {
  20339. source: "./media/characters/leonardo-lycheborne/were.svg",
  20340. extra: 1224/1165,
  20341. bottom: 72/1296
  20342. }
  20343. },
  20344. feral: {
  20345. height: math.unit(7.5, "feet"),
  20346. weight: math.unit(600, "lb"),
  20347. name: "Feral",
  20348. image: {
  20349. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20350. extra: 797/702,
  20351. bottom: 139/936
  20352. }
  20353. },
  20354. taur: {
  20355. height: math.unit(11, "feet"),
  20356. weight: math.unit(3300, "lb"),
  20357. name: "Taur",
  20358. image: {
  20359. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20360. extra: 1271/1197,
  20361. bottom: 47/1318
  20362. }
  20363. },
  20364. barghest: {
  20365. height: math.unit(11, "feet"),
  20366. weight: math.unit(1300, "lb"),
  20367. name: "Barghest",
  20368. image: {
  20369. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20370. extra: 1291/1204,
  20371. bottom: 37/1328
  20372. }
  20373. },
  20374. dick: {
  20375. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20376. name: "Dick",
  20377. image: {
  20378. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20379. }
  20380. },
  20381. dickWere: {
  20382. height: math.unit((20) / 3.8, "feet"),
  20383. name: "Dick (Were)",
  20384. image: {
  20385. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20386. }
  20387. },
  20388. },
  20389. [
  20390. {
  20391. name: "Normal",
  20392. height: math.unit(6 + 1 / 12, "feet"),
  20393. default: true
  20394. },
  20395. ]
  20396. ))
  20397. characterMakers.push(() => makeCharacter(
  20398. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20399. {
  20400. front: {
  20401. height: math.unit(10, "feet"),
  20402. weight: math.unit(350, "lb"),
  20403. name: "Front",
  20404. image: {
  20405. source: "./media/characters/jet/front.svg",
  20406. extra: 2050 / 1980,
  20407. bottom: 0.013
  20408. }
  20409. },
  20410. back: {
  20411. height: math.unit(10, "feet"),
  20412. weight: math.unit(350, "lb"),
  20413. name: "Back",
  20414. image: {
  20415. source: "./media/characters/jet/back.svg",
  20416. extra: 2050 / 1980,
  20417. bottom: 0.013
  20418. }
  20419. },
  20420. },
  20421. [
  20422. {
  20423. name: "Micro",
  20424. height: math.unit(6, "inches")
  20425. },
  20426. {
  20427. name: "Normal",
  20428. height: math.unit(10, "feet"),
  20429. default: true
  20430. },
  20431. {
  20432. name: "Macro",
  20433. height: math.unit(100, "feet")
  20434. },
  20435. ]
  20436. ))
  20437. characterMakers.push(() => makeCharacter(
  20438. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20439. {
  20440. front: {
  20441. height: math.unit(15, "feet"),
  20442. weight: math.unit(2800, "lb"),
  20443. name: "Front",
  20444. image: {
  20445. source: "./media/characters/tanarath/front.svg",
  20446. extra: 2392 / 2220,
  20447. bottom: 0.03
  20448. }
  20449. },
  20450. back: {
  20451. height: math.unit(15, "feet"),
  20452. weight: math.unit(2800, "lb"),
  20453. name: "Back",
  20454. image: {
  20455. source: "./media/characters/tanarath/back.svg",
  20456. extra: 2392 / 2220,
  20457. bottom: 0.03
  20458. }
  20459. },
  20460. },
  20461. [
  20462. {
  20463. name: "Normal",
  20464. height: math.unit(15, "feet"),
  20465. default: true
  20466. },
  20467. ]
  20468. ))
  20469. characterMakers.push(() => makeCharacter(
  20470. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20471. {
  20472. front: {
  20473. height: math.unit(7 + 1 / 12, "feet"),
  20474. weight: math.unit(175, "lb"),
  20475. name: "Front",
  20476. image: {
  20477. source: "./media/characters/patty-cattybatty/front.svg",
  20478. extra: 908 / 874,
  20479. bottom: 0.025
  20480. }
  20481. },
  20482. },
  20483. [
  20484. {
  20485. name: "Micro",
  20486. height: math.unit(1, "inch")
  20487. },
  20488. {
  20489. name: "Normal",
  20490. height: math.unit(7 + 1 / 12, "feet")
  20491. },
  20492. {
  20493. name: "Mini Macro",
  20494. height: math.unit(155, "feet")
  20495. },
  20496. {
  20497. name: "Macro",
  20498. height: math.unit(1077, "feet")
  20499. },
  20500. {
  20501. name: "Mega Macro",
  20502. height: math.unit(47650, "feet"),
  20503. default: true
  20504. },
  20505. {
  20506. name: "Giga Macro",
  20507. height: math.unit(440, "miles")
  20508. },
  20509. {
  20510. name: "Tera Macro",
  20511. height: math.unit(8700, "miles")
  20512. },
  20513. {
  20514. name: "Planetary Macro",
  20515. height: math.unit(32700, "miles")
  20516. },
  20517. {
  20518. name: "Solar Macro",
  20519. height: math.unit(550000, "miles")
  20520. },
  20521. {
  20522. name: "Celestial Macro",
  20523. height: math.unit(2.5, "AU")
  20524. },
  20525. ]
  20526. ))
  20527. characterMakers.push(() => makeCharacter(
  20528. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20529. {
  20530. front: {
  20531. height: math.unit(4 + 5 / 12, "feet"),
  20532. weight: math.unit(90, "lb"),
  20533. name: "Front",
  20534. image: {
  20535. source: "./media/characters/cappu/front.svg",
  20536. extra: 1247 / 1152,
  20537. bottom: 0.012
  20538. }
  20539. },
  20540. },
  20541. [
  20542. {
  20543. name: "Normal",
  20544. height: math.unit(4 + 5 / 12, "feet"),
  20545. default: true
  20546. },
  20547. ]
  20548. ))
  20549. characterMakers.push(() => makeCharacter(
  20550. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20551. {
  20552. frontDressed: {
  20553. height: math.unit(70, "cm"),
  20554. weight: math.unit(6, "kg"),
  20555. name: "Front (Dressed)",
  20556. image: {
  20557. source: "./media/characters/sebi/front-dressed.svg",
  20558. extra: 713.5 / 686.5,
  20559. bottom: 0.003
  20560. }
  20561. },
  20562. front: {
  20563. height: math.unit(70, "cm"),
  20564. weight: math.unit(5, "kg"),
  20565. name: "Front",
  20566. image: {
  20567. source: "./media/characters/sebi/front.svg",
  20568. extra: 713.5 / 686.5,
  20569. bottom: 0.003
  20570. }
  20571. }
  20572. },
  20573. [
  20574. {
  20575. name: "Normal",
  20576. height: math.unit(70, "cm"),
  20577. default: true
  20578. },
  20579. {
  20580. name: "Macro",
  20581. height: math.unit(8, "meters")
  20582. },
  20583. ]
  20584. ))
  20585. characterMakers.push(() => makeCharacter(
  20586. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20587. {
  20588. front: {
  20589. height: math.unit(6, "feet"),
  20590. weight: math.unit(150, "lb"),
  20591. name: "Front",
  20592. image: {
  20593. source: "./media/characters/typhek/front.svg",
  20594. extra: 1948 / 1929,
  20595. bottom: 0.025
  20596. }
  20597. },
  20598. side: {
  20599. height: math.unit(6, "feet"),
  20600. weight: math.unit(150, "lb"),
  20601. name: "Side",
  20602. image: {
  20603. source: "./media/characters/typhek/side.svg",
  20604. extra: 2034 / 2010,
  20605. bottom: 0.003
  20606. }
  20607. },
  20608. back: {
  20609. height: math.unit(6, "feet"),
  20610. weight: math.unit(150, "lb"),
  20611. name: "Back",
  20612. image: {
  20613. source: "./media/characters/typhek/back.svg",
  20614. extra: 2005 / 1978,
  20615. bottom: 0.004
  20616. }
  20617. },
  20618. palm: {
  20619. height: math.unit(1.2, "feet"),
  20620. name: "Palm",
  20621. image: {
  20622. source: "./media/characters/typhek/palm.svg"
  20623. }
  20624. },
  20625. fist: {
  20626. height: math.unit(1.1, "feet"),
  20627. name: "Fist",
  20628. image: {
  20629. source: "./media/characters/typhek/fist.svg"
  20630. }
  20631. },
  20632. foot: {
  20633. height: math.unit(1.57, "feet"),
  20634. name: "Foot",
  20635. image: {
  20636. source: "./media/characters/typhek/foot.svg"
  20637. }
  20638. },
  20639. sole: {
  20640. height: math.unit(2.05, "feet"),
  20641. name: "Sole",
  20642. image: {
  20643. source: "./media/characters/typhek/sole.svg"
  20644. }
  20645. },
  20646. },
  20647. [
  20648. {
  20649. name: "Macro",
  20650. height: math.unit(40, "stories"),
  20651. default: true
  20652. },
  20653. {
  20654. name: "Megamacro",
  20655. height: math.unit(1, "mile")
  20656. },
  20657. {
  20658. name: "Gigamacro",
  20659. height: math.unit(4000, "solarradii")
  20660. },
  20661. {
  20662. name: "Universal",
  20663. height: math.unit(1.1, "universes")
  20664. }
  20665. ]
  20666. ))
  20667. characterMakers.push(() => makeCharacter(
  20668. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20669. {
  20670. side: {
  20671. height: math.unit(5 + 7 / 12, "feet"),
  20672. weight: math.unit(150, "lb"),
  20673. name: "Side",
  20674. image: {
  20675. source: "./media/characters/kassy/side.svg",
  20676. extra: 1280 / 1225,
  20677. bottom: 0.002
  20678. }
  20679. },
  20680. front: {
  20681. height: math.unit(5 + 7 / 12, "feet"),
  20682. weight: math.unit(150, "lb"),
  20683. name: "Front",
  20684. image: {
  20685. source: "./media/characters/kassy/front.svg",
  20686. extra: 1280 / 1225,
  20687. bottom: 0.025
  20688. }
  20689. },
  20690. back: {
  20691. height: math.unit(5 + 7 / 12, "feet"),
  20692. weight: math.unit(150, "lb"),
  20693. name: "Back",
  20694. image: {
  20695. source: "./media/characters/kassy/back.svg",
  20696. extra: 1280 / 1225,
  20697. bottom: 0.002
  20698. }
  20699. },
  20700. foot: {
  20701. height: math.unit(1.266, "feet"),
  20702. name: "Foot",
  20703. image: {
  20704. source: "./media/characters/kassy/foot.svg"
  20705. }
  20706. },
  20707. },
  20708. [
  20709. {
  20710. name: "Normal",
  20711. height: math.unit(5 + 7 / 12, "feet")
  20712. },
  20713. {
  20714. name: "Macro",
  20715. height: math.unit(137, "feet"),
  20716. default: true
  20717. },
  20718. {
  20719. name: "Megamacro",
  20720. height: math.unit(1, "mile")
  20721. },
  20722. ]
  20723. ))
  20724. characterMakers.push(() => makeCharacter(
  20725. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20726. {
  20727. front: {
  20728. height: math.unit(6 + 1 / 12, "feet"),
  20729. weight: math.unit(200, "lb"),
  20730. name: "Front",
  20731. image: {
  20732. source: "./media/characters/neil/front.svg",
  20733. extra: 1326 / 1250,
  20734. bottom: 0.023
  20735. }
  20736. },
  20737. },
  20738. [
  20739. {
  20740. name: "Normal",
  20741. height: math.unit(6 + 1 / 12, "feet"),
  20742. default: true
  20743. },
  20744. {
  20745. name: "Macro",
  20746. height: math.unit(200, "feet")
  20747. },
  20748. ]
  20749. ))
  20750. characterMakers.push(() => makeCharacter(
  20751. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20752. {
  20753. front: {
  20754. height: math.unit(5 + 9 / 12, "feet"),
  20755. weight: math.unit(190, "lb"),
  20756. name: "Front",
  20757. image: {
  20758. source: "./media/characters/atticus/front.svg",
  20759. extra: 2934 / 2785,
  20760. bottom: 0.025
  20761. }
  20762. },
  20763. },
  20764. [
  20765. {
  20766. name: "Normal",
  20767. height: math.unit(5 + 9 / 12, "feet"),
  20768. default: true
  20769. },
  20770. {
  20771. name: "Macro",
  20772. height: math.unit(180, "feet")
  20773. },
  20774. ]
  20775. ))
  20776. characterMakers.push(() => makeCharacter(
  20777. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20778. {
  20779. side: {
  20780. height: math.unit(9, "feet"),
  20781. weight: math.unit(650, "lb"),
  20782. name: "Side",
  20783. image: {
  20784. source: "./media/characters/milo/side.svg",
  20785. extra: 2644 / 2310,
  20786. bottom: 0.032
  20787. }
  20788. },
  20789. },
  20790. [
  20791. {
  20792. name: "Normal",
  20793. height: math.unit(9, "feet"),
  20794. default: true
  20795. },
  20796. {
  20797. name: "Macro",
  20798. height: math.unit(300, "feet")
  20799. },
  20800. ]
  20801. ))
  20802. characterMakers.push(() => makeCharacter(
  20803. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20804. {
  20805. side: {
  20806. height: math.unit(8, "meters"),
  20807. weight: math.unit(90000, "kg"),
  20808. name: "Side",
  20809. image: {
  20810. source: "./media/characters/ijzer/side.svg",
  20811. extra: 2756 / 1600,
  20812. bottom: 0.01
  20813. }
  20814. },
  20815. },
  20816. [
  20817. {
  20818. name: "Small",
  20819. height: math.unit(3, "meters")
  20820. },
  20821. {
  20822. name: "Normal",
  20823. height: math.unit(8, "meters"),
  20824. default: true
  20825. },
  20826. {
  20827. name: "Normal+",
  20828. height: math.unit(10, "meters")
  20829. },
  20830. {
  20831. name: "Bigger",
  20832. height: math.unit(24, "meters")
  20833. },
  20834. {
  20835. name: "Huge",
  20836. height: math.unit(80, "meters")
  20837. },
  20838. ]
  20839. ))
  20840. characterMakers.push(() => makeCharacter(
  20841. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20842. {
  20843. front: {
  20844. height: math.unit(6 + 2 / 12, "feet"),
  20845. weight: math.unit(153, "lb"),
  20846. name: "Front",
  20847. image: {
  20848. source: "./media/characters/luca-cervicum/front.svg",
  20849. extra: 370 / 327,
  20850. bottom: 0.015
  20851. }
  20852. },
  20853. back: {
  20854. height: math.unit(6 + 2 / 12, "feet"),
  20855. weight: math.unit(153, "lb"),
  20856. name: "Back",
  20857. image: {
  20858. source: "./media/characters/luca-cervicum/back.svg",
  20859. extra: 367 / 333,
  20860. bottom: 0.005
  20861. }
  20862. },
  20863. frontGear: {
  20864. height: math.unit(6 + 2 / 12, "feet"),
  20865. weight: math.unit(173, "lb"),
  20866. name: "Front (Gear)",
  20867. image: {
  20868. source: "./media/characters/luca-cervicum/front-gear.svg",
  20869. extra: 377 / 333,
  20870. bottom: 0.006
  20871. }
  20872. },
  20873. },
  20874. [
  20875. {
  20876. name: "Normal",
  20877. height: math.unit(6 + 2 / 12, "feet"),
  20878. default: true
  20879. },
  20880. ]
  20881. ))
  20882. characterMakers.push(() => makeCharacter(
  20883. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20884. {
  20885. front: {
  20886. height: math.unit(6 + 1 / 12, "feet"),
  20887. weight: math.unit(304, "lb"),
  20888. name: "Front",
  20889. image: {
  20890. source: "./media/characters/oliver/front.svg",
  20891. extra: 157 / 143,
  20892. bottom: 0.08
  20893. }
  20894. },
  20895. },
  20896. [
  20897. {
  20898. name: "Normal",
  20899. height: math.unit(6 + 1 / 12, "feet"),
  20900. default: true
  20901. },
  20902. ]
  20903. ))
  20904. characterMakers.push(() => makeCharacter(
  20905. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20906. {
  20907. front: {
  20908. height: math.unit(5 + 7 / 12, "feet"),
  20909. weight: math.unit(140, "lb"),
  20910. name: "Front",
  20911. image: {
  20912. source: "./media/characters/shane/front.svg",
  20913. extra: 304 / 289,
  20914. bottom: 0.005
  20915. }
  20916. },
  20917. },
  20918. [
  20919. {
  20920. name: "Normal",
  20921. height: math.unit(5 + 7 / 12, "feet"),
  20922. default: true
  20923. },
  20924. ]
  20925. ))
  20926. characterMakers.push(() => makeCharacter(
  20927. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20928. {
  20929. front: {
  20930. height: math.unit(5 + 9 / 12, "feet"),
  20931. weight: math.unit(178, "lb"),
  20932. name: "Front",
  20933. image: {
  20934. source: "./media/characters/shin/front.svg",
  20935. extra: 159 / 151,
  20936. bottom: 0.015
  20937. }
  20938. },
  20939. },
  20940. [
  20941. {
  20942. name: "Normal",
  20943. height: math.unit(5 + 9 / 12, "feet"),
  20944. default: true
  20945. },
  20946. ]
  20947. ))
  20948. characterMakers.push(() => makeCharacter(
  20949. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20950. {
  20951. front: {
  20952. height: math.unit(5 + 10 / 12, "feet"),
  20953. weight: math.unit(168, "lb"),
  20954. name: "Front",
  20955. image: {
  20956. source: "./media/characters/xerxes/front.svg",
  20957. extra: 282 / 260,
  20958. bottom: 0.045
  20959. }
  20960. },
  20961. },
  20962. [
  20963. {
  20964. name: "Normal",
  20965. height: math.unit(5 + 10 / 12, "feet"),
  20966. default: true
  20967. },
  20968. ]
  20969. ))
  20970. characterMakers.push(() => makeCharacter(
  20971. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20972. {
  20973. front: {
  20974. height: math.unit(6 + 7 / 12, "feet"),
  20975. weight: math.unit(208, "lb"),
  20976. name: "Front",
  20977. image: {
  20978. source: "./media/characters/chaska/front.svg",
  20979. extra: 332 / 319,
  20980. bottom: 0.015
  20981. }
  20982. },
  20983. },
  20984. [
  20985. {
  20986. name: "Normal",
  20987. height: math.unit(6 + 7 / 12, "feet"),
  20988. default: true
  20989. },
  20990. ]
  20991. ))
  20992. characterMakers.push(() => makeCharacter(
  20993. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20994. {
  20995. front: {
  20996. height: math.unit(5 + 8 / 12, "feet"),
  20997. weight: math.unit(208, "lb"),
  20998. name: "Front",
  20999. image: {
  21000. source: "./media/characters/enuk/front.svg",
  21001. extra: 437 / 406,
  21002. bottom: 0.02
  21003. }
  21004. },
  21005. },
  21006. [
  21007. {
  21008. name: "Normal",
  21009. height: math.unit(5 + 8 / 12, "feet"),
  21010. default: true
  21011. },
  21012. ]
  21013. ))
  21014. characterMakers.push(() => makeCharacter(
  21015. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21016. {
  21017. front: {
  21018. height: math.unit(5 + 10 / 12, "feet"),
  21019. weight: math.unit(252, "lb"),
  21020. name: "Front",
  21021. image: {
  21022. source: "./media/characters/bruun/front.svg",
  21023. extra: 197 / 187,
  21024. bottom: 0.012
  21025. }
  21026. },
  21027. },
  21028. [
  21029. {
  21030. name: "Normal",
  21031. height: math.unit(5 + 10 / 12, "feet"),
  21032. default: true
  21033. },
  21034. ]
  21035. ))
  21036. characterMakers.push(() => makeCharacter(
  21037. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21038. {
  21039. front: {
  21040. height: math.unit(6 + 10 / 12, "feet"),
  21041. weight: math.unit(255, "lb"),
  21042. name: "Front",
  21043. image: {
  21044. source: "./media/characters/alexeev/front.svg",
  21045. extra: 213 / 200,
  21046. bottom: 0.05
  21047. }
  21048. },
  21049. },
  21050. [
  21051. {
  21052. name: "Normal",
  21053. height: math.unit(6 + 10 / 12, "feet"),
  21054. default: true
  21055. },
  21056. ]
  21057. ))
  21058. characterMakers.push(() => makeCharacter(
  21059. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21060. {
  21061. front: {
  21062. height: math.unit(2 + 8 / 12, "feet"),
  21063. weight: math.unit(22, "lb"),
  21064. name: "Front",
  21065. image: {
  21066. source: "./media/characters/evelyn/front.svg",
  21067. extra: 208 / 180
  21068. }
  21069. },
  21070. },
  21071. [
  21072. {
  21073. name: "Normal",
  21074. height: math.unit(2 + 8 / 12, "feet"),
  21075. default: true
  21076. },
  21077. ]
  21078. ))
  21079. characterMakers.push(() => makeCharacter(
  21080. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21081. {
  21082. front: {
  21083. height: math.unit(5 + 9 / 12, "feet"),
  21084. weight: math.unit(139, "lb"),
  21085. name: "Front",
  21086. image: {
  21087. source: "./media/characters/inca/front.svg",
  21088. extra: 294 / 291,
  21089. bottom: 0.03
  21090. }
  21091. },
  21092. },
  21093. [
  21094. {
  21095. name: "Normal",
  21096. height: math.unit(5 + 9 / 12, "feet"),
  21097. default: true
  21098. },
  21099. ]
  21100. ))
  21101. characterMakers.push(() => makeCharacter(
  21102. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21103. {
  21104. front: {
  21105. height: math.unit(6 + 3 / 12, "feet"),
  21106. weight: math.unit(185, "lb"),
  21107. name: "Front",
  21108. image: {
  21109. source: "./media/characters/mera/front.svg",
  21110. extra: 291 / 277,
  21111. bottom: 0.03
  21112. }
  21113. },
  21114. },
  21115. [
  21116. {
  21117. name: "Normal",
  21118. height: math.unit(6 + 3 / 12, "feet"),
  21119. default: true
  21120. },
  21121. ]
  21122. ))
  21123. characterMakers.push(() => makeCharacter(
  21124. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21125. {
  21126. front: {
  21127. height: math.unit(6 + 7 / 12, "feet"),
  21128. weight: math.unit(160, "lb"),
  21129. name: "Front",
  21130. image: {
  21131. source: "./media/characters/ceres/front.svg",
  21132. extra: 1023 / 950,
  21133. bottom: 0.027
  21134. }
  21135. },
  21136. back: {
  21137. height: math.unit(6 + 7 / 12, "feet"),
  21138. weight: math.unit(160, "lb"),
  21139. name: "Back",
  21140. image: {
  21141. source: "./media/characters/ceres/back.svg",
  21142. extra: 1023 / 950
  21143. }
  21144. },
  21145. },
  21146. [
  21147. {
  21148. name: "Normal",
  21149. height: math.unit(6 + 7 / 12, "feet"),
  21150. default: true
  21151. },
  21152. ]
  21153. ))
  21154. characterMakers.push(() => makeCharacter(
  21155. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21156. {
  21157. front: {
  21158. height: math.unit(5 + 10 / 12, "feet"),
  21159. weight: math.unit(150, "lb"),
  21160. name: "Front",
  21161. image: {
  21162. source: "./media/characters/kris/front.svg",
  21163. extra: 885 / 803,
  21164. bottom: 0.03
  21165. }
  21166. },
  21167. },
  21168. [
  21169. {
  21170. name: "Normal",
  21171. height: math.unit(5 + 10 / 12, "feet"),
  21172. default: true
  21173. },
  21174. ]
  21175. ))
  21176. characterMakers.push(() => makeCharacter(
  21177. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21178. {
  21179. front: {
  21180. height: math.unit(7, "feet"),
  21181. weight: math.unit(120, "kg"),
  21182. name: "Front",
  21183. image: {
  21184. source: "./media/characters/taluthus/front.svg",
  21185. extra: 903 / 833,
  21186. bottom: 0.015
  21187. }
  21188. },
  21189. },
  21190. [
  21191. {
  21192. name: "Normal",
  21193. height: math.unit(7, "feet"),
  21194. default: true
  21195. },
  21196. {
  21197. name: "Macro",
  21198. height: math.unit(300, "feet")
  21199. },
  21200. ]
  21201. ))
  21202. characterMakers.push(() => makeCharacter(
  21203. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21204. {
  21205. front: {
  21206. height: math.unit(5 + 9 / 12, "feet"),
  21207. weight: math.unit(145, "lb"),
  21208. name: "Front",
  21209. image: {
  21210. source: "./media/characters/dawn/front.svg",
  21211. extra: 2094 / 2016,
  21212. bottom: 0.025
  21213. }
  21214. },
  21215. back: {
  21216. height: math.unit(5 + 9 / 12, "feet"),
  21217. weight: math.unit(160, "lb"),
  21218. name: "Back",
  21219. image: {
  21220. source: "./media/characters/dawn/back.svg",
  21221. extra: 2112 / 2080,
  21222. bottom: 0.005
  21223. }
  21224. },
  21225. },
  21226. [
  21227. {
  21228. name: "Normal",
  21229. height: math.unit(6 + 7 / 12, "feet"),
  21230. default: true
  21231. },
  21232. ]
  21233. ))
  21234. characterMakers.push(() => makeCharacter(
  21235. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21236. {
  21237. anthro: {
  21238. height: math.unit(8 + 3 / 12, "feet"),
  21239. weight: math.unit(450, "lb"),
  21240. name: "Anthro",
  21241. image: {
  21242. source: "./media/characters/arador/anthro.svg",
  21243. extra: 1835 / 1718,
  21244. bottom: 0.025
  21245. }
  21246. },
  21247. feral: {
  21248. height: math.unit(4, "feet"),
  21249. weight: math.unit(200, "lb"),
  21250. name: "Feral",
  21251. image: {
  21252. source: "./media/characters/arador/feral.svg",
  21253. extra: 1683 / 1514,
  21254. bottom: 0.07
  21255. }
  21256. },
  21257. },
  21258. [
  21259. {
  21260. name: "Normal",
  21261. height: math.unit(8 + 3 / 12, "feet")
  21262. },
  21263. {
  21264. name: "Macro",
  21265. height: math.unit(82.5, "feet"),
  21266. default: true
  21267. },
  21268. ]
  21269. ))
  21270. characterMakers.push(() => makeCharacter(
  21271. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21272. {
  21273. front: {
  21274. height: math.unit(5 + 10 / 12, "feet"),
  21275. weight: math.unit(125, "lb"),
  21276. name: "Front",
  21277. image: {
  21278. source: "./media/characters/dharsi/front.svg",
  21279. extra: 716 / 630,
  21280. bottom: 0.035
  21281. }
  21282. },
  21283. },
  21284. [
  21285. {
  21286. name: "Nano",
  21287. height: math.unit(100, "nm")
  21288. },
  21289. {
  21290. name: "Micro",
  21291. height: math.unit(2, "inches")
  21292. },
  21293. {
  21294. name: "Normal",
  21295. height: math.unit(5 + 10 / 12, "feet"),
  21296. default: true
  21297. },
  21298. {
  21299. name: "Macro",
  21300. height: math.unit(1000, "feet")
  21301. },
  21302. {
  21303. name: "Megamacro",
  21304. height: math.unit(10, "miles")
  21305. },
  21306. {
  21307. name: "Gigamacro",
  21308. height: math.unit(3000, "miles")
  21309. },
  21310. {
  21311. name: "Teramacro",
  21312. height: math.unit(500000, "miles")
  21313. },
  21314. {
  21315. name: "Teramacro+",
  21316. height: math.unit(30, "galaxies")
  21317. },
  21318. ]
  21319. ))
  21320. characterMakers.push(() => makeCharacter(
  21321. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21322. {
  21323. front: {
  21324. height: math.unit(6, "feet"),
  21325. weight: math.unit(150, "lb"),
  21326. name: "Front",
  21327. image: {
  21328. source: "./media/characters/deathy/front.svg",
  21329. extra: 1552 / 1463,
  21330. bottom: 0.025
  21331. }
  21332. },
  21333. side: {
  21334. height: math.unit(6, "feet"),
  21335. weight: math.unit(150, "lb"),
  21336. name: "Side",
  21337. image: {
  21338. source: "./media/characters/deathy/side.svg",
  21339. extra: 1604 / 1455,
  21340. bottom: 0.025
  21341. }
  21342. },
  21343. back: {
  21344. height: math.unit(6, "feet"),
  21345. weight: math.unit(150, "lb"),
  21346. name: "Back",
  21347. image: {
  21348. source: "./media/characters/deathy/back.svg",
  21349. extra: 1580 / 1463,
  21350. bottom: 0.005
  21351. }
  21352. },
  21353. },
  21354. [
  21355. {
  21356. name: "Micro",
  21357. height: math.unit(5, "millimeters")
  21358. },
  21359. {
  21360. name: "Normal",
  21361. height: math.unit(6 + 5 / 12, "feet"),
  21362. default: true
  21363. },
  21364. ]
  21365. ))
  21366. characterMakers.push(() => makeCharacter(
  21367. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21368. {
  21369. front: {
  21370. height: math.unit(16, "feet"),
  21371. weight: math.unit(4000, "lb"),
  21372. name: "Front",
  21373. image: {
  21374. source: "./media/characters/juniper/front.svg",
  21375. bottom: 0.04
  21376. }
  21377. },
  21378. },
  21379. [
  21380. {
  21381. name: "Normal",
  21382. height: math.unit(16, "feet"),
  21383. default: true
  21384. },
  21385. ]
  21386. ))
  21387. characterMakers.push(() => makeCharacter(
  21388. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21389. {
  21390. front: {
  21391. height: math.unit(6, "feet"),
  21392. weight: math.unit(150, "lb"),
  21393. name: "Front",
  21394. image: {
  21395. source: "./media/characters/hipster/front.svg",
  21396. extra: 1312 / 1209,
  21397. bottom: 0.025
  21398. }
  21399. },
  21400. back: {
  21401. height: math.unit(6, "feet"),
  21402. weight: math.unit(150, "lb"),
  21403. name: "Back",
  21404. image: {
  21405. source: "./media/characters/hipster/back.svg",
  21406. extra: 1281 / 1196,
  21407. bottom: 0.01
  21408. }
  21409. },
  21410. },
  21411. [
  21412. {
  21413. name: "Micro",
  21414. height: math.unit(1, "mm")
  21415. },
  21416. {
  21417. name: "Normal",
  21418. height: math.unit(4, "inches"),
  21419. default: true
  21420. },
  21421. {
  21422. name: "Macro",
  21423. height: math.unit(500, "feet")
  21424. },
  21425. {
  21426. name: "Megamacro",
  21427. height: math.unit(1000, "miles")
  21428. },
  21429. ]
  21430. ))
  21431. characterMakers.push(() => makeCharacter(
  21432. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21433. {
  21434. front: {
  21435. height: math.unit(6, "feet"),
  21436. weight: math.unit(150, "lb"),
  21437. name: "Front",
  21438. image: {
  21439. source: "./media/characters/tendirmuldr/front.svg",
  21440. extra: 1878 / 1772,
  21441. bottom: 0.015
  21442. }
  21443. },
  21444. },
  21445. [
  21446. {
  21447. name: "Megamacro",
  21448. height: math.unit(1500, "miles"),
  21449. default: true
  21450. },
  21451. ]
  21452. ))
  21453. characterMakers.push(() => makeCharacter(
  21454. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21455. {
  21456. front: {
  21457. height: math.unit(14, "feet"),
  21458. weight: math.unit(12000, "lb"),
  21459. name: "Front",
  21460. image: {
  21461. source: "./media/characters/mort/front.svg",
  21462. extra: 365 / 318,
  21463. bottom: 0.01
  21464. }
  21465. },
  21466. side: {
  21467. height: math.unit(14, "feet"),
  21468. weight: math.unit(12000, "lb"),
  21469. name: "Side",
  21470. image: {
  21471. source: "./media/characters/mort/side.svg",
  21472. extra: 365 / 318,
  21473. bottom: 0.052
  21474. },
  21475. default: true
  21476. },
  21477. back: {
  21478. height: math.unit(14, "feet"),
  21479. weight: math.unit(12000, "lb"),
  21480. name: "Back",
  21481. image: {
  21482. source: "./media/characters/mort/back.svg",
  21483. extra: 371 / 332,
  21484. bottom: 0.18
  21485. }
  21486. },
  21487. },
  21488. [
  21489. {
  21490. name: "Normal",
  21491. height: math.unit(14, "feet"),
  21492. default: true
  21493. },
  21494. ]
  21495. ))
  21496. characterMakers.push(() => makeCharacter(
  21497. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21498. {
  21499. front: {
  21500. height: math.unit(8, "feet"),
  21501. weight: math.unit(1, "ton"),
  21502. name: "Front",
  21503. image: {
  21504. source: "./media/characters/lycoa/front.svg",
  21505. extra: 1836/1728,
  21506. bottom: 81/1917
  21507. }
  21508. },
  21509. back: {
  21510. height: math.unit(8, "feet"),
  21511. weight: math.unit(1, "ton"),
  21512. name: "Back",
  21513. image: {
  21514. source: "./media/characters/lycoa/back.svg",
  21515. extra: 1785/1720,
  21516. bottom: 91/1876
  21517. }
  21518. },
  21519. head: {
  21520. height: math.unit(1.6243, "feet"),
  21521. name: "Head",
  21522. image: {
  21523. source: "./media/characters/lycoa/head.svg",
  21524. extra: 1011/782,
  21525. bottom: 0/1011
  21526. }
  21527. },
  21528. tailmaw: {
  21529. height: math.unit(1.9, "feet"),
  21530. name: "Tailmaw",
  21531. image: {
  21532. source: "./media/characters/lycoa/tailmaw.svg"
  21533. }
  21534. },
  21535. tentacles: {
  21536. height: math.unit(2.1, "feet"),
  21537. name: "Tentacles",
  21538. image: {
  21539. source: "./media/characters/lycoa/tentacles.svg"
  21540. }
  21541. },
  21542. dick: {
  21543. height: math.unit(1.73, "feet"),
  21544. name: "Dick",
  21545. image: {
  21546. source: "./media/characters/lycoa/dick.svg"
  21547. }
  21548. },
  21549. },
  21550. [
  21551. {
  21552. name: "Normal",
  21553. height: math.unit(8, "feet"),
  21554. default: true
  21555. },
  21556. {
  21557. name: "Macro",
  21558. height: math.unit(30, "feet")
  21559. },
  21560. ]
  21561. ))
  21562. characterMakers.push(() => makeCharacter(
  21563. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21564. {
  21565. front: {
  21566. height: math.unit(4 + 2 / 12, "feet"),
  21567. weight: math.unit(70, "lb"),
  21568. name: "Front",
  21569. image: {
  21570. source: "./media/characters/naldara/front.svg",
  21571. extra: 1664/1387,
  21572. bottom: 81/1745
  21573. },
  21574. form: "anthro",
  21575. default: true
  21576. },
  21577. naga: {
  21578. height: math.unit(20, "feet"),
  21579. weight: math.unit(15000, "kg"),
  21580. name: "Front",
  21581. image: {
  21582. source: "./media/characters/naldara/naga.svg",
  21583. extra: 1590/1396,
  21584. bottom: 285/1875
  21585. },
  21586. form: "naga",
  21587. default: true
  21588. },
  21589. },
  21590. [
  21591. {
  21592. name: "Normal",
  21593. height: math.unit(4 + 2 / 12, "feet"),
  21594. form: "anthro",
  21595. default: true
  21596. },
  21597. {
  21598. name: "Normal",
  21599. height: math.unit(20, "feet"),
  21600. form: "naga",
  21601. default: true
  21602. },
  21603. ],
  21604. {
  21605. "anthro": {
  21606. name: "Anthro",
  21607. default: true
  21608. },
  21609. "naga": {
  21610. name: "Naga"
  21611. }
  21612. }
  21613. ))
  21614. characterMakers.push(() => makeCharacter(
  21615. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21616. {
  21617. front: {
  21618. height: math.unit(13 + 7 / 12, "feet"),
  21619. weight: math.unit(1500, "lb"),
  21620. name: "Front",
  21621. image: {
  21622. source: "./media/characters/briar/front.svg",
  21623. extra: 1223/1157,
  21624. bottom: 123/1346
  21625. }
  21626. },
  21627. },
  21628. [
  21629. {
  21630. name: "Normal",
  21631. height: math.unit(13 + 7 / 12, "feet"),
  21632. default: true
  21633. },
  21634. ]
  21635. ))
  21636. characterMakers.push(() => makeCharacter(
  21637. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21638. {
  21639. side: {
  21640. height: math.unit(16, "feet"),
  21641. weight: math.unit(500, "lb"),
  21642. name: "Side",
  21643. image: {
  21644. source: "./media/characters/vanguard/side.svg",
  21645. extra: 1022/914,
  21646. bottom: 30/1052
  21647. }
  21648. },
  21649. sideAlt: {
  21650. height: math.unit(10, "feet"),
  21651. weight: math.unit(500, "lb"),
  21652. name: "Side (Alt)",
  21653. image: {
  21654. source: "./media/characters/vanguard/side-alt.svg",
  21655. extra: 502 / 425,
  21656. bottom: 0.087
  21657. }
  21658. },
  21659. },
  21660. [
  21661. {
  21662. name: "Normal",
  21663. height: math.unit(17.71, "feet"),
  21664. default: true
  21665. },
  21666. ]
  21667. ))
  21668. characterMakers.push(() => makeCharacter(
  21669. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21670. {
  21671. front: {
  21672. height: math.unit(7.5, "feet"),
  21673. weight: math.unit(2, "lb"),
  21674. name: "Front",
  21675. image: {
  21676. source: "./media/characters/artemis/work-safe-front.svg",
  21677. extra: 1192 / 1075,
  21678. bottom: 0.07
  21679. },
  21680. form: "work-safe",
  21681. default: true
  21682. },
  21683. frontNsfw: {
  21684. height: math.unit(7.5, "feet"),
  21685. weight: math.unit(2, "lb"),
  21686. name: "Front",
  21687. image: {
  21688. source: "./media/characters/artemis/calibrating-front.svg",
  21689. extra: 1192 / 1075,
  21690. bottom: 0.07
  21691. },
  21692. form: "calibrating",
  21693. default: true
  21694. },
  21695. frontNsfwer: {
  21696. height: math.unit(7.5, "feet"),
  21697. weight: math.unit(2, "lb"),
  21698. name: "Front",
  21699. image: {
  21700. source: "./media/characters/artemis/oversize-load-front.svg",
  21701. extra: 1192 / 1075,
  21702. bottom: 0.07
  21703. },
  21704. form: "oversize-load",
  21705. default: true
  21706. },
  21707. side: {
  21708. height: math.unit(7.5, "feet"),
  21709. weight: math.unit(2, "lb"),
  21710. name: "Side",
  21711. image: {
  21712. source: "./media/characters/artemis/work-safe-side.svg",
  21713. extra: 1192 / 1075,
  21714. bottom: 0.07
  21715. },
  21716. form: "work-safe"
  21717. },
  21718. sideNsfw: {
  21719. height: math.unit(7.5, "feet"),
  21720. weight: math.unit(2, "lb"),
  21721. name: "Side",
  21722. image: {
  21723. source: "./media/characters/artemis/calibrating-side.svg",
  21724. extra: 1192 / 1075,
  21725. bottom: 0.07
  21726. },
  21727. form: "calibrating"
  21728. },
  21729. sideNsfwer: {
  21730. height: math.unit(7.5, "feet"),
  21731. weight: math.unit(2, "lb"),
  21732. name: "Side",
  21733. image: {
  21734. source: "./media/characters/artemis/oversize-load-side.svg",
  21735. extra: 1192 / 1075,
  21736. bottom: 0.07
  21737. },
  21738. form: "oversize-load"
  21739. },
  21740. maw: {
  21741. height: math.unit(1.1, "feet"),
  21742. name: "Maw",
  21743. image: {
  21744. source: "./media/characters/artemis/maw.svg"
  21745. },
  21746. form: "work-safe"
  21747. },
  21748. stomach: {
  21749. height: math.unit(0.95, "feet"),
  21750. name: "Stomach",
  21751. image: {
  21752. source: "./media/characters/artemis/stomach.svg"
  21753. },
  21754. form: "work-safe"
  21755. },
  21756. dickCanine: {
  21757. height: math.unit(1, "feet"),
  21758. name: "Dick (Canine)",
  21759. image: {
  21760. source: "./media/characters/artemis/dick-canine.svg"
  21761. },
  21762. form: "calibrating"
  21763. },
  21764. dickEquine: {
  21765. height: math.unit(0.85, "feet"),
  21766. name: "Dick (Equine)",
  21767. image: {
  21768. source: "./media/characters/artemis/dick-equine.svg"
  21769. },
  21770. form: "calibrating"
  21771. },
  21772. dickExotic: {
  21773. height: math.unit(0.85, "feet"),
  21774. name: "Dick (Exotic)",
  21775. image: {
  21776. source: "./media/characters/artemis/dick-exotic.svg"
  21777. },
  21778. form: "calibrating"
  21779. },
  21780. dickCanineBigger: {
  21781. height: math.unit(1 * 1.33, "feet"),
  21782. name: "Dick (Canine)",
  21783. image: {
  21784. source: "./media/characters/artemis/dick-canine.svg"
  21785. },
  21786. form: "oversize-load"
  21787. },
  21788. dickEquineBigger: {
  21789. height: math.unit(0.85 * 1.33, "feet"),
  21790. name: "Dick (Equine)",
  21791. image: {
  21792. source: "./media/characters/artemis/dick-equine.svg"
  21793. },
  21794. form: "oversize-load"
  21795. },
  21796. dickExoticBigger: {
  21797. height: math.unit(0.85 * 1.33, "feet"),
  21798. name: "Dick (Exotic)",
  21799. image: {
  21800. source: "./media/characters/artemis/dick-exotic.svg"
  21801. },
  21802. form: "oversize-load"
  21803. },
  21804. },
  21805. [
  21806. {
  21807. name: "Normal",
  21808. height: math.unit(7.5, "feet"),
  21809. form: "work-safe",
  21810. default: true
  21811. },
  21812. {
  21813. name: "Normal",
  21814. height: math.unit(7.5, "feet"),
  21815. form: "calibrating",
  21816. default: true
  21817. },
  21818. {
  21819. name: "Normal",
  21820. height: math.unit(7.5, "feet"),
  21821. form: "oversize-load",
  21822. default: true
  21823. },
  21824. {
  21825. name: "Enlarged",
  21826. height: math.unit(12, "feet"),
  21827. form: "work-safe",
  21828. },
  21829. {
  21830. name: "Enlarged",
  21831. height: math.unit(12, "feet"),
  21832. form: "calibrating",
  21833. },
  21834. {
  21835. name: "Enlarged",
  21836. height: math.unit(12, "feet"),
  21837. form: "oversize-load",
  21838. },
  21839. ],
  21840. {
  21841. "work-safe": {
  21842. name: "Work-Safe",
  21843. default: true
  21844. },
  21845. "calibrating": {
  21846. name: "Calibrating"
  21847. },
  21848. "oversize-load": {
  21849. name: "Oversize Load"
  21850. }
  21851. }
  21852. ))
  21853. characterMakers.push(() => makeCharacter(
  21854. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21855. {
  21856. front: {
  21857. height: math.unit(5 + 3 / 12, "feet"),
  21858. weight: math.unit(160, "lb"),
  21859. name: "Front",
  21860. image: {
  21861. source: "./media/characters/kira/front.svg",
  21862. extra: 906 / 786,
  21863. bottom: 0.01
  21864. }
  21865. },
  21866. back: {
  21867. height: math.unit(5 + 3 / 12, "feet"),
  21868. weight: math.unit(160, "lb"),
  21869. name: "Back",
  21870. image: {
  21871. source: "./media/characters/kira/back.svg",
  21872. extra: 882 / 757,
  21873. bottom: 0.005
  21874. }
  21875. },
  21876. frontDressed: {
  21877. height: math.unit(5 + 3 / 12, "feet"),
  21878. weight: math.unit(160, "lb"),
  21879. name: "Front (Dressed)",
  21880. image: {
  21881. source: "./media/characters/kira/front-dressed.svg",
  21882. extra: 906 / 786,
  21883. bottom: 0.01
  21884. }
  21885. },
  21886. beans: {
  21887. height: math.unit(0.92, "feet"),
  21888. name: "Beans",
  21889. image: {
  21890. source: "./media/characters/kira/beans.svg"
  21891. }
  21892. },
  21893. },
  21894. [
  21895. {
  21896. name: "Normal",
  21897. height: math.unit(5 + 3 / 12, "feet"),
  21898. default: true
  21899. },
  21900. ]
  21901. ))
  21902. characterMakers.push(() => makeCharacter(
  21903. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21904. {
  21905. front: {
  21906. height: math.unit(5 + 4 / 12, "feet"),
  21907. weight: math.unit(145, "lb"),
  21908. name: "Front",
  21909. image: {
  21910. source: "./media/characters/scramble/front.svg",
  21911. extra: 763 / 727,
  21912. bottom: 0.05
  21913. }
  21914. },
  21915. back: {
  21916. height: math.unit(5 + 4 / 12, "feet"),
  21917. weight: math.unit(145, "lb"),
  21918. name: "Back",
  21919. image: {
  21920. source: "./media/characters/scramble/back.svg",
  21921. extra: 826 / 737,
  21922. bottom: 0.002
  21923. }
  21924. },
  21925. },
  21926. [
  21927. {
  21928. name: "Normal",
  21929. height: math.unit(5 + 4 / 12, "feet"),
  21930. default: true
  21931. },
  21932. ]
  21933. ))
  21934. characterMakers.push(() => makeCharacter(
  21935. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21936. {
  21937. side: {
  21938. height: math.unit(6 + 2 / 12, "feet"),
  21939. weight: math.unit(190, "lb"),
  21940. name: "Side",
  21941. image: {
  21942. source: "./media/characters/biscuit/side.svg",
  21943. extra: 858 / 791,
  21944. bottom: 0.044
  21945. }
  21946. },
  21947. },
  21948. [
  21949. {
  21950. name: "Normal",
  21951. height: math.unit(6 + 2 / 12, "feet"),
  21952. default: true
  21953. },
  21954. ]
  21955. ))
  21956. characterMakers.push(() => makeCharacter(
  21957. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21958. {
  21959. front: {
  21960. height: math.unit(5 + 2 / 12, "feet"),
  21961. weight: math.unit(120, "lb"),
  21962. name: "Front",
  21963. image: {
  21964. source: "./media/characters/poffin/front.svg",
  21965. extra: 786 / 680,
  21966. bottom: 0.005
  21967. }
  21968. },
  21969. },
  21970. [
  21971. {
  21972. name: "Normal",
  21973. height: math.unit(5 + 2 / 12, "feet"),
  21974. default: true
  21975. },
  21976. ]
  21977. ))
  21978. characterMakers.push(() => makeCharacter(
  21979. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21980. {
  21981. front: {
  21982. height: math.unit(6 + 3 / 12, "feet"),
  21983. weight: math.unit(519, "lb"),
  21984. name: "Front",
  21985. image: {
  21986. source: "./media/characters/dhari/front.svg",
  21987. extra: 1048 / 946,
  21988. bottom: 0.015
  21989. }
  21990. },
  21991. back: {
  21992. height: math.unit(6 + 3 / 12, "feet"),
  21993. weight: math.unit(519, "lb"),
  21994. name: "Back",
  21995. image: {
  21996. source: "./media/characters/dhari/back.svg",
  21997. extra: 1048 / 931,
  21998. bottom: 0.005
  21999. }
  22000. },
  22001. frontDressed: {
  22002. height: math.unit(6 + 3 / 12, "feet"),
  22003. weight: math.unit(519, "lb"),
  22004. name: "Front (Dressed)",
  22005. image: {
  22006. source: "./media/characters/dhari/front-dressed.svg",
  22007. extra: 1713 / 1546,
  22008. bottom: 0.02
  22009. }
  22010. },
  22011. backDressed: {
  22012. height: math.unit(6 + 3 / 12, "feet"),
  22013. weight: math.unit(519, "lb"),
  22014. name: "Back (Dressed)",
  22015. image: {
  22016. source: "./media/characters/dhari/back-dressed.svg",
  22017. extra: 1699 / 1537,
  22018. bottom: 0.01
  22019. }
  22020. },
  22021. maw: {
  22022. height: math.unit(0.95, "feet"),
  22023. name: "Maw",
  22024. image: {
  22025. source: "./media/characters/dhari/maw.svg"
  22026. }
  22027. },
  22028. wereFront: {
  22029. height: math.unit(12 + 8 / 12, "feet"),
  22030. weight: math.unit(4000, "lb"),
  22031. name: "Front (Were)",
  22032. image: {
  22033. source: "./media/characters/dhari/were-front.svg",
  22034. extra: 1065 / 969,
  22035. bottom: 0.015
  22036. }
  22037. },
  22038. wereBack: {
  22039. height: math.unit(12 + 8 / 12, "feet"),
  22040. weight: math.unit(4000, "lb"),
  22041. name: "Back (Were)",
  22042. image: {
  22043. source: "./media/characters/dhari/were-back.svg",
  22044. extra: 1065 / 969,
  22045. bottom: 0.012
  22046. }
  22047. },
  22048. wereMaw: {
  22049. height: math.unit(0.625, "meters"),
  22050. name: "Maw (Were)",
  22051. image: {
  22052. source: "./media/characters/dhari/were-maw.svg"
  22053. }
  22054. },
  22055. },
  22056. [
  22057. {
  22058. name: "Normal",
  22059. height: math.unit(6 + 3 / 12, "feet"),
  22060. default: true
  22061. },
  22062. ]
  22063. ))
  22064. characterMakers.push(() => makeCharacter(
  22065. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22066. {
  22067. anthro: {
  22068. height: math.unit(5 + 7 / 12, "feet"),
  22069. weight: math.unit(175, "lb"),
  22070. name: "Anthro",
  22071. image: {
  22072. source: "./media/characters/rena-dyne/anthro.svg",
  22073. extra: 1849 / 1785,
  22074. bottom: 0.005
  22075. }
  22076. },
  22077. taur: {
  22078. height: math.unit(15 + 6 / 12, "feet"),
  22079. weight: math.unit(8000, "lb"),
  22080. name: "Taur",
  22081. image: {
  22082. source: "./media/characters/rena-dyne/taur.svg",
  22083. extra: 2315 / 2234,
  22084. bottom: 0.033
  22085. }
  22086. },
  22087. },
  22088. [
  22089. {
  22090. name: "Normal",
  22091. height: math.unit(5 + 7 / 12, "feet"),
  22092. default: true
  22093. },
  22094. ]
  22095. ))
  22096. characterMakers.push(() => makeCharacter(
  22097. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22098. {
  22099. front: {
  22100. height: math.unit(8, "feet"),
  22101. weight: math.unit(600, "lb"),
  22102. name: "Front",
  22103. image: {
  22104. source: "./media/characters/weremeep/front.svg",
  22105. extra: 970/849,
  22106. bottom: 7/977
  22107. }
  22108. },
  22109. },
  22110. [
  22111. {
  22112. name: "Normal",
  22113. height: math.unit(8, "feet"),
  22114. default: true
  22115. },
  22116. {
  22117. name: "Lorg",
  22118. height: math.unit(12, "feet")
  22119. },
  22120. {
  22121. name: "Oh Lawd She Comin'",
  22122. height: math.unit(20, "feet")
  22123. },
  22124. ]
  22125. ))
  22126. characterMakers.push(() => makeCharacter(
  22127. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22128. {
  22129. front: {
  22130. height: math.unit(4, "feet"),
  22131. weight: math.unit(90, "lb"),
  22132. name: "Front",
  22133. image: {
  22134. source: "./media/characters/reza/front.svg",
  22135. extra: 1183 / 1111,
  22136. bottom: 0.017
  22137. }
  22138. },
  22139. back: {
  22140. height: math.unit(4, "feet"),
  22141. weight: math.unit(90, "lb"),
  22142. name: "Back",
  22143. image: {
  22144. source: "./media/characters/reza/back.svg",
  22145. extra: 1183 / 1111,
  22146. bottom: 0.01
  22147. }
  22148. },
  22149. drake: {
  22150. height: math.unit(30, "feet"),
  22151. weight: math.unit(246960, "lb"),
  22152. name: "Drake",
  22153. image: {
  22154. source: "./media/characters/reza/drake.svg",
  22155. extra: 2350 / 2024,
  22156. bottom: 60.7 / 2403
  22157. }
  22158. },
  22159. },
  22160. [
  22161. {
  22162. name: "Normal",
  22163. height: math.unit(4, "feet"),
  22164. default: true
  22165. },
  22166. ]
  22167. ))
  22168. characterMakers.push(() => makeCharacter(
  22169. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22170. {
  22171. side: {
  22172. height: math.unit(15, "feet"),
  22173. weight: math.unit(14, "tons"),
  22174. name: "Side",
  22175. image: {
  22176. source: "./media/characters/athea/side.svg",
  22177. extra: 960 / 540,
  22178. bottom: 0.003
  22179. }
  22180. },
  22181. sitting: {
  22182. height: math.unit(6 * 2.85, "feet"),
  22183. weight: math.unit(14, "tons"),
  22184. name: "Sitting",
  22185. image: {
  22186. source: "./media/characters/athea/sitting.svg",
  22187. extra: 621 / 581,
  22188. bottom: 0.075
  22189. }
  22190. },
  22191. maw: {
  22192. height: math.unit(7.59498031496063, "feet"),
  22193. name: "Maw",
  22194. image: {
  22195. source: "./media/characters/athea/maw.svg"
  22196. }
  22197. },
  22198. },
  22199. [
  22200. {
  22201. name: "Lap Cat",
  22202. height: math.unit(2.5, "feet")
  22203. },
  22204. {
  22205. name: "Minimacro",
  22206. height: math.unit(15, "feet"),
  22207. default: true
  22208. },
  22209. {
  22210. name: "Macro",
  22211. height: math.unit(120, "feet")
  22212. },
  22213. {
  22214. name: "Macro+",
  22215. height: math.unit(640, "feet")
  22216. },
  22217. {
  22218. name: "Colossus",
  22219. height: math.unit(2.2, "miles")
  22220. },
  22221. ]
  22222. ))
  22223. characterMakers.push(() => makeCharacter(
  22224. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22225. {
  22226. front: {
  22227. height: math.unit(8 + 8 / 12, "feet"),
  22228. weight: math.unit(130, "kg"),
  22229. name: "Front",
  22230. image: {
  22231. source: "./media/characters/seroko/front.svg",
  22232. extra: 1385 / 1280,
  22233. bottom: 0.025
  22234. }
  22235. },
  22236. back: {
  22237. height: math.unit(8 + 8 / 12, "feet"),
  22238. weight: math.unit(130, "kg"),
  22239. name: "Back",
  22240. image: {
  22241. source: "./media/characters/seroko/back.svg",
  22242. extra: 1369 / 1238,
  22243. bottom: 0.018
  22244. }
  22245. },
  22246. frontDressed: {
  22247. height: math.unit(8 + 8 / 12, "feet"),
  22248. weight: math.unit(130, "kg"),
  22249. name: "Front (Dressed)",
  22250. image: {
  22251. source: "./media/characters/seroko/front-dressed.svg",
  22252. extra: 1366 / 1275,
  22253. bottom: 0.03
  22254. }
  22255. },
  22256. },
  22257. [
  22258. {
  22259. name: "Normal",
  22260. height: math.unit(8 + 8 / 12, "feet"),
  22261. default: true
  22262. },
  22263. ]
  22264. ))
  22265. characterMakers.push(() => makeCharacter(
  22266. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22267. {
  22268. front: {
  22269. height: math.unit(5.5, "feet"),
  22270. weight: math.unit(160, "lb"),
  22271. name: "Front",
  22272. image: {
  22273. source: "./media/characters/quatzi/front.svg",
  22274. extra: 2346 / 2242,
  22275. bottom: 0.015
  22276. }
  22277. },
  22278. },
  22279. [
  22280. {
  22281. name: "Normal",
  22282. height: math.unit(5.5, "feet"),
  22283. default: true
  22284. },
  22285. {
  22286. name: "Big",
  22287. height: math.unit(7.7, "feet")
  22288. },
  22289. ]
  22290. ))
  22291. characterMakers.push(() => makeCharacter(
  22292. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22293. {
  22294. front: {
  22295. height: math.unit(5 + 11 / 12, "feet"),
  22296. weight: math.unit(180, "lb"),
  22297. name: "Front",
  22298. image: {
  22299. source: "./media/characters/sen/front.svg",
  22300. extra: 1321 / 1254,
  22301. bottom: 0.015
  22302. }
  22303. },
  22304. side: {
  22305. height: math.unit(5 + 11 / 12, "feet"),
  22306. weight: math.unit(180, "lb"),
  22307. name: "Side",
  22308. image: {
  22309. source: "./media/characters/sen/side.svg",
  22310. extra: 1321 / 1254,
  22311. bottom: 0.007
  22312. }
  22313. },
  22314. back: {
  22315. height: math.unit(5 + 11 / 12, "feet"),
  22316. weight: math.unit(180, "lb"),
  22317. name: "Back",
  22318. image: {
  22319. source: "./media/characters/sen/back.svg",
  22320. extra: 1321 / 1254
  22321. }
  22322. },
  22323. },
  22324. [
  22325. {
  22326. name: "Normal",
  22327. height: math.unit(5 + 11 / 12, "feet"),
  22328. default: true
  22329. },
  22330. ]
  22331. ))
  22332. characterMakers.push(() => makeCharacter(
  22333. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22334. {
  22335. front: {
  22336. height: math.unit(166.6, "cm"),
  22337. weight: math.unit(66.6, "kg"),
  22338. name: "Front",
  22339. image: {
  22340. source: "./media/characters/fruity/front.svg",
  22341. extra: 1510 / 1386,
  22342. bottom: 0.04
  22343. }
  22344. },
  22345. back: {
  22346. height: math.unit(166.6, "cm"),
  22347. weight: math.unit(66.6, "lb"),
  22348. name: "Back",
  22349. image: {
  22350. source: "./media/characters/fruity/back.svg",
  22351. extra: 1563 / 1435,
  22352. bottom: 0.005
  22353. }
  22354. },
  22355. },
  22356. [
  22357. {
  22358. name: "Normal",
  22359. height: math.unit(166.6, "cm"),
  22360. default: true
  22361. },
  22362. {
  22363. name: "Demonic",
  22364. height: math.unit(166.6, "feet")
  22365. },
  22366. ]
  22367. ))
  22368. characterMakers.push(() => makeCharacter(
  22369. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22370. {
  22371. side: {
  22372. height: math.unit(10, "feet"),
  22373. weight: math.unit(500, "lb"),
  22374. name: "Side",
  22375. image: {
  22376. source: "./media/characters/zost/side.svg",
  22377. extra: 2870/2533,
  22378. bottom: 252/3122
  22379. }
  22380. },
  22381. mawFront: {
  22382. height: math.unit(1.08, "meters"),
  22383. name: "Maw (Front)",
  22384. image: {
  22385. source: "./media/characters/zost/maw-front.svg"
  22386. }
  22387. },
  22388. mawSide: {
  22389. height: math.unit(2.66, "feet"),
  22390. name: "Maw (Side)",
  22391. image: {
  22392. source: "./media/characters/zost/maw-side.svg"
  22393. }
  22394. },
  22395. wingspan: {
  22396. height: math.unit(7.4, "feet"),
  22397. name: "Wingspan",
  22398. image: {
  22399. source: "./media/characters/zost/wingspan.svg"
  22400. }
  22401. },
  22402. },
  22403. [
  22404. {
  22405. name: "Normal",
  22406. height: math.unit(10, "feet"),
  22407. default: true
  22408. },
  22409. ]
  22410. ))
  22411. characterMakers.push(() => makeCharacter(
  22412. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22413. {
  22414. front: {
  22415. height: math.unit(5 + 4 / 12, "feet"),
  22416. weight: math.unit(120, "lb"),
  22417. name: "Front",
  22418. image: {
  22419. source: "./media/characters/luci/front.svg",
  22420. extra: 1985 / 1884,
  22421. bottom: 0.04
  22422. }
  22423. },
  22424. back: {
  22425. height: math.unit(5 + 4 / 12, "feet"),
  22426. weight: math.unit(120, "lb"),
  22427. name: "Back",
  22428. image: {
  22429. source: "./media/characters/luci/back.svg",
  22430. extra: 1892 / 1791,
  22431. bottom: 0.002
  22432. }
  22433. },
  22434. },
  22435. [
  22436. {
  22437. name: "Normal",
  22438. height: math.unit(5 + 4 / 12, "feet"),
  22439. default: true
  22440. },
  22441. ]
  22442. ))
  22443. characterMakers.push(() => makeCharacter(
  22444. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22445. {
  22446. front: {
  22447. height: math.unit(1500, "feet"),
  22448. weight: math.unit(3.8e6, "tons"),
  22449. name: "Front",
  22450. image: {
  22451. source: "./media/characters/2th/front.svg",
  22452. extra: 3489 / 3350,
  22453. bottom: 0.1
  22454. }
  22455. },
  22456. foot: {
  22457. height: math.unit(461, "feet"),
  22458. name: "Foot",
  22459. image: {
  22460. source: "./media/characters/2th/foot.svg"
  22461. }
  22462. },
  22463. },
  22464. [
  22465. {
  22466. name: "\"Micro\"",
  22467. height: math.unit(15 + 7 / 12, "feet")
  22468. },
  22469. {
  22470. name: "Normal",
  22471. height: math.unit(1500, "feet"),
  22472. default: true
  22473. },
  22474. {
  22475. name: "Macro",
  22476. height: math.unit(5000, "feet")
  22477. },
  22478. {
  22479. name: "Megamacro",
  22480. height: math.unit(15, "miles")
  22481. },
  22482. {
  22483. name: "Gigamacro",
  22484. height: math.unit(4000, "miles")
  22485. },
  22486. {
  22487. name: "Galactic",
  22488. height: math.unit(50, "AU")
  22489. },
  22490. ]
  22491. ))
  22492. characterMakers.push(() => makeCharacter(
  22493. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22494. {
  22495. front: {
  22496. height: math.unit(5 + 6 / 12, "feet"),
  22497. weight: math.unit(220, "lb"),
  22498. name: "Front",
  22499. image: {
  22500. source: "./media/characters/amethyst/front.svg",
  22501. extra: 2078 / 2040,
  22502. bottom: 0.045
  22503. }
  22504. },
  22505. back: {
  22506. height: math.unit(5 + 6 / 12, "feet"),
  22507. weight: math.unit(220, "lb"),
  22508. name: "Back",
  22509. image: {
  22510. source: "./media/characters/amethyst/back.svg",
  22511. extra: 2021 / 1989,
  22512. bottom: 0.02
  22513. }
  22514. },
  22515. },
  22516. [
  22517. {
  22518. name: "Normal",
  22519. height: math.unit(5 + 6 / 12, "feet"),
  22520. default: true
  22521. },
  22522. ]
  22523. ))
  22524. characterMakers.push(() => makeCharacter(
  22525. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22526. {
  22527. front: {
  22528. height: math.unit(4 + 11 / 12, "feet"),
  22529. weight: math.unit(120, "lb"),
  22530. name: "Front",
  22531. image: {
  22532. source: "./media/characters/yumi-akiyama/front.svg",
  22533. extra: 1327 / 1235,
  22534. bottom: 0.02
  22535. }
  22536. },
  22537. back: {
  22538. height: math.unit(4 + 11 / 12, "feet"),
  22539. weight: math.unit(120, "lb"),
  22540. name: "Back",
  22541. image: {
  22542. source: "./media/characters/yumi-akiyama/back.svg",
  22543. extra: 1287 / 1245,
  22544. bottom: 0.002
  22545. }
  22546. },
  22547. },
  22548. [
  22549. {
  22550. name: "Galactic",
  22551. height: math.unit(50, "galaxies"),
  22552. default: true
  22553. },
  22554. {
  22555. name: "Universal",
  22556. height: math.unit(100, "universes")
  22557. },
  22558. ]
  22559. ))
  22560. characterMakers.push(() => makeCharacter(
  22561. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22562. {
  22563. front: {
  22564. height: math.unit(8, "feet"),
  22565. weight: math.unit(500, "lb"),
  22566. name: "Front",
  22567. image: {
  22568. source: "./media/characters/rifter-yrmori/front.svg",
  22569. extra: 1180 / 1125,
  22570. bottom: 0.02
  22571. }
  22572. },
  22573. back: {
  22574. height: math.unit(8, "feet"),
  22575. weight: math.unit(500, "lb"),
  22576. name: "Back",
  22577. image: {
  22578. source: "./media/characters/rifter-yrmori/back.svg",
  22579. extra: 1190 / 1145,
  22580. bottom: 0.001
  22581. }
  22582. },
  22583. wings: {
  22584. height: math.unit(7.75, "feet"),
  22585. weight: math.unit(500, "lb"),
  22586. name: "Wings",
  22587. image: {
  22588. source: "./media/characters/rifter-yrmori/wings.svg",
  22589. extra: 1357 / 1285
  22590. }
  22591. },
  22592. maw: {
  22593. height: math.unit(0.8, "feet"),
  22594. name: "Maw",
  22595. image: {
  22596. source: "./media/characters/rifter-yrmori/maw.svg"
  22597. }
  22598. },
  22599. mawfront: {
  22600. height: math.unit(1.45, "feet"),
  22601. name: "Maw (Front)",
  22602. image: {
  22603. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22604. }
  22605. },
  22606. },
  22607. [
  22608. {
  22609. name: "Normal",
  22610. height: math.unit(8, "feet"),
  22611. default: true
  22612. },
  22613. {
  22614. name: "Macro",
  22615. height: math.unit(42, "meters")
  22616. },
  22617. ]
  22618. ))
  22619. characterMakers.push(() => makeCharacter(
  22620. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22621. {
  22622. were: {
  22623. height: math.unit(25 + 6 / 12, "feet"),
  22624. weight: math.unit(10000, "lb"),
  22625. name: "Were",
  22626. image: {
  22627. source: "./media/characters/tahajin/were.svg",
  22628. extra: 801 / 770,
  22629. bottom: 0.042
  22630. }
  22631. },
  22632. aquatic: {
  22633. height: math.unit(6 + 4 / 12, "feet"),
  22634. weight: math.unit(160, "lb"),
  22635. name: "Aquatic",
  22636. image: {
  22637. source: "./media/characters/tahajin/aquatic.svg",
  22638. extra: 572 / 542,
  22639. bottom: 0.04
  22640. }
  22641. },
  22642. chow: {
  22643. height: math.unit(8 + 11 / 12, "feet"),
  22644. weight: math.unit(450, "lb"),
  22645. name: "Chow",
  22646. image: {
  22647. source: "./media/characters/tahajin/chow.svg",
  22648. extra: 660 / 640,
  22649. bottom: 0.015
  22650. }
  22651. },
  22652. demiNaga: {
  22653. height: math.unit(6 + 8 / 12, "feet"),
  22654. weight: math.unit(300, "lb"),
  22655. name: "Demi Naga",
  22656. image: {
  22657. source: "./media/characters/tahajin/demi-naga.svg",
  22658. extra: 643 / 615,
  22659. bottom: 0.1
  22660. }
  22661. },
  22662. data: {
  22663. height: math.unit(5, "inches"),
  22664. weight: math.unit(0.1, "lb"),
  22665. name: "Data",
  22666. image: {
  22667. source: "./media/characters/tahajin/data.svg"
  22668. }
  22669. },
  22670. fluu: {
  22671. height: math.unit(5 + 7 / 12, "feet"),
  22672. weight: math.unit(140, "lb"),
  22673. name: "Fluu",
  22674. image: {
  22675. source: "./media/characters/tahajin/fluu.svg",
  22676. extra: 628 / 592,
  22677. bottom: 0.02
  22678. }
  22679. },
  22680. starWarrior: {
  22681. height: math.unit(4 + 5 / 12, "feet"),
  22682. weight: math.unit(50, "lb"),
  22683. name: "Star Warrior",
  22684. image: {
  22685. source: "./media/characters/tahajin/star-warrior.svg"
  22686. }
  22687. },
  22688. },
  22689. [
  22690. {
  22691. name: "Normal",
  22692. height: math.unit(25 + 6 / 12, "feet"),
  22693. default: true
  22694. },
  22695. ]
  22696. ))
  22697. characterMakers.push(() => makeCharacter(
  22698. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22699. {
  22700. front: {
  22701. height: math.unit(8, "feet"),
  22702. weight: math.unit(350, "lb"),
  22703. name: "Front",
  22704. image: {
  22705. source: "./media/characters/gabira/front.svg",
  22706. extra: 1261/1154,
  22707. bottom: 51/1312
  22708. }
  22709. },
  22710. back: {
  22711. height: math.unit(8, "feet"),
  22712. weight: math.unit(350, "lb"),
  22713. name: "Back",
  22714. image: {
  22715. source: "./media/characters/gabira/back.svg",
  22716. extra: 1265/1163,
  22717. bottom: 46/1311
  22718. }
  22719. },
  22720. head: {
  22721. height: math.unit(2.85, "feet"),
  22722. name: "Head",
  22723. image: {
  22724. source: "./media/characters/gabira/head.svg"
  22725. }
  22726. },
  22727. },
  22728. [
  22729. {
  22730. name: "Normal",
  22731. height: math.unit(8, "feet"),
  22732. default: true
  22733. },
  22734. ]
  22735. ))
  22736. characterMakers.push(() => makeCharacter(
  22737. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22738. {
  22739. front: {
  22740. height: math.unit(5 + 3 / 12, "feet"),
  22741. weight: math.unit(137, "lb"),
  22742. name: "Front",
  22743. image: {
  22744. source: "./media/characters/sasha-katraine/front.svg",
  22745. extra: 1745/1694,
  22746. bottom: 37/1782
  22747. }
  22748. },
  22749. back: {
  22750. height: math.unit(5 + 3 / 12, "feet"),
  22751. weight: math.unit(137, "lb"),
  22752. name: "Back",
  22753. image: {
  22754. source: "./media/characters/sasha-katraine/back.svg",
  22755. extra: 1776/1699,
  22756. bottom: 26/1802
  22757. }
  22758. },
  22759. },
  22760. [
  22761. {
  22762. name: "Micro",
  22763. height: math.unit(5, "inches")
  22764. },
  22765. {
  22766. name: "Normal",
  22767. height: math.unit(5 + 3 / 12, "feet"),
  22768. default: true
  22769. },
  22770. ]
  22771. ))
  22772. characterMakers.push(() => makeCharacter(
  22773. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22774. {
  22775. side: {
  22776. height: math.unit(4, "inches"),
  22777. weight: math.unit(200, "grams"),
  22778. name: "Side",
  22779. image: {
  22780. source: "./media/characters/der/side.svg",
  22781. extra: 719 / 400,
  22782. bottom: 30.6 / 749.9187
  22783. }
  22784. },
  22785. },
  22786. [
  22787. {
  22788. name: "Micro",
  22789. height: math.unit(4, "inches"),
  22790. default: true
  22791. },
  22792. ]
  22793. ))
  22794. characterMakers.push(() => makeCharacter(
  22795. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22796. {
  22797. side: {
  22798. height: math.unit(30, "meters"),
  22799. weight: math.unit(700, "tonnes"),
  22800. name: "Side",
  22801. image: {
  22802. source: "./media/characters/fixerdragon/side.svg",
  22803. extra: (1293.0514 - 116.03) / 1106.86,
  22804. bottom: 116.03 / 1293.0514
  22805. }
  22806. },
  22807. },
  22808. [
  22809. {
  22810. name: "Planck",
  22811. height: math.unit(1.6e-35, "meters")
  22812. },
  22813. {
  22814. name: "Micro",
  22815. height: math.unit(0.4, "meters")
  22816. },
  22817. {
  22818. name: "Normal",
  22819. height: math.unit(30, "meters"),
  22820. default: true
  22821. },
  22822. {
  22823. name: "Megamacro",
  22824. height: math.unit(1.2, "megameters")
  22825. },
  22826. {
  22827. name: "Teramacro",
  22828. height: math.unit(130, "terameters")
  22829. },
  22830. {
  22831. name: "Yottamacro",
  22832. height: math.unit(6200, "yottameters")
  22833. },
  22834. ]
  22835. ));
  22836. characterMakers.push(() => makeCharacter(
  22837. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22838. {
  22839. front: {
  22840. height: math.unit(8, "feet"),
  22841. weight: math.unit(250, "lb"),
  22842. name: "Front",
  22843. image: {
  22844. source: "./media/characters/kite/front.svg",
  22845. extra: 2796 / 2659,
  22846. bottom: 0.002
  22847. }
  22848. },
  22849. },
  22850. [
  22851. {
  22852. name: "Normal",
  22853. height: math.unit(8, "feet"),
  22854. default: true
  22855. },
  22856. {
  22857. name: "Macro",
  22858. height: math.unit(360, "feet")
  22859. },
  22860. {
  22861. name: "Megamacro",
  22862. height: math.unit(1500, "feet")
  22863. },
  22864. ]
  22865. ))
  22866. characterMakers.push(() => makeCharacter(
  22867. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22868. {
  22869. front: {
  22870. height: math.unit(5 + 11/12, "feet"),
  22871. weight: math.unit(170, "lb"),
  22872. name: "Front",
  22873. image: {
  22874. source: "./media/characters/poojawa-vynar/front.svg",
  22875. extra: 1735/1585,
  22876. bottom: 96/1831
  22877. }
  22878. },
  22879. back: {
  22880. height: math.unit(5 + 11/12, "feet"),
  22881. weight: math.unit(170, "lb"),
  22882. name: "Back",
  22883. image: {
  22884. source: "./media/characters/poojawa-vynar/back.svg",
  22885. extra: 1749/1607,
  22886. bottom: 28/1777
  22887. }
  22888. },
  22889. male: {
  22890. height: math.unit(5 + 11/12, "feet"),
  22891. weight: math.unit(170, "lb"),
  22892. name: "Male",
  22893. image: {
  22894. source: "./media/characters/poojawa-vynar/male.svg",
  22895. extra: 1855/1713,
  22896. bottom: 63/1918
  22897. }
  22898. },
  22899. taur: {
  22900. height: math.unit(5 + 11/12, "feet"),
  22901. weight: math.unit(170, "lb"),
  22902. name: "Taur",
  22903. image: {
  22904. source: "./media/characters/poojawa-vynar/taur.svg",
  22905. extra: 1151/1059,
  22906. bottom: 356/1507
  22907. }
  22908. },
  22909. frontDressed: {
  22910. height: math.unit(5 + 11/12, "feet"),
  22911. weight: math.unit(170, "lb"),
  22912. name: "Front (Dressed)",
  22913. image: {
  22914. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22915. extra: 1735/1585,
  22916. bottom: 96/1831
  22917. }
  22918. },
  22919. backDressed: {
  22920. height: math.unit(5 + 11/12, "feet"),
  22921. weight: math.unit(170, "lb"),
  22922. name: "Back (Dressed)",
  22923. image: {
  22924. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22925. extra: 1749/1607,
  22926. bottom: 28/1777
  22927. }
  22928. },
  22929. maleDressed: {
  22930. height: math.unit(5 + 11/12, "feet"),
  22931. weight: math.unit(170, "lb"),
  22932. name: "Male (Dressed)",
  22933. image: {
  22934. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22935. extra: 1855/1713,
  22936. bottom: 63/1918
  22937. }
  22938. },
  22939. taurDressed: {
  22940. height: math.unit(5 + 11/12, "feet"),
  22941. weight: math.unit(170, "lb"),
  22942. name: "Taur (Dressed)",
  22943. image: {
  22944. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22945. extra: 1151/1059,
  22946. bottom: 356/1507
  22947. }
  22948. },
  22949. maw: {
  22950. height: math.unit(1.46, "feet"),
  22951. name: "Maw",
  22952. image: {
  22953. source: "./media/characters/poojawa-vynar/maw.svg"
  22954. }
  22955. },
  22956. head: {
  22957. height: math.unit(2.34, "feet"),
  22958. name: "Head",
  22959. image: {
  22960. source: "./media/characters/poojawa-vynar/head.svg"
  22961. }
  22962. },
  22963. paw: {
  22964. height: math.unit(1.61, "feet"),
  22965. name: "Paw",
  22966. image: {
  22967. source: "./media/characters/poojawa-vynar/paw.svg"
  22968. }
  22969. },
  22970. pawToering: {
  22971. height: math.unit(1.72, "feet"),
  22972. name: "Paw (Toering)",
  22973. image: {
  22974. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22975. }
  22976. },
  22977. toering: {
  22978. height: math.unit(2.9, "inches"),
  22979. name: "Toering",
  22980. image: {
  22981. source: "./media/characters/poojawa-vynar/toering.svg"
  22982. }
  22983. },
  22984. shaft: {
  22985. height: math.unit(0.625, "feet"),
  22986. name: "Shaft",
  22987. image: {
  22988. source: "./media/characters/poojawa-vynar/shaft.svg"
  22989. }
  22990. },
  22991. spade: {
  22992. height: math.unit(0.42, "feet"),
  22993. name: "Spade",
  22994. image: {
  22995. source: "./media/characters/poojawa-vynar/spade.svg"
  22996. }
  22997. },
  22998. },
  22999. [
  23000. {
  23001. name: "Shortstack",
  23002. height: math.unit(4, "feet")
  23003. },
  23004. {
  23005. name: "Normal",
  23006. height: math.unit(5 + 11 / 12, "feet"),
  23007. default: true
  23008. },
  23009. {
  23010. name: "Tauric",
  23011. height: math.unit(4, "meters")
  23012. },
  23013. ]
  23014. ))
  23015. characterMakers.push(() => makeCharacter(
  23016. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23017. {
  23018. front: {
  23019. height: math.unit(293, "meters"),
  23020. weight: math.unit(70400, "tons"),
  23021. name: "Front",
  23022. image: {
  23023. source: "./media/characters/violette/front.svg",
  23024. extra: 1227 / 1180,
  23025. bottom: 0.005
  23026. }
  23027. },
  23028. back: {
  23029. height: math.unit(293, "meters"),
  23030. weight: math.unit(70400, "tons"),
  23031. name: "Back",
  23032. image: {
  23033. source: "./media/characters/violette/back.svg",
  23034. extra: 1227 / 1180,
  23035. bottom: 0.005
  23036. }
  23037. },
  23038. },
  23039. [
  23040. {
  23041. name: "Macro",
  23042. height: math.unit(293, "meters"),
  23043. default: true
  23044. },
  23045. ]
  23046. ))
  23047. characterMakers.push(() => makeCharacter(
  23048. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23049. {
  23050. front: {
  23051. height: math.unit(1050, "feet"),
  23052. weight: math.unit(200000, "tons"),
  23053. name: "Front",
  23054. image: {
  23055. source: "./media/characters/alessandra/front.svg",
  23056. extra: 960 / 912,
  23057. bottom: 0.06
  23058. }
  23059. },
  23060. },
  23061. [
  23062. {
  23063. name: "Macro",
  23064. height: math.unit(1050, "feet")
  23065. },
  23066. {
  23067. name: "Macro+",
  23068. height: math.unit(900, "meters"),
  23069. default: true
  23070. },
  23071. ]
  23072. ))
  23073. characterMakers.push(() => makeCharacter(
  23074. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23075. {
  23076. front: {
  23077. height: math.unit(5, "feet"),
  23078. weight: math.unit(187, "lb"),
  23079. name: "Front",
  23080. image: {
  23081. source: "./media/characters/person/front.svg",
  23082. extra: 3087 / 2945,
  23083. bottom: 91 / 3181
  23084. }
  23085. },
  23086. },
  23087. [
  23088. {
  23089. name: "Micro",
  23090. height: math.unit(3, "inches")
  23091. },
  23092. {
  23093. name: "Normal",
  23094. height: math.unit(5, "feet"),
  23095. default: true
  23096. },
  23097. {
  23098. name: "Macro",
  23099. height: math.unit(90, "feet")
  23100. },
  23101. {
  23102. name: "Max Size",
  23103. height: math.unit(280, "feet")
  23104. },
  23105. ]
  23106. ))
  23107. characterMakers.push(() => makeCharacter(
  23108. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23109. {
  23110. front: {
  23111. height: math.unit(4.5, "meters"),
  23112. weight: math.unit(3200, "lb"),
  23113. name: "Front",
  23114. image: {
  23115. source: "./media/characters/ty/front.svg",
  23116. extra: 1038 / 960,
  23117. bottom: 31.156 / 1068
  23118. }
  23119. },
  23120. back: {
  23121. height: math.unit(4.5, "meters"),
  23122. weight: math.unit(3200, "lb"),
  23123. name: "Back",
  23124. image: {
  23125. source: "./media/characters/ty/back.svg",
  23126. extra: 1044 / 966,
  23127. bottom: 7.48 / 1049
  23128. }
  23129. },
  23130. },
  23131. [
  23132. {
  23133. name: "Normal",
  23134. height: math.unit(4.5, "meters"),
  23135. default: true
  23136. },
  23137. ]
  23138. ))
  23139. characterMakers.push(() => makeCharacter(
  23140. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23141. {
  23142. front: {
  23143. height: math.unit(5 + 4 / 12, "feet"),
  23144. weight: math.unit(115, "lb"),
  23145. name: "Front",
  23146. image: {
  23147. source: "./media/characters/rocky/front.svg",
  23148. extra: 1012 / 975,
  23149. bottom: 54 / 1066
  23150. }
  23151. },
  23152. },
  23153. [
  23154. {
  23155. name: "Normal",
  23156. height: math.unit(5 + 4 / 12, "feet"),
  23157. default: true
  23158. },
  23159. ]
  23160. ))
  23161. characterMakers.push(() => makeCharacter(
  23162. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23163. {
  23164. upright: {
  23165. height: math.unit(6, "meters"),
  23166. weight: math.unit(4000, "kg"),
  23167. name: "Upright",
  23168. image: {
  23169. source: "./media/characters/ruin/upright.svg",
  23170. extra: 668 / 661,
  23171. bottom: 42 / 799.8396
  23172. }
  23173. },
  23174. },
  23175. [
  23176. {
  23177. name: "Normal",
  23178. height: math.unit(6, "meters"),
  23179. default: true
  23180. },
  23181. ]
  23182. ))
  23183. characterMakers.push(() => makeCharacter(
  23184. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23185. {
  23186. front: {
  23187. height: math.unit(5, "feet"),
  23188. weight: math.unit(106, "lb"),
  23189. name: "Front",
  23190. image: {
  23191. source: "./media/characters/robin/front.svg",
  23192. extra: 862 / 799,
  23193. bottom: 42.4 / 914.8856
  23194. }
  23195. },
  23196. },
  23197. [
  23198. {
  23199. name: "Normal",
  23200. height: math.unit(5, "feet"),
  23201. default: true
  23202. },
  23203. ]
  23204. ))
  23205. characterMakers.push(() => makeCharacter(
  23206. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23207. {
  23208. side: {
  23209. height: math.unit(3, "feet"),
  23210. weight: math.unit(225, "lb"),
  23211. name: "Side",
  23212. image: {
  23213. source: "./media/characters/saian/side.svg",
  23214. extra: 566 / 356,
  23215. bottom: 79.7 / 643
  23216. }
  23217. },
  23218. maw: {
  23219. height: math.unit(2.85, "feet"),
  23220. name: "Maw",
  23221. image: {
  23222. source: "./media/characters/saian/maw.svg"
  23223. }
  23224. },
  23225. },
  23226. [
  23227. {
  23228. name: "Normal",
  23229. height: math.unit(3, "feet"),
  23230. default: true
  23231. },
  23232. ]
  23233. ))
  23234. characterMakers.push(() => makeCharacter(
  23235. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23236. {
  23237. side: {
  23238. height: math.unit(8, "feet"),
  23239. weight: math.unit(300, "lb"),
  23240. name: "Side",
  23241. image: {
  23242. source: "./media/characters/equus-silvermane/side.svg",
  23243. extra: 2176 / 2050,
  23244. bottom: 65.7 / 2245
  23245. }
  23246. },
  23247. front: {
  23248. height: math.unit(8, "feet"),
  23249. weight: math.unit(300, "lb"),
  23250. name: "Front",
  23251. image: {
  23252. source: "./media/characters/equus-silvermane/front.svg",
  23253. extra: 4633 / 4400,
  23254. bottom: 71.3 / 4706.915
  23255. }
  23256. },
  23257. sideStepping: {
  23258. height: math.unit(8, "feet"),
  23259. weight: math.unit(300, "lb"),
  23260. name: "Side (Stepping)",
  23261. image: {
  23262. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23263. extra: 1968 / 1860,
  23264. bottom: 16.4 / 1989
  23265. }
  23266. },
  23267. },
  23268. [
  23269. {
  23270. name: "Normal",
  23271. height: math.unit(8, "feet")
  23272. },
  23273. {
  23274. name: "Minimacro",
  23275. height: math.unit(75, "feet"),
  23276. default: true
  23277. },
  23278. {
  23279. name: "Macro",
  23280. height: math.unit(150, "feet")
  23281. },
  23282. {
  23283. name: "Macro+",
  23284. height: math.unit(1000, "feet")
  23285. },
  23286. {
  23287. name: "Megamacro",
  23288. height: math.unit(1, "mile")
  23289. },
  23290. ]
  23291. ))
  23292. characterMakers.push(() => makeCharacter(
  23293. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23294. {
  23295. side: {
  23296. height: math.unit(20, "feet"),
  23297. weight: math.unit(30000, "kg"),
  23298. name: "Side",
  23299. image: {
  23300. source: "./media/characters/windar/side.svg",
  23301. extra: 1491 / 1248,
  23302. bottom: 82.56 / 1568
  23303. }
  23304. },
  23305. },
  23306. [
  23307. {
  23308. name: "Normal",
  23309. height: math.unit(20, "feet"),
  23310. default: true
  23311. },
  23312. ]
  23313. ))
  23314. characterMakers.push(() => makeCharacter(
  23315. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23316. {
  23317. side: {
  23318. height: math.unit(15.66, "feet"),
  23319. weight: math.unit(150, "lb"),
  23320. name: "Side",
  23321. image: {
  23322. source: "./media/characters/melody/side.svg",
  23323. extra: 1097 / 944,
  23324. bottom: 11.8 / 1109
  23325. }
  23326. },
  23327. sideOutfit: {
  23328. height: math.unit(15.66, "feet"),
  23329. weight: math.unit(150, "lb"),
  23330. name: "Side (Outfit)",
  23331. image: {
  23332. source: "./media/characters/melody/side-outfit.svg",
  23333. extra: 1097 / 944,
  23334. bottom: 11.8 / 1109
  23335. }
  23336. },
  23337. },
  23338. [
  23339. {
  23340. name: "Normal",
  23341. height: math.unit(15.66, "feet"),
  23342. default: true
  23343. },
  23344. ]
  23345. ))
  23346. characterMakers.push(() => makeCharacter(
  23347. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23348. {
  23349. armoredFront: {
  23350. height: math.unit(8, "feet"),
  23351. weight: math.unit(325, "lb"),
  23352. name: "Front",
  23353. image: {
  23354. source: "./media/characters/windera/armored-front.svg",
  23355. extra: 1830/1598,
  23356. bottom: 151/1981
  23357. },
  23358. form: "armored",
  23359. default: true
  23360. },
  23361. macroFront: {
  23362. height: math.unit(70, "feet"),
  23363. weight: math.unit(315453, "lb"),
  23364. name: "Front",
  23365. image: {
  23366. source: "./media/characters/windera/macro-front.svg",
  23367. extra: 963/883,
  23368. bottom: 23/986
  23369. },
  23370. form: "macro",
  23371. default: true
  23372. },
  23373. },
  23374. [
  23375. {
  23376. name: "Normal",
  23377. height: math.unit(8, "feet"),
  23378. default: true,
  23379. form: "armored"
  23380. },
  23381. {
  23382. name: "Normal",
  23383. height: math.unit(70, "feet"),
  23384. default: true,
  23385. form: "macro"
  23386. },
  23387. ],
  23388. {
  23389. "armored": {
  23390. name: "Armored",
  23391. default: true
  23392. },
  23393. "macro": {
  23394. name: "Macro",
  23395. },
  23396. }
  23397. ))
  23398. characterMakers.push(() => makeCharacter(
  23399. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23400. {
  23401. front: {
  23402. height: math.unit(28.75, "feet"),
  23403. weight: math.unit(2000, "kg"),
  23404. name: "Front",
  23405. image: {
  23406. source: "./media/characters/sonear/front.svg",
  23407. extra: 1041.1 / 964.9,
  23408. bottom: 53.7 / 1096.6
  23409. }
  23410. },
  23411. },
  23412. [
  23413. {
  23414. name: "Normal",
  23415. height: math.unit(28.75, "feet"),
  23416. default: true
  23417. },
  23418. ]
  23419. ))
  23420. characterMakers.push(() => makeCharacter(
  23421. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23422. {
  23423. side: {
  23424. height: math.unit(25.5, "feet"),
  23425. weight: math.unit(23000, "kg"),
  23426. name: "Side",
  23427. image: {
  23428. source: "./media/characters/kanara/side.svg"
  23429. }
  23430. },
  23431. },
  23432. [
  23433. {
  23434. name: "Normal",
  23435. height: math.unit(25.5, "feet"),
  23436. default: true
  23437. },
  23438. ]
  23439. ))
  23440. characterMakers.push(() => makeCharacter(
  23441. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23442. {
  23443. side: {
  23444. height: math.unit(10, "feet"),
  23445. weight: math.unit(1000, "kg"),
  23446. name: "Side",
  23447. image: {
  23448. source: "./media/characters/ereus/side.svg",
  23449. extra: 1157 / 959,
  23450. bottom: 153 / 1312.5
  23451. }
  23452. },
  23453. },
  23454. [
  23455. {
  23456. name: "Normal",
  23457. height: math.unit(10, "feet"),
  23458. default: true
  23459. },
  23460. ]
  23461. ))
  23462. characterMakers.push(() => makeCharacter(
  23463. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23464. {
  23465. side: {
  23466. height: math.unit(4.5, "feet"),
  23467. weight: math.unit(500, "lb"),
  23468. name: "Side",
  23469. image: {
  23470. source: "./media/characters/e-ter/side.svg",
  23471. extra: 1550 / 1248,
  23472. bottom: 146 / 1694
  23473. }
  23474. },
  23475. },
  23476. [
  23477. {
  23478. name: "Normal",
  23479. height: math.unit(4.5, "feet"),
  23480. default: true
  23481. },
  23482. ]
  23483. ))
  23484. characterMakers.push(() => makeCharacter(
  23485. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23486. {
  23487. side: {
  23488. height: math.unit(9.7, "feet"),
  23489. weight: math.unit(4000, "kg"),
  23490. name: "Side",
  23491. image: {
  23492. source: "./media/characters/yamie/side.svg"
  23493. }
  23494. },
  23495. },
  23496. [
  23497. {
  23498. name: "Normal",
  23499. height: math.unit(9.7, "feet"),
  23500. default: true
  23501. },
  23502. ]
  23503. ))
  23504. characterMakers.push(() => makeCharacter(
  23505. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23506. {
  23507. front: {
  23508. height: math.unit(50, "feet"),
  23509. weight: math.unit(50000, "kg"),
  23510. name: "Front",
  23511. image: {
  23512. source: "./media/characters/anders/front.svg",
  23513. extra: 570 / 539,
  23514. bottom: 14.7 / 586.7
  23515. }
  23516. },
  23517. },
  23518. [
  23519. {
  23520. name: "Large",
  23521. height: math.unit(50, "feet")
  23522. },
  23523. {
  23524. name: "Macro",
  23525. height: math.unit(2000, "feet"),
  23526. default: true
  23527. },
  23528. {
  23529. name: "Megamacro",
  23530. height: math.unit(12, "miles")
  23531. },
  23532. ]
  23533. ))
  23534. characterMakers.push(() => makeCharacter(
  23535. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23536. {
  23537. front: {
  23538. height: math.unit(7 + 2 / 12, "feet"),
  23539. weight: math.unit(300, "lb"),
  23540. name: "Front",
  23541. image: {
  23542. source: "./media/characters/reban/front.svg",
  23543. extra: 1287/1212,
  23544. bottom: 148/1435
  23545. }
  23546. },
  23547. head: {
  23548. height: math.unit(1.95, "feet"),
  23549. name: "Head",
  23550. image: {
  23551. source: "./media/characters/reban/head.svg"
  23552. }
  23553. },
  23554. maw: {
  23555. height: math.unit(0.95, "feet"),
  23556. name: "Maw",
  23557. image: {
  23558. source: "./media/characters/reban/maw.svg"
  23559. }
  23560. },
  23561. foot: {
  23562. height: math.unit(1.65, "feet"),
  23563. name: "Foot",
  23564. image: {
  23565. source: "./media/characters/reban/foot.svg"
  23566. }
  23567. },
  23568. dick: {
  23569. height: math.unit(7 / 5, "feet"),
  23570. name: "Dick",
  23571. image: {
  23572. source: "./media/characters/reban/dick.svg"
  23573. }
  23574. },
  23575. },
  23576. [
  23577. {
  23578. name: "Natural Height",
  23579. height: math.unit(7 + 2 / 12, "feet")
  23580. },
  23581. {
  23582. name: "Macro",
  23583. height: math.unit(500, "feet"),
  23584. default: true
  23585. },
  23586. {
  23587. name: "Canon Height",
  23588. height: math.unit(50, "AU")
  23589. },
  23590. ]
  23591. ))
  23592. characterMakers.push(() => makeCharacter(
  23593. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23594. {
  23595. front: {
  23596. height: math.unit(6, "feet"),
  23597. weight: math.unit(150, "lb"),
  23598. name: "Front",
  23599. image: {
  23600. source: "./media/characters/terrance-keayes/front.svg",
  23601. extra: 1.005,
  23602. bottom: 151 / 1615
  23603. }
  23604. },
  23605. side: {
  23606. height: math.unit(6, "feet"),
  23607. weight: math.unit(150, "lb"),
  23608. name: "Side",
  23609. image: {
  23610. source: "./media/characters/terrance-keayes/side.svg",
  23611. extra: 1.005,
  23612. bottom: 129.4 / 1544
  23613. }
  23614. },
  23615. back: {
  23616. height: math.unit(6, "feet"),
  23617. weight: math.unit(150, "lb"),
  23618. name: "Back",
  23619. image: {
  23620. source: "./media/characters/terrance-keayes/back.svg",
  23621. extra: 1.005,
  23622. bottom: 58.4 / 1557.3
  23623. }
  23624. },
  23625. dick: {
  23626. height: math.unit(6 * 0.208, "feet"),
  23627. name: "Dick",
  23628. image: {
  23629. source: "./media/characters/terrance-keayes/dick.svg"
  23630. }
  23631. },
  23632. },
  23633. [
  23634. {
  23635. name: "Canon Height",
  23636. height: math.unit(35, "miles"),
  23637. default: true
  23638. },
  23639. ]
  23640. ))
  23641. characterMakers.push(() => makeCharacter(
  23642. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23643. {
  23644. front: {
  23645. height: math.unit(6, "feet"),
  23646. weight: math.unit(150, "lb"),
  23647. name: "Front",
  23648. image: {
  23649. source: "./media/characters/ofelia/front.svg",
  23650. extra: 1130/1117,
  23651. bottom: 91/1221
  23652. }
  23653. },
  23654. back: {
  23655. height: math.unit(6, "feet"),
  23656. weight: math.unit(150, "lb"),
  23657. name: "Back",
  23658. image: {
  23659. source: "./media/characters/ofelia/back.svg",
  23660. extra: 1172/1159,
  23661. bottom: 28/1200
  23662. }
  23663. },
  23664. maw: {
  23665. height: math.unit(1, "feet"),
  23666. name: "Maw",
  23667. image: {
  23668. source: "./media/characters/ofelia/maw.svg"
  23669. }
  23670. },
  23671. foot: {
  23672. height: math.unit(1.949, "feet"),
  23673. name: "Foot",
  23674. image: {
  23675. source: "./media/characters/ofelia/foot.svg"
  23676. }
  23677. },
  23678. },
  23679. [
  23680. {
  23681. name: "Canon Height",
  23682. height: math.unit(2000, "miles"),
  23683. default: true
  23684. },
  23685. ]
  23686. ))
  23687. characterMakers.push(() => makeCharacter(
  23688. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23689. {
  23690. front: {
  23691. height: math.unit(6, "feet"),
  23692. weight: math.unit(150, "lb"),
  23693. name: "Front",
  23694. image: {
  23695. source: "./media/characters/samuel/front.svg",
  23696. extra: 265 / 258,
  23697. bottom: 2 / 266.1566
  23698. }
  23699. },
  23700. },
  23701. [
  23702. {
  23703. name: "Macro",
  23704. height: math.unit(100, "feet"),
  23705. default: true
  23706. },
  23707. {
  23708. name: "Full Size",
  23709. height: math.unit(1000, "miles")
  23710. },
  23711. ]
  23712. ))
  23713. characterMakers.push(() => makeCharacter(
  23714. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23715. {
  23716. front: {
  23717. height: math.unit(6, "feet"),
  23718. weight: math.unit(300, "lb"),
  23719. name: "Front",
  23720. image: {
  23721. source: "./media/characters/beishir-kiel/front.svg",
  23722. extra: 569 / 547,
  23723. bottom: 41.9 / 609
  23724. }
  23725. },
  23726. maw: {
  23727. height: math.unit(6 * 0.202, "feet"),
  23728. name: "Maw",
  23729. image: {
  23730. source: "./media/characters/beishir-kiel/maw.svg"
  23731. }
  23732. },
  23733. },
  23734. [
  23735. {
  23736. name: "Macro",
  23737. height: math.unit(300, "feet"),
  23738. default: true
  23739. },
  23740. ]
  23741. ))
  23742. characterMakers.push(() => makeCharacter(
  23743. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23744. {
  23745. front: {
  23746. height: math.unit(5 + 7/12, "feet"),
  23747. weight: math.unit(120, "lb"),
  23748. name: "Front",
  23749. image: {
  23750. source: "./media/characters/logan-grey/front.svg",
  23751. extra: 1836/1738,
  23752. bottom: 108/1944
  23753. }
  23754. },
  23755. back: {
  23756. height: math.unit(5 + 7/12, "feet"),
  23757. weight: math.unit(120, "lb"),
  23758. name: "Back",
  23759. image: {
  23760. source: "./media/characters/logan-grey/back.svg",
  23761. extra: 1880/1794,
  23762. bottom: 24/1904
  23763. }
  23764. },
  23765. frontSfw: {
  23766. height: math.unit(5 + 7/12, "feet"),
  23767. weight: math.unit(120, "lb"),
  23768. name: "Front (SFW)",
  23769. image: {
  23770. source: "./media/characters/logan-grey/front-sfw.svg",
  23771. extra: 1836/1738,
  23772. bottom: 108/1944
  23773. }
  23774. },
  23775. backSfw: {
  23776. height: math.unit(5 + 7/12, "feet"),
  23777. weight: math.unit(120, "lb"),
  23778. name: "Back (SFW)",
  23779. image: {
  23780. source: "./media/characters/logan-grey/back-sfw.svg",
  23781. extra: 1880/1794,
  23782. bottom: 24/1904
  23783. }
  23784. },
  23785. hands: {
  23786. height: math.unit(0.84, "feet"),
  23787. name: "Hands",
  23788. image: {
  23789. source: "./media/characters/logan-grey/hands.svg"
  23790. }
  23791. },
  23792. paws: {
  23793. height: math.unit(0.72, "feet"),
  23794. name: "Paws",
  23795. image: {
  23796. source: "./media/characters/logan-grey/paws.svg"
  23797. }
  23798. },
  23799. cock: {
  23800. height: math.unit(1.45, "feet"),
  23801. name: "Cock",
  23802. image: {
  23803. source: "./media/characters/logan-grey/cock.svg"
  23804. }
  23805. },
  23806. cockAlt: {
  23807. height: math.unit(1.437, "feet"),
  23808. name: "Cock (alt)",
  23809. image: {
  23810. source: "./media/characters/logan-grey/cock-alt.svg"
  23811. }
  23812. },
  23813. },
  23814. [
  23815. {
  23816. name: "Normal",
  23817. height: math.unit(5 + 8 / 12, "feet")
  23818. },
  23819. {
  23820. name: "The 500 Foot Femboy",
  23821. height: math.unit(500, "feet"),
  23822. default: true
  23823. },
  23824. {
  23825. name: "Megmacro",
  23826. height: math.unit(20, "miles")
  23827. },
  23828. ]
  23829. ))
  23830. characterMakers.push(() => makeCharacter(
  23831. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23832. {
  23833. front: {
  23834. height: math.unit(8 + 2 / 12, "feet"),
  23835. weight: math.unit(275, "lb"),
  23836. name: "Front",
  23837. image: {
  23838. source: "./media/characters/draganta/front.svg",
  23839. extra: 1177 / 1135,
  23840. bottom: 33.46 / 1212.1
  23841. }
  23842. },
  23843. },
  23844. [
  23845. {
  23846. name: "Normal",
  23847. height: math.unit(8 + 6 / 12, "feet"),
  23848. default: true
  23849. },
  23850. {
  23851. name: "Macro",
  23852. height: math.unit(150, "feet")
  23853. },
  23854. {
  23855. name: "Megamacro",
  23856. height: math.unit(1000, "miles")
  23857. },
  23858. ]
  23859. ))
  23860. characterMakers.push(() => makeCharacter(
  23861. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23862. {
  23863. front: {
  23864. height: math.unit(1.72, "m"),
  23865. weight: math.unit(80, "lb"),
  23866. name: "Front",
  23867. image: {
  23868. source: "./media/characters/voski/front.svg",
  23869. extra: 2076.22 / 2022.4,
  23870. bottom: 102.7 / 2177.3866
  23871. }
  23872. },
  23873. frontFlaccid: {
  23874. height: math.unit(1.72, "m"),
  23875. weight: math.unit(80, "lb"),
  23876. name: "Front (Flaccid)",
  23877. image: {
  23878. source: "./media/characters/voski/front-flaccid.svg",
  23879. extra: 2076.22 / 2022.4,
  23880. bottom: 102.7 / 2177.3866
  23881. }
  23882. },
  23883. frontErect: {
  23884. height: math.unit(1.72, "m"),
  23885. weight: math.unit(80, "lb"),
  23886. name: "Front (Erect)",
  23887. image: {
  23888. source: "./media/characters/voski/front-erect.svg",
  23889. extra: 2076.22 / 2022.4,
  23890. bottom: 102.7 / 2177.3866
  23891. }
  23892. },
  23893. back: {
  23894. height: math.unit(1.72, "m"),
  23895. weight: math.unit(80, "lb"),
  23896. name: "Back",
  23897. image: {
  23898. source: "./media/characters/voski/back.svg",
  23899. extra: 2104 / 2051,
  23900. bottom: 10.45 / 2113.63
  23901. }
  23902. },
  23903. },
  23904. [
  23905. {
  23906. name: "Normal",
  23907. height: math.unit(1.72, "m")
  23908. },
  23909. {
  23910. name: "Macro",
  23911. height: math.unit(55, "m"),
  23912. default: true
  23913. },
  23914. {
  23915. name: "Macro+",
  23916. height: math.unit(300, "m")
  23917. },
  23918. {
  23919. name: "Macro++",
  23920. height: math.unit(700, "m")
  23921. },
  23922. {
  23923. name: "Macro+++",
  23924. height: math.unit(4500, "m")
  23925. },
  23926. {
  23927. name: "Macro++++",
  23928. height: math.unit(45, "km")
  23929. },
  23930. {
  23931. name: "Macro+++++",
  23932. height: math.unit(1220, "km")
  23933. },
  23934. ]
  23935. ))
  23936. characterMakers.push(() => makeCharacter(
  23937. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23938. {
  23939. front: {
  23940. height: math.unit(2.3, "m"),
  23941. weight: math.unit(304, "kg"),
  23942. name: "Front",
  23943. image: {
  23944. source: "./media/characters/icowom-lee/front.svg",
  23945. extra: 985 / 955,
  23946. bottom: 25.4 / 1012
  23947. }
  23948. },
  23949. fronttentacles: {
  23950. height: math.unit(2.3, "m"),
  23951. weight: math.unit(304, "kg"),
  23952. name: "Front-tentacles",
  23953. image: {
  23954. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23955. extra: 985 / 955,
  23956. bottom: 25.4 / 1012
  23957. }
  23958. },
  23959. back: {
  23960. height: math.unit(2.3, "m"),
  23961. weight: math.unit(304, "kg"),
  23962. name: "Back",
  23963. image: {
  23964. source: "./media/characters/icowom-lee/back.svg",
  23965. extra: 975 / 954,
  23966. bottom: 9.5 / 985
  23967. }
  23968. },
  23969. backtentacles: {
  23970. height: math.unit(2.3, "m"),
  23971. weight: math.unit(304, "kg"),
  23972. name: "Back-tentacles",
  23973. image: {
  23974. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23975. extra: 975 / 954,
  23976. bottom: 9.5 / 985
  23977. }
  23978. },
  23979. frontDressed: {
  23980. height: math.unit(2.3, "m"),
  23981. weight: math.unit(304, "kg"),
  23982. name: "Front (Dressed)",
  23983. image: {
  23984. source: "./media/characters/icowom-lee/front-dressed.svg",
  23985. extra: 3076 / 2933,
  23986. bottom: 51.4 / 3125.1889
  23987. }
  23988. },
  23989. rump: {
  23990. height: math.unit(0.776, "meters"),
  23991. name: "Rump",
  23992. image: {
  23993. source: "./media/characters/icowom-lee/rump.svg"
  23994. }
  23995. },
  23996. genitals: {
  23997. height: math.unit(0.78, "meters"),
  23998. name: "Genitals",
  23999. image: {
  24000. source: "./media/characters/icowom-lee/genitals.svg"
  24001. }
  24002. },
  24003. },
  24004. [
  24005. {
  24006. name: "Normal",
  24007. height: math.unit(2.3, "meters"),
  24008. default: true
  24009. },
  24010. {
  24011. name: "Macro",
  24012. height: math.unit(94, "meters"),
  24013. default: true
  24014. },
  24015. ]
  24016. ))
  24017. characterMakers.push(() => makeCharacter(
  24018. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24019. {
  24020. front: {
  24021. height: math.unit(22, "meters"),
  24022. weight: math.unit(21000, "kg"),
  24023. name: "Front",
  24024. image: {
  24025. source: "./media/characters/shock-diamond/front.svg",
  24026. extra: 2204 / 2053,
  24027. bottom: 65 / 2239.47
  24028. }
  24029. },
  24030. frontNude: {
  24031. height: math.unit(22, "meters"),
  24032. weight: math.unit(21000, "kg"),
  24033. name: "Front (Nude)",
  24034. image: {
  24035. source: "./media/characters/shock-diamond/front-nude.svg",
  24036. extra: 2514 / 2285,
  24037. bottom: 13 / 2527.56
  24038. }
  24039. },
  24040. },
  24041. [
  24042. {
  24043. name: "Normal",
  24044. height: math.unit(3, "meters")
  24045. },
  24046. {
  24047. name: "Macro",
  24048. height: math.unit(22, "meters"),
  24049. default: true
  24050. },
  24051. ]
  24052. ))
  24053. characterMakers.push(() => makeCharacter(
  24054. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24055. {
  24056. front: {
  24057. height: math.unit(5 + 4/12, "feet"),
  24058. weight: math.unit(125, "lb"),
  24059. name: "Front",
  24060. image: {
  24061. source: "./media/characters/rory/front.svg",
  24062. extra: 1790/1681,
  24063. bottom: 66/1856
  24064. }
  24065. },
  24066. back: {
  24067. height: math.unit(5 + 4/12, "feet"),
  24068. weight: math.unit(125, "lb"),
  24069. name: "Back",
  24070. image: {
  24071. source: "./media/characters/rory/back.svg",
  24072. extra: 1805/1690,
  24073. bottom: 56/1861
  24074. }
  24075. },
  24076. frontDressed: {
  24077. height: math.unit(5 + 4/12, "feet"),
  24078. weight: math.unit(125, "lb"),
  24079. name: "Front (Dressed)",
  24080. image: {
  24081. source: "./media/characters/rory/front-dressed.svg",
  24082. extra: 1790/1681,
  24083. bottom: 66/1856
  24084. }
  24085. },
  24086. backDressed: {
  24087. height: math.unit(5 + 4/12, "feet"),
  24088. weight: math.unit(125, "lb"),
  24089. name: "Back (Dressed)",
  24090. image: {
  24091. source: "./media/characters/rory/back-dressed.svg",
  24092. extra: 1805/1690,
  24093. bottom: 56/1861
  24094. }
  24095. },
  24096. frontNsfw: {
  24097. height: math.unit(5 + 4/12, "feet"),
  24098. weight: math.unit(125, "lb"),
  24099. name: "Front (NSFW)",
  24100. image: {
  24101. source: "./media/characters/rory/front-nsfw.svg",
  24102. extra: 1790/1681,
  24103. bottom: 66/1856
  24104. }
  24105. },
  24106. backNsfw: {
  24107. height: math.unit(5 + 4/12, "feet"),
  24108. weight: math.unit(125, "lb"),
  24109. name: "Back (NSFW)",
  24110. image: {
  24111. source: "./media/characters/rory/back-nsfw.svg",
  24112. extra: 1805/1690,
  24113. bottom: 56/1861
  24114. }
  24115. },
  24116. dick: {
  24117. height: math.unit(0.8, "feet"),
  24118. name: "Dick",
  24119. image: {
  24120. source: "./media/characters/rory/dick.svg"
  24121. }
  24122. },
  24123. },
  24124. [
  24125. {
  24126. name: "Micro",
  24127. height: math.unit(3, "inches")
  24128. },
  24129. {
  24130. name: "Normal",
  24131. height: math.unit(5 + 4/12, "feet"),
  24132. default: true
  24133. },
  24134. {
  24135. name: "Macro",
  24136. height: math.unit(90, "feet")
  24137. },
  24138. {
  24139. name: "Supercharged",
  24140. height: math.unit(270, "feet")
  24141. },
  24142. ]
  24143. ))
  24144. characterMakers.push(() => makeCharacter(
  24145. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24146. {
  24147. front: {
  24148. height: math.unit(5 + 9 / 12, "feet"),
  24149. weight: math.unit(190, "lb"),
  24150. name: "Front",
  24151. image: {
  24152. source: "./media/characters/sprisk/front.svg",
  24153. extra: 1225 / 1180,
  24154. bottom: 42.7 / 1266.4
  24155. }
  24156. },
  24157. frontNsfw: {
  24158. height: math.unit(5 + 9 / 12, "feet"),
  24159. weight: math.unit(190, "lb"),
  24160. name: "Front (NSFW)",
  24161. image: {
  24162. source: "./media/characters/sprisk/front-nsfw.svg",
  24163. extra: 1225 / 1180,
  24164. bottom: 42.7 / 1266.4
  24165. }
  24166. },
  24167. back: {
  24168. height: math.unit(5 + 9 / 12, "feet"),
  24169. weight: math.unit(190, "lb"),
  24170. name: "Back",
  24171. image: {
  24172. source: "./media/characters/sprisk/back.svg",
  24173. extra: 1247 / 1200,
  24174. bottom: 5.6 / 1253.04
  24175. }
  24176. },
  24177. },
  24178. [
  24179. {
  24180. name: "Tiny",
  24181. height: math.unit(2, "inches")
  24182. },
  24183. {
  24184. name: "Normal",
  24185. height: math.unit(5 + 9 / 12, "feet"),
  24186. default: true
  24187. },
  24188. {
  24189. name: "Mini Macro",
  24190. height: math.unit(18, "feet")
  24191. },
  24192. {
  24193. name: "Macro",
  24194. height: math.unit(100, "feet")
  24195. },
  24196. {
  24197. name: "MACRO",
  24198. height: math.unit(50, "miles")
  24199. },
  24200. {
  24201. name: "M A C R O",
  24202. height: math.unit(300, "miles")
  24203. },
  24204. ]
  24205. ))
  24206. characterMakers.push(() => makeCharacter(
  24207. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24208. {
  24209. side: {
  24210. height: math.unit(15.6, "meters"),
  24211. weight: math.unit(700000, "kg"),
  24212. name: "Side",
  24213. image: {
  24214. source: "./media/characters/bunsen/side.svg",
  24215. extra: 1644 / 358
  24216. }
  24217. },
  24218. foot: {
  24219. height: math.unit(1.611 * 1644 / 358, "meter"),
  24220. name: "Foot",
  24221. image: {
  24222. source: "./media/characters/bunsen/foot.svg"
  24223. }
  24224. },
  24225. },
  24226. [
  24227. {
  24228. name: "Small",
  24229. height: math.unit(10, "feet")
  24230. },
  24231. {
  24232. name: "Normal",
  24233. height: math.unit(15.6, "meters"),
  24234. default: true
  24235. },
  24236. ]
  24237. ))
  24238. characterMakers.push(() => makeCharacter(
  24239. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24240. {
  24241. front: {
  24242. height: math.unit(4 + 11 / 12, "feet"),
  24243. weight: math.unit(140, "lb"),
  24244. name: "Front",
  24245. image: {
  24246. source: "./media/characters/sesh/front.svg",
  24247. extra: 3420 / 3231,
  24248. bottom: 72 / 3949.5
  24249. }
  24250. },
  24251. },
  24252. [
  24253. {
  24254. name: "Normal",
  24255. height: math.unit(4 + 11 / 12, "feet")
  24256. },
  24257. {
  24258. name: "Grown",
  24259. height: math.unit(15, "feet"),
  24260. default: true
  24261. },
  24262. {
  24263. name: "Macro",
  24264. height: math.unit(1500, "feet")
  24265. },
  24266. {
  24267. name: "Megamacro",
  24268. height: math.unit(30, "miles")
  24269. },
  24270. {
  24271. name: "Continental",
  24272. height: math.unit(3000, "miles")
  24273. },
  24274. {
  24275. name: "Gravity Mass",
  24276. height: math.unit(300000, "miles")
  24277. },
  24278. {
  24279. name: "Planet Buster",
  24280. height: math.unit(30000000, "miles")
  24281. },
  24282. {
  24283. name: "Big",
  24284. height: math.unit(3000000000, "miles")
  24285. },
  24286. ]
  24287. ))
  24288. characterMakers.push(() => makeCharacter(
  24289. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24290. {
  24291. front: {
  24292. height: math.unit(9, "feet"),
  24293. weight: math.unit(350, "lb"),
  24294. name: "Front",
  24295. image: {
  24296. source: "./media/characters/pepper/front.svg",
  24297. extra: 1448 / 1312,
  24298. bottom: 9.4 / 1457.88
  24299. }
  24300. },
  24301. back: {
  24302. height: math.unit(9, "feet"),
  24303. weight: math.unit(350, "lb"),
  24304. name: "Back",
  24305. image: {
  24306. source: "./media/characters/pepper/back.svg",
  24307. extra: 1423 / 1300,
  24308. bottom: 4.6 / 1429
  24309. }
  24310. },
  24311. maw: {
  24312. height: math.unit(0.932, "feet"),
  24313. name: "Maw",
  24314. image: {
  24315. source: "./media/characters/pepper/maw.svg"
  24316. }
  24317. },
  24318. },
  24319. [
  24320. {
  24321. name: "Normal",
  24322. height: math.unit(9, "feet"),
  24323. default: true
  24324. },
  24325. ]
  24326. ))
  24327. characterMakers.push(() => makeCharacter(
  24328. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24329. {
  24330. front: {
  24331. height: math.unit(6, "feet"),
  24332. weight: math.unit(150, "lb"),
  24333. name: "Front",
  24334. image: {
  24335. source: "./media/characters/maelstrom/front.svg",
  24336. extra: 2100 / 1883,
  24337. bottom: 94 / 2196.7
  24338. }
  24339. },
  24340. },
  24341. [
  24342. {
  24343. name: "Less Kaiju",
  24344. height: math.unit(200, "feet")
  24345. },
  24346. {
  24347. name: "Kaiju",
  24348. height: math.unit(400, "feet"),
  24349. default: true
  24350. },
  24351. {
  24352. name: "Kaiju-er",
  24353. height: math.unit(600, "feet")
  24354. },
  24355. ]
  24356. ))
  24357. characterMakers.push(() => makeCharacter(
  24358. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24359. {
  24360. front: {
  24361. height: math.unit(6 + 5 / 12, "feet"),
  24362. weight: math.unit(180, "lb"),
  24363. name: "Front",
  24364. image: {
  24365. source: "./media/characters/lexir/front.svg",
  24366. extra: 180 / 172,
  24367. bottom: 12 / 192
  24368. }
  24369. },
  24370. back: {
  24371. height: math.unit(6 + 5 / 12, "feet"),
  24372. weight: math.unit(180, "lb"),
  24373. name: "Back",
  24374. image: {
  24375. source: "./media/characters/lexir/back.svg",
  24376. extra: 1273/1201,
  24377. bottom: 39/1312
  24378. }
  24379. },
  24380. },
  24381. [
  24382. {
  24383. name: "Very Smal",
  24384. height: math.unit(1, "nm")
  24385. },
  24386. {
  24387. name: "Normal",
  24388. height: math.unit(6 + 5 / 12, "feet"),
  24389. default: true
  24390. },
  24391. {
  24392. name: "Macro",
  24393. height: math.unit(1, "mile")
  24394. },
  24395. {
  24396. name: "Megamacro",
  24397. height: math.unit(50, "miles")
  24398. },
  24399. ]
  24400. ))
  24401. characterMakers.push(() => makeCharacter(
  24402. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24403. {
  24404. front: {
  24405. height: math.unit(1.5, "meters"),
  24406. weight: math.unit(100, "lb"),
  24407. name: "Front",
  24408. image: {
  24409. source: "./media/characters/maksio/front.svg",
  24410. extra: 1549 / 1531,
  24411. bottom: 123.7 / 1674.5429
  24412. }
  24413. },
  24414. back: {
  24415. height: math.unit(1.5, "meters"),
  24416. weight: math.unit(100, "lb"),
  24417. name: "Back",
  24418. image: {
  24419. source: "./media/characters/maksio/back.svg",
  24420. extra: 1541 / 1509,
  24421. bottom: 97 / 1639
  24422. }
  24423. },
  24424. hand: {
  24425. height: math.unit(0.621, "feet"),
  24426. name: "Hand",
  24427. image: {
  24428. source: "./media/characters/maksio/hand.svg"
  24429. }
  24430. },
  24431. foot: {
  24432. height: math.unit(1.611, "feet"),
  24433. name: "Foot",
  24434. image: {
  24435. source: "./media/characters/maksio/foot.svg"
  24436. }
  24437. },
  24438. },
  24439. [
  24440. {
  24441. name: "Shrunken",
  24442. height: math.unit(10, "cm")
  24443. },
  24444. {
  24445. name: "Normal",
  24446. height: math.unit(150, "cm"),
  24447. default: true
  24448. },
  24449. ]
  24450. ))
  24451. characterMakers.push(() => makeCharacter(
  24452. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24453. {
  24454. front: {
  24455. height: math.unit(100, "feet"),
  24456. name: "Front",
  24457. image: {
  24458. source: "./media/characters/erza-bear/front.svg",
  24459. extra: 2449 / 2390,
  24460. bottom: 46 / 2494
  24461. }
  24462. },
  24463. back: {
  24464. height: math.unit(100, "feet"),
  24465. name: "Back",
  24466. image: {
  24467. source: "./media/characters/erza-bear/back.svg",
  24468. extra: 2489 / 2430,
  24469. bottom: 85.4 / 2480
  24470. }
  24471. },
  24472. tail: {
  24473. height: math.unit(42, "feet"),
  24474. name: "Tail",
  24475. image: {
  24476. source: "./media/characters/erza-bear/tail.svg"
  24477. }
  24478. },
  24479. tongue: {
  24480. height: math.unit(8, "feet"),
  24481. name: "Tongue",
  24482. image: {
  24483. source: "./media/characters/erza-bear/tongue.svg"
  24484. }
  24485. },
  24486. dick: {
  24487. height: math.unit(10.5, "feet"),
  24488. name: "Dick",
  24489. image: {
  24490. source: "./media/characters/erza-bear/dick.svg"
  24491. }
  24492. },
  24493. dickVertical: {
  24494. height: math.unit(16.9, "feet"),
  24495. name: "Dick (Vertical)",
  24496. image: {
  24497. source: "./media/characters/erza-bear/dick-vertical.svg"
  24498. }
  24499. },
  24500. },
  24501. [
  24502. {
  24503. name: "Macro",
  24504. height: math.unit(100, "feet"),
  24505. default: true
  24506. },
  24507. ]
  24508. ))
  24509. characterMakers.push(() => makeCharacter(
  24510. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24511. {
  24512. front: {
  24513. height: math.unit(172, "cm"),
  24514. weight: math.unit(73, "kg"),
  24515. name: "Front",
  24516. image: {
  24517. source: "./media/characters/violet-flor/front.svg",
  24518. extra: 1530 / 1442,
  24519. bottom: 61.9 / 1588.8
  24520. }
  24521. },
  24522. back: {
  24523. height: math.unit(180, "cm"),
  24524. weight: math.unit(73, "kg"),
  24525. name: "Back",
  24526. image: {
  24527. source: "./media/characters/violet-flor/back.svg",
  24528. extra: 1692 / 1630,
  24529. bottom: 20 / 1712
  24530. }
  24531. },
  24532. },
  24533. [
  24534. {
  24535. name: "Normal",
  24536. height: math.unit(172, "cm"),
  24537. default: true
  24538. },
  24539. ]
  24540. ))
  24541. characterMakers.push(() => makeCharacter(
  24542. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24543. {
  24544. front: {
  24545. height: math.unit(6, "feet"),
  24546. weight: math.unit(220, "lb"),
  24547. name: "Front",
  24548. image: {
  24549. source: "./media/characters/lynn-rhea/front.svg",
  24550. extra: 310 / 273
  24551. }
  24552. },
  24553. back: {
  24554. height: math.unit(6, "feet"),
  24555. weight: math.unit(220, "lb"),
  24556. name: "Back",
  24557. image: {
  24558. source: "./media/characters/lynn-rhea/back.svg",
  24559. extra: 310 / 273
  24560. }
  24561. },
  24562. dicks: {
  24563. height: math.unit(0.9, "feet"),
  24564. name: "Dicks",
  24565. image: {
  24566. source: "./media/characters/lynn-rhea/dicks.svg"
  24567. }
  24568. },
  24569. slit: {
  24570. height: math.unit(0.4, "feet"),
  24571. name: "Slit",
  24572. image: {
  24573. source: "./media/characters/lynn-rhea/slit.svg"
  24574. }
  24575. },
  24576. },
  24577. [
  24578. {
  24579. name: "Micro",
  24580. height: math.unit(1, "inch")
  24581. },
  24582. {
  24583. name: "Macro",
  24584. height: math.unit(60, "feet"),
  24585. default: true
  24586. },
  24587. {
  24588. name: "Megamacro",
  24589. height: math.unit(2, "miles")
  24590. },
  24591. {
  24592. name: "Gigamacro",
  24593. height: math.unit(3, "earths")
  24594. },
  24595. {
  24596. name: "Galactic",
  24597. height: math.unit(0.8, "galaxies")
  24598. },
  24599. ]
  24600. ))
  24601. characterMakers.push(() => makeCharacter(
  24602. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24603. {
  24604. front: {
  24605. height: math.unit(1600, "feet"),
  24606. weight: math.unit(85758785169, "kg"),
  24607. name: "Front",
  24608. image: {
  24609. source: "./media/characters/valathos/front.svg",
  24610. extra: 1451 / 1339
  24611. }
  24612. },
  24613. },
  24614. [
  24615. {
  24616. name: "Macro",
  24617. height: math.unit(1600, "feet"),
  24618. default: true
  24619. },
  24620. ]
  24621. ))
  24622. characterMakers.push(() => makeCharacter(
  24623. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24624. {
  24625. front: {
  24626. height: math.unit(7 + 5 / 12, "feet"),
  24627. weight: math.unit(300, "lb"),
  24628. name: "Front",
  24629. image: {
  24630. source: "./media/characters/azula/front.svg",
  24631. extra: 3208 / 2880,
  24632. bottom: 80.2 / 3277
  24633. }
  24634. },
  24635. back: {
  24636. height: math.unit(7 + 5 / 12, "feet"),
  24637. weight: math.unit(300, "lb"),
  24638. name: "Back",
  24639. image: {
  24640. source: "./media/characters/azula/back.svg",
  24641. extra: 3169 / 2822,
  24642. bottom: 150.6 / 3321
  24643. }
  24644. },
  24645. },
  24646. [
  24647. {
  24648. name: "Normal",
  24649. height: math.unit(7 + 5 / 12, "feet"),
  24650. default: true
  24651. },
  24652. {
  24653. name: "Big",
  24654. height: math.unit(20, "feet")
  24655. },
  24656. ]
  24657. ))
  24658. characterMakers.push(() => makeCharacter(
  24659. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24660. {
  24661. front: {
  24662. height: math.unit(5 + 1 / 12, "feet"),
  24663. weight: math.unit(110, "lb"),
  24664. name: "Front",
  24665. image: {
  24666. source: "./media/characters/rupert/front.svg",
  24667. extra: 1549 / 1495,
  24668. bottom: 54.2 / 1604.4
  24669. }
  24670. },
  24671. },
  24672. [
  24673. {
  24674. name: "Normal",
  24675. height: math.unit(5 + 1 / 12, "feet"),
  24676. default: true
  24677. },
  24678. ]
  24679. ))
  24680. characterMakers.push(() => makeCharacter(
  24681. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24682. {
  24683. front: {
  24684. height: math.unit(8 + 4 / 12, "feet"),
  24685. weight: math.unit(350, "lb"),
  24686. name: "Front",
  24687. image: {
  24688. source: "./media/characters/sheera-castellar/front.svg",
  24689. extra: 1957 / 1894,
  24690. bottom: 26.97 / 1975.017
  24691. }
  24692. },
  24693. side: {
  24694. height: math.unit(8 + 4 / 12, "feet"),
  24695. weight: math.unit(350, "lb"),
  24696. name: "Side",
  24697. image: {
  24698. source: "./media/characters/sheera-castellar/side.svg",
  24699. extra: 1957 / 1894
  24700. }
  24701. },
  24702. back: {
  24703. height: math.unit(8 + 4 / 12, "feet"),
  24704. weight: math.unit(350, "lb"),
  24705. name: "Back",
  24706. image: {
  24707. source: "./media/characters/sheera-castellar/back.svg",
  24708. extra: 1957 / 1894
  24709. }
  24710. },
  24711. angled: {
  24712. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24713. weight: math.unit(350, "lb"),
  24714. name: "Angled",
  24715. image: {
  24716. source: "./media/characters/sheera-castellar/angled.svg",
  24717. extra: 1807 / 1707,
  24718. bottom: 68 / 1875
  24719. }
  24720. },
  24721. genitals: {
  24722. height: math.unit(2.2, "feet"),
  24723. name: "Genitals",
  24724. image: {
  24725. source: "./media/characters/sheera-castellar/genitals.svg"
  24726. }
  24727. },
  24728. taur: {
  24729. height: math.unit(10 + 6/12, "feet"),
  24730. name: "Taur",
  24731. image: {
  24732. source: "./media/characters/sheera-castellar/taur.svg",
  24733. extra: 2017/1909,
  24734. bottom: 185/2202
  24735. }
  24736. },
  24737. },
  24738. [
  24739. {
  24740. name: "Normal",
  24741. height: math.unit(8 + 4 / 12, "feet")
  24742. },
  24743. {
  24744. name: "Macro",
  24745. height: math.unit(150, "feet"),
  24746. default: true
  24747. },
  24748. {
  24749. name: "Macro+",
  24750. height: math.unit(800, "feet")
  24751. },
  24752. ]
  24753. ))
  24754. characterMakers.push(() => makeCharacter(
  24755. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24756. {
  24757. front: {
  24758. height: math.unit(6, "feet"),
  24759. weight: math.unit(150, "lb"),
  24760. name: "Front",
  24761. image: {
  24762. source: "./media/characters/jaipur/front.svg",
  24763. extra: 3860 / 3731,
  24764. bottom: 287 / 4140
  24765. }
  24766. },
  24767. back: {
  24768. height: math.unit(6, "feet"),
  24769. weight: math.unit(150, "lb"),
  24770. name: "Back",
  24771. image: {
  24772. source: "./media/characters/jaipur/back.svg",
  24773. extra: 1637/1561,
  24774. bottom: 154/1791
  24775. }
  24776. },
  24777. },
  24778. [
  24779. {
  24780. name: "Normal",
  24781. height: math.unit(1.85, "meters"),
  24782. default: true
  24783. },
  24784. {
  24785. name: "Macro",
  24786. height: math.unit(150, "meters")
  24787. },
  24788. {
  24789. name: "Macro+",
  24790. height: math.unit(0.5, "miles")
  24791. },
  24792. {
  24793. name: "Macro++",
  24794. height: math.unit(2.5, "miles")
  24795. },
  24796. {
  24797. name: "Macro+++",
  24798. height: math.unit(12, "miles")
  24799. },
  24800. {
  24801. name: "Macro++++",
  24802. height: math.unit(120, "miles")
  24803. },
  24804. {
  24805. name: "Macro+++++",
  24806. height: math.unit(1200, "miles")
  24807. },
  24808. ]
  24809. ))
  24810. characterMakers.push(() => makeCharacter(
  24811. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24812. {
  24813. front: {
  24814. height: math.unit(6, "feet"),
  24815. weight: math.unit(150, "lb"),
  24816. name: "Front",
  24817. image: {
  24818. source: "./media/characters/sheila-wolf/front.svg",
  24819. extra: 1931 / 1808,
  24820. bottom: 29.5 / 1960
  24821. }
  24822. },
  24823. dick: {
  24824. height: math.unit(1.464, "feet"),
  24825. name: "Dick",
  24826. image: {
  24827. source: "./media/characters/sheila-wolf/dick.svg"
  24828. }
  24829. },
  24830. muzzle: {
  24831. height: math.unit(0.513, "feet"),
  24832. name: "Muzzle",
  24833. image: {
  24834. source: "./media/characters/sheila-wolf/muzzle.svg"
  24835. }
  24836. },
  24837. },
  24838. [
  24839. {
  24840. name: "Macro",
  24841. height: math.unit(70, "feet"),
  24842. default: true
  24843. },
  24844. ]
  24845. ))
  24846. characterMakers.push(() => makeCharacter(
  24847. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24848. {
  24849. front: {
  24850. height: math.unit(32, "meters"),
  24851. weight: math.unit(300000, "kg"),
  24852. name: "Front",
  24853. image: {
  24854. source: "./media/characters/almor/front.svg",
  24855. extra: 1408 / 1322,
  24856. bottom: 94.6 / 1506.5
  24857. }
  24858. },
  24859. },
  24860. [
  24861. {
  24862. name: "Macro",
  24863. height: math.unit(32, "meters"),
  24864. default: true
  24865. },
  24866. ]
  24867. ))
  24868. characterMakers.push(() => makeCharacter(
  24869. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24870. {
  24871. front: {
  24872. height: math.unit(7, "feet"),
  24873. weight: math.unit(200, "lb"),
  24874. name: "Front",
  24875. image: {
  24876. source: "./media/characters/silver/front.svg",
  24877. extra: 472.1 / 450.5,
  24878. bottom: 26.5 / 499.424
  24879. }
  24880. },
  24881. },
  24882. [
  24883. {
  24884. name: "Normal",
  24885. height: math.unit(7, "feet"),
  24886. default: true
  24887. },
  24888. {
  24889. name: "Macro",
  24890. height: math.unit(800, "feet")
  24891. },
  24892. {
  24893. name: "Megamacro",
  24894. height: math.unit(250, "miles")
  24895. },
  24896. ]
  24897. ))
  24898. characterMakers.push(() => makeCharacter(
  24899. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24900. {
  24901. front: {
  24902. height: math.unit(6, "feet"),
  24903. weight: math.unit(150, "lb"),
  24904. name: "Front",
  24905. image: {
  24906. source: "./media/characters/pliskin/front.svg",
  24907. extra: 1469 / 1359,
  24908. bottom: 70 / 1540
  24909. }
  24910. },
  24911. },
  24912. [
  24913. {
  24914. name: "Micro",
  24915. height: math.unit(3, "inches")
  24916. },
  24917. {
  24918. name: "Normal",
  24919. height: math.unit(5 + 11 / 12, "feet"),
  24920. default: true
  24921. },
  24922. {
  24923. name: "Macro",
  24924. height: math.unit(120, "feet")
  24925. },
  24926. ]
  24927. ))
  24928. characterMakers.push(() => makeCharacter(
  24929. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24930. {
  24931. front: {
  24932. height: math.unit(6, "feet"),
  24933. weight: math.unit(150, "lb"),
  24934. name: "Front",
  24935. image: {
  24936. source: "./media/characters/sammy/front.svg",
  24937. extra: 1193 / 1089,
  24938. bottom: 30.5 / 1226
  24939. }
  24940. },
  24941. },
  24942. [
  24943. {
  24944. name: "Macro",
  24945. height: math.unit(1700, "feet"),
  24946. default: true
  24947. },
  24948. {
  24949. name: "Examacro",
  24950. height: math.unit(2.5e9, "lightyears")
  24951. },
  24952. ]
  24953. ))
  24954. characterMakers.push(() => makeCharacter(
  24955. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24956. {
  24957. front: {
  24958. height: math.unit(21, "meters"),
  24959. weight: math.unit(12, "tonnes"),
  24960. name: "Front",
  24961. image: {
  24962. source: "./media/characters/kuru/front.svg",
  24963. extra: 4301 / 3785,
  24964. bottom: 371.3 / 4691
  24965. }
  24966. },
  24967. },
  24968. [
  24969. {
  24970. name: "Macro",
  24971. height: math.unit(21, "meters"),
  24972. default: true
  24973. },
  24974. ]
  24975. ))
  24976. characterMakers.push(() => makeCharacter(
  24977. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24978. {
  24979. front: {
  24980. height: math.unit(23, "meters"),
  24981. weight: math.unit(12.2, "tonnes"),
  24982. name: "Front",
  24983. image: {
  24984. source: "./media/characters/rakka/front.svg",
  24985. extra: 4670 / 4169,
  24986. bottom: 301 / 4968.7
  24987. }
  24988. },
  24989. },
  24990. [
  24991. {
  24992. name: "Macro",
  24993. height: math.unit(23, "meters"),
  24994. default: true
  24995. },
  24996. ]
  24997. ))
  24998. characterMakers.push(() => makeCharacter(
  24999. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25000. {
  25001. front: {
  25002. height: math.unit(6, "feet"),
  25003. weight: math.unit(150, "lb"),
  25004. name: "Front",
  25005. image: {
  25006. source: "./media/characters/rhys-feline/front.svg",
  25007. extra: 2488 / 2308,
  25008. bottom: 35.67 / 2519.19
  25009. }
  25010. },
  25011. },
  25012. [
  25013. {
  25014. name: "Really Small",
  25015. height: math.unit(1, "nm")
  25016. },
  25017. {
  25018. name: "Micro",
  25019. height: math.unit(4, "inches")
  25020. },
  25021. {
  25022. name: "Normal",
  25023. height: math.unit(4 + 10 / 12, "feet"),
  25024. default: true
  25025. },
  25026. {
  25027. name: "Macro",
  25028. height: math.unit(100, "feet")
  25029. },
  25030. {
  25031. name: "Megamacto",
  25032. height: math.unit(50, "miles")
  25033. },
  25034. ]
  25035. ))
  25036. characterMakers.push(() => makeCharacter(
  25037. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25038. {
  25039. side: {
  25040. height: math.unit(30, "feet"),
  25041. weight: math.unit(35000, "kg"),
  25042. name: "Side",
  25043. image: {
  25044. source: "./media/characters/alydar/side.svg",
  25045. extra: 234 / 222,
  25046. bottom: 6.5 / 241
  25047. }
  25048. },
  25049. front: {
  25050. height: math.unit(30, "feet"),
  25051. weight: math.unit(35000, "kg"),
  25052. name: "Front",
  25053. image: {
  25054. source: "./media/characters/alydar/front.svg",
  25055. extra: 223.37 / 210.2,
  25056. bottom: 22.3 / 246.76
  25057. }
  25058. },
  25059. top: {
  25060. height: math.unit(64.54, "feet"),
  25061. weight: math.unit(35000, "kg"),
  25062. name: "Top",
  25063. image: {
  25064. source: "./media/characters/alydar/top.svg"
  25065. }
  25066. },
  25067. anthro: {
  25068. height: math.unit(30, "feet"),
  25069. weight: math.unit(9000, "kg"),
  25070. name: "Anthro",
  25071. image: {
  25072. source: "./media/characters/alydar/anthro.svg",
  25073. extra: 432 / 421,
  25074. bottom: 7.18 / 440
  25075. }
  25076. },
  25077. maw: {
  25078. height: math.unit(11.693, "feet"),
  25079. name: "Maw",
  25080. image: {
  25081. source: "./media/characters/alydar/maw.svg"
  25082. }
  25083. },
  25084. head: {
  25085. height: math.unit(11.693, "feet"),
  25086. name: "Head",
  25087. image: {
  25088. source: "./media/characters/alydar/head.svg"
  25089. }
  25090. },
  25091. headAlt: {
  25092. height: math.unit(12.861, "feet"),
  25093. name: "Head (Alt)",
  25094. image: {
  25095. source: "./media/characters/alydar/head-alt.svg"
  25096. }
  25097. },
  25098. wing: {
  25099. height: math.unit(20.712, "feet"),
  25100. name: "Wing",
  25101. image: {
  25102. source: "./media/characters/alydar/wing.svg"
  25103. }
  25104. },
  25105. wingFeather: {
  25106. height: math.unit(9.662, "feet"),
  25107. name: "Wing Feather",
  25108. image: {
  25109. source: "./media/characters/alydar/wing-feather.svg"
  25110. }
  25111. },
  25112. countourFeather: {
  25113. height: math.unit(4.154, "feet"),
  25114. name: "Contour Feather",
  25115. image: {
  25116. source: "./media/characters/alydar/contour-feather.svg"
  25117. }
  25118. },
  25119. },
  25120. [
  25121. {
  25122. name: "Diplomatic",
  25123. height: math.unit(13, "feet"),
  25124. default: true
  25125. },
  25126. {
  25127. name: "Small",
  25128. height: math.unit(30, "feet")
  25129. },
  25130. {
  25131. name: "Normal",
  25132. height: math.unit(95, "feet"),
  25133. default: true
  25134. },
  25135. {
  25136. name: "Large",
  25137. height: math.unit(285, "feet")
  25138. },
  25139. {
  25140. name: "Incomprehensible",
  25141. height: math.unit(450, "megameters")
  25142. },
  25143. ]
  25144. ))
  25145. characterMakers.push(() => makeCharacter(
  25146. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25147. {
  25148. side: {
  25149. height: math.unit(11, "feet"),
  25150. weight: math.unit(1750, "kg"),
  25151. name: "Side",
  25152. image: {
  25153. source: "./media/characters/selicia/side.svg",
  25154. extra: 440 / 396,
  25155. bottom: 24.8 / 465.979
  25156. }
  25157. },
  25158. maw: {
  25159. height: math.unit(4.665, "feet"),
  25160. name: "Maw",
  25161. image: {
  25162. source: "./media/characters/selicia/maw.svg"
  25163. }
  25164. },
  25165. },
  25166. [
  25167. {
  25168. name: "Normal",
  25169. height: math.unit(11, "feet"),
  25170. default: true
  25171. },
  25172. ]
  25173. ))
  25174. characterMakers.push(() => makeCharacter(
  25175. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25176. {
  25177. side: {
  25178. height: math.unit(2 + 6 / 12, "feet"),
  25179. weight: math.unit(30, "lb"),
  25180. name: "Side",
  25181. image: {
  25182. source: "./media/characters/layla/side.svg",
  25183. extra: 244 / 188,
  25184. bottom: 18.2 / 262.1
  25185. }
  25186. },
  25187. back: {
  25188. height: math.unit(2 + 6 / 12, "feet"),
  25189. weight: math.unit(30, "lb"),
  25190. name: "Back",
  25191. image: {
  25192. source: "./media/characters/layla/back.svg",
  25193. extra: 308 / 241.5,
  25194. bottom: 8.9 / 316.8
  25195. }
  25196. },
  25197. cumming: {
  25198. height: math.unit(2 + 6 / 12, "feet"),
  25199. weight: math.unit(30, "lb"),
  25200. name: "Cumming",
  25201. image: {
  25202. source: "./media/characters/layla/cumming.svg",
  25203. extra: 342 / 279,
  25204. bottom: 595 / 938
  25205. }
  25206. },
  25207. dickFlaccid: {
  25208. height: math.unit(2.595, "feet"),
  25209. name: "Flaccid Genitals",
  25210. image: {
  25211. source: "./media/characters/layla/dick-flaccid.svg"
  25212. }
  25213. },
  25214. dickErect: {
  25215. height: math.unit(2.359, "feet"),
  25216. name: "Erect Genitals",
  25217. image: {
  25218. source: "./media/characters/layla/dick-erect.svg"
  25219. }
  25220. },
  25221. dragon: {
  25222. height: math.unit(40, "feet"),
  25223. name: "Dragon",
  25224. image: {
  25225. source: "./media/characters/layla/dragon.svg",
  25226. extra: 610/535,
  25227. bottom: 367/977
  25228. }
  25229. },
  25230. taur: {
  25231. height: math.unit(30, "feet"),
  25232. name: "Taur",
  25233. image: {
  25234. source: "./media/characters/layla/taur.svg",
  25235. extra: 1268/1199,
  25236. bottom: 112/1380
  25237. }
  25238. },
  25239. },
  25240. [
  25241. {
  25242. name: "Micro",
  25243. height: math.unit(1, "inch")
  25244. },
  25245. {
  25246. name: "Small",
  25247. height: math.unit(1, "foot")
  25248. },
  25249. {
  25250. name: "Normal",
  25251. height: math.unit(2 + 6 / 12, "feet"),
  25252. default: true
  25253. },
  25254. {
  25255. name: "Macro",
  25256. height: math.unit(200, "feet")
  25257. },
  25258. {
  25259. name: "Megamacro",
  25260. height: math.unit(1000, "miles")
  25261. },
  25262. {
  25263. name: "Planetary",
  25264. height: math.unit(8000, "miles")
  25265. },
  25266. {
  25267. name: "True Layla",
  25268. height: math.unit(200000 * 7, "multiverses")
  25269. },
  25270. ]
  25271. ))
  25272. characterMakers.push(() => makeCharacter(
  25273. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25274. {
  25275. back: {
  25276. height: math.unit(10.5, "feet"),
  25277. weight: math.unit(800, "lb"),
  25278. name: "Back",
  25279. image: {
  25280. source: "./media/characters/knox/back.svg",
  25281. extra: 1486 / 1089,
  25282. bottom: 107 / 1601.4
  25283. }
  25284. },
  25285. side: {
  25286. height: math.unit(10.5, "feet"),
  25287. weight: math.unit(800, "lb"),
  25288. name: "Side",
  25289. image: {
  25290. source: "./media/characters/knox/side.svg",
  25291. extra: 244 / 218,
  25292. bottom: 14 / 260
  25293. }
  25294. },
  25295. },
  25296. [
  25297. {
  25298. name: "Compact",
  25299. height: math.unit(10.5, "feet"),
  25300. default: true
  25301. },
  25302. {
  25303. name: "Dynamax",
  25304. height: math.unit(210, "feet")
  25305. },
  25306. {
  25307. name: "Full Macro",
  25308. height: math.unit(850, "feet")
  25309. },
  25310. ]
  25311. ))
  25312. characterMakers.push(() => makeCharacter(
  25313. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25314. {
  25315. front: {
  25316. height: math.unit(28, "feet"),
  25317. weight: math.unit(10500, "lb"),
  25318. name: "Front",
  25319. image: {
  25320. source: "./media/characters/kayda/front.svg",
  25321. extra: 1536 / 1428,
  25322. bottom: 68.7 / 1603
  25323. }
  25324. },
  25325. back: {
  25326. height: math.unit(28, "feet"),
  25327. weight: math.unit(10500, "lb"),
  25328. name: "Back",
  25329. image: {
  25330. source: "./media/characters/kayda/back.svg",
  25331. extra: 1557 / 1464,
  25332. bottom: 39.5 / 1597.49
  25333. }
  25334. },
  25335. dick: {
  25336. height: math.unit(3.858, "feet"),
  25337. name: "Dick",
  25338. image: {
  25339. source: "./media/characters/kayda/dick.svg"
  25340. }
  25341. },
  25342. },
  25343. [
  25344. {
  25345. name: "Macro",
  25346. height: math.unit(28, "feet"),
  25347. default: true
  25348. },
  25349. ]
  25350. ))
  25351. characterMakers.push(() => makeCharacter(
  25352. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25353. {
  25354. front: {
  25355. height: math.unit(10 + 11 / 12, "feet"),
  25356. weight: math.unit(1400, "lb"),
  25357. name: "Front",
  25358. image: {
  25359. source: "./media/characters/brian/front.svg",
  25360. extra: 737 / 692,
  25361. bottom: 55.4 / 785
  25362. }
  25363. },
  25364. },
  25365. [
  25366. {
  25367. name: "Normal",
  25368. height: math.unit(10 + 11 / 12, "feet"),
  25369. default: true
  25370. },
  25371. ]
  25372. ))
  25373. characterMakers.push(() => makeCharacter(
  25374. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25375. {
  25376. front: {
  25377. height: math.unit(5 + 8 / 12, "feet"),
  25378. weight: math.unit(140, "lb"),
  25379. name: "Front",
  25380. image: {
  25381. source: "./media/characters/khemri/front.svg",
  25382. extra: 4780 / 4059,
  25383. bottom: 80.1 / 4859.25
  25384. }
  25385. },
  25386. },
  25387. [
  25388. {
  25389. name: "Micro",
  25390. height: math.unit(6, "inches")
  25391. },
  25392. {
  25393. name: "Normal",
  25394. height: math.unit(5 + 8 / 12, "feet"),
  25395. default: true
  25396. },
  25397. ]
  25398. ))
  25399. characterMakers.push(() => makeCharacter(
  25400. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25401. {
  25402. front: {
  25403. height: math.unit(13, "feet"),
  25404. weight: math.unit(1700, "lb"),
  25405. name: "Front",
  25406. image: {
  25407. source: "./media/characters/felix-braveheart/front.svg",
  25408. extra: 1222 / 1157,
  25409. bottom: 53.2 / 1280
  25410. }
  25411. },
  25412. back: {
  25413. height: math.unit(13, "feet"),
  25414. weight: math.unit(1700, "lb"),
  25415. name: "Back",
  25416. image: {
  25417. source: "./media/characters/felix-braveheart/back.svg",
  25418. extra: 1277 / 1203,
  25419. bottom: 50.2 / 1327
  25420. }
  25421. },
  25422. feral: {
  25423. height: math.unit(6, "feet"),
  25424. weight: math.unit(400, "lb"),
  25425. name: "Feral",
  25426. image: {
  25427. source: "./media/characters/felix-braveheart/feral.svg",
  25428. extra: 682 / 625,
  25429. bottom: 6.9 / 688
  25430. }
  25431. },
  25432. },
  25433. [
  25434. {
  25435. name: "Normal",
  25436. height: math.unit(13, "feet"),
  25437. default: true
  25438. },
  25439. ]
  25440. ))
  25441. characterMakers.push(() => makeCharacter(
  25442. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25443. {
  25444. side: {
  25445. height: math.unit(5 + 11 / 12, "feet"),
  25446. weight: math.unit(1400, "lb"),
  25447. name: "Side",
  25448. image: {
  25449. source: "./media/characters/shadow-blade/side.svg",
  25450. extra: 1726 / 1267,
  25451. bottom: 58.4 / 1785
  25452. }
  25453. },
  25454. },
  25455. [
  25456. {
  25457. name: "Normal",
  25458. height: math.unit(5 + 11 / 12, "feet"),
  25459. default: true
  25460. },
  25461. ]
  25462. ))
  25463. characterMakers.push(() => makeCharacter(
  25464. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25465. {
  25466. front: {
  25467. height: math.unit(1 + 6 / 12, "feet"),
  25468. weight: math.unit(25, "lb"),
  25469. name: "Front",
  25470. image: {
  25471. source: "./media/characters/karla-halldor/front.svg",
  25472. extra: 1459 / 1383,
  25473. bottom: 12 / 1472
  25474. }
  25475. },
  25476. },
  25477. [
  25478. {
  25479. name: "Normal",
  25480. height: math.unit(1 + 6 / 12, "feet"),
  25481. default: true
  25482. },
  25483. ]
  25484. ))
  25485. characterMakers.push(() => makeCharacter(
  25486. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25487. {
  25488. front: {
  25489. height: math.unit(6 + 2 / 12, "feet"),
  25490. weight: math.unit(160, "lb"),
  25491. name: "Front",
  25492. image: {
  25493. source: "./media/characters/ariam/front.svg",
  25494. extra: 1073/976,
  25495. bottom: 52/1125
  25496. }
  25497. },
  25498. back: {
  25499. height: math.unit(6 + 2/12, "feet"),
  25500. weight: math.unit(160, "lb"),
  25501. name: "Back",
  25502. image: {
  25503. source: "./media/characters/ariam/back.svg",
  25504. extra: 1103/1023,
  25505. bottom: 9/1112
  25506. }
  25507. },
  25508. dressed: {
  25509. height: math.unit(6 + 2/12, "feet"),
  25510. weight: math.unit(160, "lb"),
  25511. name: "Dressed",
  25512. image: {
  25513. source: "./media/characters/ariam/dressed.svg",
  25514. extra: 1099/1009,
  25515. bottom: 25/1124
  25516. }
  25517. },
  25518. squatting: {
  25519. height: math.unit(4.1, "feet"),
  25520. weight: math.unit(160, "lb"),
  25521. name: "Squatting",
  25522. image: {
  25523. source: "./media/characters/ariam/squatting.svg",
  25524. extra: 2617 / 2112,
  25525. bottom: 61.2 / 2681,
  25526. }
  25527. },
  25528. },
  25529. [
  25530. {
  25531. name: "Normal",
  25532. height: math.unit(6 + 2 / 12, "feet"),
  25533. default: true
  25534. },
  25535. {
  25536. name: "Normal+",
  25537. height: math.unit(4, "meters")
  25538. },
  25539. {
  25540. name: "Macro",
  25541. height: math.unit(50, "meters")
  25542. },
  25543. {
  25544. name: "Macro+",
  25545. height: math.unit(100, "meters")
  25546. },
  25547. {
  25548. name: "Megamacro",
  25549. height: math.unit(20, "km")
  25550. },
  25551. {
  25552. name: "Caretaker",
  25553. height: math.unit(444, "megameters")
  25554. },
  25555. ]
  25556. ))
  25557. characterMakers.push(() => makeCharacter(
  25558. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25559. {
  25560. front: {
  25561. height: math.unit(1.67, "meters"),
  25562. weight: math.unit(140, "lb"),
  25563. name: "Front",
  25564. image: {
  25565. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25566. extra: 438 / 410,
  25567. bottom: 0.75 / 439
  25568. }
  25569. },
  25570. },
  25571. [
  25572. {
  25573. name: "Shrunken",
  25574. height: math.unit(7.6, "cm")
  25575. },
  25576. {
  25577. name: "Human Scale",
  25578. height: math.unit(1.67, "meters")
  25579. },
  25580. {
  25581. name: "Wolxi Scale",
  25582. height: math.unit(36.7, "meters"),
  25583. default: true
  25584. },
  25585. ]
  25586. ))
  25587. characterMakers.push(() => makeCharacter(
  25588. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25589. {
  25590. front: {
  25591. height: math.unit(1.73, "meters"),
  25592. weight: math.unit(240, "lb"),
  25593. name: "Front",
  25594. image: {
  25595. source: "./media/characters/izue-two-mothers/front.svg",
  25596. extra: 469 / 437,
  25597. bottom: 1.24 / 470.6
  25598. }
  25599. },
  25600. },
  25601. [
  25602. {
  25603. name: "Shrunken",
  25604. height: math.unit(7.86, "cm")
  25605. },
  25606. {
  25607. name: "Human Scale",
  25608. height: math.unit(1.73, "meters")
  25609. },
  25610. {
  25611. name: "Wolxi Scale",
  25612. height: math.unit(38, "meters"),
  25613. default: true
  25614. },
  25615. ]
  25616. ))
  25617. characterMakers.push(() => makeCharacter(
  25618. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25619. {
  25620. front: {
  25621. height: math.unit(1.55, "meters"),
  25622. weight: math.unit(120, "lb"),
  25623. name: "Front",
  25624. image: {
  25625. source: "./media/characters/teeku-love-shack/front.svg",
  25626. extra: 387 / 362,
  25627. bottom: 1.51 / 388
  25628. }
  25629. },
  25630. },
  25631. [
  25632. {
  25633. name: "Shrunken",
  25634. height: math.unit(7, "cm")
  25635. },
  25636. {
  25637. name: "Human Scale",
  25638. height: math.unit(1.55, "meters")
  25639. },
  25640. {
  25641. name: "Wolxi Scale",
  25642. height: math.unit(34.1, "meters"),
  25643. default: true
  25644. },
  25645. ]
  25646. ))
  25647. characterMakers.push(() => makeCharacter(
  25648. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25649. {
  25650. front: {
  25651. height: math.unit(1.83, "meters"),
  25652. weight: math.unit(135, "lb"),
  25653. name: "Front",
  25654. image: {
  25655. source: "./media/characters/dejma-the-red/front.svg",
  25656. extra: 480 / 458,
  25657. bottom: 1.8 / 482
  25658. }
  25659. },
  25660. },
  25661. [
  25662. {
  25663. name: "Shrunken",
  25664. height: math.unit(8.3, "cm")
  25665. },
  25666. {
  25667. name: "Human Scale",
  25668. height: math.unit(1.83, "meters")
  25669. },
  25670. {
  25671. name: "Wolxi Scale",
  25672. height: math.unit(40, "meters"),
  25673. default: true
  25674. },
  25675. ]
  25676. ))
  25677. characterMakers.push(() => makeCharacter(
  25678. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25679. {
  25680. front: {
  25681. height: math.unit(1.78, "meters"),
  25682. weight: math.unit(65, "kg"),
  25683. name: "Front",
  25684. image: {
  25685. source: "./media/characters/aki/front.svg",
  25686. extra: 452 / 415
  25687. }
  25688. },
  25689. frontNsfw: {
  25690. height: math.unit(1.78, "meters"),
  25691. weight: math.unit(65, "kg"),
  25692. name: "Front (NSFW)",
  25693. image: {
  25694. source: "./media/characters/aki/front-nsfw.svg",
  25695. extra: 452 / 415
  25696. }
  25697. },
  25698. back: {
  25699. height: math.unit(1.78, "meters"),
  25700. weight: math.unit(65, "kg"),
  25701. name: "Back",
  25702. image: {
  25703. source: "./media/characters/aki/back.svg",
  25704. extra: 452 / 415
  25705. }
  25706. },
  25707. rump: {
  25708. height: math.unit(2.05, "feet"),
  25709. name: "Rump",
  25710. image: {
  25711. source: "./media/characters/aki/rump.svg"
  25712. }
  25713. },
  25714. dick: {
  25715. height: math.unit(0.95, "feet"),
  25716. name: "Dick",
  25717. image: {
  25718. source: "./media/characters/aki/dick.svg"
  25719. }
  25720. },
  25721. },
  25722. [
  25723. {
  25724. name: "Micro",
  25725. height: math.unit(15, "cm")
  25726. },
  25727. {
  25728. name: "Normal",
  25729. height: math.unit(178, "cm"),
  25730. default: true
  25731. },
  25732. {
  25733. name: "Macro",
  25734. height: math.unit(214, "m")
  25735. },
  25736. {
  25737. name: "Macro+",
  25738. height: math.unit(534, "m")
  25739. },
  25740. ]
  25741. ))
  25742. characterMakers.push(() => makeCharacter(
  25743. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25744. {
  25745. front: {
  25746. height: math.unit(5 + 5 / 12, "feet"),
  25747. weight: math.unit(120, "lb"),
  25748. name: "Front",
  25749. image: {
  25750. source: "./media/characters/ari/front.svg",
  25751. extra: 1550/1471,
  25752. bottom: 39/1589
  25753. }
  25754. },
  25755. },
  25756. [
  25757. {
  25758. name: "Normal",
  25759. height: math.unit(5 + 5 / 12, "feet")
  25760. },
  25761. {
  25762. name: "Macro",
  25763. height: math.unit(100, "feet"),
  25764. default: true
  25765. },
  25766. {
  25767. name: "Megamacro",
  25768. height: math.unit(100, "miles")
  25769. },
  25770. {
  25771. name: "Gigamacro",
  25772. height: math.unit(80000, "miles")
  25773. },
  25774. ]
  25775. ))
  25776. characterMakers.push(() => makeCharacter(
  25777. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25778. {
  25779. side: {
  25780. height: math.unit(9, "feet"),
  25781. weight: math.unit(400, "kg"),
  25782. name: "Side",
  25783. image: {
  25784. source: "./media/characters/bolt/side.svg",
  25785. extra: 1126 / 896,
  25786. bottom: 60 / 1187.3,
  25787. }
  25788. },
  25789. },
  25790. [
  25791. {
  25792. name: "Micro",
  25793. height: math.unit(5, "inches")
  25794. },
  25795. {
  25796. name: "Normal",
  25797. height: math.unit(9, "feet"),
  25798. default: true
  25799. },
  25800. {
  25801. name: "Macro",
  25802. height: math.unit(700, "feet")
  25803. },
  25804. {
  25805. name: "Max Size",
  25806. height: math.unit(1.52e22, "yottameters")
  25807. },
  25808. ]
  25809. ))
  25810. characterMakers.push(() => makeCharacter(
  25811. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25812. {
  25813. front: {
  25814. height: math.unit(4.3, "meters"),
  25815. weight: math.unit(3, "tons"),
  25816. name: "Front",
  25817. image: {
  25818. source: "./media/characters/draekon-sylviar/front.svg",
  25819. extra: 2072/1512,
  25820. bottom: 74/2146
  25821. }
  25822. },
  25823. back: {
  25824. height: math.unit(4.3, "meters"),
  25825. weight: math.unit(3, "tons"),
  25826. name: "Back",
  25827. image: {
  25828. source: "./media/characters/draekon-sylviar/back.svg",
  25829. extra: 1639/1483,
  25830. bottom: 41/1680
  25831. }
  25832. },
  25833. feral: {
  25834. height: math.unit(1.15, "meters"),
  25835. weight: math.unit(3, "tons"),
  25836. name: "Feral",
  25837. image: {
  25838. source: "./media/characters/draekon-sylviar/feral.svg",
  25839. extra: 1033/395,
  25840. bottom: 130/1163
  25841. }
  25842. },
  25843. maw: {
  25844. height: math.unit(1.3, "meters"),
  25845. name: "Maw",
  25846. image: {
  25847. source: "./media/characters/draekon-sylviar/maw.svg"
  25848. }
  25849. },
  25850. mawSeparated: {
  25851. height: math.unit(1.53, "meters"),
  25852. name: "Separated Maw",
  25853. image: {
  25854. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25855. }
  25856. },
  25857. tail: {
  25858. height: math.unit(1.15, "meters"),
  25859. name: "Tail",
  25860. image: {
  25861. source: "./media/characters/draekon-sylviar/tail.svg"
  25862. }
  25863. },
  25864. tailDick: {
  25865. height: math.unit(1.15, "meters"),
  25866. name: "Tail (Dick)",
  25867. image: {
  25868. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25869. }
  25870. },
  25871. tailDickSeparated: {
  25872. height: math.unit(1.19, "meters"),
  25873. name: "Tail (Separated Dick)",
  25874. image: {
  25875. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25876. }
  25877. },
  25878. slit: {
  25879. height: math.unit(1, "meters"),
  25880. name: "Slit",
  25881. image: {
  25882. source: "./media/characters/draekon-sylviar/slit.svg"
  25883. }
  25884. },
  25885. dick: {
  25886. height: math.unit(1.15, "meters"),
  25887. name: "Dick",
  25888. image: {
  25889. source: "./media/characters/draekon-sylviar/dick.svg"
  25890. }
  25891. },
  25892. dickSeparated: {
  25893. height: math.unit(1.1, "meters"),
  25894. name: "Separated Dick",
  25895. image: {
  25896. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25897. }
  25898. },
  25899. sheath: {
  25900. height: math.unit(1.15, "meters"),
  25901. name: "Sheath",
  25902. image: {
  25903. source: "./media/characters/draekon-sylviar/sheath.svg"
  25904. }
  25905. },
  25906. },
  25907. [
  25908. {
  25909. name: "Small",
  25910. height: math.unit(4.53 / 2, "meters"),
  25911. default: true
  25912. },
  25913. {
  25914. name: "Normal",
  25915. height: math.unit(4.53, "meters"),
  25916. default: true
  25917. },
  25918. {
  25919. name: "Large",
  25920. height: math.unit(4.53 * 2, "meters"),
  25921. },
  25922. ]
  25923. ))
  25924. characterMakers.push(() => makeCharacter(
  25925. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25926. {
  25927. front: {
  25928. height: math.unit(6 + 2 / 12, "feet"),
  25929. weight: math.unit(180, "lb"),
  25930. name: "Front",
  25931. image: {
  25932. source: "./media/characters/brawler/front.svg",
  25933. extra: 3301 / 3027,
  25934. bottom: 138 / 3439
  25935. }
  25936. },
  25937. },
  25938. [
  25939. {
  25940. name: "Normal",
  25941. height: math.unit(6 + 2 / 12, "feet"),
  25942. default: true
  25943. },
  25944. ]
  25945. ))
  25946. characterMakers.push(() => makeCharacter(
  25947. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25948. {
  25949. front: {
  25950. height: math.unit(11, "feet"),
  25951. weight: math.unit(1000, "lb"),
  25952. name: "Front",
  25953. image: {
  25954. source: "./media/characters/alex/front.svg",
  25955. bottom: 44.5 / 620
  25956. }
  25957. },
  25958. },
  25959. [
  25960. {
  25961. name: "Micro",
  25962. height: math.unit(5, "inches")
  25963. },
  25964. {
  25965. name: "Normal",
  25966. height: math.unit(11, "feet"),
  25967. default: true
  25968. },
  25969. {
  25970. name: "Macro",
  25971. height: math.unit(9.5e9, "feet")
  25972. },
  25973. {
  25974. name: "Max Size",
  25975. height: math.unit(1.4e283, "yottameters")
  25976. },
  25977. ]
  25978. ))
  25979. characterMakers.push(() => makeCharacter(
  25980. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25981. {
  25982. female: {
  25983. height: math.unit(29.9, "m"),
  25984. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25985. name: "Female",
  25986. image: {
  25987. source: "./media/characters/zenari/female.svg",
  25988. extra: 3281.6 / 3217,
  25989. bottom: 72.2 / 3353
  25990. }
  25991. },
  25992. male: {
  25993. height: math.unit(27.7, "m"),
  25994. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25995. name: "Male",
  25996. image: {
  25997. source: "./media/characters/zenari/male.svg",
  25998. extra: 3008 / 2991,
  25999. bottom: 54.6 / 3069
  26000. }
  26001. },
  26002. },
  26003. [
  26004. {
  26005. name: "Macro",
  26006. height: math.unit(29.7, "meters"),
  26007. default: true
  26008. },
  26009. ]
  26010. ))
  26011. characterMakers.push(() => makeCharacter(
  26012. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26013. {
  26014. female: {
  26015. height: math.unit(23.8, "m"),
  26016. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26017. name: "Female",
  26018. image: {
  26019. source: "./media/characters/mactarian/female.svg",
  26020. extra: 2662 / 2569,
  26021. bottom: 73 / 2736
  26022. }
  26023. },
  26024. male: {
  26025. height: math.unit(23.8, "m"),
  26026. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26027. name: "Male",
  26028. image: {
  26029. source: "./media/characters/mactarian/male.svg",
  26030. extra: 2673 / 2600,
  26031. bottom: 76 / 2750
  26032. }
  26033. },
  26034. },
  26035. [
  26036. {
  26037. name: "Macro",
  26038. height: math.unit(23.8, "meters"),
  26039. default: true
  26040. },
  26041. ]
  26042. ))
  26043. characterMakers.push(() => makeCharacter(
  26044. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26045. {
  26046. female: {
  26047. height: math.unit(19.3, "m"),
  26048. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26049. name: "Female",
  26050. image: {
  26051. source: "./media/characters/umok/female.svg",
  26052. extra: 2186 / 2078,
  26053. bottom: 87 / 2277
  26054. }
  26055. },
  26056. male: {
  26057. height: math.unit(19.5, "m"),
  26058. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26059. name: "Male",
  26060. image: {
  26061. source: "./media/characters/umok/male.svg",
  26062. extra: 2233 / 2140,
  26063. bottom: 24.4 / 2258
  26064. }
  26065. },
  26066. },
  26067. [
  26068. {
  26069. name: "Macro",
  26070. height: math.unit(19.3, "meters"),
  26071. default: true
  26072. },
  26073. ]
  26074. ))
  26075. characterMakers.push(() => makeCharacter(
  26076. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26077. {
  26078. female: {
  26079. height: math.unit(26.15, "m"),
  26080. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26081. name: "Female",
  26082. image: {
  26083. source: "./media/characters/joraxian/female.svg",
  26084. extra: 2912 / 2824,
  26085. bottom: 36 / 2956
  26086. }
  26087. },
  26088. male: {
  26089. height: math.unit(25.4, "m"),
  26090. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26091. name: "Male",
  26092. image: {
  26093. source: "./media/characters/joraxian/male.svg",
  26094. extra: 2877 / 2721,
  26095. bottom: 82 / 2967
  26096. }
  26097. },
  26098. },
  26099. [
  26100. {
  26101. name: "Macro",
  26102. height: math.unit(26.15, "meters"),
  26103. default: true
  26104. },
  26105. ]
  26106. ))
  26107. characterMakers.push(() => makeCharacter(
  26108. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26109. {
  26110. female: {
  26111. height: math.unit(21.6, "m"),
  26112. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26113. name: "Female",
  26114. image: {
  26115. source: "./media/characters/sthara/female.svg",
  26116. extra: 2516 / 2347,
  26117. bottom: 21.5 / 2537
  26118. }
  26119. },
  26120. male: {
  26121. height: math.unit(24, "m"),
  26122. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26123. name: "Male",
  26124. image: {
  26125. source: "./media/characters/sthara/male.svg",
  26126. extra: 2732 / 2607,
  26127. bottom: 23 / 2732
  26128. }
  26129. },
  26130. },
  26131. [
  26132. {
  26133. name: "Macro",
  26134. height: math.unit(21.6, "meters"),
  26135. default: true
  26136. },
  26137. ]
  26138. ))
  26139. characterMakers.push(() => makeCharacter(
  26140. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26141. {
  26142. front: {
  26143. height: math.unit(6 + 4 / 12, "feet"),
  26144. weight: math.unit(175, "lb"),
  26145. name: "Front",
  26146. image: {
  26147. source: "./media/characters/luka-bryzant/front.svg",
  26148. extra: 311 / 289,
  26149. bottom: 4 / 315
  26150. }
  26151. },
  26152. back: {
  26153. height: math.unit(6 + 4 / 12, "feet"),
  26154. weight: math.unit(175, "lb"),
  26155. name: "Back",
  26156. image: {
  26157. source: "./media/characters/luka-bryzant/back.svg",
  26158. extra: 311 / 289,
  26159. bottom: 3.8 / 313.7
  26160. }
  26161. },
  26162. },
  26163. [
  26164. {
  26165. name: "Micro",
  26166. height: math.unit(10, "inches")
  26167. },
  26168. {
  26169. name: "Normal",
  26170. height: math.unit(6 + 4 / 12, "feet"),
  26171. default: true
  26172. },
  26173. {
  26174. name: "Large",
  26175. height: math.unit(12, "feet")
  26176. },
  26177. ]
  26178. ))
  26179. characterMakers.push(() => makeCharacter(
  26180. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26181. {
  26182. front: {
  26183. height: math.unit(5 + 7 / 12, "feet"),
  26184. weight: math.unit(185, "lb"),
  26185. name: "Front",
  26186. image: {
  26187. source: "./media/characters/aman-aquila/front.svg",
  26188. extra: 1013 / 976,
  26189. bottom: 45.6 / 1057
  26190. }
  26191. },
  26192. side: {
  26193. height: math.unit(5 + 7 / 12, "feet"),
  26194. weight: math.unit(185, "lb"),
  26195. name: "Side",
  26196. image: {
  26197. source: "./media/characters/aman-aquila/side.svg",
  26198. extra: 1054 / 1011,
  26199. bottom: 15 / 1070
  26200. }
  26201. },
  26202. back: {
  26203. height: math.unit(5 + 7 / 12, "feet"),
  26204. weight: math.unit(185, "lb"),
  26205. name: "Back",
  26206. image: {
  26207. source: "./media/characters/aman-aquila/back.svg",
  26208. extra: 1026 / 970,
  26209. bottom: 12 / 1039
  26210. }
  26211. },
  26212. head: {
  26213. height: math.unit(1.211, "feet"),
  26214. name: "Head",
  26215. image: {
  26216. source: "./media/characters/aman-aquila/head.svg",
  26217. }
  26218. },
  26219. },
  26220. [
  26221. {
  26222. name: "Minimicro",
  26223. height: math.unit(0.057, "inches")
  26224. },
  26225. {
  26226. name: "Micro",
  26227. height: math.unit(7, "inches")
  26228. },
  26229. {
  26230. name: "Mini",
  26231. height: math.unit(3 + 7 / 12, "feet")
  26232. },
  26233. {
  26234. name: "Normal",
  26235. height: math.unit(5 + 7 / 12, "feet"),
  26236. default: true
  26237. },
  26238. {
  26239. name: "Macro",
  26240. height: math.unit(157 + 7 / 12, "feet")
  26241. },
  26242. {
  26243. name: "Megamacro",
  26244. height: math.unit(1557 + 7 / 12, "feet")
  26245. },
  26246. {
  26247. name: "Gigamacro",
  26248. height: math.unit(15557 + 7 / 12, "feet")
  26249. },
  26250. ]
  26251. ))
  26252. characterMakers.push(() => makeCharacter(
  26253. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26254. {
  26255. front: {
  26256. height: math.unit(3 + 2 / 12, "inches"),
  26257. weight: math.unit(0.3, "ounces"),
  26258. name: "Front",
  26259. image: {
  26260. source: "./media/characters/hiphae/front.svg",
  26261. extra: 1931 / 1683,
  26262. bottom: 24 / 1955
  26263. }
  26264. },
  26265. },
  26266. [
  26267. {
  26268. name: "Normal",
  26269. height: math.unit(3 + 1 / 2, "inches"),
  26270. default: true
  26271. },
  26272. ]
  26273. ))
  26274. characterMakers.push(() => makeCharacter(
  26275. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26276. {
  26277. front: {
  26278. height: math.unit(5 + 10 / 12, "feet"),
  26279. weight: math.unit(165, "lb"),
  26280. name: "Front",
  26281. image: {
  26282. source: "./media/characters/nicky/front.svg",
  26283. extra: 3144 / 2886,
  26284. bottom: 45.6 / 3192
  26285. }
  26286. },
  26287. back: {
  26288. height: math.unit(5 + 10 / 12, "feet"),
  26289. weight: math.unit(165, "lb"),
  26290. name: "Back",
  26291. image: {
  26292. source: "./media/characters/nicky/back.svg",
  26293. extra: 3055 / 2804,
  26294. bottom: 28.4 / 3087
  26295. }
  26296. },
  26297. frontclothed: {
  26298. height: math.unit(5 + 10 / 12, "feet"),
  26299. weight: math.unit(165, "lb"),
  26300. name: "Front-clothed",
  26301. image: {
  26302. source: "./media/characters/nicky/front-clothed.svg",
  26303. extra: 3184.9 / 2926.9,
  26304. bottom: 86.5 / 3239.9
  26305. }
  26306. },
  26307. foot: {
  26308. height: math.unit(1.16, "feet"),
  26309. name: "Foot",
  26310. image: {
  26311. source: "./media/characters/nicky/foot.svg"
  26312. }
  26313. },
  26314. feet: {
  26315. height: math.unit(1.34, "feet"),
  26316. name: "Feet",
  26317. image: {
  26318. source: "./media/characters/nicky/feet.svg"
  26319. }
  26320. },
  26321. maw: {
  26322. height: math.unit(0.9, "feet"),
  26323. name: "Maw",
  26324. image: {
  26325. source: "./media/characters/nicky/maw.svg"
  26326. }
  26327. },
  26328. },
  26329. [
  26330. {
  26331. name: "Normal",
  26332. height: math.unit(5 + 10 / 12, "feet"),
  26333. default: true
  26334. },
  26335. {
  26336. name: "Macro",
  26337. height: math.unit(60, "feet")
  26338. },
  26339. {
  26340. name: "Megamacro",
  26341. height: math.unit(1, "mile")
  26342. },
  26343. ]
  26344. ))
  26345. characterMakers.push(() => makeCharacter(
  26346. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26347. {
  26348. side: {
  26349. height: math.unit(10, "feet"),
  26350. weight: math.unit(600, "lb"),
  26351. name: "Side",
  26352. image: {
  26353. source: "./media/characters/blair/side.svg",
  26354. bottom: 16.6 / 475,
  26355. extra: 458 / 431
  26356. }
  26357. },
  26358. },
  26359. [
  26360. {
  26361. name: "Micro",
  26362. height: math.unit(8, "inches")
  26363. },
  26364. {
  26365. name: "Normal",
  26366. height: math.unit(10, "feet"),
  26367. default: true
  26368. },
  26369. {
  26370. name: "Macro",
  26371. height: math.unit(180, "feet")
  26372. },
  26373. ]
  26374. ))
  26375. characterMakers.push(() => makeCharacter(
  26376. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26377. {
  26378. front: {
  26379. height: math.unit(5 + 4 / 12, "feet"),
  26380. weight: math.unit(125, "lb"),
  26381. name: "Front",
  26382. image: {
  26383. source: "./media/characters/fisher/front.svg",
  26384. extra: 444 / 390,
  26385. bottom: 2 / 444.8
  26386. }
  26387. },
  26388. },
  26389. [
  26390. {
  26391. name: "Micro",
  26392. height: math.unit(4, "inches")
  26393. },
  26394. {
  26395. name: "Normal",
  26396. height: math.unit(5 + 4 / 12, "feet"),
  26397. default: true
  26398. },
  26399. {
  26400. name: "Macro",
  26401. height: math.unit(100, "feet")
  26402. },
  26403. ]
  26404. ))
  26405. characterMakers.push(() => makeCharacter(
  26406. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26407. {
  26408. front: {
  26409. height: math.unit(6.71, "feet"),
  26410. weight: math.unit(200, "lb"),
  26411. preyCapacity: math.unit(1000000, "people"),
  26412. name: "Front",
  26413. image: {
  26414. source: "./media/characters/gliss/front.svg",
  26415. extra: 2347 / 2231,
  26416. bottom: 113 / 2462
  26417. }
  26418. },
  26419. hammerspaceSize: {
  26420. height: math.unit(6.71 * 717, "feet"),
  26421. weight: math.unit(200, "lb"),
  26422. preyCapacity: math.unit(1000000, "people"),
  26423. name: "Hammerspace Size",
  26424. image: {
  26425. source: "./media/characters/gliss/front.svg",
  26426. extra: 2347 / 2231,
  26427. bottom: 113 / 2462
  26428. }
  26429. },
  26430. },
  26431. [
  26432. {
  26433. name: "Normal",
  26434. height: math.unit(6.71, "feet"),
  26435. default: true
  26436. },
  26437. ]
  26438. ))
  26439. characterMakers.push(() => makeCharacter(
  26440. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26441. {
  26442. side: {
  26443. height: math.unit(1.44, "m"),
  26444. weight: math.unit(80, "kg"),
  26445. name: "Side",
  26446. image: {
  26447. source: "./media/characters/dune-anderson/side.svg",
  26448. bottom: 49 / 1426
  26449. }
  26450. },
  26451. },
  26452. [
  26453. {
  26454. name: "Wolf-sized",
  26455. height: math.unit(1.44, "meters")
  26456. },
  26457. {
  26458. name: "Normal",
  26459. height: math.unit(5.05, "meters"),
  26460. default: true
  26461. },
  26462. {
  26463. name: "Big",
  26464. height: math.unit(14.4, "meters")
  26465. },
  26466. {
  26467. name: "Huge",
  26468. height: math.unit(144, "meters")
  26469. },
  26470. ]
  26471. ))
  26472. characterMakers.push(() => makeCharacter(
  26473. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26474. {
  26475. front: {
  26476. height: math.unit(7, "feet"),
  26477. weight: math.unit(425, "lb"),
  26478. name: "Front",
  26479. image: {
  26480. source: "./media/characters/hind/front.svg",
  26481. extra: 2091 / 1860,
  26482. bottom: 129 / 2220
  26483. }
  26484. },
  26485. back: {
  26486. height: math.unit(7, "feet"),
  26487. weight: math.unit(425, "lb"),
  26488. name: "Back",
  26489. image: {
  26490. source: "./media/characters/hind/back.svg",
  26491. extra: 2091 / 1860,
  26492. bottom: 24.6 / 2309
  26493. }
  26494. },
  26495. tail: {
  26496. height: math.unit(2.8, "feet"),
  26497. name: "Tail",
  26498. image: {
  26499. source: "./media/characters/hind/tail.svg"
  26500. }
  26501. },
  26502. head: {
  26503. height: math.unit(2.55, "feet"),
  26504. name: "Head",
  26505. image: {
  26506. source: "./media/characters/hind/head.svg"
  26507. }
  26508. },
  26509. },
  26510. [
  26511. {
  26512. name: "XS",
  26513. height: math.unit(0.7, "feet")
  26514. },
  26515. {
  26516. name: "Normal",
  26517. height: math.unit(7, "feet"),
  26518. default: true
  26519. },
  26520. {
  26521. name: "XL",
  26522. height: math.unit(70, "feet")
  26523. },
  26524. ]
  26525. ))
  26526. characterMakers.push(() => makeCharacter(
  26527. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26528. {
  26529. front: {
  26530. height: math.unit(2.1, "meters"),
  26531. weight: math.unit(150, "lb"),
  26532. name: "Front",
  26533. image: {
  26534. source: "./media/characters/tharquench-sizestealer/front.svg",
  26535. extra: 1605/1470,
  26536. bottom: 36/1641
  26537. }
  26538. },
  26539. frontAlt: {
  26540. height: math.unit(2.1, "meters"),
  26541. weight: math.unit(150, "lb"),
  26542. name: "Front (Alt)",
  26543. image: {
  26544. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26545. extra: 2318 / 2063,
  26546. bottom: 93.4 / 2410
  26547. }
  26548. },
  26549. },
  26550. [
  26551. {
  26552. name: "Nano",
  26553. height: math.unit(1, "mm")
  26554. },
  26555. {
  26556. name: "Micro",
  26557. height: math.unit(1, "cm")
  26558. },
  26559. {
  26560. name: "Normal",
  26561. height: math.unit(2.1, "meters"),
  26562. default: true
  26563. },
  26564. ]
  26565. ))
  26566. characterMakers.push(() => makeCharacter(
  26567. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26568. {
  26569. front: {
  26570. height: math.unit(7 + 5 / 12, "feet"),
  26571. weight: math.unit(357, "lb"),
  26572. name: "Front",
  26573. image: {
  26574. source: "./media/characters/solex-draconov/front.svg",
  26575. extra: 1993 / 1865,
  26576. bottom: 117 / 2111
  26577. }
  26578. },
  26579. },
  26580. [
  26581. {
  26582. name: "Natural Height",
  26583. height: math.unit(7 + 5 / 12, "feet"),
  26584. default: true
  26585. },
  26586. {
  26587. name: "Macro",
  26588. height: math.unit(350, "feet")
  26589. },
  26590. {
  26591. name: "Macro+",
  26592. height: math.unit(1000, "feet")
  26593. },
  26594. {
  26595. name: "Megamacro",
  26596. height: math.unit(20, "km")
  26597. },
  26598. {
  26599. name: "Megamacro+",
  26600. height: math.unit(1000, "km")
  26601. },
  26602. {
  26603. name: "Gigamacro",
  26604. height: math.unit(2.5, "Gm")
  26605. },
  26606. {
  26607. name: "Teramacro",
  26608. height: math.unit(15, "Tm")
  26609. },
  26610. {
  26611. name: "Galactic",
  26612. height: math.unit(30, "Zm")
  26613. },
  26614. {
  26615. name: "Universal",
  26616. height: math.unit(21000, "Ym")
  26617. },
  26618. {
  26619. name: "Omniversal",
  26620. height: math.unit(9.861e50, "Ym")
  26621. },
  26622. {
  26623. name: "Existential",
  26624. height: math.unit(1e300, "meters")
  26625. },
  26626. ]
  26627. ))
  26628. characterMakers.push(() => makeCharacter(
  26629. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26630. {
  26631. side: {
  26632. height: math.unit(25, "feet"),
  26633. weight: math.unit(90000, "lb"),
  26634. name: "Side",
  26635. image: {
  26636. source: "./media/characters/mandarax/side.svg",
  26637. extra: 614 / 332,
  26638. bottom: 55 / 630
  26639. }
  26640. },
  26641. lounging: {
  26642. height: math.unit(15.4, "feet"),
  26643. weight: math.unit(90000, "lb"),
  26644. name: "Lounging",
  26645. image: {
  26646. source: "./media/characters/mandarax/lounging.svg",
  26647. extra: 817/609,
  26648. bottom: 685/1502
  26649. }
  26650. },
  26651. head: {
  26652. height: math.unit(11.4, "feet"),
  26653. name: "Head",
  26654. image: {
  26655. source: "./media/characters/mandarax/head.svg"
  26656. }
  26657. },
  26658. belly: {
  26659. height: math.unit(33, "feet"),
  26660. name: "Belly",
  26661. preyCapacity: math.unit(500, "people"),
  26662. image: {
  26663. source: "./media/characters/mandarax/belly.svg"
  26664. }
  26665. },
  26666. dick: {
  26667. height: math.unit(8.46, "feet"),
  26668. name: "Dick",
  26669. image: {
  26670. source: "./media/characters/mandarax/dick.svg"
  26671. }
  26672. },
  26673. top: {
  26674. height: math.unit(28, "meters"),
  26675. name: "Top",
  26676. image: {
  26677. source: "./media/characters/mandarax/top.svg"
  26678. }
  26679. },
  26680. },
  26681. [
  26682. {
  26683. name: "Normal",
  26684. height: math.unit(25, "feet"),
  26685. default: true
  26686. },
  26687. ]
  26688. ))
  26689. characterMakers.push(() => makeCharacter(
  26690. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26691. {
  26692. front: {
  26693. height: math.unit(5, "feet"),
  26694. weight: math.unit(90, "lb"),
  26695. name: "Front",
  26696. image: {
  26697. source: "./media/characters/pixil/front.svg",
  26698. extra: 2000 / 1618,
  26699. bottom: 12.3 / 2011
  26700. }
  26701. },
  26702. },
  26703. [
  26704. {
  26705. name: "Normal",
  26706. height: math.unit(5, "feet"),
  26707. default: true
  26708. },
  26709. {
  26710. name: "Megamacro",
  26711. height: math.unit(10, "miles"),
  26712. },
  26713. ]
  26714. ))
  26715. characterMakers.push(() => makeCharacter(
  26716. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26717. {
  26718. front: {
  26719. height: math.unit(7 + 2 / 12, "feet"),
  26720. weight: math.unit(200, "lb"),
  26721. name: "Front",
  26722. image: {
  26723. source: "./media/characters/angel/front.svg",
  26724. extra: 1830 / 1737,
  26725. bottom: 22.6 / 1854,
  26726. }
  26727. },
  26728. },
  26729. [
  26730. {
  26731. name: "Normal",
  26732. height: math.unit(7 + 2 / 12, "feet"),
  26733. default: true
  26734. },
  26735. {
  26736. name: "Macro",
  26737. height: math.unit(1000, "feet")
  26738. },
  26739. {
  26740. name: "Megamacro",
  26741. height: math.unit(2, "miles")
  26742. },
  26743. {
  26744. name: "Gigamacro",
  26745. height: math.unit(20, "earths")
  26746. },
  26747. ]
  26748. ))
  26749. characterMakers.push(() => makeCharacter(
  26750. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26751. {
  26752. front: {
  26753. height: math.unit(5, "feet"),
  26754. weight: math.unit(180, "lb"),
  26755. name: "Front",
  26756. image: {
  26757. source: "./media/characters/mekana/front.svg",
  26758. extra: 1671 / 1605,
  26759. bottom: 3.5 / 1691
  26760. }
  26761. },
  26762. side: {
  26763. height: math.unit(5, "feet"),
  26764. weight: math.unit(180, "lb"),
  26765. name: "Side",
  26766. image: {
  26767. source: "./media/characters/mekana/side.svg",
  26768. extra: 1671 / 1605,
  26769. bottom: 3.5 / 1691
  26770. }
  26771. },
  26772. back: {
  26773. height: math.unit(5, "feet"),
  26774. weight: math.unit(180, "lb"),
  26775. name: "Back",
  26776. image: {
  26777. source: "./media/characters/mekana/back.svg",
  26778. extra: 1671 / 1605,
  26779. bottom: 3.5 / 1691
  26780. }
  26781. },
  26782. },
  26783. [
  26784. {
  26785. name: "Normal",
  26786. height: math.unit(5, "feet"),
  26787. default: true
  26788. },
  26789. ]
  26790. ))
  26791. characterMakers.push(() => makeCharacter(
  26792. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26793. {
  26794. front: {
  26795. height: math.unit(4 + 6 / 12, "feet"),
  26796. weight: math.unit(80, "lb"),
  26797. name: "Front",
  26798. image: {
  26799. source: "./media/characters/pixie/front.svg",
  26800. extra: 1924 / 1825,
  26801. bottom: 22.4 / 1946
  26802. }
  26803. },
  26804. },
  26805. [
  26806. {
  26807. name: "Normal",
  26808. height: math.unit(4 + 6 / 12, "feet"),
  26809. default: true
  26810. },
  26811. {
  26812. name: "Macro",
  26813. height: math.unit(40, "feet")
  26814. },
  26815. ]
  26816. ))
  26817. characterMakers.push(() => makeCharacter(
  26818. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26819. {
  26820. front: {
  26821. height: math.unit(2.1, "meters"),
  26822. weight: math.unit(200, "lb"),
  26823. name: "Front",
  26824. image: {
  26825. source: "./media/characters/the-lascivious/front.svg",
  26826. extra: 1 / 0.893,
  26827. bottom: 3.5 / 573.7
  26828. }
  26829. },
  26830. },
  26831. [
  26832. {
  26833. name: "Human Scale",
  26834. height: math.unit(2.1, "meters")
  26835. },
  26836. {
  26837. name: "Wolxi Scale",
  26838. height: math.unit(46.2, "m"),
  26839. default: true
  26840. },
  26841. {
  26842. name: "Boinker of Buildings",
  26843. height: math.unit(10, "km")
  26844. },
  26845. {
  26846. name: "Shagger of Skyscrapers",
  26847. height: math.unit(40, "km")
  26848. },
  26849. {
  26850. name: "Banger of Boroughs",
  26851. height: math.unit(4000, "km")
  26852. },
  26853. {
  26854. name: "Screwer of States",
  26855. height: math.unit(100000, "km")
  26856. },
  26857. {
  26858. name: "Pounder of Planets",
  26859. height: math.unit(2000000, "km")
  26860. },
  26861. ]
  26862. ))
  26863. characterMakers.push(() => makeCharacter(
  26864. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26865. {
  26866. front: {
  26867. height: math.unit(6, "feet"),
  26868. weight: math.unit(150, "lb"),
  26869. name: "Front",
  26870. image: {
  26871. source: "./media/characters/aj/front.svg",
  26872. extra: 2039 / 1562,
  26873. bottom: 40 / 2079
  26874. }
  26875. },
  26876. },
  26877. [
  26878. {
  26879. name: "Normal",
  26880. height: math.unit(11 + 6 / 12, "feet"),
  26881. default: true
  26882. },
  26883. {
  26884. name: "Megamacro",
  26885. height: math.unit(60, "megameters")
  26886. },
  26887. ]
  26888. ))
  26889. characterMakers.push(() => makeCharacter(
  26890. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26891. {
  26892. side: {
  26893. height: math.unit(31 + 8 / 12, "feet"),
  26894. weight: math.unit(75000, "kg"),
  26895. name: "Side",
  26896. image: {
  26897. source: "./media/characters/koros/side.svg",
  26898. extra: 1442 / 1297,
  26899. bottom: 122.7 / 1562
  26900. }
  26901. },
  26902. dicksKingsCrown: {
  26903. height: math.unit(6, "feet"),
  26904. name: "Dicks (King's Crown)",
  26905. image: {
  26906. source: "./media/characters/koros/dicks-kings-crown.svg"
  26907. }
  26908. },
  26909. dicksTailSet: {
  26910. height: math.unit(3, "feet"),
  26911. name: "Dicks (Tail Set)",
  26912. image: {
  26913. source: "./media/characters/koros/dicks-tail-set.svg"
  26914. }
  26915. },
  26916. dickCumming: {
  26917. height: math.unit(7.98, "feet"),
  26918. name: "Dick (Cumming)",
  26919. image: {
  26920. source: "./media/characters/koros/dick-cumming.svg"
  26921. }
  26922. },
  26923. dicksBack: {
  26924. height: math.unit(5.9, "feet"),
  26925. name: "Dicks (Back)",
  26926. image: {
  26927. source: "./media/characters/koros/dicks-back.svg"
  26928. }
  26929. },
  26930. dicksFront: {
  26931. height: math.unit(3.72, "feet"),
  26932. name: "Dicks (Front)",
  26933. image: {
  26934. source: "./media/characters/koros/dicks-front.svg"
  26935. }
  26936. },
  26937. dicksPeeking: {
  26938. height: math.unit(3.0, "feet"),
  26939. name: "Dicks (Peeking)",
  26940. image: {
  26941. source: "./media/characters/koros/dicks-peeking.svg"
  26942. }
  26943. },
  26944. eye: {
  26945. height: math.unit(1.7, "feet"),
  26946. name: "Eye",
  26947. image: {
  26948. source: "./media/characters/koros/eye.svg"
  26949. }
  26950. },
  26951. headFront: {
  26952. height: math.unit(11.69, "feet"),
  26953. name: "Head (Front)",
  26954. image: {
  26955. source: "./media/characters/koros/head-front.svg"
  26956. }
  26957. },
  26958. headSide: {
  26959. height: math.unit(14, "feet"),
  26960. name: "Head (Side)",
  26961. image: {
  26962. source: "./media/characters/koros/head-side.svg"
  26963. }
  26964. },
  26965. leg: {
  26966. height: math.unit(17, "feet"),
  26967. name: "Leg",
  26968. image: {
  26969. source: "./media/characters/koros/leg.svg"
  26970. }
  26971. },
  26972. mawSide: {
  26973. height: math.unit(12.8, "feet"),
  26974. name: "Maw (Side)",
  26975. image: {
  26976. source: "./media/characters/koros/maw-side.svg"
  26977. }
  26978. },
  26979. mawSpitting: {
  26980. height: math.unit(17, "feet"),
  26981. name: "Maw (Spitting)",
  26982. image: {
  26983. source: "./media/characters/koros/maw-spitting.svg"
  26984. }
  26985. },
  26986. slit: {
  26987. height: math.unit(2.8, "feet"),
  26988. name: "Slit",
  26989. image: {
  26990. source: "./media/characters/koros/slit.svg"
  26991. }
  26992. },
  26993. stomach: {
  26994. height: math.unit(6.8, "feet"),
  26995. preyCapacity: math.unit(20, "people"),
  26996. name: "Stomach",
  26997. image: {
  26998. source: "./media/characters/koros/stomach.svg"
  26999. }
  27000. },
  27001. wingspanBottom: {
  27002. height: math.unit(114, "feet"),
  27003. name: "Wingspan (Bottom)",
  27004. image: {
  27005. source: "./media/characters/koros/wingspan-bottom.svg"
  27006. }
  27007. },
  27008. wingspanTop: {
  27009. height: math.unit(104, "feet"),
  27010. name: "Wingspan (Top)",
  27011. image: {
  27012. source: "./media/characters/koros/wingspan-top.svg"
  27013. }
  27014. },
  27015. },
  27016. [
  27017. {
  27018. name: "Normal",
  27019. height: math.unit(31 + 8 / 12, "feet"),
  27020. default: true
  27021. },
  27022. ]
  27023. ))
  27024. characterMakers.push(() => makeCharacter(
  27025. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27026. {
  27027. front: {
  27028. height: math.unit(18 + 5 / 12, "feet"),
  27029. weight: math.unit(3750, "kg"),
  27030. name: "Front",
  27031. image: {
  27032. source: "./media/characters/vexx/front.svg",
  27033. extra: 426 / 396,
  27034. bottom: 31.5 / 458
  27035. }
  27036. },
  27037. maw: {
  27038. height: math.unit(6, "feet"),
  27039. name: "Maw",
  27040. image: {
  27041. source: "./media/characters/vexx/maw.svg"
  27042. }
  27043. },
  27044. },
  27045. [
  27046. {
  27047. name: "Normal",
  27048. height: math.unit(18 + 5 / 12, "feet"),
  27049. default: true
  27050. },
  27051. ]
  27052. ))
  27053. characterMakers.push(() => makeCharacter(
  27054. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27055. {
  27056. front: {
  27057. height: math.unit(17 + 6 / 12, "feet"),
  27058. weight: math.unit(150, "lb"),
  27059. name: "Front",
  27060. image: {
  27061. source: "./media/characters/baadra/front.svg",
  27062. extra: 1694/1553,
  27063. bottom: 179/1873
  27064. }
  27065. },
  27066. frontAlt: {
  27067. height: math.unit(17 + 6 / 12, "feet"),
  27068. weight: math.unit(150, "lb"),
  27069. name: "Front (Alt)",
  27070. image: {
  27071. source: "./media/characters/baadra/front-alt.svg",
  27072. extra: 3137 / 2890,
  27073. bottom: 168.4 / 3305
  27074. }
  27075. },
  27076. back: {
  27077. height: math.unit(17 + 6 / 12, "feet"),
  27078. weight: math.unit(150, "lb"),
  27079. name: "Back",
  27080. image: {
  27081. source: "./media/characters/baadra/back.svg",
  27082. extra: 3142 / 2890,
  27083. bottom: 220 / 3371
  27084. }
  27085. },
  27086. head: {
  27087. height: math.unit(5.45, "feet"),
  27088. name: "Head",
  27089. image: {
  27090. source: "./media/characters/baadra/head.svg"
  27091. }
  27092. },
  27093. headAngry: {
  27094. height: math.unit(4.95, "feet"),
  27095. name: "Head (Angry)",
  27096. image: {
  27097. source: "./media/characters/baadra/head-angry.svg"
  27098. }
  27099. },
  27100. headOpen: {
  27101. height: math.unit(6, "feet"),
  27102. name: "Head (Open)",
  27103. image: {
  27104. source: "./media/characters/baadra/head-open.svg"
  27105. }
  27106. },
  27107. },
  27108. [
  27109. {
  27110. name: "Normal",
  27111. height: math.unit(17 + 6 / 12, "feet"),
  27112. default: true
  27113. },
  27114. ]
  27115. ))
  27116. characterMakers.push(() => makeCharacter(
  27117. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27118. {
  27119. front: {
  27120. height: math.unit(7 + 3 / 12, "feet"),
  27121. weight: math.unit(180, "lb"),
  27122. name: "Front",
  27123. image: {
  27124. source: "./media/characters/juri/front.svg",
  27125. extra: 1401 / 1237,
  27126. bottom: 18.5 / 1418
  27127. }
  27128. },
  27129. side: {
  27130. height: math.unit(7 + 3 / 12, "feet"),
  27131. weight: math.unit(180, "lb"),
  27132. name: "Side",
  27133. image: {
  27134. source: "./media/characters/juri/side.svg",
  27135. extra: 1424 / 1242,
  27136. bottom: 18.5 / 1447
  27137. }
  27138. },
  27139. sitting: {
  27140. height: math.unit(6, "feet"),
  27141. weight: math.unit(180, "lb"),
  27142. name: "Sitting",
  27143. image: {
  27144. source: "./media/characters/juri/sitting.svg",
  27145. extra: 1270 / 1143,
  27146. bottom: 100 / 1343
  27147. }
  27148. },
  27149. back: {
  27150. height: math.unit(7 + 3 / 12, "feet"),
  27151. weight: math.unit(180, "lb"),
  27152. name: "Back",
  27153. image: {
  27154. source: "./media/characters/juri/back.svg",
  27155. extra: 1377 / 1240,
  27156. bottom: 23.7 / 1405
  27157. }
  27158. },
  27159. maw: {
  27160. height: math.unit(2.8, "feet"),
  27161. name: "Maw",
  27162. image: {
  27163. source: "./media/characters/juri/maw.svg"
  27164. }
  27165. },
  27166. stomach: {
  27167. height: math.unit(0.89, "feet"),
  27168. preyCapacity: math.unit(4, "liters"),
  27169. name: "Stomach",
  27170. image: {
  27171. source: "./media/characters/juri/stomach.svg"
  27172. }
  27173. },
  27174. },
  27175. [
  27176. {
  27177. name: "Normal",
  27178. height: math.unit(7 + 3 / 12, "feet"),
  27179. default: true
  27180. },
  27181. ]
  27182. ))
  27183. characterMakers.push(() => makeCharacter(
  27184. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27185. {
  27186. fox: {
  27187. height: math.unit(5 + 6 / 12, "feet"),
  27188. weight: math.unit(140, "lb"),
  27189. name: "Fox",
  27190. image: {
  27191. source: "./media/characters/maxene-sita/fox.svg",
  27192. extra: 146 / 138,
  27193. bottom: 2.1 / 148.19
  27194. }
  27195. },
  27196. foxLaying: {
  27197. height: math.unit(1.70, "feet"),
  27198. weight: math.unit(140, "lb"),
  27199. name: "Fox (Laying)",
  27200. image: {
  27201. source: "./media/characters/maxene-sita/fox-laying.svg",
  27202. extra: 910 / 572,
  27203. bottom: 71 / 981
  27204. }
  27205. },
  27206. kitsune: {
  27207. height: math.unit(10, "feet"),
  27208. weight: math.unit(800, "lb"),
  27209. name: "Kitsune",
  27210. image: {
  27211. source: "./media/characters/maxene-sita/kitsune.svg",
  27212. extra: 185 / 176,
  27213. bottom: 4.7 / 189.9
  27214. }
  27215. },
  27216. hellhound: {
  27217. height: math.unit(10, "feet"),
  27218. weight: math.unit(700, "lb"),
  27219. name: "Hellhound",
  27220. image: {
  27221. source: "./media/characters/maxene-sita/hellhound.svg",
  27222. extra: 1600 / 1545,
  27223. bottom: 81 / 1681
  27224. }
  27225. },
  27226. },
  27227. [
  27228. {
  27229. name: "Normal",
  27230. height: math.unit(5 + 6 / 12, "feet"),
  27231. default: true
  27232. },
  27233. ]
  27234. ))
  27235. characterMakers.push(() => makeCharacter(
  27236. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27237. {
  27238. front: {
  27239. height: math.unit(3 + 4 / 12, "feet"),
  27240. weight: math.unit(70, "lb"),
  27241. name: "Front",
  27242. image: {
  27243. source: "./media/characters/maia/front.svg",
  27244. extra: 227 / 219.5,
  27245. bottom: 40 / 267
  27246. }
  27247. },
  27248. back: {
  27249. height: math.unit(3 + 4 / 12, "feet"),
  27250. weight: math.unit(70, "lb"),
  27251. name: "Back",
  27252. image: {
  27253. source: "./media/characters/maia/back.svg",
  27254. extra: 237 / 225
  27255. }
  27256. },
  27257. },
  27258. [
  27259. {
  27260. name: "Normal",
  27261. height: math.unit(3 + 4 / 12, "feet"),
  27262. default: true
  27263. },
  27264. ]
  27265. ))
  27266. characterMakers.push(() => makeCharacter(
  27267. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27268. {
  27269. front: {
  27270. height: math.unit(5 + 10 / 12, "feet"),
  27271. weight: math.unit(197, "lb"),
  27272. name: "Front",
  27273. image: {
  27274. source: "./media/characters/jabaro/front.svg",
  27275. extra: 225 / 216,
  27276. bottom: 5.06 / 230
  27277. }
  27278. },
  27279. back: {
  27280. height: math.unit(5 + 10 / 12, "feet"),
  27281. weight: math.unit(197, "lb"),
  27282. name: "Back",
  27283. image: {
  27284. source: "./media/characters/jabaro/back.svg",
  27285. extra: 225 / 219,
  27286. bottom: 1.9 / 227
  27287. }
  27288. },
  27289. },
  27290. [
  27291. {
  27292. name: "Normal",
  27293. height: math.unit(5 + 10 / 12, "feet"),
  27294. default: true
  27295. },
  27296. ]
  27297. ))
  27298. characterMakers.push(() => makeCharacter(
  27299. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27300. {
  27301. front: {
  27302. height: math.unit(5 + 8 / 12, "feet"),
  27303. weight: math.unit(139, "lb"),
  27304. name: "Front",
  27305. image: {
  27306. source: "./media/characters/risa/front.svg",
  27307. extra: 270 / 260,
  27308. bottom: 11.2 / 282
  27309. }
  27310. },
  27311. back: {
  27312. height: math.unit(5 + 8 / 12, "feet"),
  27313. weight: math.unit(139, "lb"),
  27314. name: "Back",
  27315. image: {
  27316. source: "./media/characters/risa/back.svg",
  27317. extra: 264 / 255,
  27318. bottom: 4 / 268
  27319. }
  27320. },
  27321. },
  27322. [
  27323. {
  27324. name: "Normal",
  27325. height: math.unit(5 + 8 / 12, "feet"),
  27326. default: true
  27327. },
  27328. ]
  27329. ))
  27330. characterMakers.push(() => makeCharacter(
  27331. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27332. {
  27333. front: {
  27334. height: math.unit(2 + 11 / 12, "feet"),
  27335. weight: math.unit(30, "lb"),
  27336. name: "Front",
  27337. image: {
  27338. source: "./media/characters/weatley/front.svg",
  27339. bottom: 10.7 / 414,
  27340. extra: 403.5 / 362
  27341. }
  27342. },
  27343. back: {
  27344. height: math.unit(2 + 11 / 12, "feet"),
  27345. weight: math.unit(30, "lb"),
  27346. name: "Back",
  27347. image: {
  27348. source: "./media/characters/weatley/back.svg",
  27349. bottom: 10.7 / 414,
  27350. extra: 403.5 / 362
  27351. }
  27352. },
  27353. },
  27354. [
  27355. {
  27356. name: "Normal",
  27357. height: math.unit(2 + 11 / 12, "feet"),
  27358. default: true
  27359. },
  27360. ]
  27361. ))
  27362. characterMakers.push(() => makeCharacter(
  27363. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27364. {
  27365. front: {
  27366. height: math.unit(5 + 2 / 12, "feet"),
  27367. weight: math.unit(50, "kg"),
  27368. name: "Front",
  27369. image: {
  27370. source: "./media/characters/mercury-crescent/front.svg",
  27371. extra: 1088 / 1033,
  27372. bottom: 18.9 / 1109
  27373. }
  27374. },
  27375. },
  27376. [
  27377. {
  27378. name: "Normal",
  27379. height: math.unit(5 + 2 / 12, "feet"),
  27380. default: true
  27381. },
  27382. ]
  27383. ))
  27384. characterMakers.push(() => makeCharacter(
  27385. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27386. {
  27387. front: {
  27388. height: math.unit(2, "feet"),
  27389. weight: math.unit(15, "kg"),
  27390. name: "Front",
  27391. image: {
  27392. source: "./media/characters/diamond-jones/front.svg",
  27393. extra: 727/723,
  27394. bottom: 46/773
  27395. }
  27396. },
  27397. },
  27398. [
  27399. {
  27400. name: "Normal",
  27401. height: math.unit(2, "feet"),
  27402. default: true
  27403. },
  27404. ]
  27405. ))
  27406. characterMakers.push(() => makeCharacter(
  27407. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27408. {
  27409. front: {
  27410. height: math.unit(3, "feet"),
  27411. weight: math.unit(30, "kg"),
  27412. name: "Front",
  27413. image: {
  27414. source: "./media/characters/sweet-bit/front.svg",
  27415. extra: 675 / 567,
  27416. bottom: 27.7 / 703
  27417. }
  27418. },
  27419. },
  27420. [
  27421. {
  27422. name: "Normal",
  27423. height: math.unit(3, "feet"),
  27424. default: true
  27425. },
  27426. ]
  27427. ))
  27428. characterMakers.push(() => makeCharacter(
  27429. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27430. {
  27431. side: {
  27432. height: math.unit(9.178, "feet"),
  27433. weight: math.unit(500, "lb"),
  27434. name: "Side",
  27435. image: {
  27436. source: "./media/characters/umbrazen/side.svg",
  27437. extra: 1730 / 1473,
  27438. bottom: 34.6 / 1765
  27439. }
  27440. },
  27441. },
  27442. [
  27443. {
  27444. name: "Normal",
  27445. height: math.unit(9.178, "feet"),
  27446. default: true
  27447. },
  27448. ]
  27449. ))
  27450. characterMakers.push(() => makeCharacter(
  27451. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27452. {
  27453. front: {
  27454. height: math.unit(10, "feet"),
  27455. weight: math.unit(750, "lb"),
  27456. name: "Front",
  27457. image: {
  27458. source: "./media/characters/arlist/front.svg",
  27459. extra: 961 / 778,
  27460. bottom: 6.2 / 986
  27461. }
  27462. },
  27463. },
  27464. [
  27465. {
  27466. name: "Normal",
  27467. height: math.unit(10, "feet"),
  27468. default: true
  27469. },
  27470. ]
  27471. ))
  27472. characterMakers.push(() => makeCharacter(
  27473. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27474. {
  27475. front: {
  27476. height: math.unit(5 + 1 / 12, "feet"),
  27477. weight: math.unit(110, "lb"),
  27478. name: "Front",
  27479. image: {
  27480. source: "./media/characters/aradel/front.svg",
  27481. extra: 324 / 303,
  27482. bottom: 3.6 / 329.4
  27483. }
  27484. },
  27485. },
  27486. [
  27487. {
  27488. name: "Normal",
  27489. height: math.unit(5 + 1 / 12, "feet"),
  27490. default: true
  27491. },
  27492. ]
  27493. ))
  27494. characterMakers.push(() => makeCharacter(
  27495. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27496. {
  27497. dressed: {
  27498. height: math.unit(3 + 8 / 12, "feet"),
  27499. weight: math.unit(50, "lb"),
  27500. name: "Dressed",
  27501. image: {
  27502. source: "./media/characters/serryn/dressed.svg",
  27503. extra: 1792 / 1656,
  27504. bottom: 43.5 / 1840
  27505. }
  27506. },
  27507. nude: {
  27508. height: math.unit(3 + 8 / 12, "feet"),
  27509. weight: math.unit(50, "lb"),
  27510. name: "Nude",
  27511. image: {
  27512. source: "./media/characters/serryn/nude.svg",
  27513. extra: 1792 / 1656,
  27514. bottom: 43.5 / 1840
  27515. }
  27516. },
  27517. },
  27518. [
  27519. {
  27520. name: "Normal",
  27521. height: math.unit(3 + 8 / 12, "feet"),
  27522. default: true
  27523. },
  27524. ]
  27525. ))
  27526. characterMakers.push(() => makeCharacter(
  27527. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27528. {
  27529. front: {
  27530. height: math.unit(7 + 10 / 12, "feet"),
  27531. weight: math.unit(255, "lb"),
  27532. name: "Front",
  27533. image: {
  27534. source: "./media/characters/xavier-thyme/front.svg",
  27535. extra: 3733 / 3642,
  27536. bottom: 131 / 3869
  27537. }
  27538. },
  27539. frontRaven: {
  27540. height: math.unit(7 + 10 / 12, "feet"),
  27541. weight: math.unit(255, "lb"),
  27542. name: "Front (Raven)",
  27543. image: {
  27544. source: "./media/characters/xavier-thyme/front-raven.svg",
  27545. extra: 4385 / 3642,
  27546. bottom: 131 / 4517
  27547. }
  27548. },
  27549. },
  27550. [
  27551. {
  27552. name: "Normal",
  27553. height: math.unit(7 + 10 / 12, "feet"),
  27554. default: true
  27555. },
  27556. ]
  27557. ))
  27558. characterMakers.push(() => makeCharacter(
  27559. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27560. {
  27561. front: {
  27562. height: math.unit(1.6, "m"),
  27563. weight: math.unit(50, "kg"),
  27564. name: "Front",
  27565. image: {
  27566. source: "./media/characters/kiki/front.svg",
  27567. extra: 4682 / 3610,
  27568. bottom: 115 / 4777
  27569. }
  27570. },
  27571. },
  27572. [
  27573. {
  27574. name: "Normal",
  27575. height: math.unit(1.6, "meters"),
  27576. default: true
  27577. },
  27578. ]
  27579. ))
  27580. characterMakers.push(() => makeCharacter(
  27581. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27582. {
  27583. front: {
  27584. height: math.unit(50, "m"),
  27585. weight: math.unit(500, "tonnes"),
  27586. name: "Front",
  27587. image: {
  27588. source: "./media/characters/ryoko/front.svg",
  27589. extra: 4632 / 3926,
  27590. bottom: 193 / 4823
  27591. }
  27592. },
  27593. },
  27594. [
  27595. {
  27596. name: "Normal",
  27597. height: math.unit(50, "meters"),
  27598. default: true
  27599. },
  27600. ]
  27601. ))
  27602. characterMakers.push(() => makeCharacter(
  27603. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27604. {
  27605. front: {
  27606. height: math.unit(30, "m"),
  27607. weight: math.unit(22, "tonnes"),
  27608. name: "Front",
  27609. image: {
  27610. source: "./media/characters/elio/front.svg",
  27611. extra: 4582 / 3720,
  27612. bottom: 236 / 4828
  27613. }
  27614. },
  27615. },
  27616. [
  27617. {
  27618. name: "Normal",
  27619. height: math.unit(30, "meters"),
  27620. default: true
  27621. },
  27622. ]
  27623. ))
  27624. characterMakers.push(() => makeCharacter(
  27625. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27626. {
  27627. front: {
  27628. height: math.unit(6 + 3 / 12, "feet"),
  27629. weight: math.unit(120, "lb"),
  27630. name: "Front",
  27631. image: {
  27632. source: "./media/characters/azura/front.svg",
  27633. extra: 1149 / 1135,
  27634. bottom: 45 / 1194
  27635. }
  27636. },
  27637. frontClothed: {
  27638. height: math.unit(6 + 3 / 12, "feet"),
  27639. weight: math.unit(120, "lb"),
  27640. name: "Front (Clothed)",
  27641. image: {
  27642. source: "./media/characters/azura/front-clothed.svg",
  27643. extra: 1149 / 1135,
  27644. bottom: 45 / 1194
  27645. }
  27646. },
  27647. },
  27648. [
  27649. {
  27650. name: "Normal",
  27651. height: math.unit(6 + 3 / 12, "feet"),
  27652. default: true
  27653. },
  27654. {
  27655. name: "Macro",
  27656. height: math.unit(20 + 6 / 12, "feet")
  27657. },
  27658. {
  27659. name: "Megamacro",
  27660. height: math.unit(12, "miles")
  27661. },
  27662. {
  27663. name: "Gigamacro",
  27664. height: math.unit(10000, "miles")
  27665. },
  27666. {
  27667. name: "Teramacro",
  27668. height: math.unit(900000, "miles")
  27669. },
  27670. ]
  27671. ))
  27672. characterMakers.push(() => makeCharacter(
  27673. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27674. {
  27675. front: {
  27676. height: math.unit(12, "feet"),
  27677. weight: math.unit(1, "ton"),
  27678. capacity: math.unit(660000, "gallons"),
  27679. name: "Front",
  27680. image: {
  27681. source: "./media/characters/zeus/front.svg",
  27682. extra: 5005 / 4717,
  27683. bottom: 363 / 5388
  27684. }
  27685. },
  27686. },
  27687. [
  27688. {
  27689. name: "Normal",
  27690. height: math.unit(12, "feet")
  27691. },
  27692. {
  27693. name: "Preferred Size",
  27694. height: math.unit(0.5, "miles"),
  27695. default: true
  27696. },
  27697. {
  27698. name: "Giga Horse",
  27699. height: math.unit(300, "miles")
  27700. },
  27701. {
  27702. name: "Riding Planets",
  27703. height: math.unit(30, "megameters")
  27704. },
  27705. {
  27706. name: "Cosmic Giant",
  27707. height: math.unit(3, "zettameters")
  27708. },
  27709. {
  27710. name: "Breeding God",
  27711. height: math.unit(9.92e22, "yottameters")
  27712. },
  27713. ]
  27714. ))
  27715. characterMakers.push(() => makeCharacter(
  27716. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27717. {
  27718. side: {
  27719. height: math.unit(9, "feet"),
  27720. weight: math.unit(1500, "kg"),
  27721. name: "Side",
  27722. image: {
  27723. source: "./media/characters/fang/side.svg",
  27724. extra: 924 / 866,
  27725. bottom: 47.5 / 972.3
  27726. }
  27727. },
  27728. },
  27729. [
  27730. {
  27731. name: "Normal",
  27732. height: math.unit(9, "feet"),
  27733. default: true
  27734. },
  27735. {
  27736. name: "Macro",
  27737. height: math.unit(75 + 6 / 12, "feet")
  27738. },
  27739. {
  27740. name: "Teramacro",
  27741. height: math.unit(50000, "miles")
  27742. },
  27743. ]
  27744. ))
  27745. characterMakers.push(() => makeCharacter(
  27746. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27747. {
  27748. front: {
  27749. height: math.unit(10, "feet"),
  27750. weight: math.unit(2, "tons"),
  27751. name: "Front",
  27752. image: {
  27753. source: "./media/characters/rekhit/front.svg",
  27754. extra: 2796 / 2590,
  27755. bottom: 225 / 3022
  27756. }
  27757. },
  27758. },
  27759. [
  27760. {
  27761. name: "Normal",
  27762. height: math.unit(10, "feet"),
  27763. default: true
  27764. },
  27765. {
  27766. name: "Macro",
  27767. height: math.unit(500, "feet")
  27768. },
  27769. ]
  27770. ))
  27771. characterMakers.push(() => makeCharacter(
  27772. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27773. {
  27774. front: {
  27775. height: math.unit(7 + 6.451 / 12, "feet"),
  27776. weight: math.unit(310, "lb"),
  27777. name: "Front",
  27778. image: {
  27779. source: "./media/characters/dahlia-verrick/front.svg",
  27780. extra: 1488 / 1365,
  27781. bottom: 6.2 / 1495
  27782. }
  27783. },
  27784. back: {
  27785. height: math.unit(7 + 6.451 / 12, "feet"),
  27786. weight: math.unit(310, "lb"),
  27787. name: "Back",
  27788. image: {
  27789. source: "./media/characters/dahlia-verrick/back.svg",
  27790. extra: 1472 / 1351,
  27791. bottom: 5.28 / 1477
  27792. }
  27793. },
  27794. frontBusiness: {
  27795. height: math.unit(7 + 6.451 / 12, "feet"),
  27796. weight: math.unit(200, "lb"),
  27797. name: "Front (Business)",
  27798. image: {
  27799. source: "./media/characters/dahlia-verrick/front-business.svg",
  27800. extra: 1478 / 1381,
  27801. bottom: 5.5 / 1484
  27802. }
  27803. },
  27804. frontCasual: {
  27805. height: math.unit(7 + 6.451 / 12, "feet"),
  27806. weight: math.unit(200, "lb"),
  27807. name: "Front (Casual)",
  27808. image: {
  27809. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27810. extra: 1478 / 1381,
  27811. bottom: 5.5 / 1484
  27812. }
  27813. },
  27814. },
  27815. [
  27816. {
  27817. name: "Travel-Sized",
  27818. height: math.unit(7.45, "inches")
  27819. },
  27820. {
  27821. name: "Normal",
  27822. height: math.unit(7 + 6.451 / 12, "feet"),
  27823. default: true
  27824. },
  27825. {
  27826. name: "Hitting the Town",
  27827. height: math.unit(37 + 8 / 12, "feet")
  27828. },
  27829. {
  27830. name: "Stomp in the Suburbs",
  27831. height: math.unit(964 + 9.728 / 12, "feet")
  27832. },
  27833. {
  27834. name: "Sit on the City",
  27835. height: math.unit(61747 + 10.592 / 12, "feet")
  27836. },
  27837. {
  27838. name: "Glomp the Globe",
  27839. height: math.unit(252919327 + 4.832 / 12, "feet")
  27840. },
  27841. ]
  27842. ))
  27843. characterMakers.push(() => makeCharacter(
  27844. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27845. {
  27846. front: {
  27847. height: math.unit(6 + 4 / 12, "feet"),
  27848. weight: math.unit(320, "lb"),
  27849. name: "Front",
  27850. image: {
  27851. source: "./media/characters/balina-mahigan/front.svg",
  27852. extra: 447 / 428,
  27853. bottom: 18 / 466
  27854. }
  27855. },
  27856. back: {
  27857. height: math.unit(6 + 4 / 12, "feet"),
  27858. weight: math.unit(320, "lb"),
  27859. name: "Back",
  27860. image: {
  27861. source: "./media/characters/balina-mahigan/back.svg",
  27862. extra: 445 / 428,
  27863. bottom: 4.07 / 448
  27864. }
  27865. },
  27866. arm: {
  27867. height: math.unit(1.88, "feet"),
  27868. name: "Arm",
  27869. image: {
  27870. source: "./media/characters/balina-mahigan/arm.svg"
  27871. }
  27872. },
  27873. backPort: {
  27874. height: math.unit(0.685, "feet"),
  27875. name: "Back Port",
  27876. image: {
  27877. source: "./media/characters/balina-mahigan/back-port.svg"
  27878. }
  27879. },
  27880. hoofpaw: {
  27881. height: math.unit(1.41, "feet"),
  27882. name: "Hoofpaw",
  27883. image: {
  27884. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27885. }
  27886. },
  27887. leftHandBack: {
  27888. height: math.unit(0.938, "feet"),
  27889. name: "Left Hand (Back)",
  27890. image: {
  27891. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27892. }
  27893. },
  27894. leftHandFront: {
  27895. height: math.unit(0.938, "feet"),
  27896. name: "Left Hand (Front)",
  27897. image: {
  27898. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27899. }
  27900. },
  27901. rightHandBack: {
  27902. height: math.unit(0.95, "feet"),
  27903. name: "Right Hand (Back)",
  27904. image: {
  27905. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27906. }
  27907. },
  27908. rightHandFront: {
  27909. height: math.unit(0.95, "feet"),
  27910. name: "Right Hand (Front)",
  27911. image: {
  27912. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27913. }
  27914. },
  27915. },
  27916. [
  27917. {
  27918. name: "Normal",
  27919. height: math.unit(6 + 4 / 12, "feet"),
  27920. default: true
  27921. },
  27922. ]
  27923. ))
  27924. characterMakers.push(() => makeCharacter(
  27925. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27926. {
  27927. front: {
  27928. height: math.unit(6, "feet"),
  27929. weight: math.unit(320, "lb"),
  27930. name: "Front",
  27931. image: {
  27932. source: "./media/characters/balina-mejeri/front.svg",
  27933. extra: 517 / 488,
  27934. bottom: 44.2 / 561
  27935. }
  27936. },
  27937. },
  27938. [
  27939. {
  27940. name: "Normal",
  27941. height: math.unit(6 + 4 / 12, "feet")
  27942. },
  27943. {
  27944. name: "Business",
  27945. height: math.unit(155, "feet"),
  27946. default: true
  27947. },
  27948. ]
  27949. ))
  27950. characterMakers.push(() => makeCharacter(
  27951. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27952. {
  27953. kneeling: {
  27954. height: math.unit(6 + 4 / 12, "feet"),
  27955. weight: math.unit(300 * 20, "lb"),
  27956. name: "Kneeling",
  27957. image: {
  27958. source: "./media/characters/balbarian/kneeling.svg",
  27959. extra: 922 / 862,
  27960. bottom: 42.4 / 965
  27961. }
  27962. },
  27963. },
  27964. [
  27965. {
  27966. name: "Normal",
  27967. height: math.unit(6 + 4 / 12, "feet")
  27968. },
  27969. {
  27970. name: "Treasured",
  27971. height: math.unit(18 + 9 / 12, "feet"),
  27972. default: true
  27973. },
  27974. {
  27975. name: "Macro",
  27976. height: math.unit(900, "feet")
  27977. },
  27978. ]
  27979. ))
  27980. characterMakers.push(() => makeCharacter(
  27981. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27982. {
  27983. front: {
  27984. height: math.unit(6 + 4 / 12, "feet"),
  27985. weight: math.unit(325, "lb"),
  27986. name: "Front",
  27987. image: {
  27988. source: "./media/characters/balina-amarini/front.svg",
  27989. extra: 415 / 403,
  27990. bottom: 19 / 433.4
  27991. }
  27992. },
  27993. back: {
  27994. height: math.unit(6 + 4 / 12, "feet"),
  27995. weight: math.unit(325, "lb"),
  27996. name: "Back",
  27997. image: {
  27998. source: "./media/characters/balina-amarini/back.svg",
  27999. extra: 415 / 403,
  28000. bottom: 13.5 / 432
  28001. }
  28002. },
  28003. overdrive: {
  28004. height: math.unit(6 + 4 / 12, "feet"),
  28005. weight: math.unit(400, "lb"),
  28006. name: "Overdrive",
  28007. image: {
  28008. source: "./media/characters/balina-amarini/overdrive.svg",
  28009. extra: 269 / 259,
  28010. bottom: 12 / 282
  28011. }
  28012. },
  28013. },
  28014. [
  28015. {
  28016. name: "Boom",
  28017. height: math.unit(9 + 10 / 12, "feet"),
  28018. default: true
  28019. },
  28020. {
  28021. name: "Macro",
  28022. height: math.unit(280, "feet")
  28023. },
  28024. ]
  28025. ))
  28026. characterMakers.push(() => makeCharacter(
  28027. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28028. {
  28029. goddess: {
  28030. height: math.unit(600, "feet"),
  28031. weight: math.unit(2000000, "tons"),
  28032. name: "Goddess",
  28033. image: {
  28034. source: "./media/characters/lady-kubwa/goddess.svg",
  28035. extra: 1240.5 / 1223,
  28036. bottom: 22 / 1263
  28037. }
  28038. },
  28039. goddesser: {
  28040. height: math.unit(900, "feet"),
  28041. weight: math.unit(20000000, "lb"),
  28042. name: "Goddess-er",
  28043. image: {
  28044. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28045. extra: 899 / 888,
  28046. bottom: 12.6 / 912
  28047. }
  28048. },
  28049. },
  28050. [
  28051. {
  28052. name: "Macro",
  28053. height: math.unit(600, "feet"),
  28054. default: true
  28055. },
  28056. {
  28057. name: "Megamacro",
  28058. height: math.unit(250, "miles")
  28059. },
  28060. ]
  28061. ))
  28062. characterMakers.push(() => makeCharacter(
  28063. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28064. {
  28065. front: {
  28066. height: math.unit(7 + 7 / 12, "feet"),
  28067. weight: math.unit(250, "lb"),
  28068. name: "Front",
  28069. image: {
  28070. source: "./media/characters/tala-grovehorn/front.svg",
  28071. extra: 2636 / 2525,
  28072. bottom: 147 / 2781
  28073. }
  28074. },
  28075. back: {
  28076. height: math.unit(7 + 7 / 12, "feet"),
  28077. weight: math.unit(250, "lb"),
  28078. name: "Back",
  28079. image: {
  28080. source: "./media/characters/tala-grovehorn/back.svg",
  28081. extra: 2635 / 2539,
  28082. bottom: 100 / 2732.8
  28083. }
  28084. },
  28085. mouth: {
  28086. height: math.unit(1.15, "feet"),
  28087. name: "Mouth",
  28088. image: {
  28089. source: "./media/characters/tala-grovehorn/mouth.svg"
  28090. }
  28091. },
  28092. dick: {
  28093. height: math.unit(2.36, "feet"),
  28094. name: "Dick",
  28095. image: {
  28096. source: "./media/characters/tala-grovehorn/dick.svg"
  28097. }
  28098. },
  28099. slit: {
  28100. height: math.unit(0.61, "feet"),
  28101. name: "Slit",
  28102. image: {
  28103. source: "./media/characters/tala-grovehorn/slit.svg"
  28104. }
  28105. },
  28106. },
  28107. [
  28108. ]
  28109. ))
  28110. characterMakers.push(() => makeCharacter(
  28111. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28112. {
  28113. front: {
  28114. height: math.unit(7 + 7 / 12, "feet"),
  28115. weight: math.unit(225, "lb"),
  28116. name: "Front",
  28117. image: {
  28118. source: "./media/characters/epona/front.svg",
  28119. extra: 2445 / 2290,
  28120. bottom: 251 / 2696
  28121. }
  28122. },
  28123. back: {
  28124. height: math.unit(7 + 7 / 12, "feet"),
  28125. weight: math.unit(225, "lb"),
  28126. name: "Back",
  28127. image: {
  28128. source: "./media/characters/epona/back.svg",
  28129. extra: 2546 / 2408,
  28130. bottom: 44 / 2589
  28131. }
  28132. },
  28133. genitals: {
  28134. height: math.unit(1.5, "feet"),
  28135. name: "Genitals",
  28136. image: {
  28137. source: "./media/characters/epona/genitals.svg"
  28138. }
  28139. },
  28140. },
  28141. [
  28142. {
  28143. name: "Normal",
  28144. height: math.unit(7 + 7 / 12, "feet"),
  28145. default: true
  28146. },
  28147. ]
  28148. ))
  28149. characterMakers.push(() => makeCharacter(
  28150. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28151. {
  28152. front: {
  28153. height: math.unit(7, "feet"),
  28154. weight: math.unit(518, "lb"),
  28155. name: "Front",
  28156. image: {
  28157. source: "./media/characters/avia-bloodbourn/front.svg",
  28158. extra: 1466 / 1350,
  28159. bottom: 65 / 1527
  28160. }
  28161. },
  28162. },
  28163. [
  28164. ]
  28165. ))
  28166. characterMakers.push(() => makeCharacter(
  28167. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28168. {
  28169. front: {
  28170. height: math.unit(9.35, "feet"),
  28171. weight: math.unit(600, "lb"),
  28172. name: "Front",
  28173. image: {
  28174. source: "./media/characters/amera/front.svg",
  28175. extra: 891 / 818,
  28176. bottom: 30 / 922.7
  28177. }
  28178. },
  28179. back: {
  28180. height: math.unit(9.35, "feet"),
  28181. weight: math.unit(600, "lb"),
  28182. name: "Back",
  28183. image: {
  28184. source: "./media/characters/amera/back.svg",
  28185. extra: 876 / 824,
  28186. bottom: 6.8 / 884
  28187. }
  28188. },
  28189. dick: {
  28190. height: math.unit(2.14, "feet"),
  28191. name: "Dick",
  28192. image: {
  28193. source: "./media/characters/amera/dick.svg"
  28194. }
  28195. },
  28196. },
  28197. [
  28198. {
  28199. name: "Normal",
  28200. height: math.unit(9.35, "feet"),
  28201. default: true
  28202. },
  28203. ]
  28204. ))
  28205. characterMakers.push(() => makeCharacter(
  28206. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28207. {
  28208. kneeling: {
  28209. height: math.unit(3 + 4 / 12, "feet"),
  28210. weight: math.unit(90, "lb"),
  28211. name: "Kneeling",
  28212. image: {
  28213. source: "./media/characters/rosewen/kneeling.svg",
  28214. extra: 1835 / 1571,
  28215. bottom: 27.7 / 1862
  28216. }
  28217. },
  28218. },
  28219. [
  28220. {
  28221. name: "Normal",
  28222. height: math.unit(3 + 4 / 12, "feet"),
  28223. default: true
  28224. },
  28225. ]
  28226. ))
  28227. characterMakers.push(() => makeCharacter(
  28228. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28229. {
  28230. front: {
  28231. height: math.unit(5 + 10 / 12, "feet"),
  28232. weight: math.unit(200, "lb"),
  28233. name: "Front",
  28234. image: {
  28235. source: "./media/characters/sabah/front.svg",
  28236. extra: 849 / 763,
  28237. bottom: 33.9 / 881
  28238. }
  28239. },
  28240. },
  28241. [
  28242. {
  28243. name: "Normal",
  28244. height: math.unit(5 + 10 / 12, "feet"),
  28245. default: true
  28246. },
  28247. ]
  28248. ))
  28249. characterMakers.push(() => makeCharacter(
  28250. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28251. {
  28252. front: {
  28253. height: math.unit(3 + 5 / 12, "feet"),
  28254. weight: math.unit(40, "kg"),
  28255. name: "Front",
  28256. image: {
  28257. source: "./media/characters/purple-flame/front.svg",
  28258. extra: 1577 / 1412,
  28259. bottom: 97 / 1694
  28260. }
  28261. },
  28262. frontDressed: {
  28263. height: math.unit(3 + 5 / 12, "feet"),
  28264. weight: math.unit(40, "kg"),
  28265. name: "Front (Dressed)",
  28266. image: {
  28267. source: "./media/characters/purple-flame/front-dressed.svg",
  28268. extra: 1577 / 1412,
  28269. bottom: 97 / 1694
  28270. }
  28271. },
  28272. headphones: {
  28273. height: math.unit(0.85, "feet"),
  28274. name: "Headphones",
  28275. image: {
  28276. source: "./media/characters/purple-flame/headphones.svg"
  28277. }
  28278. },
  28279. },
  28280. [
  28281. {
  28282. name: "Really Small",
  28283. height: math.unit(5, "cm")
  28284. },
  28285. {
  28286. name: "Micro",
  28287. height: math.unit(1 + 5 / 12, "feet")
  28288. },
  28289. {
  28290. name: "Normal",
  28291. height: math.unit(3 + 5 / 12, "feet"),
  28292. default: true
  28293. },
  28294. {
  28295. name: "Minimacro",
  28296. height: math.unit(125, "feet")
  28297. },
  28298. {
  28299. name: "Macro",
  28300. height: math.unit(0.5, "miles")
  28301. },
  28302. {
  28303. name: "Megamacro",
  28304. height: math.unit(50, "miles")
  28305. },
  28306. {
  28307. name: "Gigantic",
  28308. height: math.unit(750, "miles")
  28309. },
  28310. {
  28311. name: "Planetary",
  28312. height: math.unit(15000, "miles")
  28313. },
  28314. ]
  28315. ))
  28316. characterMakers.push(() => makeCharacter(
  28317. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28318. {
  28319. front: {
  28320. height: math.unit(14, "feet"),
  28321. weight: math.unit(959, "lb"),
  28322. name: "Front",
  28323. image: {
  28324. source: "./media/characters/arsenal/front.svg",
  28325. extra: 2357 / 2157,
  28326. bottom: 93 / 2458
  28327. }
  28328. },
  28329. },
  28330. [
  28331. {
  28332. name: "Normal",
  28333. height: math.unit(14, "feet"),
  28334. default: true
  28335. },
  28336. ]
  28337. ))
  28338. characterMakers.push(() => makeCharacter(
  28339. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28340. {
  28341. front: {
  28342. height: math.unit(6, "feet"),
  28343. weight: math.unit(150, "lb"),
  28344. name: "Front",
  28345. image: {
  28346. source: "./media/characters/adira/front.svg",
  28347. extra: 1078 / 1029,
  28348. bottom: 87 / 1166
  28349. }
  28350. },
  28351. },
  28352. [
  28353. {
  28354. name: "Micro",
  28355. height: math.unit(4, "inches"),
  28356. default: true
  28357. },
  28358. {
  28359. name: "Macro",
  28360. height: math.unit(50, "feet")
  28361. },
  28362. ]
  28363. ))
  28364. characterMakers.push(() => makeCharacter(
  28365. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28366. {
  28367. front: {
  28368. height: math.unit(16, "feet"),
  28369. weight: math.unit(1000, "lb"),
  28370. name: "Front",
  28371. image: {
  28372. source: "./media/characters/grim/front.svg",
  28373. extra: 622 / 614,
  28374. bottom: 18.1 / 642
  28375. }
  28376. },
  28377. back: {
  28378. height: math.unit(16, "feet"),
  28379. weight: math.unit(1000, "lb"),
  28380. name: "Back",
  28381. image: {
  28382. source: "./media/characters/grim/back.svg",
  28383. extra: 610.6 / 602,
  28384. bottom: 40.8 / 652
  28385. }
  28386. },
  28387. hunched: {
  28388. height: math.unit(9.75, "feet"),
  28389. weight: math.unit(1000, "lb"),
  28390. name: "Hunched",
  28391. image: {
  28392. source: "./media/characters/grim/hunched.svg",
  28393. extra: 304 / 297,
  28394. bottom: 35.4 / 394
  28395. }
  28396. },
  28397. },
  28398. [
  28399. {
  28400. name: "Normal",
  28401. height: math.unit(16, "feet"),
  28402. default: true
  28403. },
  28404. ]
  28405. ))
  28406. characterMakers.push(() => makeCharacter(
  28407. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28408. {
  28409. front: {
  28410. height: math.unit(2.3, "meters"),
  28411. weight: math.unit(300, "lb"),
  28412. name: "Front",
  28413. image: {
  28414. source: "./media/characters/sinja/front-sfw.svg",
  28415. extra: 1393 / 1294,
  28416. bottom: 70 / 1463
  28417. }
  28418. },
  28419. frontNsfw: {
  28420. height: math.unit(2.3, "meters"),
  28421. weight: math.unit(300, "lb"),
  28422. name: "Front (NSFW)",
  28423. image: {
  28424. source: "./media/characters/sinja/front-nsfw.svg",
  28425. extra: 1393 / 1294,
  28426. bottom: 70 / 1463
  28427. }
  28428. },
  28429. back: {
  28430. height: math.unit(2.3, "meters"),
  28431. weight: math.unit(300, "lb"),
  28432. name: "Back",
  28433. image: {
  28434. source: "./media/characters/sinja/back.svg",
  28435. extra: 1393 / 1294,
  28436. bottom: 70 / 1463
  28437. }
  28438. },
  28439. head: {
  28440. height: math.unit(1.771, "feet"),
  28441. name: "Head",
  28442. image: {
  28443. source: "./media/characters/sinja/head.svg"
  28444. }
  28445. },
  28446. slit: {
  28447. height: math.unit(0.8, "feet"),
  28448. name: "Slit",
  28449. image: {
  28450. source: "./media/characters/sinja/slit.svg"
  28451. }
  28452. },
  28453. },
  28454. [
  28455. {
  28456. name: "Normal",
  28457. height: math.unit(2.3, "meters")
  28458. },
  28459. {
  28460. name: "Macro",
  28461. height: math.unit(91, "meters"),
  28462. default: true
  28463. },
  28464. {
  28465. name: "Megamacro",
  28466. height: math.unit(91440, "meters")
  28467. },
  28468. {
  28469. name: "Gigamacro",
  28470. height: math.unit(60960000, "meters")
  28471. },
  28472. {
  28473. name: "Teramacro",
  28474. height: math.unit(9144000000, "meters")
  28475. },
  28476. ]
  28477. ))
  28478. characterMakers.push(() => makeCharacter(
  28479. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28480. {
  28481. front: {
  28482. height: math.unit(1.7, "meters"),
  28483. weight: math.unit(130, "lb"),
  28484. name: "Front",
  28485. image: {
  28486. source: "./media/characters/kyu/front.svg",
  28487. extra: 415 / 395,
  28488. bottom: 5 / 420
  28489. }
  28490. },
  28491. head: {
  28492. height: math.unit(1.75, "feet"),
  28493. name: "Head",
  28494. image: {
  28495. source: "./media/characters/kyu/head.svg"
  28496. }
  28497. },
  28498. foot: {
  28499. height: math.unit(0.81, "feet"),
  28500. name: "Foot",
  28501. image: {
  28502. source: "./media/characters/kyu/foot.svg"
  28503. }
  28504. },
  28505. },
  28506. [
  28507. {
  28508. name: "Normal",
  28509. height: math.unit(1.7, "meters")
  28510. },
  28511. {
  28512. name: "Macro",
  28513. height: math.unit(131, "feet"),
  28514. default: true
  28515. },
  28516. {
  28517. name: "Megamacro",
  28518. height: math.unit(91440, "meters")
  28519. },
  28520. {
  28521. name: "Gigamacro",
  28522. height: math.unit(60960000, "meters")
  28523. },
  28524. {
  28525. name: "Teramacro",
  28526. height: math.unit(9144000000, "meters")
  28527. },
  28528. ]
  28529. ))
  28530. characterMakers.push(() => makeCharacter(
  28531. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28532. {
  28533. front: {
  28534. height: math.unit(7 + 1 / 12, "feet"),
  28535. weight: math.unit(250, "lb"),
  28536. name: "Front",
  28537. image: {
  28538. source: "./media/characters/joey/front.svg",
  28539. extra: 1791 / 1537,
  28540. bottom: 28 / 1816
  28541. }
  28542. },
  28543. },
  28544. [
  28545. {
  28546. name: "Micro",
  28547. height: math.unit(3, "inches")
  28548. },
  28549. {
  28550. name: "Normal",
  28551. height: math.unit(7 + 1 / 12, "feet"),
  28552. default: true
  28553. },
  28554. ]
  28555. ))
  28556. characterMakers.push(() => makeCharacter(
  28557. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28558. {
  28559. front: {
  28560. height: math.unit(165, "cm"),
  28561. weight: math.unit(140, "lb"),
  28562. name: "Front",
  28563. image: {
  28564. source: "./media/characters/sam-evans/front.svg",
  28565. extra: 3417 / 3230,
  28566. bottom: 41.3 / 3417
  28567. }
  28568. },
  28569. frontSixTails: {
  28570. height: math.unit(165, "cm"),
  28571. weight: math.unit(140, "lb"),
  28572. name: "Front-six-tails",
  28573. image: {
  28574. source: "./media/characters/sam-evans/front-six-tails.svg",
  28575. extra: 3417 / 3230,
  28576. bottom: 41.3 / 3417
  28577. }
  28578. },
  28579. back: {
  28580. height: math.unit(165, "cm"),
  28581. weight: math.unit(140, "lb"),
  28582. name: "Back",
  28583. image: {
  28584. source: "./media/characters/sam-evans/back.svg",
  28585. extra: 3227 / 3032,
  28586. bottom: 6.8 / 3234
  28587. }
  28588. },
  28589. face: {
  28590. height: math.unit(0.68, "feet"),
  28591. name: "Face",
  28592. image: {
  28593. source: "./media/characters/sam-evans/face.svg"
  28594. }
  28595. },
  28596. },
  28597. [
  28598. {
  28599. name: "Normal",
  28600. height: math.unit(165, "cm"),
  28601. default: true
  28602. },
  28603. {
  28604. name: "Macro",
  28605. height: math.unit(100, "meters")
  28606. },
  28607. {
  28608. name: "Macro+",
  28609. height: math.unit(800, "meters")
  28610. },
  28611. {
  28612. name: "Macro++",
  28613. height: math.unit(3, "km")
  28614. },
  28615. {
  28616. name: "Macro+++",
  28617. height: math.unit(30, "km")
  28618. },
  28619. ]
  28620. ))
  28621. characterMakers.push(() => makeCharacter(
  28622. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28623. {
  28624. front: {
  28625. height: math.unit(10, "feet"),
  28626. weight: math.unit(750, "lb"),
  28627. name: "Front",
  28628. image: {
  28629. source: "./media/characters/juliet-a/front.svg",
  28630. extra: 1766 / 1720,
  28631. bottom: 43 / 1809
  28632. }
  28633. },
  28634. back: {
  28635. height: math.unit(10, "feet"),
  28636. weight: math.unit(750, "lb"),
  28637. name: "Back",
  28638. image: {
  28639. source: "./media/characters/juliet-a/back.svg",
  28640. extra: 1781 / 1734,
  28641. bottom: 35 / 1810,
  28642. }
  28643. },
  28644. },
  28645. [
  28646. {
  28647. name: "Normal",
  28648. height: math.unit(10, "feet"),
  28649. default: true
  28650. },
  28651. {
  28652. name: "Dragon Form",
  28653. height: math.unit(250, "feet")
  28654. },
  28655. {
  28656. name: "Macro",
  28657. height: math.unit(1000, "feet")
  28658. },
  28659. {
  28660. name: "Megamacro",
  28661. height: math.unit(10000, "feet")
  28662. }
  28663. ]
  28664. ))
  28665. characterMakers.push(() => makeCharacter(
  28666. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28667. {
  28668. regular: {
  28669. height: math.unit(7 + 3 / 12, "feet"),
  28670. weight: math.unit(260, "lb"),
  28671. name: "Regular",
  28672. image: {
  28673. source: "./media/characters/wild/regular.svg",
  28674. extra: 97.45 / 92,
  28675. bottom: 6.8 / 104.3
  28676. }
  28677. },
  28678. biggums: {
  28679. height: math.unit(8 + 6 / 12, "feet"),
  28680. weight: math.unit(425, "lb"),
  28681. name: "Biggums",
  28682. image: {
  28683. source: "./media/characters/wild/biggums.svg",
  28684. extra: 97.45 / 92,
  28685. bottom: 7.5 / 132.34
  28686. }
  28687. },
  28688. mawRegular: {
  28689. height: math.unit(1.24, "feet"),
  28690. name: "Maw (Regular)",
  28691. image: {
  28692. source: "./media/characters/wild/maw.svg"
  28693. }
  28694. },
  28695. mawBiggums: {
  28696. height: math.unit(1.47, "feet"),
  28697. name: "Maw (Biggums)",
  28698. image: {
  28699. source: "./media/characters/wild/maw.svg"
  28700. }
  28701. },
  28702. },
  28703. [
  28704. {
  28705. name: "Normal",
  28706. height: math.unit(7 + 3 / 12, "feet"),
  28707. default: true
  28708. },
  28709. ]
  28710. ))
  28711. characterMakers.push(() => makeCharacter(
  28712. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28713. {
  28714. front: {
  28715. height: math.unit(2.5, "meters"),
  28716. weight: math.unit(200, "kg"),
  28717. name: "Front",
  28718. image: {
  28719. source: "./media/characters/vidar/front.svg",
  28720. extra: 2994 / 2795,
  28721. bottom: 56 / 3061
  28722. }
  28723. },
  28724. back: {
  28725. height: math.unit(2.5, "meters"),
  28726. weight: math.unit(200, "kg"),
  28727. name: "Back",
  28728. image: {
  28729. source: "./media/characters/vidar/back.svg",
  28730. extra: 3131 / 2928,
  28731. bottom: 13.5 / 3141.5
  28732. }
  28733. },
  28734. feral: {
  28735. height: math.unit(2.5, "meters"),
  28736. weight: math.unit(2000, "kg"),
  28737. name: "Feral",
  28738. image: {
  28739. source: "./media/characters/vidar/feral.svg",
  28740. extra: 2790 / 1765,
  28741. bottom: 6 / 2796
  28742. }
  28743. },
  28744. },
  28745. [
  28746. {
  28747. name: "Normal",
  28748. height: math.unit(2.5, "meters"),
  28749. default: true
  28750. },
  28751. {
  28752. name: "Macro",
  28753. height: math.unit(100, "meters")
  28754. },
  28755. ]
  28756. ))
  28757. characterMakers.push(() => makeCharacter(
  28758. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28759. {
  28760. front: {
  28761. height: math.unit(5 + 9 / 12, "feet"),
  28762. weight: math.unit(120, "lb"),
  28763. name: "Front",
  28764. image: {
  28765. source: "./media/characters/ash/front.svg",
  28766. extra: 2189 / 1961,
  28767. bottom: 5.2 / 2194
  28768. }
  28769. },
  28770. },
  28771. [
  28772. {
  28773. name: "Normal",
  28774. height: math.unit(5 + 9 / 12, "feet"),
  28775. default: true
  28776. },
  28777. ]
  28778. ))
  28779. characterMakers.push(() => makeCharacter(
  28780. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28781. {
  28782. front: {
  28783. height: math.unit(9, "feet"),
  28784. weight: math.unit(10000, "lb"),
  28785. name: "Front",
  28786. image: {
  28787. source: "./media/characters/gygabite/front.svg",
  28788. bottom: 31.7 / 537.8,
  28789. extra: 505 / 370
  28790. }
  28791. },
  28792. },
  28793. [
  28794. {
  28795. name: "Normal",
  28796. height: math.unit(9, "feet"),
  28797. default: true
  28798. },
  28799. ]
  28800. ))
  28801. characterMakers.push(() => makeCharacter(
  28802. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28803. {
  28804. front: {
  28805. height: math.unit(12, "feet"),
  28806. weight: math.unit(4000, "lb"),
  28807. name: "Front",
  28808. image: {
  28809. source: "./media/characters/p0tat0/front.svg",
  28810. extra: 1065 / 921,
  28811. bottom: 55.7 / 1121.25
  28812. }
  28813. },
  28814. },
  28815. [
  28816. {
  28817. name: "Normal",
  28818. height: math.unit(12, "feet"),
  28819. default: true
  28820. },
  28821. ]
  28822. ))
  28823. characterMakers.push(() => makeCharacter(
  28824. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28825. {
  28826. side: {
  28827. height: math.unit(6.5, "feet"),
  28828. weight: math.unit(800, "lb"),
  28829. name: "Side",
  28830. image: {
  28831. source: "./media/characters/dusk/side.svg",
  28832. extra: 615 / 373,
  28833. bottom: 53 / 664
  28834. }
  28835. },
  28836. sitting: {
  28837. height: math.unit(7, "feet"),
  28838. weight: math.unit(800, "lb"),
  28839. name: "Sitting",
  28840. image: {
  28841. source: "./media/characters/dusk/sitting.svg",
  28842. extra: 753 / 425,
  28843. bottom: 33 / 774
  28844. }
  28845. },
  28846. head: {
  28847. height: math.unit(6.1, "feet"),
  28848. name: "Head",
  28849. image: {
  28850. source: "./media/characters/dusk/head.svg"
  28851. }
  28852. },
  28853. },
  28854. [
  28855. {
  28856. name: "Normal",
  28857. height: math.unit(7, "feet"),
  28858. default: true
  28859. },
  28860. ]
  28861. ))
  28862. characterMakers.push(() => makeCharacter(
  28863. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28864. {
  28865. front: {
  28866. height: math.unit(15, "feet"),
  28867. weight: math.unit(7000, "lb"),
  28868. name: "Front",
  28869. image: {
  28870. source: "./media/characters/jay-direwolf/front.svg",
  28871. extra: 1810 / 1732,
  28872. bottom: 66 / 1892
  28873. }
  28874. },
  28875. },
  28876. [
  28877. {
  28878. name: "Normal",
  28879. height: math.unit(15, "feet"),
  28880. default: true
  28881. },
  28882. ]
  28883. ))
  28884. characterMakers.push(() => makeCharacter(
  28885. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28886. {
  28887. front: {
  28888. height: math.unit(4 + 9 / 12, "feet"),
  28889. weight: math.unit(130, "lb"),
  28890. name: "Front",
  28891. image: {
  28892. source: "./media/characters/anchovie/front.svg",
  28893. extra: 382 / 350,
  28894. bottom: 25 / 409
  28895. }
  28896. },
  28897. back: {
  28898. height: math.unit(4 + 9 / 12, "feet"),
  28899. weight: math.unit(130, "lb"),
  28900. name: "Back",
  28901. image: {
  28902. source: "./media/characters/anchovie/back.svg",
  28903. extra: 385 / 352,
  28904. bottom: 16.6 / 402
  28905. }
  28906. },
  28907. frontDressed: {
  28908. height: math.unit(4 + 9 / 12, "feet"),
  28909. weight: math.unit(130, "lb"),
  28910. name: "Front (Dressed)",
  28911. image: {
  28912. source: "./media/characters/anchovie/front-dressed.svg",
  28913. extra: 382 / 350,
  28914. bottom: 25 / 409
  28915. }
  28916. },
  28917. backDressed: {
  28918. height: math.unit(4 + 9 / 12, "feet"),
  28919. weight: math.unit(130, "lb"),
  28920. name: "Back (Dressed)",
  28921. image: {
  28922. source: "./media/characters/anchovie/back-dressed.svg",
  28923. extra: 385 / 352,
  28924. bottom: 16.6 / 402
  28925. }
  28926. },
  28927. },
  28928. [
  28929. {
  28930. name: "Micro",
  28931. height: math.unit(6.4, "inches")
  28932. },
  28933. {
  28934. name: "Normal",
  28935. height: math.unit(4 + 9 / 12, "feet"),
  28936. default: true
  28937. },
  28938. ]
  28939. ))
  28940. characterMakers.push(() => makeCharacter(
  28941. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28942. {
  28943. front: {
  28944. height: math.unit(2, "meters"),
  28945. weight: math.unit(180, "lb"),
  28946. name: "Front",
  28947. image: {
  28948. source: "./media/characters/acidrenamon/front.svg",
  28949. extra: 987 / 890,
  28950. bottom: 22.8 / 1009
  28951. }
  28952. },
  28953. back: {
  28954. height: math.unit(2, "meters"),
  28955. weight: math.unit(180, "lb"),
  28956. name: "Back",
  28957. image: {
  28958. source: "./media/characters/acidrenamon/back.svg",
  28959. extra: 983 / 891,
  28960. bottom: 8.4 / 992
  28961. }
  28962. },
  28963. head: {
  28964. height: math.unit(1.92, "feet"),
  28965. name: "Head",
  28966. image: {
  28967. source: "./media/characters/acidrenamon/head.svg"
  28968. }
  28969. },
  28970. rump: {
  28971. height: math.unit(1.72, "feet"),
  28972. name: "Rump",
  28973. image: {
  28974. source: "./media/characters/acidrenamon/rump.svg"
  28975. }
  28976. },
  28977. tail: {
  28978. height: math.unit(4.2, "feet"),
  28979. name: "Tail",
  28980. image: {
  28981. source: "./media/characters/acidrenamon/tail.svg"
  28982. }
  28983. },
  28984. },
  28985. [
  28986. {
  28987. name: "Normal",
  28988. height: math.unit(2, "meters"),
  28989. default: true
  28990. },
  28991. {
  28992. name: "Minimacro",
  28993. height: math.unit(7, "meters")
  28994. },
  28995. {
  28996. name: "Macro",
  28997. height: math.unit(200, "meters")
  28998. },
  28999. {
  29000. name: "Gigamacro",
  29001. height: math.unit(0.2, "earths")
  29002. },
  29003. ]
  29004. ))
  29005. characterMakers.push(() => makeCharacter(
  29006. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29007. {
  29008. front: {
  29009. height: math.unit(152, "feet"),
  29010. name: "Front",
  29011. image: {
  29012. source: "./media/characters/kenzie-lee/front.svg",
  29013. extra: 1869/1774,
  29014. bottom: 128/1997
  29015. }
  29016. },
  29017. side: {
  29018. height: math.unit(86, "feet"),
  29019. name: "Side",
  29020. image: {
  29021. source: "./media/characters/kenzie-lee/side.svg",
  29022. extra: 930/815,
  29023. bottom: 177/1107
  29024. }
  29025. },
  29026. paw: {
  29027. height: math.unit(15, "feet"),
  29028. name: "Paw",
  29029. image: {
  29030. source: "./media/characters/kenzie-lee/paw.svg"
  29031. }
  29032. },
  29033. },
  29034. [
  29035. {
  29036. name: "Kenzie Flea",
  29037. height: math.unit(2, "mm"),
  29038. default: true
  29039. },
  29040. {
  29041. name: "Micro",
  29042. height: math.unit(2, "inches")
  29043. },
  29044. {
  29045. name: "Normal",
  29046. height: math.unit(152, "feet")
  29047. },
  29048. {
  29049. name: "Megamacro",
  29050. height: math.unit(7, "miles")
  29051. },
  29052. {
  29053. name: "Gigamacro",
  29054. height: math.unit(8000, "miles")
  29055. },
  29056. ]
  29057. ))
  29058. characterMakers.push(() => makeCharacter(
  29059. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29060. {
  29061. front: {
  29062. height: math.unit(6, "feet"),
  29063. name: "Front",
  29064. image: {
  29065. source: "./media/characters/withers/front.svg",
  29066. extra: 1935/1760,
  29067. bottom: 72/2007
  29068. }
  29069. },
  29070. back: {
  29071. height: math.unit(6, "feet"),
  29072. name: "Back",
  29073. image: {
  29074. source: "./media/characters/withers/back.svg",
  29075. extra: 1944/1792,
  29076. bottom: 12/1956
  29077. }
  29078. },
  29079. dressed: {
  29080. height: math.unit(6, "feet"),
  29081. name: "Dressed",
  29082. image: {
  29083. source: "./media/characters/withers/dressed.svg",
  29084. extra: 1937/1765,
  29085. bottom: 73/2010
  29086. }
  29087. },
  29088. phase1: {
  29089. height: math.unit(1.1, "feet"),
  29090. name: "Phase 1",
  29091. image: {
  29092. source: "./media/characters/withers/phase-1.svg",
  29093. extra: 1885/1232,
  29094. bottom: 0/1885
  29095. }
  29096. },
  29097. phase2: {
  29098. height: math.unit(1.05, "feet"),
  29099. name: "Phase 2",
  29100. image: {
  29101. source: "./media/characters/withers/phase-2.svg",
  29102. extra: 1792/1090,
  29103. bottom: 0/1792
  29104. }
  29105. },
  29106. partyWipe: {
  29107. height: math.unit(1.1, "feet"),
  29108. name: "Party Wipe",
  29109. image: {
  29110. source: "./media/characters/withers/party-wipe.svg",
  29111. extra: 1864/1207,
  29112. bottom: 0/1864
  29113. }
  29114. },
  29115. },
  29116. [
  29117. {
  29118. name: "Macro",
  29119. height: math.unit(167, "feet"),
  29120. default: true
  29121. },
  29122. {
  29123. name: "Megamacro",
  29124. height: math.unit(15, "miles")
  29125. }
  29126. ]
  29127. ))
  29128. characterMakers.push(() => makeCharacter(
  29129. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29130. {
  29131. front: {
  29132. height: math.unit(6 + 7 / 12, "feet"),
  29133. weight: math.unit(250, "lb"),
  29134. name: "Front",
  29135. image: {
  29136. source: "./media/characters/nemoskii/front.svg",
  29137. extra: 2270 / 1734,
  29138. bottom: 86 / 2354
  29139. }
  29140. },
  29141. back: {
  29142. height: math.unit(6 + 7 / 12, "feet"),
  29143. weight: math.unit(250, "lb"),
  29144. name: "Back",
  29145. image: {
  29146. source: "./media/characters/nemoskii/back.svg",
  29147. extra: 1845 / 1788,
  29148. bottom: 10.5 / 1852
  29149. }
  29150. },
  29151. head: {
  29152. height: math.unit(1.31, "feet"),
  29153. name: "Head",
  29154. image: {
  29155. source: "./media/characters/nemoskii/head.svg"
  29156. }
  29157. },
  29158. },
  29159. [
  29160. {
  29161. name: "Micro",
  29162. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29163. },
  29164. {
  29165. name: "Normal",
  29166. height: math.unit(6 + 7 / 12, "feet"),
  29167. default: true
  29168. },
  29169. {
  29170. name: "Macro",
  29171. height: math.unit((6 + 7 / 12) * 150, "feet")
  29172. },
  29173. {
  29174. name: "Macro+",
  29175. height: math.unit((6 + 7 / 12) * 500, "feet")
  29176. },
  29177. {
  29178. name: "Megamacro",
  29179. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29180. },
  29181. ]
  29182. ))
  29183. characterMakers.push(() => makeCharacter(
  29184. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29185. {
  29186. front: {
  29187. height: math.unit(1, "mile"),
  29188. weight: math.unit(265261.9, "lb"),
  29189. name: "Front",
  29190. image: {
  29191. source: "./media/characters/shui/front.svg",
  29192. extra: 1633 / 1564,
  29193. bottom: 91.5 / 1726
  29194. }
  29195. },
  29196. },
  29197. [
  29198. {
  29199. name: "Macro",
  29200. height: math.unit(1, "mile"),
  29201. default: true
  29202. },
  29203. ]
  29204. ))
  29205. characterMakers.push(() => makeCharacter(
  29206. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29207. {
  29208. front: {
  29209. height: math.unit(12 + 6 / 12, "feet"),
  29210. weight: math.unit(1342, "lb"),
  29211. name: "Front",
  29212. image: {
  29213. source: "./media/characters/arokh-takakura/front.svg",
  29214. extra: 1089 / 1043,
  29215. bottom: 77.4 / 1176.7
  29216. }
  29217. },
  29218. back: {
  29219. height: math.unit(12 + 6 / 12, "feet"),
  29220. weight: math.unit(1342, "lb"),
  29221. name: "Back",
  29222. image: {
  29223. source: "./media/characters/arokh-takakura/back.svg",
  29224. extra: 1046 / 1019,
  29225. bottom: 102 / 1150
  29226. }
  29227. },
  29228. },
  29229. [
  29230. {
  29231. name: "Big",
  29232. height: math.unit(12 + 6 / 12, "feet"),
  29233. default: true
  29234. },
  29235. ]
  29236. ))
  29237. characterMakers.push(() => makeCharacter(
  29238. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29239. {
  29240. front: {
  29241. height: math.unit(5 + 6 / 12, "feet"),
  29242. weight: math.unit(150, "lb"),
  29243. name: "Front",
  29244. image: {
  29245. source: "./media/characters/theo/front.svg",
  29246. extra: 1184 / 1131,
  29247. bottom: 7.4 / 1191
  29248. }
  29249. },
  29250. },
  29251. [
  29252. {
  29253. name: "Micro",
  29254. height: math.unit(5, "inches")
  29255. },
  29256. {
  29257. name: "Normal",
  29258. height: math.unit(5 + 6 / 12, "feet"),
  29259. default: true
  29260. },
  29261. ]
  29262. ))
  29263. characterMakers.push(() => makeCharacter(
  29264. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29265. {
  29266. front: {
  29267. height: math.unit(5 + 9 / 12, "feet"),
  29268. weight: math.unit(130, "lb"),
  29269. name: "Front",
  29270. image: {
  29271. source: "./media/characters/cecelia-swift/front.svg",
  29272. extra: 502 / 484,
  29273. bottom: 23 / 523
  29274. }
  29275. },
  29276. back: {
  29277. height: math.unit(5 + 9 / 12, "feet"),
  29278. weight: math.unit(130, "lb"),
  29279. name: "Back",
  29280. image: {
  29281. source: "./media/characters/cecelia-swift/back.svg",
  29282. extra: 499 / 485,
  29283. bottom: 12 / 511
  29284. }
  29285. },
  29286. head: {
  29287. height: math.unit(0.90, "feet"),
  29288. name: "Head",
  29289. image: {
  29290. source: "./media/characters/cecelia-swift/head.svg"
  29291. }
  29292. },
  29293. rump: {
  29294. height: math.unit(1.75, "feet"),
  29295. name: "Rump",
  29296. image: {
  29297. source: "./media/characters/cecelia-swift/rump.svg"
  29298. }
  29299. },
  29300. },
  29301. [
  29302. {
  29303. name: "Normal",
  29304. height: math.unit(5 + 9 / 12, "feet"),
  29305. default: true
  29306. },
  29307. {
  29308. name: "Big",
  29309. height: math.unit(50, "feet")
  29310. },
  29311. {
  29312. name: "Macro",
  29313. height: math.unit(100, "feet")
  29314. },
  29315. {
  29316. name: "Macro+",
  29317. height: math.unit(500, "feet")
  29318. },
  29319. {
  29320. name: "Macro++",
  29321. height: math.unit(1000, "feet")
  29322. },
  29323. ]
  29324. ))
  29325. characterMakers.push(() => makeCharacter(
  29326. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29327. {
  29328. front: {
  29329. height: math.unit(6, "feet"),
  29330. weight: math.unit(150, "lb"),
  29331. name: "Front",
  29332. image: {
  29333. source: "./media/characters/kaunan/front.svg",
  29334. extra: 2890 / 2523,
  29335. bottom: 49 / 2939
  29336. }
  29337. },
  29338. },
  29339. [
  29340. {
  29341. name: "Macro",
  29342. height: math.unit(150, "feet"),
  29343. default: true
  29344. },
  29345. ]
  29346. ))
  29347. characterMakers.push(() => makeCharacter(
  29348. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29349. {
  29350. dressed: {
  29351. height: math.unit(175, "cm"),
  29352. weight: math.unit(60, "kg"),
  29353. name: "Dressed",
  29354. image: {
  29355. source: "./media/characters/fei/dressed.svg",
  29356. extra: 1402/1278,
  29357. bottom: 27/1429
  29358. }
  29359. },
  29360. nude: {
  29361. height: math.unit(175, "cm"),
  29362. weight: math.unit(60, "kg"),
  29363. name: "Nude",
  29364. image: {
  29365. source: "./media/characters/fei/nude.svg",
  29366. extra: 1402/1278,
  29367. bottom: 27/1429
  29368. }
  29369. },
  29370. heels: {
  29371. height: math.unit(0.466, "feet"),
  29372. name: "Heels",
  29373. image: {
  29374. source: "./media/characters/fei/heels.svg",
  29375. extra: 156/152,
  29376. bottom: 28/184
  29377. }
  29378. },
  29379. },
  29380. [
  29381. {
  29382. name: "Mortal",
  29383. height: math.unit(175, "cm")
  29384. },
  29385. {
  29386. name: "Normal",
  29387. height: math.unit(3500, "m")
  29388. },
  29389. {
  29390. name: "Stroll",
  29391. height: math.unit(18.4, "km"),
  29392. default: true
  29393. },
  29394. {
  29395. name: "Showoff",
  29396. height: math.unit(175, "km")
  29397. },
  29398. ]
  29399. ))
  29400. characterMakers.push(() => makeCharacter(
  29401. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29402. {
  29403. front: {
  29404. height: math.unit(7, "feet"),
  29405. weight: math.unit(1000, "kg"),
  29406. name: "Front",
  29407. image: {
  29408. source: "./media/characters/edrax/front.svg",
  29409. extra: 2838 / 2550,
  29410. bottom: 130 / 2968
  29411. }
  29412. },
  29413. },
  29414. [
  29415. {
  29416. name: "Small",
  29417. height: math.unit(7, "feet")
  29418. },
  29419. {
  29420. name: "Normal",
  29421. height: math.unit(1500, "meters")
  29422. },
  29423. {
  29424. name: "Mega",
  29425. height: math.unit(12000000, "km"),
  29426. default: true
  29427. },
  29428. {
  29429. name: "Megamacro",
  29430. height: math.unit(10600000, "lightyears")
  29431. },
  29432. {
  29433. name: "Hypermacro",
  29434. height: math.unit(256, "yottameters")
  29435. },
  29436. ]
  29437. ))
  29438. characterMakers.push(() => makeCharacter(
  29439. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29440. {
  29441. front: {
  29442. height: math.unit(10, "feet"),
  29443. weight: math.unit(750, "lb"),
  29444. name: "Front",
  29445. image: {
  29446. source: "./media/characters/clove/front.svg",
  29447. extra: 1918/1751,
  29448. bottom: 52/1970
  29449. }
  29450. },
  29451. back: {
  29452. height: math.unit(10, "feet"),
  29453. weight: math.unit(750, "lb"),
  29454. name: "Back",
  29455. image: {
  29456. source: "./media/characters/clove/back.svg",
  29457. extra: 1912/1747,
  29458. bottom: 50/1962
  29459. }
  29460. },
  29461. },
  29462. [
  29463. {
  29464. name: "Normal",
  29465. height: math.unit(10, "feet"),
  29466. default: true
  29467. },
  29468. ]
  29469. ))
  29470. characterMakers.push(() => makeCharacter(
  29471. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29472. {
  29473. front: {
  29474. height: math.unit(4, "feet"),
  29475. weight: math.unit(50, "lb"),
  29476. name: "Front",
  29477. image: {
  29478. source: "./media/characters/alex-rabbit/front.svg",
  29479. extra: 507 / 458,
  29480. bottom: 18.5 / 527
  29481. }
  29482. },
  29483. back: {
  29484. height: math.unit(4, "feet"),
  29485. weight: math.unit(50, "lb"),
  29486. name: "Back",
  29487. image: {
  29488. source: "./media/characters/alex-rabbit/back.svg",
  29489. extra: 502 / 460,
  29490. bottom: 18.9 / 521
  29491. }
  29492. },
  29493. },
  29494. [
  29495. {
  29496. name: "Normal",
  29497. height: math.unit(4, "feet"),
  29498. default: true
  29499. },
  29500. ]
  29501. ))
  29502. characterMakers.push(() => makeCharacter(
  29503. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29504. {
  29505. front: {
  29506. height: math.unit(1 + 3 / 12, "feet"),
  29507. weight: math.unit(80, "lb"),
  29508. name: "Front",
  29509. image: {
  29510. source: "./media/characters/zander-rose/front.svg",
  29511. extra: 916 / 797,
  29512. bottom: 17 / 933
  29513. }
  29514. },
  29515. back: {
  29516. height: math.unit(1 + 3 / 12, "feet"),
  29517. weight: math.unit(80, "lb"),
  29518. name: "Back",
  29519. image: {
  29520. source: "./media/characters/zander-rose/back.svg",
  29521. extra: 903 / 779,
  29522. bottom: 31 / 934
  29523. }
  29524. },
  29525. },
  29526. [
  29527. {
  29528. name: "Normal",
  29529. height: math.unit(1 + 3 / 12, "feet"),
  29530. default: true
  29531. },
  29532. ]
  29533. ))
  29534. characterMakers.push(() => makeCharacter(
  29535. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29536. {
  29537. anthro: {
  29538. height: math.unit(6, "feet"),
  29539. weight: math.unit(150, "lb"),
  29540. name: "Anthro",
  29541. image: {
  29542. source: "./media/characters/razz/anthro.svg",
  29543. extra: 1437 / 1343,
  29544. bottom: 48 / 1485
  29545. }
  29546. },
  29547. feral: {
  29548. height: math.unit(6, "feet"),
  29549. weight: math.unit(150, "lb"),
  29550. name: "Feral",
  29551. image: {
  29552. source: "./media/characters/razz/feral.svg",
  29553. extra: 2569 / 1385,
  29554. bottom: 95 / 2664
  29555. }
  29556. },
  29557. },
  29558. [
  29559. {
  29560. name: "Normal",
  29561. height: math.unit(6, "feet"),
  29562. default: true
  29563. },
  29564. ]
  29565. ))
  29566. characterMakers.push(() => makeCharacter(
  29567. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29568. {
  29569. front: {
  29570. height: math.unit(9 + 4 / 12, "feet"),
  29571. weight: math.unit(500, "lb"),
  29572. name: "Front",
  29573. image: {
  29574. source: "./media/characters/morrigan/front.svg",
  29575. extra: 2707 / 2579,
  29576. bottom: 156 / 2863
  29577. }
  29578. },
  29579. },
  29580. [
  29581. {
  29582. name: "Normal",
  29583. height: math.unit(9 + 4 / 12, "feet"),
  29584. default: true
  29585. },
  29586. ]
  29587. ))
  29588. characterMakers.push(() => makeCharacter(
  29589. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29590. {
  29591. front: {
  29592. height: math.unit(5, "stories"),
  29593. weight: math.unit(4000, "lb"),
  29594. name: "Front",
  29595. image: {
  29596. source: "./media/characters/jenene/front.svg",
  29597. extra: 1780 / 1710,
  29598. bottom: 57 / 1837
  29599. }
  29600. },
  29601. },
  29602. [
  29603. {
  29604. name: "Normal",
  29605. height: math.unit(5, "stories"),
  29606. default: true
  29607. },
  29608. ]
  29609. ))
  29610. characterMakers.push(() => makeCharacter(
  29611. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29612. {
  29613. taurSfw: {
  29614. height: math.unit(10, "meters"),
  29615. weight: math.unit(17500, "kg"),
  29616. name: "Taur",
  29617. image: {
  29618. source: "./media/characters/faey/taur-sfw.svg",
  29619. extra: 1200 / 968,
  29620. bottom: 41 / 1241
  29621. }
  29622. },
  29623. chestmaw: {
  29624. height: math.unit(2.01, "meters"),
  29625. name: "Chestmaw",
  29626. image: {
  29627. source: "./media/characters/faey/chestmaw.svg"
  29628. }
  29629. },
  29630. foot: {
  29631. height: math.unit(2.43, "meters"),
  29632. name: "Foot",
  29633. image: {
  29634. source: "./media/characters/faey/foot.svg"
  29635. }
  29636. },
  29637. jaws: {
  29638. height: math.unit(1.66, "meters"),
  29639. name: "Jaws",
  29640. image: {
  29641. source: "./media/characters/faey/jaws.svg"
  29642. }
  29643. },
  29644. tongues: {
  29645. height: math.unit(2.01, "meters"),
  29646. name: "Tongues",
  29647. image: {
  29648. source: "./media/characters/faey/tongues.svg"
  29649. }
  29650. },
  29651. },
  29652. [
  29653. {
  29654. name: "Small",
  29655. height: math.unit(10, "meters"),
  29656. default: true
  29657. },
  29658. {
  29659. name: "Big",
  29660. height: math.unit(500000, "km")
  29661. },
  29662. ]
  29663. ))
  29664. characterMakers.push(() => makeCharacter(
  29665. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29666. {
  29667. front: {
  29668. height: math.unit(7, "feet"),
  29669. weight: math.unit(275, "lb"),
  29670. name: "Front",
  29671. image: {
  29672. source: "./media/characters/roku/front.svg",
  29673. extra: 903 / 878,
  29674. bottom: 37 / 940
  29675. }
  29676. },
  29677. },
  29678. [
  29679. {
  29680. name: "Normal",
  29681. height: math.unit(7, "feet"),
  29682. default: true
  29683. },
  29684. {
  29685. name: "Macro",
  29686. height: math.unit(500, "feet")
  29687. },
  29688. {
  29689. name: "Megamacro",
  29690. height: math.unit(200, "miles")
  29691. },
  29692. ]
  29693. ))
  29694. characterMakers.push(() => makeCharacter(
  29695. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29696. {
  29697. front: {
  29698. height: math.unit(6 + 2 / 12, "feet"),
  29699. weight: math.unit(150, "lb"),
  29700. name: "Front",
  29701. image: {
  29702. source: "./media/characters/lira/front.svg",
  29703. extra: 1727 / 1605,
  29704. bottom: 26 / 1753
  29705. }
  29706. },
  29707. back: {
  29708. height: math.unit(6 + 2 / 12, "feet"),
  29709. weight: math.unit(150, "lb"),
  29710. name: "Back",
  29711. image: {
  29712. source: "./media/characters/lira/back.svg",
  29713. extra: 1713/1621,
  29714. bottom: 20/1733
  29715. }
  29716. },
  29717. hand: {
  29718. height: math.unit(0.75, "feet"),
  29719. name: "Hand",
  29720. image: {
  29721. source: "./media/characters/lira/hand.svg"
  29722. }
  29723. },
  29724. maw: {
  29725. height: math.unit(0.65, "feet"),
  29726. name: "Maw",
  29727. image: {
  29728. source: "./media/characters/lira/maw.svg"
  29729. }
  29730. },
  29731. pawDigi: {
  29732. height: math.unit(1.6, "feet"),
  29733. name: "Paw Digi",
  29734. image: {
  29735. source: "./media/characters/lira/paw-digi.svg"
  29736. }
  29737. },
  29738. pawPlanti: {
  29739. height: math.unit(1.4, "feet"),
  29740. name: "Paw Planti",
  29741. image: {
  29742. source: "./media/characters/lira/paw-planti.svg"
  29743. }
  29744. },
  29745. },
  29746. [
  29747. {
  29748. name: "Normal",
  29749. height: math.unit(6 + 2 / 12, "feet"),
  29750. default: true
  29751. },
  29752. {
  29753. name: "Macro",
  29754. height: math.unit(100, "feet")
  29755. },
  29756. {
  29757. name: "Macro²",
  29758. height: math.unit(1600, "feet")
  29759. },
  29760. {
  29761. name: "Planetary",
  29762. height: math.unit(20, "earths")
  29763. },
  29764. ]
  29765. ))
  29766. characterMakers.push(() => makeCharacter(
  29767. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29768. {
  29769. front: {
  29770. height: math.unit(6, "feet"),
  29771. weight: math.unit(150, "lb"),
  29772. name: "Front",
  29773. image: {
  29774. source: "./media/characters/hadjet/front.svg",
  29775. extra: 1480 / 1346,
  29776. bottom: 26 / 1506
  29777. }
  29778. },
  29779. frontNsfw: {
  29780. height: math.unit(6, "feet"),
  29781. weight: math.unit(150, "lb"),
  29782. name: "Front (NSFW)",
  29783. image: {
  29784. source: "./media/characters/hadjet/front-nsfw.svg",
  29785. extra: 1440 / 1358,
  29786. bottom: 52 / 1492
  29787. }
  29788. },
  29789. },
  29790. [
  29791. {
  29792. name: "Macro",
  29793. height: math.unit(10, "stories"),
  29794. default: true
  29795. },
  29796. {
  29797. name: "Megamacro",
  29798. height: math.unit(1.5, "miles")
  29799. },
  29800. {
  29801. name: "Megamacro+",
  29802. height: math.unit(5, "miles")
  29803. },
  29804. ]
  29805. ))
  29806. characterMakers.push(() => makeCharacter(
  29807. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29808. {
  29809. side: {
  29810. height: math.unit(106, "feet"),
  29811. weight: math.unit(500, "tonnes"),
  29812. name: "Side",
  29813. image: {
  29814. source: "./media/characters/kodran/side.svg",
  29815. extra: 553 / 480,
  29816. bottom: 33 / 586
  29817. }
  29818. },
  29819. front: {
  29820. height: math.unit(132, "feet"),
  29821. weight: math.unit(500, "tonnes"),
  29822. name: "Front",
  29823. image: {
  29824. source: "./media/characters/kodran/front.svg",
  29825. extra: 667 / 643,
  29826. bottom: 42 / 709
  29827. }
  29828. },
  29829. flying: {
  29830. height: math.unit(350, "feet"),
  29831. weight: math.unit(500, "tonnes"),
  29832. name: "Flying",
  29833. image: {
  29834. source: "./media/characters/kodran/flying.svg"
  29835. }
  29836. },
  29837. foot: {
  29838. height: math.unit(33, "feet"),
  29839. name: "Foot",
  29840. image: {
  29841. source: "./media/characters/kodran/foot.svg"
  29842. }
  29843. },
  29844. footFront: {
  29845. height: math.unit(19, "feet"),
  29846. name: "Foot (Front)",
  29847. image: {
  29848. source: "./media/characters/kodran/foot-front.svg",
  29849. extra: 261 / 261,
  29850. bottom: 91 / 352
  29851. }
  29852. },
  29853. headFront: {
  29854. height: math.unit(53, "feet"),
  29855. name: "Head (Front)",
  29856. image: {
  29857. source: "./media/characters/kodran/head-front.svg"
  29858. }
  29859. },
  29860. headSide: {
  29861. height: math.unit(65, "feet"),
  29862. name: "Head (Side)",
  29863. image: {
  29864. source: "./media/characters/kodran/head-side.svg"
  29865. }
  29866. },
  29867. throat: {
  29868. height: math.unit(79, "feet"),
  29869. name: "Throat",
  29870. image: {
  29871. source: "./media/characters/kodran/throat.svg"
  29872. }
  29873. },
  29874. },
  29875. [
  29876. {
  29877. name: "Large",
  29878. height: math.unit(106, "feet"),
  29879. default: true
  29880. },
  29881. ]
  29882. ))
  29883. characterMakers.push(() => makeCharacter(
  29884. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29885. {
  29886. side: {
  29887. height: math.unit(11, "feet"),
  29888. weight: math.unit(150, "lb"),
  29889. name: "Side",
  29890. image: {
  29891. source: "./media/characters/pyxaron/side.svg",
  29892. extra: 305 / 195,
  29893. bottom: 17 / 322
  29894. }
  29895. },
  29896. },
  29897. [
  29898. {
  29899. name: "Normal",
  29900. height: math.unit(11, "feet"),
  29901. default: true
  29902. },
  29903. ]
  29904. ))
  29905. characterMakers.push(() => makeCharacter(
  29906. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29907. {
  29908. front: {
  29909. height: math.unit(6, "feet"),
  29910. weight: math.unit(150, "lb"),
  29911. name: "Front",
  29912. image: {
  29913. source: "./media/characters/meep/front.svg",
  29914. extra: 88 / 80,
  29915. bottom: 6 / 94
  29916. }
  29917. },
  29918. },
  29919. [
  29920. {
  29921. name: "Fun Sized",
  29922. height: math.unit(2, "inches"),
  29923. default: true
  29924. },
  29925. {
  29926. name: "Friend Sized",
  29927. height: math.unit(8, "inches")
  29928. },
  29929. ]
  29930. ))
  29931. characterMakers.push(() => makeCharacter(
  29932. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29933. {
  29934. front: {
  29935. height: math.unit(15, "feet"),
  29936. weight: math.unit(2500, "lb"),
  29937. name: "Front",
  29938. image: {
  29939. source: "./media/characters/holly-rabbit/front.svg",
  29940. extra: 1433 / 1233,
  29941. bottom: 125 / 1558
  29942. }
  29943. },
  29944. dick: {
  29945. height: math.unit(4.6, "feet"),
  29946. name: "Dick",
  29947. image: {
  29948. source: "./media/characters/holly-rabbit/dick.svg"
  29949. }
  29950. },
  29951. },
  29952. [
  29953. {
  29954. name: "Normal",
  29955. height: math.unit(15, "feet"),
  29956. default: true
  29957. },
  29958. {
  29959. name: "Macro",
  29960. height: math.unit(250, "feet")
  29961. },
  29962. {
  29963. name: "Macro+",
  29964. height: math.unit(2500, "feet")
  29965. },
  29966. ]
  29967. ))
  29968. characterMakers.push(() => makeCharacter(
  29969. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29970. {
  29971. front: {
  29972. height: math.unit(3.02, "meters"),
  29973. weight: math.unit(500, "kg"),
  29974. name: "Front",
  29975. image: {
  29976. source: "./media/characters/drena/front.svg",
  29977. extra: 282 / 243,
  29978. bottom: 8 / 290
  29979. }
  29980. },
  29981. side: {
  29982. height: math.unit(3.02, "meters"),
  29983. weight: math.unit(500, "kg"),
  29984. name: "Side",
  29985. image: {
  29986. source: "./media/characters/drena/side.svg",
  29987. extra: 280 / 245,
  29988. bottom: 10 / 290
  29989. }
  29990. },
  29991. back: {
  29992. height: math.unit(3.02, "meters"),
  29993. weight: math.unit(500, "kg"),
  29994. name: "Back",
  29995. image: {
  29996. source: "./media/characters/drena/back.svg",
  29997. extra: 278 / 243,
  29998. bottom: 2 / 280
  29999. }
  30000. },
  30001. foot: {
  30002. height: math.unit(0.75, "meters"),
  30003. name: "Foot",
  30004. image: {
  30005. source: "./media/characters/drena/foot.svg"
  30006. }
  30007. },
  30008. maw: {
  30009. height: math.unit(0.82, "meters"),
  30010. name: "Maw",
  30011. image: {
  30012. source: "./media/characters/drena/maw.svg"
  30013. }
  30014. },
  30015. eating: {
  30016. height: math.unit(0.75, "meters"),
  30017. name: "Eating",
  30018. image: {
  30019. source: "./media/characters/drena/eating.svg"
  30020. }
  30021. },
  30022. rump: {
  30023. height: math.unit(0.93, "meters"),
  30024. name: "Rump",
  30025. image: {
  30026. source: "./media/characters/drena/rump.svg"
  30027. }
  30028. },
  30029. },
  30030. [
  30031. {
  30032. name: "Normal",
  30033. height: math.unit(3.02, "meters"),
  30034. default: true
  30035. },
  30036. ]
  30037. ))
  30038. characterMakers.push(() => makeCharacter(
  30039. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30040. {
  30041. front: {
  30042. height: math.unit(6 + 4 / 12, "feet"),
  30043. weight: math.unit(250, "lb"),
  30044. name: "Front",
  30045. image: {
  30046. source: "./media/characters/remmyzilla/front.svg",
  30047. extra: 4033 / 3588,
  30048. bottom: 123 / 4156
  30049. }
  30050. },
  30051. back: {
  30052. height: math.unit(6 + 4 / 12, "feet"),
  30053. weight: math.unit(250, "lb"),
  30054. name: "Back",
  30055. image: {
  30056. source: "./media/characters/remmyzilla/back.svg",
  30057. extra: 2687 / 2555,
  30058. bottom: 48 / 2735
  30059. }
  30060. },
  30061. paw: {
  30062. height: math.unit(1.73, "feet"),
  30063. name: "Paw",
  30064. image: {
  30065. source: "./media/characters/remmyzilla/paw.svg"
  30066. },
  30067. extraAttributes: {
  30068. "toeSize": {
  30069. name: "Toe Size",
  30070. power: 2,
  30071. type: "area",
  30072. base: math.unit(0.0035, "m^2")
  30073. },
  30074. "padSize": {
  30075. name: "Pad Size",
  30076. power: 2,
  30077. type: "area",
  30078. base: math.unit(0.015, "m^2")
  30079. },
  30080. "pawsize": {
  30081. name: "Paw Size",
  30082. power: 2,
  30083. type: "area",
  30084. base: math.unit(0.072, "m^2")
  30085. },
  30086. }
  30087. },
  30088. maw: {
  30089. height: math.unit(1.73, "feet"),
  30090. name: "Maw",
  30091. image: {
  30092. source: "./media/characters/remmyzilla/maw.svg"
  30093. }
  30094. },
  30095. },
  30096. [
  30097. {
  30098. name: "Normal",
  30099. height: math.unit(6 + 4 / 12, "feet")
  30100. },
  30101. {
  30102. name: "Minimacro",
  30103. height: math.unit(12 + 8 / 12, "feet")
  30104. },
  30105. {
  30106. name: "Normal",
  30107. height: math.unit(640, "feet"),
  30108. default: true
  30109. },
  30110. {
  30111. name: "Megamacro",
  30112. height: math.unit(6400, "feet")
  30113. },
  30114. {
  30115. name: "Gigamacro",
  30116. height: math.unit(64000, "miles")
  30117. },
  30118. ]
  30119. ))
  30120. characterMakers.push(() => makeCharacter(
  30121. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30122. {
  30123. front: {
  30124. height: math.unit(2.5, "meters"),
  30125. weight: math.unit(300, "lb"),
  30126. name: "Front",
  30127. image: {
  30128. source: "./media/characters/lawrence/front.svg",
  30129. extra: 357 / 335,
  30130. bottom: 30 / 387
  30131. }
  30132. },
  30133. back: {
  30134. height: math.unit(2.5, "meters"),
  30135. weight: math.unit(300, "lb"),
  30136. name: "Back",
  30137. image: {
  30138. source: "./media/characters/lawrence/back.svg",
  30139. extra: 357 / 338,
  30140. bottom: 16 / 373
  30141. }
  30142. },
  30143. head: {
  30144. height: math.unit(0.9, "meter"),
  30145. name: "Head",
  30146. image: {
  30147. source: "./media/characters/lawrence/head.svg"
  30148. }
  30149. },
  30150. maw: {
  30151. height: math.unit(0.7, "meter"),
  30152. name: "Maw",
  30153. image: {
  30154. source: "./media/characters/lawrence/maw.svg"
  30155. }
  30156. },
  30157. footBottom: {
  30158. height: math.unit(0.5, "meter"),
  30159. name: "Foot (Bottom)",
  30160. image: {
  30161. source: "./media/characters/lawrence/foot-bottom.svg"
  30162. }
  30163. },
  30164. footTop: {
  30165. height: math.unit(0.5, "meter"),
  30166. name: "Foot (Top)",
  30167. image: {
  30168. source: "./media/characters/lawrence/foot-top.svg"
  30169. }
  30170. },
  30171. },
  30172. [
  30173. {
  30174. name: "Normal",
  30175. height: math.unit(2.5, "meters"),
  30176. default: true
  30177. },
  30178. {
  30179. name: "Macro",
  30180. height: math.unit(95, "meters")
  30181. },
  30182. {
  30183. name: "Megamacro",
  30184. height: math.unit(150, "km")
  30185. },
  30186. ]
  30187. ))
  30188. characterMakers.push(() => makeCharacter(
  30189. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30190. {
  30191. front: {
  30192. height: math.unit(4.2, "meters"),
  30193. name: "Front",
  30194. image: {
  30195. source: "./media/characters/sydney/front.svg",
  30196. extra: 1323 / 1277,
  30197. bottom: 111 / 1434
  30198. }
  30199. },
  30200. },
  30201. [
  30202. {
  30203. name: "Normal",
  30204. height: math.unit(4.2, "meters"),
  30205. default: true
  30206. },
  30207. ]
  30208. ))
  30209. characterMakers.push(() => makeCharacter(
  30210. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30211. {
  30212. back: {
  30213. height: math.unit(201, "feet"),
  30214. name: "Back",
  30215. image: {
  30216. source: "./media/characters/jessica/back.svg",
  30217. extra: 273 / 259,
  30218. bottom: 7 / 280
  30219. }
  30220. },
  30221. },
  30222. [
  30223. {
  30224. name: "Normal",
  30225. height: math.unit(201, "feet"),
  30226. default: true
  30227. },
  30228. {
  30229. name: "Megamacro",
  30230. height: math.unit(8, "miles")
  30231. },
  30232. ]
  30233. ))
  30234. characterMakers.push(() => makeCharacter(
  30235. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30236. {
  30237. side: {
  30238. height: math.unit(5.6, "m"),
  30239. weight: math.unit(8000, "kg"),
  30240. name: "Side",
  30241. image: {
  30242. source: "./media/characters/victoria/side.svg",
  30243. extra: 1542/1229,
  30244. bottom: 124/1666
  30245. }
  30246. },
  30247. maw: {
  30248. height: math.unit(7.14, "feet"),
  30249. name: "Maw",
  30250. image: {
  30251. source: "./media/characters/victoria/maw.svg"
  30252. }
  30253. },
  30254. },
  30255. [
  30256. {
  30257. name: "Normal",
  30258. height: math.unit(5.6, "m"),
  30259. default: true
  30260. },
  30261. ]
  30262. ))
  30263. characterMakers.push(() => makeCharacter(
  30264. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30265. {
  30266. front: {
  30267. height: math.unit(5 + 6 / 12, "feet"),
  30268. name: "Front",
  30269. image: {
  30270. source: "./media/characters/cat/front.svg",
  30271. extra: 1449/1295,
  30272. bottom: 34/1483
  30273. },
  30274. form: "cat",
  30275. default: true
  30276. },
  30277. back: {
  30278. height: math.unit(5 + 6 / 12, "feet"),
  30279. name: "Back",
  30280. image: {
  30281. source: "./media/characters/cat/back.svg",
  30282. extra: 1466/1301,
  30283. bottom: 19/1485
  30284. },
  30285. form: "cat"
  30286. },
  30287. taur: {
  30288. height: math.unit(7, "feet"),
  30289. name: "Taur",
  30290. image: {
  30291. source: "./media/characters/cat/taur.svg",
  30292. extra: 1389/1233,
  30293. bottom: 83/1472
  30294. },
  30295. form: "taur",
  30296. default: true
  30297. },
  30298. lucarioFront: {
  30299. height: math.unit(4, "feet"),
  30300. name: "Lucario (Front)",
  30301. image: {
  30302. source: "./media/characters/cat/lucario-front.svg",
  30303. extra: 1149/1019,
  30304. bottom: 84/1233
  30305. },
  30306. form: "lucario",
  30307. default: true
  30308. },
  30309. lucarioBack: {
  30310. height: math.unit(4, "feet"),
  30311. name: "Lucario (Back)",
  30312. image: {
  30313. source: "./media/characters/cat/lucario-back.svg",
  30314. extra: 1190/1059,
  30315. bottom: 33/1223
  30316. },
  30317. form: "lucario"
  30318. },
  30319. megaLucario: {
  30320. height: math.unit(4, "feet"),
  30321. name: "Mega Lucario",
  30322. image: {
  30323. source: "./media/characters/cat/mega-lucario.svg",
  30324. extra: 1515 / 1319,
  30325. bottom: 63 / 1578
  30326. },
  30327. form: "lucario"
  30328. },
  30329. nickit: {
  30330. height: math.unit(2, "feet"),
  30331. name: "Nickit",
  30332. image: {
  30333. source: "./media/characters/cat/nickit.svg",
  30334. extra: 1980 / 1585,
  30335. bottom: 102 / 2082
  30336. },
  30337. form: "nickit",
  30338. default: true
  30339. },
  30340. lopunnyFront: {
  30341. height: math.unit(5, "feet"),
  30342. name: "Lopunny (Front)",
  30343. image: {
  30344. source: "./media/characters/cat/lopunny-front.svg",
  30345. extra: 1782 / 1469,
  30346. bottom: 38 / 1820
  30347. },
  30348. form: "lopunny",
  30349. default: true
  30350. },
  30351. lopunnyBack: {
  30352. height: math.unit(5, "feet"),
  30353. name: "Lopunny (Back)",
  30354. image: {
  30355. source: "./media/characters/cat/lopunny-back.svg",
  30356. extra: 1660 / 1490,
  30357. bottom: 25 / 1685
  30358. },
  30359. form: "lopunny"
  30360. },
  30361. },
  30362. [
  30363. {
  30364. name: "Really small",
  30365. height: math.unit(1, "nm")
  30366. },
  30367. {
  30368. name: "Micro",
  30369. height: math.unit(5, "inches")
  30370. },
  30371. {
  30372. name: "Normal",
  30373. height: math.unit(5 + 6 / 12, "feet"),
  30374. default: true
  30375. },
  30376. {
  30377. name: "Macro",
  30378. height: math.unit(50, "feet")
  30379. },
  30380. {
  30381. name: "Macro+",
  30382. height: math.unit(150, "feet")
  30383. },
  30384. {
  30385. name: "Megamacro",
  30386. height: math.unit(100, "miles")
  30387. },
  30388. ]
  30389. ))
  30390. characterMakers.push(() => makeCharacter(
  30391. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30392. {
  30393. front: {
  30394. height: math.unit(63.4, "meters"),
  30395. weight: math.unit(3.28349e+6, "kilograms"),
  30396. name: "Front",
  30397. image: {
  30398. source: "./media/characters/kirina-violet/front.svg",
  30399. extra: 2812 / 2725,
  30400. bottom: 0 / 2812
  30401. }
  30402. },
  30403. back: {
  30404. height: math.unit(63.4, "meters"),
  30405. weight: math.unit(3.28349e+6, "kilograms"),
  30406. name: "Back",
  30407. image: {
  30408. source: "./media/characters/kirina-violet/back.svg",
  30409. extra: 2812 / 2725,
  30410. bottom: 0 / 2812
  30411. }
  30412. },
  30413. mouth: {
  30414. height: math.unit(4.35, "meters"),
  30415. name: "Mouth",
  30416. image: {
  30417. source: "./media/characters/kirina-violet/mouth.svg"
  30418. }
  30419. },
  30420. paw: {
  30421. height: math.unit(5.6, "meters"),
  30422. name: "Paw",
  30423. image: {
  30424. source: "./media/characters/kirina-violet/paw.svg"
  30425. }
  30426. },
  30427. tail: {
  30428. height: math.unit(18, "meters"),
  30429. name: "Tail",
  30430. image: {
  30431. source: "./media/characters/kirina-violet/tail.svg"
  30432. }
  30433. },
  30434. },
  30435. [
  30436. {
  30437. name: "Macro",
  30438. height: math.unit(63.4, "meters"),
  30439. default: true
  30440. },
  30441. ]
  30442. ))
  30443. characterMakers.push(() => makeCharacter(
  30444. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30445. {
  30446. front: {
  30447. height: math.unit(75, "feet"),
  30448. name: "Front",
  30449. image: {
  30450. source: "./media/characters/cat-gigachu/front.svg",
  30451. extra: 1239/1027,
  30452. bottom: 32/1271
  30453. }
  30454. },
  30455. back: {
  30456. height: math.unit(75, "feet"),
  30457. name: "Back",
  30458. image: {
  30459. source: "./media/characters/cat-gigachu/back.svg",
  30460. extra: 1229/1030,
  30461. bottom: 9/1238
  30462. }
  30463. },
  30464. },
  30465. [
  30466. {
  30467. name: "Dynamax",
  30468. height: math.unit(75, "feet"),
  30469. default: true
  30470. },
  30471. ]
  30472. ))
  30473. characterMakers.push(() => makeCharacter(
  30474. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30475. {
  30476. front: {
  30477. height: math.unit(6, "feet"),
  30478. weight: math.unit(150, "lb"),
  30479. name: "Front",
  30480. image: {
  30481. source: "./media/characters/sfaiyan/front.svg",
  30482. extra: 999 / 978,
  30483. bottom: 5 / 1004
  30484. }
  30485. },
  30486. },
  30487. [
  30488. {
  30489. name: "Normal",
  30490. height: math.unit(1.82, "meters")
  30491. },
  30492. {
  30493. name: "Giant",
  30494. height: math.unit(2.27, "km"),
  30495. default: true
  30496. },
  30497. ]
  30498. ))
  30499. characterMakers.push(() => makeCharacter(
  30500. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30501. {
  30502. front: {
  30503. height: math.unit(179, "cm"),
  30504. weight: math.unit(100, "kg"),
  30505. name: "Front",
  30506. image: {
  30507. source: "./media/characters/raunehkeli/front.svg",
  30508. extra: 1934 / 1926,
  30509. bottom: 0 / 1934
  30510. }
  30511. },
  30512. },
  30513. [
  30514. {
  30515. name: "Normal",
  30516. height: math.unit(179, "cm")
  30517. },
  30518. {
  30519. name: "Maximum",
  30520. height: math.unit(575, "meters"),
  30521. default: true
  30522. },
  30523. ]
  30524. ))
  30525. characterMakers.push(() => makeCharacter(
  30526. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30527. {
  30528. front: {
  30529. height: math.unit(6, "feet"),
  30530. weight: math.unit(150, "lb"),
  30531. name: "Front",
  30532. image: {
  30533. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30534. extra: 2625 / 2518,
  30535. bottom: 60 / 2685
  30536. }
  30537. },
  30538. },
  30539. [
  30540. {
  30541. name: "Normal",
  30542. height: math.unit(6 + 2 / 12, "feet")
  30543. },
  30544. {
  30545. name: "Macro",
  30546. height: math.unit(1180, "feet"),
  30547. default: true
  30548. },
  30549. ]
  30550. ))
  30551. characterMakers.push(() => makeCharacter(
  30552. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30553. {
  30554. front: {
  30555. height: math.unit(5 + 6 / 12, "feet"),
  30556. weight: math.unit(108, "lb"),
  30557. name: "Front",
  30558. image: {
  30559. source: "./media/characters/lilith-zott/front.svg",
  30560. extra: 2510 / 2238,
  30561. bottom: 100 / 2610
  30562. }
  30563. },
  30564. frontDressed: {
  30565. height: math.unit(5 + 6 / 12, "feet"),
  30566. weight: math.unit(108, "lb"),
  30567. name: "Front (Dressed)",
  30568. image: {
  30569. source: "./media/characters/lilith-zott/front-dressed.svg",
  30570. extra: 2510 / 2238,
  30571. bottom: 100 / 2610
  30572. }
  30573. },
  30574. },
  30575. [
  30576. {
  30577. name: "Normal",
  30578. height: math.unit(5 + 6 / 12, "feet")
  30579. },
  30580. {
  30581. name: "Macro",
  30582. height: math.unit(1030, "feet"),
  30583. default: true
  30584. },
  30585. ]
  30586. ))
  30587. characterMakers.push(() => makeCharacter(
  30588. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30589. {
  30590. front: {
  30591. height: math.unit(6, "feet"),
  30592. weight: math.unit(150, "lb"),
  30593. name: "Front",
  30594. image: {
  30595. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30596. extra: 2567 / 2435,
  30597. bottom: 39 / 2606
  30598. }
  30599. },
  30600. frontSuper: {
  30601. height: math.unit(6, "feet"),
  30602. name: "Front (Super)",
  30603. image: {
  30604. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30605. extra: 2567 / 2435,
  30606. bottom: 39 / 2606
  30607. }
  30608. },
  30609. },
  30610. [
  30611. {
  30612. name: "Normal",
  30613. height: math.unit(5 + 10 / 12, "feet")
  30614. },
  30615. {
  30616. name: "Macro",
  30617. height: math.unit(1100, "feet"),
  30618. default: true
  30619. },
  30620. ]
  30621. ))
  30622. characterMakers.push(() => makeCharacter(
  30623. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30624. {
  30625. front: {
  30626. height: math.unit(100, "miles"),
  30627. name: "Front",
  30628. image: {
  30629. source: "./media/characters/sona/front.svg",
  30630. extra: 2433 / 2201,
  30631. bottom: 53 / 2486
  30632. }
  30633. },
  30634. foot: {
  30635. height: math.unit(16.1, "miles"),
  30636. name: "Foot",
  30637. image: {
  30638. source: "./media/characters/sona/foot.svg"
  30639. }
  30640. },
  30641. },
  30642. [
  30643. {
  30644. name: "Macro",
  30645. height: math.unit(100, "miles"),
  30646. default: true
  30647. },
  30648. ]
  30649. ))
  30650. characterMakers.push(() => makeCharacter(
  30651. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30652. {
  30653. front: {
  30654. height: math.unit(6, "feet"),
  30655. weight: math.unit(150, "lb"),
  30656. name: "Front",
  30657. image: {
  30658. source: "./media/characters/bailey/front.svg",
  30659. extra: 1778 / 1724,
  30660. bottom: 30 / 1808
  30661. }
  30662. },
  30663. },
  30664. [
  30665. {
  30666. name: "Micro",
  30667. height: math.unit(4, "inches")
  30668. },
  30669. {
  30670. name: "Normal",
  30671. height: math.unit(5 + 5 / 12, "feet"),
  30672. default: true
  30673. },
  30674. {
  30675. name: "Macro",
  30676. height: math.unit(250, "feet")
  30677. },
  30678. {
  30679. name: "Megamacro",
  30680. height: math.unit(100, "miles")
  30681. },
  30682. ]
  30683. ))
  30684. characterMakers.push(() => makeCharacter(
  30685. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30686. {
  30687. front: {
  30688. height: math.unit(5 + 2 / 12, "feet"),
  30689. weight: math.unit(120, "lb"),
  30690. name: "Front",
  30691. image: {
  30692. source: "./media/characters/snaps/front.svg",
  30693. extra: 2370 / 2177,
  30694. bottom: 48 / 2418
  30695. }
  30696. },
  30697. back: {
  30698. height: math.unit(5 + 2 / 12, "feet"),
  30699. weight: math.unit(120, "lb"),
  30700. name: "Back",
  30701. image: {
  30702. source: "./media/characters/snaps/back.svg",
  30703. extra: 2408 / 2258,
  30704. bottom: 15 / 2423
  30705. }
  30706. },
  30707. },
  30708. [
  30709. {
  30710. name: "Micro",
  30711. height: math.unit(9, "inches")
  30712. },
  30713. {
  30714. name: "Normal",
  30715. height: math.unit(5 + 2 / 12, "feet"),
  30716. default: true
  30717. },
  30718. {
  30719. name: "Mini Macro",
  30720. height: math.unit(10, "feet")
  30721. },
  30722. ]
  30723. ))
  30724. characterMakers.push(() => makeCharacter(
  30725. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30726. {
  30727. front: {
  30728. height: math.unit(1.8, "meters"),
  30729. weight: math.unit(85, "kg"),
  30730. name: "Front",
  30731. image: {
  30732. source: "./media/characters/azteck/front.svg",
  30733. extra: 2815 / 2625,
  30734. bottom: 89 / 2904
  30735. }
  30736. },
  30737. back: {
  30738. height: math.unit(1.8, "meters"),
  30739. weight: math.unit(85, "kg"),
  30740. name: "Back",
  30741. image: {
  30742. source: "./media/characters/azteck/back.svg",
  30743. extra: 2856 / 2648,
  30744. bottom: 85 / 2941
  30745. }
  30746. },
  30747. frontDressed: {
  30748. height: math.unit(1.8, "meters"),
  30749. weight: math.unit(85, "kg"),
  30750. name: "Front (Dressed)",
  30751. image: {
  30752. source: "./media/characters/azteck/front-dressed.svg",
  30753. extra: 2147 / 2003,
  30754. bottom: 68 / 2215
  30755. }
  30756. },
  30757. head: {
  30758. height: math.unit(0.47, "meters"),
  30759. weight: math.unit(85, "kg"),
  30760. name: "Head",
  30761. image: {
  30762. source: "./media/characters/azteck/head.svg"
  30763. }
  30764. },
  30765. },
  30766. [
  30767. {
  30768. name: "Bite sized",
  30769. height: math.unit(16, "cm")
  30770. },
  30771. {
  30772. name: "Normal",
  30773. height: math.unit(1.8, "meters"),
  30774. default: true
  30775. },
  30776. ]
  30777. ))
  30778. characterMakers.push(() => makeCharacter(
  30779. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30780. {
  30781. front: {
  30782. height: math.unit(6, "feet"),
  30783. weight: math.unit(150, "lb"),
  30784. name: "Front",
  30785. image: {
  30786. source: "./media/characters/pidge/front.svg",
  30787. extra: 1936/1820,
  30788. bottom: 0/1936
  30789. }
  30790. },
  30791. back: {
  30792. height: math.unit(6, "feet"),
  30793. weight: math.unit(150, "lb"),
  30794. name: "Back",
  30795. image: {
  30796. source: "./media/characters/pidge/back.svg",
  30797. extra: 1938/1843,
  30798. bottom: 0/1938
  30799. }
  30800. },
  30801. casual: {
  30802. height: math.unit(6, "feet"),
  30803. weight: math.unit(150, "lb"),
  30804. name: "Casual",
  30805. image: {
  30806. source: "./media/characters/pidge/casual.svg",
  30807. extra: 1936/1820,
  30808. bottom: 0/1936
  30809. }
  30810. },
  30811. tech: {
  30812. height: math.unit(6, "feet"),
  30813. weight: math.unit(150, "lb"),
  30814. name: "Tech",
  30815. image: {
  30816. source: "./media/characters/pidge/tech.svg",
  30817. extra: 1802/1682,
  30818. bottom: 0/1802
  30819. }
  30820. },
  30821. head: {
  30822. height: math.unit(1.61, "feet"),
  30823. name: "Head",
  30824. image: {
  30825. source: "./media/characters/pidge/head.svg"
  30826. }
  30827. },
  30828. collar: {
  30829. height: math.unit(0.82, "feet"),
  30830. name: "Collar",
  30831. image: {
  30832. source: "./media/characters/pidge/collar.svg"
  30833. }
  30834. },
  30835. },
  30836. [
  30837. {
  30838. name: "Macro",
  30839. height: math.unit(2, "mile"),
  30840. default: true
  30841. },
  30842. {
  30843. name: "PUPPY",
  30844. height: math.unit(20, "miles")
  30845. },
  30846. ]
  30847. ))
  30848. characterMakers.push(() => makeCharacter(
  30849. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30850. {
  30851. front: {
  30852. height: math.unit(6, "feet"),
  30853. weight: math.unit(150, "lb"),
  30854. name: "Front",
  30855. image: {
  30856. source: "./media/characters/en/front.svg",
  30857. extra: 1697 / 1563,
  30858. bottom: 103 / 1800
  30859. }
  30860. },
  30861. back: {
  30862. height: math.unit(6, "feet"),
  30863. weight: math.unit(150, "lb"),
  30864. name: "Back",
  30865. image: {
  30866. source: "./media/characters/en/back.svg",
  30867. extra: 1700 / 1570,
  30868. bottom: 51 / 1751
  30869. }
  30870. },
  30871. frontDressed: {
  30872. height: math.unit(6, "feet"),
  30873. weight: math.unit(150, "lb"),
  30874. name: "Front (Dressed)",
  30875. image: {
  30876. source: "./media/characters/en/front-dressed.svg",
  30877. extra: 1697 / 1563,
  30878. bottom: 103 / 1800
  30879. }
  30880. },
  30881. backDressed: {
  30882. height: math.unit(6, "feet"),
  30883. weight: math.unit(150, "lb"),
  30884. name: "Back (Dressed)",
  30885. image: {
  30886. source: "./media/characters/en/back-dressed.svg",
  30887. extra: 1700 / 1570,
  30888. bottom: 51 / 1751
  30889. }
  30890. },
  30891. },
  30892. [
  30893. {
  30894. name: "Macro",
  30895. height: math.unit(210, "feet"),
  30896. default: true
  30897. },
  30898. ]
  30899. ))
  30900. characterMakers.push(() => makeCharacter(
  30901. { name: "Haze Orris", species: ["cat", "undead"], 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/haze-orris/front.svg",
  30909. extra: 3975 / 3525,
  30910. bottom: 137 / 4112
  30911. }
  30912. },
  30913. },
  30914. [
  30915. {
  30916. name: "Micro",
  30917. height: math.unit(150, "mm"),
  30918. default: true
  30919. },
  30920. ]
  30921. ))
  30922. characterMakers.push(() => makeCharacter(
  30923. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30924. {
  30925. front: {
  30926. height: math.unit(6, "feet"),
  30927. weight: math.unit(150, "lb"),
  30928. name: "Front",
  30929. image: {
  30930. source: "./media/characters/casselene-yaro/front.svg",
  30931. extra: 4721 / 4541,
  30932. bottom: 82 / 4803
  30933. }
  30934. },
  30935. back: {
  30936. height: math.unit(6, "feet"),
  30937. weight: math.unit(150, "lb"),
  30938. name: "Back",
  30939. image: {
  30940. source: "./media/characters/casselene-yaro/back.svg",
  30941. extra: 4569 / 4377,
  30942. bottom: 69 / 4638
  30943. }
  30944. },
  30945. dressed: {
  30946. height: math.unit(6, "feet"),
  30947. weight: math.unit(150, "lb"),
  30948. name: "Dressed",
  30949. image: {
  30950. source: "./media/characters/casselene-yaro/dressed.svg",
  30951. extra: 4721 / 4541,
  30952. bottom: 82 / 4803
  30953. }
  30954. },
  30955. maw: {
  30956. height: math.unit(1, "feet"),
  30957. name: "Maw",
  30958. image: {
  30959. source: "./media/characters/casselene-yaro/maw.svg"
  30960. }
  30961. },
  30962. },
  30963. [
  30964. {
  30965. name: "Macro",
  30966. height: math.unit(190, "feet"),
  30967. default: true
  30968. },
  30969. ]
  30970. ))
  30971. characterMakers.push(() => makeCharacter(
  30972. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30973. {
  30974. front: {
  30975. height: math.unit(10, "feet"),
  30976. weight: math.unit(15015, "lb"),
  30977. name: "Front",
  30978. image: {
  30979. source: "./media/characters/platine/front.svg",
  30980. extra: 1741/1650,
  30981. bottom: 84/1825
  30982. }
  30983. },
  30984. side: {
  30985. height: math.unit(10, "feet"),
  30986. weight: math.unit(15015, "lb"),
  30987. name: "Side",
  30988. image: {
  30989. source: "./media/characters/platine/side.svg",
  30990. extra: 1790/1705,
  30991. bottom: 29/1819
  30992. }
  30993. },
  30994. },
  30995. [
  30996. {
  30997. name: "Normal",
  30998. height: math.unit(10, "feet"),
  30999. default: true
  31000. },
  31001. {
  31002. name: "Macro",
  31003. height: math.unit(100, "feet")
  31004. },
  31005. {
  31006. name: "Megamacro",
  31007. height: math.unit(1000, "feet")
  31008. },
  31009. ]
  31010. ))
  31011. characterMakers.push(() => makeCharacter(
  31012. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31013. {
  31014. front: {
  31015. height: math.unit(15 + 5 / 12, "feet"),
  31016. weight: math.unit(4600, "lb"),
  31017. name: "Front",
  31018. image: {
  31019. source: "./media/characters/neapolitan-ananassa/front.svg",
  31020. extra: 2903 / 2736,
  31021. bottom: 0 / 2903
  31022. }
  31023. },
  31024. side: {
  31025. height: math.unit(15 + 5 / 12, "feet"),
  31026. weight: math.unit(4600, "lb"),
  31027. name: "Side",
  31028. image: {
  31029. source: "./media/characters/neapolitan-ananassa/side.svg",
  31030. extra: 2925 / 2719,
  31031. bottom: 0 / 2925
  31032. }
  31033. },
  31034. back: {
  31035. height: math.unit(15 + 5 / 12, "feet"),
  31036. weight: math.unit(4600, "lb"),
  31037. name: "Back",
  31038. image: {
  31039. source: "./media/characters/neapolitan-ananassa/back.svg",
  31040. extra: 2903 / 2736,
  31041. bottom: 0 / 2903
  31042. }
  31043. },
  31044. },
  31045. [
  31046. {
  31047. name: "Normal",
  31048. height: math.unit(15 + 5 / 12, "feet"),
  31049. default: true
  31050. },
  31051. {
  31052. name: "Post-Millenium",
  31053. height: math.unit(35 + 5 / 12, "feet")
  31054. },
  31055. {
  31056. name: "Post-Era",
  31057. height: math.unit(450 + 5 / 12, "feet")
  31058. },
  31059. ]
  31060. ))
  31061. characterMakers.push(() => makeCharacter(
  31062. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31063. {
  31064. front: {
  31065. height: math.unit(300, "meters"),
  31066. weight: math.unit(125000, "tonnes"),
  31067. name: "Front",
  31068. image: {
  31069. source: "./media/characters/pazuzu/front.svg",
  31070. extra: 877 / 794,
  31071. bottom: 47 / 924
  31072. }
  31073. },
  31074. },
  31075. [
  31076. {
  31077. name: "Macro",
  31078. height: math.unit(300, "meters"),
  31079. default: true
  31080. },
  31081. ]
  31082. ))
  31083. characterMakers.push(() => makeCharacter(
  31084. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31085. {
  31086. side: {
  31087. height: math.unit(10 + 7 / 12, "feet"),
  31088. weight: math.unit(2.5, "tons"),
  31089. name: "Side",
  31090. image: {
  31091. source: "./media/characters/aasha/side.svg",
  31092. extra: 1345 / 1245,
  31093. bottom: 111 / 1456
  31094. }
  31095. },
  31096. back: {
  31097. height: math.unit(10 + 7 / 12, "feet"),
  31098. weight: math.unit(2.5, "tons"),
  31099. name: "Back",
  31100. image: {
  31101. source: "./media/characters/aasha/back.svg",
  31102. extra: 1133 / 1057,
  31103. bottom: 257 / 1390
  31104. }
  31105. },
  31106. },
  31107. [
  31108. {
  31109. name: "Normal",
  31110. height: math.unit(10 + 7 / 12, "feet"),
  31111. default: true
  31112. },
  31113. ]
  31114. ))
  31115. characterMakers.push(() => makeCharacter(
  31116. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31117. {
  31118. front: {
  31119. height: math.unit(6 + 3 / 12, "feet"),
  31120. name: "Front",
  31121. image: {
  31122. source: "./media/characters/nevan/front.svg",
  31123. extra: 704 / 704,
  31124. bottom: 28 / 732
  31125. }
  31126. },
  31127. back: {
  31128. height: math.unit(6 + 3 / 12, "feet"),
  31129. name: "Back",
  31130. image: {
  31131. source: "./media/characters/nevan/back.svg",
  31132. extra: 714 / 714,
  31133. bottom: 21 / 735
  31134. }
  31135. },
  31136. frontFlaccid: {
  31137. height: math.unit(6 + 3 / 12, "feet"),
  31138. name: "Front (Flaccid)",
  31139. image: {
  31140. source: "./media/characters/nevan/front-flaccid.svg",
  31141. extra: 704 / 704,
  31142. bottom: 28 / 732
  31143. }
  31144. },
  31145. frontErect: {
  31146. height: math.unit(6 + 3 / 12, "feet"),
  31147. name: "Front (Erect)",
  31148. image: {
  31149. source: "./media/characters/nevan/front-erect.svg",
  31150. extra: 704 / 704,
  31151. bottom: 28 / 732
  31152. }
  31153. },
  31154. backFlaccid: {
  31155. height: math.unit(6 + 3 / 12, "feet"),
  31156. name: "Back (Flaccid)",
  31157. image: {
  31158. source: "./media/characters/nevan/back-flaccid.svg",
  31159. extra: 714 / 714,
  31160. bottom: 21 / 735
  31161. }
  31162. },
  31163. },
  31164. [
  31165. {
  31166. name: "Normal",
  31167. height: math.unit(6 + 3 / 12, "feet"),
  31168. default: true
  31169. },
  31170. ]
  31171. ))
  31172. characterMakers.push(() => makeCharacter(
  31173. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31174. {
  31175. front: {
  31176. height: math.unit(4, "feet"),
  31177. name: "Front",
  31178. image: {
  31179. source: "./media/characters/arhan/front.svg",
  31180. extra: 3368 / 3133,
  31181. bottom: 0 / 3368
  31182. }
  31183. },
  31184. side: {
  31185. height: math.unit(4, "feet"),
  31186. name: "Side",
  31187. image: {
  31188. source: "./media/characters/arhan/side.svg",
  31189. extra: 3347 / 3105,
  31190. bottom: 0 / 3347
  31191. }
  31192. },
  31193. tongue: {
  31194. height: math.unit(1.42, "feet"),
  31195. name: "Tongue",
  31196. image: {
  31197. source: "./media/characters/arhan/tongue.svg"
  31198. }
  31199. },
  31200. head: {
  31201. height: math.unit(0.85, "feet"),
  31202. name: "Head",
  31203. image: {
  31204. source: "./media/characters/arhan/head.svg"
  31205. }
  31206. },
  31207. },
  31208. [
  31209. {
  31210. name: "Normal",
  31211. height: math.unit(4, "feet"),
  31212. default: true
  31213. },
  31214. ]
  31215. ))
  31216. characterMakers.push(() => makeCharacter(
  31217. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31218. {
  31219. front: {
  31220. height: math.unit(5 + 7.5 / 12, "feet"),
  31221. weight: math.unit(120, "lb"),
  31222. name: "Front",
  31223. image: {
  31224. source: "./media/characters/digi-duncan/front.svg",
  31225. extra: 330 / 326,
  31226. bottom: 16 / 346
  31227. }
  31228. },
  31229. side: {
  31230. height: math.unit(5 + 7.5 / 12, "feet"),
  31231. weight: math.unit(120, "lb"),
  31232. name: "Side",
  31233. image: {
  31234. source: "./media/characters/digi-duncan/side.svg",
  31235. extra: 341 / 337,
  31236. bottom: 1 / 342
  31237. }
  31238. },
  31239. back: {
  31240. height: math.unit(5 + 7.5 / 12, "feet"),
  31241. weight: math.unit(120, "lb"),
  31242. name: "Back",
  31243. image: {
  31244. source: "./media/characters/digi-duncan/back.svg",
  31245. extra: 330 / 326,
  31246. bottom: 12 / 342
  31247. }
  31248. },
  31249. },
  31250. [
  31251. {
  31252. name: "Speck",
  31253. height: math.unit(0.25, "mm")
  31254. },
  31255. {
  31256. name: "Micro",
  31257. height: math.unit(5, "mm")
  31258. },
  31259. {
  31260. name: "Tiny",
  31261. height: math.unit(0.5, "inches"),
  31262. default: true
  31263. },
  31264. {
  31265. name: "Human",
  31266. height: math.unit(5 + 7.5 / 12, "feet")
  31267. },
  31268. {
  31269. name: "Minigiant",
  31270. height: math.unit(8 + 5.25, "feet")
  31271. },
  31272. {
  31273. name: "Giant",
  31274. height: math.unit(2000, "feet")
  31275. },
  31276. {
  31277. name: "Mega",
  31278. height: math.unit(371.1, "miles")
  31279. },
  31280. ]
  31281. ))
  31282. characterMakers.push(() => makeCharacter(
  31283. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31284. {
  31285. front: {
  31286. height: math.unit(2, "meters"),
  31287. weight: math.unit(350, "kg"),
  31288. name: "Front",
  31289. image: {
  31290. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31291. extra: 898 / 838,
  31292. bottom: 9 / 907
  31293. }
  31294. },
  31295. },
  31296. [
  31297. {
  31298. name: "Micro",
  31299. height: math.unit(8, "meters")
  31300. },
  31301. {
  31302. name: "Normal",
  31303. height: math.unit(50, "meters"),
  31304. default: true
  31305. },
  31306. {
  31307. name: "Macro",
  31308. height: math.unit(500, "meters")
  31309. },
  31310. ]
  31311. ))
  31312. characterMakers.push(() => makeCharacter(
  31313. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31314. {
  31315. front: {
  31316. height: math.unit(6 + 6 / 12, "feet"),
  31317. name: "Front",
  31318. image: {
  31319. source: "./media/characters/khardesh/front.svg",
  31320. extra: 1788/1596,
  31321. bottom: 66/1854
  31322. }
  31323. },
  31324. back: {
  31325. height: math.unit(6 + 6 / 12, "feet"),
  31326. name: "Back",
  31327. image: {
  31328. source: "./media/characters/khardesh/back.svg",
  31329. extra: 1781/1584,
  31330. bottom: 68/1849
  31331. }
  31332. },
  31333. },
  31334. [
  31335. {
  31336. name: "Normal",
  31337. height: math.unit(6 + 6 / 12, "feet"),
  31338. default: true
  31339. },
  31340. {
  31341. name: "Normal+",
  31342. height: math.unit(4, "meters")
  31343. },
  31344. {
  31345. name: "Macro",
  31346. height: math.unit(50, "meters")
  31347. },
  31348. {
  31349. name: "Macro+",
  31350. height: math.unit(100, "meters")
  31351. },
  31352. {
  31353. name: "Megamacro",
  31354. height: math.unit(20, "km")
  31355. },
  31356. ]
  31357. ))
  31358. characterMakers.push(() => makeCharacter(
  31359. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31360. {
  31361. front: {
  31362. height: math.unit(6, "feet"),
  31363. weight: math.unit(150, "lb"),
  31364. name: "Front",
  31365. image: {
  31366. source: "./media/characters/kosho/front.svg",
  31367. extra: 1847 / 1847,
  31368. bottom: 86 / 1933
  31369. }
  31370. },
  31371. },
  31372. [
  31373. {
  31374. name: "Second-stage micro",
  31375. height: math.unit(0.5, "inches")
  31376. },
  31377. {
  31378. name: "First-stage micro",
  31379. height: math.unit(6, "inches")
  31380. },
  31381. {
  31382. name: "Normal",
  31383. height: math.unit(6, "feet"),
  31384. default: true
  31385. },
  31386. {
  31387. name: "First-stage macro",
  31388. height: math.unit(72, "feet")
  31389. },
  31390. {
  31391. name: "Second-stage macro",
  31392. height: math.unit(864, "feet")
  31393. },
  31394. ]
  31395. ))
  31396. characterMakers.push(() => makeCharacter(
  31397. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31398. {
  31399. normal: {
  31400. height: math.unit(4 + 6 / 12, "feet"),
  31401. name: "Normal",
  31402. image: {
  31403. source: "./media/characters/hydra/normal.svg",
  31404. extra: 2833 / 2634,
  31405. bottom: 68 / 2901
  31406. }
  31407. },
  31408. smol: {
  31409. height: math.unit(0.705, "inches"),
  31410. name: "Smol",
  31411. image: {
  31412. source: "./media/characters/hydra/smol.svg",
  31413. extra: 2715 / 2540,
  31414. bottom: 0 / 2715
  31415. }
  31416. },
  31417. },
  31418. [
  31419. {
  31420. name: "Normal",
  31421. height: math.unit(4 + 6 / 12, "feet"),
  31422. default: true
  31423. }
  31424. ]
  31425. ))
  31426. characterMakers.push(() => makeCharacter(
  31427. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31428. {
  31429. front: {
  31430. height: math.unit(0.6, "cm"),
  31431. name: "Front",
  31432. image: {
  31433. source: "./media/characters/daz/front.svg",
  31434. extra: 1682 / 1164,
  31435. bottom: 42 / 1724
  31436. }
  31437. },
  31438. },
  31439. [
  31440. {
  31441. name: "Normal",
  31442. height: math.unit(0.6, "cm"),
  31443. default: true
  31444. },
  31445. ]
  31446. ))
  31447. characterMakers.push(() => makeCharacter(
  31448. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31449. {
  31450. front: {
  31451. height: math.unit(6, "feet"),
  31452. weight: math.unit(235, "lb"),
  31453. name: "Front",
  31454. image: {
  31455. source: "./media/characters/theo-pangolin/front.svg",
  31456. extra: 1996 / 1969,
  31457. bottom: 115 / 2111
  31458. }
  31459. },
  31460. back: {
  31461. height: math.unit(6, "feet"),
  31462. weight: math.unit(235, "lb"),
  31463. name: "Back",
  31464. image: {
  31465. source: "./media/characters/theo-pangolin/back.svg",
  31466. extra: 1979 / 1979,
  31467. bottom: 40 / 2019
  31468. }
  31469. },
  31470. feral: {
  31471. height: math.unit(2, "feet"),
  31472. weight: math.unit(30, "lb"),
  31473. name: "Feral",
  31474. image: {
  31475. source: "./media/characters/theo-pangolin/feral.svg",
  31476. extra: 803 / 791,
  31477. bottom: 181 / 984
  31478. }
  31479. },
  31480. footFive: {
  31481. height: math.unit(1.43, "feet"),
  31482. name: "Foot (Five Toes)",
  31483. image: {
  31484. source: "./media/characters/theo-pangolin/foot-five.svg"
  31485. }
  31486. },
  31487. footFour: {
  31488. height: math.unit(1.43, "feet"),
  31489. name: "Foot (Four Toes)",
  31490. image: {
  31491. source: "./media/characters/theo-pangolin/foot-four.svg"
  31492. }
  31493. },
  31494. handFour: {
  31495. height: math.unit(0.81, "feet"),
  31496. name: "Hand (Four Fingers)",
  31497. image: {
  31498. source: "./media/characters/theo-pangolin/hand-four.svg"
  31499. }
  31500. },
  31501. handThree: {
  31502. height: math.unit(0.81, "feet"),
  31503. name: "Hand (Three Fingers)",
  31504. image: {
  31505. source: "./media/characters/theo-pangolin/hand-three.svg"
  31506. }
  31507. },
  31508. headFront: {
  31509. height: math.unit(1.37, "feet"),
  31510. name: "Head (Front)",
  31511. image: {
  31512. source: "./media/characters/theo-pangolin/head-front.svg"
  31513. }
  31514. },
  31515. headSide: {
  31516. height: math.unit(1.43, "feet"),
  31517. name: "Head (Side)",
  31518. image: {
  31519. source: "./media/characters/theo-pangolin/head-side.svg"
  31520. }
  31521. },
  31522. tongue: {
  31523. height: math.unit(2.29, "feet"),
  31524. name: "Tongue",
  31525. image: {
  31526. source: "./media/characters/theo-pangolin/tongue.svg"
  31527. }
  31528. },
  31529. },
  31530. [
  31531. {
  31532. name: "Normal",
  31533. height: math.unit(6, "feet")
  31534. },
  31535. {
  31536. name: "Macro",
  31537. height: math.unit(400, "feet"),
  31538. default: true
  31539. },
  31540. ]
  31541. ))
  31542. characterMakers.push(() => makeCharacter(
  31543. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31544. {
  31545. front: {
  31546. height: math.unit(6, "inches"),
  31547. weight: math.unit(0.036, "kg"),
  31548. name: "Front",
  31549. image: {
  31550. source: "./media/characters/renée/front.svg",
  31551. extra: 900 / 886,
  31552. bottom: 8 / 908
  31553. }
  31554. },
  31555. },
  31556. [
  31557. {
  31558. name: "Nano",
  31559. height: math.unit(1, "nm")
  31560. },
  31561. {
  31562. name: "Micro",
  31563. height: math.unit(1, "mm")
  31564. },
  31565. {
  31566. name: "Normal",
  31567. height: math.unit(6, "inches")
  31568. },
  31569. {
  31570. name: "Macro",
  31571. height: math.unit(2000, "feet"),
  31572. default: true
  31573. },
  31574. {
  31575. name: "Megamacro",
  31576. height: math.unit(2, "km")
  31577. },
  31578. {
  31579. name: "Gigamacro",
  31580. height: math.unit(2000, "km")
  31581. },
  31582. {
  31583. name: "Teramacro",
  31584. height: math.unit(250000, "km")
  31585. },
  31586. ]
  31587. ))
  31588. characterMakers.push(() => makeCharacter(
  31589. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31590. {
  31591. front: {
  31592. height: math.unit(4, "meters"),
  31593. weight: math.unit(150, "kg"),
  31594. name: "Front",
  31595. image: {
  31596. source: "./media/characters/caledvwlch/front.svg",
  31597. extra: 1760 / 1551,
  31598. bottom: 28 / 1788
  31599. }
  31600. },
  31601. side: {
  31602. height: math.unit(4, "meters"),
  31603. weight: math.unit(150, "kg"),
  31604. name: "Side",
  31605. image: {
  31606. source: "./media/characters/caledvwlch/side.svg",
  31607. extra: 1605 / 1536,
  31608. bottom: 31 / 1636
  31609. }
  31610. },
  31611. back: {
  31612. height: math.unit(4, "meters"),
  31613. weight: math.unit(150, "kg"),
  31614. name: "Back",
  31615. image: {
  31616. source: "./media/characters/caledvwlch/back.svg",
  31617. extra: 1635 / 1565,
  31618. bottom: 27 / 1662
  31619. }
  31620. },
  31621. },
  31622. [
  31623. {
  31624. name: "\"Incognito\"",
  31625. height: math.unit(4, "meters")
  31626. },
  31627. {
  31628. name: "Small rampage",
  31629. height: math.unit(600, "meters")
  31630. },
  31631. {
  31632. name: "Mega",
  31633. height: math.unit(30, "km")
  31634. },
  31635. {
  31636. name: "Home-size",
  31637. height: math.unit(50, "km"),
  31638. default: true
  31639. },
  31640. {
  31641. name: "Giga",
  31642. height: math.unit(300, "km")
  31643. },
  31644. {
  31645. name: "Lounging",
  31646. height: math.unit(11000, "km")
  31647. },
  31648. {
  31649. name: "Planet snacking",
  31650. height: math.unit(2000000, "km")
  31651. },
  31652. ]
  31653. ))
  31654. characterMakers.push(() => makeCharacter(
  31655. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31656. {
  31657. front: {
  31658. height: math.unit(6, "feet"),
  31659. weight: math.unit(215, "lb"),
  31660. name: "Front",
  31661. image: {
  31662. source: "./media/characters/sapphire-svell/front.svg",
  31663. extra: 495 / 455,
  31664. bottom: 20 / 515
  31665. }
  31666. },
  31667. back: {
  31668. height: math.unit(6, "feet"),
  31669. weight: math.unit(216, "lb"),
  31670. name: "Back",
  31671. image: {
  31672. source: "./media/characters/sapphire-svell/back.svg",
  31673. extra: 497 / 477,
  31674. bottom: 7 / 504
  31675. }
  31676. },
  31677. maw: {
  31678. height: math.unit(1.57, "feet"),
  31679. name: "Maw",
  31680. image: {
  31681. source: "./media/characters/sapphire-svell/maw.svg"
  31682. }
  31683. },
  31684. foot: {
  31685. height: math.unit(1.07, "feet"),
  31686. name: "Foot",
  31687. image: {
  31688. source: "./media/characters/sapphire-svell/foot.svg"
  31689. }
  31690. },
  31691. toering: {
  31692. height: math.unit(1.7, "inch"),
  31693. name: "Toering",
  31694. image: {
  31695. source: "./media/characters/sapphire-svell/toering.svg"
  31696. }
  31697. },
  31698. },
  31699. [
  31700. {
  31701. name: "Normal",
  31702. height: math.unit(300, "feet"),
  31703. default: true
  31704. },
  31705. {
  31706. name: "Augmented",
  31707. height: math.unit(1250, "feet")
  31708. },
  31709. {
  31710. name: "Unleashed",
  31711. height: math.unit(3000, "feet")
  31712. },
  31713. ]
  31714. ))
  31715. characterMakers.push(() => makeCharacter(
  31716. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31717. {
  31718. side: {
  31719. height: math.unit(2 + 3 / 12, "feet"),
  31720. weight: math.unit(110, "lb"),
  31721. name: "Side",
  31722. image: {
  31723. source: "./media/characters/glitch-flux/side.svg",
  31724. extra: 997 / 805,
  31725. bottom: 20 / 1017
  31726. }
  31727. },
  31728. },
  31729. [
  31730. {
  31731. name: "Normal",
  31732. height: math.unit(2 + 3 / 12, "feet"),
  31733. default: true
  31734. },
  31735. ]
  31736. ))
  31737. characterMakers.push(() => makeCharacter(
  31738. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31739. {
  31740. front: {
  31741. height: math.unit(4, "meters"),
  31742. name: "Front",
  31743. image: {
  31744. source: "./media/characters/mid/front.svg",
  31745. extra: 507 / 476,
  31746. bottom: 17 / 524
  31747. }
  31748. },
  31749. back: {
  31750. height: math.unit(4, "meters"),
  31751. name: "Back",
  31752. image: {
  31753. source: "./media/characters/mid/back.svg",
  31754. extra: 519 / 487,
  31755. bottom: 7 / 526
  31756. }
  31757. },
  31758. stuck: {
  31759. height: math.unit(2.2, "meters"),
  31760. name: "Stuck",
  31761. image: {
  31762. source: "./media/characters/mid/stuck.svg",
  31763. extra: 1951 / 1869,
  31764. bottom: 88 / 2039
  31765. }
  31766. }
  31767. },
  31768. [
  31769. {
  31770. name: "Normal",
  31771. height: math.unit(4, "meters"),
  31772. default: true
  31773. },
  31774. {
  31775. name: "Big",
  31776. height: math.unit(10, "meters")
  31777. },
  31778. {
  31779. name: "Macro",
  31780. height: math.unit(800, "meters")
  31781. },
  31782. {
  31783. name: "Megamacro",
  31784. height: math.unit(100, "km")
  31785. },
  31786. {
  31787. name: "Overgrown",
  31788. height: math.unit(1, "parsec")
  31789. },
  31790. ]
  31791. ))
  31792. characterMakers.push(() => makeCharacter(
  31793. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31794. {
  31795. front: {
  31796. height: math.unit(2.5, "meters"),
  31797. weight: math.unit(225, "kg"),
  31798. name: "Front",
  31799. image: {
  31800. source: "./media/characters/iris/front.svg",
  31801. extra: 3348 / 3251,
  31802. bottom: 205 / 3553
  31803. }
  31804. },
  31805. maw: {
  31806. height: math.unit(0.56, "meter"),
  31807. name: "Maw",
  31808. image: {
  31809. source: "./media/characters/iris/maw.svg"
  31810. }
  31811. },
  31812. },
  31813. [
  31814. {
  31815. name: "Mewter cat",
  31816. height: math.unit(1.2, "meters")
  31817. },
  31818. {
  31819. name: "Normal",
  31820. height: math.unit(2.5, "meters"),
  31821. default: true
  31822. },
  31823. {
  31824. name: "Minimacro",
  31825. height: math.unit(18, "feet")
  31826. },
  31827. {
  31828. name: "Macro",
  31829. height: math.unit(140, "feet")
  31830. },
  31831. {
  31832. name: "Macro+",
  31833. height: math.unit(180, "meters")
  31834. },
  31835. {
  31836. name: "Megamacro",
  31837. height: math.unit(2746, "meters")
  31838. },
  31839. ]
  31840. ))
  31841. characterMakers.push(() => makeCharacter(
  31842. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31843. {
  31844. front: {
  31845. height: math.unit(6, "feet"),
  31846. weight: math.unit(135, "lb"),
  31847. name: "Front",
  31848. image: {
  31849. source: "./media/characters/axel/front.svg",
  31850. extra: 908 / 908,
  31851. bottom: 58 / 966
  31852. }
  31853. },
  31854. side: {
  31855. height: math.unit(6, "feet"),
  31856. weight: math.unit(135, "lb"),
  31857. name: "Side",
  31858. image: {
  31859. source: "./media/characters/axel/side.svg",
  31860. extra: 958 / 958,
  31861. bottom: 11 / 969
  31862. }
  31863. },
  31864. back: {
  31865. height: math.unit(6, "feet"),
  31866. weight: math.unit(135, "lb"),
  31867. name: "Back",
  31868. image: {
  31869. source: "./media/characters/axel/back.svg",
  31870. extra: 887 / 887,
  31871. bottom: 34 / 921
  31872. }
  31873. },
  31874. head: {
  31875. height: math.unit(1.07, "feet"),
  31876. name: "Head",
  31877. image: {
  31878. source: "./media/characters/axel/head.svg"
  31879. }
  31880. },
  31881. beak: {
  31882. height: math.unit(1.4, "feet"),
  31883. name: "Beak",
  31884. image: {
  31885. source: "./media/characters/axel/beak.svg"
  31886. }
  31887. },
  31888. beakSide: {
  31889. height: math.unit(1.4, "feet"),
  31890. name: "Beak Side",
  31891. image: {
  31892. source: "./media/characters/axel/beak-side.svg"
  31893. }
  31894. },
  31895. sheath: {
  31896. height: math.unit(0.5, "feet"),
  31897. name: "Sheath",
  31898. image: {
  31899. source: "./media/characters/axel/sheath.svg"
  31900. }
  31901. },
  31902. dick: {
  31903. height: math.unit(0.98, "feet"),
  31904. name: "Dick",
  31905. image: {
  31906. source: "./media/characters/axel/dick.svg"
  31907. }
  31908. },
  31909. },
  31910. [
  31911. {
  31912. name: "Macro",
  31913. height: math.unit(68, "meters"),
  31914. default: true
  31915. },
  31916. ]
  31917. ))
  31918. characterMakers.push(() => makeCharacter(
  31919. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31920. {
  31921. front: {
  31922. height: math.unit(3.5, "meters"),
  31923. weight: math.unit(1200, "kg"),
  31924. name: "Front",
  31925. image: {
  31926. source: "./media/characters/joanna/front.svg",
  31927. extra: 1596 / 1488,
  31928. bottom: 29 / 1625
  31929. }
  31930. },
  31931. back: {
  31932. height: math.unit(3.5, "meters"),
  31933. weight: math.unit(1200, "kg"),
  31934. name: "Back",
  31935. image: {
  31936. source: "./media/characters/joanna/back.svg",
  31937. extra: 1594 / 1495,
  31938. bottom: 26 / 1620
  31939. }
  31940. },
  31941. frontShorts: {
  31942. height: math.unit(3.5, "meters"),
  31943. weight: math.unit(1200, "kg"),
  31944. name: "Front (Shorts)",
  31945. image: {
  31946. source: "./media/characters/joanna/front-shorts.svg",
  31947. extra: 1596 / 1488,
  31948. bottom: 29 / 1625
  31949. }
  31950. },
  31951. frontBiker: {
  31952. height: math.unit(3.5, "meters"),
  31953. weight: math.unit(1200, "kg"),
  31954. name: "Front (Biker)",
  31955. image: {
  31956. source: "./media/characters/joanna/front-biker.svg",
  31957. extra: 1596 / 1488,
  31958. bottom: 29 / 1625
  31959. }
  31960. },
  31961. backBiker: {
  31962. height: math.unit(3.5, "meters"),
  31963. weight: math.unit(1200, "kg"),
  31964. name: "Back (Biker)",
  31965. image: {
  31966. source: "./media/characters/joanna/back-biker.svg",
  31967. extra: 1594 / 1495,
  31968. bottom: 88 / 1682
  31969. }
  31970. },
  31971. bikeLeft: {
  31972. height: math.unit(2.4, "meters"),
  31973. weight: math.unit(1600, "kg"),
  31974. name: "Bike (Left)",
  31975. image: {
  31976. source: "./media/characters/joanna/bike-left.svg",
  31977. extra: 720 / 720,
  31978. bottom: 8 / 728
  31979. }
  31980. },
  31981. bikeRight: {
  31982. height: math.unit(2.4, "meters"),
  31983. weight: math.unit(1600, "kg"),
  31984. name: "Bike (Right)",
  31985. image: {
  31986. source: "./media/characters/joanna/bike-right.svg",
  31987. extra: 720 / 720,
  31988. bottom: 8 / 728
  31989. }
  31990. },
  31991. },
  31992. [
  31993. {
  31994. name: "Incognito",
  31995. height: math.unit(3.5, "meters")
  31996. },
  31997. {
  31998. name: "Casual Big",
  31999. height: math.unit(200, "meters")
  32000. },
  32001. {
  32002. name: "Macro",
  32003. height: math.unit(600, "meters")
  32004. },
  32005. {
  32006. name: "Original",
  32007. height: math.unit(20, "km"),
  32008. default: true
  32009. },
  32010. {
  32011. name: "Giga",
  32012. height: math.unit(400, "km")
  32013. },
  32014. {
  32015. name: "Lounging",
  32016. height: math.unit(1500, "km")
  32017. },
  32018. {
  32019. name: "Planetary",
  32020. height: math.unit(200000, "km")
  32021. },
  32022. ]
  32023. ))
  32024. characterMakers.push(() => makeCharacter(
  32025. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32026. {
  32027. front: {
  32028. height: math.unit(6, "feet"),
  32029. weight: math.unit(150, "lb"),
  32030. name: "Front",
  32031. image: {
  32032. source: "./media/characters/hugo-sigil/front.svg",
  32033. extra: 522 / 500,
  32034. bottom: 2 / 524
  32035. }
  32036. },
  32037. back: {
  32038. height: math.unit(6, "feet"),
  32039. weight: math.unit(150, "lb"),
  32040. name: "Back",
  32041. image: {
  32042. source: "./media/characters/hugo-sigil/back.svg",
  32043. extra: 519 / 495,
  32044. bottom: 5 / 524
  32045. }
  32046. },
  32047. maw: {
  32048. height: math.unit(1.4, "feet"),
  32049. weight: math.unit(150, "lb"),
  32050. name: "Maw",
  32051. image: {
  32052. source: "./media/characters/hugo-sigil/maw.svg"
  32053. }
  32054. },
  32055. feet: {
  32056. height: math.unit(1.56, "feet"),
  32057. weight: math.unit(150, "lb"),
  32058. name: "Feet",
  32059. image: {
  32060. source: "./media/characters/hugo-sigil/feet.svg",
  32061. extra: 177 / 177,
  32062. bottom: 12 / 189
  32063. }
  32064. },
  32065. },
  32066. [
  32067. {
  32068. name: "Normal",
  32069. height: math.unit(6, "feet")
  32070. },
  32071. {
  32072. name: "Macro",
  32073. height: math.unit(200, "feet"),
  32074. default: true
  32075. },
  32076. ]
  32077. ))
  32078. characterMakers.push(() => makeCharacter(
  32079. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32080. {
  32081. front: {
  32082. height: math.unit(6, "feet"),
  32083. weight: math.unit(150, "lb"),
  32084. name: "Front",
  32085. image: {
  32086. source: "./media/characters/peri/front.svg",
  32087. extra: 2354 / 2233,
  32088. bottom: 49 / 2403
  32089. }
  32090. },
  32091. },
  32092. [
  32093. {
  32094. name: "Really Small",
  32095. height: math.unit(1, "nm")
  32096. },
  32097. {
  32098. name: "Micro",
  32099. height: math.unit(4, "inches")
  32100. },
  32101. {
  32102. name: "Normal",
  32103. height: math.unit(7, "inches"),
  32104. default: true
  32105. },
  32106. {
  32107. name: "Macro",
  32108. height: math.unit(400, "feet")
  32109. },
  32110. {
  32111. name: "Megamacro",
  32112. height: math.unit(100, "miles")
  32113. },
  32114. ]
  32115. ))
  32116. characterMakers.push(() => makeCharacter(
  32117. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32118. {
  32119. frontSlim: {
  32120. height: math.unit(7, "feet"),
  32121. name: "Front (Slim)",
  32122. image: {
  32123. source: "./media/characters/issilora/front-slim.svg",
  32124. extra: 529 / 449,
  32125. bottom: 53 / 582
  32126. }
  32127. },
  32128. sideSlim: {
  32129. height: math.unit(7, "feet"),
  32130. name: "Side (Slim)",
  32131. image: {
  32132. source: "./media/characters/issilora/side-slim.svg",
  32133. extra: 570 / 480,
  32134. bottom: 30 / 600
  32135. }
  32136. },
  32137. backSlim: {
  32138. height: math.unit(7, "feet"),
  32139. name: "Back (Slim)",
  32140. image: {
  32141. source: "./media/characters/issilora/back-slim.svg",
  32142. extra: 537 / 455,
  32143. bottom: 46 / 583
  32144. }
  32145. },
  32146. frontBuff: {
  32147. height: math.unit(7, "feet"),
  32148. name: "Front (Buff)",
  32149. image: {
  32150. source: "./media/characters/issilora/front-buff.svg",
  32151. extra: 2310 / 2035,
  32152. bottom: 335 / 2645
  32153. }
  32154. },
  32155. head: {
  32156. height: math.unit(1.94, "feet"),
  32157. name: "Head",
  32158. image: {
  32159. source: "./media/characters/issilora/head.svg"
  32160. }
  32161. },
  32162. },
  32163. [
  32164. {
  32165. name: "Minimum",
  32166. height: math.unit(7, "feet")
  32167. },
  32168. {
  32169. name: "Comfortable",
  32170. height: math.unit(17, "feet")
  32171. },
  32172. {
  32173. name: "Fun Size",
  32174. height: math.unit(47, "feet")
  32175. },
  32176. {
  32177. name: "Natural Macro",
  32178. height: math.unit(137, "feet"),
  32179. default: true
  32180. },
  32181. {
  32182. name: "Maximum Kaiju",
  32183. height: math.unit(397, "feet")
  32184. },
  32185. ]
  32186. ))
  32187. characterMakers.push(() => makeCharacter(
  32188. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32189. {
  32190. front: {
  32191. height: math.unit(50 + 9/12, "feet"),
  32192. weight: math.unit(32.8, "tons"),
  32193. name: "Front",
  32194. image: {
  32195. source: "./media/characters/irb'iiritaahn/front.svg",
  32196. extra: 1878/1826,
  32197. bottom: 326/2204
  32198. }
  32199. },
  32200. back: {
  32201. height: math.unit(50 + 9/12, "feet"),
  32202. weight: math.unit(32.8, "tons"),
  32203. name: "Back",
  32204. image: {
  32205. source: "./media/characters/irb'iiritaahn/back.svg",
  32206. extra: 2052/2018,
  32207. bottom: 152/2204
  32208. }
  32209. },
  32210. head: {
  32211. height: math.unit(12.86, "feet"),
  32212. name: "Head",
  32213. image: {
  32214. source: "./media/characters/irb'iiritaahn/head.svg"
  32215. }
  32216. },
  32217. maw: {
  32218. height: math.unit(9.66, "feet"),
  32219. name: "Maw",
  32220. image: {
  32221. source: "./media/characters/irb'iiritaahn/maw.svg"
  32222. }
  32223. },
  32224. frontDick: {
  32225. height: math.unit(8.78461, "feet"),
  32226. name: "Front Dick",
  32227. image: {
  32228. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32229. }
  32230. },
  32231. rearDick: {
  32232. height: math.unit(8.78461, "feet"),
  32233. name: "Rear Dick",
  32234. image: {
  32235. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32236. }
  32237. },
  32238. rearDickUnfolded: {
  32239. height: math.unit(8.78, "feet"),
  32240. name: "Rear Dick (Unfolded)",
  32241. image: {
  32242. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32243. }
  32244. },
  32245. wings: {
  32246. height: math.unit(43, "feet"),
  32247. name: "Wings",
  32248. image: {
  32249. source: "./media/characters/irb'iiritaahn/wings.svg"
  32250. }
  32251. },
  32252. },
  32253. [
  32254. {
  32255. name: "Macro",
  32256. height: math.unit(50 + 9/12, "feet"),
  32257. default: true
  32258. },
  32259. ]
  32260. ))
  32261. characterMakers.push(() => makeCharacter(
  32262. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32263. {
  32264. front: {
  32265. height: math.unit(205, "cm"),
  32266. weight: math.unit(102, "kg"),
  32267. name: "Front",
  32268. image: {
  32269. source: "./media/characters/irbisgreif/front.svg",
  32270. extra: 785/706,
  32271. bottom: 13/798
  32272. }
  32273. },
  32274. back: {
  32275. height: math.unit(205, "cm"),
  32276. weight: math.unit(102, "kg"),
  32277. name: "Back",
  32278. image: {
  32279. source: "./media/characters/irbisgreif/back.svg",
  32280. extra: 713/701,
  32281. bottom: 26/739
  32282. }
  32283. },
  32284. frontDressed: {
  32285. height: math.unit(216, "cm"),
  32286. weight: math.unit(102, "kg"),
  32287. name: "Front-dressed",
  32288. image: {
  32289. source: "./media/characters/irbisgreif/front-dressed.svg",
  32290. extra: 902/776,
  32291. bottom: 14/916
  32292. }
  32293. },
  32294. sideDressed: {
  32295. height: math.unit(195, "cm"),
  32296. weight: math.unit(102, "kg"),
  32297. name: "Side-dressed",
  32298. image: {
  32299. source: "./media/characters/irbisgreif/side-dressed.svg",
  32300. extra: 788/688,
  32301. bottom: 21/809
  32302. }
  32303. },
  32304. backDressed: {
  32305. height: math.unit(216, "cm"),
  32306. weight: math.unit(102, "kg"),
  32307. name: "Back-dressed",
  32308. image: {
  32309. source: "./media/characters/irbisgreif/back-dressed.svg",
  32310. extra: 901/783,
  32311. bottom: 10/911
  32312. }
  32313. },
  32314. dick: {
  32315. height: math.unit(0.49, "feet"),
  32316. name: "Dick",
  32317. image: {
  32318. source: "./media/characters/irbisgreif/dick.svg"
  32319. }
  32320. },
  32321. wingTop: {
  32322. height: math.unit(1.93 , "feet"),
  32323. name: "Wing-top",
  32324. image: {
  32325. source: "./media/characters/irbisgreif/wing-top.svg"
  32326. }
  32327. },
  32328. wingBottom: {
  32329. height: math.unit(1.93 , "feet"),
  32330. name: "Wing-bottom",
  32331. image: {
  32332. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32333. }
  32334. },
  32335. },
  32336. [
  32337. {
  32338. name: "Normal",
  32339. height: math.unit(216, "cm"),
  32340. default: true
  32341. },
  32342. ]
  32343. ))
  32344. characterMakers.push(() => makeCharacter(
  32345. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32346. {
  32347. front: {
  32348. height: math.unit(6, "feet"),
  32349. weight: math.unit(150, "lb"),
  32350. name: "Front",
  32351. image: {
  32352. source: "./media/characters/pride/front.svg",
  32353. extra: 1299/1230,
  32354. bottom: 18/1317
  32355. }
  32356. },
  32357. },
  32358. [
  32359. {
  32360. name: "Normal",
  32361. height: math.unit(7, "feet")
  32362. },
  32363. {
  32364. name: "Mini-macro",
  32365. height: math.unit(11, "feet")
  32366. },
  32367. {
  32368. name: "Macro",
  32369. height: math.unit(15, "meters"),
  32370. default: true
  32371. },
  32372. {
  32373. name: "Macro+",
  32374. height: math.unit(40, "meters")
  32375. },
  32376. ]
  32377. ))
  32378. characterMakers.push(() => makeCharacter(
  32379. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32380. {
  32381. front: {
  32382. height: math.unit(4 + 2 / 12, "feet"),
  32383. weight: math.unit(95, "lb"),
  32384. name: "Front",
  32385. image: {
  32386. source: "./media/characters/vaelophis-nyx/front.svg",
  32387. extra: 2532/2330,
  32388. bottom: 0/2532
  32389. }
  32390. },
  32391. back: {
  32392. height: math.unit(4 + 2 / 12, "feet"),
  32393. weight: math.unit(95, "lb"),
  32394. name: "Back",
  32395. image: {
  32396. source: "./media/characters/vaelophis-nyx/back.svg",
  32397. extra: 2484/2361,
  32398. bottom: 0/2484
  32399. }
  32400. },
  32401. feralSide: {
  32402. height: math.unit(2 + 1/12, "feet"),
  32403. weight: math.unit(20, "lb"),
  32404. name: "Feral (Side)",
  32405. image: {
  32406. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32407. extra: 1721/1581,
  32408. bottom: 70/1791
  32409. }
  32410. },
  32411. feralLazing: {
  32412. height: math.unit(1.08, "feet"),
  32413. weight: math.unit(20, "lb"),
  32414. name: "Feral (Lazing)",
  32415. image: {
  32416. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32417. extra: 822/822,
  32418. bottom: 248/1070
  32419. }
  32420. },
  32421. ear: {
  32422. height: math.unit(0.416, "feet"),
  32423. name: "Ear",
  32424. image: {
  32425. source: "./media/characters/vaelophis-nyx/ear.svg"
  32426. }
  32427. },
  32428. eye: {
  32429. height: math.unit(0.0748, "feet"),
  32430. name: "Eye",
  32431. image: {
  32432. source: "./media/characters/vaelophis-nyx/eye.svg"
  32433. }
  32434. },
  32435. mouth: {
  32436. height: math.unit(0.378, "feet"),
  32437. name: "Mouth",
  32438. image: {
  32439. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32440. }
  32441. },
  32442. spade: {
  32443. height: math.unit(0.55, "feet"),
  32444. name: "Spade",
  32445. image: {
  32446. source: "./media/characters/vaelophis-nyx/spade.svg"
  32447. }
  32448. },
  32449. },
  32450. [
  32451. {
  32452. name: "Normal",
  32453. height: math.unit(4 + 2/12, "feet"),
  32454. default: true
  32455. },
  32456. ]
  32457. ))
  32458. characterMakers.push(() => makeCharacter(
  32459. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32460. {
  32461. front: {
  32462. height: math.unit(7, "feet"),
  32463. weight: math.unit(231, "lb"),
  32464. name: "Front",
  32465. image: {
  32466. source: "./media/characters/flux/front.svg",
  32467. extra: 919/871,
  32468. bottom: 0/919
  32469. }
  32470. },
  32471. back: {
  32472. height: math.unit(7, "feet"),
  32473. weight: math.unit(231, "lb"),
  32474. name: "Back",
  32475. image: {
  32476. source: "./media/characters/flux/back.svg",
  32477. extra: 1040/992,
  32478. bottom: 0/1040
  32479. }
  32480. },
  32481. frontDressed: {
  32482. height: math.unit(7, "feet"),
  32483. weight: math.unit(231, "lb"),
  32484. name: "Front (Dressed)",
  32485. image: {
  32486. source: "./media/characters/flux/front-dressed.svg",
  32487. extra: 919/871,
  32488. bottom: 0/919
  32489. }
  32490. },
  32491. feralSide: {
  32492. height: math.unit(5, "feet"),
  32493. weight: math.unit(150, "lb"),
  32494. name: "Feral (Side)",
  32495. image: {
  32496. source: "./media/characters/flux/feral-side.svg",
  32497. extra: 598/528,
  32498. bottom: 28/626
  32499. }
  32500. },
  32501. head: {
  32502. height: math.unit(1.585, "feet"),
  32503. name: "Head",
  32504. image: {
  32505. source: "./media/characters/flux/head.svg"
  32506. }
  32507. },
  32508. headSide: {
  32509. height: math.unit(1.74, "feet"),
  32510. name: "Head (Side)",
  32511. image: {
  32512. source: "./media/characters/flux/head-side.svg"
  32513. }
  32514. },
  32515. headSideFire: {
  32516. height: math.unit(1.76, "feet"),
  32517. name: "Head (Side, Fire)",
  32518. image: {
  32519. source: "./media/characters/flux/head-side-fire.svg"
  32520. }
  32521. },
  32522. },
  32523. [
  32524. {
  32525. name: "Normal",
  32526. height: math.unit(7, "feet"),
  32527. default: true
  32528. },
  32529. ]
  32530. ))
  32531. characterMakers.push(() => makeCharacter(
  32532. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32533. {
  32534. front: {
  32535. height: math.unit(9, "feet"),
  32536. weight: math.unit(1012, "lb"),
  32537. name: "Front",
  32538. image: {
  32539. source: "./media/characters/ulfra-lupae/front.svg",
  32540. extra: 1083/1011,
  32541. bottom: 67/1150
  32542. }
  32543. },
  32544. },
  32545. [
  32546. {
  32547. name: "Micro",
  32548. height: math.unit(6, "inches")
  32549. },
  32550. {
  32551. name: "Socializing",
  32552. height: math.unit(6 + 5/12, "feet")
  32553. },
  32554. {
  32555. name: "Normal",
  32556. height: math.unit(9, "feet"),
  32557. default: true
  32558. },
  32559. {
  32560. name: "Macro",
  32561. height: math.unit(150, "feet")
  32562. },
  32563. ]
  32564. ))
  32565. characterMakers.push(() => makeCharacter(
  32566. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32567. {
  32568. front: {
  32569. height: math.unit(5 + 2/12, "feet"),
  32570. weight: math.unit(120, "lb"),
  32571. name: "Front",
  32572. image: {
  32573. source: "./media/characters/timber/front.svg",
  32574. extra: 2814/2705,
  32575. bottom: 181/2995
  32576. }
  32577. },
  32578. },
  32579. [
  32580. {
  32581. name: "Normal",
  32582. height: math.unit(5 + 2/12, "feet"),
  32583. default: true
  32584. },
  32585. ]
  32586. ))
  32587. characterMakers.push(() => makeCharacter(
  32588. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32589. {
  32590. front: {
  32591. height: math.unit(9, "feet"),
  32592. name: "Front",
  32593. image: {
  32594. source: "./media/characters/nicki/front.svg",
  32595. extra: 1240/990,
  32596. bottom: 45/1285
  32597. },
  32598. form: "anthro",
  32599. default: true
  32600. },
  32601. side: {
  32602. height: math.unit(9, "feet"),
  32603. name: "Side",
  32604. image: {
  32605. source: "./media/characters/nicki/side.svg",
  32606. extra: 1047/973,
  32607. bottom: 61/1108
  32608. },
  32609. form: "anthro"
  32610. },
  32611. back: {
  32612. height: math.unit(9, "feet"),
  32613. name: "Back",
  32614. image: {
  32615. source: "./media/characters/nicki/back.svg",
  32616. extra: 1006/965,
  32617. bottom: 39/1045
  32618. },
  32619. form: "anthro"
  32620. },
  32621. taur: {
  32622. height: math.unit(15, "feet"),
  32623. name: "Taur",
  32624. image: {
  32625. source: "./media/characters/nicki/taur.svg",
  32626. extra: 1592/1347,
  32627. bottom: 0/1592
  32628. },
  32629. form: "taur",
  32630. default: true
  32631. },
  32632. },
  32633. [
  32634. {
  32635. name: "Normal",
  32636. height: math.unit(9, "feet"),
  32637. form: "anthro",
  32638. default: true
  32639. },
  32640. {
  32641. name: "Normal",
  32642. height: math.unit(15, "feet"),
  32643. form: "taur",
  32644. default: true
  32645. }
  32646. ],
  32647. {
  32648. "anthro": {
  32649. name: "Anthro",
  32650. default: true
  32651. },
  32652. "taur": {
  32653. name: "Taur"
  32654. }
  32655. }
  32656. ))
  32657. characterMakers.push(() => makeCharacter(
  32658. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32659. {
  32660. front: {
  32661. height: math.unit(7 + 10/12, "feet"),
  32662. weight: math.unit(3.5, "tons"),
  32663. name: "Front",
  32664. image: {
  32665. source: "./media/characters/lee/front.svg",
  32666. extra: 1773/1615,
  32667. bottom: 86/1859
  32668. }
  32669. },
  32670. hand: {
  32671. height: math.unit(1.78, "feet"),
  32672. name: "Hand",
  32673. image: {
  32674. source: "./media/characters/lee/hand.svg"
  32675. }
  32676. },
  32677. maw: {
  32678. height: math.unit(1.18, "feet"),
  32679. name: "Maw",
  32680. image: {
  32681. source: "./media/characters/lee/maw.svg"
  32682. }
  32683. },
  32684. },
  32685. [
  32686. {
  32687. name: "Normal",
  32688. height: math.unit(7 + 10/12, "feet"),
  32689. default: true
  32690. },
  32691. ]
  32692. ))
  32693. characterMakers.push(() => makeCharacter(
  32694. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32695. {
  32696. front: {
  32697. height: math.unit(9, "feet"),
  32698. name: "Front",
  32699. image: {
  32700. source: "./media/characters/guti/front.svg",
  32701. extra: 4551/4355,
  32702. bottom: 123/4674
  32703. }
  32704. },
  32705. tongue: {
  32706. height: math.unit(1, "feet"),
  32707. name: "Tongue",
  32708. image: {
  32709. source: "./media/characters/guti/tongue.svg"
  32710. }
  32711. },
  32712. paw: {
  32713. height: math.unit(1.18, "feet"),
  32714. name: "Paw",
  32715. image: {
  32716. source: "./media/characters/guti/paw.svg"
  32717. }
  32718. },
  32719. },
  32720. [
  32721. {
  32722. name: "Normal",
  32723. height: math.unit(9, "feet"),
  32724. default: true
  32725. },
  32726. ]
  32727. ))
  32728. characterMakers.push(() => makeCharacter(
  32729. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32730. {
  32731. side: {
  32732. height: math.unit(5, "meters"),
  32733. name: "Side",
  32734. image: {
  32735. source: "./media/characters/vesper/side.svg",
  32736. extra: 1605/1518,
  32737. bottom: 0/1605
  32738. }
  32739. },
  32740. },
  32741. [
  32742. {
  32743. name: "Small",
  32744. height: math.unit(5, "meters")
  32745. },
  32746. {
  32747. name: "Sage",
  32748. height: math.unit(100, "meters"),
  32749. default: true
  32750. },
  32751. {
  32752. name: "Fun Size",
  32753. height: math.unit(600, "meters")
  32754. },
  32755. {
  32756. name: "Goddess",
  32757. height: math.unit(20000, "km")
  32758. },
  32759. {
  32760. name: "Maximum",
  32761. height: math.unit(5, "galaxies")
  32762. },
  32763. ]
  32764. ))
  32765. characterMakers.push(() => makeCharacter(
  32766. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32767. {
  32768. front: {
  32769. height: math.unit(6 + 3/12, "feet"),
  32770. weight: math.unit(190, "lb"),
  32771. name: "Front",
  32772. image: {
  32773. source: "./media/characters/gawain/front.svg",
  32774. extra: 2222/2139,
  32775. bottom: 90/2312
  32776. }
  32777. },
  32778. back: {
  32779. height: math.unit(6 + 3/12, "feet"),
  32780. weight: math.unit(190, "lb"),
  32781. name: "Back",
  32782. image: {
  32783. source: "./media/characters/gawain/back.svg",
  32784. extra: 2199/2111,
  32785. bottom: 73/2272
  32786. }
  32787. },
  32788. },
  32789. [
  32790. {
  32791. name: "Normal",
  32792. height: math.unit(6 + 3/12, "feet"),
  32793. default: true
  32794. },
  32795. ]
  32796. ))
  32797. characterMakers.push(() => makeCharacter(
  32798. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32799. {
  32800. side: {
  32801. height: math.unit(3.5, "meters"),
  32802. weight: math.unit(16000, "lb"),
  32803. name: "Side",
  32804. image: {
  32805. source: "./media/characters/dascalti/side.svg",
  32806. extra: 392/273,
  32807. bottom: 47/439
  32808. }
  32809. },
  32810. breath: {
  32811. height: math.unit(7.4, "feet"),
  32812. name: "Breath",
  32813. image: {
  32814. source: "./media/characters/dascalti/breath.svg"
  32815. }
  32816. },
  32817. fed: {
  32818. height: math.unit(3.6, "meters"),
  32819. weight: math.unit(16000, "lb"),
  32820. name: "Fed",
  32821. image: {
  32822. source: "./media/characters/dascalti/fed.svg",
  32823. extra: 1419/820,
  32824. bottom: 95/1514
  32825. }
  32826. },
  32827. },
  32828. [
  32829. {
  32830. name: "Normal",
  32831. height: math.unit(3.5, "meters"),
  32832. default: true
  32833. },
  32834. ]
  32835. ))
  32836. characterMakers.push(() => makeCharacter(
  32837. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32838. {
  32839. front: {
  32840. height: math.unit(3 + 5/12, "feet"),
  32841. name: "Front",
  32842. image: {
  32843. source: "./media/characters/mauve/front.svg",
  32844. extra: 1126/1033,
  32845. bottom: 65/1191
  32846. }
  32847. },
  32848. side: {
  32849. height: math.unit(3 + 5/12, "feet"),
  32850. name: "Side",
  32851. image: {
  32852. source: "./media/characters/mauve/side.svg",
  32853. extra: 1089/1001,
  32854. bottom: 29/1118
  32855. }
  32856. },
  32857. back: {
  32858. height: math.unit(3 + 5/12, "feet"),
  32859. name: "Back",
  32860. image: {
  32861. source: "./media/characters/mauve/back.svg",
  32862. extra: 1173/1053,
  32863. bottom: 109/1282
  32864. }
  32865. },
  32866. },
  32867. [
  32868. {
  32869. name: "Normal",
  32870. height: math.unit(3 + 5/12, "feet"),
  32871. default: true
  32872. },
  32873. ]
  32874. ))
  32875. characterMakers.push(() => makeCharacter(
  32876. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32877. {
  32878. front: {
  32879. height: math.unit(6 + 3/12, "feet"),
  32880. weight: math.unit(430, "lb"),
  32881. name: "Front",
  32882. image: {
  32883. source: "./media/characters/carlos/front.svg",
  32884. extra: 1964/1913,
  32885. bottom: 70/2034
  32886. }
  32887. },
  32888. },
  32889. [
  32890. {
  32891. name: "Normal",
  32892. height: math.unit(6 + 3/12, "feet"),
  32893. default: true
  32894. },
  32895. ]
  32896. ))
  32897. characterMakers.push(() => makeCharacter(
  32898. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32899. {
  32900. back: {
  32901. height: math.unit(5 + 10/12, "feet"),
  32902. weight: math.unit(200, "lb"),
  32903. name: "Back",
  32904. image: {
  32905. source: "./media/characters/jax/back.svg",
  32906. extra: 764/739,
  32907. bottom: 25/789
  32908. }
  32909. },
  32910. },
  32911. [
  32912. {
  32913. name: "Normal",
  32914. height: math.unit(5 + 10/12, "feet"),
  32915. default: true
  32916. },
  32917. ]
  32918. ))
  32919. characterMakers.push(() => makeCharacter(
  32920. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32921. {
  32922. front: {
  32923. height: math.unit(8, "feet"),
  32924. weight: math.unit(250, "lb"),
  32925. name: "Front",
  32926. image: {
  32927. source: "./media/characters/eikthynir/front.svg",
  32928. extra: 1332/1166,
  32929. bottom: 82/1414
  32930. }
  32931. },
  32932. back: {
  32933. height: math.unit(8, "feet"),
  32934. weight: math.unit(250, "lb"),
  32935. name: "Back",
  32936. image: {
  32937. source: "./media/characters/eikthynir/back.svg",
  32938. extra: 1342/1190,
  32939. bottom: 19/1361
  32940. }
  32941. },
  32942. dick: {
  32943. height: math.unit(2.35, "feet"),
  32944. name: "Dick",
  32945. image: {
  32946. source: "./media/characters/eikthynir/dick.svg"
  32947. }
  32948. },
  32949. },
  32950. [
  32951. {
  32952. name: "Normal",
  32953. height: math.unit(8, "feet"),
  32954. default: true
  32955. },
  32956. ]
  32957. ))
  32958. characterMakers.push(() => makeCharacter(
  32959. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32960. {
  32961. front: {
  32962. height: math.unit(99, "meters"),
  32963. weight: math.unit(13000, "tons"),
  32964. name: "Front",
  32965. image: {
  32966. source: "./media/characters/zlmos/front.svg",
  32967. extra: 2202/1992,
  32968. bottom: 315/2517
  32969. }
  32970. },
  32971. },
  32972. [
  32973. {
  32974. name: "Macro",
  32975. height: math.unit(99, "meters"),
  32976. default: true
  32977. },
  32978. ]
  32979. ))
  32980. characterMakers.push(() => makeCharacter(
  32981. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32982. {
  32983. front: {
  32984. height: math.unit(6 + 5/12, "feet"),
  32985. name: "Front",
  32986. image: {
  32987. source: "./media/characters/purri/front.svg",
  32988. extra: 1698/1610,
  32989. bottom: 32/1730
  32990. }
  32991. },
  32992. frontAlt: {
  32993. height: math.unit(6 + 5/12, "feet"),
  32994. name: "Front (Alt)",
  32995. image: {
  32996. source: "./media/characters/purri/front-alt.svg",
  32997. extra: 450/420,
  32998. bottom: 26/476
  32999. }
  33000. },
  33001. boots: {
  33002. height: math.unit(5.5, "feet"),
  33003. name: "Boots",
  33004. image: {
  33005. source: "./media/characters/purri/boots.svg",
  33006. extra: 905/853,
  33007. bottom: 18/923
  33008. }
  33009. },
  33010. lying: {
  33011. height: math.unit(2, "feet"),
  33012. name: "Lying",
  33013. image: {
  33014. source: "./media/characters/purri/lying.svg",
  33015. extra: 940/843,
  33016. bottom: 146/1086
  33017. }
  33018. },
  33019. devious: {
  33020. height: math.unit(1.77, "feet"),
  33021. name: "Devious",
  33022. image: {
  33023. source: "./media/characters/purri/devious.svg",
  33024. extra: 1440/1155,
  33025. bottom: 147/1587
  33026. }
  33027. },
  33028. bean: {
  33029. height: math.unit(1.94, "feet"),
  33030. name: "Bean",
  33031. image: {
  33032. source: "./media/characters/purri/bean.svg"
  33033. }
  33034. },
  33035. },
  33036. [
  33037. {
  33038. name: "Micro",
  33039. height: math.unit(1, "mm")
  33040. },
  33041. {
  33042. name: "Normal",
  33043. height: math.unit(6 + 5/12, "feet"),
  33044. default: true
  33045. },
  33046. {
  33047. name: "Macro :3c",
  33048. height: math.unit(2, "miles")
  33049. },
  33050. ]
  33051. ))
  33052. characterMakers.push(() => makeCharacter(
  33053. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33054. {
  33055. front: {
  33056. height: math.unit(6 + 2/12, "feet"),
  33057. weight: math.unit(250, "lb"),
  33058. name: "Front",
  33059. image: {
  33060. source: "./media/characters/moonlight/front.svg",
  33061. extra: 1044/908,
  33062. bottom: 56/1100
  33063. }
  33064. },
  33065. feral: {
  33066. height: math.unit(3 + 1/12, "feet"),
  33067. weight: math.unit(50, "kg"),
  33068. name: "Feral",
  33069. image: {
  33070. source: "./media/characters/moonlight/feral.svg",
  33071. extra: 3705/2791,
  33072. bottom: 145/3850
  33073. }
  33074. },
  33075. paw: {
  33076. height: math.unit(1, "feet"),
  33077. name: "Paw",
  33078. image: {
  33079. source: "./media/characters/moonlight/paw.svg"
  33080. }
  33081. },
  33082. paws: {
  33083. height: math.unit(0.98, "feet"),
  33084. name: "Paws",
  33085. image: {
  33086. source: "./media/characters/moonlight/paws.svg",
  33087. extra: 939/939,
  33088. bottom: 50/989
  33089. }
  33090. },
  33091. mouth: {
  33092. height: math.unit(0.48, "feet"),
  33093. name: "Mouth",
  33094. image: {
  33095. source: "./media/characters/moonlight/mouth.svg"
  33096. }
  33097. },
  33098. dick: {
  33099. height: math.unit(1.46, "feet"),
  33100. name: "Dick",
  33101. image: {
  33102. source: "./media/characters/moonlight/dick.svg"
  33103. }
  33104. },
  33105. },
  33106. [
  33107. {
  33108. name: "Normal",
  33109. height: math.unit(6 + 2/12, "feet"),
  33110. default: true
  33111. },
  33112. {
  33113. name: "Macro",
  33114. height: math.unit(300, "feet")
  33115. },
  33116. {
  33117. name: "Macro+",
  33118. height: math.unit(1, "mile")
  33119. },
  33120. {
  33121. name: "Mt. Moon",
  33122. height: math.unit(5, "miles")
  33123. },
  33124. {
  33125. name: "Megamacro",
  33126. height: math.unit(15, "miles")
  33127. },
  33128. ]
  33129. ))
  33130. characterMakers.push(() => makeCharacter(
  33131. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33132. {
  33133. back: {
  33134. height: math.unit(6, "feet"),
  33135. weight: math.unit(150, "lb"),
  33136. name: "Back",
  33137. image: {
  33138. source: "./media/characters/sylen/back.svg",
  33139. extra: 1335/1273,
  33140. bottom: 107/1442
  33141. }
  33142. },
  33143. },
  33144. [
  33145. {
  33146. name: "Normal",
  33147. height: math.unit(5 + 5/12, "feet")
  33148. },
  33149. {
  33150. name: "Megamacro",
  33151. height: math.unit(3, "miles"),
  33152. default: true
  33153. },
  33154. ]
  33155. ))
  33156. characterMakers.push(() => makeCharacter(
  33157. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33158. {
  33159. front: {
  33160. height: math.unit(6, "feet"),
  33161. weight: math.unit(190, "lb"),
  33162. name: "Front",
  33163. image: {
  33164. source: "./media/characters/huttser/front.svg",
  33165. extra: 1152/1058,
  33166. bottom: 23/1175
  33167. }
  33168. },
  33169. side: {
  33170. height: math.unit(6, "feet"),
  33171. weight: math.unit(190, "lb"),
  33172. name: "Side",
  33173. image: {
  33174. source: "./media/characters/huttser/side.svg",
  33175. extra: 1174/1065,
  33176. bottom: 18/1192
  33177. }
  33178. },
  33179. back: {
  33180. height: math.unit(6, "feet"),
  33181. weight: math.unit(190, "lb"),
  33182. name: "Back",
  33183. image: {
  33184. source: "./media/characters/huttser/back.svg",
  33185. extra: 1158/1056,
  33186. bottom: 12/1170
  33187. }
  33188. },
  33189. },
  33190. [
  33191. ]
  33192. ))
  33193. characterMakers.push(() => makeCharacter(
  33194. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33195. {
  33196. side: {
  33197. height: math.unit(12 + 9/12, "feet"),
  33198. weight: math.unit(15000, "lb"),
  33199. name: "Side",
  33200. image: {
  33201. source: "./media/characters/faan/side.svg",
  33202. extra: 2747/2697,
  33203. bottom: 0/2747
  33204. }
  33205. },
  33206. front: {
  33207. height: math.unit(12 + 9/12, "feet"),
  33208. weight: math.unit(15000, "lb"),
  33209. name: "Front",
  33210. image: {
  33211. source: "./media/characters/faan/front.svg",
  33212. extra: 607/571,
  33213. bottom: 24/631
  33214. }
  33215. },
  33216. head: {
  33217. height: math.unit(2.85, "feet"),
  33218. name: "Head",
  33219. image: {
  33220. source: "./media/characters/faan/head.svg"
  33221. }
  33222. },
  33223. headAlt: {
  33224. height: math.unit(3.13, "feet"),
  33225. name: "Head-alt",
  33226. image: {
  33227. source: "./media/characters/faan/head-alt.svg"
  33228. }
  33229. },
  33230. },
  33231. [
  33232. {
  33233. name: "Normal",
  33234. height: math.unit(12 + 9/12, "feet"),
  33235. default: true
  33236. },
  33237. ]
  33238. ))
  33239. characterMakers.push(() => makeCharacter(
  33240. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33241. {
  33242. front: {
  33243. height: math.unit(6, "feet"),
  33244. weight: math.unit(300, "lb"),
  33245. name: "Front",
  33246. image: {
  33247. source: "./media/characters/tanio/front.svg",
  33248. extra: 711/673,
  33249. bottom: 25/736
  33250. }
  33251. },
  33252. },
  33253. [
  33254. {
  33255. name: "Normal",
  33256. height: math.unit(6, "feet"),
  33257. default: true
  33258. },
  33259. ]
  33260. ))
  33261. characterMakers.push(() => makeCharacter(
  33262. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33263. {
  33264. front: {
  33265. height: math.unit(3, "inches"),
  33266. name: "Front",
  33267. image: {
  33268. source: "./media/characters/noboru/front.svg",
  33269. extra: 1039/932,
  33270. bottom: 18/1057
  33271. }
  33272. },
  33273. },
  33274. [
  33275. {
  33276. name: "Micro",
  33277. height: math.unit(3, "inches"),
  33278. default: true
  33279. },
  33280. ]
  33281. ))
  33282. characterMakers.push(() => makeCharacter(
  33283. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33284. {
  33285. front: {
  33286. height: math.unit(1.85, "meters"),
  33287. weight: math.unit(80, "kg"),
  33288. name: "Front",
  33289. image: {
  33290. source: "./media/characters/daniel-barrett/front.svg",
  33291. extra: 355/337,
  33292. bottom: 9/364
  33293. }
  33294. },
  33295. },
  33296. [
  33297. {
  33298. name: "Pico",
  33299. height: math.unit(0.0433, "mm")
  33300. },
  33301. {
  33302. name: "Nano",
  33303. height: math.unit(1.5, "mm")
  33304. },
  33305. {
  33306. name: "Micro",
  33307. height: math.unit(5.3, "cm"),
  33308. default: true
  33309. },
  33310. {
  33311. name: "Normal",
  33312. height: math.unit(1.85, "meters")
  33313. },
  33314. {
  33315. name: "Macro",
  33316. height: math.unit(64.7, "meters")
  33317. },
  33318. {
  33319. name: "Megamacro",
  33320. height: math.unit(2.26, "km")
  33321. },
  33322. {
  33323. name: "Gigamacro",
  33324. height: math.unit(79, "km")
  33325. },
  33326. {
  33327. name: "Teramacro",
  33328. height: math.unit(2765, "km")
  33329. },
  33330. {
  33331. name: "Petamacro",
  33332. height: math.unit(96678, "km")
  33333. },
  33334. ]
  33335. ))
  33336. characterMakers.push(() => makeCharacter(
  33337. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33338. {
  33339. front: {
  33340. height: math.unit(30, "meters"),
  33341. weight: math.unit(400, "tons"),
  33342. name: "Front",
  33343. image: {
  33344. source: "./media/characters/zeel/front.svg",
  33345. extra: 2599/2599,
  33346. bottom: 226/2825
  33347. }
  33348. },
  33349. },
  33350. [
  33351. {
  33352. name: "Macro",
  33353. height: math.unit(30, "meters"),
  33354. default: true
  33355. },
  33356. ]
  33357. ))
  33358. characterMakers.push(() => makeCharacter(
  33359. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33360. {
  33361. front: {
  33362. height: math.unit(6 + 7/12, "feet"),
  33363. weight: math.unit(210, "lb"),
  33364. name: "Front",
  33365. image: {
  33366. source: "./media/characters/tarn/front.svg",
  33367. extra: 3517/3220,
  33368. bottom: 91/3608
  33369. }
  33370. },
  33371. back: {
  33372. height: math.unit(6 + 7/12, "feet"),
  33373. weight: math.unit(210, "lb"),
  33374. name: "Back",
  33375. image: {
  33376. source: "./media/characters/tarn/back.svg",
  33377. extra: 3566/3241,
  33378. bottom: 34/3600
  33379. }
  33380. },
  33381. dick: {
  33382. height: math.unit(1.65, "feet"),
  33383. name: "Dick",
  33384. image: {
  33385. source: "./media/characters/tarn/dick.svg"
  33386. }
  33387. },
  33388. paw: {
  33389. height: math.unit(1.80, "feet"),
  33390. name: "Paw",
  33391. image: {
  33392. source: "./media/characters/tarn/paw.svg"
  33393. }
  33394. },
  33395. tongue: {
  33396. height: math.unit(0.97, "feet"),
  33397. name: "Tongue",
  33398. image: {
  33399. source: "./media/characters/tarn/tongue.svg"
  33400. }
  33401. },
  33402. },
  33403. [
  33404. {
  33405. name: "Micro",
  33406. height: math.unit(4, "inches")
  33407. },
  33408. {
  33409. name: "Normal",
  33410. height: math.unit(6 + 7/12, "feet"),
  33411. default: true
  33412. },
  33413. {
  33414. name: "Macro",
  33415. height: math.unit(300, "feet")
  33416. },
  33417. ]
  33418. ))
  33419. characterMakers.push(() => makeCharacter(
  33420. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33421. {
  33422. front: {
  33423. height: math.unit(5 + 7/12, "feet"),
  33424. weight: math.unit(80, "kg"),
  33425. name: "Front",
  33426. image: {
  33427. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33428. extra: 3023/2865,
  33429. bottom: 33/3056
  33430. }
  33431. },
  33432. back: {
  33433. height: math.unit(5 + 7/12, "feet"),
  33434. weight: math.unit(80, "kg"),
  33435. name: "Back",
  33436. image: {
  33437. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33438. extra: 3020/2886,
  33439. bottom: 30/3050
  33440. }
  33441. },
  33442. dick: {
  33443. height: math.unit(0.98, "feet"),
  33444. name: "Dick",
  33445. image: {
  33446. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33447. }
  33448. },
  33449. anatomy: {
  33450. height: math.unit(2.86, "feet"),
  33451. name: "Anatomy",
  33452. image: {
  33453. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33454. }
  33455. },
  33456. },
  33457. [
  33458. {
  33459. name: "Really Small",
  33460. height: math.unit(2, "inches")
  33461. },
  33462. {
  33463. name: "Micro",
  33464. height: math.unit(5.583, "inches")
  33465. },
  33466. {
  33467. name: "Normal",
  33468. height: math.unit(5 + 7/12, "feet"),
  33469. default: true
  33470. },
  33471. {
  33472. name: "Macro",
  33473. height: math.unit(67, "feet")
  33474. },
  33475. {
  33476. name: "Megamacro",
  33477. height: math.unit(134, "feet")
  33478. },
  33479. ]
  33480. ))
  33481. characterMakers.push(() => makeCharacter(
  33482. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33483. {
  33484. front: {
  33485. height: math.unit(9, "feet"),
  33486. weight: math.unit(120, "lb"),
  33487. name: "Front",
  33488. image: {
  33489. source: "./media/characters/sally/front.svg",
  33490. extra: 1506/1349,
  33491. bottom: 66/1572
  33492. }
  33493. },
  33494. },
  33495. [
  33496. {
  33497. name: "Normal",
  33498. height: math.unit(9, "feet"),
  33499. default: true
  33500. },
  33501. ]
  33502. ))
  33503. characterMakers.push(() => makeCharacter(
  33504. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33505. {
  33506. front: {
  33507. height: math.unit(8, "feet"),
  33508. weight: math.unit(900, "lb"),
  33509. name: "Front",
  33510. image: {
  33511. source: "./media/characters/owen/front.svg",
  33512. extra: 1761/1657,
  33513. bottom: 74/1835
  33514. }
  33515. },
  33516. side: {
  33517. height: math.unit(8, "feet"),
  33518. weight: math.unit(900, "lb"),
  33519. name: "Side",
  33520. image: {
  33521. source: "./media/characters/owen/side.svg",
  33522. extra: 1797/1734,
  33523. bottom: 30/1827
  33524. }
  33525. },
  33526. back: {
  33527. height: math.unit(8, "feet"),
  33528. weight: math.unit(900, "lb"),
  33529. name: "Back",
  33530. image: {
  33531. source: "./media/characters/owen/back.svg",
  33532. extra: 1796/1706,
  33533. bottom: 59/1855
  33534. }
  33535. },
  33536. maw: {
  33537. height: math.unit(1.76, "feet"),
  33538. name: "Maw",
  33539. image: {
  33540. source: "./media/characters/owen/maw.svg"
  33541. }
  33542. },
  33543. },
  33544. [
  33545. {
  33546. name: "Normal",
  33547. height: math.unit(8, "feet"),
  33548. default: true
  33549. },
  33550. ]
  33551. ))
  33552. characterMakers.push(() => makeCharacter(
  33553. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33554. {
  33555. front: {
  33556. height: math.unit(4, "feet"),
  33557. weight: math.unit(400, "lb"),
  33558. name: "Front",
  33559. image: {
  33560. source: "./media/characters/ryth/front.svg",
  33561. extra: 1920/1748,
  33562. bottom: 42/1962
  33563. }
  33564. },
  33565. back: {
  33566. height: math.unit(4, "feet"),
  33567. weight: math.unit(400, "lb"),
  33568. name: "Back",
  33569. image: {
  33570. source: "./media/characters/ryth/back.svg",
  33571. extra: 1897/1690,
  33572. bottom: 89/1986
  33573. }
  33574. },
  33575. mouth: {
  33576. height: math.unit(1.39, "feet"),
  33577. name: "Mouth",
  33578. image: {
  33579. source: "./media/characters/ryth/mouth.svg"
  33580. }
  33581. },
  33582. tailmaw: {
  33583. height: math.unit(1.23, "feet"),
  33584. name: "Tailmaw",
  33585. image: {
  33586. source: "./media/characters/ryth/tailmaw.svg"
  33587. }
  33588. },
  33589. goia: {
  33590. height: math.unit(4, "meters"),
  33591. weight: math.unit(10800, "lb"),
  33592. name: "Goia",
  33593. image: {
  33594. source: "./media/characters/ryth/goia.svg",
  33595. extra: 745/640,
  33596. bottom: 107/852
  33597. }
  33598. },
  33599. goiaFront: {
  33600. height: math.unit(4, "meters"),
  33601. weight: math.unit(10800, "lb"),
  33602. name: "Goia (Front)",
  33603. image: {
  33604. source: "./media/characters/ryth/goia-front.svg",
  33605. extra: 750/586,
  33606. bottom: 114/864
  33607. }
  33608. },
  33609. goiaMaw: {
  33610. height: math.unit(5.55, "feet"),
  33611. name: "Goia Maw",
  33612. image: {
  33613. source: "./media/characters/ryth/goia-maw.svg"
  33614. }
  33615. },
  33616. goiaForepaw: {
  33617. height: math.unit(3.5, "feet"),
  33618. name: "Goia Forepaw",
  33619. image: {
  33620. source: "./media/characters/ryth/goia-forepaw.svg"
  33621. }
  33622. },
  33623. goiaHindpaw: {
  33624. height: math.unit(5.55, "feet"),
  33625. name: "Goia Hindpaw",
  33626. image: {
  33627. source: "./media/characters/ryth/goia-hindpaw.svg"
  33628. }
  33629. },
  33630. },
  33631. [
  33632. {
  33633. name: "Normal",
  33634. height: math.unit(4, "feet"),
  33635. default: true
  33636. },
  33637. ]
  33638. ))
  33639. characterMakers.push(() => makeCharacter(
  33640. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33641. {
  33642. front: {
  33643. height: math.unit(7, "feet"),
  33644. weight: math.unit(180, "lb"),
  33645. name: "Front",
  33646. image: {
  33647. source: "./media/characters/necrolance/front.svg",
  33648. extra: 1062/947,
  33649. bottom: 41/1103
  33650. }
  33651. },
  33652. back: {
  33653. height: math.unit(7, "feet"),
  33654. weight: math.unit(180, "lb"),
  33655. name: "Back",
  33656. image: {
  33657. source: "./media/characters/necrolance/back.svg",
  33658. extra: 1045/984,
  33659. bottom: 14/1059
  33660. }
  33661. },
  33662. wing: {
  33663. height: math.unit(2.67, "feet"),
  33664. name: "Wing",
  33665. image: {
  33666. source: "./media/characters/necrolance/wing.svg"
  33667. }
  33668. },
  33669. },
  33670. [
  33671. {
  33672. name: "Normal",
  33673. height: math.unit(7, "feet"),
  33674. default: true
  33675. },
  33676. ]
  33677. ))
  33678. characterMakers.push(() => makeCharacter(
  33679. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33680. {
  33681. front: {
  33682. height: math.unit(76, "meters"),
  33683. weight: math.unit(30000, "tons"),
  33684. name: "Front",
  33685. image: {
  33686. source: "./media/characters/tyler/front.svg",
  33687. extra: 1640/1640,
  33688. bottom: 114/1754
  33689. }
  33690. },
  33691. },
  33692. [
  33693. {
  33694. name: "Macro",
  33695. height: math.unit(76, "meters"),
  33696. default: true
  33697. },
  33698. ]
  33699. ))
  33700. characterMakers.push(() => makeCharacter(
  33701. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33702. {
  33703. front: {
  33704. height: math.unit(4 + 11/12, "feet"),
  33705. weight: math.unit(132, "lb"),
  33706. name: "Front",
  33707. image: {
  33708. source: "./media/characters/icey/front.svg",
  33709. extra: 2750/2550,
  33710. bottom: 33/2783
  33711. }
  33712. },
  33713. back: {
  33714. height: math.unit(4 + 11/12, "feet"),
  33715. weight: math.unit(132, "lb"),
  33716. name: "Back",
  33717. image: {
  33718. source: "./media/characters/icey/back.svg",
  33719. extra: 2624/2481,
  33720. bottom: 35/2659
  33721. }
  33722. },
  33723. },
  33724. [
  33725. {
  33726. name: "Normal",
  33727. height: math.unit(4 + 11/12, "feet"),
  33728. default: true
  33729. },
  33730. ]
  33731. ))
  33732. characterMakers.push(() => makeCharacter(
  33733. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33734. {
  33735. front: {
  33736. height: math.unit(100, "feet"),
  33737. weight: math.unit(0, "lb"),
  33738. name: "Front",
  33739. image: {
  33740. source: "./media/characters/smile/front.svg",
  33741. extra: 2983/2912,
  33742. bottom: 162/3145
  33743. }
  33744. },
  33745. back: {
  33746. height: math.unit(100, "feet"),
  33747. weight: math.unit(0, "lb"),
  33748. name: "Back",
  33749. image: {
  33750. source: "./media/characters/smile/back.svg",
  33751. extra: 3143/3031,
  33752. bottom: 91/3234
  33753. }
  33754. },
  33755. head: {
  33756. height: math.unit(26.3, "feet"),
  33757. weight: math.unit(0, "lb"),
  33758. name: "Head",
  33759. image: {
  33760. source: "./media/characters/smile/head.svg"
  33761. }
  33762. },
  33763. collar: {
  33764. height: math.unit(5.3, "feet"),
  33765. weight: math.unit(0, "lb"),
  33766. name: "Collar",
  33767. image: {
  33768. source: "./media/characters/smile/collar.svg"
  33769. }
  33770. },
  33771. },
  33772. [
  33773. {
  33774. name: "Macro",
  33775. height: math.unit(100, "feet"),
  33776. default: true
  33777. },
  33778. ]
  33779. ))
  33780. characterMakers.push(() => makeCharacter(
  33781. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33782. {
  33783. dragon: {
  33784. height: math.unit(26, "feet"),
  33785. weight: math.unit(36, "tons"),
  33786. name: "Dragon",
  33787. image: {
  33788. source: "./media/characters/arimphae/dragon.svg",
  33789. extra: 1574/983,
  33790. bottom: 357/1931
  33791. }
  33792. },
  33793. drake: {
  33794. height: math.unit(9, "feet"),
  33795. weight: math.unit(1.5, "tons"),
  33796. name: "Drake",
  33797. image: {
  33798. source: "./media/characters/arimphae/drake.svg",
  33799. extra: 1120/925,
  33800. bottom: 435/1555
  33801. }
  33802. },
  33803. },
  33804. [
  33805. {
  33806. name: "Small",
  33807. height: math.unit(26*5/9, "feet")
  33808. },
  33809. {
  33810. name: "Normal",
  33811. height: math.unit(26, "feet"),
  33812. default: true
  33813. },
  33814. ]
  33815. ))
  33816. characterMakers.push(() => makeCharacter(
  33817. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33818. {
  33819. front: {
  33820. height: math.unit(8 + 9/12, "feet"),
  33821. name: "Front",
  33822. image: {
  33823. source: "./media/characters/xander/front.svg",
  33824. extra: 1237/974,
  33825. bottom: 94/1331
  33826. }
  33827. },
  33828. },
  33829. [
  33830. {
  33831. name: "Normal",
  33832. height: math.unit(8 + 9/12, "feet"),
  33833. default: true
  33834. },
  33835. {
  33836. name: "Gaze Grabber",
  33837. height: math.unit(13 + 8/12, "feet")
  33838. },
  33839. {
  33840. name: "Jaw Dropper",
  33841. height: math.unit(27, "feet")
  33842. },
  33843. {
  33844. name: "Show Stopper",
  33845. height: math.unit(136, "feet")
  33846. },
  33847. {
  33848. name: "Superstar",
  33849. height: math.unit(1.9e6, "miles")
  33850. },
  33851. ]
  33852. ))
  33853. characterMakers.push(() => makeCharacter(
  33854. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33855. {
  33856. side: {
  33857. height: math.unit(2100, "feet"),
  33858. name: "Side",
  33859. image: {
  33860. source: "./media/characters/osiris/side.svg",
  33861. extra: 1105/939,
  33862. bottom: 167/1272
  33863. }
  33864. },
  33865. },
  33866. [
  33867. {
  33868. name: "Macro",
  33869. height: math.unit(2100, "feet"),
  33870. default: true
  33871. },
  33872. ]
  33873. ))
  33874. characterMakers.push(() => makeCharacter(
  33875. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33876. {
  33877. front: {
  33878. height: math.unit(6 + 8/12, "feet"),
  33879. weight: math.unit(225, "lb"),
  33880. name: "Front",
  33881. image: {
  33882. source: "./media/characters/rhys-londe/front.svg",
  33883. extra: 2258/2141,
  33884. bottom: 188/2446
  33885. }
  33886. },
  33887. back: {
  33888. height: math.unit(6 + 8/12, "feet"),
  33889. weight: math.unit(225, "lb"),
  33890. name: "Back",
  33891. image: {
  33892. source: "./media/characters/rhys-londe/back.svg",
  33893. extra: 2237/2137,
  33894. bottom: 63/2300
  33895. }
  33896. },
  33897. frontNsfw: {
  33898. height: math.unit(6 + 8/12, "feet"),
  33899. weight: math.unit(225, "lb"),
  33900. name: "Front (NSFW)",
  33901. image: {
  33902. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33903. extra: 2258/2141,
  33904. bottom: 188/2446
  33905. }
  33906. },
  33907. backNsfw: {
  33908. height: math.unit(6 + 8/12, "feet"),
  33909. weight: math.unit(225, "lb"),
  33910. name: "Back (NSFW)",
  33911. image: {
  33912. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33913. extra: 2237/2137,
  33914. bottom: 63/2300
  33915. }
  33916. },
  33917. dick: {
  33918. height: math.unit(30, "inches"),
  33919. name: "Dick",
  33920. image: {
  33921. source: "./media/characters/rhys-londe/dick.svg"
  33922. }
  33923. },
  33924. maw: {
  33925. height: math.unit(1.6, "feet"),
  33926. name: "Maw",
  33927. image: {
  33928. source: "./media/characters/rhys-londe/maw.svg"
  33929. }
  33930. },
  33931. },
  33932. [
  33933. {
  33934. name: "Normal",
  33935. height: math.unit(6 + 8/12, "feet"),
  33936. default: true
  33937. },
  33938. ]
  33939. ))
  33940. characterMakers.push(() => makeCharacter(
  33941. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33942. {
  33943. front: {
  33944. height: math.unit(3 + 10/12, "feet"),
  33945. weight: math.unit(90, "lb"),
  33946. name: "Front",
  33947. image: {
  33948. source: "./media/characters/taivas-ensim/front.svg",
  33949. extra: 1327/1216,
  33950. bottom: 96/1423
  33951. }
  33952. },
  33953. back: {
  33954. height: math.unit(3 + 10/12, "feet"),
  33955. weight: math.unit(90, "lb"),
  33956. name: "Back",
  33957. image: {
  33958. source: "./media/characters/taivas-ensim/back.svg",
  33959. extra: 1355/1247,
  33960. bottom: 11/1366
  33961. }
  33962. },
  33963. frontNsfw: {
  33964. height: math.unit(3 + 10/12, "feet"),
  33965. weight: math.unit(90, "lb"),
  33966. name: "Front (NSFW)",
  33967. image: {
  33968. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33969. extra: 1327/1216,
  33970. bottom: 96/1423
  33971. }
  33972. },
  33973. backNsfw: {
  33974. height: math.unit(3 + 10/12, "feet"),
  33975. weight: math.unit(90, "lb"),
  33976. name: "Back (NSFW)",
  33977. image: {
  33978. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33979. extra: 1355/1247,
  33980. bottom: 11/1366
  33981. }
  33982. },
  33983. },
  33984. [
  33985. {
  33986. name: "Normal",
  33987. height: math.unit(3 + 10/12, "feet"),
  33988. default: true
  33989. },
  33990. ]
  33991. ))
  33992. characterMakers.push(() => makeCharacter(
  33993. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33994. {
  33995. front: {
  33996. height: math.unit(9 + 6/12, "feet"),
  33997. weight: math.unit(940, "lb"),
  33998. name: "Front",
  33999. image: {
  34000. source: "./media/characters/byliss/front.svg",
  34001. extra: 1327/1290,
  34002. bottom: 82/1409
  34003. }
  34004. },
  34005. back: {
  34006. height: math.unit(9 + 6/12, "feet"),
  34007. weight: math.unit(940, "lb"),
  34008. name: "Back",
  34009. image: {
  34010. source: "./media/characters/byliss/back.svg",
  34011. extra: 1376/1349,
  34012. bottom: 9/1385
  34013. }
  34014. },
  34015. frontNsfw: {
  34016. height: math.unit(9 + 6/12, "feet"),
  34017. weight: math.unit(940, "lb"),
  34018. name: "Front (NSFW)",
  34019. image: {
  34020. source: "./media/characters/byliss/front-nsfw.svg",
  34021. extra: 1327/1290,
  34022. bottom: 82/1409
  34023. }
  34024. },
  34025. backNsfw: {
  34026. height: math.unit(9 + 6/12, "feet"),
  34027. weight: math.unit(940, "lb"),
  34028. name: "Back (NSFW)",
  34029. image: {
  34030. source: "./media/characters/byliss/back-nsfw.svg",
  34031. extra: 1376/1349,
  34032. bottom: 9/1385
  34033. }
  34034. },
  34035. },
  34036. [
  34037. {
  34038. name: "Normal",
  34039. height: math.unit(9 + 6/12, "feet"),
  34040. default: true
  34041. },
  34042. ]
  34043. ))
  34044. characterMakers.push(() => makeCharacter(
  34045. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34046. {
  34047. front: {
  34048. height: math.unit(5 + 2/12, "feet"),
  34049. weight: math.unit(200, "lb"),
  34050. name: "Front",
  34051. image: {
  34052. source: "./media/characters/noraly/front.svg",
  34053. extra: 4985/4773,
  34054. bottom: 150/5135
  34055. }
  34056. },
  34057. full: {
  34058. height: math.unit(5 + 2/12, "feet"),
  34059. weight: math.unit(164, "lb"),
  34060. name: "Full",
  34061. image: {
  34062. source: "./media/characters/noraly/full.svg",
  34063. extra: 1114/1059,
  34064. bottom: 35/1149
  34065. }
  34066. },
  34067. fuller: {
  34068. height: math.unit(5 + 2/12, "feet"),
  34069. weight: math.unit(230, "lb"),
  34070. name: "Fuller",
  34071. image: {
  34072. source: "./media/characters/noraly/fuller.svg",
  34073. extra: 1114/1059,
  34074. bottom: 35/1149
  34075. }
  34076. },
  34077. fullest: {
  34078. height: math.unit(5 + 2/12, "feet"),
  34079. weight: math.unit(300, "lb"),
  34080. name: "Fullest",
  34081. image: {
  34082. source: "./media/characters/noraly/fullest.svg",
  34083. extra: 1114/1059,
  34084. bottom: 35/1149
  34085. }
  34086. },
  34087. },
  34088. [
  34089. {
  34090. name: "Normal",
  34091. height: math.unit(5 + 2/12, "feet"),
  34092. default: true
  34093. },
  34094. ]
  34095. ))
  34096. characterMakers.push(() => makeCharacter(
  34097. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34098. {
  34099. front: {
  34100. height: math.unit(5 + 2/12, "feet"),
  34101. weight: math.unit(210, "lb"),
  34102. name: "Front",
  34103. image: {
  34104. source: "./media/characters/pera/front.svg",
  34105. extra: 1560/1531,
  34106. bottom: 165/1725
  34107. }
  34108. },
  34109. back: {
  34110. height: math.unit(5 + 2/12, "feet"),
  34111. weight: math.unit(210, "lb"),
  34112. name: "Back",
  34113. image: {
  34114. source: "./media/characters/pera/back.svg",
  34115. extra: 1523/1493,
  34116. bottom: 152/1675
  34117. }
  34118. },
  34119. dick: {
  34120. height: math.unit(2.4, "feet"),
  34121. name: "Dick",
  34122. image: {
  34123. source: "./media/characters/pera/dick.svg"
  34124. }
  34125. },
  34126. },
  34127. [
  34128. {
  34129. name: "Normal",
  34130. height: math.unit(5 + 2/12, "feet"),
  34131. default: true
  34132. },
  34133. ]
  34134. ))
  34135. characterMakers.push(() => makeCharacter(
  34136. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34137. {
  34138. front: {
  34139. height: math.unit(12, "feet"),
  34140. weight: math.unit(3200, "lb"),
  34141. name: "Front",
  34142. image: {
  34143. source: "./media/characters/julian/front.svg",
  34144. extra: 2962/2701,
  34145. bottom: 184/3146
  34146. }
  34147. },
  34148. maw: {
  34149. height: math.unit(5.35, "feet"),
  34150. name: "Maw",
  34151. image: {
  34152. source: "./media/characters/julian/maw.svg"
  34153. }
  34154. },
  34155. paw: {
  34156. height: math.unit(3.07, "feet"),
  34157. name: "Paw",
  34158. image: {
  34159. source: "./media/characters/julian/paw.svg"
  34160. }
  34161. },
  34162. },
  34163. [
  34164. {
  34165. name: "Default",
  34166. height: math.unit(12, "feet"),
  34167. default: true
  34168. },
  34169. {
  34170. name: "Big",
  34171. height: math.unit(50, "feet")
  34172. },
  34173. {
  34174. name: "Really Big",
  34175. height: math.unit(1, "mile")
  34176. },
  34177. {
  34178. name: "Extremely Big",
  34179. height: math.unit(100, "miles")
  34180. },
  34181. {
  34182. name: "Planet Hugger",
  34183. height: math.unit(200, "megameters")
  34184. },
  34185. {
  34186. name: "Unreasonably Big",
  34187. height: math.unit(1e300, "meters")
  34188. },
  34189. ]
  34190. ))
  34191. characterMakers.push(() => makeCharacter(
  34192. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34193. {
  34194. solgooleo: {
  34195. height: math.unit(4, "meters"),
  34196. weight: math.unit(6000*1.5, "kg"),
  34197. volume: math.unit(6000, "liters"),
  34198. name: "Solgooleo",
  34199. image: {
  34200. source: "./media/characters/pi/solgooleo.svg",
  34201. extra: 388/331,
  34202. bottom: 29/417
  34203. }
  34204. },
  34205. },
  34206. [
  34207. {
  34208. name: "Normal",
  34209. height: math.unit(4, "meters"),
  34210. default: true
  34211. },
  34212. ]
  34213. ))
  34214. characterMakers.push(() => makeCharacter(
  34215. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34216. {
  34217. front: {
  34218. height: math.unit(8, "feet"),
  34219. weight: math.unit(4, "tons"),
  34220. name: "Front",
  34221. image: {
  34222. source: "./media/characters/shaun/front.svg",
  34223. extra: 503/495,
  34224. bottom: 20/523
  34225. }
  34226. },
  34227. back: {
  34228. height: math.unit(8, "feet"),
  34229. weight: math.unit(4, "tons"),
  34230. name: "Back",
  34231. image: {
  34232. source: "./media/characters/shaun/back.svg",
  34233. extra: 487/480,
  34234. bottom: 20/507
  34235. }
  34236. },
  34237. },
  34238. [
  34239. {
  34240. name: "Lorg",
  34241. height: math.unit(8, "feet"),
  34242. default: true
  34243. },
  34244. ]
  34245. ))
  34246. characterMakers.push(() => makeCharacter(
  34247. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34248. {
  34249. frontAnthro: {
  34250. height: math.unit(7, "feet"),
  34251. name: "Front",
  34252. image: {
  34253. source: "./media/characters/sini/front-anthro.svg",
  34254. extra: 726/678,
  34255. bottom: 35/761
  34256. },
  34257. form: "anthro",
  34258. default: true
  34259. },
  34260. backAnthro: {
  34261. height: math.unit(7, "feet"),
  34262. name: "Back",
  34263. image: {
  34264. source: "./media/characters/sini/back-anthro.svg",
  34265. extra: 743/701,
  34266. bottom: 12/755
  34267. },
  34268. form: "anthro",
  34269. },
  34270. frontAnthroNsfw: {
  34271. height: math.unit(7, "feet"),
  34272. name: "Front (NSFW)",
  34273. image: {
  34274. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34275. extra: 726/678,
  34276. bottom: 35/761
  34277. },
  34278. form: "anthro"
  34279. },
  34280. backAnthroNsfw: {
  34281. height: math.unit(7, "feet"),
  34282. name: "Back (NSFW)",
  34283. image: {
  34284. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34285. extra: 743/701,
  34286. bottom: 12/755
  34287. },
  34288. form: "anthro",
  34289. },
  34290. mawAnthro: {
  34291. height: math.unit(2.14, "feet"),
  34292. name: "Maw",
  34293. image: {
  34294. source: "./media/characters/sini/maw-anthro.svg"
  34295. },
  34296. form: "anthro"
  34297. },
  34298. dick: {
  34299. height: math.unit(1.45, "feet"),
  34300. name: "Dick",
  34301. image: {
  34302. source: "./media/characters/sini/dick-anthro.svg"
  34303. },
  34304. form: "anthro"
  34305. },
  34306. feral: {
  34307. height: math.unit(16, "feet"),
  34308. name: "Feral",
  34309. image: {
  34310. source: "./media/characters/sini/feral.svg",
  34311. extra: 814/605,
  34312. bottom: 11/825
  34313. },
  34314. form: "feral",
  34315. default: true
  34316. },
  34317. feralNsfw: {
  34318. height: math.unit(16, "feet"),
  34319. name: "Feral (NSFW)",
  34320. image: {
  34321. source: "./media/characters/sini/feral-nsfw.svg",
  34322. extra: 814/605,
  34323. bottom: 11/825
  34324. },
  34325. form: "feral"
  34326. },
  34327. mawFeral: {
  34328. height: math.unit(5.66, "feet"),
  34329. name: "Maw",
  34330. image: {
  34331. source: "./media/characters/sini/maw-feral.svg"
  34332. },
  34333. form: "feral",
  34334. },
  34335. pawFeral: {
  34336. height: math.unit(5.17, "feet"),
  34337. name: "Paw",
  34338. image: {
  34339. source: "./media/characters/sini/paw-feral.svg"
  34340. },
  34341. form: "feral",
  34342. },
  34343. rumpFeral: {
  34344. height: math.unit(13.11, "feet"),
  34345. name: "Rump",
  34346. image: {
  34347. source: "./media/characters/sini/rump-feral.svg"
  34348. },
  34349. form: "feral",
  34350. },
  34351. dickFeral: {
  34352. height: math.unit(1, "feet"),
  34353. name: "Dick",
  34354. image: {
  34355. source: "./media/characters/sini/dick-feral.svg"
  34356. },
  34357. form: "feral",
  34358. },
  34359. eyeFeral: {
  34360. height: math.unit(1.23, "feet"),
  34361. name: "Eye",
  34362. image: {
  34363. source: "./media/characters/sini/eye-feral.svg"
  34364. },
  34365. form: "feral",
  34366. },
  34367. },
  34368. [
  34369. {
  34370. name: "Normal",
  34371. height: math.unit(7, "feet"),
  34372. default: true,
  34373. form: "anthro"
  34374. },
  34375. {
  34376. name: "Normal",
  34377. height: math.unit(16, "feet"),
  34378. default: true,
  34379. form: "feral"
  34380. },
  34381. ],
  34382. {
  34383. "anthro": {
  34384. name: "Anthro",
  34385. default: true
  34386. },
  34387. "feral": {
  34388. name: "Feral",
  34389. }
  34390. }
  34391. ))
  34392. characterMakers.push(() => makeCharacter(
  34393. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34394. {
  34395. side: {
  34396. height: math.unit(47.2, "meters"),
  34397. weight: math.unit(10000, "tons"),
  34398. name: "Side",
  34399. image: {
  34400. source: "./media/characters/raylldo/side.svg",
  34401. extra: 2363/642,
  34402. bottom: 221/2584
  34403. }
  34404. },
  34405. top: {
  34406. height: math.unit(240, "meters"),
  34407. weight: math.unit(10000, "tons"),
  34408. name: "Top",
  34409. image: {
  34410. source: "./media/characters/raylldo/top.svg"
  34411. }
  34412. },
  34413. bottom: {
  34414. height: math.unit(240, "meters"),
  34415. weight: math.unit(10000, "tons"),
  34416. name: "Bottom",
  34417. image: {
  34418. source: "./media/characters/raylldo/bottom.svg"
  34419. }
  34420. },
  34421. head: {
  34422. height: math.unit(38.6, "meters"),
  34423. name: "Head",
  34424. image: {
  34425. source: "./media/characters/raylldo/head.svg",
  34426. extra: 1335/1112,
  34427. bottom: 0/1335
  34428. }
  34429. },
  34430. maw: {
  34431. height: math.unit(16.37, "meters"),
  34432. name: "Maw",
  34433. image: {
  34434. source: "./media/characters/raylldo/maw.svg",
  34435. extra: 883/660,
  34436. bottom: 0/883
  34437. },
  34438. extraAttributes: {
  34439. preyCapacity: {
  34440. name: "Capacity",
  34441. power: 3,
  34442. type: "volume",
  34443. base: math.unit(1000, "people")
  34444. },
  34445. tongueSize: {
  34446. name: "Tongue Size",
  34447. power: 2,
  34448. type: "area",
  34449. base: math.unit(21, "m^2")
  34450. }
  34451. }
  34452. },
  34453. forepaw: {
  34454. height: math.unit(18, "meters"),
  34455. name: "Forepaw",
  34456. image: {
  34457. source: "./media/characters/raylldo/forepaw.svg"
  34458. }
  34459. },
  34460. hindpaw: {
  34461. height: math.unit(23, "meters"),
  34462. name: "Hindpaw",
  34463. image: {
  34464. source: "./media/characters/raylldo/hindpaw.svg"
  34465. }
  34466. },
  34467. genitals: {
  34468. height: math.unit(42, "meters"),
  34469. name: "Genitals",
  34470. image: {
  34471. source: "./media/characters/raylldo/genitals.svg"
  34472. }
  34473. },
  34474. },
  34475. [
  34476. {
  34477. name: "Normal",
  34478. height: math.unit(47.2, "meters"),
  34479. default: true
  34480. },
  34481. ]
  34482. ))
  34483. characterMakers.push(() => makeCharacter(
  34484. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34485. {
  34486. anthroFront: {
  34487. height: math.unit(9, "feet"),
  34488. weight: math.unit(600, "lb"),
  34489. name: "Anthro (Front)",
  34490. image: {
  34491. source: "./media/characters/glint/anthro-front.svg",
  34492. extra: 1097/1018,
  34493. bottom: 28/1125
  34494. }
  34495. },
  34496. anthroBack: {
  34497. height: math.unit(9, "feet"),
  34498. weight: math.unit(600, "lb"),
  34499. name: "Anthro (Back)",
  34500. image: {
  34501. source: "./media/characters/glint/anthro-back.svg",
  34502. extra: 1154/997,
  34503. bottom: 36/1190
  34504. }
  34505. },
  34506. feral: {
  34507. height: math.unit(11, "feet"),
  34508. weight: math.unit(50000, "lb"),
  34509. name: "Feral",
  34510. image: {
  34511. source: "./media/characters/glint/feral.svg",
  34512. extra: 3035/1585,
  34513. bottom: 1169/4204
  34514. }
  34515. },
  34516. dickAnthro: {
  34517. height: math.unit(0.7, "meters"),
  34518. name: "Dick (Anthro)",
  34519. image: {
  34520. source: "./media/characters/glint/dick-anthro.svg"
  34521. }
  34522. },
  34523. dickFeral: {
  34524. height: math.unit(2.65, "meters"),
  34525. name: "Dick (Feral)",
  34526. image: {
  34527. source: "./media/characters/glint/dick-feral.svg"
  34528. }
  34529. },
  34530. slitHidden: {
  34531. height: math.unit(5.85, "meters"),
  34532. name: "Slit (Hidden)",
  34533. image: {
  34534. source: "./media/characters/glint/slit-hidden.svg"
  34535. }
  34536. },
  34537. slitErect: {
  34538. height: math.unit(5.85, "meters"),
  34539. name: "Slit (Erect)",
  34540. image: {
  34541. source: "./media/characters/glint/slit-erect.svg"
  34542. }
  34543. },
  34544. mawAnthro: {
  34545. height: math.unit(0.63, "meters"),
  34546. name: "Maw (Anthro)",
  34547. image: {
  34548. source: "./media/characters/glint/maw.svg"
  34549. }
  34550. },
  34551. mawFeral: {
  34552. height: math.unit(2.89, "meters"),
  34553. name: "Maw (Feral)",
  34554. image: {
  34555. source: "./media/characters/glint/maw.svg"
  34556. }
  34557. },
  34558. },
  34559. [
  34560. {
  34561. name: "Normal",
  34562. height: math.unit(9, "feet"),
  34563. default: true
  34564. },
  34565. ]
  34566. ))
  34567. characterMakers.push(() => makeCharacter(
  34568. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34569. {
  34570. side: {
  34571. height: math.unit(15, "feet"),
  34572. weight: math.unit(5000, "kg"),
  34573. name: "Side",
  34574. image: {
  34575. source: "./media/characters/kairne/side.svg",
  34576. extra: 979/811,
  34577. bottom: 13/992
  34578. }
  34579. },
  34580. front: {
  34581. height: math.unit(15, "feet"),
  34582. weight: math.unit(5000, "kg"),
  34583. name: "Front",
  34584. image: {
  34585. source: "./media/characters/kairne/front.svg",
  34586. extra: 908/814,
  34587. bottom: 26/934
  34588. }
  34589. },
  34590. sideNsfw: {
  34591. height: math.unit(15, "feet"),
  34592. weight: math.unit(5000, "kg"),
  34593. name: "Side (NSFW)",
  34594. image: {
  34595. source: "./media/characters/kairne/side-nsfw.svg",
  34596. extra: 979/811,
  34597. bottom: 13/992
  34598. }
  34599. },
  34600. frontNsfw: {
  34601. height: math.unit(15, "feet"),
  34602. weight: math.unit(5000, "kg"),
  34603. name: "Front (NSFW)",
  34604. image: {
  34605. source: "./media/characters/kairne/front-nsfw.svg",
  34606. extra: 908/814,
  34607. bottom: 26/934
  34608. }
  34609. },
  34610. dickCaged: {
  34611. height: math.unit(0.65, "meters"),
  34612. name: "Dick-caged",
  34613. image: {
  34614. source: "./media/characters/kairne/dick-caged.svg"
  34615. }
  34616. },
  34617. dick: {
  34618. height: math.unit(0.79, "meters"),
  34619. name: "Dick",
  34620. image: {
  34621. source: "./media/characters/kairne/dick.svg"
  34622. }
  34623. },
  34624. genitals: {
  34625. height: math.unit(1.29, "meters"),
  34626. name: "Genitals",
  34627. image: {
  34628. source: "./media/characters/kairne/genitals.svg"
  34629. }
  34630. },
  34631. maw: {
  34632. height: math.unit(1.73, "meters"),
  34633. name: "Maw",
  34634. image: {
  34635. source: "./media/characters/kairne/maw.svg"
  34636. }
  34637. },
  34638. },
  34639. [
  34640. {
  34641. name: "Normal",
  34642. height: math.unit(15, "feet"),
  34643. default: true
  34644. },
  34645. ]
  34646. ))
  34647. characterMakers.push(() => makeCharacter(
  34648. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34649. {
  34650. front: {
  34651. height: math.unit(5 + 8/12, "feet"),
  34652. weight: math.unit(139, "lb"),
  34653. name: "Front",
  34654. image: {
  34655. source: "./media/characters/biscuit-jackal/front.svg",
  34656. extra: 2106/1961,
  34657. bottom: 58/2164
  34658. }
  34659. },
  34660. back: {
  34661. height: math.unit(5 + 8/12, "feet"),
  34662. weight: math.unit(139, "lb"),
  34663. name: "Back",
  34664. image: {
  34665. source: "./media/characters/biscuit-jackal/back.svg",
  34666. extra: 2132/1976,
  34667. bottom: 57/2189
  34668. }
  34669. },
  34670. werejackal: {
  34671. height: math.unit(6 + 3/12, "feet"),
  34672. weight: math.unit(188, "lb"),
  34673. name: "Werejackal",
  34674. image: {
  34675. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34676. extra: 2373/2178,
  34677. bottom: 53/2426
  34678. }
  34679. },
  34680. },
  34681. [
  34682. {
  34683. name: "Normal",
  34684. height: math.unit(5 + 8/12, "feet"),
  34685. default: true
  34686. },
  34687. ]
  34688. ))
  34689. characterMakers.push(() => makeCharacter(
  34690. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34691. {
  34692. front: {
  34693. height: math.unit(140, "cm"),
  34694. weight: math.unit(45, "kg"),
  34695. name: "Front",
  34696. image: {
  34697. source: "./media/characters/tayra-white/front.svg",
  34698. extra: 2229/2192,
  34699. bottom: 75/2304
  34700. }
  34701. },
  34702. },
  34703. [
  34704. {
  34705. name: "Normal",
  34706. height: math.unit(140, "cm"),
  34707. default: true
  34708. },
  34709. ]
  34710. ))
  34711. characterMakers.push(() => makeCharacter(
  34712. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34713. {
  34714. front: {
  34715. height: math.unit(4 + 5/12, "feet"),
  34716. name: "Front",
  34717. image: {
  34718. source: "./media/characters/scoop/front.svg",
  34719. extra: 1257/1136,
  34720. bottom: 69/1326
  34721. }
  34722. },
  34723. back: {
  34724. height: math.unit(4 + 5/12, "feet"),
  34725. name: "Back",
  34726. image: {
  34727. source: "./media/characters/scoop/back.svg",
  34728. extra: 1321/1152,
  34729. bottom: 32/1353
  34730. }
  34731. },
  34732. maw: {
  34733. height: math.unit(0.68, "feet"),
  34734. name: "Maw",
  34735. image: {
  34736. source: "./media/characters/scoop/maw.svg"
  34737. }
  34738. },
  34739. },
  34740. [
  34741. {
  34742. name: "Really Small",
  34743. height: math.unit(1, "mm")
  34744. },
  34745. {
  34746. name: "Micro",
  34747. height: math.unit(1, "inch")
  34748. },
  34749. {
  34750. name: "Normal",
  34751. height: math.unit(4 + 5/12, "feet"),
  34752. default: true
  34753. },
  34754. {
  34755. name: "Macro",
  34756. height: math.unit(200, "feet")
  34757. },
  34758. {
  34759. name: "Megamacro",
  34760. height: math.unit(3240, "feet")
  34761. },
  34762. {
  34763. name: "Teramacro",
  34764. height: math.unit(2500, "miles")
  34765. },
  34766. ]
  34767. ))
  34768. characterMakers.push(() => makeCharacter(
  34769. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34770. {
  34771. front: {
  34772. height: math.unit(15 + 7/12, "feet"),
  34773. weight: math.unit(1150, "tons"),
  34774. name: "Front",
  34775. image: {
  34776. source: "./media/characters/saphinara/front.svg",
  34777. extra: 1837/1643,
  34778. bottom: 84/1921
  34779. },
  34780. form: "normal",
  34781. default: true
  34782. },
  34783. side: {
  34784. height: math.unit(15 + 7/12, "feet"),
  34785. weight: math.unit(1150, "tons"),
  34786. name: "Side",
  34787. image: {
  34788. source: "./media/characters/saphinara/side.svg",
  34789. extra: 605/547,
  34790. bottom: 6/611
  34791. },
  34792. form: "normal"
  34793. },
  34794. back: {
  34795. height: math.unit(15 + 7/12, "feet"),
  34796. weight: math.unit(1150, "tons"),
  34797. name: "Back",
  34798. image: {
  34799. source: "./media/characters/saphinara/back.svg",
  34800. extra: 591/531,
  34801. bottom: 13/604
  34802. },
  34803. form: "normal"
  34804. },
  34805. frontTail: {
  34806. height: math.unit(15 + 7/12, "feet"),
  34807. weight: math.unit(1150, "tons"),
  34808. name: "Front (Full Tail)",
  34809. image: {
  34810. source: "./media/characters/saphinara/front-tail.svg",
  34811. extra: 2256/1630,
  34812. bottom: 261/2517
  34813. },
  34814. form: "normal"
  34815. },
  34816. insides: {
  34817. height: math.unit(11.92, "feet"),
  34818. name: "Insides",
  34819. image: {
  34820. source: "./media/characters/saphinara/insides.svg"
  34821. },
  34822. form: "normal"
  34823. },
  34824. head: {
  34825. height: math.unit(4.17, "feet"),
  34826. name: "Head",
  34827. image: {
  34828. source: "./media/characters/saphinara/head.svg"
  34829. },
  34830. form: "normal"
  34831. },
  34832. tongue: {
  34833. height: math.unit(4.60, "feet"),
  34834. name: "Tongue",
  34835. image: {
  34836. source: "./media/characters/saphinara/tongue.svg"
  34837. },
  34838. form: "normal"
  34839. },
  34840. headEnraged: {
  34841. height: math.unit(5.55, "feet"),
  34842. name: "Head (Enraged)",
  34843. image: {
  34844. source: "./media/characters/saphinara/head-enraged.svg"
  34845. },
  34846. form: "normal"
  34847. },
  34848. wings: {
  34849. height: math.unit(11.95, "feet"),
  34850. name: "Wings",
  34851. image: {
  34852. source: "./media/characters/saphinara/wings.svg"
  34853. },
  34854. form: "normal"
  34855. },
  34856. feathers: {
  34857. height: math.unit(8.92, "feet"),
  34858. name: "Feathers",
  34859. image: {
  34860. source: "./media/characters/saphinara/feathers.svg"
  34861. },
  34862. form: "normal"
  34863. },
  34864. shackles: {
  34865. height: math.unit(2, "feet"),
  34866. name: "Shackles",
  34867. image: {
  34868. source: "./media/characters/saphinara/shackles.svg"
  34869. },
  34870. form: "normal"
  34871. },
  34872. eyes: {
  34873. height: math.unit(1.331, "feet"),
  34874. name: "Eyes",
  34875. image: {
  34876. source: "./media/characters/saphinara/eyes.svg"
  34877. },
  34878. form: "normal"
  34879. },
  34880. eyesEnraged: {
  34881. height: math.unit(1.331, "feet"),
  34882. name: "Eyes (Enraged)",
  34883. image: {
  34884. source: "./media/characters/saphinara/eyes-enraged.svg"
  34885. },
  34886. form: "normal"
  34887. },
  34888. trueFormSide: {
  34889. height: math.unit(200, "feet"),
  34890. weight: math.unit(1e7, "tons"),
  34891. name: "Side",
  34892. image: {
  34893. source: "./media/characters/saphinara/true-form-side.svg",
  34894. extra: 1399/770,
  34895. bottom: 97/1496
  34896. },
  34897. form: "true-form",
  34898. default: true
  34899. },
  34900. trueFormMaw: {
  34901. height: math.unit(71.5, "feet"),
  34902. name: "Maw",
  34903. image: {
  34904. source: "./media/characters/saphinara/true-form-maw.svg",
  34905. extra: 2302/1453,
  34906. bottom: 0/2302
  34907. },
  34908. form: "true-form"
  34909. },
  34910. meowberusSide: {
  34911. height: math.unit(75, "feet"),
  34912. weight: math.unit(180000, "kg"),
  34913. preyCapacity: math.unit(50000, "people"),
  34914. name: "Side",
  34915. image: {
  34916. source: "./media/characters/saphinara/meowberus-side.svg",
  34917. extra: 1400/711,
  34918. bottom: 126/1526
  34919. },
  34920. form: "meowberus",
  34921. extraAttributes: {
  34922. "pawArea": {
  34923. name: "Paw Size",
  34924. power: 2,
  34925. type: "area",
  34926. base: math.unit(35, "m^2")
  34927. }
  34928. }
  34929. },
  34930. },
  34931. [
  34932. {
  34933. name: "Normal",
  34934. height: math.unit(15 + 7/12, "feet"),
  34935. default: true,
  34936. form: "normal"
  34937. },
  34938. {
  34939. name: "Angry",
  34940. height: math.unit(30 + 6/12, "feet"),
  34941. form: "normal"
  34942. },
  34943. {
  34944. name: "Enraged",
  34945. height: math.unit(102 + 1/12, "feet"),
  34946. form: "normal"
  34947. },
  34948. {
  34949. name: "True",
  34950. height: math.unit(200, "feet"),
  34951. default: true,
  34952. form: "true-form"
  34953. },
  34954. {
  34955. name: "Normal",
  34956. height: math.unit(75, "feet"),
  34957. default: true,
  34958. form: "meowberus"
  34959. },
  34960. ],
  34961. {
  34962. "normal": {
  34963. name: "Normal",
  34964. default: true
  34965. },
  34966. "true-form": {
  34967. name: "True Form"
  34968. },
  34969. "meowberus": {
  34970. name: "Meowberus",
  34971. },
  34972. }
  34973. ))
  34974. characterMakers.push(() => makeCharacter(
  34975. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34976. {
  34977. front: {
  34978. height: math.unit(6 + 8/12, "feet"),
  34979. weight: math.unit(300, "lb"),
  34980. name: "Front",
  34981. image: {
  34982. source: "./media/characters/jrain/front.svg",
  34983. extra: 3039/2865,
  34984. bottom: 399/3438
  34985. }
  34986. },
  34987. back: {
  34988. height: math.unit(6 + 8/12, "feet"),
  34989. weight: math.unit(300, "lb"),
  34990. name: "Back",
  34991. image: {
  34992. source: "./media/characters/jrain/back.svg",
  34993. extra: 3089/2938,
  34994. bottom: 172/3261
  34995. }
  34996. },
  34997. head: {
  34998. height: math.unit(2.14, "feet"),
  34999. name: "Head",
  35000. image: {
  35001. source: "./media/characters/jrain/head.svg"
  35002. }
  35003. },
  35004. maw: {
  35005. height: math.unit(1.77, "feet"),
  35006. name: "Maw",
  35007. image: {
  35008. source: "./media/characters/jrain/maw.svg"
  35009. }
  35010. },
  35011. leftHand: {
  35012. height: math.unit(1.1, "feet"),
  35013. name: "Left Hand",
  35014. image: {
  35015. source: "./media/characters/jrain/left-hand.svg"
  35016. }
  35017. },
  35018. rightHand: {
  35019. height: math.unit(1.1, "feet"),
  35020. name: "Right Hand",
  35021. image: {
  35022. source: "./media/characters/jrain/right-hand.svg"
  35023. }
  35024. },
  35025. eye: {
  35026. height: math.unit(0.35, "feet"),
  35027. name: "Eye",
  35028. image: {
  35029. source: "./media/characters/jrain/eye.svg"
  35030. }
  35031. },
  35032. },
  35033. [
  35034. {
  35035. name: "Normal",
  35036. height: math.unit(6 + 8/12, "feet"),
  35037. default: true
  35038. },
  35039. {
  35040. name: "Casually Large",
  35041. height: math.unit(25, "feet")
  35042. },
  35043. {
  35044. name: "Giant",
  35045. height: math.unit(100, "feet")
  35046. },
  35047. {
  35048. name: "Kaiju",
  35049. height: math.unit(300, "feet")
  35050. },
  35051. ]
  35052. ))
  35053. characterMakers.push(() => makeCharacter(
  35054. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35055. {
  35056. dragon: {
  35057. height: math.unit(5, "meters"),
  35058. name: "Dragon",
  35059. image: {
  35060. source: "./media/characters/sabrina/dragon.svg",
  35061. extra: 3670 / 2365,
  35062. bottom: 333 / 4003
  35063. }
  35064. },
  35065. gryphon: {
  35066. height: math.unit(3, "meters"),
  35067. name: "Gryphon",
  35068. image: {
  35069. source: "./media/characters/sabrina/gryphon.svg",
  35070. extra: 1576 / 945,
  35071. bottom: 71 / 1647
  35072. }
  35073. },
  35074. snake: {
  35075. height: math.unit(12, "meters"),
  35076. name: "Snake",
  35077. image: {
  35078. source: "./media/characters/sabrina/snake.svg",
  35079. extra: 1758 / 1320,
  35080. bottom: 186 / 1944
  35081. }
  35082. },
  35083. collar: {
  35084. height: math.unit(1.86, "meters"),
  35085. name: "Collar",
  35086. image: {
  35087. source: "./media/characters/sabrina/collar.svg"
  35088. }
  35089. },
  35090. eye: {
  35091. height: math.unit(0.53, "meters"),
  35092. name: "Eye",
  35093. image: {
  35094. source: "./media/characters/sabrina/eye.svg"
  35095. }
  35096. },
  35097. foot: {
  35098. height: math.unit(1.86, "meters"),
  35099. name: "Foot",
  35100. image: {
  35101. source: "./media/characters/sabrina/foot.svg"
  35102. }
  35103. },
  35104. hand: {
  35105. height: math.unit(1.32, "meters"),
  35106. name: "Hand",
  35107. image: {
  35108. source: "./media/characters/sabrina/hand.svg"
  35109. }
  35110. },
  35111. head: {
  35112. height: math.unit(2.44, "meters"),
  35113. name: "Head",
  35114. image: {
  35115. source: "./media/characters/sabrina/head.svg"
  35116. }
  35117. },
  35118. headAngry: {
  35119. height: math.unit(2.44, "meters"),
  35120. name: "Head (Angry))",
  35121. image: {
  35122. source: "./media/characters/sabrina/head-angry.svg"
  35123. }
  35124. },
  35125. maw: {
  35126. height: math.unit(1.65, "meters"),
  35127. name: "Maw",
  35128. image: {
  35129. source: "./media/characters/sabrina/maw.svg"
  35130. }
  35131. },
  35132. spikes: {
  35133. height: math.unit(1.69, "meters"),
  35134. name: "Spikes",
  35135. image: {
  35136. source: "./media/characters/sabrina/spikes.svg"
  35137. }
  35138. },
  35139. stomach: {
  35140. height: math.unit(1.15, "meters"),
  35141. name: "Stomach",
  35142. image: {
  35143. source: "./media/characters/sabrina/stomach.svg"
  35144. }
  35145. },
  35146. tongue: {
  35147. height: math.unit(1.27, "meters"),
  35148. name: "Tongue",
  35149. image: {
  35150. source: "./media/characters/sabrina/tongue.svg"
  35151. }
  35152. },
  35153. wingDorsal: {
  35154. height: math.unit(4.85, "meters"),
  35155. name: "Wing (Dorsal)",
  35156. image: {
  35157. source: "./media/characters/sabrina/wing-dorsal.svg"
  35158. }
  35159. },
  35160. wingVentral: {
  35161. height: math.unit(4.85, "meters"),
  35162. name: "Wing (Ventral)",
  35163. image: {
  35164. source: "./media/characters/sabrina/wing-ventral.svg"
  35165. }
  35166. },
  35167. },
  35168. [
  35169. {
  35170. name: "Normal",
  35171. height: math.unit(5, "meters"),
  35172. default: true
  35173. },
  35174. ]
  35175. ))
  35176. characterMakers.push(() => makeCharacter(
  35177. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35178. {
  35179. frontMaid: {
  35180. height: math.unit(5 + 5/12, "feet"),
  35181. weight: math.unit(130, "lb"),
  35182. name: "Front (Maid)",
  35183. image: {
  35184. source: "./media/characters/midnight-tales/front-maid.svg",
  35185. extra: 489/454,
  35186. bottom: 61/550
  35187. }
  35188. },
  35189. frontFormal: {
  35190. height: math.unit(5 + 5/12, "feet"),
  35191. weight: math.unit(130, "lb"),
  35192. name: "Front (Formal)",
  35193. image: {
  35194. source: "./media/characters/midnight-tales/front-formal.svg",
  35195. extra: 489/454,
  35196. bottom: 61/550
  35197. }
  35198. },
  35199. back: {
  35200. height: math.unit(5 + 5/12, "feet"),
  35201. weight: math.unit(130, "lb"),
  35202. name: "Back",
  35203. image: {
  35204. source: "./media/characters/midnight-tales/back.svg",
  35205. extra: 498/456,
  35206. bottom: 33/531
  35207. }
  35208. },
  35209. frontBeast: {
  35210. height: math.unit(40, "feet"),
  35211. weight: math.unit(64000, "lb"),
  35212. name: "Front (Beast)",
  35213. image: {
  35214. source: "./media/characters/midnight-tales/front-beast.svg",
  35215. extra: 927/860,
  35216. bottom: 53/980
  35217. }
  35218. },
  35219. backBeast: {
  35220. height: math.unit(40, "feet"),
  35221. weight: math.unit(64000, "lb"),
  35222. name: "Back (Beast)",
  35223. image: {
  35224. source: "./media/characters/midnight-tales/back-beast.svg",
  35225. extra: 929/855,
  35226. bottom: 16/945
  35227. }
  35228. },
  35229. footBeast: {
  35230. height: math.unit(6.7, "feet"),
  35231. name: "Foot (Beast)",
  35232. image: {
  35233. source: "./media/characters/midnight-tales/foot-beast.svg"
  35234. }
  35235. },
  35236. headBeast: {
  35237. height: math.unit(8, "feet"),
  35238. name: "Head (Beast)",
  35239. image: {
  35240. source: "./media/characters/midnight-tales/head-beast.svg"
  35241. }
  35242. },
  35243. },
  35244. [
  35245. {
  35246. name: "Normal",
  35247. height: math.unit(5 + 5 / 12, "feet"),
  35248. default: true
  35249. },
  35250. {
  35251. name: "Macro",
  35252. height: math.unit(25, "feet")
  35253. },
  35254. ]
  35255. ))
  35256. characterMakers.push(() => makeCharacter(
  35257. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35258. {
  35259. front: {
  35260. height: math.unit(5 + 10/12, "feet"),
  35261. name: "Front",
  35262. image: {
  35263. source: "./media/characters/argon/front.svg",
  35264. extra: 2009/1935,
  35265. bottom: 118/2127
  35266. }
  35267. },
  35268. back: {
  35269. height: math.unit(5 + 10/12, "feet"),
  35270. name: "Back",
  35271. image: {
  35272. source: "./media/characters/argon/back.svg",
  35273. extra: 2047/1992,
  35274. bottom: 20/2067
  35275. }
  35276. },
  35277. frontDressed: {
  35278. height: math.unit(5 + 10/12, "feet"),
  35279. name: "Front (Dressed)",
  35280. image: {
  35281. source: "./media/characters/argon/front-dressed.svg",
  35282. extra: 2009/1935,
  35283. bottom: 118/2127
  35284. }
  35285. },
  35286. },
  35287. [
  35288. {
  35289. name: "Normal",
  35290. height: math.unit(5 + 10/12, "feet"),
  35291. default: true
  35292. },
  35293. ]
  35294. ))
  35295. characterMakers.push(() => makeCharacter(
  35296. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35297. {
  35298. front: {
  35299. height: math.unit(8 + 6/12, "feet"),
  35300. weight: math.unit(1150, "lb"),
  35301. name: "Front",
  35302. image: {
  35303. source: "./media/characters/kichi/front.svg",
  35304. extra: 1267/1164,
  35305. bottom: 61/1328
  35306. }
  35307. },
  35308. back: {
  35309. height: math.unit(8 + 6/12, "feet"),
  35310. weight: math.unit(1150, "lb"),
  35311. name: "Back",
  35312. image: {
  35313. source: "./media/characters/kichi/back.svg",
  35314. extra: 1273/1166,
  35315. bottom: 33/1306
  35316. }
  35317. },
  35318. },
  35319. [
  35320. {
  35321. name: "Normal",
  35322. height: math.unit(8 + 6/12, "feet"),
  35323. default: true
  35324. },
  35325. ]
  35326. ))
  35327. characterMakers.push(() => makeCharacter(
  35328. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35329. {
  35330. front: {
  35331. height: math.unit(6, "feet"),
  35332. weight: math.unit(210, "lb"),
  35333. name: "Front",
  35334. image: {
  35335. source: "./media/characters/manetel-greyscale/front.svg",
  35336. extra: 350/312,
  35337. bottom: 8/358
  35338. }
  35339. },
  35340. },
  35341. [
  35342. {
  35343. name: "Micro",
  35344. height: math.unit(2, "inches")
  35345. },
  35346. {
  35347. name: "Normal",
  35348. height: math.unit(6, "feet"),
  35349. default: true
  35350. },
  35351. {
  35352. name: "Minimacro",
  35353. height: math.unit(17, "feet")
  35354. },
  35355. {
  35356. name: "Macro",
  35357. height: math.unit(117, "feet")
  35358. },
  35359. ]
  35360. ))
  35361. characterMakers.push(() => makeCharacter(
  35362. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35363. {
  35364. side: {
  35365. height: math.unit(5 + 1/12, "feet"),
  35366. weight: math.unit(418, "lb"),
  35367. name: "Side",
  35368. image: {
  35369. source: "./media/characters/softpurr/side.svg",
  35370. extra: 1993/1945,
  35371. bottom: 134/2127
  35372. }
  35373. },
  35374. front: {
  35375. height: math.unit(5 + 1/12, "feet"),
  35376. weight: math.unit(418, "lb"),
  35377. name: "Front",
  35378. image: {
  35379. source: "./media/characters/softpurr/front.svg",
  35380. extra: 1950/1856,
  35381. bottom: 174/2124
  35382. }
  35383. },
  35384. paw: {
  35385. height: math.unit(1, "feet"),
  35386. name: "Paw",
  35387. image: {
  35388. source: "./media/characters/softpurr/paw.svg"
  35389. }
  35390. },
  35391. },
  35392. [
  35393. {
  35394. name: "Normal",
  35395. height: math.unit(5 + 1/12, "feet"),
  35396. default: true
  35397. },
  35398. ]
  35399. ))
  35400. characterMakers.push(() => makeCharacter(
  35401. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35402. {
  35403. front: {
  35404. height: math.unit(260, "meters"),
  35405. name: "Front",
  35406. image: {
  35407. source: "./media/characters/anahita/front.svg",
  35408. extra: 665/635,
  35409. bottom: 89/754
  35410. }
  35411. },
  35412. },
  35413. [
  35414. {
  35415. name: "Macro",
  35416. height: math.unit(260, "meters"),
  35417. default: true
  35418. },
  35419. ]
  35420. ))
  35421. characterMakers.push(() => makeCharacter(
  35422. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35423. {
  35424. front: {
  35425. height: math.unit(4 + 10/12, "feet"),
  35426. weight: math.unit(160, "lb"),
  35427. name: "Front",
  35428. image: {
  35429. source: "./media/characters/chip-mouse/front.svg",
  35430. extra: 3528/3408,
  35431. bottom: 0/3528
  35432. }
  35433. },
  35434. frontNsfw: {
  35435. height: math.unit(4 + 10/12, "feet"),
  35436. weight: math.unit(160, "lb"),
  35437. name: "Front (NSFW)",
  35438. image: {
  35439. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35440. extra: 3528/3408,
  35441. bottom: 0/3528
  35442. }
  35443. },
  35444. },
  35445. [
  35446. {
  35447. name: "Normal",
  35448. height: math.unit(4 + 10/12, "feet"),
  35449. default: true
  35450. },
  35451. ]
  35452. ))
  35453. characterMakers.push(() => makeCharacter(
  35454. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35455. {
  35456. side: {
  35457. height: math.unit(10, "feet"),
  35458. weight: math.unit(14000, "lb"),
  35459. name: "Side",
  35460. image: {
  35461. source: "./media/characters/kremm/side.svg",
  35462. extra: 1390/1053,
  35463. bottom: 90/1480
  35464. }
  35465. },
  35466. gut: {
  35467. height: math.unit(5.8, "feet"),
  35468. name: "Gut",
  35469. image: {
  35470. source: "./media/characters/kremm/gut.svg"
  35471. }
  35472. },
  35473. ass: {
  35474. height: math.unit(6.1, "feet"),
  35475. name: "Ass",
  35476. image: {
  35477. source: "./media/characters/kremm/ass.svg"
  35478. }
  35479. },
  35480. jaws: {
  35481. height: math.unit(2.2, "feet"),
  35482. name: "Jaws",
  35483. image: {
  35484. source: "./media/characters/kremm/jaws.svg"
  35485. }
  35486. },
  35487. dick: {
  35488. height: math.unit(4.26, "feet"),
  35489. name: "Dick",
  35490. image: {
  35491. source: "./media/characters/kremm/dick.svg"
  35492. }
  35493. },
  35494. },
  35495. [
  35496. {
  35497. name: "Normal",
  35498. height: math.unit(10, "feet"),
  35499. default: true
  35500. },
  35501. ]
  35502. ))
  35503. characterMakers.push(() => makeCharacter(
  35504. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35505. {
  35506. front: {
  35507. height: math.unit(30, "stories"),
  35508. name: "Front",
  35509. image: {
  35510. source: "./media/characters/kai/front.svg",
  35511. extra: 1892/1718,
  35512. bottom: 162/2054
  35513. }
  35514. },
  35515. },
  35516. [
  35517. {
  35518. name: "Macro",
  35519. height: math.unit(30, "stories"),
  35520. default: true
  35521. },
  35522. ]
  35523. ))
  35524. characterMakers.push(() => makeCharacter(
  35525. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35526. {
  35527. front: {
  35528. height: math.unit(6 + 4/12, "feet"),
  35529. weight: math.unit(145, "lb"),
  35530. name: "Front",
  35531. image: {
  35532. source: "./media/characters/sykes/front.svg",
  35533. extra: 1321 / 1187,
  35534. bottom: 66 / 1387
  35535. }
  35536. },
  35537. back: {
  35538. height: math.unit(6 + 4/12, "feet"),
  35539. weight: math.unit(145, "lb"),
  35540. name: "Back",
  35541. image: {
  35542. source: "./media/characters/sykes/back.svg",
  35543. extra: 1326/1181,
  35544. bottom: 31/1357
  35545. }
  35546. },
  35547. traditionalOutfit: {
  35548. height: math.unit(6 + 4/12, "feet"),
  35549. weight: math.unit(145, "lb"),
  35550. name: "Traditional Outfit",
  35551. image: {
  35552. source: "./media/characters/sykes/traditional-outfit.svg",
  35553. extra: 1321 / 1187,
  35554. bottom: 66 / 1387
  35555. }
  35556. },
  35557. adventureOutfit: {
  35558. height: math.unit(6 + 4/12, "feet"),
  35559. weight: math.unit(145, "lb"),
  35560. name: "Adventure Outfit",
  35561. image: {
  35562. source: "./media/characters/sykes/adventure-outfit.svg",
  35563. extra: 1321 / 1187,
  35564. bottom: 66 / 1387
  35565. }
  35566. },
  35567. handLeft: {
  35568. height: math.unit(0.9, "feet"),
  35569. name: "Hand (Left)",
  35570. image: {
  35571. source: "./media/characters/sykes/hand-left.svg"
  35572. }
  35573. },
  35574. handRight: {
  35575. height: math.unit(0.839, "feet"),
  35576. name: "Hand (Right)",
  35577. image: {
  35578. source: "./media/characters/sykes/hand-right.svg"
  35579. }
  35580. },
  35581. leftFoot: {
  35582. height: math.unit(1.2, "feet"),
  35583. name: "Foot (Left)",
  35584. image: {
  35585. source: "./media/characters/sykes/foot-left.svg"
  35586. }
  35587. },
  35588. rightFoot: {
  35589. height: math.unit(1.2, "feet"),
  35590. name: "Foot (Right)",
  35591. image: {
  35592. source: "./media/characters/sykes/foot-right.svg"
  35593. }
  35594. },
  35595. maw: {
  35596. height: math.unit(1.93, "feet"),
  35597. name: "Maw",
  35598. image: {
  35599. source: "./media/characters/sykes/maw.svg"
  35600. }
  35601. },
  35602. teeth: {
  35603. height: math.unit(0.51, "feet"),
  35604. name: "Teeth",
  35605. image: {
  35606. source: "./media/characters/sykes/teeth.svg"
  35607. }
  35608. },
  35609. tongue: {
  35610. height: math.unit(2.13, "feet"),
  35611. name: "Tongue",
  35612. image: {
  35613. source: "./media/characters/sykes/tongue.svg"
  35614. }
  35615. },
  35616. uvula: {
  35617. height: math.unit(0.16, "feet"),
  35618. name: "Uvula",
  35619. image: {
  35620. source: "./media/characters/sykes/uvula.svg"
  35621. }
  35622. },
  35623. collar: {
  35624. height: math.unit(0.287, "feet"),
  35625. name: "Collar",
  35626. image: {
  35627. source: "./media/characters/sykes/collar.svg"
  35628. }
  35629. },
  35630. tail: {
  35631. height: math.unit(3.8, "feet"),
  35632. name: "Tail",
  35633. image: {
  35634. source: "./media/characters/sykes/tail.svg"
  35635. }
  35636. },
  35637. },
  35638. [
  35639. {
  35640. name: "Shrunken",
  35641. height: math.unit(5, "inches")
  35642. },
  35643. {
  35644. name: "Normal",
  35645. height: math.unit(6 + 4 / 12, "feet"),
  35646. default: true
  35647. },
  35648. {
  35649. name: "Big",
  35650. height: math.unit(15, "feet")
  35651. },
  35652. ]
  35653. ))
  35654. characterMakers.push(() => makeCharacter(
  35655. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35656. {
  35657. front: {
  35658. height: math.unit(5 + 8/12, "feet"),
  35659. weight: math.unit(190, "lb"),
  35660. name: "Front",
  35661. image: {
  35662. source: "./media/characters/oven-otter/front.svg",
  35663. extra: 1809/1740,
  35664. bottom: 181/1990
  35665. }
  35666. },
  35667. back: {
  35668. height: math.unit(5 + 8/12, "feet"),
  35669. weight: math.unit(190, "lb"),
  35670. name: "Back",
  35671. image: {
  35672. source: "./media/characters/oven-otter/back.svg",
  35673. extra: 1709/1635,
  35674. bottom: 118/1827
  35675. }
  35676. },
  35677. hand: {
  35678. height: math.unit(1.07, "feet"),
  35679. name: "Hand",
  35680. image: {
  35681. source: "./media/characters/oven-otter/hand.svg"
  35682. }
  35683. },
  35684. beans: {
  35685. height: math.unit(1.74, "feet"),
  35686. name: "Beans",
  35687. image: {
  35688. source: "./media/characters/oven-otter/beans.svg"
  35689. }
  35690. },
  35691. },
  35692. [
  35693. {
  35694. name: "Micro",
  35695. height: math.unit(0.5, "inches")
  35696. },
  35697. {
  35698. name: "Normal",
  35699. height: math.unit(5 + 8/12, "feet"),
  35700. default: true
  35701. },
  35702. {
  35703. name: "Macro",
  35704. height: math.unit(250, "feet")
  35705. },
  35706. {
  35707. name: "Really High",
  35708. height: math.unit(420, "feet")
  35709. },
  35710. ]
  35711. ))
  35712. characterMakers.push(() => makeCharacter(
  35713. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35714. {
  35715. front: {
  35716. height: math.unit(5, "meters"),
  35717. weight: math.unit(292000000000000, "kg"),
  35718. name: "Front",
  35719. image: {
  35720. source: "./media/characters/devourer/front.svg",
  35721. extra: 1800/1733,
  35722. bottom: 211/2011
  35723. }
  35724. },
  35725. maw: {
  35726. height: math.unit(1.1, "meter"),
  35727. name: "Maw",
  35728. image: {
  35729. source: "./media/characters/devourer/maw.svg"
  35730. }
  35731. },
  35732. },
  35733. [
  35734. {
  35735. name: "Small",
  35736. height: math.unit(3, "meters")
  35737. },
  35738. {
  35739. name: "Large",
  35740. height: math.unit(5, "meters"),
  35741. default: true
  35742. },
  35743. ]
  35744. ))
  35745. characterMakers.push(() => makeCharacter(
  35746. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35747. {
  35748. front: {
  35749. height: math.unit(6, "feet"),
  35750. weight: math.unit(400, "lb"),
  35751. name: "Front",
  35752. image: {
  35753. source: "./media/characters/ellarby/front.svg",
  35754. extra: 1909/1763,
  35755. bottom: 80/1989
  35756. }
  35757. },
  35758. back: {
  35759. height: math.unit(6, "feet"),
  35760. weight: math.unit(400, "lb"),
  35761. name: "Back",
  35762. image: {
  35763. source: "./media/characters/ellarby/back.svg",
  35764. extra: 1914/1784,
  35765. bottom: 172/2086
  35766. }
  35767. },
  35768. },
  35769. [
  35770. {
  35771. name: "Mischief",
  35772. height: math.unit(18, "inches")
  35773. },
  35774. {
  35775. name: "Trouble",
  35776. height: math.unit(12, "feet")
  35777. },
  35778. {
  35779. name: "Havoc",
  35780. height: math.unit(200, "feet"),
  35781. default: true
  35782. },
  35783. {
  35784. name: "Pandemonium",
  35785. height: math.unit(1, "mile")
  35786. },
  35787. {
  35788. name: "Catastrophe",
  35789. height: math.unit(100, "miles")
  35790. },
  35791. ]
  35792. ))
  35793. characterMakers.push(() => makeCharacter(
  35794. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35795. {
  35796. front: {
  35797. height: math.unit(4.7, "meters"),
  35798. weight: math.unit(6500, "kg"),
  35799. name: "Front",
  35800. image: {
  35801. source: "./media/characters/vex/front.svg",
  35802. extra: 1288/1140,
  35803. bottom: 100/1388
  35804. }
  35805. },
  35806. },
  35807. [
  35808. {
  35809. name: "Normal",
  35810. height: math.unit(4.7, "meters"),
  35811. default: true
  35812. },
  35813. ]
  35814. ))
  35815. characterMakers.push(() => makeCharacter(
  35816. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35817. {
  35818. normal: {
  35819. height: math.unit(6, "feet"),
  35820. weight: math.unit(350, "lb"),
  35821. name: "Normal",
  35822. image: {
  35823. source: "./media/characters/teshy/normal.svg",
  35824. extra: 1795/1735,
  35825. bottom: 16/1811
  35826. }
  35827. },
  35828. monsterFront: {
  35829. height: math.unit(12, "feet"),
  35830. weight: math.unit(4700, "lb"),
  35831. name: "Monster (Front)",
  35832. image: {
  35833. source: "./media/characters/teshy/monster-front.svg",
  35834. extra: 2042/2034,
  35835. bottom: 128/2170
  35836. }
  35837. },
  35838. monsterSide: {
  35839. height: math.unit(12, "feet"),
  35840. weight: math.unit(4700, "lb"),
  35841. name: "Monster (Side)",
  35842. image: {
  35843. source: "./media/characters/teshy/monster-side.svg",
  35844. extra: 2067/2056,
  35845. bottom: 70/2137
  35846. }
  35847. },
  35848. monsterBack: {
  35849. height: math.unit(12, "feet"),
  35850. weight: math.unit(4700, "lb"),
  35851. name: "Monster (Back)",
  35852. image: {
  35853. source: "./media/characters/teshy/monster-back.svg",
  35854. extra: 1921/1914,
  35855. bottom: 171/2092
  35856. }
  35857. },
  35858. },
  35859. [
  35860. {
  35861. name: "Normal",
  35862. height: math.unit(6, "feet"),
  35863. default: true
  35864. },
  35865. ]
  35866. ))
  35867. characterMakers.push(() => makeCharacter(
  35868. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35869. {
  35870. front: {
  35871. height: math.unit(6, "feet"),
  35872. name: "Front",
  35873. image: {
  35874. source: "./media/characters/ramey/front.svg",
  35875. extra: 790/787,
  35876. bottom: 27/817
  35877. }
  35878. },
  35879. },
  35880. [
  35881. {
  35882. name: "Normal",
  35883. height: math.unit(6, "feet"),
  35884. default: true
  35885. },
  35886. ]
  35887. ))
  35888. characterMakers.push(() => makeCharacter(
  35889. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35890. {
  35891. front: {
  35892. height: math.unit(5 + 5/12, "feet"),
  35893. weight: math.unit(120, "lb"),
  35894. name: "Front",
  35895. image: {
  35896. source: "./media/characters/phirae/front.svg",
  35897. extra: 2491/2436,
  35898. bottom: 38/2529
  35899. }
  35900. },
  35901. },
  35902. [
  35903. {
  35904. name: "Normal",
  35905. height: math.unit(5 + 5/12, "feet"),
  35906. default: true
  35907. },
  35908. ]
  35909. ))
  35910. characterMakers.push(() => makeCharacter(
  35911. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35912. {
  35913. front: {
  35914. height: math.unit(5 + 3/12, "feet"),
  35915. name: "Front",
  35916. image: {
  35917. source: "./media/characters/stagglas/front.svg",
  35918. extra: 962/882,
  35919. bottom: 53/1015
  35920. }
  35921. },
  35922. feral: {
  35923. height: math.unit(335, "cm"),
  35924. name: "Feral",
  35925. image: {
  35926. source: "./media/characters/stagglas/feral.svg",
  35927. extra: 1732/1090,
  35928. bottom: 48/1780
  35929. }
  35930. },
  35931. },
  35932. [
  35933. {
  35934. name: "Normal",
  35935. height: math.unit(5 + 3/12, "feet"),
  35936. default: true
  35937. },
  35938. ]
  35939. ))
  35940. characterMakers.push(() => makeCharacter(
  35941. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35942. {
  35943. front: {
  35944. height: math.unit(5 + 4/12, "feet"),
  35945. weight: math.unit(145, "lb"),
  35946. name: "Front",
  35947. image: {
  35948. source: "./media/characters/starra/front.svg",
  35949. extra: 1790/1691,
  35950. bottom: 91/1881
  35951. }
  35952. },
  35953. },
  35954. [
  35955. {
  35956. name: "Normal",
  35957. height: math.unit(5 + 4/12, "feet"),
  35958. default: true
  35959. },
  35960. ]
  35961. ))
  35962. characterMakers.push(() => makeCharacter(
  35963. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35964. {
  35965. front: {
  35966. height: math.unit(2.2, "meters"),
  35967. name: "Front",
  35968. image: {
  35969. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35970. extra: 1248/972,
  35971. bottom: 38/1286
  35972. }
  35973. },
  35974. },
  35975. [
  35976. {
  35977. name: "Normal",
  35978. height: math.unit(2.2, "meters"),
  35979. default: true
  35980. },
  35981. ]
  35982. ))
  35983. characterMakers.push(() => makeCharacter(
  35984. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35985. {
  35986. side: {
  35987. height: math.unit(8 + 2/12, "feet"),
  35988. weight: math.unit(1240, "lb"),
  35989. name: "Side",
  35990. image: {
  35991. source: "./media/characters/mika-valentine/side.svg",
  35992. extra: 2670/2501,
  35993. bottom: 250/2920
  35994. }
  35995. },
  35996. },
  35997. [
  35998. {
  35999. name: "Normal",
  36000. height: math.unit(8 + 2/12, "feet"),
  36001. default: true
  36002. },
  36003. ]
  36004. ))
  36005. characterMakers.push(() => makeCharacter(
  36006. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36007. {
  36008. front: {
  36009. height: math.unit(7 + 2/12, "feet"),
  36010. name: "Front",
  36011. image: {
  36012. source: "./media/characters/xoltol/front.svg",
  36013. extra: 2212/2124,
  36014. bottom: 84/2296
  36015. }
  36016. },
  36017. side: {
  36018. height: math.unit(7 + 2/12, "feet"),
  36019. name: "Side",
  36020. image: {
  36021. source: "./media/characters/xoltol/side.svg",
  36022. extra: 2273/2197,
  36023. bottom: 26/2299
  36024. }
  36025. },
  36026. hand: {
  36027. height: math.unit(2.5, "feet"),
  36028. name: "Hand",
  36029. image: {
  36030. source: "./media/characters/xoltol/hand.svg"
  36031. }
  36032. },
  36033. },
  36034. [
  36035. {
  36036. name: "Small-ish",
  36037. height: math.unit(5 + 11/12, "feet")
  36038. },
  36039. {
  36040. name: "Normal",
  36041. height: math.unit(7 + 2/12, "feet")
  36042. },
  36043. {
  36044. name: "\"Macro\"",
  36045. height: math.unit(14 + 9/12, "feet"),
  36046. default: true
  36047. },
  36048. {
  36049. name: "Alternate Height",
  36050. height: math.unit(20, "feet")
  36051. },
  36052. {
  36053. name: "Actually Macro",
  36054. height: math.unit(100, "feet")
  36055. },
  36056. ]
  36057. ))
  36058. characterMakers.push(() => makeCharacter(
  36059. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36060. {
  36061. front: {
  36062. height: math.unit(5 + 2/12, "feet"),
  36063. name: "Front",
  36064. image: {
  36065. source: "./media/characters/kotetsu-redwood/front.svg",
  36066. extra: 1053/942,
  36067. bottom: 60/1113
  36068. }
  36069. },
  36070. },
  36071. [
  36072. {
  36073. name: "Normal",
  36074. height: math.unit(5 + 2/12, "feet"),
  36075. default: true
  36076. },
  36077. ]
  36078. ))
  36079. characterMakers.push(() => makeCharacter(
  36080. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36081. {
  36082. front: {
  36083. height: math.unit(2.4, "meters"),
  36084. weight: math.unit(125, "kg"),
  36085. name: "Front",
  36086. image: {
  36087. source: "./media/characters/lilith/front.svg",
  36088. extra: 1590/1513,
  36089. bottom: 203/1793
  36090. }
  36091. },
  36092. },
  36093. [
  36094. {
  36095. name: "Humanoid",
  36096. height: math.unit(2.4, "meters")
  36097. },
  36098. {
  36099. name: "Normal",
  36100. height: math.unit(6, "meters"),
  36101. default: true
  36102. },
  36103. {
  36104. name: "Largest",
  36105. height: math.unit(55, "meters")
  36106. },
  36107. ]
  36108. ))
  36109. characterMakers.push(() => makeCharacter(
  36110. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36111. {
  36112. front: {
  36113. height: math.unit(8 + 4/12, "feet"),
  36114. weight: math.unit(535, "lb"),
  36115. name: "Front",
  36116. image: {
  36117. source: "./media/characters/beh'kah-bolger/front.svg",
  36118. extra: 1660/1603,
  36119. bottom: 37/1697
  36120. }
  36121. },
  36122. },
  36123. [
  36124. {
  36125. name: "Normal",
  36126. height: math.unit(8 + 4/12, "feet"),
  36127. default: true
  36128. },
  36129. {
  36130. name: "Kaiju",
  36131. height: math.unit(250, "feet")
  36132. },
  36133. {
  36134. name: "Still Growing",
  36135. height: math.unit(10, "miles")
  36136. },
  36137. {
  36138. name: "Continental",
  36139. height: math.unit(5000, "miles")
  36140. },
  36141. {
  36142. name: "Final Form",
  36143. height: math.unit(2500000, "miles")
  36144. },
  36145. ]
  36146. ))
  36147. characterMakers.push(() => makeCharacter(
  36148. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36149. {
  36150. front: {
  36151. height: math.unit(7 + 2/12, "feet"),
  36152. weight: math.unit(230, "kg"),
  36153. name: "Front",
  36154. image: {
  36155. source: "./media/characters/tatyana-milewska/front.svg",
  36156. extra: 1199/1150,
  36157. bottom: 86/1285
  36158. }
  36159. },
  36160. },
  36161. [
  36162. {
  36163. name: "Normal",
  36164. height: math.unit(7 + 2/12, "feet"),
  36165. default: true
  36166. },
  36167. {
  36168. name: "Big",
  36169. height: math.unit(12, "feet")
  36170. },
  36171. {
  36172. name: "Minimacro",
  36173. height: math.unit(20, "feet")
  36174. },
  36175. {
  36176. name: "Macro",
  36177. height: math.unit(120, "feet")
  36178. },
  36179. ]
  36180. ))
  36181. characterMakers.push(() => makeCharacter(
  36182. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36183. {
  36184. front: {
  36185. height: math.unit(7 + 8/12, "feet"),
  36186. weight: math.unit(152, "kg"),
  36187. name: "Front",
  36188. image: {
  36189. source: "./media/characters/helen-arri/front.svg",
  36190. extra: 440/423,
  36191. bottom: 14/454
  36192. }
  36193. },
  36194. back: {
  36195. height: math.unit(7 + 8/12, "feet"),
  36196. weight: math.unit(152, "kg"),
  36197. name: "Back",
  36198. image: {
  36199. source: "./media/characters/helen-arri/back.svg",
  36200. extra: 443/426,
  36201. bottom: 8/451
  36202. }
  36203. },
  36204. },
  36205. [
  36206. {
  36207. name: "Normal",
  36208. height: math.unit(7 + 8/12, "feet"),
  36209. default: true
  36210. },
  36211. {
  36212. name: "Big",
  36213. height: math.unit(14, "feet")
  36214. },
  36215. {
  36216. name: "Minimacro",
  36217. height: math.unit(24, "feet")
  36218. },
  36219. {
  36220. name: "Macro",
  36221. height: math.unit(140, "feet")
  36222. },
  36223. ]
  36224. ))
  36225. characterMakers.push(() => makeCharacter(
  36226. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36227. {
  36228. front: {
  36229. height: math.unit(6, "meters"),
  36230. name: "Front",
  36231. image: {
  36232. source: "./media/characters/ehanu-rehu/front.svg",
  36233. extra: 1800/1800,
  36234. bottom: 59/1859
  36235. }
  36236. },
  36237. },
  36238. [
  36239. {
  36240. name: "Normal",
  36241. height: math.unit(6, "meters"),
  36242. default: true
  36243. },
  36244. ]
  36245. ))
  36246. characterMakers.push(() => makeCharacter(
  36247. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36248. {
  36249. front: {
  36250. height: math.unit(7 + 3/12, "feet"),
  36251. name: "Front",
  36252. image: {
  36253. source: "./media/characters/renholder/front.svg",
  36254. extra: 3096/2960,
  36255. bottom: 250/3346
  36256. }
  36257. },
  36258. },
  36259. [
  36260. {
  36261. name: "Normal Bat",
  36262. height: math.unit(7 + 3/12, "feet"),
  36263. default: true
  36264. },
  36265. {
  36266. name: "Slightly Tall Bat",
  36267. height: math.unit(100, "feet")
  36268. },
  36269. {
  36270. name: "Big Bat",
  36271. height: math.unit(1000, "feet")
  36272. },
  36273. {
  36274. name: "City-Sized Bat",
  36275. height: math.unit(200000, "feet")
  36276. },
  36277. {
  36278. name: "Bigger Bat",
  36279. height: math.unit(10000, "miles")
  36280. },
  36281. {
  36282. name: "Solar Sized Bat",
  36283. height: math.unit(100, "AU")
  36284. },
  36285. {
  36286. name: "Galactic Bat",
  36287. height: math.unit(200000, "lightyears")
  36288. },
  36289. {
  36290. name: "Universally Known Bat",
  36291. height: math.unit(1, "universe")
  36292. },
  36293. ]
  36294. ))
  36295. characterMakers.push(() => makeCharacter(
  36296. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36297. {
  36298. front: {
  36299. height: math.unit(6 + 11/12, "feet"),
  36300. weight: math.unit(250, "lb"),
  36301. name: "Front",
  36302. image: {
  36303. source: "./media/characters/cookiecat/front.svg",
  36304. extra: 893/827,
  36305. bottom: 14/907
  36306. }
  36307. },
  36308. },
  36309. [
  36310. {
  36311. name: "Micro",
  36312. height: math.unit(3, "inches")
  36313. },
  36314. {
  36315. name: "Normal",
  36316. height: math.unit(6 + 11/12, "feet"),
  36317. default: true
  36318. },
  36319. {
  36320. name: "Macro",
  36321. height: math.unit(100, "feet")
  36322. },
  36323. {
  36324. name: "Macro+",
  36325. height: math.unit(404, "feet")
  36326. },
  36327. {
  36328. name: "Megamacro",
  36329. height: math.unit(165, "miles")
  36330. },
  36331. {
  36332. name: "Planetary",
  36333. height: math.unit(4600, "miles")
  36334. },
  36335. ]
  36336. ))
  36337. characterMakers.push(() => makeCharacter(
  36338. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36339. {
  36340. front: {
  36341. height: math.unit(10 + 3/12, "feet"),
  36342. weight: math.unit(1500, "lb"),
  36343. name: "Front",
  36344. image: {
  36345. source: "./media/characters/tux-kusanagi/front.svg",
  36346. extra: 944/840,
  36347. bottom: 39/983
  36348. }
  36349. },
  36350. back: {
  36351. height: math.unit(10 + 3/12, "feet"),
  36352. weight: math.unit(1500, "lb"),
  36353. name: "Back",
  36354. image: {
  36355. source: "./media/characters/tux-kusanagi/back.svg",
  36356. extra: 941/842,
  36357. bottom: 28/969
  36358. }
  36359. },
  36360. rump: {
  36361. height: math.unit(5.25, "feet"),
  36362. name: "Rump",
  36363. image: {
  36364. source: "./media/characters/tux-kusanagi/rump.svg"
  36365. }
  36366. },
  36367. beak: {
  36368. height: math.unit(1.54, "feet"),
  36369. name: "Beak",
  36370. image: {
  36371. source: "./media/characters/tux-kusanagi/beak.svg"
  36372. }
  36373. },
  36374. },
  36375. [
  36376. {
  36377. name: "Normal",
  36378. height: math.unit(10 + 3/12, "feet"),
  36379. default: true
  36380. },
  36381. ]
  36382. ))
  36383. characterMakers.push(() => makeCharacter(
  36384. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36385. {
  36386. front: {
  36387. height: math.unit(58, "feet"),
  36388. weight: math.unit(200, "tons"),
  36389. name: "Front",
  36390. image: {
  36391. source: "./media/characters/uzarmazari/front.svg",
  36392. extra: 1575/1455,
  36393. bottom: 152/1727
  36394. }
  36395. },
  36396. back: {
  36397. height: math.unit(58, "feet"),
  36398. weight: math.unit(200, "tons"),
  36399. name: "Back",
  36400. image: {
  36401. source: "./media/characters/uzarmazari/back.svg",
  36402. extra: 1585/1510,
  36403. bottom: 157/1742
  36404. }
  36405. },
  36406. head: {
  36407. height: math.unit(26, "feet"),
  36408. name: "Head",
  36409. image: {
  36410. source: "./media/characters/uzarmazari/head.svg"
  36411. }
  36412. },
  36413. },
  36414. [
  36415. {
  36416. name: "Normal",
  36417. height: math.unit(58, "feet"),
  36418. default: true
  36419. },
  36420. ]
  36421. ))
  36422. characterMakers.push(() => makeCharacter(
  36423. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36424. {
  36425. side: {
  36426. height: math.unit(15, "feet"),
  36427. name: "Side",
  36428. image: {
  36429. source: "./media/characters/akitu/side.svg",
  36430. extra: 1421/1321,
  36431. bottom: 157/1578
  36432. }
  36433. },
  36434. front: {
  36435. height: math.unit(15, "feet"),
  36436. name: "Front",
  36437. image: {
  36438. source: "./media/characters/akitu/front.svg",
  36439. extra: 1435/1326,
  36440. bottom: 232/1667
  36441. }
  36442. },
  36443. },
  36444. [
  36445. {
  36446. name: "Normal",
  36447. height: math.unit(15, "feet"),
  36448. default: true
  36449. },
  36450. ]
  36451. ))
  36452. characterMakers.push(() => makeCharacter(
  36453. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36454. {
  36455. front: {
  36456. height: math.unit(10 + 8/12, "feet"),
  36457. name: "Front",
  36458. image: {
  36459. source: "./media/characters/azalie-croixland/front.svg",
  36460. extra: 1972/1856,
  36461. bottom: 31/2003
  36462. }
  36463. },
  36464. },
  36465. [
  36466. {
  36467. name: "Original Height",
  36468. height: math.unit(5 + 4/12, "feet")
  36469. },
  36470. {
  36471. name: "Normal Height",
  36472. height: math.unit(10 + 8/12, "feet"),
  36473. default: true
  36474. },
  36475. ]
  36476. ))
  36477. characterMakers.push(() => makeCharacter(
  36478. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36479. {
  36480. side: {
  36481. height: math.unit(7 + 1/12, "feet"),
  36482. weight: math.unit(245, "lb"),
  36483. name: "Side",
  36484. image: {
  36485. source: "./media/characters/kavus-kazian/side.svg",
  36486. extra: 349/342,
  36487. bottom: 15/364
  36488. }
  36489. },
  36490. },
  36491. [
  36492. {
  36493. name: "Normal",
  36494. height: math.unit(7 + 1/12, "feet"),
  36495. default: true
  36496. },
  36497. ]
  36498. ))
  36499. characterMakers.push(() => makeCharacter(
  36500. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36501. {
  36502. normalFront: {
  36503. height: math.unit(5 + 11/12, "feet"),
  36504. name: "Front",
  36505. image: {
  36506. source: "./media/characters/moonlight-rose/normal-front.svg",
  36507. extra: 1980/1825,
  36508. bottom: 18/1998
  36509. },
  36510. form: "normal",
  36511. default: true
  36512. },
  36513. normalBack: {
  36514. height: math.unit(5 + 11/12, "feet"),
  36515. name: "Back",
  36516. image: {
  36517. source: "./media/characters/moonlight-rose/normal-back.svg",
  36518. extra: 2010/1839,
  36519. bottom: 10/2020
  36520. },
  36521. form: "normal"
  36522. },
  36523. demonFront: {
  36524. height: math.unit(1.5, "earths"),
  36525. name: "Front",
  36526. image: {
  36527. source: "./media/characters/moonlight-rose/demon.svg",
  36528. extra: 1400/1294,
  36529. bottom: 45/1445
  36530. },
  36531. form: "demon",
  36532. default: true
  36533. },
  36534. terraFront: {
  36535. height: math.unit(1.5, "earths"),
  36536. name: "Front",
  36537. image: {
  36538. source: "./media/characters/moonlight-rose/terra.svg"
  36539. },
  36540. form: "terra",
  36541. default: true
  36542. },
  36543. jupiterFront: {
  36544. height: math.unit(69911*2, "km"),
  36545. name: "Front",
  36546. image: {
  36547. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36548. extra: 1367/1286,
  36549. bottom: 55/1422
  36550. },
  36551. form: "jupiter",
  36552. default: true
  36553. },
  36554. neptuneFront: {
  36555. height: math.unit(24622*2, "feet"),
  36556. name: "Front",
  36557. image: {
  36558. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36559. extra: 1851/1712,
  36560. bottom: 0/1851
  36561. },
  36562. form: "neptune",
  36563. default: true
  36564. },
  36565. },
  36566. [
  36567. {
  36568. name: "\"Natural\" Height",
  36569. height: math.unit(5 + 11/12, "feet"),
  36570. form: "normal"
  36571. },
  36572. {
  36573. name: "Smallest comfortable size",
  36574. height: math.unit(40, "meters"),
  36575. form: "normal"
  36576. },
  36577. {
  36578. name: "Common size",
  36579. height: math.unit(50, "km"),
  36580. form: "normal",
  36581. default: true
  36582. },
  36583. {
  36584. name: "Normal",
  36585. height: math.unit(1.5, "earths"),
  36586. form: "demon",
  36587. default: true
  36588. },
  36589. {
  36590. name: "Universal",
  36591. height: math.unit(15, "universes"),
  36592. form: "demon"
  36593. },
  36594. {
  36595. name: "Earth",
  36596. height: math.unit(1.5, "earths"),
  36597. form: "terra",
  36598. default: true
  36599. },
  36600. {
  36601. name: "Super Earth",
  36602. height: math.unit(67.5, "earths"),
  36603. form: "terra"
  36604. },
  36605. {
  36606. name: "Doesn't fit in a solar system...",
  36607. height: math.unit(1, "galaxy"),
  36608. form: "terra"
  36609. },
  36610. {
  36611. name: "Saturn",
  36612. height: math.unit(58232*2, "km"),
  36613. form: "jupiter"
  36614. },
  36615. {
  36616. name: "Jupiter",
  36617. height: math.unit(69911*2, "km"),
  36618. form: "jupiter",
  36619. default: true
  36620. },
  36621. {
  36622. name: "HD 100546 b",
  36623. height: math.unit(482938, "km"),
  36624. form: "jupiter"
  36625. },
  36626. {
  36627. name: "Enceladus",
  36628. height: math.unit(513*2, "km"),
  36629. form: "neptune"
  36630. },
  36631. {
  36632. name: "Europe",
  36633. height: math.unit(1560*2, "km"),
  36634. form: "neptune"
  36635. },
  36636. {
  36637. name: "Neptune",
  36638. height: math.unit(24622*2, "km"),
  36639. form: "neptune",
  36640. default: true
  36641. },
  36642. {
  36643. name: "CoRoT-9b",
  36644. height: math.unit(75067*2, "km"),
  36645. form: "neptune"
  36646. },
  36647. ],
  36648. {
  36649. "normal": {
  36650. name: "Normal",
  36651. default: true
  36652. },
  36653. "demon": {
  36654. name: "Demon"
  36655. },
  36656. "terra": {
  36657. name: "Terra"
  36658. },
  36659. "jupiter": {
  36660. name: "Jupiter"
  36661. },
  36662. "neptune": {
  36663. name: "Neptune"
  36664. }
  36665. }
  36666. ))
  36667. characterMakers.push(() => makeCharacter(
  36668. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36669. {
  36670. front: {
  36671. height: math.unit(16, "feet"),
  36672. weight: math.unit(610, "kg"),
  36673. name: "Front",
  36674. image: {
  36675. source: "./media/characters/huckle/front.svg",
  36676. extra: 1731/1625,
  36677. bottom: 33/1764
  36678. }
  36679. },
  36680. back: {
  36681. height: math.unit(16, "feet"),
  36682. weight: math.unit(610, "kg"),
  36683. name: "Back",
  36684. image: {
  36685. source: "./media/characters/huckle/back.svg",
  36686. extra: 1738/1651,
  36687. bottom: 37/1775
  36688. }
  36689. },
  36690. laughing: {
  36691. height: math.unit(3.75, "feet"),
  36692. name: "Laughing",
  36693. image: {
  36694. source: "./media/characters/huckle/laughing.svg"
  36695. }
  36696. },
  36697. angry: {
  36698. height: math.unit(4.15, "feet"),
  36699. name: "Angry",
  36700. image: {
  36701. source: "./media/characters/huckle/angry.svg"
  36702. }
  36703. },
  36704. },
  36705. [
  36706. {
  36707. name: "Normal",
  36708. height: math.unit(16, "feet"),
  36709. default: true
  36710. },
  36711. {
  36712. name: "Mini Macro",
  36713. height: math.unit(463, "feet")
  36714. },
  36715. {
  36716. name: "Macro",
  36717. height: math.unit(1680, "meters")
  36718. },
  36719. {
  36720. name: "Mega Macro",
  36721. height: math.unit(175, "km")
  36722. },
  36723. {
  36724. name: "Terra Macro",
  36725. height: math.unit(32, "gigameters")
  36726. },
  36727. {
  36728. name: "Multiverse+",
  36729. height: math.unit(2.56e23, "yottameters")
  36730. },
  36731. ]
  36732. ))
  36733. characterMakers.push(() => makeCharacter(
  36734. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36735. {
  36736. front: {
  36737. height: math.unit(6 + 9/12, "feet"),
  36738. weight: math.unit(280, "lb"),
  36739. name: "Front",
  36740. image: {
  36741. source: "./media/characters/candy/front.svg",
  36742. extra: 234/217,
  36743. bottom: 11/245
  36744. }
  36745. },
  36746. },
  36747. [
  36748. {
  36749. name: "Really Small",
  36750. height: math.unit(0.1, "nm")
  36751. },
  36752. {
  36753. name: "Micro",
  36754. height: math.unit(2, "inches")
  36755. },
  36756. {
  36757. name: "Normal",
  36758. height: math.unit(6 + 9/12, "feet"),
  36759. default: true
  36760. },
  36761. {
  36762. name: "Small Macro",
  36763. height: math.unit(69, "feet")
  36764. },
  36765. {
  36766. name: "Macro",
  36767. height: math.unit(160, "feet")
  36768. },
  36769. {
  36770. name: "Megamacro",
  36771. height: math.unit(22000, "miles")
  36772. },
  36773. {
  36774. name: "Gigamacro",
  36775. height: math.unit(50000, "miles")
  36776. },
  36777. ]
  36778. ))
  36779. characterMakers.push(() => makeCharacter(
  36780. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36781. {
  36782. front: {
  36783. height: math.unit(4, "feet"),
  36784. weight: math.unit(90, "lb"),
  36785. name: "Front",
  36786. image: {
  36787. source: "./media/characters/joey-mcdonald/front.svg",
  36788. extra: 1059/852,
  36789. bottom: 33/1092
  36790. }
  36791. },
  36792. back: {
  36793. height: math.unit(4, "feet"),
  36794. weight: math.unit(90, "lb"),
  36795. name: "Back",
  36796. image: {
  36797. source: "./media/characters/joey-mcdonald/back.svg",
  36798. extra: 1077/879,
  36799. bottom: 5/1082
  36800. }
  36801. },
  36802. frontKobold: {
  36803. height: math.unit(4, "feet"),
  36804. weight: math.unit(100, "lb"),
  36805. name: "Front-kobold",
  36806. image: {
  36807. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36808. extra: 1480/1367,
  36809. bottom: 0/1480
  36810. }
  36811. },
  36812. backKobold: {
  36813. height: math.unit(4, "feet"),
  36814. weight: math.unit(100, "lb"),
  36815. name: "Back-kobold",
  36816. image: {
  36817. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36818. extra: 1449/1361,
  36819. bottom: 0/1449
  36820. }
  36821. },
  36822. },
  36823. [
  36824. {
  36825. name: "Normal",
  36826. height: math.unit(4, "feet"),
  36827. default: true
  36828. },
  36829. ]
  36830. ))
  36831. characterMakers.push(() => makeCharacter(
  36832. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36833. {
  36834. front: {
  36835. height: math.unit(12 + 6/12, "feet"),
  36836. name: "Front",
  36837. image: {
  36838. source: "./media/characters/kass-lockheed/front.svg",
  36839. extra: 354/343,
  36840. bottom: 9/363
  36841. }
  36842. },
  36843. back: {
  36844. height: math.unit(12 + 6/12, "feet"),
  36845. name: "Back",
  36846. image: {
  36847. source: "./media/characters/kass-lockheed/back.svg",
  36848. extra: 364/352,
  36849. bottom: 3/367
  36850. }
  36851. },
  36852. dick: {
  36853. height: math.unit(3.12, "feet"),
  36854. name: "Dick",
  36855. image: {
  36856. source: "./media/characters/kass-lockheed/dick.svg"
  36857. }
  36858. },
  36859. head: {
  36860. height: math.unit(2.6, "feet"),
  36861. name: "Head",
  36862. image: {
  36863. source: "./media/characters/kass-lockheed/head.svg"
  36864. }
  36865. },
  36866. bleh: {
  36867. height: math.unit(2.85, "feet"),
  36868. name: "Bleh",
  36869. image: {
  36870. source: "./media/characters/kass-lockheed/bleh.svg"
  36871. }
  36872. },
  36873. smug: {
  36874. height: math.unit(2.85, "feet"),
  36875. name: "Smug",
  36876. image: {
  36877. source: "./media/characters/kass-lockheed/smug.svg"
  36878. }
  36879. },
  36880. },
  36881. [
  36882. {
  36883. name: "Normal",
  36884. height: math.unit(12 + 6/12, "feet"),
  36885. default: true
  36886. },
  36887. ]
  36888. ))
  36889. characterMakers.push(() => makeCharacter(
  36890. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36891. {
  36892. front: {
  36893. height: math.unit(6 + 2/12, "feet"),
  36894. name: "Front",
  36895. image: {
  36896. source: "./media/characters/taylor/front.svg",
  36897. extra: 639/495,
  36898. bottom: 12/651
  36899. }
  36900. },
  36901. },
  36902. [
  36903. {
  36904. name: "Normal",
  36905. height: math.unit(6 + 2/12, "feet"),
  36906. default: true
  36907. },
  36908. {
  36909. name: "Big",
  36910. height: math.unit(15, "feet")
  36911. },
  36912. {
  36913. name: "Lorg",
  36914. height: math.unit(80, "feet")
  36915. },
  36916. {
  36917. name: "Too Lorg",
  36918. height: math.unit(120, "feet")
  36919. },
  36920. ]
  36921. ))
  36922. characterMakers.push(() => makeCharacter(
  36923. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36924. {
  36925. front: {
  36926. height: math.unit(15, "feet"),
  36927. name: "Front",
  36928. image: {
  36929. source: "./media/characters/kaizer/front.svg",
  36930. extra: 1612/1436,
  36931. bottom: 43/1655
  36932. }
  36933. },
  36934. },
  36935. [
  36936. {
  36937. name: "Normal",
  36938. height: math.unit(15, "feet"),
  36939. default: true
  36940. },
  36941. ]
  36942. ))
  36943. characterMakers.push(() => makeCharacter(
  36944. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36945. {
  36946. front: {
  36947. height: math.unit(2, "feet"),
  36948. weight: math.unit(30, "lb"),
  36949. name: "Front",
  36950. image: {
  36951. source: "./media/characters/sandy/front.svg",
  36952. extra: 1439/1307,
  36953. bottom: 194/1633
  36954. }
  36955. },
  36956. },
  36957. [
  36958. {
  36959. name: "Normal",
  36960. height: math.unit(2, "feet"),
  36961. default: true
  36962. },
  36963. ]
  36964. ))
  36965. characterMakers.push(() => makeCharacter(
  36966. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36967. {
  36968. front: {
  36969. height: math.unit(3, "feet"),
  36970. name: "Front",
  36971. image: {
  36972. source: "./media/characters/mellvi/front.svg",
  36973. extra: 1831/1630,
  36974. bottom: 58/1889
  36975. }
  36976. },
  36977. },
  36978. [
  36979. {
  36980. name: "Normal",
  36981. height: math.unit(3, "feet"),
  36982. default: true
  36983. },
  36984. ]
  36985. ))
  36986. characterMakers.push(() => makeCharacter(
  36987. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36988. {
  36989. front: {
  36990. height: math.unit(5 + 11/12, "feet"),
  36991. weight: math.unit(200, "lb"),
  36992. name: "Front",
  36993. image: {
  36994. source: "./media/characters/shirou/front.svg",
  36995. extra: 2491/2383,
  36996. bottom: 189/2680
  36997. }
  36998. },
  36999. back: {
  37000. height: math.unit(5 + 11/12, "feet"),
  37001. weight: math.unit(200, "lb"),
  37002. name: "Back",
  37003. image: {
  37004. source: "./media/characters/shirou/back.svg",
  37005. extra: 2554/2450,
  37006. bottom: 76/2630
  37007. }
  37008. },
  37009. },
  37010. [
  37011. {
  37012. name: "Normal",
  37013. height: math.unit(5 + 11/12, "feet"),
  37014. default: true
  37015. },
  37016. ]
  37017. ))
  37018. characterMakers.push(() => makeCharacter(
  37019. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37020. {
  37021. front: {
  37022. height: math.unit(6 + 3/12, "feet"),
  37023. weight: math.unit(177, "lb"),
  37024. name: "Front",
  37025. image: {
  37026. source: "./media/characters/noryu/front.svg",
  37027. extra: 973/885,
  37028. bottom: 10/983
  37029. }
  37030. },
  37031. },
  37032. [
  37033. {
  37034. name: "Normal",
  37035. height: math.unit(6 + 3/12, "feet"),
  37036. default: true
  37037. },
  37038. ]
  37039. ))
  37040. characterMakers.push(() => makeCharacter(
  37041. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37042. {
  37043. front: {
  37044. height: math.unit(5 + 6/12, "feet"),
  37045. weight: math.unit(170, "lb"),
  37046. name: "Front",
  37047. image: {
  37048. source: "./media/characters/mevolas-rubenido/front.svg",
  37049. extra: 2109/1901,
  37050. bottom: 96/2205
  37051. }
  37052. },
  37053. },
  37054. [
  37055. {
  37056. name: "Normal",
  37057. height: math.unit(5 + 6/12, "feet"),
  37058. default: true
  37059. },
  37060. ]
  37061. ))
  37062. characterMakers.push(() => makeCharacter(
  37063. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37064. {
  37065. front: {
  37066. height: math.unit(100, "feet"),
  37067. name: "Front",
  37068. image: {
  37069. source: "./media/characters/dee/front.svg",
  37070. extra: 2153/2036,
  37071. bottom: 59/2212
  37072. }
  37073. },
  37074. back: {
  37075. height: math.unit(100, "feet"),
  37076. name: "Back",
  37077. image: {
  37078. source: "./media/characters/dee/back.svg",
  37079. extra: 2183/2058,
  37080. bottom: 75/2258
  37081. }
  37082. },
  37083. foot: {
  37084. height: math.unit(19.43, "feet"),
  37085. name: "Foot",
  37086. image: {
  37087. source: "./media/characters/dee/foot.svg"
  37088. }
  37089. },
  37090. hoof: {
  37091. height: math.unit(20.6, "feet"),
  37092. name: "Hoof",
  37093. image: {
  37094. source: "./media/characters/dee/hoof.svg"
  37095. }
  37096. },
  37097. },
  37098. [
  37099. {
  37100. name: "Macro",
  37101. height: math.unit(100, "feet"),
  37102. default: true
  37103. },
  37104. ]
  37105. ))
  37106. characterMakers.push(() => makeCharacter(
  37107. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37108. {
  37109. front: {
  37110. height: math.unit(5 + 6/12, "feet"),
  37111. name: "Front",
  37112. image: {
  37113. source: "./media/characters/teh/front.svg",
  37114. extra: 1002/847,
  37115. bottom: 62/1064
  37116. }
  37117. },
  37118. },
  37119. [
  37120. {
  37121. name: "Normal",
  37122. height: math.unit(5 + 6/12, "feet"),
  37123. default: true
  37124. },
  37125. ]
  37126. ))
  37127. characterMakers.push(() => makeCharacter(
  37128. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37129. {
  37130. side: {
  37131. height: math.unit(6 + 1/12, "feet"),
  37132. weight: math.unit(204, "lb"),
  37133. name: "Side",
  37134. image: {
  37135. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37136. extra: 974/775,
  37137. bottom: 169/1143
  37138. }
  37139. },
  37140. sitting: {
  37141. height: math.unit(6 + 2/12, "feet"),
  37142. weight: math.unit(204, "lb"),
  37143. name: "Sitting",
  37144. image: {
  37145. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37146. extra: 1175/964,
  37147. bottom: 378/1553
  37148. }
  37149. },
  37150. },
  37151. [
  37152. {
  37153. name: "Normal",
  37154. height: math.unit(6 + 1/12, "feet"),
  37155. default: true
  37156. },
  37157. ]
  37158. ))
  37159. characterMakers.push(() => makeCharacter(
  37160. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37161. {
  37162. front: {
  37163. height: math.unit(6, "inches"),
  37164. name: "Front",
  37165. image: {
  37166. source: "./media/characters/tululi/front.svg",
  37167. extra: 1997/1876,
  37168. bottom: 20/2017
  37169. }
  37170. },
  37171. },
  37172. [
  37173. {
  37174. name: "Normal",
  37175. height: math.unit(6, "inches"),
  37176. default: true
  37177. },
  37178. ]
  37179. ))
  37180. characterMakers.push(() => makeCharacter(
  37181. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37182. {
  37183. front: {
  37184. height: math.unit(4 + 1/12, "feet"),
  37185. name: "Front",
  37186. image: {
  37187. source: "./media/characters/star/front.svg",
  37188. extra: 1493/1189,
  37189. bottom: 48/1541
  37190. }
  37191. },
  37192. },
  37193. [
  37194. {
  37195. name: "Normal",
  37196. height: math.unit(4 + 1/12, "feet"),
  37197. default: true
  37198. },
  37199. ]
  37200. ))
  37201. characterMakers.push(() => makeCharacter(
  37202. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37203. {
  37204. front: {
  37205. height: math.unit(6 + 3/12, "feet"),
  37206. name: "Front",
  37207. image: {
  37208. source: "./media/characters/comet/front.svg",
  37209. extra: 1681/1462,
  37210. bottom: 26/1707
  37211. }
  37212. },
  37213. },
  37214. [
  37215. {
  37216. name: "Normal",
  37217. height: math.unit(6 + 3/12, "feet"),
  37218. default: true
  37219. },
  37220. ]
  37221. ))
  37222. characterMakers.push(() => makeCharacter(
  37223. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37224. {
  37225. front: {
  37226. height: math.unit(950, "feet"),
  37227. name: "Front",
  37228. image: {
  37229. source: "./media/characters/vortex/front.svg",
  37230. extra: 1497/1434,
  37231. bottom: 56/1553
  37232. }
  37233. },
  37234. maw: {
  37235. height: math.unit(285, "feet"),
  37236. name: "Maw",
  37237. image: {
  37238. source: "./media/characters/vortex/maw.svg"
  37239. }
  37240. },
  37241. },
  37242. [
  37243. {
  37244. name: "Macro",
  37245. height: math.unit(950, "feet"),
  37246. default: true
  37247. },
  37248. ]
  37249. ))
  37250. characterMakers.push(() => makeCharacter(
  37251. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37252. {
  37253. front: {
  37254. height: math.unit(600, "feet"),
  37255. weight: math.unit(0.02, "grams"),
  37256. name: "Front",
  37257. image: {
  37258. source: "./media/characters/doodle/front.svg",
  37259. extra: 1578/1413,
  37260. bottom: 37/1615
  37261. }
  37262. },
  37263. },
  37264. [
  37265. {
  37266. name: "Macro",
  37267. height: math.unit(600, "feet"),
  37268. default: true
  37269. },
  37270. ]
  37271. ))
  37272. characterMakers.push(() => makeCharacter(
  37273. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37274. {
  37275. front: {
  37276. height: math.unit(6 + 6/12, "feet"),
  37277. name: "Front",
  37278. image: {
  37279. source: "./media/characters/jai/front.svg",
  37280. extra: 1645/1534,
  37281. bottom: 115/1760
  37282. }
  37283. },
  37284. },
  37285. [
  37286. {
  37287. name: "Normal",
  37288. height: math.unit(6 + 6/12, "feet"),
  37289. default: true
  37290. },
  37291. ]
  37292. ))
  37293. characterMakers.push(() => makeCharacter(
  37294. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37295. {
  37296. front: {
  37297. height: math.unit(6 + 8/12, "feet"),
  37298. name: "Front",
  37299. image: {
  37300. source: "./media/characters/pixel/front.svg",
  37301. extra: 1900/1735,
  37302. bottom: 63/1963
  37303. }
  37304. },
  37305. },
  37306. [
  37307. {
  37308. name: "Normal",
  37309. height: math.unit(6 + 8/12, "feet"),
  37310. default: true
  37311. },
  37312. ]
  37313. ))
  37314. characterMakers.push(() => makeCharacter(
  37315. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37316. {
  37317. back: {
  37318. height: math.unit(4 + 1/12, "feet"),
  37319. weight: math.unit(75, "lb"),
  37320. name: "Back",
  37321. image: {
  37322. source: "./media/characters/rhett/back.svg",
  37323. extra: 930/878,
  37324. bottom: 25/955
  37325. }
  37326. },
  37327. front: {
  37328. height: math.unit(4 + 1/12, "feet"),
  37329. weight: math.unit(75, "lb"),
  37330. name: "Front",
  37331. image: {
  37332. source: "./media/characters/rhett/front.svg",
  37333. extra: 1682/1586,
  37334. bottom: 92/1774
  37335. }
  37336. },
  37337. },
  37338. [
  37339. {
  37340. name: "Micro",
  37341. height: math.unit(8, "inches")
  37342. },
  37343. {
  37344. name: "Tiny",
  37345. height: math.unit(2, "feet")
  37346. },
  37347. {
  37348. name: "Normal",
  37349. height: math.unit(4 + 1/12, "feet"),
  37350. default: true
  37351. },
  37352. ]
  37353. ))
  37354. characterMakers.push(() => makeCharacter(
  37355. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37356. {
  37357. front: {
  37358. height: math.unit(3 + 3/12, "feet"),
  37359. name: "Front",
  37360. image: {
  37361. source: "./media/characters/penny/front.svg",
  37362. extra: 1406/1311,
  37363. bottom: 26/1432
  37364. }
  37365. },
  37366. },
  37367. [
  37368. {
  37369. name: "Normal",
  37370. height: math.unit(3 + 3/12, "feet"),
  37371. default: true
  37372. },
  37373. ]
  37374. ))
  37375. characterMakers.push(() => makeCharacter(
  37376. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37377. {
  37378. front: {
  37379. height: math.unit(4 + 11/12, "feet"),
  37380. name: "Front",
  37381. image: {
  37382. source: "./media/characters/monty/front.svg",
  37383. extra: 1479/1209,
  37384. bottom: 0/1479
  37385. }
  37386. },
  37387. },
  37388. [
  37389. {
  37390. name: "Normal",
  37391. height: math.unit(4 + 11/12, "feet"),
  37392. default: true
  37393. },
  37394. ]
  37395. ))
  37396. characterMakers.push(() => makeCharacter(
  37397. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37398. {
  37399. front: {
  37400. height: math.unit(8 + 4/12, "feet"),
  37401. name: "Front",
  37402. image: {
  37403. source: "./media/characters/sterling/front.svg",
  37404. extra: 1420/1236,
  37405. bottom: 27/1447
  37406. }
  37407. },
  37408. },
  37409. [
  37410. {
  37411. name: "Normal",
  37412. height: math.unit(8 + 4/12, "feet"),
  37413. default: true
  37414. },
  37415. ]
  37416. ))
  37417. characterMakers.push(() => makeCharacter(
  37418. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37419. {
  37420. front: {
  37421. height: math.unit(15, "feet"),
  37422. name: "Front",
  37423. image: {
  37424. source: "./media/characters/marble/front.svg",
  37425. extra: 973/937,
  37426. bottom: 32/1005
  37427. }
  37428. },
  37429. },
  37430. [
  37431. {
  37432. name: "Normal",
  37433. height: math.unit(15, "feet"),
  37434. default: true
  37435. },
  37436. ]
  37437. ))
  37438. characterMakers.push(() => makeCharacter(
  37439. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37440. {
  37441. front: {
  37442. height: math.unit(3, "inches"),
  37443. name: "Front",
  37444. image: {
  37445. source: "./media/characters/powder/front.svg",
  37446. extra: 1504/1334,
  37447. bottom: 518/2022
  37448. }
  37449. },
  37450. },
  37451. [
  37452. {
  37453. name: "Normal",
  37454. height: math.unit(3, "inches"),
  37455. default: true
  37456. },
  37457. ]
  37458. ))
  37459. characterMakers.push(() => makeCharacter(
  37460. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37461. {
  37462. front: {
  37463. height: math.unit(4 + 5/12, "feet"),
  37464. name: "Front",
  37465. image: {
  37466. source: "./media/characters/joey-raccoon/front.svg",
  37467. extra: 1273/1197,
  37468. bottom: 0/1273
  37469. }
  37470. },
  37471. },
  37472. [
  37473. {
  37474. name: "Normal",
  37475. height: math.unit(4 + 5/12, "feet"),
  37476. default: true
  37477. },
  37478. ]
  37479. ))
  37480. characterMakers.push(() => makeCharacter(
  37481. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37482. {
  37483. front: {
  37484. height: math.unit(8 + 4/12, "feet"),
  37485. name: "Front",
  37486. image: {
  37487. source: "./media/characters/vick/front.svg",
  37488. extra: 2187/2118,
  37489. bottom: 47/2234
  37490. }
  37491. },
  37492. },
  37493. [
  37494. {
  37495. name: "Normal",
  37496. height: math.unit(8 + 4/12, "feet"),
  37497. default: true
  37498. },
  37499. ]
  37500. ))
  37501. characterMakers.push(() => makeCharacter(
  37502. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37503. {
  37504. front: {
  37505. height: math.unit(5 + 5/12, "feet"),
  37506. name: "Front",
  37507. image: {
  37508. source: "./media/characters/mitsy/front.svg",
  37509. extra: 1842/1695,
  37510. bottom: 0/1842
  37511. }
  37512. },
  37513. },
  37514. [
  37515. {
  37516. name: "Normal",
  37517. height: math.unit(5 + 5/12, "feet"),
  37518. default: true
  37519. },
  37520. ]
  37521. ))
  37522. characterMakers.push(() => makeCharacter(
  37523. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37524. {
  37525. front: {
  37526. height: math.unit(6 + 3/12, "feet"),
  37527. name: "Front",
  37528. image: {
  37529. source: "./media/characters/silvy/front.svg",
  37530. extra: 1995/1836,
  37531. bottom: 225/2220
  37532. }
  37533. },
  37534. },
  37535. [
  37536. {
  37537. name: "Normal",
  37538. height: math.unit(6 + 3/12, "feet"),
  37539. default: true
  37540. },
  37541. ]
  37542. ))
  37543. characterMakers.push(() => makeCharacter(
  37544. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37545. {
  37546. front: {
  37547. height: math.unit(3 + 8/12, "feet"),
  37548. name: "Front",
  37549. image: {
  37550. source: "./media/characters/rodney/front.svg",
  37551. extra: 1956/1747,
  37552. bottom: 31/1987
  37553. }
  37554. },
  37555. frontDressed: {
  37556. height: math.unit(2.9, "feet"),
  37557. name: "Front (Dressed)",
  37558. image: {
  37559. source: "./media/characters/rodney/front-dressed.svg",
  37560. extra: 1382/1241,
  37561. bottom: 385/1767
  37562. }
  37563. },
  37564. },
  37565. [
  37566. {
  37567. name: "Normal",
  37568. height: math.unit(3 + 8/12, "feet"),
  37569. default: true
  37570. },
  37571. ]
  37572. ))
  37573. characterMakers.push(() => makeCharacter(
  37574. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37575. {
  37576. front: {
  37577. height: math.unit(5 + 9/12, "feet"),
  37578. weight: math.unit(194, "lbs"),
  37579. name: "Front",
  37580. image: {
  37581. source: "./media/characters/zakail-sudekai/front.svg",
  37582. extra: 2696/2533,
  37583. bottom: 248/2944
  37584. }
  37585. },
  37586. maw: {
  37587. height: math.unit(1.35, "feet"),
  37588. name: "Maw",
  37589. image: {
  37590. source: "./media/characters/zakail-sudekai/maw.svg"
  37591. }
  37592. },
  37593. },
  37594. [
  37595. {
  37596. name: "Normal",
  37597. height: math.unit(5 + 9/12, "feet"),
  37598. default: true
  37599. },
  37600. ]
  37601. ))
  37602. characterMakers.push(() => makeCharacter(
  37603. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37604. {
  37605. front: {
  37606. height: math.unit(8 + 4/12, "feet"),
  37607. weight: math.unit(1200, "lb"),
  37608. name: "Front",
  37609. image: {
  37610. source: "./media/characters/eleanor/front.svg",
  37611. extra: 1226/1192,
  37612. bottom: 52/1278
  37613. }
  37614. },
  37615. back: {
  37616. height: math.unit(8 + 4/12, "feet"),
  37617. weight: math.unit(1200, "lb"),
  37618. name: "Back",
  37619. image: {
  37620. source: "./media/characters/eleanor/back.svg",
  37621. extra: 1242/1184,
  37622. bottom: 60/1302
  37623. }
  37624. },
  37625. head: {
  37626. height: math.unit(2.62, "feet"),
  37627. name: "Head",
  37628. image: {
  37629. source: "./media/characters/eleanor/head.svg"
  37630. }
  37631. },
  37632. },
  37633. [
  37634. {
  37635. name: "Normal",
  37636. height: math.unit(8 + 4/12, "feet"),
  37637. default: true
  37638. },
  37639. ]
  37640. ))
  37641. characterMakers.push(() => makeCharacter(
  37642. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37643. {
  37644. front: {
  37645. height: math.unit(8 + 4/12, "feet"),
  37646. weight: math.unit(750, "lb"),
  37647. name: "Front",
  37648. image: {
  37649. source: "./media/characters/tanya/front.svg",
  37650. extra: 1749/1615,
  37651. bottom: 33/1782
  37652. }
  37653. },
  37654. },
  37655. [
  37656. {
  37657. name: "Normal",
  37658. height: math.unit(8 + 4/12, "feet"),
  37659. default: true
  37660. },
  37661. ]
  37662. ))
  37663. characterMakers.push(() => makeCharacter(
  37664. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37665. {
  37666. front: {
  37667. height: math.unit(5, "feet"),
  37668. weight: math.unit(225, "lb"),
  37669. name: "Front",
  37670. image: {
  37671. source: "./media/characters/cindy/front.svg",
  37672. extra: 1320/1250,
  37673. bottom: 42/1362
  37674. }
  37675. },
  37676. frontDressed: {
  37677. height: math.unit(5, "feet"),
  37678. weight: math.unit(225, "lb"),
  37679. name: "Front (Dressed)",
  37680. image: {
  37681. source: "./media/characters/cindy/front-dressed.svg",
  37682. extra: 1320/1250,
  37683. bottom: 42/1362
  37684. }
  37685. },
  37686. back: {
  37687. height: math.unit(5, "feet"),
  37688. weight: math.unit(225, "lb"),
  37689. name: "Back",
  37690. image: {
  37691. source: "./media/characters/cindy/back.svg",
  37692. extra: 1384/1346,
  37693. bottom: 14/1398
  37694. }
  37695. },
  37696. },
  37697. [
  37698. {
  37699. name: "Normal",
  37700. height: math.unit(5, "feet"),
  37701. default: true
  37702. },
  37703. ]
  37704. ))
  37705. characterMakers.push(() => makeCharacter(
  37706. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37707. {
  37708. front: {
  37709. height: math.unit(6 + 9/12, "feet"),
  37710. weight: math.unit(440, "lb"),
  37711. name: "Front",
  37712. image: {
  37713. source: "./media/characters/wilbur-owen/front.svg",
  37714. extra: 1575/1448,
  37715. bottom: 72/1647
  37716. }
  37717. },
  37718. back: {
  37719. height: math.unit(6 + 9/12, "feet"),
  37720. weight: math.unit(440, "lb"),
  37721. name: "Back",
  37722. image: {
  37723. source: "./media/characters/wilbur-owen/back.svg",
  37724. extra: 1578/1445,
  37725. bottom: 36/1614
  37726. }
  37727. },
  37728. },
  37729. [
  37730. {
  37731. name: "Normal",
  37732. height: math.unit(6 + 9/12, "feet"),
  37733. default: true
  37734. },
  37735. ]
  37736. ))
  37737. characterMakers.push(() => makeCharacter(
  37738. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37739. {
  37740. front: {
  37741. height: math.unit(6 + 5/12, "feet"),
  37742. weight: math.unit(650, "lb"),
  37743. name: "Front",
  37744. image: {
  37745. source: "./media/characters/keegan/front.svg",
  37746. extra: 2387/2198,
  37747. bottom: 33/2420
  37748. }
  37749. },
  37750. side: {
  37751. height: math.unit(6 + 5/12, "feet"),
  37752. weight: math.unit(650, "lb"),
  37753. name: "Side",
  37754. image: {
  37755. source: "./media/characters/keegan/side.svg",
  37756. extra: 2390/2202,
  37757. bottom: 47/2437
  37758. }
  37759. },
  37760. back: {
  37761. height: math.unit(6 + 5/12, "feet"),
  37762. weight: math.unit(650, "lb"),
  37763. name: "Back",
  37764. image: {
  37765. source: "./media/characters/keegan/back.svg",
  37766. extra: 2418/2268,
  37767. bottom: 15/2433
  37768. }
  37769. },
  37770. frontSfw: {
  37771. height: math.unit(6 + 5/12, "feet"),
  37772. weight: math.unit(650, "lb"),
  37773. name: "Front (SFW)",
  37774. image: {
  37775. source: "./media/characters/keegan/front-sfw.svg",
  37776. extra: 2387/2198,
  37777. bottom: 33/2420
  37778. }
  37779. },
  37780. beans: {
  37781. height: math.unit(1.85, "feet"),
  37782. name: "Beans",
  37783. image: {
  37784. source: "./media/characters/keegan/beans.svg"
  37785. }
  37786. },
  37787. },
  37788. [
  37789. {
  37790. name: "Normal",
  37791. height: math.unit(6 + 5/12, "feet"),
  37792. default: true
  37793. },
  37794. ]
  37795. ))
  37796. characterMakers.push(() => makeCharacter(
  37797. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37798. {
  37799. front: {
  37800. height: math.unit(9, "feet"),
  37801. name: "Front",
  37802. image: {
  37803. source: "./media/characters/colton/front.svg",
  37804. extra: 1589/1326,
  37805. bottom: 139/1728
  37806. }
  37807. },
  37808. },
  37809. [
  37810. {
  37811. name: "Normal",
  37812. height: math.unit(9, "feet"),
  37813. default: true
  37814. },
  37815. ]
  37816. ))
  37817. characterMakers.push(() => makeCharacter(
  37818. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37819. {
  37820. front: {
  37821. height: math.unit(2 + 9/12, "feet"),
  37822. name: "Front",
  37823. image: {
  37824. source: "./media/characters/bora/front.svg",
  37825. extra: 1265/1250,
  37826. bottom: 24/1289
  37827. }
  37828. },
  37829. },
  37830. [
  37831. {
  37832. name: "Normal",
  37833. height: math.unit(2 + 9/12, "feet"),
  37834. default: true
  37835. },
  37836. ]
  37837. ))
  37838. characterMakers.push(() => makeCharacter(
  37839. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37840. {
  37841. front: {
  37842. height: math.unit(8, "feet"),
  37843. name: "Front",
  37844. image: {
  37845. source: "./media/characters/myu-myu/front.svg",
  37846. extra: 1949/1857,
  37847. bottom: 90/2039
  37848. }
  37849. },
  37850. },
  37851. [
  37852. {
  37853. name: "Normal",
  37854. height: math.unit(8, "feet"),
  37855. default: true
  37856. },
  37857. {
  37858. name: "Big",
  37859. height: math.unit(15, "feet")
  37860. },
  37861. {
  37862. name: "BIG",
  37863. height: math.unit(25, "feet")
  37864. },
  37865. ]
  37866. ))
  37867. characterMakers.push(() => makeCharacter(
  37868. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37869. {
  37870. side: {
  37871. height: math.unit(7 + 5/12, "feet"),
  37872. weight: math.unit(2800, "lb"),
  37873. name: "Side",
  37874. image: {
  37875. source: "./media/characters/haloren/side.svg",
  37876. extra: 1793/409,
  37877. bottom: 59/1852
  37878. }
  37879. },
  37880. frontPaw: {
  37881. height: math.unit(2.36, "feet"),
  37882. name: "Front paw",
  37883. image: {
  37884. source: "./media/characters/haloren/front-paw.svg"
  37885. }
  37886. },
  37887. hindPaw: {
  37888. height: math.unit(3.18, "feet"),
  37889. name: "Hind paw",
  37890. image: {
  37891. source: "./media/characters/haloren/hind-paw.svg"
  37892. }
  37893. },
  37894. maw: {
  37895. height: math.unit(5.05, "feet"),
  37896. name: "Maw",
  37897. image: {
  37898. source: "./media/characters/haloren/maw.svg"
  37899. }
  37900. },
  37901. dick: {
  37902. height: math.unit(2.90, "feet"),
  37903. name: "Dick",
  37904. image: {
  37905. source: "./media/characters/haloren/dick.svg"
  37906. }
  37907. },
  37908. },
  37909. [
  37910. {
  37911. name: "Normal",
  37912. height: math.unit(7 + 5/12, "feet"),
  37913. default: true
  37914. },
  37915. {
  37916. name: "Enhanced",
  37917. height: math.unit(14 + 3/12, "feet")
  37918. },
  37919. ]
  37920. ))
  37921. characterMakers.push(() => makeCharacter(
  37922. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37923. {
  37924. front: {
  37925. height: math.unit(171, "cm"),
  37926. name: "Front",
  37927. image: {
  37928. source: "./media/characters/kimmy/front.svg",
  37929. extra: 1491/1435,
  37930. bottom: 53/1544
  37931. }
  37932. },
  37933. },
  37934. [
  37935. {
  37936. name: "Small",
  37937. height: math.unit(9, "cm")
  37938. },
  37939. {
  37940. name: "Normal",
  37941. height: math.unit(171, "cm"),
  37942. default: true
  37943. },
  37944. ]
  37945. ))
  37946. characterMakers.push(() => makeCharacter(
  37947. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37948. {
  37949. front: {
  37950. height: math.unit(8, "feet"),
  37951. weight: math.unit(300, "lb"),
  37952. name: "Front",
  37953. image: {
  37954. source: "./media/characters/galeboomer/front.svg",
  37955. extra: 4651/4415,
  37956. bottom: 162/4813
  37957. }
  37958. },
  37959. back: {
  37960. height: math.unit(8, "feet"),
  37961. weight: math.unit(300, "lb"),
  37962. name: "Back",
  37963. image: {
  37964. source: "./media/characters/galeboomer/back.svg",
  37965. extra: 4544/4314,
  37966. bottom: 16/4560
  37967. }
  37968. },
  37969. frontAlt: {
  37970. height: math.unit(8, "feet"),
  37971. weight: math.unit(300, "lb"),
  37972. name: "Front (Alt)",
  37973. image: {
  37974. source: "./media/characters/galeboomer/front-alt.svg",
  37975. extra: 4458/4228,
  37976. bottom: 68/4526
  37977. }
  37978. },
  37979. maw: {
  37980. height: math.unit(1.2, "feet"),
  37981. name: "Maw",
  37982. image: {
  37983. source: "./media/characters/galeboomer/maw.svg"
  37984. }
  37985. },
  37986. },
  37987. [
  37988. {
  37989. name: "Normal",
  37990. height: math.unit(8, "feet"),
  37991. default: true
  37992. },
  37993. ]
  37994. ))
  37995. characterMakers.push(() => makeCharacter(
  37996. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37997. {
  37998. front: {
  37999. height: math.unit(5 + 9/12, "feet"),
  38000. weight: math.unit(120, "lb"),
  38001. name: "Front",
  38002. image: {
  38003. source: "./media/characters/chyr/front.svg",
  38004. extra: 1323/1254,
  38005. bottom: 63/1386
  38006. }
  38007. },
  38008. back: {
  38009. height: math.unit(5 + 9/12, "feet"),
  38010. weight: math.unit(120, "lb"),
  38011. name: "Back",
  38012. image: {
  38013. source: "./media/characters/chyr/back.svg",
  38014. extra: 1323/1252,
  38015. bottom: 48/1371
  38016. }
  38017. },
  38018. },
  38019. [
  38020. {
  38021. name: "Normal",
  38022. height: math.unit(5 + 9/12, "feet"),
  38023. default: true
  38024. },
  38025. ]
  38026. ))
  38027. characterMakers.push(() => makeCharacter(
  38028. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38029. {
  38030. front: {
  38031. height: math.unit(7, "feet"),
  38032. weight: math.unit(310, "lb"),
  38033. name: "Front",
  38034. image: {
  38035. source: "./media/characters/solarus/front.svg",
  38036. extra: 2415/2021,
  38037. bottom: 103/2518
  38038. }
  38039. },
  38040. back: {
  38041. height: math.unit(7, "feet"),
  38042. weight: math.unit(310, "lb"),
  38043. name: "Back",
  38044. image: {
  38045. source: "./media/characters/solarus/back.svg",
  38046. extra: 2463/2089,
  38047. bottom: 79/2542
  38048. }
  38049. },
  38050. },
  38051. [
  38052. {
  38053. name: "Normal",
  38054. height: math.unit(7, "feet"),
  38055. default: true
  38056. },
  38057. ]
  38058. ))
  38059. characterMakers.push(() => makeCharacter(
  38060. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38061. {
  38062. front: {
  38063. height: math.unit(16, "feet"),
  38064. name: "Front",
  38065. image: {
  38066. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38067. extra: 1844/1780,
  38068. bottom: 58/1902
  38069. }
  38070. },
  38071. winterCoat: {
  38072. height: math.unit(16, "feet"),
  38073. name: "Winter Coat",
  38074. image: {
  38075. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38076. extra: 1807/1775,
  38077. bottom: 69/1876
  38078. }
  38079. },
  38080. },
  38081. [
  38082. {
  38083. name: "Normal",
  38084. height: math.unit(16, "feet"),
  38085. default: true
  38086. },
  38087. {
  38088. name: "Chicago Size",
  38089. height: math.unit(560, "feet")
  38090. },
  38091. ]
  38092. ))
  38093. characterMakers.push(() => makeCharacter(
  38094. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38095. {
  38096. front: {
  38097. height: math.unit(11 + 6/12, "feet"),
  38098. weight: math.unit(1366, "lb"),
  38099. name: "Front",
  38100. image: {
  38101. source: "./media/characters/lexor/front.svg",
  38102. extra: 1560/1481,
  38103. bottom: 211/1771
  38104. }
  38105. },
  38106. back: {
  38107. height: math.unit(11 + 6/12, "feet"),
  38108. weight: math.unit(1366, "lb"),
  38109. name: "Back",
  38110. image: {
  38111. source: "./media/characters/lexor/back.svg",
  38112. extra: 1614/1533,
  38113. bottom: 76/1690
  38114. }
  38115. },
  38116. maw: {
  38117. height: math.unit(3, "feet"),
  38118. name: "Maw",
  38119. image: {
  38120. source: "./media/characters/lexor/maw.svg"
  38121. }
  38122. },
  38123. dick: {
  38124. height: math.unit(2.59, "feet"),
  38125. name: "Dick",
  38126. image: {
  38127. source: "./media/characters/lexor/dick.svg"
  38128. }
  38129. },
  38130. },
  38131. [
  38132. {
  38133. name: "Normal",
  38134. height: math.unit(11 + 6/12, "feet"),
  38135. default: true
  38136. },
  38137. ]
  38138. ))
  38139. characterMakers.push(() => makeCharacter(
  38140. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38141. {
  38142. front: {
  38143. height: math.unit(5 + 8/12, "feet"),
  38144. name: "Front",
  38145. image: {
  38146. source: "./media/characters/magnum/front.svg",
  38147. extra: 942/855,
  38148. bottom: 26/968
  38149. }
  38150. },
  38151. },
  38152. [
  38153. {
  38154. name: "Normal",
  38155. height: math.unit(5 + 8/12, "feet"),
  38156. default: true
  38157. },
  38158. ]
  38159. ))
  38160. characterMakers.push(() => makeCharacter(
  38161. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38162. {
  38163. front: {
  38164. height: math.unit(18 + 4/12, "feet"),
  38165. weight: math.unit(1500, "kg"),
  38166. name: "Front",
  38167. image: {
  38168. source: "./media/characters/solas-sharpsman/front.svg",
  38169. extra: 1698/1589,
  38170. bottom: 0/1698
  38171. }
  38172. },
  38173. },
  38174. [
  38175. {
  38176. name: "Normal",
  38177. height: math.unit(18 + 4/12, "feet"),
  38178. default: true
  38179. },
  38180. ]
  38181. ))
  38182. characterMakers.push(() => makeCharacter(
  38183. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38184. {
  38185. front: {
  38186. height: math.unit(5 + 5/12, "feet"),
  38187. weight: math.unit(180, "lb"),
  38188. name: "Front",
  38189. image: {
  38190. source: "./media/characters/october/front.svg",
  38191. extra: 1800/1650,
  38192. bottom: 0/1800
  38193. }
  38194. },
  38195. frontNsfw: {
  38196. height: math.unit(5 + 5/12, "feet"),
  38197. weight: math.unit(180, "lb"),
  38198. name: "Front (NSFW)",
  38199. image: {
  38200. source: "./media/characters/october/front-nsfw.svg",
  38201. extra: 1392/1307,
  38202. bottom: 42/1434
  38203. }
  38204. },
  38205. },
  38206. [
  38207. {
  38208. name: "Normal",
  38209. height: math.unit(5 + 5/12, "feet"),
  38210. default: true
  38211. },
  38212. ]
  38213. ))
  38214. characterMakers.push(() => makeCharacter(
  38215. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38216. {
  38217. front: {
  38218. height: math.unit(8 + 6/12, "feet"),
  38219. name: "Front",
  38220. image: {
  38221. source: "./media/characters/essynkardi/front.svg",
  38222. extra: 1914/1846,
  38223. bottom: 22/1936
  38224. }
  38225. },
  38226. },
  38227. [
  38228. {
  38229. name: "Normal",
  38230. height: math.unit(8 + 6/12, "feet"),
  38231. default: true
  38232. },
  38233. ]
  38234. ))
  38235. characterMakers.push(() => makeCharacter(
  38236. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38237. {
  38238. front: {
  38239. height: math.unit(6 + 6/12, "feet"),
  38240. weight: math.unit(7, "lb"),
  38241. name: "Front",
  38242. image: {
  38243. source: "./media/characters/icky/front.svg",
  38244. extra: 813/782,
  38245. bottom: 66/879
  38246. }
  38247. },
  38248. back: {
  38249. height: math.unit(6 + 6/12, "feet"),
  38250. weight: math.unit(7, "lb"),
  38251. name: "Back",
  38252. image: {
  38253. source: "./media/characters/icky/back.svg",
  38254. extra: 754/735,
  38255. bottom: 56/810
  38256. }
  38257. },
  38258. },
  38259. [
  38260. {
  38261. name: "Normal",
  38262. height: math.unit(6 + 6/12, "feet"),
  38263. default: true
  38264. },
  38265. ]
  38266. ))
  38267. characterMakers.push(() => makeCharacter(
  38268. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38269. {
  38270. front: {
  38271. height: math.unit(15, "feet"),
  38272. name: "Front",
  38273. image: {
  38274. source: "./media/characters/rojas/front.svg",
  38275. extra: 1462/1408,
  38276. bottom: 95/1557
  38277. }
  38278. },
  38279. back: {
  38280. height: math.unit(15, "feet"),
  38281. name: "Back",
  38282. image: {
  38283. source: "./media/characters/rojas/back.svg",
  38284. extra: 1023/954,
  38285. bottom: 28/1051
  38286. }
  38287. },
  38288. },
  38289. [
  38290. {
  38291. name: "Normal",
  38292. height: math.unit(15, "feet"),
  38293. default: true
  38294. },
  38295. ]
  38296. ))
  38297. characterMakers.push(() => makeCharacter(
  38298. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38299. {
  38300. frontHuman: {
  38301. height: math.unit(5 + 7/12, "feet"),
  38302. name: "Front (Human)",
  38303. image: {
  38304. source: "./media/characters/alek-dryagan/front-human.svg",
  38305. extra: 1687/1667,
  38306. bottom: 69/1756
  38307. }
  38308. },
  38309. backHuman: {
  38310. height: math.unit(5 + 7/12, "feet"),
  38311. name: "Back (Human)",
  38312. image: {
  38313. source: "./media/characters/alek-dryagan/back-human.svg",
  38314. extra: 1670/1649,
  38315. bottom: 65/1735
  38316. }
  38317. },
  38318. frontDemi: {
  38319. height: math.unit(65, "feet"),
  38320. name: "Front (Demi)",
  38321. image: {
  38322. source: "./media/characters/alek-dryagan/front-demi.svg",
  38323. extra: 1669/1642,
  38324. bottom: 49/1718
  38325. }
  38326. },
  38327. backDemi: {
  38328. height: math.unit(65, "feet"),
  38329. name: "Back (Demi)",
  38330. image: {
  38331. source: "./media/characters/alek-dryagan/back-demi.svg",
  38332. extra: 1658/1637,
  38333. bottom: 40/1698
  38334. }
  38335. },
  38336. mawHuman: {
  38337. height: math.unit(0.3, "feet"),
  38338. name: "Maw (Human)",
  38339. image: {
  38340. source: "./media/characters/alek-dryagan/maw-human.svg"
  38341. }
  38342. },
  38343. mawDemi: {
  38344. height: math.unit(3.8, "feet"),
  38345. name: "Maw (Demi)",
  38346. image: {
  38347. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38348. }
  38349. },
  38350. },
  38351. [
  38352. {
  38353. name: "Normal",
  38354. height: math.unit(5 + 7/12, "feet"),
  38355. default: true
  38356. },
  38357. ]
  38358. ))
  38359. characterMakers.push(() => makeCharacter(
  38360. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38361. {
  38362. frontHuman: {
  38363. height: math.unit(5 + 2/12, "feet"),
  38364. name: "Front (Human)",
  38365. image: {
  38366. source: "./media/characters/gen/front-human.svg",
  38367. extra: 1627/1538,
  38368. bottom: 71/1698
  38369. }
  38370. },
  38371. backHuman: {
  38372. height: math.unit(5 + 2/12, "feet"),
  38373. name: "Back (Human)",
  38374. image: {
  38375. source: "./media/characters/gen/back-human.svg",
  38376. extra: 1638/1548,
  38377. bottom: 69/1707
  38378. }
  38379. },
  38380. frontDemi: {
  38381. height: math.unit(5 + 2/12, "feet"),
  38382. name: "Front (Demi)",
  38383. image: {
  38384. source: "./media/characters/gen/front-demi.svg",
  38385. extra: 1627/1538,
  38386. bottom: 71/1698
  38387. }
  38388. },
  38389. backDemi: {
  38390. height: math.unit(5 + 2/12, "feet"),
  38391. name: "Back (Demi)",
  38392. image: {
  38393. source: "./media/characters/gen/back-demi.svg",
  38394. extra: 1638/1548,
  38395. bottom: 69/1707
  38396. }
  38397. },
  38398. },
  38399. [
  38400. {
  38401. name: "Normal",
  38402. height: math.unit(5 + 2/12, "feet"),
  38403. default: true
  38404. },
  38405. ]
  38406. ))
  38407. characterMakers.push(() => makeCharacter(
  38408. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38409. {
  38410. frontImp: {
  38411. height: math.unit(1 + 11/12, "feet"),
  38412. name: "Front (Imp)",
  38413. image: {
  38414. source: "./media/characters/max-kobold/front-imp.svg",
  38415. extra: 1238/1134,
  38416. bottom: 81/1319
  38417. }
  38418. },
  38419. backImp: {
  38420. height: math.unit(1 + 11/12, "feet"),
  38421. name: "Back (Imp)",
  38422. image: {
  38423. source: "./media/characters/max-kobold/back-imp.svg",
  38424. extra: 1334/1175,
  38425. bottom: 34/1368
  38426. }
  38427. },
  38428. frontDemi: {
  38429. height: math.unit(5 + 9/12, "feet"),
  38430. name: "Front (Demi)",
  38431. image: {
  38432. source: "./media/characters/max-kobold/front-demi.svg",
  38433. extra: 1715/1685,
  38434. bottom: 54/1769
  38435. }
  38436. },
  38437. backDemi: {
  38438. height: math.unit(5 + 9/12, "feet"),
  38439. name: "Back (Demi)",
  38440. image: {
  38441. source: "./media/characters/max-kobold/back-demi.svg",
  38442. extra: 1752/1729,
  38443. bottom: 41/1793
  38444. }
  38445. },
  38446. handImp: {
  38447. height: math.unit(0.45, "feet"),
  38448. name: "Hand (Imp)",
  38449. image: {
  38450. source: "./media/characters/max-kobold/hand.svg"
  38451. }
  38452. },
  38453. pawImp: {
  38454. height: math.unit(0.46, "feet"),
  38455. name: "Paw (Imp)",
  38456. image: {
  38457. source: "./media/characters/max-kobold/paw.svg"
  38458. }
  38459. },
  38460. handDemi: {
  38461. height: math.unit(0.80, "feet"),
  38462. name: "Hand (Demi)",
  38463. image: {
  38464. source: "./media/characters/max-kobold/hand.svg"
  38465. }
  38466. },
  38467. pawDemi: {
  38468. height: math.unit(1.1, "feet"),
  38469. name: "Paw (Demi)",
  38470. image: {
  38471. source: "./media/characters/max-kobold/paw.svg"
  38472. }
  38473. },
  38474. headImp: {
  38475. height: math.unit(1.33, "feet"),
  38476. name: "Head (Imp)",
  38477. image: {
  38478. source: "./media/characters/max-kobold/head-imp.svg"
  38479. }
  38480. },
  38481. mawImp: {
  38482. height: math.unit(0.75, "feet"),
  38483. name: "Maw (Imp)",
  38484. image: {
  38485. source: "./media/characters/max-kobold/maw-imp.svg"
  38486. }
  38487. },
  38488. mawDemi: {
  38489. height: math.unit(0.42, "feet"),
  38490. name: "Maw (Demi)",
  38491. image: {
  38492. source: "./media/characters/max-kobold/maw-demi.svg"
  38493. }
  38494. },
  38495. },
  38496. [
  38497. {
  38498. name: "Normal",
  38499. height: math.unit(1 + 11/12, "feet"),
  38500. default: true
  38501. },
  38502. ]
  38503. ))
  38504. characterMakers.push(() => makeCharacter(
  38505. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38506. {
  38507. front: {
  38508. height: math.unit(7 + 5/12, "feet"),
  38509. name: "Front",
  38510. image: {
  38511. source: "./media/characters/carbon/front.svg",
  38512. extra: 1754/1689,
  38513. bottom: 65/1819
  38514. }
  38515. },
  38516. back: {
  38517. height: math.unit(7 + 5/12, "feet"),
  38518. name: "Back",
  38519. image: {
  38520. source: "./media/characters/carbon/back.svg",
  38521. extra: 1762/1695,
  38522. bottom: 24/1786
  38523. }
  38524. },
  38525. frontGigantamax: {
  38526. height: math.unit(150, "feet"),
  38527. name: "Front (Gigantamax)",
  38528. image: {
  38529. source: "./media/characters/carbon/front-gigantamax.svg",
  38530. extra: 1826/1669,
  38531. bottom: 59/1885
  38532. }
  38533. },
  38534. backGigantamax: {
  38535. height: math.unit(150, "feet"),
  38536. name: "Back (Gigantamax)",
  38537. image: {
  38538. source: "./media/characters/carbon/back-gigantamax.svg",
  38539. extra: 1796/1653,
  38540. bottom: 53/1849
  38541. }
  38542. },
  38543. maw: {
  38544. height: math.unit(0.48, "feet"),
  38545. name: "Maw",
  38546. image: {
  38547. source: "./media/characters/carbon/maw.svg"
  38548. }
  38549. },
  38550. mawGigantamax: {
  38551. height: math.unit(7.5, "feet"),
  38552. name: "Maw (Gigantamax)",
  38553. image: {
  38554. source: "./media/characters/carbon/maw-gigantamax.svg"
  38555. }
  38556. },
  38557. },
  38558. [
  38559. {
  38560. name: "Normal",
  38561. height: math.unit(7 + 5/12, "feet"),
  38562. default: true
  38563. },
  38564. ]
  38565. ))
  38566. characterMakers.push(() => makeCharacter(
  38567. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38568. {
  38569. front: {
  38570. height: math.unit(6, "feet"),
  38571. name: "Front",
  38572. image: {
  38573. source: "./media/characters/maverick/front.svg",
  38574. extra: 1672/1661,
  38575. bottom: 85/1757
  38576. }
  38577. },
  38578. back: {
  38579. height: math.unit(6, "feet"),
  38580. name: "Back",
  38581. image: {
  38582. source: "./media/characters/maverick/back.svg",
  38583. extra: 1642/1631,
  38584. bottom: 38/1680
  38585. }
  38586. },
  38587. },
  38588. [
  38589. {
  38590. name: "Normal",
  38591. height: math.unit(6, "feet"),
  38592. default: true
  38593. },
  38594. ]
  38595. ))
  38596. characterMakers.push(() => makeCharacter(
  38597. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38598. {
  38599. front: {
  38600. height: math.unit(15, "feet"),
  38601. weight: math.unit(615, "lb"),
  38602. name: "Front",
  38603. image: {
  38604. source: "./media/characters/grockle/front.svg",
  38605. extra: 1535/1427,
  38606. bottom: 56/1591
  38607. }
  38608. },
  38609. },
  38610. [
  38611. {
  38612. name: "Normal",
  38613. height: math.unit(15, "feet"),
  38614. default: true
  38615. },
  38616. {
  38617. name: "Large",
  38618. height: math.unit(150, "feet")
  38619. },
  38620. {
  38621. name: "Macro",
  38622. height: math.unit(1876, "feet")
  38623. },
  38624. {
  38625. name: "Mega Macro",
  38626. height: math.unit(121940, "feet")
  38627. },
  38628. {
  38629. name: "Giga Macro",
  38630. height: math.unit(750, "km")
  38631. },
  38632. {
  38633. name: "Tera Macro",
  38634. height: math.unit(750000, "km")
  38635. },
  38636. {
  38637. name: "Galactic",
  38638. height: math.unit(1.4e5, "km")
  38639. },
  38640. {
  38641. name: "Godlike",
  38642. height: math.unit(9.8e280, "galaxies")
  38643. },
  38644. ]
  38645. ))
  38646. characterMakers.push(() => makeCharacter(
  38647. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38648. {
  38649. front: {
  38650. height: math.unit(11, "meters"),
  38651. weight: math.unit(20, "tonnes"),
  38652. name: "Front",
  38653. image: {
  38654. source: "./media/characters/alistair/front.svg",
  38655. extra: 1265/1009,
  38656. bottom: 93/1358
  38657. }
  38658. },
  38659. },
  38660. [
  38661. {
  38662. name: "Normal",
  38663. height: math.unit(11, "meters"),
  38664. default: true
  38665. },
  38666. ]
  38667. ))
  38668. characterMakers.push(() => makeCharacter(
  38669. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38670. {
  38671. front: {
  38672. height: math.unit(5 + 8/12, "feet"),
  38673. name: "Front",
  38674. image: {
  38675. source: "./media/characters/haruka/front.svg",
  38676. extra: 2012/1952,
  38677. bottom: 0/2012
  38678. }
  38679. },
  38680. },
  38681. [
  38682. {
  38683. name: "Normal",
  38684. height: math.unit(5 + 8/12, "feet"),
  38685. default: true
  38686. },
  38687. ]
  38688. ))
  38689. characterMakers.push(() => makeCharacter(
  38690. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38691. {
  38692. back: {
  38693. height: math.unit(9, "feet"),
  38694. name: "Back",
  38695. image: {
  38696. source: "./media/characters/vivian-sylveon/back.svg",
  38697. extra: 1853/1714,
  38698. bottom: 0/1853
  38699. }
  38700. },
  38701. },
  38702. [
  38703. {
  38704. name: "Normal",
  38705. height: math.unit(9, "feet"),
  38706. default: true
  38707. },
  38708. {
  38709. name: "Macro",
  38710. height: math.unit(500, "feet")
  38711. },
  38712. {
  38713. name: "Megamacro",
  38714. height: math.unit(600, "miles")
  38715. },
  38716. {
  38717. name: "Gigamacro",
  38718. height: math.unit(30000, "miles")
  38719. },
  38720. ]
  38721. ))
  38722. characterMakers.push(() => makeCharacter(
  38723. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38724. {
  38725. anthro: {
  38726. height: math.unit(5 + 10/12, "feet"),
  38727. weight: math.unit(100, "lb"),
  38728. name: "Anthro",
  38729. image: {
  38730. source: "./media/characters/daiki/anthro.svg",
  38731. extra: 1115/1027,
  38732. bottom: 69/1184
  38733. }
  38734. },
  38735. feral: {
  38736. height: math.unit(200, "feet"),
  38737. name: "Feral",
  38738. image: {
  38739. source: "./media/characters/daiki/feral.svg",
  38740. extra: 1256/313,
  38741. bottom: 39/1295
  38742. }
  38743. },
  38744. feralHead: {
  38745. height: math.unit(171, "feet"),
  38746. name: "Feral Head",
  38747. image: {
  38748. source: "./media/characters/daiki/feral-head.svg"
  38749. }
  38750. },
  38751. manaDragon: {
  38752. height: math.unit(170, "meters"),
  38753. name: "Mana-dragon",
  38754. image: {
  38755. source: "./media/characters/daiki/mana-dragon.svg",
  38756. extra: 763/420,
  38757. bottom: 97/860
  38758. }
  38759. },
  38760. },
  38761. [
  38762. {
  38763. name: "Normal",
  38764. height: math.unit(5 + 10/12, "feet"),
  38765. default: true
  38766. },
  38767. ]
  38768. ))
  38769. characterMakers.push(() => makeCharacter(
  38770. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38771. {
  38772. fullyEquippedFront: {
  38773. height: math.unit(3 + 1/12, "feet"),
  38774. weight: math.unit(24, "lb"),
  38775. name: "Fully Equipped (Front)",
  38776. image: {
  38777. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38778. extra: 687/605,
  38779. bottom: 18/705
  38780. }
  38781. },
  38782. fullyEquippedBack: {
  38783. height: math.unit(3 + 1/12, "feet"),
  38784. weight: math.unit(24, "lb"),
  38785. name: "Fully Equipped (Back)",
  38786. image: {
  38787. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38788. extra: 689/590,
  38789. bottom: 18/707
  38790. }
  38791. },
  38792. dailyWear: {
  38793. height: math.unit(3 + 1/12, "feet"),
  38794. weight: math.unit(24, "lb"),
  38795. name: "Daily Wear",
  38796. image: {
  38797. source: "./media/characters/tea-spot/daily-wear.svg",
  38798. extra: 701/620,
  38799. bottom: 21/722
  38800. }
  38801. },
  38802. maidWork: {
  38803. height: math.unit(3 + 1/12, "feet"),
  38804. weight: math.unit(24, "lb"),
  38805. name: "Maid Work",
  38806. image: {
  38807. source: "./media/characters/tea-spot/maid-work.svg",
  38808. extra: 693/609,
  38809. bottom: 15/708
  38810. }
  38811. },
  38812. },
  38813. [
  38814. {
  38815. name: "Normal",
  38816. height: math.unit(3 + 1/12, "feet"),
  38817. default: true
  38818. },
  38819. ]
  38820. ))
  38821. characterMakers.push(() => makeCharacter(
  38822. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38823. {
  38824. front: {
  38825. height: math.unit(175, "cm"),
  38826. weight: math.unit(75, "kg"),
  38827. name: "Front",
  38828. image: {
  38829. source: "./media/characters/chee/front.svg",
  38830. extra: 1796/1740,
  38831. bottom: 40/1836
  38832. }
  38833. },
  38834. },
  38835. [
  38836. {
  38837. name: "Micro-Micro",
  38838. height: math.unit(1, "nm")
  38839. },
  38840. {
  38841. name: "Micro-erst",
  38842. height: math.unit(1, "micrometer")
  38843. },
  38844. {
  38845. name: "Micro-er",
  38846. height: math.unit(1, "cm")
  38847. },
  38848. {
  38849. name: "Normal",
  38850. height: math.unit(175, "cm"),
  38851. default: true
  38852. },
  38853. {
  38854. name: "Macro",
  38855. height: math.unit(100, "m")
  38856. },
  38857. {
  38858. name: "Macro-er",
  38859. height: math.unit(1, "km")
  38860. },
  38861. {
  38862. name: "Macro-erst",
  38863. height: math.unit(10, "km")
  38864. },
  38865. {
  38866. name: "Macro-Macro",
  38867. height: math.unit(100, "km")
  38868. },
  38869. ]
  38870. ))
  38871. characterMakers.push(() => makeCharacter(
  38872. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38873. {
  38874. front: {
  38875. height: math.unit(11 + 9/12, "feet"),
  38876. weight: math.unit(935, "lb"),
  38877. name: "Front",
  38878. image: {
  38879. source: "./media/characters/kingsley/front.svg",
  38880. extra: 1803/1674,
  38881. bottom: 127/1930
  38882. }
  38883. },
  38884. frontNude: {
  38885. height: math.unit(11 + 9/12, "feet"),
  38886. weight: math.unit(935, "lb"),
  38887. name: "Front (Nude)",
  38888. image: {
  38889. source: "./media/characters/kingsley/front-nude.svg",
  38890. extra: 1803/1674,
  38891. bottom: 127/1930
  38892. }
  38893. },
  38894. },
  38895. [
  38896. {
  38897. name: "Normal",
  38898. height: math.unit(11 + 9/12, "feet"),
  38899. default: true
  38900. },
  38901. ]
  38902. ))
  38903. characterMakers.push(() => makeCharacter(
  38904. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38905. {
  38906. side: {
  38907. height: math.unit(9, "feet"),
  38908. name: "Side",
  38909. image: {
  38910. source: "./media/characters/rymel/side.svg",
  38911. extra: 792/469,
  38912. bottom: 121/913
  38913. }
  38914. },
  38915. maw: {
  38916. height: math.unit(2.4, "meters"),
  38917. name: "Maw",
  38918. image: {
  38919. source: "./media/characters/rymel/maw.svg"
  38920. }
  38921. },
  38922. },
  38923. [
  38924. {
  38925. name: "House Drake",
  38926. height: math.unit(2, "feet")
  38927. },
  38928. {
  38929. name: "Reduced",
  38930. height: math.unit(4.5, "feet")
  38931. },
  38932. {
  38933. name: "Normal",
  38934. height: math.unit(9, "feet"),
  38935. default: true
  38936. },
  38937. ]
  38938. ))
  38939. characterMakers.push(() => makeCharacter(
  38940. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38941. {
  38942. front: {
  38943. height: math.unit(1.74, "meters"),
  38944. weight: math.unit(55, "kg"),
  38945. name: "Front",
  38946. image: {
  38947. source: "./media/characters/rubus/front.svg",
  38948. extra: 1894/1742,
  38949. bottom: 44/1938
  38950. }
  38951. },
  38952. },
  38953. [
  38954. {
  38955. name: "Normal",
  38956. height: math.unit(1.74, "meters"),
  38957. default: true
  38958. },
  38959. ]
  38960. ))
  38961. characterMakers.push(() => makeCharacter(
  38962. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38963. {
  38964. front: {
  38965. height: math.unit(5 + 2/12, "feet"),
  38966. weight: math.unit(112, "lb"),
  38967. name: "Front",
  38968. image: {
  38969. source: "./media/characters/cassie-kingston/front.svg",
  38970. extra: 1438/1390,
  38971. bottom: 47/1485
  38972. }
  38973. },
  38974. },
  38975. [
  38976. {
  38977. name: "Normal",
  38978. height: math.unit(5 + 2/12, "feet"),
  38979. default: true
  38980. },
  38981. {
  38982. name: "Macro",
  38983. height: math.unit(128, "feet")
  38984. },
  38985. {
  38986. name: "Megamacro",
  38987. height: math.unit(2.56, "miles")
  38988. },
  38989. ]
  38990. ))
  38991. characterMakers.push(() => makeCharacter(
  38992. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38993. {
  38994. front: {
  38995. height: math.unit(7, "feet"),
  38996. name: "Front",
  38997. image: {
  38998. source: "./media/characters/fox/front.svg",
  38999. extra: 1798/1703,
  39000. bottom: 55/1853
  39001. }
  39002. },
  39003. back: {
  39004. height: math.unit(7, "feet"),
  39005. name: "Back",
  39006. image: {
  39007. source: "./media/characters/fox/back.svg",
  39008. extra: 1748/1649,
  39009. bottom: 32/1780
  39010. }
  39011. },
  39012. head: {
  39013. height: math.unit(1.95, "feet"),
  39014. name: "Head",
  39015. image: {
  39016. source: "./media/characters/fox/head.svg"
  39017. }
  39018. },
  39019. dick: {
  39020. height: math.unit(1.33, "feet"),
  39021. name: "Dick",
  39022. image: {
  39023. source: "./media/characters/fox/dick.svg"
  39024. }
  39025. },
  39026. foot: {
  39027. height: math.unit(1, "feet"),
  39028. name: "Foot",
  39029. image: {
  39030. source: "./media/characters/fox/foot.svg"
  39031. }
  39032. },
  39033. paw: {
  39034. height: math.unit(0.92, "feet"),
  39035. name: "Paw",
  39036. image: {
  39037. source: "./media/characters/fox/paw.svg"
  39038. }
  39039. },
  39040. },
  39041. [
  39042. {
  39043. name: "Small",
  39044. height: math.unit(3, "inches")
  39045. },
  39046. {
  39047. name: "\"Realistic\"",
  39048. height: math.unit(7, "feet")
  39049. },
  39050. {
  39051. name: "Normal",
  39052. height: math.unit(150, "feet"),
  39053. default: true
  39054. },
  39055. {
  39056. name: "BIG",
  39057. height: math.unit(1200, "feet")
  39058. },
  39059. {
  39060. name: "👀",
  39061. height: math.unit(5, "miles")
  39062. },
  39063. {
  39064. name: "👀👀👀",
  39065. height: math.unit(64, "miles")
  39066. },
  39067. ]
  39068. ))
  39069. characterMakers.push(() => makeCharacter(
  39070. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39071. {
  39072. front: {
  39073. height: math.unit(625, "feet"),
  39074. name: "Front",
  39075. image: {
  39076. source: "./media/characters/asonja-rossa/front.svg",
  39077. extra: 1833/1686,
  39078. bottom: 24/1857
  39079. }
  39080. },
  39081. back: {
  39082. height: math.unit(625, "feet"),
  39083. name: "Back",
  39084. image: {
  39085. source: "./media/characters/asonja-rossa/back.svg",
  39086. extra: 1852/1753,
  39087. bottom: 26/1878
  39088. }
  39089. },
  39090. },
  39091. [
  39092. {
  39093. name: "Macro",
  39094. height: math.unit(625, "feet"),
  39095. default: true
  39096. },
  39097. ]
  39098. ))
  39099. characterMakers.push(() => makeCharacter(
  39100. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39101. {
  39102. side: {
  39103. height: math.unit(8, "feet"),
  39104. name: "Side",
  39105. image: {
  39106. source: "./media/characters/rezukii/side.svg",
  39107. extra: 979/542,
  39108. bottom: 87/1066
  39109. }
  39110. },
  39111. sitting: {
  39112. height: math.unit(14.6, "feet"),
  39113. name: "Sitting",
  39114. image: {
  39115. source: "./media/characters/rezukii/sitting.svg",
  39116. extra: 1023/813,
  39117. bottom: 45/1068
  39118. }
  39119. },
  39120. },
  39121. [
  39122. {
  39123. name: "Tiny",
  39124. height: math.unit(2, "feet")
  39125. },
  39126. {
  39127. name: "Smol",
  39128. height: math.unit(4, "feet")
  39129. },
  39130. {
  39131. name: "Normal",
  39132. height: math.unit(8, "feet"),
  39133. default: true
  39134. },
  39135. {
  39136. name: "Big",
  39137. height: math.unit(12, "feet")
  39138. },
  39139. {
  39140. name: "Macro",
  39141. height: math.unit(30, "feet")
  39142. },
  39143. ]
  39144. ))
  39145. characterMakers.push(() => makeCharacter(
  39146. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39147. {
  39148. front: {
  39149. height: math.unit(14, "feet"),
  39150. weight: math.unit(9.5, "tonnes"),
  39151. name: "Front",
  39152. image: {
  39153. source: "./media/characters/dawnheart/front.svg",
  39154. extra: 2792/2675,
  39155. bottom: 64/2856
  39156. }
  39157. },
  39158. },
  39159. [
  39160. {
  39161. name: "Normal",
  39162. height: math.unit(14, "feet"),
  39163. default: true
  39164. },
  39165. ]
  39166. ))
  39167. characterMakers.push(() => makeCharacter(
  39168. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39169. {
  39170. front: {
  39171. height: math.unit(1.7, "m"),
  39172. name: "Front",
  39173. image: {
  39174. source: "./media/characters/gladi/front.svg",
  39175. extra: 1460/1362,
  39176. bottom: 19/1479
  39177. }
  39178. },
  39179. back: {
  39180. height: math.unit(1.7, "m"),
  39181. name: "Back",
  39182. image: {
  39183. source: "./media/characters/gladi/back.svg",
  39184. extra: 1459/1357,
  39185. bottom: 12/1471
  39186. }
  39187. },
  39188. feral: {
  39189. height: math.unit(2.05, "m"),
  39190. name: "Feral",
  39191. image: {
  39192. source: "./media/characters/gladi/feral.svg",
  39193. extra: 821/557,
  39194. bottom: 91/912
  39195. }
  39196. },
  39197. },
  39198. [
  39199. {
  39200. name: "Shortest",
  39201. height: math.unit(70, "cm")
  39202. },
  39203. {
  39204. name: "Normal",
  39205. height: math.unit(1.7, "m")
  39206. },
  39207. {
  39208. name: "Macro",
  39209. height: math.unit(10, "m"),
  39210. default: true
  39211. },
  39212. {
  39213. name: "Tallest",
  39214. height: math.unit(200, "m")
  39215. },
  39216. ]
  39217. ))
  39218. characterMakers.push(() => makeCharacter(
  39219. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39220. {
  39221. front: {
  39222. height: math.unit(5 + 7/12, "feet"),
  39223. weight: math.unit(2, "tons"),
  39224. name: "Front",
  39225. image: {
  39226. source: "./media/characters/erdno/front.svg",
  39227. extra: 1234/1129,
  39228. bottom: 35/1269
  39229. }
  39230. },
  39231. angled: {
  39232. height: math.unit(5 + 7/12, "feet"),
  39233. weight: math.unit(2, "tons"),
  39234. name: "Angled",
  39235. image: {
  39236. source: "./media/characters/erdno/angled.svg",
  39237. extra: 1185/1139,
  39238. bottom: 36/1221
  39239. }
  39240. },
  39241. side: {
  39242. height: math.unit(5 + 7/12, "feet"),
  39243. weight: math.unit(2, "tons"),
  39244. name: "Side",
  39245. image: {
  39246. source: "./media/characters/erdno/side.svg",
  39247. extra: 1191/1144,
  39248. bottom: 40/1231
  39249. }
  39250. },
  39251. back: {
  39252. height: math.unit(5 + 7/12, "feet"),
  39253. weight: math.unit(2, "tons"),
  39254. name: "Back",
  39255. image: {
  39256. source: "./media/characters/erdno/back.svg",
  39257. extra: 1202/1146,
  39258. bottom: 17/1219
  39259. }
  39260. },
  39261. frontNsfw: {
  39262. height: math.unit(5 + 7/12, "feet"),
  39263. weight: math.unit(2, "tons"),
  39264. name: "Front (NSFW)",
  39265. image: {
  39266. source: "./media/characters/erdno/front-nsfw.svg",
  39267. extra: 1234/1129,
  39268. bottom: 35/1269
  39269. }
  39270. },
  39271. angledNsfw: {
  39272. height: math.unit(5 + 7/12, "feet"),
  39273. weight: math.unit(2, "tons"),
  39274. name: "Angled (NSFW)",
  39275. image: {
  39276. source: "./media/characters/erdno/angled-nsfw.svg",
  39277. extra: 1185/1139,
  39278. bottom: 36/1221
  39279. }
  39280. },
  39281. sideNsfw: {
  39282. height: math.unit(5 + 7/12, "feet"),
  39283. weight: math.unit(2, "tons"),
  39284. name: "Side (NSFW)",
  39285. image: {
  39286. source: "./media/characters/erdno/side-nsfw.svg",
  39287. extra: 1191/1144,
  39288. bottom: 40/1231
  39289. }
  39290. },
  39291. backNsfw: {
  39292. height: math.unit(5 + 7/12, "feet"),
  39293. weight: math.unit(2, "tons"),
  39294. name: "Back (NSFW)",
  39295. image: {
  39296. source: "./media/characters/erdno/back-nsfw.svg",
  39297. extra: 1202/1146,
  39298. bottom: 17/1219
  39299. }
  39300. },
  39301. frontHyper: {
  39302. height: math.unit(5 + 7/12, "feet"),
  39303. weight: math.unit(2, "tons"),
  39304. name: "Front (Hyper)",
  39305. image: {
  39306. source: "./media/characters/erdno/front-hyper.svg",
  39307. extra: 1298/1136,
  39308. bottom: 35/1333
  39309. }
  39310. },
  39311. },
  39312. [
  39313. {
  39314. name: "Normal",
  39315. height: math.unit(5 + 7/12, "feet"),
  39316. default: true
  39317. },
  39318. {
  39319. name: "Big",
  39320. height: math.unit(5.7, "meters")
  39321. },
  39322. {
  39323. name: "Macro",
  39324. height: math.unit(5.7, "kilometers")
  39325. },
  39326. {
  39327. name: "Megamacro",
  39328. height: math.unit(5.7, "earths")
  39329. },
  39330. ]
  39331. ))
  39332. characterMakers.push(() => makeCharacter(
  39333. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39334. {
  39335. front: {
  39336. height: math.unit(5 + 10/12, "feet"),
  39337. weight: math.unit(150, "lb"),
  39338. name: "Front",
  39339. image: {
  39340. source: "./media/characters/jamie/front.svg",
  39341. extra: 1908/1768,
  39342. bottom: 19/1927
  39343. }
  39344. },
  39345. },
  39346. [
  39347. {
  39348. name: "Minimum",
  39349. height: math.unit(2, "cm")
  39350. },
  39351. {
  39352. name: "Micro",
  39353. height: math.unit(3, "inches")
  39354. },
  39355. {
  39356. name: "Normal",
  39357. height: math.unit(5 + 10/12, "feet"),
  39358. default: true
  39359. },
  39360. {
  39361. name: "Macro",
  39362. height: math.unit(150, "feet")
  39363. },
  39364. {
  39365. name: "Megamacro",
  39366. height: math.unit(10000, "m")
  39367. },
  39368. ]
  39369. ))
  39370. characterMakers.push(() => makeCharacter(
  39371. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39372. {
  39373. front: {
  39374. height: math.unit(2, "meters"),
  39375. weight: math.unit(100, "kg"),
  39376. name: "Front",
  39377. image: {
  39378. source: "./media/characters/shiron/front.svg",
  39379. extra: 2103/1985,
  39380. bottom: 98/2201
  39381. }
  39382. },
  39383. back: {
  39384. height: math.unit(2, "meters"),
  39385. weight: math.unit(100, "kg"),
  39386. name: "Back",
  39387. image: {
  39388. source: "./media/characters/shiron/back.svg",
  39389. extra: 2110/2015,
  39390. bottom: 89/2199
  39391. }
  39392. },
  39393. hand: {
  39394. height: math.unit(0.96, "feet"),
  39395. name: "Hand",
  39396. image: {
  39397. source: "./media/characters/shiron/hand.svg"
  39398. }
  39399. },
  39400. foot: {
  39401. height: math.unit(1.464, "feet"),
  39402. name: "Foot",
  39403. image: {
  39404. source: "./media/characters/shiron/foot.svg"
  39405. }
  39406. },
  39407. },
  39408. [
  39409. {
  39410. name: "Normal",
  39411. height: math.unit(2, "meters")
  39412. },
  39413. {
  39414. name: "Macro",
  39415. height: math.unit(500, "meters"),
  39416. default: true
  39417. },
  39418. {
  39419. name: "Megamacro",
  39420. height: math.unit(20, "km")
  39421. },
  39422. ]
  39423. ))
  39424. characterMakers.push(() => makeCharacter(
  39425. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39426. {
  39427. front: {
  39428. height: math.unit(6, "feet"),
  39429. name: "Front",
  39430. image: {
  39431. source: "./media/characters/sam/front.svg",
  39432. extra: 849/826,
  39433. bottom: 19/868
  39434. }
  39435. },
  39436. },
  39437. [
  39438. {
  39439. name: "Normal",
  39440. height: math.unit(6, "feet"),
  39441. default: true
  39442. },
  39443. ]
  39444. ))
  39445. characterMakers.push(() => makeCharacter(
  39446. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39447. {
  39448. front: {
  39449. height: math.unit(8 + 4/12, "feet"),
  39450. weight: math.unit(122, "kg"),
  39451. name: "Front",
  39452. image: {
  39453. source: "./media/characters/namori-kurogawa/front.svg",
  39454. extra: 1894/1576,
  39455. bottom: 34/1928
  39456. }
  39457. },
  39458. },
  39459. [
  39460. {
  39461. name: "Normal",
  39462. height: math.unit(8 + 4/12, "feet"),
  39463. default: true
  39464. },
  39465. ]
  39466. ))
  39467. characterMakers.push(() => makeCharacter(
  39468. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39469. {
  39470. front: {
  39471. height: math.unit(9, "feet"),
  39472. weight: math.unit(621, "lb"),
  39473. name: "Front",
  39474. image: {
  39475. source: "./media/characters/unmru/front.svg",
  39476. extra: 1853/1747,
  39477. bottom: 73/1926
  39478. }
  39479. },
  39480. side: {
  39481. height: math.unit(9, "feet"),
  39482. weight: math.unit(621, "lb"),
  39483. name: "Side",
  39484. image: {
  39485. source: "./media/characters/unmru/side.svg",
  39486. extra: 1781/1671,
  39487. bottom: 127/1908
  39488. }
  39489. },
  39490. back: {
  39491. height: math.unit(9, "feet"),
  39492. weight: math.unit(621, "lb"),
  39493. name: "Back",
  39494. image: {
  39495. source: "./media/characters/unmru/back.svg",
  39496. extra: 1894/1765,
  39497. bottom: 75/1969
  39498. }
  39499. },
  39500. dick: {
  39501. height: math.unit(3, "feet"),
  39502. weight: math.unit(35, "lb"),
  39503. name: "Dick",
  39504. image: {
  39505. source: "./media/characters/unmru/dick.svg"
  39506. }
  39507. },
  39508. },
  39509. [
  39510. {
  39511. name: "Normal",
  39512. height: math.unit(9, "feet")
  39513. },
  39514. {
  39515. name: "Natural",
  39516. height: math.unit(27, "feet"),
  39517. default: true
  39518. },
  39519. {
  39520. name: "Giant",
  39521. height: math.unit(90, "feet")
  39522. },
  39523. {
  39524. name: "Kaiju",
  39525. height: math.unit(270, "feet")
  39526. },
  39527. {
  39528. name: "Macro",
  39529. height: math.unit(900, "feet")
  39530. },
  39531. {
  39532. name: "Macro+",
  39533. height: math.unit(2700, "feet")
  39534. },
  39535. {
  39536. name: "Megamacro",
  39537. height: math.unit(9000, "feet")
  39538. },
  39539. {
  39540. name: "City-Crushing",
  39541. height: math.unit(27000, "feet")
  39542. },
  39543. {
  39544. name: "Mountain-Mashing",
  39545. height: math.unit(90000, "feet")
  39546. },
  39547. {
  39548. name: "Earth-Eclipsing",
  39549. height: math.unit(2.7e8, "feet")
  39550. },
  39551. {
  39552. name: "Sol-Swallowing",
  39553. height: math.unit(9e10, "feet")
  39554. },
  39555. {
  39556. name: "Majoris-Munching",
  39557. height: math.unit(2.7e13, "feet")
  39558. },
  39559. ]
  39560. ))
  39561. characterMakers.push(() => makeCharacter(
  39562. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39563. {
  39564. front: {
  39565. height: math.unit(1, "inch"),
  39566. name: "Front",
  39567. image: {
  39568. source: "./media/characters/squeaks-mouse/front.svg",
  39569. extra: 352/308,
  39570. bottom: 25/377
  39571. }
  39572. },
  39573. },
  39574. [
  39575. {
  39576. name: "Micro",
  39577. height: math.unit(1, "inch"),
  39578. default: true
  39579. },
  39580. ]
  39581. ))
  39582. characterMakers.push(() => makeCharacter(
  39583. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39584. {
  39585. side: {
  39586. height: math.unit(35, "feet"),
  39587. name: "Side",
  39588. image: {
  39589. source: "./media/characters/sayko/side.svg",
  39590. extra: 1697/1021,
  39591. bottom: 82/1779
  39592. }
  39593. },
  39594. head: {
  39595. height: math.unit(16, "feet"),
  39596. name: "Head",
  39597. image: {
  39598. source: "./media/characters/sayko/head.svg"
  39599. }
  39600. },
  39601. forepaw: {
  39602. height: math.unit(7.85, "feet"),
  39603. name: "Forepaw",
  39604. image: {
  39605. source: "./media/characters/sayko/forepaw.svg"
  39606. }
  39607. },
  39608. hindpaw: {
  39609. height: math.unit(8.8, "feet"),
  39610. name: "Hindpaw",
  39611. image: {
  39612. source: "./media/characters/sayko/hindpaw.svg"
  39613. }
  39614. },
  39615. },
  39616. [
  39617. {
  39618. name: "Normal",
  39619. height: math.unit(35, "feet"),
  39620. default: true
  39621. },
  39622. {
  39623. name: "Colossus",
  39624. height: math.unit(100, "meters")
  39625. },
  39626. {
  39627. name: "\"Small\" Deity",
  39628. height: math.unit(1, "km")
  39629. },
  39630. {
  39631. name: "\"Large\" Deity",
  39632. height: math.unit(15, "km")
  39633. },
  39634. ]
  39635. ))
  39636. characterMakers.push(() => makeCharacter(
  39637. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39638. {
  39639. front: {
  39640. height: math.unit(6, "feet"),
  39641. weight: math.unit(250, "lb"),
  39642. name: "Front",
  39643. image: {
  39644. source: "./media/characters/mukiro/front.svg",
  39645. extra: 1368/1310,
  39646. bottom: 34/1402
  39647. }
  39648. },
  39649. },
  39650. [
  39651. {
  39652. name: "Normal",
  39653. height: math.unit(6, "feet"),
  39654. default: true
  39655. },
  39656. ]
  39657. ))
  39658. characterMakers.push(() => makeCharacter(
  39659. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39660. {
  39661. front: {
  39662. height: math.unit(12 + 4/12, "feet"),
  39663. name: "Front",
  39664. image: {
  39665. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39666. extra: 1346/1311,
  39667. bottom: 65/1411
  39668. }
  39669. },
  39670. },
  39671. [
  39672. {
  39673. name: "Base",
  39674. height: math.unit(12 + 4/12, "feet"),
  39675. default: true
  39676. },
  39677. {
  39678. name: "Macro",
  39679. height: math.unit(150, "feet")
  39680. },
  39681. {
  39682. name: "Mega",
  39683. height: math.unit(2, "miles")
  39684. },
  39685. {
  39686. name: "Demi God",
  39687. height: math.unit(4, "AU")
  39688. },
  39689. {
  39690. name: "God Size",
  39691. height: math.unit(1, "universe")
  39692. },
  39693. ]
  39694. ))
  39695. characterMakers.push(() => makeCharacter(
  39696. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39697. {
  39698. front: {
  39699. height: math.unit(3 + 3/12, "feet"),
  39700. weight: math.unit(88, "lb"),
  39701. name: "Front",
  39702. image: {
  39703. source: "./media/characters/trey/front.svg",
  39704. extra: 1815/1509,
  39705. bottom: 60/1875
  39706. }
  39707. },
  39708. },
  39709. [
  39710. {
  39711. name: "Normal",
  39712. height: math.unit(3 + 3/12, "feet"),
  39713. default: true
  39714. },
  39715. ]
  39716. ))
  39717. characterMakers.push(() => makeCharacter(
  39718. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39719. {
  39720. front: {
  39721. height: math.unit(4, "meters"),
  39722. name: "Front",
  39723. image: {
  39724. source: "./media/characters/adelonda/front.svg",
  39725. extra: 1077/982,
  39726. bottom: 39/1116
  39727. }
  39728. },
  39729. back: {
  39730. height: math.unit(4, "meters"),
  39731. name: "Back",
  39732. image: {
  39733. source: "./media/characters/adelonda/back.svg",
  39734. extra: 1105/1003,
  39735. bottom: 25/1130
  39736. }
  39737. },
  39738. feral: {
  39739. height: math.unit(40/1.5, "meters"),
  39740. name: "Feral",
  39741. image: {
  39742. source: "./media/characters/adelonda/feral.svg",
  39743. extra: 597/271,
  39744. bottom: 387/984
  39745. }
  39746. },
  39747. },
  39748. [
  39749. {
  39750. name: "Normal",
  39751. height: math.unit(4, "meters"),
  39752. default: true
  39753. },
  39754. ]
  39755. ))
  39756. characterMakers.push(() => makeCharacter(
  39757. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39758. {
  39759. front: {
  39760. height: math.unit(8 + 4/12, "feet"),
  39761. weight: math.unit(670, "lb"),
  39762. name: "Front",
  39763. image: {
  39764. source: "./media/characters/acadiel/front.svg",
  39765. extra: 1901/1595,
  39766. bottom: 142/2043
  39767. }
  39768. },
  39769. },
  39770. [
  39771. {
  39772. name: "Normal",
  39773. height: math.unit(8 + 4/12, "feet"),
  39774. default: true
  39775. },
  39776. {
  39777. name: "Macro",
  39778. height: math.unit(200, "feet")
  39779. },
  39780. ]
  39781. ))
  39782. characterMakers.push(() => makeCharacter(
  39783. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39784. {
  39785. front: {
  39786. height: math.unit(6 + 2/12, "feet"),
  39787. weight: math.unit(185, "lb"),
  39788. name: "Front",
  39789. image: {
  39790. source: "./media/characters/kayne-ein/front.svg",
  39791. extra: 1780/1560,
  39792. bottom: 81/1861
  39793. }
  39794. },
  39795. },
  39796. [
  39797. {
  39798. name: "Normal",
  39799. height: math.unit(6 + 2/12, "feet"),
  39800. default: true
  39801. },
  39802. {
  39803. name: "Transformation Stage",
  39804. height: math.unit(15, "feet")
  39805. },
  39806. {
  39807. name: "Macro",
  39808. height: math.unit(150, "feet")
  39809. },
  39810. {
  39811. name: "Earth's Shadow",
  39812. height: math.unit(6200, "miles")
  39813. },
  39814. {
  39815. name: "Universal Demon",
  39816. height: math.unit(28e9, "parsecs")
  39817. },
  39818. {
  39819. name: "Multiverse God",
  39820. height: math.unit(3, "multiverses")
  39821. },
  39822. ]
  39823. ))
  39824. characterMakers.push(() => makeCharacter(
  39825. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39826. {
  39827. front: {
  39828. height: math.unit(5 + 5/12, "feet"),
  39829. name: "Front",
  39830. image: {
  39831. source: "./media/characters/fawn/front.svg",
  39832. extra: 1873/1731,
  39833. bottom: 95/1968
  39834. }
  39835. },
  39836. back: {
  39837. height: math.unit(5 + 5/12, "feet"),
  39838. name: "Back",
  39839. image: {
  39840. source: "./media/characters/fawn/back.svg",
  39841. extra: 1813/1700,
  39842. bottom: 14/1827
  39843. }
  39844. },
  39845. hoof: {
  39846. height: math.unit(1.45, "feet"),
  39847. name: "Hoof",
  39848. image: {
  39849. source: "./media/characters/fawn/hoof.svg"
  39850. }
  39851. },
  39852. },
  39853. [
  39854. {
  39855. name: "Normal",
  39856. height: math.unit(5 + 5/12, "feet"),
  39857. default: true
  39858. },
  39859. ]
  39860. ))
  39861. characterMakers.push(() => makeCharacter(
  39862. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39863. {
  39864. front: {
  39865. height: math.unit(2 + 5/12, "feet"),
  39866. name: "Front",
  39867. image: {
  39868. source: "./media/characters/orion/front.svg",
  39869. extra: 1366/1304,
  39870. bottom: 43/1409
  39871. }
  39872. },
  39873. paw: {
  39874. height: math.unit(0.52, "feet"),
  39875. name: "Paw",
  39876. image: {
  39877. source: "./media/characters/orion/paw.svg"
  39878. }
  39879. },
  39880. },
  39881. [
  39882. {
  39883. name: "Normal",
  39884. height: math.unit(2 + 5/12, "feet"),
  39885. default: true
  39886. },
  39887. ]
  39888. ))
  39889. characterMakers.push(() => makeCharacter(
  39890. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39891. {
  39892. front: {
  39893. height: math.unit(5 + 10/12, "feet"),
  39894. name: "Front",
  39895. image: {
  39896. source: "./media/characters/vera/front.svg",
  39897. extra: 1680/1575,
  39898. bottom: 49/1729
  39899. }
  39900. },
  39901. back: {
  39902. height: math.unit(5 + 10/12, "feet"),
  39903. name: "Back",
  39904. image: {
  39905. source: "./media/characters/vera/back.svg",
  39906. extra: 1700/1588,
  39907. bottom: 18/1718
  39908. }
  39909. },
  39910. arcanine: {
  39911. height: math.unit(6 + 8/12, "feet"),
  39912. name: "Arcanine",
  39913. image: {
  39914. source: "./media/characters/vera/arcanine.svg",
  39915. extra: 1590/1511,
  39916. bottom: 71/1661
  39917. }
  39918. },
  39919. maw: {
  39920. height: math.unit(0.82, "feet"),
  39921. name: "Maw",
  39922. image: {
  39923. source: "./media/characters/vera/maw.svg"
  39924. }
  39925. },
  39926. mawArcanine: {
  39927. height: math.unit(0.97, "feet"),
  39928. name: "Maw (Arcanine)",
  39929. image: {
  39930. source: "./media/characters/vera/maw-arcanine.svg"
  39931. }
  39932. },
  39933. paw: {
  39934. height: math.unit(0.75, "feet"),
  39935. name: "Paw",
  39936. image: {
  39937. source: "./media/characters/vera/paw.svg"
  39938. }
  39939. },
  39940. pawprint: {
  39941. height: math.unit(0.52, "feet"),
  39942. name: "Pawprint",
  39943. image: {
  39944. source: "./media/characters/vera/pawprint.svg"
  39945. }
  39946. },
  39947. },
  39948. [
  39949. {
  39950. name: "Normal",
  39951. height: math.unit(5 + 10/12, "feet"),
  39952. default: true
  39953. },
  39954. {
  39955. name: "Macro",
  39956. height: math.unit(75, "feet")
  39957. },
  39958. ]
  39959. ))
  39960. characterMakers.push(() => makeCharacter(
  39961. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39962. {
  39963. front: {
  39964. height: math.unit(4, "feet"),
  39965. weight: math.unit(40, "lb"),
  39966. name: "Front",
  39967. image: {
  39968. source: "./media/characters/orvan-rabbit/front.svg",
  39969. extra: 1896/1642,
  39970. bottom: 29/1925
  39971. }
  39972. },
  39973. },
  39974. [
  39975. {
  39976. name: "Normal",
  39977. height: math.unit(4, "feet"),
  39978. default: true
  39979. },
  39980. ]
  39981. ))
  39982. characterMakers.push(() => makeCharacter(
  39983. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39984. {
  39985. front: {
  39986. height: math.unit(6, "feet"),
  39987. weight: math.unit(168, "lb"),
  39988. name: "Front",
  39989. image: {
  39990. source: "./media/characters/lisa/front.svg",
  39991. extra: 2065/1867,
  39992. bottom: 46/2111
  39993. }
  39994. },
  39995. back: {
  39996. height: math.unit(6, "feet"),
  39997. weight: math.unit(168, "lb"),
  39998. name: "Back",
  39999. image: {
  40000. source: "./media/characters/lisa/back.svg",
  40001. extra: 1982/1838,
  40002. bottom: 29/2011
  40003. }
  40004. },
  40005. maw: {
  40006. height: math.unit(0.81, "feet"),
  40007. name: "Maw",
  40008. image: {
  40009. source: "./media/characters/lisa/maw.svg"
  40010. }
  40011. },
  40012. paw: {
  40013. height: math.unit(0.9, "feet"),
  40014. name: "Paw",
  40015. image: {
  40016. source: "./media/characters/lisa/paw.svg"
  40017. }
  40018. },
  40019. caribousune: {
  40020. height: math.unit(7 + 2/12, "feet"),
  40021. weight: math.unit(268, "lb"),
  40022. name: "Caribousune",
  40023. image: {
  40024. source: "./media/characters/lisa/caribousune.svg",
  40025. extra: 1843/1633,
  40026. bottom: 29/1872
  40027. }
  40028. },
  40029. frontCaribousune: {
  40030. height: math.unit(7 + 2/12, "feet"),
  40031. weight: math.unit(268, "lb"),
  40032. name: "Front (Caribousune)",
  40033. image: {
  40034. source: "./media/characters/lisa/front-caribousune.svg",
  40035. extra: 1818/1638,
  40036. bottom: 52/1870
  40037. }
  40038. },
  40039. sideCaribousune: {
  40040. height: math.unit(7 + 2/12, "feet"),
  40041. weight: math.unit(268, "lb"),
  40042. name: "Side (Caribousune)",
  40043. image: {
  40044. source: "./media/characters/lisa/side-caribousune.svg",
  40045. extra: 1851/1635,
  40046. bottom: 16/1867
  40047. }
  40048. },
  40049. backCaribousune: {
  40050. height: math.unit(7 + 2/12, "feet"),
  40051. weight: math.unit(268, "lb"),
  40052. name: "Back (Caribousune)",
  40053. image: {
  40054. source: "./media/characters/lisa/back-caribousune.svg",
  40055. extra: 1801/1604,
  40056. bottom: 44/1845
  40057. }
  40058. },
  40059. caribou: {
  40060. height: math.unit(7 + 2/12, "feet"),
  40061. weight: math.unit(268, "lb"),
  40062. name: "Caribou",
  40063. image: {
  40064. source: "./media/characters/lisa/caribou.svg",
  40065. extra: 1843/1633,
  40066. bottom: 29/1872
  40067. }
  40068. },
  40069. frontCaribou: {
  40070. height: math.unit(7 + 2/12, "feet"),
  40071. weight: math.unit(268, "lb"),
  40072. name: "Front (Caribou)",
  40073. image: {
  40074. source: "./media/characters/lisa/front-caribou.svg",
  40075. extra: 1818/1638,
  40076. bottom: 52/1870
  40077. }
  40078. },
  40079. sideCaribou: {
  40080. height: math.unit(7 + 2/12, "feet"),
  40081. weight: math.unit(268, "lb"),
  40082. name: "Side (Caribou)",
  40083. image: {
  40084. source: "./media/characters/lisa/side-caribou.svg",
  40085. extra: 1851/1635,
  40086. bottom: 16/1867
  40087. }
  40088. },
  40089. backCaribou: {
  40090. height: math.unit(7 + 2/12, "feet"),
  40091. weight: math.unit(268, "lb"),
  40092. name: "Back (Caribou)",
  40093. image: {
  40094. source: "./media/characters/lisa/back-caribou.svg",
  40095. extra: 1801/1604,
  40096. bottom: 44/1845
  40097. }
  40098. },
  40099. mawCaribou: {
  40100. height: math.unit(1.45, "feet"),
  40101. name: "Maw (Caribou)",
  40102. image: {
  40103. source: "./media/characters/lisa/maw-caribou.svg"
  40104. }
  40105. },
  40106. mawCaribousune: {
  40107. height: math.unit(1.45, "feet"),
  40108. name: "Maw (Caribousune)",
  40109. image: {
  40110. source: "./media/characters/lisa/maw-caribousune.svg"
  40111. }
  40112. },
  40113. pawCaribousune: {
  40114. height: math.unit(1.61, "feet"),
  40115. name: "Paw (Caribou)",
  40116. image: {
  40117. source: "./media/characters/lisa/paw-caribousune.svg"
  40118. }
  40119. },
  40120. },
  40121. [
  40122. {
  40123. name: "Normal",
  40124. height: math.unit(6, "feet")
  40125. },
  40126. {
  40127. name: "God Size",
  40128. height: math.unit(72, "feet"),
  40129. default: true
  40130. },
  40131. {
  40132. name: "Towering",
  40133. height: math.unit(288, "feet")
  40134. },
  40135. {
  40136. name: "City Size",
  40137. height: math.unit(48384, "feet")
  40138. },
  40139. {
  40140. name: "Continental",
  40141. height: math.unit(4200, "miles")
  40142. },
  40143. {
  40144. name: "Planet Eater",
  40145. height: math.unit(42, "earths")
  40146. },
  40147. {
  40148. name: "Star Swallower",
  40149. height: math.unit(42, "solarradii")
  40150. },
  40151. {
  40152. name: "System Swallower",
  40153. height: math.unit(84000, "AU")
  40154. },
  40155. {
  40156. name: "Galaxy Gobbler",
  40157. height: math.unit(42, "galaxies")
  40158. },
  40159. {
  40160. name: "Universe Devourer",
  40161. height: math.unit(42, "universes")
  40162. },
  40163. {
  40164. name: "Multiverse Muncher",
  40165. height: math.unit(42, "multiverses")
  40166. },
  40167. ]
  40168. ))
  40169. characterMakers.push(() => makeCharacter(
  40170. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40171. {
  40172. front: {
  40173. height: math.unit(36, "feet"),
  40174. name: "Front",
  40175. image: {
  40176. source: "./media/characters/shadow-rat/front.svg",
  40177. extra: 1845/1758,
  40178. bottom: 83/1928
  40179. }
  40180. },
  40181. },
  40182. [
  40183. {
  40184. name: "Macro",
  40185. height: math.unit(36, "feet"),
  40186. default: true
  40187. },
  40188. ]
  40189. ))
  40190. characterMakers.push(() => makeCharacter(
  40191. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40192. {
  40193. side: {
  40194. height: math.unit(8, "feet"),
  40195. weight: math.unit(2630, "lb"),
  40196. name: "Side",
  40197. image: {
  40198. source: "./media/characters/torallia/side.svg",
  40199. extra: 2164/2021,
  40200. bottom: 371/2535
  40201. }
  40202. },
  40203. },
  40204. [
  40205. {
  40206. name: "Mortal Interaction",
  40207. height: math.unit(8, "feet")
  40208. },
  40209. {
  40210. name: "Natural",
  40211. height: math.unit(24, "feet"),
  40212. default: true
  40213. },
  40214. {
  40215. name: "Giant",
  40216. height: math.unit(80, "feet")
  40217. },
  40218. {
  40219. name: "Kaiju",
  40220. height: math.unit(240, "feet")
  40221. },
  40222. {
  40223. name: "Macro",
  40224. height: math.unit(800, "feet")
  40225. },
  40226. {
  40227. name: "Macro+",
  40228. height: math.unit(2400, "feet")
  40229. },
  40230. {
  40231. name: "Macro++",
  40232. height: math.unit(8000, "feet")
  40233. },
  40234. {
  40235. name: "City-Crushing",
  40236. height: math.unit(24000, "feet")
  40237. },
  40238. {
  40239. name: "Mountain-Mashing",
  40240. height: math.unit(80000, "feet")
  40241. },
  40242. {
  40243. name: "District Demolisher",
  40244. height: math.unit(240000, "feet")
  40245. },
  40246. {
  40247. name: "Tri-County Terror",
  40248. height: math.unit(800000, "feet")
  40249. },
  40250. {
  40251. name: "State Smasher",
  40252. height: math.unit(2.4e6, "feet")
  40253. },
  40254. {
  40255. name: "Nation Nemesis",
  40256. height: math.unit(8e6, "feet")
  40257. },
  40258. {
  40259. name: "Continent Cracker",
  40260. height: math.unit(2.4e7, "feet")
  40261. },
  40262. {
  40263. name: "Planet-Pillaging",
  40264. height: math.unit(8e7, "feet")
  40265. },
  40266. {
  40267. name: "Earth-Eclipsing",
  40268. height: math.unit(2.4e8, "feet")
  40269. },
  40270. {
  40271. name: "Jovian-Jostling",
  40272. height: math.unit(8e8, "feet")
  40273. },
  40274. {
  40275. name: "Gas Giant Gulper",
  40276. height: math.unit(2.4e9, "feet")
  40277. },
  40278. {
  40279. name: "Astral Annihilator",
  40280. height: math.unit(8e9, "feet")
  40281. },
  40282. {
  40283. name: "Celestial Conqueror",
  40284. height: math.unit(2.4e10, "feet")
  40285. },
  40286. {
  40287. name: "Sol-Swallowing",
  40288. height: math.unit(8e10, "feet")
  40289. },
  40290. {
  40291. name: "Hunter of the Heavens",
  40292. height: math.unit(2.4e13, "feet")
  40293. },
  40294. ]
  40295. ))
  40296. characterMakers.push(() => makeCharacter(
  40297. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40298. {
  40299. front: {
  40300. height: math.unit(6 + 8/12, "feet"),
  40301. weight: math.unit(250, "kilograms"),
  40302. volume: math.unit(28, "liters"),
  40303. name: "Front",
  40304. image: {
  40305. source: "./media/characters/rebecca-pawlson/front.svg",
  40306. extra: 1737/1596,
  40307. bottom: 107/1844
  40308. }
  40309. },
  40310. back: {
  40311. height: math.unit(6 + 8/12, "feet"),
  40312. weight: math.unit(250, "kilograms"),
  40313. volume: math.unit(28, "liters"),
  40314. name: "Back",
  40315. image: {
  40316. source: "./media/characters/rebecca-pawlson/back.svg",
  40317. extra: 1702/1523,
  40318. bottom: 86/1788
  40319. }
  40320. },
  40321. },
  40322. [
  40323. {
  40324. name: "Normal",
  40325. height: math.unit(6 + 8/12, "feet")
  40326. },
  40327. {
  40328. name: "Mini Macro",
  40329. height: math.unit(10, "feet"),
  40330. default: true
  40331. },
  40332. {
  40333. name: "Macro",
  40334. height: math.unit(100, "feet")
  40335. },
  40336. {
  40337. name: "Mega Macro",
  40338. height: math.unit(2500, "feet")
  40339. },
  40340. {
  40341. name: "Giga Macro",
  40342. height: math.unit(50, "miles")
  40343. },
  40344. ]
  40345. ))
  40346. characterMakers.push(() => makeCharacter(
  40347. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40348. {
  40349. front: {
  40350. height: math.unit(7 + 6/12, "feet"),
  40351. weight: math.unit(600, "lb"),
  40352. name: "Front",
  40353. image: {
  40354. source: "./media/characters/moxie-nova/front.svg",
  40355. extra: 1734/1652,
  40356. bottom: 41/1775
  40357. }
  40358. },
  40359. },
  40360. [
  40361. {
  40362. name: "Normal",
  40363. height: math.unit(7 + 6/12, "feet"),
  40364. default: true
  40365. },
  40366. ]
  40367. ))
  40368. characterMakers.push(() => makeCharacter(
  40369. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40370. {
  40371. goat: {
  40372. height: math.unit(4, "feet"),
  40373. weight: math.unit(180, "lb"),
  40374. name: "Goat",
  40375. image: {
  40376. source: "./media/characters/tiffany/goat.svg",
  40377. extra: 1845/1595,
  40378. bottom: 106/1951
  40379. }
  40380. },
  40381. front: {
  40382. height: math.unit(5, "feet"),
  40383. weight: math.unit(150, "lb"),
  40384. name: "Foxcoon",
  40385. image: {
  40386. source: "./media/characters/tiffany/foxcoon.svg",
  40387. extra: 1941/1845,
  40388. bottom: 58/1999
  40389. }
  40390. },
  40391. },
  40392. [
  40393. {
  40394. name: "Normal",
  40395. height: math.unit(5, "feet"),
  40396. default: true
  40397. },
  40398. ]
  40399. ))
  40400. characterMakers.push(() => makeCharacter(
  40401. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40402. {
  40403. front: {
  40404. height: math.unit(8, "feet"),
  40405. weight: math.unit(300, "lb"),
  40406. name: "Front",
  40407. image: {
  40408. source: "./media/characters/raxinath/front.svg",
  40409. extra: 1407/1309,
  40410. bottom: 39/1446
  40411. }
  40412. },
  40413. back: {
  40414. height: math.unit(8, "feet"),
  40415. weight: math.unit(300, "lb"),
  40416. name: "Back",
  40417. image: {
  40418. source: "./media/characters/raxinath/back.svg",
  40419. extra: 1405/1315,
  40420. bottom: 9/1414
  40421. }
  40422. },
  40423. },
  40424. [
  40425. {
  40426. name: "Speck",
  40427. height: math.unit(0.5, "nm")
  40428. },
  40429. {
  40430. name: "Micro",
  40431. height: math.unit(3, "inches")
  40432. },
  40433. {
  40434. name: "Kobold",
  40435. height: math.unit(3, "feet")
  40436. },
  40437. {
  40438. name: "Normal",
  40439. height: math.unit(8, "feet"),
  40440. default: true
  40441. },
  40442. {
  40443. name: "Giant",
  40444. height: math.unit(50, "feet")
  40445. },
  40446. {
  40447. name: "Macro",
  40448. height: math.unit(1000, "feet")
  40449. },
  40450. {
  40451. name: "Megamacro",
  40452. height: math.unit(1, "mile")
  40453. },
  40454. ]
  40455. ))
  40456. characterMakers.push(() => makeCharacter(
  40457. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40458. {
  40459. front: {
  40460. height: math.unit(10, "feet"),
  40461. weight: math.unit(1442, "lb"),
  40462. name: "Front",
  40463. image: {
  40464. source: "./media/characters/mal-dragon/front.svg",
  40465. extra: 1515/1444,
  40466. bottom: 113/1628
  40467. }
  40468. },
  40469. back: {
  40470. height: math.unit(10, "feet"),
  40471. weight: math.unit(1442, "lb"),
  40472. name: "Back",
  40473. image: {
  40474. source: "./media/characters/mal-dragon/back.svg",
  40475. extra: 1527/1434,
  40476. bottom: 25/1552
  40477. }
  40478. },
  40479. },
  40480. [
  40481. {
  40482. name: "Mortal Interaction",
  40483. height: math.unit(10, "feet"),
  40484. default: true
  40485. },
  40486. {
  40487. name: "Large",
  40488. height: math.unit(30, "feet")
  40489. },
  40490. {
  40491. name: "Kaiju",
  40492. height: math.unit(300, "feet")
  40493. },
  40494. {
  40495. name: "Megamacro",
  40496. height: math.unit(10000, "feet")
  40497. },
  40498. {
  40499. name: "Continent Cracker",
  40500. height: math.unit(30000000, "feet")
  40501. },
  40502. {
  40503. name: "Sol-Swallowing",
  40504. height: math.unit(1e11, "feet")
  40505. },
  40506. {
  40507. name: "Light Universal",
  40508. height: math.unit(5, "universes")
  40509. },
  40510. {
  40511. name: "Universe Atoms",
  40512. height: math.unit(1.829e9, "universes")
  40513. },
  40514. {
  40515. name: "Light Multiversal",
  40516. height: math.unit(5, "multiverses")
  40517. },
  40518. {
  40519. name: "Multiverse Atoms",
  40520. height: math.unit(1.829e9, "multiverses")
  40521. },
  40522. {
  40523. name: "Fabric of Time",
  40524. height: math.unit(1e262, "multiverses")
  40525. },
  40526. ]
  40527. ))
  40528. characterMakers.push(() => makeCharacter(
  40529. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40530. {
  40531. front: {
  40532. height: math.unit(9, "feet"),
  40533. weight: math.unit(1050, "lb"),
  40534. name: "Front",
  40535. image: {
  40536. source: "./media/characters/tabitha/front.svg",
  40537. extra: 2083/1994,
  40538. bottom: 68/2151
  40539. }
  40540. },
  40541. },
  40542. [
  40543. {
  40544. name: "Baseline",
  40545. height: math.unit(9, "feet"),
  40546. default: true
  40547. },
  40548. {
  40549. name: "Giant",
  40550. height: math.unit(90, "feet")
  40551. },
  40552. {
  40553. name: "Macro",
  40554. height: math.unit(900, "feet")
  40555. },
  40556. {
  40557. name: "Megamacro",
  40558. height: math.unit(9000, "feet")
  40559. },
  40560. {
  40561. name: "City-Crushing",
  40562. height: math.unit(27000, "feet")
  40563. },
  40564. {
  40565. name: "Mountain-Mashing",
  40566. height: math.unit(90000, "feet")
  40567. },
  40568. {
  40569. name: "Nation Nemesis",
  40570. height: math.unit(9e6, "feet")
  40571. },
  40572. {
  40573. name: "Continent Cracker",
  40574. height: math.unit(27e6, "feet")
  40575. },
  40576. {
  40577. name: "Earth-Eclipsing",
  40578. height: math.unit(2.7e8, "feet")
  40579. },
  40580. {
  40581. name: "Gas Giant Gulper",
  40582. height: math.unit(2.7e9, "feet")
  40583. },
  40584. {
  40585. name: "Sol-Swallowing",
  40586. height: math.unit(9e10, "feet")
  40587. },
  40588. {
  40589. name: "Galaxy Gulper",
  40590. height: math.unit(9, "galaxies")
  40591. },
  40592. {
  40593. name: "Cosmos Churner",
  40594. height: math.unit(9, "universes")
  40595. },
  40596. ]
  40597. ))
  40598. characterMakers.push(() => makeCharacter(
  40599. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40600. {
  40601. front: {
  40602. height: math.unit(160, "cm"),
  40603. weight: math.unit(55, "kg"),
  40604. name: "Front",
  40605. image: {
  40606. source: "./media/characters/tow/front.svg",
  40607. extra: 1751/1722,
  40608. bottom: 74/1825
  40609. }
  40610. },
  40611. },
  40612. [
  40613. {
  40614. name: "Norm",
  40615. height: math.unit(160, "cm")
  40616. },
  40617. {
  40618. name: "Casual",
  40619. height: math.unit(3200, "m"),
  40620. default: true
  40621. },
  40622. {
  40623. name: "Show-Off",
  40624. height: math.unit(160, "km")
  40625. },
  40626. ]
  40627. ))
  40628. characterMakers.push(() => makeCharacter(
  40629. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40630. {
  40631. front: {
  40632. height: math.unit(7 + 11/12, "feet"),
  40633. weight: math.unit(342.8, "lb"),
  40634. name: "Front",
  40635. image: {
  40636. source: "./media/characters/vivian-orca-dragon/front.svg",
  40637. extra: 1890/1865,
  40638. bottom: 28/1918
  40639. }
  40640. },
  40641. },
  40642. [
  40643. {
  40644. name: "Micro",
  40645. height: math.unit(5, "inches")
  40646. },
  40647. {
  40648. name: "Normal",
  40649. height: math.unit(7 + 11/12, "feet"),
  40650. default: true
  40651. },
  40652. {
  40653. name: "Macro",
  40654. height: math.unit(395 + 7/12, "feet")
  40655. },
  40656. ]
  40657. ))
  40658. characterMakers.push(() => makeCharacter(
  40659. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40660. {
  40661. side: {
  40662. height: math.unit(10, "feet"),
  40663. weight: math.unit(1442, "lb"),
  40664. name: "Side",
  40665. image: {
  40666. source: "./media/characters/lotherakon/side.svg",
  40667. extra: 1604/1497,
  40668. bottom: 89/1693
  40669. }
  40670. },
  40671. },
  40672. [
  40673. {
  40674. name: "Mortal Interaction",
  40675. height: math.unit(10, "feet")
  40676. },
  40677. {
  40678. name: "Large",
  40679. height: math.unit(30, "feet"),
  40680. default: true
  40681. },
  40682. {
  40683. name: "Giant",
  40684. height: math.unit(100, "feet")
  40685. },
  40686. {
  40687. name: "Kaiju",
  40688. height: math.unit(300, "feet")
  40689. },
  40690. {
  40691. name: "Macro",
  40692. height: math.unit(1000, "feet")
  40693. },
  40694. {
  40695. name: "Macro+",
  40696. height: math.unit(3000, "feet")
  40697. },
  40698. {
  40699. name: "Megamacro",
  40700. height: math.unit(10000, "feet")
  40701. },
  40702. {
  40703. name: "City-Crushing",
  40704. height: math.unit(30000, "feet")
  40705. },
  40706. {
  40707. name: "Continent Cracker",
  40708. height: math.unit(30e6, "feet")
  40709. },
  40710. {
  40711. name: "Earth Eclipsing",
  40712. height: math.unit(3e8, "feet")
  40713. },
  40714. {
  40715. name: "Gas Giant Gulper",
  40716. height: math.unit(3e9, "feet")
  40717. },
  40718. {
  40719. name: "Sol-Swallowing",
  40720. height: math.unit(1e11, "feet")
  40721. },
  40722. {
  40723. name: "System Swallower",
  40724. height: math.unit(3e14, "feet")
  40725. },
  40726. {
  40727. name: "Galaxy Gulper",
  40728. height: math.unit(10, "galaxies")
  40729. },
  40730. {
  40731. name: "Light Universal",
  40732. height: math.unit(5, "universes")
  40733. },
  40734. {
  40735. name: "Universe Palm",
  40736. height: math.unit(20, "universes")
  40737. },
  40738. {
  40739. name: "Light Multiversal",
  40740. height: math.unit(5, "multiverses")
  40741. },
  40742. {
  40743. name: "Multiverse Palm",
  40744. height: math.unit(20, "multiverses")
  40745. },
  40746. {
  40747. name: "Inferno Incarnate",
  40748. height: math.unit(1e7, "multiverses")
  40749. },
  40750. ]
  40751. ))
  40752. characterMakers.push(() => makeCharacter(
  40753. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40754. {
  40755. front: {
  40756. height: math.unit(8, "feet"),
  40757. weight: math.unit(1200, "lb"),
  40758. name: "Front",
  40759. image: {
  40760. source: "./media/characters/malithee/front.svg",
  40761. extra: 1675/1640,
  40762. bottom: 162/1837
  40763. }
  40764. },
  40765. },
  40766. [
  40767. {
  40768. name: "Mortal Interaction",
  40769. height: math.unit(8, "feet"),
  40770. default: true
  40771. },
  40772. {
  40773. name: "Large",
  40774. height: math.unit(24, "feet")
  40775. },
  40776. {
  40777. name: "Kaiju",
  40778. height: math.unit(240, "feet")
  40779. },
  40780. {
  40781. name: "Megamacro",
  40782. height: math.unit(8000, "feet")
  40783. },
  40784. {
  40785. name: "Continent Cracker",
  40786. height: math.unit(24e6, "feet")
  40787. },
  40788. {
  40789. name: "Earth-Eclipsing",
  40790. height: math.unit(2.4e8, "feet")
  40791. },
  40792. {
  40793. name: "Sol-Swallowing",
  40794. height: math.unit(8e10, "feet")
  40795. },
  40796. {
  40797. name: "Galaxy Gulper",
  40798. height: math.unit(8, "galaxies")
  40799. },
  40800. {
  40801. name: "Light Universal",
  40802. height: math.unit(4, "universes")
  40803. },
  40804. {
  40805. name: "Universe Atoms",
  40806. height: math.unit(1.829e9, "universes")
  40807. },
  40808. {
  40809. name: "Light Multiversal",
  40810. height: math.unit(4, "multiverses")
  40811. },
  40812. {
  40813. name: "Multiverse Atoms",
  40814. height: math.unit(1.829e9, "multiverses")
  40815. },
  40816. {
  40817. name: "Nigh-Omnipresence",
  40818. height: math.unit(8e261, "multiverses")
  40819. },
  40820. ]
  40821. ))
  40822. characterMakers.push(() => makeCharacter(
  40823. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40824. {
  40825. front: {
  40826. height: math.unit(10, "feet"),
  40827. weight: math.unit(1500, "lb"),
  40828. name: "Front",
  40829. image: {
  40830. source: "./media/characters/miles-thestia/front.svg",
  40831. extra: 1812/1727,
  40832. bottom: 86/1898
  40833. }
  40834. },
  40835. back: {
  40836. height: math.unit(10, "feet"),
  40837. weight: math.unit(1500, "lb"),
  40838. name: "Back",
  40839. image: {
  40840. source: "./media/characters/miles-thestia/back.svg",
  40841. extra: 1799/1690,
  40842. bottom: 47/1846
  40843. }
  40844. },
  40845. frontNsfw: {
  40846. height: math.unit(10, "feet"),
  40847. weight: math.unit(1500, "lb"),
  40848. name: "Front (NSFW)",
  40849. image: {
  40850. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40851. extra: 1812/1727,
  40852. bottom: 86/1898
  40853. }
  40854. },
  40855. },
  40856. [
  40857. {
  40858. name: "Mini-Macro",
  40859. height: math.unit(10, "feet"),
  40860. default: true
  40861. },
  40862. ]
  40863. ))
  40864. characterMakers.push(() => makeCharacter(
  40865. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40866. {
  40867. front: {
  40868. height: math.unit(25, "feet"),
  40869. name: "Front",
  40870. image: {
  40871. source: "./media/characters/titan-s-wulf/front.svg",
  40872. extra: 1560/1484,
  40873. bottom: 76/1636
  40874. }
  40875. },
  40876. },
  40877. [
  40878. {
  40879. name: "Smallest",
  40880. height: math.unit(25, "feet"),
  40881. default: true
  40882. },
  40883. {
  40884. name: "Normal",
  40885. height: math.unit(200, "feet")
  40886. },
  40887. {
  40888. name: "Macro",
  40889. height: math.unit(200000, "feet")
  40890. },
  40891. {
  40892. name: "Multiversal Original",
  40893. height: math.unit(10000, "multiverses")
  40894. },
  40895. ]
  40896. ))
  40897. characterMakers.push(() => makeCharacter(
  40898. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40899. {
  40900. front: {
  40901. height: math.unit(8, "feet"),
  40902. weight: math.unit(553, "lb"),
  40903. name: "Front",
  40904. image: {
  40905. source: "./media/characters/tawendeh/front.svg",
  40906. extra: 2365/2268,
  40907. bottom: 83/2448
  40908. }
  40909. },
  40910. frontClothed: {
  40911. height: math.unit(8, "feet"),
  40912. weight: math.unit(553, "lb"),
  40913. name: "Front (Clothed)",
  40914. image: {
  40915. source: "./media/characters/tawendeh/front-clothed.svg",
  40916. extra: 2365/2268,
  40917. bottom: 83/2448
  40918. }
  40919. },
  40920. back: {
  40921. height: math.unit(8, "feet"),
  40922. weight: math.unit(553, "lb"),
  40923. name: "Back",
  40924. image: {
  40925. source: "./media/characters/tawendeh/back.svg",
  40926. extra: 2397/2294,
  40927. bottom: 42/2439
  40928. }
  40929. },
  40930. },
  40931. [
  40932. {
  40933. name: "Mortal Interaction",
  40934. height: math.unit(8, "feet"),
  40935. default: true
  40936. },
  40937. {
  40938. name: "Giant",
  40939. height: math.unit(80, "feet")
  40940. },
  40941. {
  40942. name: "Macro",
  40943. height: math.unit(800, "feet")
  40944. },
  40945. {
  40946. name: "Megamacro",
  40947. height: math.unit(8000, "feet")
  40948. },
  40949. {
  40950. name: "City-Crushing",
  40951. height: math.unit(24000, "feet")
  40952. },
  40953. {
  40954. name: "Mountain-Mashing",
  40955. height: math.unit(80000, "feet")
  40956. },
  40957. {
  40958. name: "Nation Nemesis",
  40959. height: math.unit(8e6, "feet")
  40960. },
  40961. {
  40962. name: "Continent Cracker",
  40963. height: math.unit(24e6, "feet")
  40964. },
  40965. {
  40966. name: "Earth-Eclipsing",
  40967. height: math.unit(2.4e8, "feet")
  40968. },
  40969. {
  40970. name: "Gas Giant Gulper",
  40971. height: math.unit(2.4e9, "feet")
  40972. },
  40973. {
  40974. name: "Sol-Swallowing",
  40975. height: math.unit(8e10, "feet")
  40976. },
  40977. {
  40978. name: "Galaxy Gulper",
  40979. height: math.unit(8, "galaxies")
  40980. },
  40981. {
  40982. name: "Cosmos Churner",
  40983. height: math.unit(8, "universes")
  40984. },
  40985. {
  40986. name: "Omnipotent Otter",
  40987. height: math.unit(80, "universes")
  40988. },
  40989. ]
  40990. ))
  40991. characterMakers.push(() => makeCharacter(
  40992. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40993. {
  40994. front: {
  40995. height: math.unit(2.6, "meters"),
  40996. weight: math.unit(900, "kg"),
  40997. name: "Front",
  40998. image: {
  40999. source: "./media/characters/neesha/front.svg",
  41000. extra: 1803/1653,
  41001. bottom: 128/1931
  41002. }
  41003. },
  41004. },
  41005. [
  41006. {
  41007. name: "Normal",
  41008. height: math.unit(2.6, "meters"),
  41009. default: true
  41010. },
  41011. {
  41012. name: "Macro",
  41013. height: math.unit(50, "meters")
  41014. },
  41015. ]
  41016. ))
  41017. characterMakers.push(() => makeCharacter(
  41018. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41019. {
  41020. front: {
  41021. height: math.unit(5, "feet"),
  41022. weight: math.unit(185, "lb"),
  41023. name: "Front",
  41024. image: {
  41025. source: "./media/characters/kyera/front.svg",
  41026. extra: 1875/1790,
  41027. bottom: 96/1971
  41028. }
  41029. },
  41030. },
  41031. [
  41032. {
  41033. name: "Normal",
  41034. height: math.unit(5, "feet"),
  41035. default: true
  41036. },
  41037. ]
  41038. ))
  41039. characterMakers.push(() => makeCharacter(
  41040. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41041. {
  41042. front: {
  41043. height: math.unit(7 + 6/12, "feet"),
  41044. weight: math.unit(540, "lb"),
  41045. name: "Front",
  41046. image: {
  41047. source: "./media/characters/yuko/front.svg",
  41048. extra: 1282/1222,
  41049. bottom: 101/1383
  41050. }
  41051. },
  41052. frontClothed: {
  41053. height: math.unit(7 + 6/12, "feet"),
  41054. weight: math.unit(540, "lb"),
  41055. name: "Front (Clothed)",
  41056. image: {
  41057. source: "./media/characters/yuko/front-clothed.svg",
  41058. extra: 1282/1222,
  41059. bottom: 101/1383
  41060. }
  41061. },
  41062. },
  41063. [
  41064. {
  41065. name: "Normal",
  41066. height: math.unit(7 + 6/12, "feet"),
  41067. default: true
  41068. },
  41069. {
  41070. name: "Macro",
  41071. height: math.unit(26 + 9/12, "feet")
  41072. },
  41073. {
  41074. name: "Megamacro",
  41075. height: math.unit(300, "feet")
  41076. },
  41077. {
  41078. name: "Gigamacro",
  41079. height: math.unit(5000, "feet")
  41080. },
  41081. {
  41082. name: "Planetary",
  41083. height: math.unit(10000, "miles")
  41084. },
  41085. ]
  41086. ))
  41087. characterMakers.push(() => makeCharacter(
  41088. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41089. {
  41090. front: {
  41091. height: math.unit(8 + 2/12, "feet"),
  41092. weight: math.unit(600, "lb"),
  41093. name: "Front",
  41094. image: {
  41095. source: "./media/characters/deam-nitrel/front.svg",
  41096. extra: 1308/1234,
  41097. bottom: 125/1433
  41098. }
  41099. },
  41100. },
  41101. [
  41102. {
  41103. name: "Normal",
  41104. height: math.unit(8 + 2/12, "feet"),
  41105. default: true
  41106. },
  41107. ]
  41108. ))
  41109. characterMakers.push(() => makeCharacter(
  41110. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41111. {
  41112. front: {
  41113. height: math.unit(6.1, "feet"),
  41114. weight: math.unit(180, "lb"),
  41115. name: "Front",
  41116. image: {
  41117. source: "./media/characters/skyress/front.svg",
  41118. extra: 1045/915,
  41119. bottom: 28/1073
  41120. }
  41121. },
  41122. maw: {
  41123. height: math.unit(1, "feet"),
  41124. name: "Maw",
  41125. image: {
  41126. source: "./media/characters/skyress/maw.svg"
  41127. }
  41128. },
  41129. },
  41130. [
  41131. {
  41132. name: "Normal",
  41133. height: math.unit(6.1, "feet"),
  41134. default: true
  41135. },
  41136. {
  41137. name: "Macro",
  41138. height: math.unit(200, "feet")
  41139. },
  41140. ]
  41141. ))
  41142. characterMakers.push(() => makeCharacter(
  41143. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41144. {
  41145. front: {
  41146. height: math.unit(4 + 2/12, "feet"),
  41147. weight: math.unit(40, "kg"),
  41148. name: "Front",
  41149. image: {
  41150. source: "./media/characters/amethyst-jones/front.svg",
  41151. extra: 1220/1150,
  41152. bottom: 101/1321
  41153. }
  41154. },
  41155. },
  41156. [
  41157. {
  41158. name: "Normal",
  41159. height: math.unit(4 + 2/12, "feet"),
  41160. default: true
  41161. },
  41162. ]
  41163. ))
  41164. characterMakers.push(() => makeCharacter(
  41165. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41166. {
  41167. front: {
  41168. height: math.unit(1.7, "m"),
  41169. weight: math.unit(135, "lb"),
  41170. name: "Front",
  41171. image: {
  41172. source: "./media/characters/jade/front.svg",
  41173. extra: 1818/1767,
  41174. bottom: 32/1850
  41175. }
  41176. },
  41177. back: {
  41178. height: math.unit(1.7, "m"),
  41179. weight: math.unit(135, "lb"),
  41180. name: "Back",
  41181. image: {
  41182. source: "./media/characters/jade/back.svg",
  41183. extra: 1869/1809,
  41184. bottom: 35/1904
  41185. }
  41186. },
  41187. hand: {
  41188. height: math.unit(0.24, "m"),
  41189. name: "Hand",
  41190. image: {
  41191. source: "./media/characters/jade/hand.svg"
  41192. }
  41193. },
  41194. foot: {
  41195. height: math.unit(0.263, "m"),
  41196. name: "Foot",
  41197. image: {
  41198. source: "./media/characters/jade/foot.svg"
  41199. }
  41200. },
  41201. dick: {
  41202. height: math.unit(0.47, "m"),
  41203. name: "Dick",
  41204. image: {
  41205. source: "./media/characters/jade/dick.svg"
  41206. }
  41207. },
  41208. },
  41209. [
  41210. {
  41211. name: "Micro",
  41212. height: math.unit(22, "cm")
  41213. },
  41214. {
  41215. name: "Normal",
  41216. height: math.unit(1.7, "m"),
  41217. default: true
  41218. },
  41219. {
  41220. name: "Macro",
  41221. height: math.unit(152, "m")
  41222. },
  41223. ]
  41224. ))
  41225. characterMakers.push(() => makeCharacter(
  41226. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41227. {
  41228. front: {
  41229. height: math.unit(100, "miles"),
  41230. weight: math.unit(20000, "tons"),
  41231. name: "Front",
  41232. image: {
  41233. source: "./media/characters/cookie/front.svg",
  41234. extra: 1125/1070,
  41235. bottom: 30/1155
  41236. }
  41237. },
  41238. },
  41239. [
  41240. {
  41241. name: "Big",
  41242. height: math.unit(50, "feet")
  41243. },
  41244. {
  41245. name: "Macro",
  41246. height: math.unit(100, "miles"),
  41247. default: true
  41248. },
  41249. {
  41250. name: "Megamacro",
  41251. height: math.unit(90000, "miles")
  41252. },
  41253. ]
  41254. ))
  41255. characterMakers.push(() => makeCharacter(
  41256. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41257. {
  41258. front: {
  41259. height: math.unit(6, "feet"),
  41260. weight: math.unit(145, "lb"),
  41261. name: "Front",
  41262. image: {
  41263. source: "./media/characters/farzian/front.svg",
  41264. extra: 1902/1693,
  41265. bottom: 108/2010
  41266. }
  41267. },
  41268. },
  41269. [
  41270. {
  41271. name: "Macro",
  41272. height: math.unit(500, "feet"),
  41273. default: true
  41274. },
  41275. ]
  41276. ))
  41277. characterMakers.push(() => makeCharacter(
  41278. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41279. {
  41280. front: {
  41281. height: math.unit(3 + 6/12, "feet"),
  41282. weight: math.unit(50, "lb"),
  41283. name: "Front",
  41284. image: {
  41285. source: "./media/characters/kimberly-tilson/front.svg",
  41286. extra: 1400/1322,
  41287. bottom: 36/1436
  41288. }
  41289. },
  41290. back: {
  41291. height: math.unit(3 + 6/12, "feet"),
  41292. weight: math.unit(50, "lb"),
  41293. name: "Back",
  41294. image: {
  41295. source: "./media/characters/kimberly-tilson/back.svg",
  41296. extra: 1370/1307,
  41297. bottom: 20/1390
  41298. }
  41299. },
  41300. },
  41301. [
  41302. {
  41303. name: "Normal",
  41304. height: math.unit(3 + 6/12, "feet"),
  41305. default: true
  41306. },
  41307. ]
  41308. ))
  41309. characterMakers.push(() => makeCharacter(
  41310. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41311. {
  41312. front: {
  41313. height: math.unit(1148, "feet"),
  41314. weight: math.unit(34057, "lb"),
  41315. name: "Front",
  41316. image: {
  41317. source: "./media/characters/harthos/front.svg",
  41318. extra: 1391/1339,
  41319. bottom: 13/1404
  41320. }
  41321. },
  41322. },
  41323. [
  41324. {
  41325. name: "Macro",
  41326. height: math.unit(1148, "feet"),
  41327. default: true
  41328. },
  41329. ]
  41330. ))
  41331. characterMakers.push(() => makeCharacter(
  41332. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41333. {
  41334. front: {
  41335. height: math.unit(15, "feet"),
  41336. name: "Front",
  41337. image: {
  41338. source: "./media/characters/hypatia/front.svg",
  41339. extra: 1653/1591,
  41340. bottom: 79/1732
  41341. }
  41342. },
  41343. },
  41344. [
  41345. {
  41346. name: "Normal",
  41347. height: math.unit(15, "feet")
  41348. },
  41349. {
  41350. name: "Small",
  41351. height: math.unit(300, "feet")
  41352. },
  41353. {
  41354. name: "Macro",
  41355. height: math.unit(2500, "feet"),
  41356. default: true
  41357. },
  41358. {
  41359. name: "Mega Macro",
  41360. height: math.unit(1500, "miles")
  41361. },
  41362. {
  41363. name: "Giga Macro",
  41364. height: math.unit(1.5e6, "miles")
  41365. },
  41366. ]
  41367. ))
  41368. characterMakers.push(() => makeCharacter(
  41369. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41370. {
  41371. front: {
  41372. height: math.unit(6, "feet"),
  41373. weight: math.unit(200, "lb"),
  41374. name: "Front",
  41375. image: {
  41376. source: "./media/characters/wulver/front.svg",
  41377. extra: 1724/1632,
  41378. bottom: 130/1854
  41379. }
  41380. },
  41381. frontNsfw: {
  41382. height: math.unit(6, "feet"),
  41383. weight: math.unit(200, "lb"),
  41384. name: "Front (NSFW)",
  41385. image: {
  41386. source: "./media/characters/wulver/front-nsfw.svg",
  41387. extra: 1724/1632,
  41388. bottom: 130/1854
  41389. }
  41390. },
  41391. },
  41392. [
  41393. {
  41394. name: "Human-Sized",
  41395. height: math.unit(6, "feet")
  41396. },
  41397. {
  41398. name: "Normal",
  41399. height: math.unit(4, "meters"),
  41400. default: true
  41401. },
  41402. {
  41403. name: "Large",
  41404. height: math.unit(6, "m")
  41405. },
  41406. ]
  41407. ))
  41408. characterMakers.push(() => makeCharacter(
  41409. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41410. {
  41411. front: {
  41412. height: math.unit(7, "feet"),
  41413. name: "Front",
  41414. image: {
  41415. source: "./media/characters/maru/front.svg",
  41416. extra: 1595/1570,
  41417. bottom: 0/1595
  41418. }
  41419. },
  41420. },
  41421. [
  41422. {
  41423. name: "Normal",
  41424. height: math.unit(7, "feet"),
  41425. default: true
  41426. },
  41427. {
  41428. name: "Macro",
  41429. height: math.unit(700, "feet")
  41430. },
  41431. {
  41432. name: "Mega Macro",
  41433. height: math.unit(25, "miles")
  41434. },
  41435. ]
  41436. ))
  41437. characterMakers.push(() => makeCharacter(
  41438. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41439. {
  41440. front: {
  41441. height: math.unit(6, "feet"),
  41442. weight: math.unit(170, "lb"),
  41443. name: "Front",
  41444. image: {
  41445. source: "./media/characters/xenon/front.svg",
  41446. extra: 1376/1305,
  41447. bottom: 56/1432
  41448. }
  41449. },
  41450. back: {
  41451. height: math.unit(6, "feet"),
  41452. weight: math.unit(170, "lb"),
  41453. name: "Back",
  41454. image: {
  41455. source: "./media/characters/xenon/back.svg",
  41456. extra: 1328/1259,
  41457. bottom: 95/1423
  41458. }
  41459. },
  41460. maw: {
  41461. height: math.unit(0.52, "feet"),
  41462. name: "Maw",
  41463. image: {
  41464. source: "./media/characters/xenon/maw.svg"
  41465. }
  41466. },
  41467. handLeft: {
  41468. height: math.unit(0.82 * 169 / 153, "feet"),
  41469. name: "Hand (Left)",
  41470. image: {
  41471. source: "./media/characters/xenon/hand-left.svg"
  41472. }
  41473. },
  41474. handRight: {
  41475. height: math.unit(0.82, "feet"),
  41476. name: "Hand (Right)",
  41477. image: {
  41478. source: "./media/characters/xenon/hand-right.svg"
  41479. }
  41480. },
  41481. footLeft: {
  41482. height: math.unit(1.13, "feet"),
  41483. name: "Foot (Left)",
  41484. image: {
  41485. source: "./media/characters/xenon/foot-left.svg"
  41486. }
  41487. },
  41488. footRight: {
  41489. height: math.unit(1.13 * 194 / 196, "feet"),
  41490. name: "Foot (Right)",
  41491. image: {
  41492. source: "./media/characters/xenon/foot-right.svg"
  41493. }
  41494. },
  41495. },
  41496. [
  41497. {
  41498. name: "Micro",
  41499. height: math.unit(0.8, "inches")
  41500. },
  41501. {
  41502. name: "Normal",
  41503. height: math.unit(6, "feet")
  41504. },
  41505. {
  41506. name: "Macro",
  41507. height: math.unit(50, "feet"),
  41508. default: true
  41509. },
  41510. {
  41511. name: "Macro+",
  41512. height: math.unit(250, "feet")
  41513. },
  41514. {
  41515. name: "Megamacro",
  41516. height: math.unit(1500, "feet")
  41517. },
  41518. ]
  41519. ))
  41520. characterMakers.push(() => makeCharacter(
  41521. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41522. {
  41523. front: {
  41524. height: math.unit(7 + 5/12, "feet"),
  41525. name: "Front",
  41526. image: {
  41527. source: "./media/characters/zane/front.svg",
  41528. extra: 1260/1203,
  41529. bottom: 94/1354
  41530. }
  41531. },
  41532. back: {
  41533. height: math.unit(5.05, "feet"),
  41534. name: "Back",
  41535. image: {
  41536. source: "./media/characters/zane/back.svg",
  41537. extra: 893/829,
  41538. bottom: 30/923
  41539. }
  41540. },
  41541. werewolf: {
  41542. height: math.unit(11, "feet"),
  41543. name: "Werewolf",
  41544. image: {
  41545. source: "./media/characters/zane/werewolf.svg",
  41546. extra: 1383/1323,
  41547. bottom: 89/1472
  41548. }
  41549. },
  41550. foot: {
  41551. height: math.unit(1.46, "feet"),
  41552. name: "Foot",
  41553. image: {
  41554. source: "./media/characters/zane/foot.svg"
  41555. }
  41556. },
  41557. footFront: {
  41558. height: math.unit(0.784, "feet"),
  41559. name: "Foot (Front)",
  41560. image: {
  41561. source: "./media/characters/zane/foot-front.svg"
  41562. }
  41563. },
  41564. dick: {
  41565. height: math.unit(1.95, "feet"),
  41566. name: "Dick",
  41567. image: {
  41568. source: "./media/characters/zane/dick.svg"
  41569. }
  41570. },
  41571. dickWerewolf: {
  41572. height: math.unit(3.77, "feet"),
  41573. name: "Dick (Werewolf)",
  41574. image: {
  41575. source: "./media/characters/zane/dick.svg"
  41576. }
  41577. },
  41578. },
  41579. [
  41580. {
  41581. name: "Normal",
  41582. height: math.unit(7 + 5/12, "feet"),
  41583. default: true
  41584. },
  41585. ]
  41586. ))
  41587. characterMakers.push(() => makeCharacter(
  41588. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41589. {
  41590. front: {
  41591. height: math.unit(6 + 2/12, "feet"),
  41592. weight: math.unit(284, "lb"),
  41593. name: "Front",
  41594. image: {
  41595. source: "./media/characters/benni-desparque/front.svg",
  41596. extra: 1353/1126,
  41597. bottom: 69/1422
  41598. }
  41599. },
  41600. },
  41601. [
  41602. {
  41603. name: "Civilian",
  41604. height: math.unit(6 + 2/12, "feet")
  41605. },
  41606. {
  41607. name: "Normal",
  41608. height: math.unit(98, "feet"),
  41609. default: true
  41610. },
  41611. {
  41612. name: "Kaiju Fighter",
  41613. height: math.unit(268, "feet")
  41614. },
  41615. ]
  41616. ))
  41617. characterMakers.push(() => makeCharacter(
  41618. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41619. {
  41620. front: {
  41621. height: math.unit(5, "feet"),
  41622. weight: math.unit(105, "lb"),
  41623. name: "Front",
  41624. image: {
  41625. source: "./media/characters/maxine/front.svg",
  41626. extra: 1386/1250,
  41627. bottom: 71/1457
  41628. }
  41629. },
  41630. },
  41631. [
  41632. {
  41633. name: "Normal",
  41634. height: math.unit(5, "feet"),
  41635. default: true
  41636. },
  41637. ]
  41638. ))
  41639. characterMakers.push(() => makeCharacter(
  41640. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41641. {
  41642. front: {
  41643. height: math.unit(11 + 7/12, "feet"),
  41644. weight: math.unit(9576, "lb"),
  41645. name: "Front",
  41646. image: {
  41647. source: "./media/characters/scaly/front.svg",
  41648. extra: 888/867,
  41649. bottom: 36/924
  41650. }
  41651. },
  41652. },
  41653. [
  41654. {
  41655. name: "Normal",
  41656. height: math.unit(11 + 7/12, "feet"),
  41657. default: true
  41658. },
  41659. ]
  41660. ))
  41661. characterMakers.push(() => makeCharacter(
  41662. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41663. {
  41664. front: {
  41665. height: math.unit(6 + 3/12, "feet"),
  41666. name: "Front",
  41667. image: {
  41668. source: "./media/characters/saelria/front.svg",
  41669. extra: 1243/1138,
  41670. bottom: 46/1289
  41671. }
  41672. },
  41673. },
  41674. [
  41675. {
  41676. name: "Micro",
  41677. height: math.unit(6, "inches"),
  41678. },
  41679. {
  41680. name: "Normal",
  41681. height: math.unit(6 + 3/12, "feet"),
  41682. default: true
  41683. },
  41684. {
  41685. name: "Macro",
  41686. height: math.unit(25, "feet")
  41687. },
  41688. ]
  41689. ))
  41690. characterMakers.push(() => makeCharacter(
  41691. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41692. {
  41693. front: {
  41694. height: math.unit(80, "meters"),
  41695. weight: math.unit(7000, "tonnes"),
  41696. name: "Front",
  41697. image: {
  41698. source: "./media/characters/tef/front.svg",
  41699. extra: 2036/1991,
  41700. bottom: 54/2090
  41701. }
  41702. },
  41703. back: {
  41704. height: math.unit(80, "meters"),
  41705. weight: math.unit(7000, "tonnes"),
  41706. name: "Back",
  41707. image: {
  41708. source: "./media/characters/tef/back.svg",
  41709. extra: 2036/1991,
  41710. bottom: 54/2090
  41711. }
  41712. },
  41713. },
  41714. [
  41715. {
  41716. name: "Macro",
  41717. height: math.unit(80, "meters"),
  41718. default: true
  41719. },
  41720. ]
  41721. ))
  41722. characterMakers.push(() => makeCharacter(
  41723. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41724. {
  41725. front: {
  41726. height: math.unit(13, "feet"),
  41727. weight: math.unit(6, "tons"),
  41728. name: "Front",
  41729. image: {
  41730. source: "./media/characters/rover/front.svg",
  41731. extra: 1233/1156,
  41732. bottom: 50/1283
  41733. }
  41734. },
  41735. back: {
  41736. height: math.unit(13, "feet"),
  41737. weight: math.unit(6, "tons"),
  41738. name: "Back",
  41739. image: {
  41740. source: "./media/characters/rover/back.svg",
  41741. extra: 1327/1258,
  41742. bottom: 39/1366
  41743. }
  41744. },
  41745. },
  41746. [
  41747. {
  41748. name: "Normal",
  41749. height: math.unit(13, "feet"),
  41750. default: true
  41751. },
  41752. {
  41753. name: "Macro",
  41754. height: math.unit(1300, "feet")
  41755. },
  41756. {
  41757. name: "Megamacro",
  41758. height: math.unit(1300, "miles")
  41759. },
  41760. {
  41761. name: "Gigamacro",
  41762. height: math.unit(1300000, "miles")
  41763. },
  41764. ]
  41765. ))
  41766. characterMakers.push(() => makeCharacter(
  41767. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41768. {
  41769. front: {
  41770. height: math.unit(6, "feet"),
  41771. weight: math.unit(150, "lb"),
  41772. name: "Front",
  41773. image: {
  41774. source: "./media/characters/ariz/front.svg",
  41775. extra: 1401/1346,
  41776. bottom: 5/1406
  41777. }
  41778. },
  41779. },
  41780. [
  41781. {
  41782. name: "Normal",
  41783. height: math.unit(10, "feet"),
  41784. default: true
  41785. },
  41786. ]
  41787. ))
  41788. characterMakers.push(() => makeCharacter(
  41789. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41790. {
  41791. front: {
  41792. height: math.unit(6, "feet"),
  41793. weight: math.unit(140, "lb"),
  41794. name: "Front",
  41795. image: {
  41796. source: "./media/characters/sigrun/front.svg",
  41797. extra: 1418/1359,
  41798. bottom: 27/1445
  41799. }
  41800. },
  41801. },
  41802. [
  41803. {
  41804. name: "Macro",
  41805. height: math.unit(35, "feet"),
  41806. default: true
  41807. },
  41808. ]
  41809. ))
  41810. characterMakers.push(() => makeCharacter(
  41811. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41812. {
  41813. front: {
  41814. height: math.unit(6, "feet"),
  41815. weight: math.unit(150, "lb"),
  41816. name: "Front",
  41817. image: {
  41818. source: "./media/characters/numin/front.svg",
  41819. extra: 1433/1388,
  41820. bottom: 12/1445
  41821. }
  41822. },
  41823. },
  41824. [
  41825. {
  41826. name: "Macro",
  41827. height: math.unit(21.5, "km"),
  41828. default: true
  41829. },
  41830. ]
  41831. ))
  41832. characterMakers.push(() => makeCharacter(
  41833. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41834. {
  41835. front: {
  41836. height: math.unit(6, "feet"),
  41837. weight: math.unit(463, "lb"),
  41838. name: "Front",
  41839. image: {
  41840. source: "./media/characters/melwa/front.svg",
  41841. extra: 1307/1248,
  41842. bottom: 93/1400
  41843. }
  41844. },
  41845. },
  41846. [
  41847. {
  41848. name: "Macro",
  41849. height: math.unit(50, "meters"),
  41850. default: true
  41851. },
  41852. ]
  41853. ))
  41854. characterMakers.push(() => makeCharacter(
  41855. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41856. {
  41857. front: {
  41858. height: math.unit(325, "feet"),
  41859. name: "Front",
  41860. image: {
  41861. source: "./media/characters/zorkaiju/front.svg",
  41862. extra: 1955/1814,
  41863. bottom: 40/1995
  41864. }
  41865. },
  41866. frontExtended: {
  41867. height: math.unit(325, "feet"),
  41868. name: "Front (Extended)",
  41869. image: {
  41870. source: "./media/characters/zorkaiju/front-extended.svg",
  41871. extra: 1955/1814,
  41872. bottom: 40/1995
  41873. }
  41874. },
  41875. side: {
  41876. height: math.unit(325, "feet"),
  41877. name: "Side",
  41878. image: {
  41879. source: "./media/characters/zorkaiju/side.svg",
  41880. extra: 1495/1396,
  41881. bottom: 17/1512
  41882. }
  41883. },
  41884. sideExtended: {
  41885. height: math.unit(325, "feet"),
  41886. name: "Side (Extended)",
  41887. image: {
  41888. source: "./media/characters/zorkaiju/side-extended.svg",
  41889. extra: 1495/1396,
  41890. bottom: 17/1512
  41891. }
  41892. },
  41893. back: {
  41894. height: math.unit(325, "feet"),
  41895. name: "Back",
  41896. image: {
  41897. source: "./media/characters/zorkaiju/back.svg",
  41898. extra: 1959/1821,
  41899. bottom: 31/1990
  41900. }
  41901. },
  41902. backExtended: {
  41903. height: math.unit(325, "feet"),
  41904. name: "Back (Extended)",
  41905. image: {
  41906. source: "./media/characters/zorkaiju/back-extended.svg",
  41907. extra: 1959/1821,
  41908. bottom: 31/1990
  41909. }
  41910. },
  41911. hand: {
  41912. height: math.unit(58.4, "feet"),
  41913. name: "Hand",
  41914. image: {
  41915. source: "./media/characters/zorkaiju/hand.svg"
  41916. }
  41917. },
  41918. handExtended: {
  41919. height: math.unit(61.4, "feet"),
  41920. name: "Hand (Extended)",
  41921. image: {
  41922. source: "./media/characters/zorkaiju/hand-extended.svg"
  41923. }
  41924. },
  41925. foot: {
  41926. height: math.unit(95, "feet"),
  41927. name: "Foot",
  41928. image: {
  41929. source: "./media/characters/zorkaiju/foot.svg"
  41930. }
  41931. },
  41932. leftArm: {
  41933. height: math.unit(59, "feet"),
  41934. name: "Left Arm",
  41935. image: {
  41936. source: "./media/characters/zorkaiju/left-arm.svg"
  41937. }
  41938. },
  41939. rightArm: {
  41940. height: math.unit(59, "feet"),
  41941. name: "Right Arm",
  41942. image: {
  41943. source: "./media/characters/zorkaiju/right-arm.svg"
  41944. }
  41945. },
  41946. leftArmExtended: {
  41947. height: math.unit(59 * 1.033546, "feet"),
  41948. name: "Left Arm (Extended)",
  41949. image: {
  41950. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41951. }
  41952. },
  41953. rightArmExtended: {
  41954. height: math.unit(59 * 1.0496, "feet"),
  41955. name: "Right Arm (Extended)",
  41956. image: {
  41957. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41958. }
  41959. },
  41960. tail: {
  41961. height: math.unit(104, "feet"),
  41962. name: "Tail",
  41963. image: {
  41964. source: "./media/characters/zorkaiju/tail.svg"
  41965. }
  41966. },
  41967. tailExtended: {
  41968. height: math.unit(104, "feet"),
  41969. name: "Tail (Extended)",
  41970. image: {
  41971. source: "./media/characters/zorkaiju/tail-extended.svg"
  41972. }
  41973. },
  41974. tailBottom: {
  41975. height: math.unit(104, "feet"),
  41976. name: "Tail Bottom",
  41977. image: {
  41978. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41979. }
  41980. },
  41981. crystal: {
  41982. height: math.unit(27.54, "feet"),
  41983. name: "Crystal",
  41984. image: {
  41985. source: "./media/characters/zorkaiju/crystal.svg"
  41986. }
  41987. },
  41988. },
  41989. [
  41990. {
  41991. name: "Kaiju",
  41992. height: math.unit(325, "feet"),
  41993. default: true
  41994. },
  41995. ]
  41996. ))
  41997. characterMakers.push(() => makeCharacter(
  41998. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41999. {
  42000. front: {
  42001. height: math.unit(6 + 1/12, "feet"),
  42002. weight: math.unit(115, "lb"),
  42003. name: "Front",
  42004. image: {
  42005. source: "./media/characters/bailey-belfry/front.svg",
  42006. extra: 1240/1121,
  42007. bottom: 101/1341
  42008. }
  42009. },
  42010. },
  42011. [
  42012. {
  42013. name: "Normal",
  42014. height: math.unit(6 + 1/12, "feet"),
  42015. default: true
  42016. },
  42017. ]
  42018. ))
  42019. characterMakers.push(() => makeCharacter(
  42020. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42021. {
  42022. side: {
  42023. height: math.unit(4, "meters"),
  42024. weight: math.unit(250, "kg"),
  42025. name: "Side",
  42026. image: {
  42027. source: "./media/characters/blacky/side.svg",
  42028. extra: 1027/919,
  42029. bottom: 43/1070
  42030. }
  42031. },
  42032. maw: {
  42033. height: math.unit(1, "meters"),
  42034. name: "Maw",
  42035. image: {
  42036. source: "./media/characters/blacky/maw.svg"
  42037. }
  42038. },
  42039. paw: {
  42040. height: math.unit(1, "meters"),
  42041. name: "Paw",
  42042. image: {
  42043. source: "./media/characters/blacky/paw.svg"
  42044. }
  42045. },
  42046. },
  42047. [
  42048. {
  42049. name: "Normal",
  42050. height: math.unit(4, "meters"),
  42051. default: true
  42052. },
  42053. ]
  42054. ))
  42055. characterMakers.push(() => makeCharacter(
  42056. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42057. {
  42058. front: {
  42059. height: math.unit(170, "cm"),
  42060. weight: math.unit(66, "kg"),
  42061. name: "Front",
  42062. image: {
  42063. source: "./media/characters/thux-ei/front.svg",
  42064. extra: 1109/1011,
  42065. bottom: 8/1117
  42066. }
  42067. },
  42068. },
  42069. [
  42070. {
  42071. name: "Normal",
  42072. height: math.unit(170, "cm"),
  42073. default: true
  42074. },
  42075. ]
  42076. ))
  42077. characterMakers.push(() => makeCharacter(
  42078. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42079. {
  42080. front: {
  42081. height: math.unit(5, "feet"),
  42082. weight: math.unit(120, "lb"),
  42083. name: "Front",
  42084. image: {
  42085. source: "./media/characters/roxanne-voltaire/front.svg",
  42086. extra: 1901/1779,
  42087. bottom: 53/1954
  42088. }
  42089. },
  42090. },
  42091. [
  42092. {
  42093. name: "Normal",
  42094. height: math.unit(5, "feet"),
  42095. default: true
  42096. },
  42097. {
  42098. name: "Giant",
  42099. height: math.unit(50, "feet")
  42100. },
  42101. {
  42102. name: "Titan",
  42103. height: math.unit(500, "feet")
  42104. },
  42105. {
  42106. name: "Macro",
  42107. height: math.unit(5000, "feet")
  42108. },
  42109. {
  42110. name: "Megamacro",
  42111. height: math.unit(50000, "feet")
  42112. },
  42113. {
  42114. name: "Gigamacro",
  42115. height: math.unit(500000, "feet")
  42116. },
  42117. {
  42118. name: "Teramacro",
  42119. height: math.unit(5e6, "feet")
  42120. },
  42121. ]
  42122. ))
  42123. characterMakers.push(() => makeCharacter(
  42124. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42125. {
  42126. front: {
  42127. height: math.unit(6 + 2/12, "feet"),
  42128. name: "Front",
  42129. image: {
  42130. source: "./media/characters/squeaks/front.svg",
  42131. extra: 1823/1768,
  42132. bottom: 138/1961
  42133. }
  42134. },
  42135. },
  42136. [
  42137. {
  42138. name: "Micro",
  42139. height: math.unit(0.5, "inches")
  42140. },
  42141. {
  42142. name: "Normal",
  42143. height: math.unit(6 + 2/12, "feet"),
  42144. default: true
  42145. },
  42146. {
  42147. name: "Macro",
  42148. height: math.unit(600, "feet")
  42149. },
  42150. ]
  42151. ))
  42152. characterMakers.push(() => makeCharacter(
  42153. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42154. {
  42155. front: {
  42156. height: math.unit(1.72, "meters"),
  42157. name: "Front",
  42158. image: {
  42159. source: "./media/characters/archinger/front.svg",
  42160. extra: 1861/1675,
  42161. bottom: 125/1986
  42162. }
  42163. },
  42164. back: {
  42165. height: math.unit(1.72, "meters"),
  42166. name: "Back",
  42167. image: {
  42168. source: "./media/characters/archinger/back.svg",
  42169. extra: 1844/1701,
  42170. bottom: 104/1948
  42171. }
  42172. },
  42173. cock: {
  42174. height: math.unit(0.59, "feet"),
  42175. name: "Cock",
  42176. image: {
  42177. source: "./media/characters/archinger/cock.svg"
  42178. }
  42179. },
  42180. },
  42181. [
  42182. {
  42183. name: "Normal",
  42184. height: math.unit(1.72, "meters"),
  42185. default: true
  42186. },
  42187. {
  42188. name: "Macro",
  42189. height: math.unit(84, "meters")
  42190. },
  42191. {
  42192. name: "Macro+",
  42193. height: math.unit(112, "meters")
  42194. },
  42195. {
  42196. name: "Macro++",
  42197. height: math.unit(960, "meters")
  42198. },
  42199. {
  42200. name: "Macro+++",
  42201. height: math.unit(4, "km")
  42202. },
  42203. {
  42204. name: "Macro++++",
  42205. height: math.unit(48, "km")
  42206. },
  42207. {
  42208. name: "Macro+++++",
  42209. height: math.unit(4500, "km")
  42210. },
  42211. ]
  42212. ))
  42213. characterMakers.push(() => makeCharacter(
  42214. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42215. {
  42216. front: {
  42217. height: math.unit(5 + 5/12, "feet"),
  42218. name: "Front",
  42219. image: {
  42220. source: "./media/characters/alsnapz/front.svg",
  42221. extra: 1157/1065,
  42222. bottom: 42/1199
  42223. }
  42224. },
  42225. },
  42226. [
  42227. {
  42228. name: "Normal",
  42229. height: math.unit(5 + 5/12, "feet"),
  42230. default: true
  42231. },
  42232. ]
  42233. ))
  42234. characterMakers.push(() => makeCharacter(
  42235. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42236. {
  42237. side: {
  42238. height: math.unit(3.2, "earths"),
  42239. name: "Side",
  42240. image: {
  42241. source: "./media/characters/mag/side.svg",
  42242. extra: 1331/1008,
  42243. bottom: 52/1383
  42244. }
  42245. },
  42246. wing: {
  42247. height: math.unit(1.94, "earths"),
  42248. name: "Wing",
  42249. image: {
  42250. source: "./media/characters/mag/wing.svg"
  42251. }
  42252. },
  42253. dick: {
  42254. height: math.unit(1.8, "earths"),
  42255. name: "Dick",
  42256. image: {
  42257. source: "./media/characters/mag/dick.svg"
  42258. }
  42259. },
  42260. ass: {
  42261. height: math.unit(1.33, "earths"),
  42262. name: "Ass",
  42263. image: {
  42264. source: "./media/characters/mag/ass.svg"
  42265. }
  42266. },
  42267. head: {
  42268. height: math.unit(1.1, "earths"),
  42269. name: "Head",
  42270. image: {
  42271. source: "./media/characters/mag/head.svg"
  42272. }
  42273. },
  42274. maw: {
  42275. height: math.unit(1.62, "earths"),
  42276. name: "Maw",
  42277. image: {
  42278. source: "./media/characters/mag/maw.svg"
  42279. }
  42280. },
  42281. },
  42282. [
  42283. {
  42284. name: "Small",
  42285. height: math.unit(162, "feet")
  42286. },
  42287. {
  42288. name: "Normal",
  42289. height: math.unit(3.2, "earths"),
  42290. default: true
  42291. },
  42292. ]
  42293. ))
  42294. characterMakers.push(() => makeCharacter(
  42295. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42296. {
  42297. front: {
  42298. height: math.unit(512, "feet"),
  42299. weight: math.unit(63509, "tonnes"),
  42300. name: "Front",
  42301. image: {
  42302. source: "./media/characters/vorrel-harroc/front.svg",
  42303. extra: 1075/1063,
  42304. bottom: 62/1137
  42305. }
  42306. },
  42307. },
  42308. [
  42309. {
  42310. name: "Normal",
  42311. height: math.unit(10, "feet")
  42312. },
  42313. {
  42314. name: "Macro",
  42315. height: math.unit(512, "feet"),
  42316. default: true
  42317. },
  42318. {
  42319. name: "Megamacro",
  42320. height: math.unit(256, "miles")
  42321. },
  42322. {
  42323. name: "Gigamacro",
  42324. height: math.unit(4096, "miles")
  42325. },
  42326. ]
  42327. ))
  42328. characterMakers.push(() => makeCharacter(
  42329. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42330. {
  42331. side: {
  42332. height: math.unit(50, "feet"),
  42333. name: "Side",
  42334. image: {
  42335. source: "./media/characters/froimar/side.svg",
  42336. extra: 855/638,
  42337. bottom: 99/954
  42338. }
  42339. },
  42340. },
  42341. [
  42342. {
  42343. name: "Macro",
  42344. height: math.unit(50, "feet"),
  42345. default: true
  42346. },
  42347. ]
  42348. ))
  42349. characterMakers.push(() => makeCharacter(
  42350. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42351. {
  42352. front: {
  42353. height: math.unit(210, "miles"),
  42354. name: "Front",
  42355. image: {
  42356. source: "./media/characters/timothy/front.svg",
  42357. extra: 1007/943,
  42358. bottom: 62/1069
  42359. }
  42360. },
  42361. frontSkirt: {
  42362. height: math.unit(210, "miles"),
  42363. name: "Front (Skirt)",
  42364. image: {
  42365. source: "./media/characters/timothy/front-skirt.svg",
  42366. extra: 1007/943,
  42367. bottom: 62/1069
  42368. }
  42369. },
  42370. frontCoat: {
  42371. height: math.unit(210, "miles"),
  42372. name: "Front (Coat)",
  42373. image: {
  42374. source: "./media/characters/timothy/front-coat.svg",
  42375. extra: 1007/943,
  42376. bottom: 62/1069
  42377. }
  42378. },
  42379. },
  42380. [
  42381. {
  42382. name: "Macro",
  42383. height: math.unit(210, "miles"),
  42384. default: true
  42385. },
  42386. {
  42387. name: "Megamacro",
  42388. height: math.unit(210000, "miles")
  42389. },
  42390. ]
  42391. ))
  42392. characterMakers.push(() => makeCharacter(
  42393. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42394. {
  42395. front: {
  42396. height: math.unit(188, "feet"),
  42397. name: "Front",
  42398. image: {
  42399. source: "./media/characters/pyotr/front.svg",
  42400. extra: 1912/1826,
  42401. bottom: 18/1930
  42402. }
  42403. },
  42404. },
  42405. [
  42406. {
  42407. name: "Macro",
  42408. height: math.unit(188, "feet"),
  42409. default: true
  42410. },
  42411. {
  42412. name: "Megamacro",
  42413. height: math.unit(8, "miles")
  42414. },
  42415. ]
  42416. ))
  42417. characterMakers.push(() => makeCharacter(
  42418. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42419. {
  42420. side: {
  42421. height: math.unit(10, "feet"),
  42422. weight: math.unit(4500, "lb"),
  42423. name: "Side",
  42424. image: {
  42425. source: "./media/characters/ackart/side.svg",
  42426. extra: 1776/1668,
  42427. bottom: 116/1892
  42428. }
  42429. },
  42430. },
  42431. [
  42432. {
  42433. name: "Normal",
  42434. height: math.unit(10, "feet"),
  42435. default: true
  42436. },
  42437. ]
  42438. ))
  42439. characterMakers.push(() => makeCharacter(
  42440. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42441. {
  42442. side: {
  42443. height: math.unit(21, "feet"),
  42444. name: "Side",
  42445. image: {
  42446. source: "./media/characters/nolow/side.svg",
  42447. extra: 1484/1434,
  42448. bottom: 85/1569
  42449. }
  42450. },
  42451. sideErect: {
  42452. height: math.unit(21, "feet"),
  42453. name: "Side-erect",
  42454. image: {
  42455. source: "./media/characters/nolow/side-erect.svg",
  42456. extra: 1484/1434,
  42457. bottom: 85/1569
  42458. }
  42459. },
  42460. },
  42461. [
  42462. {
  42463. name: "Regular",
  42464. height: math.unit(12, "feet")
  42465. },
  42466. {
  42467. name: "Big Chee",
  42468. height: math.unit(21, "feet"),
  42469. default: true
  42470. },
  42471. ]
  42472. ))
  42473. characterMakers.push(() => makeCharacter(
  42474. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42475. {
  42476. front: {
  42477. height: math.unit(7, "feet"),
  42478. weight: math.unit(250, "lb"),
  42479. name: "Front",
  42480. image: {
  42481. source: "./media/characters/nines/front.svg",
  42482. extra: 1741/1607,
  42483. bottom: 41/1782
  42484. }
  42485. },
  42486. side: {
  42487. height: math.unit(7, "feet"),
  42488. weight: math.unit(250, "lb"),
  42489. name: "Side",
  42490. image: {
  42491. source: "./media/characters/nines/side.svg",
  42492. extra: 1854/1735,
  42493. bottom: 93/1947
  42494. }
  42495. },
  42496. back: {
  42497. height: math.unit(7, "feet"),
  42498. weight: math.unit(250, "lb"),
  42499. name: "Back",
  42500. image: {
  42501. source: "./media/characters/nines/back.svg",
  42502. extra: 1748/1615,
  42503. bottom: 20/1768
  42504. }
  42505. },
  42506. },
  42507. [
  42508. {
  42509. name: "Megamacro",
  42510. height: math.unit(99, "km"),
  42511. default: true
  42512. },
  42513. ]
  42514. ))
  42515. characterMakers.push(() => makeCharacter(
  42516. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42517. {
  42518. front: {
  42519. height: math.unit(5 + 10/12, "feet"),
  42520. weight: math.unit(210, "lb"),
  42521. name: "Front",
  42522. image: {
  42523. source: "./media/characters/zenith/front.svg",
  42524. extra: 1531/1452,
  42525. bottom: 198/1729
  42526. }
  42527. },
  42528. back: {
  42529. height: math.unit(5 + 10/12, "feet"),
  42530. weight: math.unit(210, "lb"),
  42531. name: "Back",
  42532. image: {
  42533. source: "./media/characters/zenith/back.svg",
  42534. extra: 1571/1487,
  42535. bottom: 75/1646
  42536. }
  42537. },
  42538. },
  42539. [
  42540. {
  42541. name: "Normal",
  42542. height: math.unit(5 + 10/12, "feet"),
  42543. default: true
  42544. }
  42545. ]
  42546. ))
  42547. characterMakers.push(() => makeCharacter(
  42548. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42549. {
  42550. front: {
  42551. height: math.unit(4, "feet"),
  42552. weight: math.unit(60, "lb"),
  42553. name: "Front",
  42554. image: {
  42555. source: "./media/characters/jasper/front.svg",
  42556. extra: 1450/1379,
  42557. bottom: 19/1469
  42558. }
  42559. },
  42560. },
  42561. [
  42562. {
  42563. name: "Normal",
  42564. height: math.unit(4, "feet"),
  42565. default: true
  42566. },
  42567. ]
  42568. ))
  42569. characterMakers.push(() => makeCharacter(
  42570. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42571. {
  42572. front: {
  42573. height: math.unit(6 + 5/12, "feet"),
  42574. weight: math.unit(290, "lb"),
  42575. name: "Front",
  42576. image: {
  42577. source: "./media/characters/tiberius-thyben/front.svg",
  42578. extra: 757/739,
  42579. bottom: 39/796
  42580. }
  42581. },
  42582. },
  42583. [
  42584. {
  42585. name: "Micro",
  42586. height: math.unit(1.5, "inches")
  42587. },
  42588. {
  42589. name: "Normal",
  42590. height: math.unit(6 + 5/12, "feet"),
  42591. default: true
  42592. },
  42593. {
  42594. name: "Macro",
  42595. height: math.unit(300, "feet")
  42596. },
  42597. ]
  42598. ))
  42599. characterMakers.push(() => makeCharacter(
  42600. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42601. {
  42602. front: {
  42603. height: math.unit(5 + 6/12, "feet"),
  42604. weight: math.unit(60, "kg"),
  42605. name: "Front",
  42606. image: {
  42607. source: "./media/characters/sabre/front.svg",
  42608. extra: 738/671,
  42609. bottom: 27/765
  42610. }
  42611. },
  42612. },
  42613. [
  42614. {
  42615. name: "Teeny",
  42616. height: math.unit(2, "inches")
  42617. },
  42618. {
  42619. name: "Smol",
  42620. height: math.unit(8, "inches")
  42621. },
  42622. {
  42623. name: "Normal",
  42624. height: math.unit(5 + 6/12, "feet"),
  42625. default: true
  42626. },
  42627. {
  42628. name: "Mini-Macro",
  42629. height: math.unit(15, "feet")
  42630. },
  42631. {
  42632. name: "Macro",
  42633. height: math.unit(50, "feet")
  42634. },
  42635. ]
  42636. ))
  42637. characterMakers.push(() => makeCharacter(
  42638. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42639. {
  42640. front: {
  42641. height: math.unit(6 + 4/12, "feet"),
  42642. weight: math.unit(170, "lb"),
  42643. name: "Front",
  42644. image: {
  42645. source: "./media/characters/charlie/front.svg",
  42646. extra: 1348/1228,
  42647. bottom: 15/1363
  42648. }
  42649. },
  42650. },
  42651. [
  42652. {
  42653. name: "Macro",
  42654. height: math.unit(1700, "meters"),
  42655. default: true
  42656. },
  42657. {
  42658. name: "MegaMacro",
  42659. height: math.unit(20400, "meters")
  42660. },
  42661. ]
  42662. ))
  42663. characterMakers.push(() => makeCharacter(
  42664. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42665. {
  42666. front: {
  42667. height: math.unit(6 + 3/12, "feet"),
  42668. weight: math.unit(185, "lb"),
  42669. name: "Front",
  42670. image: {
  42671. source: "./media/characters/susan-grant/front.svg",
  42672. extra: 1351/1327,
  42673. bottom: 26/1377
  42674. }
  42675. },
  42676. },
  42677. [
  42678. {
  42679. name: "Normal",
  42680. height: math.unit(6 + 3/12, "feet"),
  42681. default: true
  42682. },
  42683. {
  42684. name: "Macro",
  42685. height: math.unit(225, "feet")
  42686. },
  42687. {
  42688. name: "Macro+",
  42689. height: math.unit(900, "feet")
  42690. },
  42691. {
  42692. name: "MegaMacro",
  42693. height: math.unit(14400, "feet")
  42694. },
  42695. ]
  42696. ))
  42697. characterMakers.push(() => makeCharacter(
  42698. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42699. {
  42700. front: {
  42701. height: math.unit(5 + 4/12, "feet"),
  42702. weight: math.unit(110, "lb"),
  42703. name: "Front",
  42704. image: {
  42705. source: "./media/characters/axel-isanov/front.svg",
  42706. extra: 1096/1065,
  42707. bottom: 13/1109
  42708. }
  42709. },
  42710. },
  42711. [
  42712. {
  42713. name: "Normal",
  42714. height: math.unit(5 + 4/12, "feet"),
  42715. default: true
  42716. },
  42717. ]
  42718. ))
  42719. characterMakers.push(() => makeCharacter(
  42720. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42721. {
  42722. front: {
  42723. height: math.unit(9, "feet"),
  42724. weight: math.unit(467, "lb"),
  42725. name: "Front",
  42726. image: {
  42727. source: "./media/characters/necahual/front.svg",
  42728. extra: 920/873,
  42729. bottom: 26/946
  42730. }
  42731. },
  42732. back: {
  42733. height: math.unit(9, "feet"),
  42734. weight: math.unit(467, "lb"),
  42735. name: "Back",
  42736. image: {
  42737. source: "./media/characters/necahual/back.svg",
  42738. extra: 930/884,
  42739. bottom: 16/946
  42740. }
  42741. },
  42742. frontUnderwear: {
  42743. height: math.unit(9, "feet"),
  42744. weight: math.unit(467, "lb"),
  42745. name: "Front (Underwear)",
  42746. image: {
  42747. source: "./media/characters/necahual/front-underwear.svg",
  42748. extra: 920/873,
  42749. bottom: 26/946
  42750. }
  42751. },
  42752. frontDressed: {
  42753. height: math.unit(9, "feet"),
  42754. weight: math.unit(467, "lb"),
  42755. name: "Front (Dressed)",
  42756. image: {
  42757. source: "./media/characters/necahual/front-dressed.svg",
  42758. extra: 920/873,
  42759. bottom: 26/946
  42760. }
  42761. },
  42762. },
  42763. [
  42764. {
  42765. name: "Comprsesed",
  42766. height: math.unit(9, "feet")
  42767. },
  42768. {
  42769. name: "Natural",
  42770. height: math.unit(15, "feet"),
  42771. default: true
  42772. },
  42773. {
  42774. name: "Boosted",
  42775. height: math.unit(50, "feet")
  42776. },
  42777. {
  42778. name: "Boosted+",
  42779. height: math.unit(150, "feet")
  42780. },
  42781. {
  42782. name: "Max",
  42783. height: math.unit(500, "feet")
  42784. },
  42785. ]
  42786. ))
  42787. characterMakers.push(() => makeCharacter(
  42788. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42789. {
  42790. front: {
  42791. height: math.unit(22 + 1/12, "feet"),
  42792. weight: math.unit(3200, "lb"),
  42793. name: "Front",
  42794. image: {
  42795. source: "./media/characters/theo-acacia/front.svg",
  42796. extra: 1796/1741,
  42797. bottom: 83/1879
  42798. }
  42799. },
  42800. frontUnderwear: {
  42801. height: math.unit(22 + 1/12, "feet"),
  42802. weight: math.unit(3200, "lb"),
  42803. name: "Front (Underwear)",
  42804. image: {
  42805. source: "./media/characters/theo-acacia/front-underwear.svg",
  42806. extra: 1796/1741,
  42807. bottom: 83/1879
  42808. }
  42809. },
  42810. frontNude: {
  42811. height: math.unit(22 + 1/12, "feet"),
  42812. weight: math.unit(3200, "lb"),
  42813. name: "Front (Nude)",
  42814. image: {
  42815. source: "./media/characters/theo-acacia/front-nude.svg",
  42816. extra: 1796/1741,
  42817. bottom: 83/1879
  42818. }
  42819. },
  42820. },
  42821. [
  42822. {
  42823. name: "Normal",
  42824. height: math.unit(22 + 1/12, "feet"),
  42825. default: true
  42826. },
  42827. ]
  42828. ))
  42829. characterMakers.push(() => makeCharacter(
  42830. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42831. {
  42832. front: {
  42833. height: math.unit(20, "feet"),
  42834. name: "Front",
  42835. image: {
  42836. source: "./media/characters/astra/front.svg",
  42837. extra: 1850/1714,
  42838. bottom: 106/1956
  42839. }
  42840. },
  42841. frontUndressed: {
  42842. height: math.unit(20, "feet"),
  42843. name: "Front (Undressed)",
  42844. image: {
  42845. source: "./media/characters/astra/front-undressed.svg",
  42846. extra: 1926/1749,
  42847. bottom: 0/1926
  42848. }
  42849. },
  42850. hand: {
  42851. height: math.unit(1.53, "feet"),
  42852. name: "Hand",
  42853. image: {
  42854. source: "./media/characters/astra/hand.svg"
  42855. }
  42856. },
  42857. paw: {
  42858. height: math.unit(1.53, "feet"),
  42859. name: "Paw",
  42860. image: {
  42861. source: "./media/characters/astra/paw.svg"
  42862. }
  42863. },
  42864. },
  42865. [
  42866. {
  42867. name: "Smallest",
  42868. height: math.unit(20, "feet")
  42869. },
  42870. {
  42871. name: "Normal",
  42872. height: math.unit(1e9, "miles"),
  42873. default: true
  42874. },
  42875. {
  42876. name: "Larger",
  42877. height: math.unit(5, "multiverses")
  42878. },
  42879. {
  42880. name: "Largest",
  42881. height: math.unit(1e9, "multiverses")
  42882. },
  42883. ]
  42884. ))
  42885. characterMakers.push(() => makeCharacter(
  42886. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42887. {
  42888. front: {
  42889. height: math.unit(8, "feet"),
  42890. name: "Front",
  42891. image: {
  42892. source: "./media/characters/breanna/front.svg",
  42893. extra: 1912/1632,
  42894. bottom: 33/1945
  42895. }
  42896. },
  42897. },
  42898. [
  42899. {
  42900. name: "Smallest",
  42901. height: math.unit(8, "feet")
  42902. },
  42903. {
  42904. name: "Normal",
  42905. height: math.unit(1, "mile"),
  42906. default: true
  42907. },
  42908. {
  42909. name: "Maximum",
  42910. height: math.unit(1500000000000, "lightyears")
  42911. },
  42912. ]
  42913. ))
  42914. characterMakers.push(() => makeCharacter(
  42915. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42916. {
  42917. front: {
  42918. height: math.unit(5 + 11/12, "feet"),
  42919. weight: math.unit(155, "lb"),
  42920. name: "Front",
  42921. image: {
  42922. source: "./media/characters/cai/front.svg",
  42923. extra: 1823/1702,
  42924. bottom: 32/1855
  42925. }
  42926. },
  42927. back: {
  42928. height: math.unit(5 + 11/12, "feet"),
  42929. weight: math.unit(155, "lb"),
  42930. name: "Back",
  42931. image: {
  42932. source: "./media/characters/cai/back.svg",
  42933. extra: 1809/1708,
  42934. bottom: 31/1840
  42935. }
  42936. },
  42937. },
  42938. [
  42939. {
  42940. name: "Normal",
  42941. height: math.unit(5 + 11/12, "feet"),
  42942. default: true
  42943. },
  42944. {
  42945. name: "Big",
  42946. height: math.unit(15, "feet")
  42947. },
  42948. {
  42949. name: "Macro",
  42950. height: math.unit(200, "feet")
  42951. },
  42952. ]
  42953. ))
  42954. characterMakers.push(() => makeCharacter(
  42955. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42956. {
  42957. front: {
  42958. height: math.unit(5 + 6/12, "feet"),
  42959. weight: math.unit(160, "lb"),
  42960. name: "Front",
  42961. image: {
  42962. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42963. extra: 1227/1174,
  42964. bottom: 37/1264
  42965. }
  42966. },
  42967. },
  42968. [
  42969. {
  42970. name: "Macro",
  42971. height: math.unit(444, "meters"),
  42972. default: true
  42973. },
  42974. ]
  42975. ))
  42976. characterMakers.push(() => makeCharacter(
  42977. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42978. {
  42979. front: {
  42980. height: math.unit(18 + 7/12, "feet"),
  42981. name: "Front",
  42982. image: {
  42983. source: "./media/characters/rex/front.svg",
  42984. extra: 1941/1807,
  42985. bottom: 66/2007
  42986. }
  42987. },
  42988. back: {
  42989. height: math.unit(18 + 7/12, "feet"),
  42990. name: "Back",
  42991. image: {
  42992. source: "./media/characters/rex/back.svg",
  42993. extra: 1937/1822,
  42994. bottom: 42/1979
  42995. }
  42996. },
  42997. boot: {
  42998. height: math.unit(3.45, "feet"),
  42999. name: "Boot",
  43000. image: {
  43001. source: "./media/characters/rex/boot.svg"
  43002. }
  43003. },
  43004. paw: {
  43005. height: math.unit(4.17, "feet"),
  43006. name: "Paw",
  43007. image: {
  43008. source: "./media/characters/rex/paw.svg"
  43009. }
  43010. },
  43011. head: {
  43012. height: math.unit(6.728, "feet"),
  43013. name: "Head",
  43014. image: {
  43015. source: "./media/characters/rex/head.svg"
  43016. }
  43017. },
  43018. },
  43019. [
  43020. {
  43021. name: "Nano",
  43022. height: math.unit(18 + 7/12, "feet")
  43023. },
  43024. {
  43025. name: "Micro",
  43026. height: math.unit(1.5, "megameters")
  43027. },
  43028. {
  43029. name: "Normal",
  43030. height: math.unit(440, "megameters"),
  43031. default: true
  43032. },
  43033. {
  43034. name: "Macro",
  43035. height: math.unit(2.5, "gigameters")
  43036. },
  43037. {
  43038. name: "Gigamacro",
  43039. height: math.unit(2, "galaxies")
  43040. },
  43041. ]
  43042. ))
  43043. characterMakers.push(() => makeCharacter(
  43044. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43045. {
  43046. side: {
  43047. height: math.unit(32, "feet"),
  43048. weight: math.unit(250000, "lb"),
  43049. name: "Side",
  43050. image: {
  43051. source: "./media/characters/silverwing/side.svg",
  43052. extra: 1100/1019,
  43053. bottom: 204/1304
  43054. }
  43055. },
  43056. },
  43057. [
  43058. {
  43059. name: "Normal",
  43060. height: math.unit(32, "feet"),
  43061. default: true
  43062. },
  43063. ]
  43064. ))
  43065. characterMakers.push(() => makeCharacter(
  43066. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43067. {
  43068. front: {
  43069. height: math.unit(6 + 6/12, "feet"),
  43070. weight: math.unit(350, "lb"),
  43071. name: "Front",
  43072. image: {
  43073. source: "./media/characters/tristan-hawthorne/front.svg",
  43074. extra: 1159/1124,
  43075. bottom: 37/1196
  43076. },
  43077. form: "labrador",
  43078. default: true
  43079. },
  43080. skunkFront: {
  43081. height: math.unit(4 + 6/12, "feet"),
  43082. weight: math.unit(120, "lb"),
  43083. name: "Front",
  43084. image: {
  43085. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43086. extra: 1609/1551,
  43087. bottom: 169/1778
  43088. },
  43089. form: "skunk",
  43090. default: true
  43091. },
  43092. },
  43093. [
  43094. {
  43095. name: "Normal",
  43096. height: math.unit(6 + 6/12, "feet"),
  43097. form: "labrador",
  43098. default: true
  43099. },
  43100. {
  43101. name: "Normal",
  43102. height: math.unit(4 + 6/12, "feet"),
  43103. form: "skunk",
  43104. default: true
  43105. },
  43106. ],
  43107. {
  43108. "labrador": {
  43109. name: "Labrador",
  43110. default: true
  43111. },
  43112. "skunk": {
  43113. name: "Skunk"
  43114. }
  43115. }
  43116. ))
  43117. characterMakers.push(() => makeCharacter(
  43118. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43119. {
  43120. front: {
  43121. height: math.unit(5 + 11/12, "feet"),
  43122. weight: math.unit(190, "lb"),
  43123. name: "Front",
  43124. image: {
  43125. source: "./media/characters/mizu/front.svg",
  43126. extra: 1988/1788,
  43127. bottom: 14/2002
  43128. }
  43129. },
  43130. },
  43131. [
  43132. {
  43133. name: "Normal",
  43134. height: math.unit(5 + 11/12, "feet"),
  43135. default: true
  43136. },
  43137. ]
  43138. ))
  43139. characterMakers.push(() => makeCharacter(
  43140. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43141. {
  43142. front: {
  43143. height: math.unit(1.7, "feet"),
  43144. weight: math.unit(50, "lb"),
  43145. name: "Front",
  43146. image: {
  43147. source: "./media/characters/dechroma/front.svg",
  43148. extra: 1095/859,
  43149. bottom: 64/1159
  43150. }
  43151. },
  43152. },
  43153. [
  43154. {
  43155. name: "Normal",
  43156. height: math.unit(1.7, "feet"),
  43157. default: true
  43158. },
  43159. ]
  43160. ))
  43161. characterMakers.push(() => makeCharacter(
  43162. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43163. {
  43164. side: {
  43165. height: math.unit(30, "feet"),
  43166. name: "Side",
  43167. image: {
  43168. source: "./media/characters/veluren-thanazel/side.svg",
  43169. extra: 1611/633,
  43170. bottom: 118/1729
  43171. }
  43172. },
  43173. front: {
  43174. height: math.unit(30, "feet"),
  43175. name: "Front",
  43176. image: {
  43177. source: "./media/characters/veluren-thanazel/front.svg",
  43178. extra: 1486/636,
  43179. bottom: 238/1724
  43180. }
  43181. },
  43182. head: {
  43183. height: math.unit(21.4, "feet"),
  43184. name: "Head",
  43185. image: {
  43186. source: "./media/characters/veluren-thanazel/head.svg"
  43187. }
  43188. },
  43189. genitals: {
  43190. height: math.unit(19.4, "feet"),
  43191. name: "Genitals",
  43192. image: {
  43193. source: "./media/characters/veluren-thanazel/genitals.svg"
  43194. }
  43195. },
  43196. },
  43197. [
  43198. {
  43199. name: "Social",
  43200. height: math.unit(6, "feet")
  43201. },
  43202. {
  43203. name: "Play",
  43204. height: math.unit(12, "feet")
  43205. },
  43206. {
  43207. name: "True",
  43208. height: math.unit(30, "feet"),
  43209. default: true
  43210. },
  43211. ]
  43212. ))
  43213. characterMakers.push(() => makeCharacter(
  43214. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43215. {
  43216. front: {
  43217. height: math.unit(7 + 6/12, "feet"),
  43218. weight: math.unit(500, "kg"),
  43219. name: "Front",
  43220. image: {
  43221. source: "./media/characters/arcturas/front.svg",
  43222. extra: 1700/1500,
  43223. bottom: 145/1845
  43224. }
  43225. },
  43226. },
  43227. [
  43228. {
  43229. name: "Normal",
  43230. height: math.unit(7 + 6/12, "feet"),
  43231. default: true
  43232. },
  43233. ]
  43234. ))
  43235. characterMakers.push(() => makeCharacter(
  43236. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43237. {
  43238. side: {
  43239. height: math.unit(6, "feet"),
  43240. weight: math.unit(2, "tons"),
  43241. name: "Side",
  43242. image: {
  43243. source: "./media/characters/vitaen/side.svg",
  43244. extra: 1157/617,
  43245. bottom: 122/1279
  43246. }
  43247. },
  43248. },
  43249. [
  43250. {
  43251. name: "Normal",
  43252. height: math.unit(6, "feet"),
  43253. default: true
  43254. },
  43255. ]
  43256. ))
  43257. characterMakers.push(() => makeCharacter(
  43258. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43259. {
  43260. front: {
  43261. height: math.unit(19, "feet"),
  43262. name: "Front",
  43263. image: {
  43264. source: "./media/characters/fia-dreamweaver/front.svg",
  43265. extra: 1630/1504,
  43266. bottom: 25/1655
  43267. }
  43268. },
  43269. },
  43270. [
  43271. {
  43272. name: "Normal",
  43273. height: math.unit(19, "feet"),
  43274. default: true
  43275. },
  43276. ]
  43277. ))
  43278. characterMakers.push(() => makeCharacter(
  43279. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43280. {
  43281. front: {
  43282. height: math.unit(5 + 4/12, "feet"),
  43283. name: "Front",
  43284. image: {
  43285. source: "./media/characters/artan/front.svg",
  43286. extra: 1618/1535,
  43287. bottom: 46/1664
  43288. }
  43289. },
  43290. back: {
  43291. height: math.unit(5 + 4/12, "feet"),
  43292. name: "Back",
  43293. image: {
  43294. source: "./media/characters/artan/back.svg",
  43295. extra: 1618/1543,
  43296. bottom: 31/1649
  43297. }
  43298. },
  43299. },
  43300. [
  43301. {
  43302. name: "Normal",
  43303. height: math.unit(5 + 4/12, "feet"),
  43304. default: true
  43305. },
  43306. ]
  43307. ))
  43308. characterMakers.push(() => makeCharacter(
  43309. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43310. {
  43311. side: {
  43312. height: math.unit(182, "cm"),
  43313. weight: math.unit(1000, "lb"),
  43314. name: "Side",
  43315. image: {
  43316. source: "./media/characters/silver-dragon/side.svg",
  43317. extra: 710/287,
  43318. bottom: 88/798
  43319. }
  43320. },
  43321. },
  43322. [
  43323. {
  43324. name: "Normal",
  43325. height: math.unit(182, "cm"),
  43326. default: true
  43327. },
  43328. ]
  43329. ))
  43330. characterMakers.push(() => makeCharacter(
  43331. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43332. {
  43333. side: {
  43334. height: math.unit(6 + 6/12, "feet"),
  43335. weight: math.unit(1.5, "tons"),
  43336. name: "Side",
  43337. image: {
  43338. source: "./media/characters/zephyr/side.svg",
  43339. extra: 1433/586,
  43340. bottom: 109/1542
  43341. }
  43342. },
  43343. },
  43344. [
  43345. {
  43346. name: "Normal",
  43347. height: math.unit(6 + 6/12, "feet"),
  43348. default: true
  43349. },
  43350. ]
  43351. ))
  43352. characterMakers.push(() => makeCharacter(
  43353. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43354. {
  43355. side: {
  43356. height: math.unit(1, "feet"),
  43357. name: "Side",
  43358. image: {
  43359. source: "./media/characters/vixye/side.svg",
  43360. extra: 632/541,
  43361. bottom: 0/632
  43362. }
  43363. },
  43364. },
  43365. [
  43366. {
  43367. name: "Normal",
  43368. height: math.unit(1, "feet"),
  43369. default: true
  43370. },
  43371. {
  43372. name: "True",
  43373. height: math.unit(1e15, "multiverses")
  43374. },
  43375. ]
  43376. ))
  43377. characterMakers.push(() => makeCharacter(
  43378. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43379. {
  43380. front: {
  43381. height: math.unit(8 + 2/12, "feet"),
  43382. weight: math.unit(650, "lb"),
  43383. name: "Front",
  43384. image: {
  43385. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43386. extra: 1174/1137,
  43387. bottom: 82/1256
  43388. }
  43389. },
  43390. back: {
  43391. height: math.unit(8 + 2/12, "feet"),
  43392. weight: math.unit(650, "lb"),
  43393. name: "Back",
  43394. image: {
  43395. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43396. extra: 1204/1157,
  43397. bottom: 46/1250
  43398. }
  43399. },
  43400. },
  43401. [
  43402. {
  43403. name: "Wildform",
  43404. height: math.unit(8 + 2/12, "feet"),
  43405. default: true
  43406. },
  43407. ]
  43408. ))
  43409. characterMakers.push(() => makeCharacter(
  43410. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43411. {
  43412. front: {
  43413. height: math.unit(18, "feet"),
  43414. name: "Front",
  43415. image: {
  43416. source: "./media/characters/cyphin/front.svg",
  43417. extra: 970/886,
  43418. bottom: 42/1012
  43419. }
  43420. },
  43421. back: {
  43422. height: math.unit(18, "feet"),
  43423. name: "Back",
  43424. image: {
  43425. source: "./media/characters/cyphin/back.svg",
  43426. extra: 1009/894,
  43427. bottom: 24/1033
  43428. }
  43429. },
  43430. head: {
  43431. height: math.unit(5.05, "feet"),
  43432. name: "Head",
  43433. image: {
  43434. source: "./media/characters/cyphin/head.svg"
  43435. }
  43436. },
  43437. tailbud: {
  43438. height: math.unit(5, "feet"),
  43439. name: "Tailbud",
  43440. image: {
  43441. source: "./media/characters/cyphin/tailbud.svg"
  43442. }
  43443. },
  43444. },
  43445. [
  43446. ]
  43447. ))
  43448. characterMakers.push(() => makeCharacter(
  43449. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43450. {
  43451. side: {
  43452. height: math.unit(10, "feet"),
  43453. weight: math.unit(6, "tons"),
  43454. name: "Side",
  43455. image: {
  43456. source: "./media/characters/raijin/side.svg",
  43457. extra: 1529/613,
  43458. bottom: 337/1866
  43459. }
  43460. },
  43461. },
  43462. [
  43463. {
  43464. name: "Normal",
  43465. height: math.unit(10, "feet"),
  43466. default: true
  43467. },
  43468. ]
  43469. ))
  43470. characterMakers.push(() => makeCharacter(
  43471. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43472. {
  43473. side: {
  43474. height: math.unit(9, "feet"),
  43475. name: "Side",
  43476. image: {
  43477. source: "./media/characters/nilghais/side.svg",
  43478. extra: 1047/744,
  43479. bottom: 91/1138
  43480. }
  43481. },
  43482. head: {
  43483. height: math.unit(3.14, "feet"),
  43484. name: "Head",
  43485. image: {
  43486. source: "./media/characters/nilghais/head.svg"
  43487. }
  43488. },
  43489. mouth: {
  43490. height: math.unit(4.6, "feet"),
  43491. name: "Mouth",
  43492. image: {
  43493. source: "./media/characters/nilghais/mouth.svg"
  43494. }
  43495. },
  43496. wings: {
  43497. height: math.unit(24, "feet"),
  43498. name: "Wings",
  43499. image: {
  43500. source: "./media/characters/nilghais/wings.svg"
  43501. }
  43502. },
  43503. ass: {
  43504. height: math.unit(6.12, "feet"),
  43505. name: "Ass",
  43506. image: {
  43507. source: "./media/characters/nilghais/ass.svg"
  43508. }
  43509. },
  43510. },
  43511. [
  43512. {
  43513. name: "Normal",
  43514. height: math.unit(9, "feet"),
  43515. default: true
  43516. },
  43517. ]
  43518. ))
  43519. characterMakers.push(() => makeCharacter(
  43520. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43521. {
  43522. regular: {
  43523. height: math.unit(16 + 2/12, "feet"),
  43524. weight: math.unit(2300, "lb"),
  43525. name: "Regular",
  43526. image: {
  43527. source: "./media/characters/zolgar/regular.svg",
  43528. extra: 1246/1004,
  43529. bottom: 124/1370
  43530. }
  43531. },
  43532. boxers: {
  43533. height: math.unit(16 + 2/12, "feet"),
  43534. weight: math.unit(2300, "lb"),
  43535. name: "Boxers",
  43536. image: {
  43537. source: "./media/characters/zolgar/boxers.svg",
  43538. extra: 1246/1004,
  43539. bottom: 124/1370
  43540. }
  43541. },
  43542. armored: {
  43543. height: math.unit(16 + 2/12, "feet"),
  43544. weight: math.unit(2300, "lb"),
  43545. name: "Armored",
  43546. image: {
  43547. source: "./media/characters/zolgar/armored.svg",
  43548. extra: 1246/1004,
  43549. bottom: 124/1370
  43550. }
  43551. },
  43552. goth: {
  43553. height: math.unit(16 + 2/12, "feet"),
  43554. weight: math.unit(2300, "lb"),
  43555. name: "Goth",
  43556. image: {
  43557. source: "./media/characters/zolgar/goth.svg",
  43558. extra: 1246/1004,
  43559. bottom: 124/1370
  43560. }
  43561. },
  43562. },
  43563. [
  43564. {
  43565. name: "Shrunken Down",
  43566. height: math.unit(9 + 2/12, "feet")
  43567. },
  43568. {
  43569. name: "Normal",
  43570. height: math.unit(16 + 2/12, "feet"),
  43571. default: true
  43572. },
  43573. ]
  43574. ))
  43575. characterMakers.push(() => makeCharacter(
  43576. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43577. {
  43578. front: {
  43579. height: math.unit(6, "feet"),
  43580. weight: math.unit(168, "lb"),
  43581. name: "Front",
  43582. image: {
  43583. source: "./media/characters/luca/front.svg",
  43584. extra: 841/667,
  43585. bottom: 102/943
  43586. }
  43587. },
  43588. },
  43589. [
  43590. {
  43591. name: "Normal",
  43592. height: math.unit(6, "feet"),
  43593. default: true
  43594. },
  43595. ]
  43596. ))
  43597. characterMakers.push(() => makeCharacter(
  43598. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43599. {
  43600. side: {
  43601. height: math.unit(7 + 3/12, "feet"),
  43602. weight: math.unit(312, "lb"),
  43603. name: "Side",
  43604. image: {
  43605. source: "./media/characters/zezo/side.svg",
  43606. extra: 1192/1067,
  43607. bottom: 63/1255
  43608. }
  43609. },
  43610. },
  43611. [
  43612. {
  43613. name: "Normal",
  43614. height: math.unit(7 + 3/12, "feet"),
  43615. default: true
  43616. },
  43617. ]
  43618. ))
  43619. characterMakers.push(() => makeCharacter(
  43620. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43621. {
  43622. front: {
  43623. height: math.unit(5 + 5/12, "feet"),
  43624. weight: math.unit(170, "lb"),
  43625. name: "Front",
  43626. image: {
  43627. source: "./media/characters/mayso/front.svg",
  43628. extra: 1215/1108,
  43629. bottom: 16/1231
  43630. }
  43631. },
  43632. },
  43633. [
  43634. {
  43635. name: "Normal",
  43636. height: math.unit(5 + 5/12, "feet"),
  43637. default: true
  43638. },
  43639. ]
  43640. ))
  43641. characterMakers.push(() => makeCharacter(
  43642. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43643. {
  43644. front: {
  43645. height: math.unit(4 + 3/12, "feet"),
  43646. weight: math.unit(80, "lb"),
  43647. name: "Front",
  43648. image: {
  43649. source: "./media/characters/hess/front.svg",
  43650. extra: 1200/1123,
  43651. bottom: 16/1216
  43652. }
  43653. },
  43654. },
  43655. [
  43656. {
  43657. name: "Normal",
  43658. height: math.unit(4 + 3/12, "feet"),
  43659. default: true
  43660. },
  43661. ]
  43662. ))
  43663. characterMakers.push(() => makeCharacter(
  43664. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43665. {
  43666. front: {
  43667. height: math.unit(1.9, "meters"),
  43668. name: "Front",
  43669. image: {
  43670. source: "./media/characters/ashgar/front.svg",
  43671. extra: 1177/1146,
  43672. bottom: 99/1276
  43673. }
  43674. },
  43675. back: {
  43676. height: math.unit(1.9, "meters"),
  43677. name: "Back",
  43678. image: {
  43679. source: "./media/characters/ashgar/back.svg",
  43680. extra: 1201/1183,
  43681. bottom: 53/1254
  43682. }
  43683. },
  43684. feral: {
  43685. height: math.unit(1.4, "meters"),
  43686. name: "Feral",
  43687. image: {
  43688. source: "./media/characters/ashgar/feral.svg",
  43689. extra: 370/345,
  43690. bottom: 45/415
  43691. }
  43692. },
  43693. },
  43694. [
  43695. {
  43696. name: "Normal",
  43697. height: math.unit(1.9, "meters"),
  43698. default: true
  43699. },
  43700. ]
  43701. ))
  43702. characterMakers.push(() => makeCharacter(
  43703. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43704. {
  43705. regular: {
  43706. height: math.unit(6, "feet"),
  43707. weight: math.unit(220, "lb"),
  43708. name: "Regular",
  43709. image: {
  43710. source: "./media/characters/phillip/regular.svg",
  43711. extra: 1373/1277,
  43712. bottom: 75/1448
  43713. }
  43714. },
  43715. dressed: {
  43716. height: math.unit(6, "feet"),
  43717. weight: math.unit(220, "lb"),
  43718. name: "Dressed",
  43719. image: {
  43720. source: "./media/characters/phillip/dressed.svg",
  43721. extra: 1373/1277,
  43722. bottom: 75/1448
  43723. }
  43724. },
  43725. paw: {
  43726. height: math.unit(1.44, "feet"),
  43727. name: "Paw",
  43728. image: {
  43729. source: "./media/characters/phillip/paw.svg"
  43730. }
  43731. },
  43732. },
  43733. [
  43734. {
  43735. name: "Normal",
  43736. height: math.unit(6, "feet"),
  43737. default: true
  43738. },
  43739. ]
  43740. ))
  43741. characterMakers.push(() => makeCharacter(
  43742. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43743. {
  43744. side: {
  43745. height: math.unit(42, "feet"),
  43746. name: "Side",
  43747. image: {
  43748. source: "./media/characters/uvula/side.svg",
  43749. extra: 683/586,
  43750. bottom: 60/743
  43751. }
  43752. },
  43753. front: {
  43754. height: math.unit(42, "feet"),
  43755. name: "Front",
  43756. image: {
  43757. source: "./media/characters/uvula/front.svg",
  43758. extra: 705/613,
  43759. bottom: 54/759
  43760. }
  43761. },
  43762. maw: {
  43763. height: math.unit(23.5, "feet"),
  43764. name: "Maw",
  43765. image: {
  43766. source: "./media/characters/uvula/maw.svg"
  43767. }
  43768. },
  43769. },
  43770. [
  43771. {
  43772. name: "Original Size",
  43773. height: math.unit(14, "inches")
  43774. },
  43775. {
  43776. name: "Human Size",
  43777. height: math.unit(6, "feet")
  43778. },
  43779. {
  43780. name: "Big",
  43781. height: math.unit(42, "feet"),
  43782. default: true
  43783. },
  43784. {
  43785. name: "Bigger",
  43786. height: math.unit(100, "feet")
  43787. },
  43788. ]
  43789. ))
  43790. characterMakers.push(() => makeCharacter(
  43791. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43792. {
  43793. front: {
  43794. height: math.unit(5 + 11/12, "feet"),
  43795. name: "Front",
  43796. image: {
  43797. source: "./media/characters/lannah/front.svg",
  43798. extra: 1208/1113,
  43799. bottom: 97/1305
  43800. }
  43801. },
  43802. },
  43803. [
  43804. {
  43805. name: "Normal",
  43806. height: math.unit(5 + 11/12, "feet"),
  43807. default: true
  43808. },
  43809. ]
  43810. ))
  43811. characterMakers.push(() => makeCharacter(
  43812. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43813. {
  43814. front: {
  43815. height: math.unit(6 + 3/12, "feet"),
  43816. weight: math.unit(3.5, "tons"),
  43817. name: "Front",
  43818. image: {
  43819. source: "./media/characters/emberflame/front.svg",
  43820. extra: 1198/672,
  43821. bottom: 82/1280
  43822. }
  43823. },
  43824. side: {
  43825. height: math.unit(6 + 3/12, "feet"),
  43826. weight: math.unit(3.5, "tons"),
  43827. name: "Side",
  43828. image: {
  43829. source: "./media/characters/emberflame/side.svg",
  43830. extra: 938/527,
  43831. bottom: 56/994
  43832. }
  43833. },
  43834. },
  43835. [
  43836. {
  43837. name: "Normal",
  43838. height: math.unit(6 + 3/12, "feet"),
  43839. default: true
  43840. },
  43841. ]
  43842. ))
  43843. characterMakers.push(() => makeCharacter(
  43844. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43845. {
  43846. side: {
  43847. height: math.unit(17.5, "feet"),
  43848. weight: math.unit(35, "tons"),
  43849. name: "Side",
  43850. image: {
  43851. source: "./media/characters/sophie-ambrose/side.svg",
  43852. extra: 1573/1242,
  43853. bottom: 71/1644
  43854. }
  43855. },
  43856. maw: {
  43857. height: math.unit(7.4, "feet"),
  43858. name: "Maw",
  43859. image: {
  43860. source: "./media/characters/sophie-ambrose/maw.svg"
  43861. }
  43862. },
  43863. },
  43864. [
  43865. {
  43866. name: "Normal",
  43867. height: math.unit(17.5, "feet"),
  43868. default: true
  43869. },
  43870. ]
  43871. ))
  43872. characterMakers.push(() => makeCharacter(
  43873. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43874. {
  43875. front: {
  43876. height: math.unit(280, "feet"),
  43877. weight: math.unit(550, "tons"),
  43878. name: "Front",
  43879. image: {
  43880. source: "./media/characters/king-mugi/front.svg",
  43881. extra: 1102/947,
  43882. bottom: 104/1206
  43883. }
  43884. },
  43885. },
  43886. [
  43887. {
  43888. name: "King Mugi",
  43889. height: math.unit(280, "feet"),
  43890. default: true
  43891. },
  43892. ]
  43893. ))
  43894. characterMakers.push(() => makeCharacter(
  43895. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43896. {
  43897. front: {
  43898. height: math.unit(64, "meters"),
  43899. name: "Front",
  43900. image: {
  43901. source: "./media/characters/nova-fox/front.svg",
  43902. extra: 1310/1246,
  43903. bottom: 65/1375
  43904. }
  43905. },
  43906. },
  43907. [
  43908. {
  43909. name: "Macro",
  43910. height: math.unit(64, "meters"),
  43911. default: true
  43912. },
  43913. ]
  43914. ))
  43915. characterMakers.push(() => makeCharacter(
  43916. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43917. {
  43918. front: {
  43919. height: math.unit(6 + 3/12, "feet"),
  43920. weight: math.unit(170, "lb"),
  43921. name: "Front",
  43922. image: {
  43923. source: "./media/characters/sam-bat/front.svg",
  43924. extra: 1601/1411,
  43925. bottom: 125/1726
  43926. }
  43927. },
  43928. back: {
  43929. height: math.unit(6 + 3/12, "feet"),
  43930. weight: math.unit(170, "lb"),
  43931. name: "Back",
  43932. image: {
  43933. source: "./media/characters/sam-bat/back.svg",
  43934. extra: 1577/1405,
  43935. bottom: 58/1635
  43936. }
  43937. },
  43938. },
  43939. [
  43940. {
  43941. name: "Normal",
  43942. height: math.unit(6 + 3/12, "feet"),
  43943. default: true
  43944. },
  43945. ]
  43946. ))
  43947. characterMakers.push(() => makeCharacter(
  43948. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43949. {
  43950. front: {
  43951. height: math.unit(59, "feet"),
  43952. weight: math.unit(40000, "lb"),
  43953. name: "Front",
  43954. image: {
  43955. source: "./media/characters/inari/front.svg",
  43956. extra: 1884/1350,
  43957. bottom: 95/1979
  43958. }
  43959. },
  43960. },
  43961. [
  43962. {
  43963. name: "Gigantamax",
  43964. height: math.unit(59, "feet"),
  43965. default: true
  43966. },
  43967. ]
  43968. ))
  43969. characterMakers.push(() => makeCharacter(
  43970. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43971. {
  43972. front: {
  43973. height: math.unit(5 + 8/12, "feet"),
  43974. name: "Front",
  43975. image: {
  43976. source: "./media/characters/elizabeth/front.svg",
  43977. extra: 1395/1298,
  43978. bottom: 54/1449
  43979. }
  43980. },
  43981. mouth: {
  43982. height: math.unit(1.97, "feet"),
  43983. name: "Mouth",
  43984. image: {
  43985. source: "./media/characters/elizabeth/mouth.svg"
  43986. }
  43987. },
  43988. foot: {
  43989. height: math.unit(1.17, "feet"),
  43990. name: "Foot",
  43991. image: {
  43992. source: "./media/characters/elizabeth/foot.svg"
  43993. }
  43994. },
  43995. },
  43996. [
  43997. {
  43998. name: "Normal",
  43999. height: math.unit(5 + 8/12, "feet"),
  44000. default: true
  44001. },
  44002. {
  44003. name: "Minimacro",
  44004. height: math.unit(18, "feet")
  44005. },
  44006. {
  44007. name: "Macro",
  44008. height: math.unit(180, "feet")
  44009. },
  44010. ]
  44011. ))
  44012. characterMakers.push(() => makeCharacter(
  44013. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44014. {
  44015. front: {
  44016. height: math.unit(5 + 2/12, "feet"),
  44017. name: "Front",
  44018. image: {
  44019. source: "./media/characters/october-gossamer/front.svg",
  44020. extra: 505/454,
  44021. bottom: 7/512
  44022. }
  44023. },
  44024. back: {
  44025. height: math.unit(5 + 2/12, "feet"),
  44026. name: "Back",
  44027. image: {
  44028. source: "./media/characters/october-gossamer/back.svg",
  44029. extra: 501/454,
  44030. bottom: 11/512
  44031. }
  44032. },
  44033. },
  44034. [
  44035. {
  44036. name: "Normal",
  44037. height: math.unit(5 + 2/12, "feet"),
  44038. default: true
  44039. },
  44040. ]
  44041. ))
  44042. characterMakers.push(() => makeCharacter(
  44043. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44044. {
  44045. front: {
  44046. height: math.unit(5, "feet"),
  44047. name: "Front",
  44048. image: {
  44049. source: "./media/characters/epiglottis/front.svg",
  44050. extra: 923/849,
  44051. bottom: 17/940
  44052. }
  44053. },
  44054. },
  44055. [
  44056. {
  44057. name: "Original Size",
  44058. height: math.unit(10, "inches")
  44059. },
  44060. {
  44061. name: "Human Size",
  44062. height: math.unit(5, "feet"),
  44063. default: true
  44064. },
  44065. {
  44066. name: "Big",
  44067. height: math.unit(25, "feet")
  44068. },
  44069. {
  44070. name: "Bigger",
  44071. height: math.unit(50, "feet")
  44072. },
  44073. {
  44074. name: "oh lawd",
  44075. height: math.unit(75, "feet")
  44076. },
  44077. ]
  44078. ))
  44079. characterMakers.push(() => makeCharacter(
  44080. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44081. {
  44082. front: {
  44083. height: math.unit(2 + 4/12, "feet"),
  44084. weight: math.unit(60, "lb"),
  44085. name: "Front",
  44086. image: {
  44087. source: "./media/characters/lerm/front.svg",
  44088. extra: 796/790,
  44089. bottom: 79/875
  44090. }
  44091. },
  44092. },
  44093. [
  44094. {
  44095. name: "Normal",
  44096. height: math.unit(2 + 4/12, "feet"),
  44097. default: true
  44098. },
  44099. ]
  44100. ))
  44101. characterMakers.push(() => makeCharacter(
  44102. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44103. {
  44104. front: {
  44105. height: math.unit(5.5, "feet"),
  44106. weight: math.unit(130, "lb"),
  44107. name: "Front",
  44108. image: {
  44109. source: "./media/characters/xena-nebadon/front.svg",
  44110. extra: 1828/1730,
  44111. bottom: 79/1907
  44112. }
  44113. },
  44114. },
  44115. [
  44116. {
  44117. name: "Tiny Puppy",
  44118. height: math.unit(3, "inches")
  44119. },
  44120. {
  44121. name: "Normal",
  44122. height: math.unit(5.5, "feet"),
  44123. default: true
  44124. },
  44125. {
  44126. name: "Lotta Lady",
  44127. height: math.unit(12, "feet")
  44128. },
  44129. {
  44130. name: "Pretty Big",
  44131. height: math.unit(100, "feet")
  44132. },
  44133. {
  44134. name: "Big",
  44135. height: math.unit(500, "feet")
  44136. },
  44137. {
  44138. name: "Skyscraper Toys",
  44139. height: math.unit(2500, "feet")
  44140. },
  44141. {
  44142. name: "Plane Catcher",
  44143. height: math.unit(8, "miles")
  44144. },
  44145. {
  44146. name: "Planet Toys",
  44147. height: math.unit(15, "earths")
  44148. },
  44149. {
  44150. name: "Stardust",
  44151. height: math.unit(0.25, "galaxies")
  44152. },
  44153. {
  44154. name: "Snacks",
  44155. height: math.unit(70, "universes")
  44156. },
  44157. ]
  44158. ))
  44159. characterMakers.push(() => makeCharacter(
  44160. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44161. {
  44162. front: {
  44163. height: math.unit(1.6, "meters"),
  44164. weight: math.unit(60, "kg"),
  44165. name: "Front",
  44166. image: {
  44167. source: "./media/characters/bounty/front.svg",
  44168. extra: 1426/1308,
  44169. bottom: 15/1441
  44170. }
  44171. },
  44172. back: {
  44173. height: math.unit(1.6, "meters"),
  44174. weight: math.unit(60, "kg"),
  44175. name: "Back",
  44176. image: {
  44177. source: "./media/characters/bounty/back.svg",
  44178. extra: 1417/1307,
  44179. bottom: 8/1425
  44180. }
  44181. },
  44182. },
  44183. [
  44184. {
  44185. name: "Normal",
  44186. height: math.unit(1.6, "meters"),
  44187. default: true
  44188. },
  44189. {
  44190. name: "Macro",
  44191. height: math.unit(300, "meters")
  44192. },
  44193. ]
  44194. ))
  44195. characterMakers.push(() => makeCharacter(
  44196. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44197. {
  44198. front: {
  44199. height: math.unit(2 + 8/12, "feet"),
  44200. weight: math.unit(15, "lb"),
  44201. name: "Front",
  44202. image: {
  44203. source: "./media/characters/mochi/front.svg",
  44204. extra: 1022/852,
  44205. bottom: 435/1457
  44206. }
  44207. },
  44208. back: {
  44209. height: math.unit(2 + 8/12, "feet"),
  44210. weight: math.unit(15, "lb"),
  44211. name: "Back",
  44212. image: {
  44213. source: "./media/characters/mochi/back.svg",
  44214. extra: 1335/1119,
  44215. bottom: 39/1374
  44216. }
  44217. },
  44218. bird: {
  44219. height: math.unit(2 + 8/12, "feet"),
  44220. weight: math.unit(15, "lb"),
  44221. name: "Bird",
  44222. image: {
  44223. source: "./media/characters/mochi/bird.svg",
  44224. extra: 1251/1113,
  44225. bottom: 178/1429
  44226. }
  44227. },
  44228. kaiju: {
  44229. height: math.unit(154, "feet"),
  44230. weight: math.unit(1e7, "lb"),
  44231. name: "Kaiju",
  44232. image: {
  44233. source: "./media/characters/mochi/kaiju.svg",
  44234. extra: 460/324,
  44235. bottom: 40/500
  44236. }
  44237. },
  44238. head: {
  44239. height: math.unit(1.21, "feet"),
  44240. name: "Head",
  44241. image: {
  44242. source: "./media/characters/mochi/head.svg"
  44243. }
  44244. },
  44245. alternateTail: {
  44246. height: math.unit(2 + 8/12, "feet"),
  44247. weight: math.unit(45, "lb"),
  44248. name: "Alternate Tail",
  44249. image: {
  44250. source: "./media/characters/mochi/alternate-tail.svg",
  44251. extra: 139/76,
  44252. bottom: 45/184
  44253. }
  44254. },
  44255. },
  44256. [
  44257. {
  44258. name: "Micro",
  44259. height: math.unit(2, "inches")
  44260. },
  44261. {
  44262. name: "Normal",
  44263. height: math.unit(2 + 8/12, "feet"),
  44264. default: true
  44265. },
  44266. {
  44267. name: "Macro",
  44268. height: math.unit(106, "feet")
  44269. },
  44270. ]
  44271. ))
  44272. characterMakers.push(() => makeCharacter(
  44273. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44274. {
  44275. front: {
  44276. height: math.unit(5.67, "feet"),
  44277. weight: math.unit(135, "lb"),
  44278. name: "Front",
  44279. image: {
  44280. source: "./media/characters/sarel/front.svg",
  44281. extra: 865/788,
  44282. bottom: 97/962
  44283. }
  44284. },
  44285. back: {
  44286. height: math.unit(5.67, "feet"),
  44287. weight: math.unit(135, "lb"),
  44288. name: "Back",
  44289. image: {
  44290. source: "./media/characters/sarel/back.svg",
  44291. extra: 857/777,
  44292. bottom: 32/889
  44293. }
  44294. },
  44295. chozoan: {
  44296. height: math.unit(5.67, "feet"),
  44297. weight: math.unit(135, "lb"),
  44298. name: "Chozoan",
  44299. image: {
  44300. source: "./media/characters/sarel/chozoan.svg",
  44301. extra: 865/788,
  44302. bottom: 97/962
  44303. }
  44304. },
  44305. current: {
  44306. height: math.unit(5.67, "feet"),
  44307. weight: math.unit(135, "lb"),
  44308. name: "Current",
  44309. image: {
  44310. source: "./media/characters/sarel/current.svg",
  44311. extra: 865/788,
  44312. bottom: 97/962
  44313. }
  44314. },
  44315. head: {
  44316. height: math.unit(1.77, "feet"),
  44317. name: "Head",
  44318. image: {
  44319. source: "./media/characters/sarel/head.svg"
  44320. }
  44321. },
  44322. claws: {
  44323. height: math.unit(1.8, "feet"),
  44324. name: "Claws",
  44325. image: {
  44326. source: "./media/characters/sarel/claws.svg"
  44327. }
  44328. },
  44329. clawsAlt: {
  44330. height: math.unit(1.8, "feet"),
  44331. name: "Claws-alt",
  44332. image: {
  44333. source: "./media/characters/sarel/claws-alt.svg"
  44334. }
  44335. },
  44336. },
  44337. [
  44338. {
  44339. name: "Normal",
  44340. height: math.unit(5.67, "feet"),
  44341. default: true
  44342. },
  44343. ]
  44344. ))
  44345. characterMakers.push(() => makeCharacter(
  44346. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44347. {
  44348. front: {
  44349. height: math.unit(5500, "feet"),
  44350. name: "Front",
  44351. image: {
  44352. source: "./media/characters/alyonia/front.svg",
  44353. extra: 1200/1135,
  44354. bottom: 29/1229
  44355. }
  44356. },
  44357. back: {
  44358. height: math.unit(5500, "feet"),
  44359. name: "Back",
  44360. image: {
  44361. source: "./media/characters/alyonia/back.svg",
  44362. extra: 1205/1138,
  44363. bottom: 10/1215
  44364. }
  44365. },
  44366. },
  44367. [
  44368. {
  44369. name: "Small",
  44370. height: math.unit(10, "feet")
  44371. },
  44372. {
  44373. name: "Macro",
  44374. height: math.unit(500, "feet")
  44375. },
  44376. {
  44377. name: "Mega Macro",
  44378. height: math.unit(5500, "feet"),
  44379. default: true
  44380. },
  44381. {
  44382. name: "Mega Macro+",
  44383. height: math.unit(500000, "feet")
  44384. },
  44385. {
  44386. name: "Giga Macro",
  44387. height: math.unit(3000, "miles")
  44388. },
  44389. {
  44390. name: "Tera Macro",
  44391. height: math.unit(2.8e6, "miles")
  44392. },
  44393. {
  44394. name: "Galactic",
  44395. height: math.unit(120000, "lightyears")
  44396. },
  44397. ]
  44398. ))
  44399. characterMakers.push(() => makeCharacter(
  44400. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44401. {
  44402. werewolf: {
  44403. height: math.unit(8, "feet"),
  44404. weight: math.unit(425, "lb"),
  44405. name: "Werewolf",
  44406. image: {
  44407. source: "./media/characters/autumn/werewolf.svg",
  44408. extra: 2154/2031,
  44409. bottom: 160/2314
  44410. }
  44411. },
  44412. human: {
  44413. height: math.unit(5 + 8/12, "feet"),
  44414. weight: math.unit(150, "lb"),
  44415. name: "Human",
  44416. image: {
  44417. source: "./media/characters/autumn/human.svg",
  44418. extra: 1200/1149,
  44419. bottom: 30/1230
  44420. }
  44421. },
  44422. },
  44423. [
  44424. {
  44425. name: "Normal",
  44426. height: math.unit(8, "feet"),
  44427. default: true
  44428. },
  44429. ]
  44430. ))
  44431. characterMakers.push(() => makeCharacter(
  44432. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44433. {
  44434. front: {
  44435. height: math.unit(8 + 5/12, "feet"),
  44436. weight: math.unit(825, "lb"),
  44437. name: "Front",
  44438. image: {
  44439. source: "./media/characters/cobalt-charizard/front.svg",
  44440. extra: 1268/1155,
  44441. bottom: 122/1390
  44442. }
  44443. },
  44444. side: {
  44445. height: math.unit(8 + 5/12, "feet"),
  44446. weight: math.unit(825, "lb"),
  44447. name: "Side",
  44448. image: {
  44449. source: "./media/characters/cobalt-charizard/side.svg",
  44450. extra: 1348/1257,
  44451. bottom: 58/1406
  44452. }
  44453. },
  44454. gMax: {
  44455. height: math.unit(134 + 11/12, "feet"),
  44456. name: "G-Max",
  44457. image: {
  44458. source: "./media/characters/cobalt-charizard/g-max.svg",
  44459. extra: 1835/1541,
  44460. bottom: 151/1986
  44461. }
  44462. },
  44463. },
  44464. [
  44465. {
  44466. name: "Normal",
  44467. height: math.unit(8 + 5/12, "feet"),
  44468. default: true
  44469. },
  44470. ]
  44471. ))
  44472. characterMakers.push(() => makeCharacter(
  44473. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44474. {
  44475. front: {
  44476. height: math.unit(6 + 3/12, "feet"),
  44477. weight: math.unit(210, "lb"),
  44478. name: "Front",
  44479. image: {
  44480. source: "./media/characters/stella/front.svg",
  44481. extra: 3549/3335,
  44482. bottom: 51/3600
  44483. }
  44484. },
  44485. },
  44486. [
  44487. {
  44488. name: "Normal",
  44489. height: math.unit(6 + 3/12, "feet"),
  44490. default: true
  44491. },
  44492. ]
  44493. ))
  44494. characterMakers.push(() => makeCharacter(
  44495. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44496. {
  44497. front: {
  44498. height: math.unit(5, "feet"),
  44499. weight: math.unit(90, "lb"),
  44500. name: "Front",
  44501. image: {
  44502. source: "./media/characters/riley-bishop/front.svg",
  44503. extra: 1450/1428,
  44504. bottom: 152/1602
  44505. }
  44506. },
  44507. },
  44508. [
  44509. {
  44510. name: "Normal",
  44511. height: math.unit(5, "feet"),
  44512. default: true
  44513. },
  44514. ]
  44515. ))
  44516. characterMakers.push(() => makeCharacter(
  44517. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44518. {
  44519. side: {
  44520. height: math.unit(8 + 2/12, "feet"),
  44521. weight: math.unit(500, "kg"),
  44522. name: "Side",
  44523. image: {
  44524. source: "./media/characters/theo-arcanine/side.svg",
  44525. extra: 1342/1074,
  44526. bottom: 111/1453
  44527. }
  44528. },
  44529. },
  44530. [
  44531. {
  44532. name: "Normal",
  44533. height: math.unit(8 + 2/12, "feet"),
  44534. default: true
  44535. },
  44536. ]
  44537. ))
  44538. characterMakers.push(() => makeCharacter(
  44539. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44540. {
  44541. front: {
  44542. height: math.unit(4, "feet"),
  44543. name: "Front",
  44544. image: {
  44545. source: "./media/characters/kali/front.svg",
  44546. extra: 1921/1357,
  44547. bottom: 70/1991
  44548. }
  44549. },
  44550. },
  44551. [
  44552. {
  44553. name: "Normal",
  44554. height: math.unit(4, "feet"),
  44555. default: true
  44556. },
  44557. {
  44558. name: "Macro",
  44559. height: math.unit(32, "meters")
  44560. },
  44561. {
  44562. name: "Macro+",
  44563. height: math.unit(150, "meters")
  44564. },
  44565. {
  44566. name: "Megamacro",
  44567. height: math.unit(7500, "meters")
  44568. },
  44569. {
  44570. name: "Megamacro+",
  44571. height: math.unit(80, "kilometers")
  44572. },
  44573. ]
  44574. ))
  44575. characterMakers.push(() => makeCharacter(
  44576. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44577. {
  44578. side: {
  44579. height: math.unit(5 + 11/12, "feet"),
  44580. weight: math.unit(236, "lb"),
  44581. name: "Side",
  44582. image: {
  44583. source: "./media/characters/gapp/side.svg",
  44584. extra: 775/340,
  44585. bottom: 58/833
  44586. }
  44587. },
  44588. mouth: {
  44589. height: math.unit(2.98, "feet"),
  44590. name: "Mouth",
  44591. image: {
  44592. source: "./media/characters/gapp/mouth.svg"
  44593. }
  44594. },
  44595. },
  44596. [
  44597. {
  44598. name: "Normal",
  44599. height: math.unit(5 + 1/12, "feet"),
  44600. default: true
  44601. },
  44602. ]
  44603. ))
  44604. characterMakers.push(() => makeCharacter(
  44605. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44606. {
  44607. front: {
  44608. height: math.unit(6, "feet"),
  44609. name: "Front",
  44610. image: {
  44611. source: "./media/characters/persephone/front.svg",
  44612. extra: 1895/1717,
  44613. bottom: 96/1991
  44614. }
  44615. },
  44616. back: {
  44617. height: math.unit(6, "feet"),
  44618. name: "Back",
  44619. image: {
  44620. source: "./media/characters/persephone/back.svg",
  44621. extra: 1868/1679,
  44622. bottom: 26/1894
  44623. }
  44624. },
  44625. casual: {
  44626. height: math.unit(6, "feet"),
  44627. name: "Casual",
  44628. image: {
  44629. source: "./media/characters/persephone/casual.svg",
  44630. extra: 1713/1541,
  44631. bottom: 76/1789
  44632. }
  44633. },
  44634. },
  44635. [
  44636. {
  44637. name: "Human Size",
  44638. height: math.unit(6, "feet")
  44639. },
  44640. {
  44641. name: "Big Steppy",
  44642. height: math.unit(600, "meters"),
  44643. default: true
  44644. },
  44645. {
  44646. name: "Galaxy Brain",
  44647. height: math.unit(1, "zettameter")
  44648. },
  44649. ]
  44650. ))
  44651. characterMakers.push(() => makeCharacter(
  44652. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44653. {
  44654. front: {
  44655. height: math.unit(1.85, "meters"),
  44656. name: "Front",
  44657. image: {
  44658. source: "./media/characters/riley-foxthing/front.svg",
  44659. extra: 1495/1354,
  44660. bottom: 122/1617
  44661. }
  44662. },
  44663. frontAlt: {
  44664. height: math.unit(1.85, "meters"),
  44665. name: "Front (Alt)",
  44666. image: {
  44667. source: "./media/characters/riley-foxthing/front-alt.svg",
  44668. extra: 1572/1389,
  44669. bottom: 116/1688
  44670. }
  44671. },
  44672. },
  44673. [
  44674. {
  44675. name: "Normal Sized",
  44676. height: math.unit(1.85, "meters"),
  44677. default: true
  44678. },
  44679. {
  44680. name: "Quite Sizable",
  44681. height: math.unit(5, "meters")
  44682. },
  44683. {
  44684. name: "Rather Large",
  44685. height: math.unit(20, "meters")
  44686. },
  44687. {
  44688. name: "Macro",
  44689. height: math.unit(450, "meters")
  44690. },
  44691. {
  44692. name: "Giga",
  44693. height: math.unit(5, "km")
  44694. },
  44695. ]
  44696. ))
  44697. characterMakers.push(() => makeCharacter(
  44698. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44699. {
  44700. front: {
  44701. height: math.unit(6, "feet"),
  44702. weight: math.unit(200, "lb"),
  44703. name: "Front",
  44704. image: {
  44705. source: "./media/characters/blizzard/front.svg",
  44706. extra: 1136/990,
  44707. bottom: 136/1272
  44708. }
  44709. },
  44710. back: {
  44711. height: math.unit(6, "feet"),
  44712. weight: math.unit(200, "lb"),
  44713. name: "Back",
  44714. image: {
  44715. source: "./media/characters/blizzard/back.svg",
  44716. extra: 1175/1034,
  44717. bottom: 97/1272
  44718. }
  44719. },
  44720. sitting: {
  44721. height: math.unit(3.725, "feet"),
  44722. weight: math.unit(200, "lb"),
  44723. name: "Sitting",
  44724. image: {
  44725. source: "./media/characters/blizzard/sitting.svg",
  44726. extra: 581/485,
  44727. bottom: 90/671
  44728. }
  44729. },
  44730. frontWizard: {
  44731. height: math.unit(7.9, "feet"),
  44732. weight: math.unit(200, "lb"),
  44733. name: "Front (Wizard)",
  44734. image: {
  44735. source: "./media/characters/blizzard/front-wizard.svg"
  44736. }
  44737. },
  44738. backWizard: {
  44739. height: math.unit(7.9, "feet"),
  44740. weight: math.unit(200, "lb"),
  44741. name: "Back (Wizard)",
  44742. image: {
  44743. source: "./media/characters/blizzard/back-wizard.svg"
  44744. }
  44745. },
  44746. frontNsfw: {
  44747. height: math.unit(6, "feet"),
  44748. weight: math.unit(200, "lb"),
  44749. name: "Front (NSFW)",
  44750. image: {
  44751. source: "./media/characters/blizzard/front-nsfw.svg",
  44752. extra: 1136/990,
  44753. bottom: 136/1272
  44754. }
  44755. },
  44756. backNsfw: {
  44757. height: math.unit(6, "feet"),
  44758. weight: math.unit(200, "lb"),
  44759. name: "Back (NSFW)",
  44760. image: {
  44761. source: "./media/characters/blizzard/back-nsfw.svg",
  44762. extra: 1175/1034,
  44763. bottom: 97/1272
  44764. }
  44765. },
  44766. sittingNsfw: {
  44767. height: math.unit(3.725, "feet"),
  44768. weight: math.unit(200, "lb"),
  44769. name: "Sitting (NSFW)",
  44770. image: {
  44771. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44772. extra: 581/485,
  44773. bottom: 90/671
  44774. }
  44775. },
  44776. wizardFrontNsfw: {
  44777. height: math.unit(7.9, "feet"),
  44778. weight: math.unit(200, "lb"),
  44779. name: "Wizard (Front, NSFW)",
  44780. image: {
  44781. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44782. }
  44783. },
  44784. },
  44785. [
  44786. {
  44787. name: "Normal",
  44788. height: math.unit(6, "feet"),
  44789. default: true
  44790. },
  44791. ]
  44792. ))
  44793. characterMakers.push(() => makeCharacter(
  44794. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44795. {
  44796. front: {
  44797. height: math.unit(5 + 2/12, "feet"),
  44798. name: "Front",
  44799. image: {
  44800. source: "./media/characters/lumi/front.svg",
  44801. extra: 1328/1268,
  44802. bottom: 103/1431
  44803. }
  44804. },
  44805. back: {
  44806. height: math.unit(5 + 2/12, "feet"),
  44807. name: "Back",
  44808. image: {
  44809. source: "./media/characters/lumi/back.svg",
  44810. extra: 1381/1327,
  44811. bottom: 43/1424
  44812. }
  44813. },
  44814. },
  44815. [
  44816. {
  44817. name: "Normal",
  44818. height: math.unit(5 + 2/12, "feet"),
  44819. default: true
  44820. },
  44821. ]
  44822. ))
  44823. characterMakers.push(() => makeCharacter(
  44824. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44825. {
  44826. front: {
  44827. height: math.unit(5 + 9/12, "feet"),
  44828. name: "Front",
  44829. image: {
  44830. source: "./media/characters/aliya-cotton/front.svg",
  44831. extra: 577/564,
  44832. bottom: 29/606
  44833. }
  44834. },
  44835. },
  44836. [
  44837. {
  44838. name: "Normal",
  44839. height: math.unit(5 + 9/12, "feet"),
  44840. default: true
  44841. },
  44842. ]
  44843. ))
  44844. characterMakers.push(() => makeCharacter(
  44845. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44846. {
  44847. front: {
  44848. height: math.unit(2.7, "meters"),
  44849. weight: math.unit(25000, "lb"),
  44850. name: "Front",
  44851. image: {
  44852. source: "./media/characters/noah-luxray/front.svg",
  44853. extra: 1644/825,
  44854. bottom: 339/1983
  44855. }
  44856. },
  44857. side: {
  44858. height: math.unit(2.97, "meters"),
  44859. weight: math.unit(25000, "lb"),
  44860. name: "Side",
  44861. image: {
  44862. source: "./media/characters/noah-luxray/side.svg",
  44863. extra: 1319/650,
  44864. bottom: 163/1482
  44865. }
  44866. },
  44867. dick: {
  44868. height: math.unit(7.4, "feet"),
  44869. weight: math.unit(2500, "lb"),
  44870. name: "Dick",
  44871. image: {
  44872. source: "./media/characters/noah-luxray/dick.svg"
  44873. }
  44874. },
  44875. dickAlt: {
  44876. height: math.unit(10.83, "feet"),
  44877. weight: math.unit(2500, "lb"),
  44878. name: "Dick-alt",
  44879. image: {
  44880. source: "./media/characters/noah-luxray/dick-alt.svg"
  44881. }
  44882. },
  44883. },
  44884. [
  44885. {
  44886. name: "BIG",
  44887. height: math.unit(2.7, "meters"),
  44888. default: true
  44889. },
  44890. ]
  44891. ))
  44892. characterMakers.push(() => makeCharacter(
  44893. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44894. {
  44895. standing: {
  44896. height: math.unit(183, "cm"),
  44897. weight: math.unit(68, "kg"),
  44898. name: "Standing",
  44899. image: {
  44900. source: "./media/characters/arion/standing.svg",
  44901. extra: 1869/1807,
  44902. bottom: 93/1962
  44903. }
  44904. },
  44905. reclining: {
  44906. height: math.unit(70.5, "cm"),
  44907. weight: math.unit(68, "lb"),
  44908. name: "Reclining",
  44909. image: {
  44910. source: "./media/characters/arion/reclining.svg",
  44911. extra: 937/870,
  44912. bottom: 63/1000
  44913. }
  44914. },
  44915. },
  44916. [
  44917. {
  44918. name: "Colossus Size, Low",
  44919. height: math.unit(33, "meters"),
  44920. default: true
  44921. },
  44922. {
  44923. name: "Colossus Size, Mid",
  44924. height: math.unit(52, "meters")
  44925. },
  44926. {
  44927. name: "Colossus Size, High",
  44928. height: math.unit(60, "meters")
  44929. },
  44930. {
  44931. name: "Titan Size, Low",
  44932. height: math.unit(91, "meters"),
  44933. },
  44934. {
  44935. name: "Titan Size, Mid",
  44936. height: math.unit(122, "meters")
  44937. },
  44938. {
  44939. name: "Titan Size, High",
  44940. height: math.unit(162, "meters")
  44941. },
  44942. ]
  44943. ))
  44944. characterMakers.push(() => makeCharacter(
  44945. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44946. {
  44947. front: {
  44948. height: math.unit(53, "meters"),
  44949. name: "Front",
  44950. image: {
  44951. source: "./media/characters/stellar-marbey/front.svg",
  44952. extra: 1913/1805,
  44953. bottom: 92/2005
  44954. }
  44955. },
  44956. back: {
  44957. height: math.unit(53, "meters"),
  44958. name: "Back",
  44959. image: {
  44960. source: "./media/characters/stellar-marbey/back.svg",
  44961. extra: 1960/1851,
  44962. bottom: 28/1988
  44963. }
  44964. },
  44965. mouth: {
  44966. height: math.unit(3.5, "meters"),
  44967. name: "Mouth",
  44968. image: {
  44969. source: "./media/characters/stellar-marbey/mouth.svg"
  44970. }
  44971. },
  44972. },
  44973. [
  44974. {
  44975. name: "Macro",
  44976. height: math.unit(53, "meters"),
  44977. default: true
  44978. },
  44979. ]
  44980. ))
  44981. characterMakers.push(() => makeCharacter(
  44982. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44983. {
  44984. front: {
  44985. height: math.unit(8 + 1/12, "feet"),
  44986. weight: math.unit(233, "lb"),
  44987. name: "Front",
  44988. image: {
  44989. source: "./media/characters/matsu/front.svg",
  44990. extra: 832/772,
  44991. bottom: 40/872
  44992. }
  44993. },
  44994. back: {
  44995. height: math.unit(8 + 1/12, "feet"),
  44996. weight: math.unit(233, "lb"),
  44997. name: "Back",
  44998. image: {
  44999. source: "./media/characters/matsu/back.svg",
  45000. extra: 839/780,
  45001. bottom: 47/886
  45002. }
  45003. },
  45004. },
  45005. [
  45006. {
  45007. name: "Normal",
  45008. height: math.unit(8 + 1/12, "feet"),
  45009. default: true
  45010. },
  45011. ]
  45012. ))
  45013. characterMakers.push(() => makeCharacter(
  45014. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45015. {
  45016. front: {
  45017. height: math.unit(4, "feet"),
  45018. weight: math.unit(148, "lb"),
  45019. name: "Front",
  45020. image: {
  45021. source: "./media/characters/thiz/front.svg",
  45022. extra: 1913/1748,
  45023. bottom: 62/1975
  45024. }
  45025. },
  45026. },
  45027. [
  45028. {
  45029. name: "Normal",
  45030. height: math.unit(4, "feet"),
  45031. default: true
  45032. },
  45033. ]
  45034. ))
  45035. characterMakers.push(() => makeCharacter(
  45036. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45037. {
  45038. front: {
  45039. height: math.unit(7 + 6/12, "feet"),
  45040. weight: math.unit(267, "lb"),
  45041. name: "Front",
  45042. image: {
  45043. source: "./media/characters/marcel/front.svg",
  45044. extra: 1221/1096,
  45045. bottom: 76/1297
  45046. }
  45047. },
  45048. },
  45049. [
  45050. {
  45051. name: "Normal",
  45052. height: math.unit(7 + 6/12, "feet"),
  45053. default: true
  45054. },
  45055. ]
  45056. ))
  45057. characterMakers.push(() => makeCharacter(
  45058. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45059. {
  45060. side: {
  45061. height: math.unit(42, "meters"),
  45062. name: "Side",
  45063. image: {
  45064. source: "./media/characters/flake/side.svg",
  45065. extra: 1525/1306,
  45066. bottom: 209/1734
  45067. }
  45068. },
  45069. },
  45070. [
  45071. {
  45072. name: "Normal",
  45073. height: math.unit(42, "meters"),
  45074. default: true
  45075. },
  45076. ]
  45077. ))
  45078. characterMakers.push(() => makeCharacter(
  45079. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45080. {
  45081. dressed: {
  45082. height: math.unit(6 + 4/12, "feet"),
  45083. weight: math.unit(520, "lb"),
  45084. name: "Dressed",
  45085. image: {
  45086. source: "./media/characters/someonne/dressed.svg",
  45087. extra: 1020/1010,
  45088. bottom: 178/1198
  45089. }
  45090. },
  45091. undressed: {
  45092. height: math.unit(6 + 4/12, "feet"),
  45093. weight: math.unit(520, "lb"),
  45094. name: "Undressed",
  45095. image: {
  45096. source: "./media/characters/someonne/undressed.svg",
  45097. extra: 1019/1014,
  45098. bottom: 169/1188
  45099. }
  45100. },
  45101. },
  45102. [
  45103. {
  45104. name: "Normal",
  45105. height: math.unit(6 + 4/12, "feet"),
  45106. default: true
  45107. },
  45108. ]
  45109. ))
  45110. characterMakers.push(() => makeCharacter(
  45111. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45112. {
  45113. front: {
  45114. height: math.unit(3, "feet"),
  45115. weight: math.unit(30, "lb"),
  45116. name: "Front",
  45117. image: {
  45118. source: "./media/characters/till/front.svg",
  45119. extra: 892/823,
  45120. bottom: 55/947
  45121. }
  45122. },
  45123. },
  45124. [
  45125. {
  45126. name: "Normal",
  45127. height: math.unit(3, "feet"),
  45128. default: true
  45129. },
  45130. ]
  45131. ))
  45132. characterMakers.push(() => makeCharacter(
  45133. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45134. {
  45135. front: {
  45136. height: math.unit(9 + 8/12, "feet"),
  45137. weight: math.unit(800, "lb"),
  45138. name: "Front",
  45139. image: {
  45140. source: "./media/characters/sydney-heki/front.svg",
  45141. extra: 1360/1300,
  45142. bottom: 22/1382
  45143. }
  45144. },
  45145. back: {
  45146. height: math.unit(9 + 8/12, "feet"),
  45147. weight: math.unit(800, "lb"),
  45148. name: "Back",
  45149. image: {
  45150. source: "./media/characters/sydney-heki/back.svg",
  45151. extra: 1356/1293,
  45152. bottom: 12/1368
  45153. }
  45154. },
  45155. frontDressed: {
  45156. height: math.unit(9 + 8/12, "feet"),
  45157. weight: math.unit(800, "lb"),
  45158. name: "Front-dressed",
  45159. image: {
  45160. source: "./media/characters/sydney-heki/front-dressed.svg",
  45161. extra: 1360/1300,
  45162. bottom: 22/1382
  45163. }
  45164. },
  45165. },
  45166. [
  45167. {
  45168. name: "Normal",
  45169. height: math.unit(9 + 8/12, "feet"),
  45170. default: true
  45171. },
  45172. {
  45173. name: "Macro",
  45174. height: math.unit(500, "feet")
  45175. },
  45176. {
  45177. name: "Megamacro",
  45178. height: math.unit(3.6, "miles")
  45179. },
  45180. ]
  45181. ))
  45182. characterMakers.push(() => makeCharacter(
  45183. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45184. {
  45185. front: {
  45186. height: math.unit(200, "cm"),
  45187. weight: math.unit(250, "lb"),
  45188. name: "Front",
  45189. image: {
  45190. source: "./media/characters/fowler-karlsson/front.svg",
  45191. extra: 897/845,
  45192. bottom: 123/1020
  45193. }
  45194. },
  45195. back: {
  45196. height: math.unit(200, "cm"),
  45197. weight: math.unit(250, "lb"),
  45198. name: "Back",
  45199. image: {
  45200. source: "./media/characters/fowler-karlsson/back.svg",
  45201. extra: 999/944,
  45202. bottom: 26/1025
  45203. }
  45204. },
  45205. dick: {
  45206. height: math.unit(1.92, "feet"),
  45207. weight: math.unit(150, "lb"),
  45208. name: "Dick",
  45209. image: {
  45210. source: "./media/characters/fowler-karlsson/dick.svg"
  45211. }
  45212. },
  45213. },
  45214. [
  45215. {
  45216. name: "Normal",
  45217. height: math.unit(200, "cm"),
  45218. default: true
  45219. },
  45220. {
  45221. name: "Smaller Macro",
  45222. height: math.unit(90, "m")
  45223. },
  45224. {
  45225. name: "Macro",
  45226. height: math.unit(150, "m")
  45227. },
  45228. {
  45229. name: "Bigger Macro",
  45230. height: math.unit(300, "m")
  45231. },
  45232. ]
  45233. ))
  45234. characterMakers.push(() => makeCharacter(
  45235. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45236. {
  45237. side: {
  45238. height: math.unit(8 + 2/12, "feet"),
  45239. weight: math.unit(1, "tonne"),
  45240. name: "Side",
  45241. image: {
  45242. source: "./media/characters/rylide/side.svg",
  45243. extra: 1318/1034,
  45244. bottom: 106/1424
  45245. }
  45246. },
  45247. sitting: {
  45248. height: math.unit(303, "cm"),
  45249. weight: math.unit(1, "tonne"),
  45250. name: "Sitting",
  45251. image: {
  45252. source: "./media/characters/rylide/sitting.svg",
  45253. extra: 1303/1103,
  45254. bottom: 36/1339
  45255. }
  45256. },
  45257. },
  45258. [
  45259. {
  45260. name: "Normal",
  45261. height: math.unit(8 + 2/12, "feet"),
  45262. default: true
  45263. },
  45264. ]
  45265. ))
  45266. characterMakers.push(() => makeCharacter(
  45267. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45268. {
  45269. front: {
  45270. height: math.unit(5 + 10/12, "feet"),
  45271. weight: math.unit(160, "lb"),
  45272. name: "Front",
  45273. image: {
  45274. source: "./media/characters/pudask/front.svg",
  45275. extra: 1616/1590,
  45276. bottom: 161/1777
  45277. }
  45278. },
  45279. },
  45280. [
  45281. {
  45282. name: "Ferret Height",
  45283. height: math.unit(2 + 5/12, "feet")
  45284. },
  45285. {
  45286. name: "Canon Height",
  45287. height: math.unit(5 + 10/12, "feet"),
  45288. default: true
  45289. },
  45290. ]
  45291. ))
  45292. characterMakers.push(() => makeCharacter(
  45293. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45294. {
  45295. front: {
  45296. height: math.unit(3 + 6/12, "feet"),
  45297. weight: math.unit(60, "lb"),
  45298. name: "Front",
  45299. image: {
  45300. source: "./media/characters/ramita/front.svg",
  45301. extra: 1402/1232,
  45302. bottom: 62/1464
  45303. }
  45304. },
  45305. dressed: {
  45306. height: math.unit(3 + 6/12, "feet"),
  45307. weight: math.unit(60, "lb"),
  45308. name: "Dressed",
  45309. image: {
  45310. source: "./media/characters/ramita/dressed.svg",
  45311. extra: 1534/1249,
  45312. bottom: 50/1584
  45313. }
  45314. },
  45315. },
  45316. [
  45317. {
  45318. name: "Normal",
  45319. height: math.unit(3 + 6/12, "feet"),
  45320. default: true
  45321. },
  45322. ]
  45323. ))
  45324. characterMakers.push(() => makeCharacter(
  45325. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45326. {
  45327. front: {
  45328. height: math.unit(8, "feet"),
  45329. name: "Front",
  45330. image: {
  45331. source: "./media/characters/ark/front.svg",
  45332. extra: 772/693,
  45333. bottom: 45/817
  45334. }
  45335. },
  45336. },
  45337. [
  45338. {
  45339. name: "Normal",
  45340. height: math.unit(8, "feet"),
  45341. default: true
  45342. },
  45343. ]
  45344. ))
  45345. characterMakers.push(() => makeCharacter(
  45346. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45347. {
  45348. front: {
  45349. height: math.unit(6, "feet"),
  45350. weight: math.unit(250, "lb"),
  45351. volume: math.unit(5/8, "gallons"),
  45352. name: "Front",
  45353. image: {
  45354. source: "./media/characters/ludwig-horn/front.svg",
  45355. extra: 1782/1635,
  45356. bottom: 96/1878
  45357. }
  45358. },
  45359. back: {
  45360. height: math.unit(6, "feet"),
  45361. weight: math.unit(250, "lb"),
  45362. volume: math.unit(5/8, "gallons"),
  45363. name: "Back",
  45364. image: {
  45365. source: "./media/characters/ludwig-horn/back.svg",
  45366. extra: 1874/1729,
  45367. bottom: 27/1901
  45368. }
  45369. },
  45370. dick: {
  45371. height: math.unit(1.05, "feet"),
  45372. weight: math.unit(15, "lb"),
  45373. volume: math.unit(5/8, "gallons"),
  45374. name: "Dick",
  45375. image: {
  45376. source: "./media/characters/ludwig-horn/dick.svg"
  45377. }
  45378. },
  45379. },
  45380. [
  45381. {
  45382. name: "Small",
  45383. height: math.unit(6, "feet")
  45384. },
  45385. {
  45386. name: "Typical",
  45387. height: math.unit(12, "feet"),
  45388. default: true
  45389. },
  45390. {
  45391. name: "Building",
  45392. height: math.unit(80, "feet")
  45393. },
  45394. {
  45395. name: "Town",
  45396. height: math.unit(800, "feet")
  45397. },
  45398. {
  45399. name: "Kingdom",
  45400. height: math.unit(80000, "feet")
  45401. },
  45402. {
  45403. name: "Planet",
  45404. height: math.unit(8000000, "feet")
  45405. },
  45406. {
  45407. name: "Universe",
  45408. height: math.unit(8000000000, "feet")
  45409. },
  45410. {
  45411. name: "Transcended",
  45412. height: math.unit(8e27, "feet")
  45413. },
  45414. ]
  45415. ))
  45416. characterMakers.push(() => makeCharacter(
  45417. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45418. {
  45419. front: {
  45420. height: math.unit(5, "feet"),
  45421. weight: math.unit(50, "kg"),
  45422. name: "Front",
  45423. image: {
  45424. source: "./media/characters/biot-avery/front.svg",
  45425. extra: 1295/1232,
  45426. bottom: 86/1381
  45427. }
  45428. },
  45429. },
  45430. [
  45431. {
  45432. name: "Normal",
  45433. height: math.unit(5, "feet"),
  45434. default: true
  45435. },
  45436. ]
  45437. ))
  45438. characterMakers.push(() => makeCharacter(
  45439. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45440. {
  45441. front: {
  45442. height: math.unit(6, "feet"),
  45443. name: "Front",
  45444. image: {
  45445. source: "./media/characters/kitsune-kiro/front.svg",
  45446. extra: 1270/1158,
  45447. bottom: 42/1312
  45448. }
  45449. },
  45450. frontAlt: {
  45451. height: math.unit(6, "feet"),
  45452. name: "Front-alt",
  45453. image: {
  45454. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45455. extra: 1130/1081,
  45456. bottom: 36/1166
  45457. }
  45458. },
  45459. },
  45460. [
  45461. {
  45462. name: "Smol",
  45463. height: math.unit(3, "feet")
  45464. },
  45465. {
  45466. name: "Normal",
  45467. height: math.unit(6, "feet"),
  45468. default: true
  45469. },
  45470. ]
  45471. ))
  45472. characterMakers.push(() => makeCharacter(
  45473. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45474. {
  45475. front: {
  45476. height: math.unit(6, "feet"),
  45477. weight: math.unit(125, "lb"),
  45478. name: "Front",
  45479. image: {
  45480. source: "./media/characters/jack-thatcher/front.svg",
  45481. extra: 1474/1370,
  45482. bottom: 26/1500
  45483. }
  45484. },
  45485. back: {
  45486. height: math.unit(6, "feet"),
  45487. weight: math.unit(125, "lb"),
  45488. name: "Back",
  45489. image: {
  45490. source: "./media/characters/jack-thatcher/back.svg",
  45491. extra: 1489/1384,
  45492. bottom: 18/1507
  45493. }
  45494. },
  45495. },
  45496. [
  45497. {
  45498. name: "Normal",
  45499. height: math.unit(6, "feet"),
  45500. default: true
  45501. },
  45502. {
  45503. name: "Macro",
  45504. height: math.unit(75, "feet")
  45505. },
  45506. {
  45507. name: "Macro-er",
  45508. height: math.unit(250, "feet")
  45509. },
  45510. ]
  45511. ))
  45512. characterMakers.push(() => makeCharacter(
  45513. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45514. {
  45515. front: {
  45516. height: math.unit(7, "feet"),
  45517. weight: math.unit(110, "kg"),
  45518. name: "Front",
  45519. image: {
  45520. source: "./media/characters/max-hyper/front.svg",
  45521. extra: 1969/1881,
  45522. bottom: 49/2018
  45523. }
  45524. },
  45525. },
  45526. [
  45527. {
  45528. name: "Normal",
  45529. height: math.unit(7, "feet"),
  45530. default: true
  45531. },
  45532. ]
  45533. ))
  45534. characterMakers.push(() => makeCharacter(
  45535. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45536. {
  45537. front: {
  45538. height: math.unit(5 + 5/12, "feet"),
  45539. weight: math.unit(160, "lb"),
  45540. name: "Front",
  45541. image: {
  45542. source: "./media/characters/spook/front.svg",
  45543. extra: 794/791,
  45544. bottom: 54/848
  45545. }
  45546. },
  45547. back: {
  45548. height: math.unit(5 + 5/12, "feet"),
  45549. weight: math.unit(160, "lb"),
  45550. name: "Back",
  45551. image: {
  45552. source: "./media/characters/spook/back.svg",
  45553. extra: 812/798,
  45554. bottom: 32/844
  45555. }
  45556. },
  45557. },
  45558. [
  45559. {
  45560. name: "Normal",
  45561. height: math.unit(5 + 5/12, "feet"),
  45562. default: true
  45563. },
  45564. ]
  45565. ))
  45566. characterMakers.push(() => makeCharacter(
  45567. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45568. {
  45569. front: {
  45570. height: math.unit(18, "feet"),
  45571. name: "Front",
  45572. image: {
  45573. source: "./media/characters/xeaduulix/front.svg",
  45574. extra: 1380/1166,
  45575. bottom: 110/1490
  45576. }
  45577. },
  45578. back: {
  45579. height: math.unit(18, "feet"),
  45580. name: "Back",
  45581. image: {
  45582. source: "./media/characters/xeaduulix/back.svg",
  45583. extra: 1592/1170,
  45584. bottom: 128/1720
  45585. }
  45586. },
  45587. frontNsfw: {
  45588. height: math.unit(18, "feet"),
  45589. name: "Front (NSFW)",
  45590. image: {
  45591. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45592. extra: 1380/1166,
  45593. bottom: 110/1490
  45594. }
  45595. },
  45596. backNsfw: {
  45597. height: math.unit(18, "feet"),
  45598. name: "Back (NSFW)",
  45599. image: {
  45600. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45601. extra: 1592/1170,
  45602. bottom: 128/1720
  45603. }
  45604. },
  45605. },
  45606. [
  45607. {
  45608. name: "Normal",
  45609. height: math.unit(18, "feet"),
  45610. default: true
  45611. },
  45612. ]
  45613. ))
  45614. characterMakers.push(() => makeCharacter(
  45615. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45616. {
  45617. spreadWings: {
  45618. height: math.unit(20, "feet"),
  45619. name: "Spread Wings",
  45620. image: {
  45621. source: "./media/characters/fledge/spread-wings.svg",
  45622. extra: 693/635,
  45623. bottom: 26/719
  45624. }
  45625. },
  45626. front: {
  45627. height: math.unit(20, "feet"),
  45628. name: "Front",
  45629. image: {
  45630. source: "./media/characters/fledge/front.svg",
  45631. extra: 684/637,
  45632. bottom: 18/702
  45633. }
  45634. },
  45635. frontAlt: {
  45636. height: math.unit(20, "feet"),
  45637. name: "Front (Alt)",
  45638. image: {
  45639. source: "./media/characters/fledge/front-alt.svg",
  45640. extra: 708/664,
  45641. bottom: 13/721
  45642. }
  45643. },
  45644. back: {
  45645. height: math.unit(20, "feet"),
  45646. name: "Back",
  45647. image: {
  45648. source: "./media/characters/fledge/back.svg",
  45649. extra: 718/634,
  45650. bottom: 22/740
  45651. }
  45652. },
  45653. head: {
  45654. height: math.unit(5.55, "feet"),
  45655. name: "Head",
  45656. image: {
  45657. source: "./media/characters/fledge/head.svg"
  45658. }
  45659. },
  45660. headAlt: {
  45661. height: math.unit(5.1, "feet"),
  45662. name: "Head (Alt)",
  45663. image: {
  45664. source: "./media/characters/fledge/head-alt.svg"
  45665. }
  45666. },
  45667. },
  45668. [
  45669. {
  45670. name: "Small",
  45671. height: math.unit(6 + 2/12, "feet")
  45672. },
  45673. {
  45674. name: "Big",
  45675. height: math.unit(20, "feet"),
  45676. default: true
  45677. },
  45678. {
  45679. name: "Giant",
  45680. height: math.unit(100, "feet")
  45681. },
  45682. {
  45683. name: "Macro",
  45684. height: math.unit(200, "feet")
  45685. },
  45686. ]
  45687. ))
  45688. characterMakers.push(() => makeCharacter(
  45689. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45690. {
  45691. front: {
  45692. height: math.unit(1, "meter"),
  45693. name: "Front",
  45694. image: {
  45695. source: "./media/characters/atlas-morenai/front.svg",
  45696. extra: 1275/1043,
  45697. bottom: 19/1294
  45698. }
  45699. },
  45700. back: {
  45701. height: math.unit(1, "meter"),
  45702. name: "Back",
  45703. image: {
  45704. source: "./media/characters/atlas-morenai/back.svg",
  45705. extra: 1141/1001,
  45706. bottom: 25/1166
  45707. }
  45708. },
  45709. },
  45710. [
  45711. {
  45712. name: "Normal",
  45713. height: math.unit(1, "meter"),
  45714. default: true
  45715. },
  45716. {
  45717. name: "Magic-Infused",
  45718. height: math.unit(5, "meters")
  45719. },
  45720. ]
  45721. ))
  45722. characterMakers.push(() => makeCharacter(
  45723. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45724. {
  45725. front: {
  45726. height: math.unit(5, "meters"),
  45727. name: "Front",
  45728. image: {
  45729. source: "./media/characters/cintia/front.svg",
  45730. extra: 1312/1228,
  45731. bottom: 38/1350
  45732. }
  45733. },
  45734. back: {
  45735. height: math.unit(5, "meters"),
  45736. name: "Back",
  45737. image: {
  45738. source: "./media/characters/cintia/back.svg",
  45739. extra: 1260/1166,
  45740. bottom: 98/1358
  45741. }
  45742. },
  45743. frontDick: {
  45744. height: math.unit(5, "meters"),
  45745. name: "Front (Dick)",
  45746. image: {
  45747. source: "./media/characters/cintia/front-dick.svg",
  45748. extra: 1312/1228,
  45749. bottom: 38/1350
  45750. }
  45751. },
  45752. backDick: {
  45753. height: math.unit(5, "meters"),
  45754. name: "Back (Dick)",
  45755. image: {
  45756. source: "./media/characters/cintia/back-dick.svg",
  45757. extra: 1260/1166,
  45758. bottom: 98/1358
  45759. }
  45760. },
  45761. bust: {
  45762. height: math.unit(1.97, "meters"),
  45763. name: "Bust",
  45764. image: {
  45765. source: "./media/characters/cintia/bust.svg",
  45766. extra: 617/565,
  45767. bottom: 0/617
  45768. }
  45769. },
  45770. },
  45771. [
  45772. {
  45773. name: "Normal",
  45774. height: math.unit(5, "meters"),
  45775. default: true
  45776. },
  45777. ]
  45778. ))
  45779. characterMakers.push(() => makeCharacter(
  45780. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45781. {
  45782. side: {
  45783. height: math.unit(100, "feet"),
  45784. name: "Side",
  45785. image: {
  45786. source: "./media/characters/denora/side.svg",
  45787. extra: 875/803,
  45788. bottom: 9/884
  45789. }
  45790. },
  45791. },
  45792. [
  45793. {
  45794. name: "Standard",
  45795. height: math.unit(100, "feet"),
  45796. default: true
  45797. },
  45798. {
  45799. name: "Grand",
  45800. height: math.unit(1000, "feet")
  45801. },
  45802. {
  45803. name: "Conquering",
  45804. height: math.unit(10000, "feet")
  45805. },
  45806. ]
  45807. ))
  45808. characterMakers.push(() => makeCharacter(
  45809. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45810. {
  45811. dressed: {
  45812. height: math.unit(8 + 5/12, "feet"),
  45813. weight: math.unit(700, "lb"),
  45814. name: "Dressed",
  45815. image: {
  45816. source: "./media/characters/kiva/dressed.svg",
  45817. extra: 1102/1055,
  45818. bottom: 60/1162
  45819. }
  45820. },
  45821. nude: {
  45822. height: math.unit(8 + 5/12, "feet"),
  45823. weight: math.unit(700, "lb"),
  45824. name: "Nude",
  45825. image: {
  45826. source: "./media/characters/kiva/nude.svg",
  45827. extra: 1102/1055,
  45828. bottom: 60/1162
  45829. }
  45830. },
  45831. },
  45832. [
  45833. {
  45834. name: "Base Height",
  45835. height: math.unit(8 + 5/12, "feet"),
  45836. default: true
  45837. },
  45838. {
  45839. name: "Macro",
  45840. height: math.unit(100, "feet")
  45841. },
  45842. {
  45843. name: "Max",
  45844. height: math.unit(3280, "feet")
  45845. },
  45846. ]
  45847. ))
  45848. characterMakers.push(() => makeCharacter(
  45849. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45850. {
  45851. front: {
  45852. height: math.unit(6 + 8/12, "feet"),
  45853. weight: math.unit(250, "lb"),
  45854. name: "Front",
  45855. image: {
  45856. source: "./media/characters/ztragon/front.svg",
  45857. extra: 1825/1684,
  45858. bottom: 98/1923
  45859. }
  45860. },
  45861. },
  45862. [
  45863. {
  45864. name: "Normal",
  45865. height: math.unit(6 + 8/12, "feet"),
  45866. default: true
  45867. },
  45868. {
  45869. name: "Macro",
  45870. height: math.unit(80, "feet")
  45871. },
  45872. ]
  45873. ))
  45874. characterMakers.push(() => makeCharacter(
  45875. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45876. {
  45877. front: {
  45878. height: math.unit(10.4, "feet"),
  45879. weight: math.unit(2, "tons"),
  45880. name: "Front",
  45881. image: {
  45882. source: "./media/characters/yesenia/front.svg",
  45883. extra: 1479/1474,
  45884. bottom: 233/1712
  45885. }
  45886. },
  45887. },
  45888. [
  45889. {
  45890. name: "Normal",
  45891. height: math.unit(10.4, "feet"),
  45892. default: true
  45893. },
  45894. ]
  45895. ))
  45896. characterMakers.push(() => makeCharacter(
  45897. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45898. {
  45899. normal: {
  45900. height: math.unit(6 + 1/12, "feet"),
  45901. weight: math.unit(180, "lb"),
  45902. name: "Normal",
  45903. image: {
  45904. source: "./media/characters/leanne-lycheborne/normal.svg",
  45905. extra: 1748/1660,
  45906. bottom: 98/1846
  45907. }
  45908. },
  45909. were: {
  45910. height: math.unit(12, "feet"),
  45911. weight: math.unit(1600, "lb"),
  45912. name: "Were",
  45913. image: {
  45914. source: "./media/characters/leanne-lycheborne/were.svg",
  45915. extra: 1485/1432,
  45916. bottom: 66/1551
  45917. }
  45918. },
  45919. },
  45920. [
  45921. {
  45922. name: "Normal",
  45923. height: math.unit(6 + 1/12, "feet"),
  45924. default: true
  45925. },
  45926. ]
  45927. ))
  45928. characterMakers.push(() => makeCharacter(
  45929. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45930. {
  45931. side: {
  45932. height: math.unit(13, "feet"),
  45933. name: "Side",
  45934. image: {
  45935. source: "./media/characters/kira-tyler/side.svg",
  45936. extra: 693/393,
  45937. bottom: 58/751
  45938. }
  45939. },
  45940. },
  45941. [
  45942. {
  45943. name: "Normal",
  45944. height: math.unit(13, "feet"),
  45945. default: true
  45946. },
  45947. ]
  45948. ))
  45949. characterMakers.push(() => makeCharacter(
  45950. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45951. {
  45952. front: {
  45953. height: math.unit(10.3, "feet"),
  45954. weight: math.unit(150, "lb"),
  45955. name: "Front",
  45956. image: {
  45957. source: "./media/characters/blaze/front.svg",
  45958. extra: 1378/1286,
  45959. bottom: 172/1550
  45960. }
  45961. },
  45962. },
  45963. [
  45964. {
  45965. name: "Normal",
  45966. height: math.unit(10.3, "feet"),
  45967. default: true
  45968. },
  45969. ]
  45970. ))
  45971. characterMakers.push(() => makeCharacter(
  45972. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45973. {
  45974. side: {
  45975. height: math.unit(2, "meters"),
  45976. weight: math.unit(400, "kg"),
  45977. name: "Side",
  45978. image: {
  45979. source: "./media/characters/anu/side.svg",
  45980. extra: 506/394,
  45981. bottom: 18/524
  45982. }
  45983. },
  45984. },
  45985. [
  45986. {
  45987. name: "Humanoid",
  45988. height: math.unit(2, "meters")
  45989. },
  45990. {
  45991. name: "Normal",
  45992. height: math.unit(5, "meters"),
  45993. default: true
  45994. },
  45995. ]
  45996. ))
  45997. characterMakers.push(() => makeCharacter(
  45998. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45999. {
  46000. front: {
  46001. height: math.unit(5 + 5/12, "feet"),
  46002. weight: math.unit(170, "lb"),
  46003. name: "Front",
  46004. image: {
  46005. source: "./media/characters/synx-the-lynx/front.svg",
  46006. extra: 1893/1745,
  46007. bottom: 17/1910
  46008. }
  46009. },
  46010. side: {
  46011. height: math.unit(5 + 5/12, "feet"),
  46012. weight: math.unit(170, "lb"),
  46013. name: "Side",
  46014. image: {
  46015. source: "./media/characters/synx-the-lynx/side.svg",
  46016. extra: 1884/1740,
  46017. bottom: 39/1923
  46018. }
  46019. },
  46020. back: {
  46021. height: math.unit(5 + 5/12, "feet"),
  46022. weight: math.unit(170, "lb"),
  46023. name: "Back",
  46024. image: {
  46025. source: "./media/characters/synx-the-lynx/back.svg",
  46026. extra: 1903/1755,
  46027. bottom: 14/1917
  46028. }
  46029. },
  46030. },
  46031. [
  46032. {
  46033. name: "Normal",
  46034. height: math.unit(5 + 5/12, "feet"),
  46035. default: true
  46036. },
  46037. ]
  46038. ))
  46039. characterMakers.push(() => makeCharacter(
  46040. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46041. {
  46042. back: {
  46043. height: math.unit(15, "feet"),
  46044. name: "Back",
  46045. image: {
  46046. source: "./media/characters/nadezda-fex/back.svg",
  46047. extra: 1695/1481,
  46048. bottom: 25/1720
  46049. }
  46050. },
  46051. },
  46052. [
  46053. {
  46054. name: "Normal",
  46055. height: math.unit(15, "feet"),
  46056. default: true
  46057. },
  46058. {
  46059. name: "Macro",
  46060. height: math.unit(2.5, "miles")
  46061. },
  46062. {
  46063. name: "Goddess",
  46064. height: math.unit(2, "multiverses")
  46065. },
  46066. ]
  46067. ))
  46068. characterMakers.push(() => makeCharacter(
  46069. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46070. {
  46071. front: {
  46072. height: math.unit(216, "cm"),
  46073. name: "Front",
  46074. image: {
  46075. source: "./media/characters/lev/front.svg",
  46076. extra: 1728/1670,
  46077. bottom: 82/1810
  46078. }
  46079. },
  46080. back: {
  46081. height: math.unit(216, "cm"),
  46082. name: "Back",
  46083. image: {
  46084. source: "./media/characters/lev/back.svg",
  46085. extra: 1738/1675,
  46086. bottom: 24/1762
  46087. }
  46088. },
  46089. dressed: {
  46090. height: math.unit(216, "cm"),
  46091. name: "Dressed",
  46092. image: {
  46093. source: "./media/characters/lev/dressed.svg",
  46094. extra: 1397/1351,
  46095. bottom: 73/1470
  46096. }
  46097. },
  46098. head: {
  46099. height: math.unit(0.51, "meter"),
  46100. name: "Head",
  46101. image: {
  46102. source: "./media/characters/lev/head.svg"
  46103. }
  46104. },
  46105. },
  46106. [
  46107. {
  46108. name: "Normal",
  46109. height: math.unit(216, "cm"),
  46110. default: true
  46111. },
  46112. {
  46113. name: "Relatively Macro",
  46114. height: math.unit(80, "meters")
  46115. },
  46116. {
  46117. name: "Megamacro",
  46118. height: math.unit(21600, "meters")
  46119. },
  46120. {
  46121. name: "Megamacro+",
  46122. height: math.unit(64800, "meters")
  46123. },
  46124. ]
  46125. ))
  46126. characterMakers.push(() => makeCharacter(
  46127. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46128. {
  46129. front: {
  46130. height: math.unit(2, "meters"),
  46131. weight: math.unit(80, "kg"),
  46132. name: "Front",
  46133. image: {
  46134. source: "./media/characters/moka/front.svg",
  46135. extra: 1337/1255,
  46136. bottom: 58/1395
  46137. }
  46138. },
  46139. },
  46140. [
  46141. {
  46142. name: "Micro",
  46143. height: math.unit(15, "cm")
  46144. },
  46145. {
  46146. name: "Normal",
  46147. height: math.unit(2, "meters"),
  46148. default: true
  46149. },
  46150. {
  46151. name: "Macro",
  46152. height: math.unit(20, "meters"),
  46153. },
  46154. ]
  46155. ))
  46156. characterMakers.push(() => makeCharacter(
  46157. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46158. {
  46159. front: {
  46160. height: math.unit(9, "feet"),
  46161. weight: math.unit(240, "lb"),
  46162. name: "Front",
  46163. image: {
  46164. source: "./media/characters/kuzco/front.svg",
  46165. extra: 1593/1487,
  46166. bottom: 32/1625
  46167. }
  46168. },
  46169. side: {
  46170. height: math.unit(9, "feet"),
  46171. weight: math.unit(240, "lb"),
  46172. name: "Side",
  46173. image: {
  46174. source: "./media/characters/kuzco/side.svg",
  46175. extra: 1575/1485,
  46176. bottom: 30/1605
  46177. }
  46178. },
  46179. back: {
  46180. height: math.unit(9, "feet"),
  46181. weight: math.unit(240, "lb"),
  46182. name: "Back",
  46183. image: {
  46184. source: "./media/characters/kuzco/back.svg",
  46185. extra: 1603/1514,
  46186. bottom: 14/1617
  46187. }
  46188. },
  46189. },
  46190. [
  46191. {
  46192. name: "Normal",
  46193. height: math.unit(9, "feet"),
  46194. default: true
  46195. },
  46196. ]
  46197. ))
  46198. characterMakers.push(() => makeCharacter(
  46199. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46200. {
  46201. side: {
  46202. height: math.unit(2, "meters"),
  46203. weight: math.unit(300, "kg"),
  46204. name: "Side",
  46205. image: {
  46206. source: "./media/characters/ceruleus/side.svg",
  46207. extra: 1068/974,
  46208. bottom: 126/1194
  46209. }
  46210. },
  46211. },
  46212. [
  46213. {
  46214. name: "Normal",
  46215. height: math.unit(16, "meters"),
  46216. default: true
  46217. },
  46218. ]
  46219. ))
  46220. characterMakers.push(() => makeCharacter(
  46221. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46222. {
  46223. front: {
  46224. height: math.unit(9, "feet"),
  46225. weight: math.unit(500, "kg"),
  46226. name: "Front",
  46227. image: {
  46228. source: "./media/characters/acouya/front.svg",
  46229. extra: 1660/1473,
  46230. bottom: 28/1688
  46231. }
  46232. },
  46233. },
  46234. [
  46235. {
  46236. name: "Normal",
  46237. height: math.unit(9, "feet"),
  46238. default: true
  46239. },
  46240. ]
  46241. ))
  46242. characterMakers.push(() => makeCharacter(
  46243. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46244. {
  46245. front: {
  46246. height: math.unit(5 + 6/12, "feet"),
  46247. weight: math.unit(195, "lb"),
  46248. name: "Front",
  46249. image: {
  46250. source: "./media/characters/vant/front.svg",
  46251. extra: 1396/1320,
  46252. bottom: 20/1416
  46253. }
  46254. },
  46255. back: {
  46256. height: math.unit(5 + 6/12, "feet"),
  46257. weight: math.unit(195, "lb"),
  46258. name: "Back",
  46259. image: {
  46260. source: "./media/characters/vant/back.svg",
  46261. extra: 1396/1320,
  46262. bottom: 20/1416
  46263. }
  46264. },
  46265. maw: {
  46266. height: math.unit(0.75, "feet"),
  46267. name: "Maw",
  46268. image: {
  46269. source: "./media/characters/vant/maw.svg"
  46270. }
  46271. },
  46272. paw: {
  46273. height: math.unit(1.07, "feet"),
  46274. name: "Paw",
  46275. image: {
  46276. source: "./media/characters/vant/paw.svg"
  46277. }
  46278. },
  46279. },
  46280. [
  46281. {
  46282. name: "Micro",
  46283. height: math.unit(0.25, "inches")
  46284. },
  46285. {
  46286. name: "Normal",
  46287. height: math.unit(5 + 6/12, "feet"),
  46288. default: true
  46289. },
  46290. {
  46291. name: "Macro",
  46292. height: math.unit(75, "feet")
  46293. },
  46294. ]
  46295. ))
  46296. characterMakers.push(() => makeCharacter(
  46297. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46298. {
  46299. front: {
  46300. height: math.unit(30, "meters"),
  46301. weight: math.unit(363, "tons"),
  46302. name: "Front",
  46303. image: {
  46304. source: "./media/characters/ahra/front.svg",
  46305. extra: 1914/1814,
  46306. bottom: 46/1960
  46307. }
  46308. },
  46309. },
  46310. [
  46311. {
  46312. name: "Macro",
  46313. height: math.unit(30, "meters"),
  46314. default: true
  46315. },
  46316. ]
  46317. ))
  46318. characterMakers.push(() => makeCharacter(
  46319. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46320. {
  46321. undressed: {
  46322. height: math.unit(2, "m"),
  46323. weight: math.unit(250, "kg"),
  46324. name: "Undressed",
  46325. image: {
  46326. source: "./media/characters/coriander/undressed.svg",
  46327. extra: 1757/1606,
  46328. bottom: 107/1864
  46329. }
  46330. },
  46331. dressed: {
  46332. height: math.unit(2, "m"),
  46333. weight: math.unit(250, "kg"),
  46334. name: "Dressed",
  46335. image: {
  46336. source: "./media/characters/coriander/dressed.svg",
  46337. extra: 1757/1606,
  46338. bottom: 107/1864
  46339. }
  46340. },
  46341. },
  46342. [
  46343. {
  46344. name: "Normal",
  46345. height: math.unit(4, "meters"),
  46346. default: true
  46347. },
  46348. {
  46349. name: "XL",
  46350. height: math.unit(6, "meters")
  46351. },
  46352. {
  46353. name: "XXL",
  46354. height: math.unit(8, "meters")
  46355. },
  46356. ]
  46357. ))
  46358. characterMakers.push(() => makeCharacter(
  46359. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46360. {
  46361. front: {
  46362. height: math.unit(6, "feet"),
  46363. name: "Front",
  46364. image: {
  46365. source: "./media/characters/syrinx/front.svg",
  46366. extra: 1557/1259,
  46367. bottom: 171/1728
  46368. }
  46369. },
  46370. },
  46371. [
  46372. {
  46373. name: "Normal",
  46374. height: math.unit(6 + 3/12, "feet"),
  46375. default: true
  46376. },
  46377. ]
  46378. ))
  46379. characterMakers.push(() => makeCharacter(
  46380. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46381. {
  46382. front: {
  46383. height: math.unit(11 + 6/12, "feet"),
  46384. weight: math.unit(1.5, "tons"),
  46385. name: "Front",
  46386. image: {
  46387. source: "./media/characters/bor/front.svg",
  46388. extra: 1189/1109,
  46389. bottom: 170/1359
  46390. }
  46391. },
  46392. },
  46393. [
  46394. {
  46395. name: "Normal",
  46396. height: math.unit(11 + 6/12, "feet"),
  46397. default: true
  46398. },
  46399. {
  46400. name: "Macro",
  46401. height: math.unit(32 + 9/12, "feet")
  46402. },
  46403. ]
  46404. ))
  46405. characterMakers.push(() => makeCharacter(
  46406. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46407. {
  46408. anthro: {
  46409. height: math.unit(9, "feet"),
  46410. weight: math.unit(2076, "lb"),
  46411. name: "Anthro",
  46412. image: {
  46413. source: "./media/characters/abacus/anthro.svg",
  46414. extra: 1540/1494,
  46415. bottom: 233/1773
  46416. }
  46417. },
  46418. pigeon: {
  46419. height: math.unit(1, "feet"),
  46420. name: "Pigeon",
  46421. image: {
  46422. source: "./media/characters/abacus/pigeon.svg",
  46423. extra: 528/525,
  46424. bottom: 46/574
  46425. }
  46426. },
  46427. },
  46428. [
  46429. {
  46430. name: "Normal",
  46431. height: math.unit(9, "feet"),
  46432. default: true
  46433. },
  46434. ]
  46435. ))
  46436. characterMakers.push(() => makeCharacter(
  46437. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46438. {
  46439. side: {
  46440. height: math.unit(6, "feet"),
  46441. name: "Side",
  46442. image: {
  46443. source: "./media/characters/delkhan/side.svg",
  46444. extra: 1884/1786,
  46445. bottom: 308/2192
  46446. }
  46447. },
  46448. head: {
  46449. height: math.unit(3.38, "feet"),
  46450. name: "Head",
  46451. image: {
  46452. source: "./media/characters/delkhan/head.svg"
  46453. }
  46454. },
  46455. },
  46456. [
  46457. {
  46458. name: "Normal",
  46459. height: math.unit(72, "feet"),
  46460. default: true
  46461. },
  46462. {
  46463. name: "Giant",
  46464. height: math.unit(172, "feet")
  46465. },
  46466. ]
  46467. ))
  46468. characterMakers.push(() => makeCharacter(
  46469. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46470. {
  46471. standing: {
  46472. height: math.unit(6, "feet"),
  46473. name: "Standing",
  46474. image: {
  46475. source: "./media/characters/euchidat/standing.svg",
  46476. extra: 1612/1553,
  46477. bottom: 116/1728
  46478. }
  46479. },
  46480. leaning: {
  46481. height: math.unit(6, "feet"),
  46482. name: "Leaning",
  46483. image: {
  46484. source: "./media/characters/euchidat/leaning.svg",
  46485. extra: 1719/1674,
  46486. bottom: 27/1746
  46487. }
  46488. },
  46489. },
  46490. [
  46491. {
  46492. name: "Normal",
  46493. height: math.unit(175, "feet"),
  46494. default: true
  46495. },
  46496. {
  46497. name: "Megamacro",
  46498. height: math.unit(190, "miles")
  46499. },
  46500. {
  46501. name: "Gigamacro",
  46502. height: math.unit(190000, "miles")
  46503. },
  46504. ]
  46505. ))
  46506. characterMakers.push(() => makeCharacter(
  46507. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46508. {
  46509. front: {
  46510. height: math.unit(6, "feet"),
  46511. weight: math.unit(150, "lb"),
  46512. name: "Front",
  46513. image: {
  46514. source: "./media/characters/rebecca-stack/front.svg",
  46515. extra: 1256/1201,
  46516. bottom: 18/1274
  46517. }
  46518. },
  46519. },
  46520. [
  46521. {
  46522. name: "Normal",
  46523. height: math.unit(5 + 8/12, "feet"),
  46524. default: true
  46525. },
  46526. {
  46527. name: "Demolitionist",
  46528. height: math.unit(200, "feet")
  46529. },
  46530. {
  46531. name: "Out of Control",
  46532. height: math.unit(2, "miles")
  46533. },
  46534. {
  46535. name: "Giga",
  46536. height: math.unit(7200, "miles")
  46537. },
  46538. ]
  46539. ))
  46540. characterMakers.push(() => makeCharacter(
  46541. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46542. {
  46543. front: {
  46544. height: math.unit(6, "feet"),
  46545. weight: math.unit(150, "lb"),
  46546. name: "Front",
  46547. image: {
  46548. source: "./media/characters/jenny-cartwright/front.svg",
  46549. extra: 1384/1376,
  46550. bottom: 58/1442
  46551. }
  46552. },
  46553. },
  46554. [
  46555. {
  46556. name: "Normal",
  46557. height: math.unit(6 + 7/12, "feet"),
  46558. default: true
  46559. },
  46560. {
  46561. name: "Librarian",
  46562. height: math.unit(55, "feet")
  46563. },
  46564. {
  46565. name: "Sightseer",
  46566. height: math.unit(50, "miles")
  46567. },
  46568. {
  46569. name: "Giga",
  46570. height: math.unit(30000, "miles")
  46571. },
  46572. ]
  46573. ))
  46574. characterMakers.push(() => makeCharacter(
  46575. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46576. {
  46577. nude: {
  46578. height: math.unit(8, "feet"),
  46579. weight: math.unit(225, "lb"),
  46580. name: "Nude",
  46581. image: {
  46582. source: "./media/characters/marvy/nude.svg",
  46583. extra: 1900/1683,
  46584. bottom: 89/1989
  46585. }
  46586. },
  46587. dressed: {
  46588. height: math.unit(8, "feet"),
  46589. weight: math.unit(225, "lb"),
  46590. name: "Dressed",
  46591. image: {
  46592. source: "./media/characters/marvy/dressed.svg",
  46593. extra: 1900/1683,
  46594. bottom: 89/1989
  46595. }
  46596. },
  46597. head: {
  46598. height: math.unit(2.85, "feet"),
  46599. name: "Head",
  46600. image: {
  46601. source: "./media/characters/marvy/head.svg"
  46602. }
  46603. },
  46604. },
  46605. [
  46606. {
  46607. name: "Normal",
  46608. height: math.unit(8, "feet"),
  46609. default: true
  46610. },
  46611. ]
  46612. ))
  46613. characterMakers.push(() => makeCharacter(
  46614. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46615. {
  46616. front: {
  46617. height: math.unit(8, "feet"),
  46618. weight: math.unit(250, "lb"),
  46619. name: "Front",
  46620. image: {
  46621. source: "./media/characters/leah/front.svg",
  46622. extra: 1257/1149,
  46623. bottom: 109/1366
  46624. }
  46625. },
  46626. },
  46627. [
  46628. {
  46629. name: "Normal",
  46630. height: math.unit(8, "feet"),
  46631. default: true
  46632. },
  46633. {
  46634. name: "Minimacro",
  46635. height: math.unit(40, "feet")
  46636. },
  46637. {
  46638. name: "Macro",
  46639. height: math.unit(124, "feet")
  46640. },
  46641. {
  46642. name: "Megamacro",
  46643. height: math.unit(850, "feet")
  46644. },
  46645. ]
  46646. ))
  46647. characterMakers.push(() => makeCharacter(
  46648. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46649. {
  46650. side: {
  46651. height: math.unit(13 + 6/12, "feet"),
  46652. weight: math.unit(3200, "lb"),
  46653. name: "Side",
  46654. image: {
  46655. source: "./media/characters/alvir/side.svg",
  46656. extra: 896/589,
  46657. bottom: 26/922
  46658. }
  46659. },
  46660. },
  46661. [
  46662. {
  46663. name: "Normal",
  46664. height: math.unit(13 + 6/12, "feet"),
  46665. default: true
  46666. },
  46667. ]
  46668. ))
  46669. characterMakers.push(() => makeCharacter(
  46670. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46671. {
  46672. front: {
  46673. height: math.unit(5 + 4/12, "feet"),
  46674. weight: math.unit(236, "lb"),
  46675. name: "Front",
  46676. image: {
  46677. source: "./media/characters/zaina-khalil/front.svg",
  46678. extra: 1533/1485,
  46679. bottom: 94/1627
  46680. }
  46681. },
  46682. side: {
  46683. height: math.unit(5 + 4/12, "feet"),
  46684. weight: math.unit(236, "lb"),
  46685. name: "Side",
  46686. image: {
  46687. source: "./media/characters/zaina-khalil/side.svg",
  46688. extra: 1537/1498,
  46689. bottom: 66/1603
  46690. }
  46691. },
  46692. back: {
  46693. height: math.unit(5 + 4/12, "feet"),
  46694. weight: math.unit(236, "lb"),
  46695. name: "Back",
  46696. image: {
  46697. source: "./media/characters/zaina-khalil/back.svg",
  46698. extra: 1546/1494,
  46699. bottom: 89/1635
  46700. }
  46701. },
  46702. },
  46703. [
  46704. {
  46705. name: "Normal",
  46706. height: math.unit(5 + 4/12, "feet"),
  46707. default: true
  46708. },
  46709. ]
  46710. ))
  46711. characterMakers.push(() => makeCharacter(
  46712. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46713. {
  46714. side: {
  46715. height: math.unit(12, "feet"),
  46716. weight: math.unit(4000, "lb"),
  46717. name: "Side",
  46718. image: {
  46719. source: "./media/characters/terry/side.svg",
  46720. extra: 1518/1439,
  46721. bottom: 149/1667
  46722. }
  46723. },
  46724. },
  46725. [
  46726. {
  46727. name: "Normal",
  46728. height: math.unit(12, "feet"),
  46729. default: true
  46730. },
  46731. ]
  46732. ))
  46733. characterMakers.push(() => makeCharacter(
  46734. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46735. {
  46736. front: {
  46737. height: math.unit(12, "feet"),
  46738. weight: math.unit(1500, "lb"),
  46739. name: "Front",
  46740. image: {
  46741. source: "./media/characters/kahea/front.svg",
  46742. extra: 1722/1617,
  46743. bottom: 179/1901
  46744. }
  46745. },
  46746. },
  46747. [
  46748. {
  46749. name: "Normal",
  46750. height: math.unit(12, "feet"),
  46751. default: true
  46752. },
  46753. ]
  46754. ))
  46755. characterMakers.push(() => makeCharacter(
  46756. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46757. {
  46758. demonFront: {
  46759. height: math.unit(36, "feet"),
  46760. name: "Front",
  46761. image: {
  46762. source: "./media/characters/alex-xuria/demon-front.svg",
  46763. extra: 1705/1673,
  46764. bottom: 198/1903
  46765. },
  46766. form: "demon",
  46767. default: true
  46768. },
  46769. demonBack: {
  46770. height: math.unit(36, "feet"),
  46771. name: "Back",
  46772. image: {
  46773. source: "./media/characters/alex-xuria/demon-back.svg",
  46774. extra: 1725/1693,
  46775. bottom: 70/1795
  46776. },
  46777. form: "demon"
  46778. },
  46779. demonHead: {
  46780. height: math.unit(2.14, "meters"),
  46781. name: "Head",
  46782. image: {
  46783. source: "./media/characters/alex-xuria/demon-head.svg"
  46784. },
  46785. form: "demon"
  46786. },
  46787. demonHand: {
  46788. height: math.unit(1.61, "meters"),
  46789. name: "Hand",
  46790. image: {
  46791. source: "./media/characters/alex-xuria/demon-hand.svg"
  46792. },
  46793. form: "demon"
  46794. },
  46795. demonPaw: {
  46796. height: math.unit(1.35, "meters"),
  46797. name: "Paw",
  46798. image: {
  46799. source: "./media/characters/alex-xuria/demon-paw.svg"
  46800. },
  46801. form: "demon"
  46802. },
  46803. demonFoot: {
  46804. height: math.unit(2.2, "meters"),
  46805. name: "Foot",
  46806. image: {
  46807. source: "./media/characters/alex-xuria/demon-foot.svg"
  46808. },
  46809. form: "demon"
  46810. },
  46811. demonCock: {
  46812. height: math.unit(1.74, "meters"),
  46813. name: "Cock",
  46814. image: {
  46815. source: "./media/characters/alex-xuria/demon-cock.svg"
  46816. },
  46817. form: "demon"
  46818. },
  46819. demonTailClosed: {
  46820. height: math.unit(1.47, "meters"),
  46821. name: "Tail (Closed)",
  46822. image: {
  46823. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46824. },
  46825. form: "demon"
  46826. },
  46827. demonTailOpen: {
  46828. height: math.unit(2.85, "meters"),
  46829. name: "Tail (Open)",
  46830. image: {
  46831. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46832. },
  46833. form: "demon"
  46834. },
  46835. incubusFront: {
  46836. height: math.unit(12, "feet"),
  46837. name: "Front",
  46838. image: {
  46839. source: "./media/characters/alex-xuria/incubus-front.svg",
  46840. extra: 1754/1677,
  46841. bottom: 125/1879
  46842. },
  46843. form: "incubus",
  46844. default: true
  46845. },
  46846. incubusBack: {
  46847. height: math.unit(12, "feet"),
  46848. name: "Back",
  46849. image: {
  46850. source: "./media/characters/alex-xuria/incubus-back.svg",
  46851. extra: 1702/1647,
  46852. bottom: 30/1732
  46853. },
  46854. form: "incubus"
  46855. },
  46856. incubusHead: {
  46857. height: math.unit(3.45, "feet"),
  46858. name: "Head",
  46859. image: {
  46860. source: "./media/characters/alex-xuria/incubus-head.svg"
  46861. },
  46862. form: "incubus"
  46863. },
  46864. rabbitFront: {
  46865. height: math.unit(6, "feet"),
  46866. name: "Front",
  46867. image: {
  46868. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46869. extra: 1369/1349,
  46870. bottom: 45/1414
  46871. },
  46872. form: "rabbit",
  46873. default: true
  46874. },
  46875. rabbitSide: {
  46876. height: math.unit(6, "feet"),
  46877. name: "Side",
  46878. image: {
  46879. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46880. extra: 1370/1356,
  46881. bottom: 37/1407
  46882. },
  46883. form: "rabbit"
  46884. },
  46885. rabbitBack: {
  46886. height: math.unit(6, "feet"),
  46887. name: "Back",
  46888. image: {
  46889. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46890. extra: 1375/1358,
  46891. bottom: 43/1418
  46892. },
  46893. form: "rabbit"
  46894. },
  46895. },
  46896. [
  46897. {
  46898. name: "Normal",
  46899. height: math.unit(6, "feet"),
  46900. default: true,
  46901. form: "rabbit"
  46902. },
  46903. {
  46904. name: "Incubus",
  46905. height: math.unit(12, "feet"),
  46906. default: true,
  46907. form: "incubus"
  46908. },
  46909. {
  46910. name: "Demon",
  46911. height: math.unit(36, "feet"),
  46912. default: true,
  46913. form: "demon"
  46914. }
  46915. ],
  46916. {
  46917. "demon": {
  46918. name: "Demon",
  46919. default: true
  46920. },
  46921. "incubus": {
  46922. name: "Incubus",
  46923. },
  46924. "rabbit": {
  46925. name: "Rabbit"
  46926. }
  46927. }
  46928. ))
  46929. characterMakers.push(() => makeCharacter(
  46930. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46931. {
  46932. front: {
  46933. height: math.unit(7 + 5/12, "feet"),
  46934. weight: math.unit(510, "lb"),
  46935. name: "Front",
  46936. image: {
  46937. source: "./media/characters/syrup/front.svg",
  46938. extra: 932/916,
  46939. bottom: 26/958
  46940. }
  46941. },
  46942. },
  46943. [
  46944. {
  46945. name: "Normal",
  46946. height: math.unit(7 + 5/12, "feet"),
  46947. default: true
  46948. },
  46949. {
  46950. name: "Big",
  46951. height: math.unit(50, "feet")
  46952. },
  46953. {
  46954. name: "Macro",
  46955. height: math.unit(300, "feet")
  46956. },
  46957. {
  46958. name: "Megamacro",
  46959. height: math.unit(1, "mile")
  46960. },
  46961. ]
  46962. ))
  46963. characterMakers.push(() => makeCharacter(
  46964. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46965. {
  46966. front: {
  46967. height: math.unit(6 + 9/12, "feet"),
  46968. name: "Front",
  46969. image: {
  46970. source: "./media/characters/zeimne/front.svg",
  46971. extra: 1969/1806,
  46972. bottom: 53/2022
  46973. }
  46974. },
  46975. },
  46976. [
  46977. {
  46978. name: "Normal",
  46979. height: math.unit(6 + 9/12, "feet"),
  46980. default: true
  46981. },
  46982. {
  46983. name: "Giant",
  46984. height: math.unit(550, "feet")
  46985. },
  46986. {
  46987. name: "Mega",
  46988. height: math.unit(3, "miles")
  46989. },
  46990. {
  46991. name: "Giga",
  46992. height: math.unit(250, "miles")
  46993. },
  46994. {
  46995. name: "Tera",
  46996. height: math.unit(1, "AU")
  46997. },
  46998. ]
  46999. ))
  47000. characterMakers.push(() => makeCharacter(
  47001. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47002. {
  47003. front: {
  47004. height: math.unit(5 + 2/12, "feet"),
  47005. name: "Front",
  47006. image: {
  47007. source: "./media/characters/grar/front.svg",
  47008. extra: 1331/1119,
  47009. bottom: 60/1391
  47010. }
  47011. },
  47012. back: {
  47013. height: math.unit(5 + 2/12, "feet"),
  47014. name: "Back",
  47015. image: {
  47016. source: "./media/characters/grar/back.svg",
  47017. extra: 1385/1169,
  47018. bottom: 23/1408
  47019. }
  47020. },
  47021. },
  47022. [
  47023. {
  47024. name: "Normal",
  47025. height: math.unit(5 + 2/12, "feet"),
  47026. default: true
  47027. },
  47028. ]
  47029. ))
  47030. characterMakers.push(() => makeCharacter(
  47031. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47032. {
  47033. front: {
  47034. height: math.unit(13 + 7/12, "feet"),
  47035. weight: math.unit(2200, "lb"),
  47036. name: "Front",
  47037. image: {
  47038. source: "./media/characters/endraya/front.svg",
  47039. extra: 1289/1215,
  47040. bottom: 50/1339
  47041. }
  47042. },
  47043. nude: {
  47044. height: math.unit(13 + 7/12, "feet"),
  47045. weight: math.unit(2200, "lb"),
  47046. name: "Nude",
  47047. image: {
  47048. source: "./media/characters/endraya/nude.svg",
  47049. extra: 1247/1171,
  47050. bottom: 40/1287
  47051. }
  47052. },
  47053. head: {
  47054. height: math.unit(2.6, "feet"),
  47055. name: "Head",
  47056. image: {
  47057. source: "./media/characters/endraya/head.svg"
  47058. }
  47059. },
  47060. slit: {
  47061. height: math.unit(3.4, "feet"),
  47062. name: "Slit",
  47063. image: {
  47064. source: "./media/characters/endraya/slit.svg"
  47065. }
  47066. },
  47067. },
  47068. [
  47069. {
  47070. name: "Normal",
  47071. height: math.unit(13 + 7/12, "feet"),
  47072. default: true
  47073. },
  47074. {
  47075. name: "Macro",
  47076. height: math.unit(200, "feet")
  47077. },
  47078. ]
  47079. ))
  47080. characterMakers.push(() => makeCharacter(
  47081. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47082. {
  47083. front: {
  47084. height: math.unit(1.81, "meters"),
  47085. weight: math.unit(69, "kg"),
  47086. name: "Front",
  47087. image: {
  47088. source: "./media/characters/rodryana/front.svg",
  47089. extra: 2002/1921,
  47090. bottom: 53/2055
  47091. }
  47092. },
  47093. back: {
  47094. height: math.unit(1.81, "meters"),
  47095. weight: math.unit(69, "kg"),
  47096. name: "Back",
  47097. image: {
  47098. source: "./media/characters/rodryana/back.svg",
  47099. extra: 1993/1926,
  47100. bottom: 48/2041
  47101. }
  47102. },
  47103. maw: {
  47104. height: math.unit(0.19769417475, "meters"),
  47105. name: "Maw",
  47106. image: {
  47107. source: "./media/characters/rodryana/maw.svg"
  47108. }
  47109. },
  47110. slit: {
  47111. height: math.unit(0.31631067961, "meters"),
  47112. name: "Slit",
  47113. image: {
  47114. source: "./media/characters/rodryana/slit.svg"
  47115. }
  47116. },
  47117. },
  47118. [
  47119. {
  47120. name: "Normal",
  47121. height: math.unit(1.81, "meters")
  47122. },
  47123. {
  47124. name: "Mini Macro",
  47125. height: math.unit(181, "meters")
  47126. },
  47127. {
  47128. name: "Macro",
  47129. height: math.unit(452, "meters"),
  47130. default: true
  47131. },
  47132. {
  47133. name: "Mega Macro",
  47134. height: math.unit(1.375, "km")
  47135. },
  47136. {
  47137. name: "Giga Macro",
  47138. height: math.unit(13.575, "km")
  47139. },
  47140. ]
  47141. ))
  47142. characterMakers.push(() => makeCharacter(
  47143. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47144. {
  47145. front: {
  47146. height: math.unit(6, "feet"),
  47147. weight: math.unit(1000, "lb"),
  47148. name: "Front",
  47149. image: {
  47150. source: "./media/characters/asaya/front.svg",
  47151. extra: 1460/1200,
  47152. bottom: 71/1531
  47153. }
  47154. },
  47155. },
  47156. [
  47157. {
  47158. name: "Normal",
  47159. height: math.unit(8, "km"),
  47160. default: true
  47161. },
  47162. ]
  47163. ))
  47164. characterMakers.push(() => makeCharacter(
  47165. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47166. {
  47167. front: {
  47168. height: math.unit(3.5, "meters"),
  47169. name: "Front",
  47170. image: {
  47171. source: "./media/characters/sarzu-and-israz/front.svg",
  47172. extra: 1570/1558,
  47173. bottom: 150/1720
  47174. },
  47175. },
  47176. back: {
  47177. height: math.unit(3.5, "meters"),
  47178. name: "Back",
  47179. image: {
  47180. source: "./media/characters/sarzu-and-israz/back.svg",
  47181. extra: 1523/1509,
  47182. bottom: 132/1655
  47183. },
  47184. },
  47185. frontFemale: {
  47186. height: math.unit(3.5, "meters"),
  47187. name: "Front (Female)",
  47188. image: {
  47189. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47190. extra: 1570/1558,
  47191. bottom: 150/1720
  47192. },
  47193. },
  47194. frontHerm: {
  47195. height: math.unit(3.5, "meters"),
  47196. name: "Front (Herm)",
  47197. image: {
  47198. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47199. extra: 1570/1558,
  47200. bottom: 150/1720
  47201. },
  47202. },
  47203. },
  47204. [
  47205. {
  47206. name: "Normal",
  47207. height: math.unit(3.5, "meters"),
  47208. default: true,
  47209. },
  47210. {
  47211. name: "Macro",
  47212. height: math.unit(65.5, "meters"),
  47213. },
  47214. ],
  47215. ))
  47216. characterMakers.push(() => makeCharacter(
  47217. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47218. {
  47219. front: {
  47220. height: math.unit(6, "feet"),
  47221. weight: math.unit(250, "lb"),
  47222. name: "Front",
  47223. image: {
  47224. source: "./media/characters/zenimma/front.svg",
  47225. extra: 1346/1320,
  47226. bottom: 58/1404
  47227. }
  47228. },
  47229. back: {
  47230. height: math.unit(6, "feet"),
  47231. weight: math.unit(250, "lb"),
  47232. name: "Back",
  47233. image: {
  47234. source: "./media/characters/zenimma/back.svg",
  47235. extra: 1324/1308,
  47236. bottom: 44/1368
  47237. }
  47238. },
  47239. dick: {
  47240. height: math.unit(1.44, "feet"),
  47241. name: "Dick",
  47242. image: {
  47243. source: "./media/characters/zenimma/dick.svg"
  47244. }
  47245. },
  47246. },
  47247. [
  47248. {
  47249. name: "Canon Height",
  47250. height: math.unit(66, "miles"),
  47251. default: true
  47252. },
  47253. ]
  47254. ))
  47255. characterMakers.push(() => makeCharacter(
  47256. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47257. {
  47258. nude: {
  47259. height: math.unit(6, "feet"),
  47260. weight: math.unit(150, "lb"),
  47261. name: "Nude",
  47262. image: {
  47263. source: "./media/characters/shavon/nude.svg",
  47264. extra: 1242/1096,
  47265. bottom: 98/1340
  47266. }
  47267. },
  47268. dressed: {
  47269. height: math.unit(6, "feet"),
  47270. weight: math.unit(150, "lb"),
  47271. name: "Dressed",
  47272. image: {
  47273. source: "./media/characters/shavon/dressed.svg",
  47274. extra: 1242/1096,
  47275. bottom: 98/1340
  47276. }
  47277. },
  47278. },
  47279. [
  47280. {
  47281. name: "Macro",
  47282. height: math.unit(255, "feet"),
  47283. default: true
  47284. },
  47285. ]
  47286. ))
  47287. characterMakers.push(() => makeCharacter(
  47288. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47289. {
  47290. front: {
  47291. height: math.unit(6, "feet"),
  47292. name: "Front",
  47293. image: {
  47294. source: "./media/characters/steph/front.svg",
  47295. extra: 1430/1330,
  47296. bottom: 54/1484
  47297. }
  47298. },
  47299. },
  47300. [
  47301. {
  47302. name: "Normal",
  47303. height: math.unit(6, "feet"),
  47304. default: true
  47305. },
  47306. ]
  47307. ))
  47308. characterMakers.push(() => makeCharacter(
  47309. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47310. {
  47311. front: {
  47312. height: math.unit(9, "feet"),
  47313. weight: math.unit(400, "lb"),
  47314. name: "Front",
  47315. image: {
  47316. source: "./media/characters/kil'aman/front.svg",
  47317. extra: 1210/1159,
  47318. bottom: 109/1319
  47319. }
  47320. },
  47321. head: {
  47322. height: math.unit(2.14, "feet"),
  47323. name: "Head",
  47324. image: {
  47325. source: "./media/characters/kil'aman/head.svg"
  47326. }
  47327. },
  47328. maw: {
  47329. height: math.unit(1.21, "feet"),
  47330. name: "Maw",
  47331. image: {
  47332. source: "./media/characters/kil'aman/maw.svg"
  47333. }
  47334. },
  47335. foot: {
  47336. height: math.unit(1.7, "feet"),
  47337. name: "Foot",
  47338. image: {
  47339. source: "./media/characters/kil'aman/foot.svg"
  47340. }
  47341. },
  47342. dick: {
  47343. height: math.unit(2.1, "feet"),
  47344. name: "Dick",
  47345. image: {
  47346. source: "./media/characters/kil'aman/dick.svg"
  47347. }
  47348. },
  47349. },
  47350. [
  47351. {
  47352. name: "Normal",
  47353. height: math.unit(9, "feet")
  47354. },
  47355. {
  47356. name: "Canon Height",
  47357. height: math.unit(10, "miles"),
  47358. default: true
  47359. },
  47360. {
  47361. name: "Maximum",
  47362. height: math.unit(6e9, "miles")
  47363. },
  47364. ]
  47365. ))
  47366. characterMakers.push(() => makeCharacter(
  47367. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47368. {
  47369. front: {
  47370. height: math.unit(90, "feet"),
  47371. weight: math.unit(675000, "lb"),
  47372. name: "Front",
  47373. image: {
  47374. source: "./media/characters/qadan/front.svg",
  47375. extra: 1012/1004,
  47376. bottom: 78/1090
  47377. }
  47378. },
  47379. back: {
  47380. height: math.unit(90, "feet"),
  47381. weight: math.unit(675000, "lb"),
  47382. name: "Back",
  47383. image: {
  47384. source: "./media/characters/qadan/back.svg",
  47385. extra: 1042/1031,
  47386. bottom: 55/1097
  47387. }
  47388. },
  47389. armored: {
  47390. height: math.unit(90, "feet"),
  47391. weight: math.unit(675000, "lb"),
  47392. name: "Armored",
  47393. image: {
  47394. source: "./media/characters/qadan/armored.svg",
  47395. extra: 1047/1037,
  47396. bottom: 48/1095
  47397. }
  47398. },
  47399. },
  47400. [
  47401. {
  47402. name: "Normal",
  47403. height: math.unit(90, "feet"),
  47404. default: true
  47405. },
  47406. ]
  47407. ))
  47408. characterMakers.push(() => makeCharacter(
  47409. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47410. {
  47411. front: {
  47412. height: math.unit(6, "feet"),
  47413. weight: math.unit(225, "lb"),
  47414. name: "Front",
  47415. image: {
  47416. source: "./media/characters/brooke/front.svg",
  47417. extra: 1050/1010,
  47418. bottom: 66/1116
  47419. }
  47420. },
  47421. back: {
  47422. height: math.unit(6, "feet"),
  47423. weight: math.unit(225, "lb"),
  47424. name: "Back",
  47425. image: {
  47426. source: "./media/characters/brooke/back.svg",
  47427. extra: 1053/1013,
  47428. bottom: 41/1094
  47429. }
  47430. },
  47431. dressed: {
  47432. height: math.unit(6, "feet"),
  47433. weight: math.unit(225, "lb"),
  47434. name: "Dressed",
  47435. image: {
  47436. source: "./media/characters/brooke/dressed.svg",
  47437. extra: 1050/1010,
  47438. bottom: 66/1116
  47439. }
  47440. },
  47441. },
  47442. [
  47443. {
  47444. name: "Canon Height",
  47445. height: math.unit(500, "miles"),
  47446. default: true
  47447. },
  47448. ]
  47449. ))
  47450. characterMakers.push(() => makeCharacter(
  47451. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47452. {
  47453. front: {
  47454. height: math.unit(6 + 2/12, "feet"),
  47455. weight: math.unit(210, "lb"),
  47456. name: "Front",
  47457. image: {
  47458. source: "./media/characters/wubs/front.svg",
  47459. extra: 1345/1325,
  47460. bottom: 70/1415
  47461. }
  47462. },
  47463. back: {
  47464. height: math.unit(6 + 2/12, "feet"),
  47465. weight: math.unit(210, "lb"),
  47466. name: "Back",
  47467. image: {
  47468. source: "./media/characters/wubs/back.svg",
  47469. extra: 1296/1275,
  47470. bottom: 58/1354
  47471. }
  47472. },
  47473. },
  47474. [
  47475. {
  47476. name: "Normal",
  47477. height: math.unit(6 + 2/12, "feet"),
  47478. default: true
  47479. },
  47480. {
  47481. name: "Macro",
  47482. height: math.unit(1000, "feet")
  47483. },
  47484. {
  47485. name: "Megamacro",
  47486. height: math.unit(1, "mile")
  47487. },
  47488. ]
  47489. ))
  47490. characterMakers.push(() => makeCharacter(
  47491. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47492. {
  47493. front: {
  47494. height: math.unit(4, "feet"),
  47495. weight: math.unit(120, "lb"),
  47496. name: "Front",
  47497. image: {
  47498. source: "./media/characters/blue/front.svg",
  47499. extra: 1636/1525,
  47500. bottom: 43/1679
  47501. }
  47502. },
  47503. back: {
  47504. height: math.unit(4, "feet"),
  47505. weight: math.unit(120, "lb"),
  47506. name: "Back",
  47507. image: {
  47508. source: "./media/characters/blue/back.svg",
  47509. extra: 1660/1560,
  47510. bottom: 57/1717
  47511. }
  47512. },
  47513. paws: {
  47514. height: math.unit(0.826, "feet"),
  47515. name: "Paws",
  47516. image: {
  47517. source: "./media/characters/blue/paws.svg"
  47518. }
  47519. },
  47520. },
  47521. [
  47522. {
  47523. name: "Micro",
  47524. height: math.unit(3, "inches")
  47525. },
  47526. {
  47527. name: "Normal",
  47528. height: math.unit(4, "feet"),
  47529. default: true
  47530. },
  47531. {
  47532. name: "Femenine Form",
  47533. height: math.unit(14, "feet")
  47534. },
  47535. {
  47536. name: "Werebat Form",
  47537. height: math.unit(18, "feet")
  47538. },
  47539. ]
  47540. ))
  47541. characterMakers.push(() => makeCharacter(
  47542. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47543. {
  47544. female: {
  47545. height: math.unit(7 + 4/12, "feet"),
  47546. weight: math.unit(243, "lb"),
  47547. name: "Female",
  47548. image: {
  47549. source: "./media/characters/kaya/female.svg",
  47550. extra: 975/898,
  47551. bottom: 34/1009
  47552. }
  47553. },
  47554. herm: {
  47555. height: math.unit(7 + 4/12, "feet"),
  47556. weight: math.unit(243, "lb"),
  47557. name: "Herm",
  47558. image: {
  47559. source: "./media/characters/kaya/herm.svg",
  47560. extra: 975/898,
  47561. bottom: 34/1009
  47562. }
  47563. },
  47564. },
  47565. [
  47566. {
  47567. name: "Normal",
  47568. height: math.unit(7 + 4/12, "feet"),
  47569. default: true
  47570. },
  47571. ]
  47572. ))
  47573. characterMakers.push(() => makeCharacter(
  47574. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47575. {
  47576. female: {
  47577. height: math.unit(9 + 4/12, "feet"),
  47578. weight: math.unit(398, "lb"),
  47579. name: "Female",
  47580. image: {
  47581. source: "./media/characters/kassandra/female.svg",
  47582. extra: 908/839,
  47583. bottom: 61/969
  47584. }
  47585. },
  47586. intersex: {
  47587. height: math.unit(9 + 4/12, "feet"),
  47588. weight: math.unit(398, "lb"),
  47589. name: "Intersex",
  47590. image: {
  47591. source: "./media/characters/kassandra/intersex.svg",
  47592. extra: 908/839,
  47593. bottom: 61/969
  47594. }
  47595. },
  47596. },
  47597. [
  47598. {
  47599. name: "Normal",
  47600. height: math.unit(9 + 4/12, "feet"),
  47601. default: true
  47602. },
  47603. ]
  47604. ))
  47605. characterMakers.push(() => makeCharacter(
  47606. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47607. {
  47608. front: {
  47609. height: math.unit(3, "meters"),
  47610. name: "Front",
  47611. image: {
  47612. source: "./media/characters/amy/front.svg",
  47613. extra: 1380/1343,
  47614. bottom: 70/1450
  47615. }
  47616. },
  47617. back: {
  47618. height: math.unit(3, "meters"),
  47619. name: "Back",
  47620. image: {
  47621. source: "./media/characters/amy/back.svg",
  47622. extra: 1380/1347,
  47623. bottom: 66/1446
  47624. }
  47625. },
  47626. },
  47627. [
  47628. {
  47629. name: "Normal",
  47630. height: math.unit(3, "meters"),
  47631. default: true
  47632. },
  47633. ]
  47634. ))
  47635. characterMakers.push(() => makeCharacter(
  47636. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47637. {
  47638. side: {
  47639. height: math.unit(47, "cm"),
  47640. weight: math.unit(10.8, "kg"),
  47641. name: "Side",
  47642. image: {
  47643. source: "./media/characters/alphaschakal/side.svg",
  47644. extra: 1058/568,
  47645. bottom: 62/1120
  47646. }
  47647. },
  47648. back: {
  47649. height: math.unit(78, "cm"),
  47650. weight: math.unit(10.8, "kg"),
  47651. name: "Back",
  47652. image: {
  47653. source: "./media/characters/alphaschakal/back.svg",
  47654. extra: 1102/942,
  47655. bottom: 185/1287
  47656. }
  47657. },
  47658. head: {
  47659. height: math.unit(28, "cm"),
  47660. name: "Head",
  47661. image: {
  47662. source: "./media/characters/alphaschakal/head.svg",
  47663. extra: 696/508,
  47664. bottom: 0/696
  47665. }
  47666. },
  47667. paw: {
  47668. height: math.unit(16, "cm"),
  47669. name: "Paw",
  47670. image: {
  47671. source: "./media/characters/alphaschakal/paw.svg"
  47672. }
  47673. },
  47674. },
  47675. [
  47676. {
  47677. name: "Normal",
  47678. height: math.unit(47, "cm"),
  47679. default: true
  47680. },
  47681. {
  47682. name: "Macro",
  47683. height: math.unit(340, "cm")
  47684. },
  47685. ]
  47686. ))
  47687. characterMakers.push(() => makeCharacter(
  47688. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47689. {
  47690. front: {
  47691. height: math.unit(36, "earths"),
  47692. name: "Front",
  47693. image: {
  47694. source: "./media/characters/ecobyss/front.svg",
  47695. extra: 1282/1215,
  47696. bottom: 11/1293
  47697. }
  47698. },
  47699. back: {
  47700. height: math.unit(36, "earths"),
  47701. name: "Back",
  47702. image: {
  47703. source: "./media/characters/ecobyss/back.svg",
  47704. extra: 1291/1222,
  47705. bottom: 8/1299
  47706. }
  47707. },
  47708. },
  47709. [
  47710. {
  47711. name: "Normal",
  47712. height: math.unit(36, "earths"),
  47713. default: true
  47714. },
  47715. ]
  47716. ))
  47717. characterMakers.push(() => makeCharacter(
  47718. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47719. {
  47720. front: {
  47721. height: math.unit(12, "feet"),
  47722. name: "Front",
  47723. image: {
  47724. source: "./media/characters/vasuk/front.svg",
  47725. extra: 1326/1207,
  47726. bottom: 64/1390
  47727. }
  47728. },
  47729. },
  47730. [
  47731. {
  47732. name: "Normal",
  47733. height: math.unit(12, "feet"),
  47734. default: true
  47735. },
  47736. ]
  47737. ))
  47738. characterMakers.push(() => makeCharacter(
  47739. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47740. {
  47741. side: {
  47742. height: math.unit(100, "feet"),
  47743. name: "Side",
  47744. image: {
  47745. source: "./media/characters/linneaus/side.svg",
  47746. extra: 987/807,
  47747. bottom: 47/1034
  47748. }
  47749. },
  47750. },
  47751. [
  47752. {
  47753. name: "Macro",
  47754. height: math.unit(100, "feet"),
  47755. default: true
  47756. },
  47757. ]
  47758. ))
  47759. characterMakers.push(() => makeCharacter(
  47760. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47761. {
  47762. front: {
  47763. height: math.unit(8, "feet"),
  47764. weight: math.unit(1200, "lb"),
  47765. name: "Front",
  47766. image: {
  47767. source: "./media/characters/nyterious-daligdig/front.svg",
  47768. extra: 1284/1094,
  47769. bottom: 84/1368
  47770. }
  47771. },
  47772. back: {
  47773. height: math.unit(8, "feet"),
  47774. weight: math.unit(1200, "lb"),
  47775. name: "Back",
  47776. image: {
  47777. source: "./media/characters/nyterious-daligdig/back.svg",
  47778. extra: 1301/1121,
  47779. bottom: 129/1430
  47780. }
  47781. },
  47782. mouth: {
  47783. height: math.unit(1.464, "feet"),
  47784. name: "Mouth",
  47785. image: {
  47786. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47787. }
  47788. },
  47789. },
  47790. [
  47791. {
  47792. name: "Small",
  47793. height: math.unit(8, "feet"),
  47794. default: true
  47795. },
  47796. {
  47797. name: "Normal",
  47798. height: math.unit(15, "feet")
  47799. },
  47800. {
  47801. name: "Macro",
  47802. height: math.unit(90, "feet")
  47803. },
  47804. ]
  47805. ))
  47806. characterMakers.push(() => makeCharacter(
  47807. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47808. {
  47809. front: {
  47810. height: math.unit(7 + 4/12, "feet"),
  47811. weight: math.unit(252, "lb"),
  47812. name: "Front",
  47813. image: {
  47814. source: "./media/characters/bandel/front.svg",
  47815. extra: 1946/1775,
  47816. bottom: 26/1972
  47817. }
  47818. },
  47819. back: {
  47820. height: math.unit(7 + 4/12, "feet"),
  47821. weight: math.unit(252, "lb"),
  47822. name: "Back",
  47823. image: {
  47824. source: "./media/characters/bandel/back.svg",
  47825. extra: 1940/1770,
  47826. bottom: 25/1965
  47827. }
  47828. },
  47829. maw: {
  47830. height: math.unit(2.15, "feet"),
  47831. name: "Maw",
  47832. image: {
  47833. source: "./media/characters/bandel/maw.svg"
  47834. }
  47835. },
  47836. stomach: {
  47837. height: math.unit(1.95, "feet"),
  47838. name: "Stomach",
  47839. image: {
  47840. source: "./media/characters/bandel/stomach.svg"
  47841. }
  47842. },
  47843. },
  47844. [
  47845. {
  47846. name: "Normal",
  47847. height: math.unit(7 + 4/12, "feet"),
  47848. default: true
  47849. },
  47850. ]
  47851. ))
  47852. characterMakers.push(() => makeCharacter(
  47853. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47854. {
  47855. front: {
  47856. height: math.unit(10 + 5/12, "feet"),
  47857. weight: math.unit(773.5, "kg"),
  47858. name: "Front",
  47859. image: {
  47860. source: "./media/characters/zed/front.svg",
  47861. extra: 987/941,
  47862. bottom: 52/1039
  47863. }
  47864. },
  47865. },
  47866. [
  47867. {
  47868. name: "Short",
  47869. height: math.unit(5 + 4/12, "feet")
  47870. },
  47871. {
  47872. name: "Average",
  47873. height: math.unit(10 + 5/12, "feet"),
  47874. default: true
  47875. },
  47876. {
  47877. name: "Mini-Macro",
  47878. height: math.unit(24 + 9/12, "feet")
  47879. },
  47880. {
  47881. name: "Macro",
  47882. height: math.unit(249, "feet")
  47883. },
  47884. {
  47885. name: "Mega-Macro",
  47886. height: math.unit(12490, "feet")
  47887. },
  47888. {
  47889. name: "Giga-Macro",
  47890. height: math.unit(24.9, "miles")
  47891. },
  47892. {
  47893. name: "Tera-Macro",
  47894. height: math.unit(24900, "miles")
  47895. },
  47896. {
  47897. name: "Cosmic Scale",
  47898. height: math.unit(38.9, "lightyears")
  47899. },
  47900. {
  47901. name: "Universal Scale",
  47902. height: math.unit(138e12, "lightyears")
  47903. },
  47904. ]
  47905. ))
  47906. characterMakers.push(() => makeCharacter(
  47907. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47908. {
  47909. front: {
  47910. height: math.unit(1561, "inches"),
  47911. name: "Front",
  47912. image: {
  47913. source: "./media/characters/ivan/front.svg",
  47914. extra: 1126/1071,
  47915. bottom: 26/1152
  47916. }
  47917. },
  47918. back: {
  47919. height: math.unit(1561, "inches"),
  47920. name: "Back",
  47921. image: {
  47922. source: "./media/characters/ivan/back.svg",
  47923. extra: 1134/1079,
  47924. bottom: 30/1164
  47925. }
  47926. },
  47927. },
  47928. [
  47929. {
  47930. name: "Normal",
  47931. height: math.unit(1561, "inches"),
  47932. default: true
  47933. },
  47934. ]
  47935. ))
  47936. characterMakers.push(() => makeCharacter(
  47937. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47938. {
  47939. front: {
  47940. height: math.unit(5 + 7/12, "feet"),
  47941. weight: math.unit(150, "lb"),
  47942. name: "Front",
  47943. image: {
  47944. source: "./media/characters/robin-arctic-hare/front.svg",
  47945. extra: 1148/974,
  47946. bottom: 20/1168
  47947. }
  47948. },
  47949. },
  47950. [
  47951. {
  47952. name: "Normal",
  47953. height: math.unit(5 + 7/12, "feet"),
  47954. default: true
  47955. },
  47956. ]
  47957. ))
  47958. characterMakers.push(() => makeCharacter(
  47959. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47960. {
  47961. side: {
  47962. height: math.unit(5, "feet"),
  47963. name: "Side",
  47964. image: {
  47965. source: "./media/characters/birch/side.svg",
  47966. extra: 985/796,
  47967. bottom: 111/1096
  47968. }
  47969. },
  47970. },
  47971. [
  47972. {
  47973. name: "Normal",
  47974. height: math.unit(5, "feet"),
  47975. default: true
  47976. },
  47977. ]
  47978. ))
  47979. characterMakers.push(() => makeCharacter(
  47980. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47981. {
  47982. front: {
  47983. height: math.unit(4, "feet"),
  47984. name: "Front",
  47985. image: {
  47986. source: "./media/characters/rasp/front.svg",
  47987. extra: 561/478,
  47988. bottom: 74/635
  47989. }
  47990. },
  47991. },
  47992. [
  47993. {
  47994. name: "Normal",
  47995. height: math.unit(4, "feet"),
  47996. default: true
  47997. },
  47998. ]
  47999. ))
  48000. characterMakers.push(() => makeCharacter(
  48001. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48002. {
  48003. front: {
  48004. height: math.unit(4 + 6/12, "feet"),
  48005. name: "Front",
  48006. image: {
  48007. source: "./media/characters/agatha/front.svg",
  48008. extra: 947/933,
  48009. bottom: 42/989
  48010. }
  48011. },
  48012. back: {
  48013. height: math.unit(4 + 6/12, "feet"),
  48014. name: "Back",
  48015. image: {
  48016. source: "./media/characters/agatha/back.svg",
  48017. extra: 935/922,
  48018. bottom: 48/983
  48019. }
  48020. },
  48021. },
  48022. [
  48023. {
  48024. name: "Normal",
  48025. height: math.unit(4 + 6 /12, "feet"),
  48026. default: true
  48027. },
  48028. {
  48029. name: "Max Size",
  48030. height: math.unit(500, "feet")
  48031. },
  48032. ]
  48033. ))
  48034. characterMakers.push(() => makeCharacter(
  48035. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48036. {
  48037. side: {
  48038. height: math.unit(30, "feet"),
  48039. name: "Side",
  48040. image: {
  48041. source: "./media/characters/roggy/side.svg",
  48042. extra: 909/643,
  48043. bottom: 63/972
  48044. }
  48045. },
  48046. lounging: {
  48047. height: math.unit(20, "feet"),
  48048. name: "Lounging",
  48049. image: {
  48050. source: "./media/characters/roggy/lounging.svg",
  48051. extra: 643/479,
  48052. bottom: 145/788
  48053. }
  48054. },
  48055. handpaw: {
  48056. height: math.unit(13.1, "feet"),
  48057. name: "Handpaw",
  48058. image: {
  48059. source: "./media/characters/roggy/handpaw.svg"
  48060. }
  48061. },
  48062. footpaw: {
  48063. height: math.unit(15.8, "feet"),
  48064. name: "Footpaw",
  48065. image: {
  48066. source: "./media/characters/roggy/footpaw.svg"
  48067. }
  48068. },
  48069. },
  48070. [
  48071. {
  48072. name: "Menacing",
  48073. height: math.unit(30, "feet"),
  48074. default: true
  48075. },
  48076. ]
  48077. ))
  48078. characterMakers.push(() => makeCharacter(
  48079. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48080. {
  48081. front: {
  48082. height: math.unit(5 + 7/12, "feet"),
  48083. weight: math.unit(135, "lb"),
  48084. name: "Front",
  48085. image: {
  48086. source: "./media/characters/naomi/front.svg",
  48087. extra: 1209/1154,
  48088. bottom: 129/1338
  48089. }
  48090. },
  48091. back: {
  48092. height: math.unit(5 + 7/12, "feet"),
  48093. weight: math.unit(135, "lb"),
  48094. name: "Back",
  48095. image: {
  48096. source: "./media/characters/naomi/back.svg",
  48097. extra: 1252/1190,
  48098. bottom: 23/1275
  48099. }
  48100. },
  48101. },
  48102. [
  48103. {
  48104. name: "Normal",
  48105. height: math.unit(5 + 7 /12, "feet"),
  48106. default: true
  48107. },
  48108. ]
  48109. ))
  48110. characterMakers.push(() => makeCharacter(
  48111. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48112. {
  48113. side: {
  48114. height: math.unit(35, "meters"),
  48115. name: "Side",
  48116. image: {
  48117. source: "./media/characters/kimpi/side.svg",
  48118. extra: 419/382,
  48119. bottom: 63/482
  48120. }
  48121. },
  48122. hand: {
  48123. height: math.unit(8.96, "meters"),
  48124. name: "Hand",
  48125. image: {
  48126. source: "./media/characters/kimpi/hand.svg"
  48127. }
  48128. },
  48129. },
  48130. [
  48131. {
  48132. name: "Normal",
  48133. height: math.unit(35, "meters"),
  48134. default: true
  48135. },
  48136. ]
  48137. ))
  48138. characterMakers.push(() => makeCharacter(
  48139. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48140. {
  48141. front: {
  48142. height: math.unit(4 + 4/12, "feet"),
  48143. name: "Front",
  48144. image: {
  48145. source: "./media/characters/pepper-purrloin/front.svg",
  48146. extra: 1141/1024,
  48147. bottom: 21/1162
  48148. }
  48149. },
  48150. },
  48151. [
  48152. {
  48153. name: "Normal",
  48154. height: math.unit(4 + 4/12, "feet"),
  48155. default: true
  48156. },
  48157. ]
  48158. ))
  48159. characterMakers.push(() => makeCharacter(
  48160. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48161. {
  48162. front: {
  48163. height: math.unit(6 + 2/12, "feet"),
  48164. name: "Front",
  48165. image: {
  48166. source: "./media/characters/raphael/front.svg",
  48167. extra: 1101/962,
  48168. bottom: 59/1160
  48169. }
  48170. },
  48171. },
  48172. [
  48173. {
  48174. name: "Normal",
  48175. height: math.unit(6 + 2/12, "feet"),
  48176. default: true
  48177. },
  48178. ]
  48179. ))
  48180. characterMakers.push(() => makeCharacter(
  48181. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48182. {
  48183. front: {
  48184. height: math.unit(6, "feet"),
  48185. weight: math.unit(150, "lb"),
  48186. name: "Front",
  48187. image: {
  48188. source: "./media/characters/victor-williams/front.svg",
  48189. extra: 1894/1825,
  48190. bottom: 67/1961
  48191. }
  48192. },
  48193. },
  48194. [
  48195. {
  48196. name: "Normal",
  48197. height: math.unit(6, "feet"),
  48198. default: true
  48199. },
  48200. ]
  48201. ))
  48202. characterMakers.push(() => makeCharacter(
  48203. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48204. {
  48205. front: {
  48206. height: math.unit(5 + 8/12, "feet"),
  48207. weight: math.unit(150, "lb"),
  48208. name: "Front",
  48209. image: {
  48210. source: "./media/characters/rachel/front.svg",
  48211. extra: 1902/1787,
  48212. bottom: 46/1948
  48213. }
  48214. },
  48215. },
  48216. [
  48217. {
  48218. name: "Base Height",
  48219. height: math.unit(5 + 8/12, "feet"),
  48220. default: true
  48221. },
  48222. {
  48223. name: "Macro",
  48224. height: math.unit(200, "feet")
  48225. },
  48226. {
  48227. name: "Mega Macro",
  48228. height: math.unit(1, "mile")
  48229. },
  48230. {
  48231. name: "Giga Macro",
  48232. height: math.unit(1500, "miles")
  48233. },
  48234. {
  48235. name: "Tera Macro",
  48236. height: math.unit(8000, "miles")
  48237. },
  48238. {
  48239. name: "Tera Macro+",
  48240. height: math.unit(2e5, "miles")
  48241. },
  48242. ]
  48243. ))
  48244. characterMakers.push(() => makeCharacter(
  48245. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48246. {
  48247. front: {
  48248. height: math.unit(6.5, "feet"),
  48249. name: "Front",
  48250. image: {
  48251. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48252. extra: 860/819,
  48253. bottom: 307/1167
  48254. }
  48255. },
  48256. back: {
  48257. height: math.unit(6.5, "feet"),
  48258. name: "Back",
  48259. image: {
  48260. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48261. extra: 880/837,
  48262. bottom: 395/1275
  48263. }
  48264. },
  48265. sleeping: {
  48266. height: math.unit(2.79, "feet"),
  48267. name: "Sleeping",
  48268. image: {
  48269. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48270. extra: 465/383,
  48271. bottom: 263/728
  48272. }
  48273. },
  48274. maw: {
  48275. height: math.unit(2.52, "feet"),
  48276. name: "Maw",
  48277. image: {
  48278. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48279. }
  48280. },
  48281. },
  48282. [
  48283. {
  48284. name: "Normal",
  48285. height: math.unit(6.5, "feet"),
  48286. default: true
  48287. },
  48288. ]
  48289. ))
  48290. characterMakers.push(() => makeCharacter(
  48291. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48292. {
  48293. front: {
  48294. height: math.unit(5, "feet"),
  48295. name: "Front",
  48296. image: {
  48297. source: "./media/characters/nova-nerium/front.svg",
  48298. extra: 1548/1392,
  48299. bottom: 374/1922
  48300. }
  48301. },
  48302. back: {
  48303. height: math.unit(5, "feet"),
  48304. name: "Back",
  48305. image: {
  48306. source: "./media/characters/nova-nerium/back.svg",
  48307. extra: 1658/1468,
  48308. bottom: 257/1915
  48309. }
  48310. },
  48311. },
  48312. [
  48313. {
  48314. name: "Normal",
  48315. height: math.unit(5, "feet"),
  48316. default: true
  48317. },
  48318. ]
  48319. ))
  48320. characterMakers.push(() => makeCharacter(
  48321. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48322. {
  48323. front: {
  48324. height: math.unit(5 + 4/12, "feet"),
  48325. name: "Front",
  48326. image: {
  48327. source: "./media/characters/ashe-pyriph/front.svg",
  48328. extra: 1935/1747,
  48329. bottom: 60/1995
  48330. }
  48331. },
  48332. },
  48333. [
  48334. {
  48335. name: "Normal",
  48336. height: math.unit(5 + 4/12, "feet"),
  48337. default: true
  48338. },
  48339. ]
  48340. ))
  48341. characterMakers.push(() => makeCharacter(
  48342. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48343. {
  48344. front: {
  48345. height: math.unit(8.7, "feet"),
  48346. name: "Front",
  48347. image: {
  48348. source: "./media/characters/flicker-wisp/front.svg",
  48349. extra: 1835/1613,
  48350. bottom: 449/2284
  48351. }
  48352. },
  48353. side: {
  48354. height: math.unit(8.7, "feet"),
  48355. name: "Side",
  48356. image: {
  48357. source: "./media/characters/flicker-wisp/side.svg",
  48358. extra: 1841/1642,
  48359. bottom: 336/2177
  48360. },
  48361. default: true
  48362. },
  48363. maw: {
  48364. height: math.unit(3.35, "feet"),
  48365. name: "Maw",
  48366. image: {
  48367. source: "./media/characters/flicker-wisp/maw.svg",
  48368. extra: 2338/1506,
  48369. bottom: 0/2338
  48370. }
  48371. },
  48372. ovipositor: {
  48373. height: math.unit(4.95, "feet"),
  48374. name: "Ovipositor",
  48375. image: {
  48376. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48377. }
  48378. },
  48379. egg: {
  48380. height: math.unit(0.385, "feet"),
  48381. weight: math.unit(2, "lb"),
  48382. name: "Egg",
  48383. image: {
  48384. source: "./media/characters/flicker-wisp/egg.svg"
  48385. }
  48386. },
  48387. },
  48388. [
  48389. {
  48390. name: "Normal",
  48391. height: math.unit(8.7, "feet"),
  48392. default: true
  48393. },
  48394. ]
  48395. ))
  48396. characterMakers.push(() => makeCharacter(
  48397. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48398. {
  48399. side: {
  48400. height: math.unit(11, "feet"),
  48401. name: "Side",
  48402. image: {
  48403. source: "./media/characters/faefnul/side.svg",
  48404. extra: 1100/1007,
  48405. bottom: 0/1100
  48406. }
  48407. },
  48408. },
  48409. [
  48410. {
  48411. name: "Normal",
  48412. height: math.unit(11, "feet"),
  48413. default: true
  48414. },
  48415. ]
  48416. ))
  48417. characterMakers.push(() => makeCharacter(
  48418. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48419. {
  48420. front: {
  48421. height: math.unit(6 + 2/12, "feet"),
  48422. name: "Front",
  48423. image: {
  48424. source: "./media/characters/shady/front.svg",
  48425. extra: 502/461,
  48426. bottom: 9/511
  48427. }
  48428. },
  48429. kneeling: {
  48430. height: math.unit(4.6, "feet"),
  48431. name: "Kneeling",
  48432. image: {
  48433. source: "./media/characters/shady/kneeling.svg",
  48434. extra: 1328/1219,
  48435. bottom: 117/1445
  48436. }
  48437. },
  48438. maw: {
  48439. height: math.unit(2, "feet"),
  48440. name: "Maw",
  48441. image: {
  48442. source: "./media/characters/shady/maw.svg"
  48443. }
  48444. },
  48445. },
  48446. [
  48447. {
  48448. name: "Nano",
  48449. height: math.unit(1, "mm")
  48450. },
  48451. {
  48452. name: "Micro",
  48453. height: math.unit(12, "mm")
  48454. },
  48455. {
  48456. name: "Tiny",
  48457. height: math.unit(3, "inches")
  48458. },
  48459. {
  48460. name: "Normal",
  48461. height: math.unit(6 + 2/12, "feet"),
  48462. default: true
  48463. },
  48464. {
  48465. name: "Big",
  48466. height: math.unit(15, "feet")
  48467. },
  48468. {
  48469. name: "Macro",
  48470. height: math.unit(150, "feet")
  48471. },
  48472. {
  48473. name: "Titanic",
  48474. height: math.unit(500, "feet")
  48475. },
  48476. ]
  48477. ))
  48478. characterMakers.push(() => makeCharacter(
  48479. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48480. {
  48481. front: {
  48482. height: math.unit(12, "feet"),
  48483. name: "Front",
  48484. image: {
  48485. source: "./media/characters/fenrir/front.svg",
  48486. extra: 968/875,
  48487. bottom: 22/990
  48488. }
  48489. },
  48490. },
  48491. [
  48492. {
  48493. name: "Big",
  48494. height: math.unit(12, "feet"),
  48495. default: true
  48496. },
  48497. ]
  48498. ))
  48499. characterMakers.push(() => makeCharacter(
  48500. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48501. {
  48502. front: {
  48503. height: math.unit(5 + 4/12, "feet"),
  48504. name: "Front",
  48505. image: {
  48506. source: "./media/characters/makar/front.svg",
  48507. extra: 1181/1112,
  48508. bottom: 78/1259
  48509. }
  48510. },
  48511. },
  48512. [
  48513. {
  48514. name: "Normal",
  48515. height: math.unit(5 + 4/12, "feet"),
  48516. default: true
  48517. },
  48518. ]
  48519. ))
  48520. characterMakers.push(() => makeCharacter(
  48521. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48522. {
  48523. front: {
  48524. height: math.unit(5 + 7/12, "feet"),
  48525. name: "Front",
  48526. image: {
  48527. source: "./media/characters/callow/front.svg",
  48528. extra: 1482/1304,
  48529. bottom: 23/1505
  48530. }
  48531. },
  48532. back: {
  48533. height: math.unit(5 + 7/12, "feet"),
  48534. name: "Back",
  48535. image: {
  48536. source: "./media/characters/callow/back.svg",
  48537. extra: 1484/1296,
  48538. bottom: 25/1509
  48539. }
  48540. },
  48541. },
  48542. [
  48543. {
  48544. name: "Micro",
  48545. height: math.unit(3, "inches"),
  48546. default: true
  48547. },
  48548. {
  48549. name: "Normal",
  48550. height: math.unit(5 + 7/12, "feet")
  48551. },
  48552. ]
  48553. ))
  48554. characterMakers.push(() => makeCharacter(
  48555. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48556. {
  48557. front: {
  48558. height: math.unit(6 + 2/12, "feet"),
  48559. name: "Front",
  48560. image: {
  48561. source: "./media/characters/natel/front.svg",
  48562. extra: 1833/1692,
  48563. bottom: 166/1999
  48564. }
  48565. },
  48566. },
  48567. [
  48568. {
  48569. name: "Normal",
  48570. height: math.unit(6 + 2/12, "feet"),
  48571. default: true
  48572. },
  48573. ]
  48574. ))
  48575. characterMakers.push(() => makeCharacter(
  48576. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48577. {
  48578. front: {
  48579. height: math.unit(1.75, "meters"),
  48580. name: "Front",
  48581. image: {
  48582. source: "./media/characters/misu/front.svg",
  48583. extra: 1690/1558,
  48584. bottom: 234/1924
  48585. }
  48586. },
  48587. back: {
  48588. height: math.unit(1.75, "meters"),
  48589. name: "Back",
  48590. image: {
  48591. source: "./media/characters/misu/back.svg",
  48592. extra: 1762/1618,
  48593. bottom: 146/1908
  48594. }
  48595. },
  48596. frontNude: {
  48597. height: math.unit(1.75, "meters"),
  48598. name: "Front (Nude)",
  48599. image: {
  48600. source: "./media/characters/misu/front-nude.svg",
  48601. extra: 1690/1558,
  48602. bottom: 234/1924
  48603. }
  48604. },
  48605. backNude: {
  48606. height: math.unit(1.75, "meters"),
  48607. name: "Back (Nude)",
  48608. image: {
  48609. source: "./media/characters/misu/back-nude.svg",
  48610. extra: 1762/1618,
  48611. bottom: 146/1908
  48612. }
  48613. },
  48614. frontErect: {
  48615. height: math.unit(1.75, "meters"),
  48616. name: "Front (Erect)",
  48617. image: {
  48618. source: "./media/characters/misu/front-erect.svg",
  48619. extra: 1690/1558,
  48620. bottom: 234/1924
  48621. }
  48622. },
  48623. maw: {
  48624. height: math.unit(0.47, "meters"),
  48625. name: "Maw",
  48626. image: {
  48627. source: "./media/characters/misu/maw.svg"
  48628. }
  48629. },
  48630. head: {
  48631. height: math.unit(0.35, "meters"),
  48632. name: "Head",
  48633. image: {
  48634. source: "./media/characters/misu/head.svg"
  48635. }
  48636. },
  48637. rear: {
  48638. height: math.unit(0.47, "meters"),
  48639. name: "Rear",
  48640. image: {
  48641. source: "./media/characters/misu/rear.svg"
  48642. }
  48643. },
  48644. },
  48645. [
  48646. {
  48647. name: "Normal",
  48648. height: math.unit(1.75, "meters")
  48649. },
  48650. {
  48651. name: "Not good for the people",
  48652. height: math.unit(42, "meters")
  48653. },
  48654. {
  48655. name: "Not good for the neighborhood",
  48656. height: math.unit(135, "meters")
  48657. },
  48658. {
  48659. name: "Bit bigger problem",
  48660. height: math.unit(380, "meters"),
  48661. default: true
  48662. },
  48663. {
  48664. name: "Not good for the city",
  48665. height: math.unit(1.5, "km")
  48666. },
  48667. {
  48668. name: "Not good for the county",
  48669. height: math.unit(5.5, "km")
  48670. },
  48671. {
  48672. name: "Not good for the state",
  48673. height: math.unit(25, "km")
  48674. },
  48675. {
  48676. name: "Not good for the country",
  48677. height: math.unit(125, "km")
  48678. },
  48679. {
  48680. name: "Not good for the continent",
  48681. height: math.unit(2100, "km")
  48682. },
  48683. {
  48684. name: "Not good for the planet",
  48685. height: math.unit(35000, "km")
  48686. },
  48687. {
  48688. name: "Just no",
  48689. height: math.unit(8.5e18, "km")
  48690. },
  48691. ]
  48692. ))
  48693. characterMakers.push(() => makeCharacter(
  48694. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48695. {
  48696. front: {
  48697. height: math.unit(6.5, "feet"),
  48698. name: "Front",
  48699. image: {
  48700. source: "./media/characters/poppy/front.svg",
  48701. extra: 1878/1812,
  48702. bottom: 43/1921
  48703. }
  48704. },
  48705. feet: {
  48706. height: math.unit(1.06, "feet"),
  48707. name: "Feet",
  48708. image: {
  48709. source: "./media/characters/poppy/feet.svg",
  48710. extra: 1083/1083,
  48711. bottom: 87/1170
  48712. }
  48713. },
  48714. },
  48715. [
  48716. {
  48717. name: "Human",
  48718. height: math.unit(6.5, "feet")
  48719. },
  48720. {
  48721. name: "Default",
  48722. height: math.unit(300, "feet"),
  48723. default: true
  48724. },
  48725. {
  48726. name: "Huge",
  48727. height: math.unit(850, "feet")
  48728. },
  48729. {
  48730. name: "Mega",
  48731. height: math.unit(8000, "feet")
  48732. },
  48733. {
  48734. name: "Giga",
  48735. height: math.unit(300, "miles")
  48736. },
  48737. ]
  48738. ))
  48739. characterMakers.push(() => makeCharacter(
  48740. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48741. {
  48742. bipedal: {
  48743. height: math.unit(7, "feet"),
  48744. name: "Bipedal",
  48745. image: {
  48746. source: "./media/characters/zener/bipedal.svg",
  48747. extra: 874/805,
  48748. bottom: 109/983
  48749. }
  48750. },
  48751. quadrupedal: {
  48752. height: math.unit(4.64, "feet"),
  48753. name: "Quadrupedal",
  48754. image: {
  48755. source: "./media/characters/zener/quadrupedal.svg",
  48756. extra: 638/507,
  48757. bottom: 190/828
  48758. }
  48759. },
  48760. cock: {
  48761. height: math.unit(18, "inches"),
  48762. name: "Cock",
  48763. image: {
  48764. source: "./media/characters/zener/cock.svg"
  48765. }
  48766. },
  48767. },
  48768. [
  48769. {
  48770. name: "Normal",
  48771. height: math.unit(7, "feet"),
  48772. default: true
  48773. },
  48774. ]
  48775. ))
  48776. characterMakers.push(() => makeCharacter(
  48777. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48778. {
  48779. nude: {
  48780. height: math.unit(5 + 6/12, "feet"),
  48781. name: "Nude",
  48782. image: {
  48783. source: "./media/characters/charlie-dog/nude.svg",
  48784. extra: 768/734,
  48785. bottom: 26/794
  48786. }
  48787. },
  48788. dressed: {
  48789. height: math.unit(5 + 6/12, "feet"),
  48790. name: "Dressed",
  48791. image: {
  48792. source: "./media/characters/charlie-dog/dressed.svg",
  48793. extra: 768/734,
  48794. bottom: 26/794
  48795. }
  48796. },
  48797. },
  48798. [
  48799. {
  48800. name: "Normal",
  48801. height: math.unit(5 + 6/12, "feet"),
  48802. default: true
  48803. },
  48804. ]
  48805. ))
  48806. characterMakers.push(() => makeCharacter(
  48807. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48808. {
  48809. front: {
  48810. height: math.unit(6 + 4/12, "feet"),
  48811. name: "Front",
  48812. image: {
  48813. source: "./media/characters/ir'istrasz/front.svg",
  48814. extra: 1014/977,
  48815. bottom: 65/1079
  48816. }
  48817. },
  48818. back: {
  48819. height: math.unit(6 + 4/12, "feet"),
  48820. name: "Back",
  48821. image: {
  48822. source: "./media/characters/ir'istrasz/back.svg",
  48823. extra: 1024/992,
  48824. bottom: 34/1058
  48825. }
  48826. },
  48827. },
  48828. [
  48829. {
  48830. name: "Normal",
  48831. height: math.unit(6 + 4/12, "feet"),
  48832. default: true
  48833. },
  48834. ]
  48835. ))
  48836. characterMakers.push(() => makeCharacter(
  48837. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48838. {
  48839. front: {
  48840. height: math.unit(5 + 8/12, "feet"),
  48841. name: "Front",
  48842. image: {
  48843. source: "./media/characters/dee-ditto/front.svg",
  48844. extra: 1874/1785,
  48845. bottom: 68/1942
  48846. }
  48847. },
  48848. back: {
  48849. height: math.unit(5 + 8/12, "feet"),
  48850. name: "Back",
  48851. image: {
  48852. source: "./media/characters/dee-ditto/back.svg",
  48853. extra: 1870/1783,
  48854. bottom: 77/1947
  48855. }
  48856. },
  48857. },
  48858. [
  48859. {
  48860. name: "Normal",
  48861. height: math.unit(5 + 8/12, "feet"),
  48862. default: true
  48863. },
  48864. ]
  48865. ))
  48866. characterMakers.push(() => makeCharacter(
  48867. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48868. {
  48869. front: {
  48870. height: math.unit(7 + 6/12, "feet"),
  48871. name: "Front",
  48872. image: {
  48873. source: "./media/characters/fey/front.svg",
  48874. extra: 995/979,
  48875. bottom: 30/1025
  48876. }
  48877. },
  48878. back: {
  48879. height: math.unit(7 + 6/12, "feet"),
  48880. name: "Back",
  48881. image: {
  48882. source: "./media/characters/fey/back.svg",
  48883. extra: 1079/1008,
  48884. bottom: 5/1084
  48885. }
  48886. },
  48887. dressed: {
  48888. height: math.unit(7 + 6/12, "feet"),
  48889. name: "Dressed",
  48890. image: {
  48891. source: "./media/characters/fey/dressed.svg",
  48892. extra: 995/979,
  48893. bottom: 30/1025
  48894. }
  48895. },
  48896. },
  48897. [
  48898. {
  48899. name: "Normal",
  48900. height: math.unit(7 + 6/12, "feet"),
  48901. default: true
  48902. },
  48903. ]
  48904. ))
  48905. characterMakers.push(() => makeCharacter(
  48906. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48907. {
  48908. standing: {
  48909. height: math.unit(17, "feet"),
  48910. name: "Standing",
  48911. image: {
  48912. source: "./media/characters/aster/standing.svg",
  48913. extra: 1798/1598,
  48914. bottom: 117/1915
  48915. }
  48916. },
  48917. },
  48918. [
  48919. {
  48920. name: "Normal",
  48921. height: math.unit(17, "feet"),
  48922. default: true
  48923. },
  48924. {
  48925. name: "Homewrecker",
  48926. height: math.unit(95, "feet")
  48927. },
  48928. {
  48929. name: "Planet Devourer",
  48930. height: math.unit(1008000, "miles")
  48931. },
  48932. ]
  48933. ))
  48934. characterMakers.push(() => makeCharacter(
  48935. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48936. {
  48937. front: {
  48938. height: math.unit(6 + 5/12, "feet"),
  48939. weight: math.unit(265, "lb"),
  48940. name: "Front",
  48941. image: {
  48942. source: "./media/characters/devon-childs/front.svg",
  48943. extra: 1795/1721,
  48944. bottom: 41/1836
  48945. }
  48946. },
  48947. side: {
  48948. height: math.unit(6 + 5/12, "feet"),
  48949. weight: math.unit(265, "lb"),
  48950. name: "Side",
  48951. image: {
  48952. source: "./media/characters/devon-childs/side.svg",
  48953. extra: 1812/1738,
  48954. bottom: 30/1842
  48955. }
  48956. },
  48957. back: {
  48958. height: math.unit(6 + 5/12, "feet"),
  48959. weight: math.unit(265, "lb"),
  48960. name: "Back",
  48961. image: {
  48962. source: "./media/characters/devon-childs/back.svg",
  48963. extra: 1808/1735,
  48964. bottom: 23/1831
  48965. }
  48966. },
  48967. hand: {
  48968. height: math.unit(1.464, "feet"),
  48969. name: "Hand",
  48970. image: {
  48971. source: "./media/characters/devon-childs/hand.svg"
  48972. }
  48973. },
  48974. foot: {
  48975. height: math.unit(1.6, "feet"),
  48976. name: "Foot",
  48977. image: {
  48978. source: "./media/characters/devon-childs/foot.svg"
  48979. }
  48980. },
  48981. },
  48982. [
  48983. {
  48984. name: "Micro",
  48985. height: math.unit(7, "cm")
  48986. },
  48987. {
  48988. name: "Normal",
  48989. height: math.unit(6 + 5/12, "feet"),
  48990. default: true
  48991. },
  48992. {
  48993. name: "Macro",
  48994. height: math.unit(154, "feet")
  48995. },
  48996. ]
  48997. ))
  48998. characterMakers.push(() => makeCharacter(
  48999. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49000. {
  49001. front: {
  49002. height: math.unit(6, "feet"),
  49003. weight: math.unit(180, "lb"),
  49004. name: "Front",
  49005. image: {
  49006. source: "./media/characters/lydemox-vir/front.svg",
  49007. extra: 1632/1435,
  49008. bottom: 58/1690
  49009. }
  49010. },
  49011. frontSFW: {
  49012. height: math.unit(6, "feet"),
  49013. weight: math.unit(180, "lb"),
  49014. name: "Front (SFW)",
  49015. image: {
  49016. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49017. extra: 1632/1435,
  49018. bottom: 58/1690
  49019. }
  49020. },
  49021. back: {
  49022. height: math.unit(6, "feet"),
  49023. weight: math.unit(180, "lb"),
  49024. name: "Back",
  49025. image: {
  49026. source: "./media/characters/lydemox-vir/back.svg",
  49027. extra: 1593/1408,
  49028. bottom: 31/1624
  49029. }
  49030. },
  49031. paw: {
  49032. height: math.unit(1.85, "feet"),
  49033. name: "Paw",
  49034. image: {
  49035. source: "./media/characters/lydemox-vir/paw.svg"
  49036. }
  49037. },
  49038. dick: {
  49039. height: math.unit(1.8, "feet"),
  49040. name: "Dick",
  49041. image: {
  49042. source: "./media/characters/lydemox-vir/dick.svg"
  49043. }
  49044. },
  49045. },
  49046. [
  49047. {
  49048. name: "Macro",
  49049. height: math.unit(100, "feet"),
  49050. default: true
  49051. },
  49052. {
  49053. name: "Teramacro",
  49054. height: math.unit(1, "earth")
  49055. },
  49056. {
  49057. name: "Planetary",
  49058. height: math.unit(20, "earths")
  49059. },
  49060. ]
  49061. ))
  49062. characterMakers.push(() => makeCharacter(
  49063. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49064. {
  49065. front: {
  49066. height: math.unit(15 + 8/12, "feet"),
  49067. weight: math.unit(1237, "kg"),
  49068. name: "Front",
  49069. image: {
  49070. source: "./media/characters/mia/front.svg",
  49071. extra: 1573/1446,
  49072. bottom: 58/1631
  49073. }
  49074. },
  49075. },
  49076. [
  49077. {
  49078. name: "Small",
  49079. height: math.unit(9 + 5/12, "feet")
  49080. },
  49081. {
  49082. name: "Normal",
  49083. height: math.unit(15 + 8/12, "feet"),
  49084. default: true
  49085. },
  49086. ]
  49087. ))
  49088. characterMakers.push(() => makeCharacter(
  49089. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49090. {
  49091. front: {
  49092. height: math.unit(10 + 6/12, "feet"),
  49093. weight: math.unit(1.3, "tons"),
  49094. name: "Front",
  49095. image: {
  49096. source: "./media/characters/mr-graves/front.svg",
  49097. extra: 1779/1695,
  49098. bottom: 198/1977
  49099. }
  49100. },
  49101. },
  49102. [
  49103. {
  49104. name: "Normal",
  49105. height: math.unit(10 + 6 /12, "feet"),
  49106. default: true
  49107. },
  49108. ]
  49109. ))
  49110. characterMakers.push(() => makeCharacter(
  49111. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49112. {
  49113. dressedFront: {
  49114. height: math.unit(5 + 8/12, "feet"),
  49115. weight: math.unit(125, "lb"),
  49116. name: "Dressed (Front)",
  49117. image: {
  49118. source: "./media/characters/jess/dressed-front.svg",
  49119. extra: 1176/1152,
  49120. bottom: 42/1218
  49121. }
  49122. },
  49123. dressedSide: {
  49124. height: math.unit(5 + 8/12, "feet"),
  49125. weight: math.unit(125, "lb"),
  49126. name: "Dressed (Side)",
  49127. image: {
  49128. source: "./media/characters/jess/dressed-side.svg",
  49129. extra: 1204/1190,
  49130. bottom: 6/1210
  49131. }
  49132. },
  49133. nudeFront: {
  49134. height: math.unit(5 + 8/12, "feet"),
  49135. weight: math.unit(125, "lb"),
  49136. name: "Nude (Front)",
  49137. image: {
  49138. source: "./media/characters/jess/nude-front.svg",
  49139. extra: 1176/1152,
  49140. bottom: 42/1218
  49141. }
  49142. },
  49143. nudeSide: {
  49144. height: math.unit(5 + 8/12, "feet"),
  49145. weight: math.unit(125, "lb"),
  49146. name: "Nude (Side)",
  49147. image: {
  49148. source: "./media/characters/jess/nude-side.svg",
  49149. extra: 1204/1190,
  49150. bottom: 6/1210
  49151. }
  49152. },
  49153. organsFront: {
  49154. height: math.unit(2.83799342105, "feet"),
  49155. name: "Organs (Front)",
  49156. image: {
  49157. source: "./media/characters/jess/organs-front.svg"
  49158. }
  49159. },
  49160. organsSide: {
  49161. height: math.unit(2.64225290474, "feet"),
  49162. name: "Organs (Side)",
  49163. image: {
  49164. source: "./media/characters/jess/organs-side.svg"
  49165. }
  49166. },
  49167. digestiveTractFront: {
  49168. height: math.unit(2.8106580871, "feet"),
  49169. name: "Digestive Tract (Front)",
  49170. image: {
  49171. source: "./media/characters/jess/digestive-tract-front.svg"
  49172. }
  49173. },
  49174. digestiveTractSide: {
  49175. height: math.unit(2.54365045014, "feet"),
  49176. name: "Digestive Tract (Side)",
  49177. image: {
  49178. source: "./media/characters/jess/digestive-tract-side.svg"
  49179. }
  49180. },
  49181. respiratorySystemFront: {
  49182. height: math.unit(1.11196233456, "feet"),
  49183. name: "Respiratory System (Front)",
  49184. image: {
  49185. source: "./media/characters/jess/respiratory-system-front.svg"
  49186. }
  49187. },
  49188. respiratorySystemSide: {
  49189. height: math.unit(0.89327966297, "feet"),
  49190. name: "Respiratory System (Side)",
  49191. image: {
  49192. source: "./media/characters/jess/respiratory-system-side.svg"
  49193. }
  49194. },
  49195. urinaryTractFront: {
  49196. height: math.unit(1.16126356186, "feet"),
  49197. name: "Urinary Tract (Front)",
  49198. image: {
  49199. source: "./media/characters/jess/urinary-tract-front.svg"
  49200. }
  49201. },
  49202. urinaryTractSide: {
  49203. height: math.unit(1.20910039627, "feet"),
  49204. name: "Urinary Tract (Side)",
  49205. image: {
  49206. source: "./media/characters/jess/urinary-tract-side.svg"
  49207. }
  49208. },
  49209. reproductiveOrgansFront: {
  49210. height: math.unit(0.48422591566, "feet"),
  49211. name: "Reproductive Organs (Front)",
  49212. image: {
  49213. source: "./media/characters/jess/reproductive-organs-front.svg"
  49214. }
  49215. },
  49216. reproductiveOrgansSide: {
  49217. height: math.unit(0.61553314481, "feet"),
  49218. name: "Reproductive Organs (Side)",
  49219. image: {
  49220. source: "./media/characters/jess/reproductive-organs-side.svg"
  49221. }
  49222. },
  49223. breastsFront: {
  49224. height: math.unit(0.47690395121, "feet"),
  49225. name: "Breasts (Front)",
  49226. image: {
  49227. source: "./media/characters/jess/breasts-front.svg"
  49228. }
  49229. },
  49230. breastsSide: {
  49231. height: math.unit(0.30556998307, "feet"),
  49232. name: "Breasts (Side)",
  49233. image: {
  49234. source: "./media/characters/jess/breasts-side.svg"
  49235. }
  49236. },
  49237. heartFront: {
  49238. height: math.unit(0.53011022622, "feet"),
  49239. name: "Heart (Front)",
  49240. image: {
  49241. source: "./media/characters/jess/heart-front.svg"
  49242. }
  49243. },
  49244. heartSide: {
  49245. height: math.unit(0.51790695213, "feet"),
  49246. name: "Heart (Side)",
  49247. image: {
  49248. source: "./media/characters/jess/heart-side.svg"
  49249. }
  49250. },
  49251. earsAndNoseFront: {
  49252. height: math.unit(0.29385483995, "feet"),
  49253. name: "Ears and Nose (Front)",
  49254. image: {
  49255. source: "./media/characters/jess/ears-and-nose-front.svg"
  49256. }
  49257. },
  49258. earsAndNoseSide: {
  49259. height: math.unit(0.18109658741, "feet"),
  49260. name: "Ears and Nose (Side)",
  49261. image: {
  49262. source: "./media/characters/jess/ears-and-nose-side.svg"
  49263. }
  49264. },
  49265. },
  49266. [
  49267. {
  49268. name: "Normal",
  49269. height: math.unit(5 + 8/12, "feet"),
  49270. default: true
  49271. },
  49272. ]
  49273. ))
  49274. characterMakers.push(() => makeCharacter(
  49275. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49276. {
  49277. front: {
  49278. height: math.unit(6, "feet"),
  49279. weight: math.unit(6.64467e-7, "grams"),
  49280. name: "Front",
  49281. image: {
  49282. source: "./media/characters/wimpering/front.svg",
  49283. extra: 597/587,
  49284. bottom: 34/631
  49285. }
  49286. },
  49287. },
  49288. [
  49289. {
  49290. name: "Micro",
  49291. height: math.unit(0.4, "mm"),
  49292. default: true
  49293. },
  49294. ]
  49295. ))
  49296. characterMakers.push(() => makeCharacter(
  49297. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49298. {
  49299. front: {
  49300. height: math.unit(5 + 2/12, "feet"),
  49301. weight: math.unit(110, "lb"),
  49302. name: "Front",
  49303. image: {
  49304. source: "./media/characters/keltre/front.svg",
  49305. extra: 1099/1057,
  49306. bottom: 22/1121
  49307. }
  49308. },
  49309. back: {
  49310. height: math.unit(5 + 2/12, "feet"),
  49311. weight: math.unit(110, "lb"),
  49312. name: "Back",
  49313. image: {
  49314. source: "./media/characters/keltre/back.svg",
  49315. extra: 1095/1053,
  49316. bottom: 17/1112
  49317. }
  49318. },
  49319. dressed: {
  49320. height: math.unit(5 + 2/12, "feet"),
  49321. weight: math.unit(110, "lb"),
  49322. name: "Dressed",
  49323. image: {
  49324. source: "./media/characters/keltre/dressed.svg",
  49325. extra: 1099/1057,
  49326. bottom: 22/1121
  49327. }
  49328. },
  49329. winter: {
  49330. height: math.unit(5 + 2/12, "feet"),
  49331. weight: math.unit(110, "lb"),
  49332. name: "Winter",
  49333. image: {
  49334. source: "./media/characters/keltre/winter.svg",
  49335. extra: 1099/1057,
  49336. bottom: 22/1121
  49337. }
  49338. },
  49339. head: {
  49340. height: math.unit(1.61 * 0.86, "feet"),
  49341. name: "Head",
  49342. image: {
  49343. source: "./media/characters/keltre/head.svg",
  49344. extra: 534/421,
  49345. bottom: 0/534
  49346. }
  49347. },
  49348. hand: {
  49349. height: math.unit(1.3 * 0.86, "feet"),
  49350. name: "Hand",
  49351. image: {
  49352. source: "./media/characters/keltre/hand.svg"
  49353. }
  49354. },
  49355. foot: {
  49356. height: math.unit(1.8 * 0.86, "feet"),
  49357. name: "Foot",
  49358. image: {
  49359. source: "./media/characters/keltre/foot.svg"
  49360. }
  49361. },
  49362. },
  49363. [
  49364. {
  49365. name: "Fine",
  49366. height: math.unit(1, "inch")
  49367. },
  49368. {
  49369. name: "Dimnutive",
  49370. height: math.unit(4, "inches")
  49371. },
  49372. {
  49373. name: "Tiny",
  49374. height: math.unit(1, "foot")
  49375. },
  49376. {
  49377. name: "Small",
  49378. height: math.unit(3, "feet")
  49379. },
  49380. {
  49381. name: "Normal",
  49382. height: math.unit(5 + 2/12, "feet"),
  49383. default: true
  49384. },
  49385. ]
  49386. ))
  49387. characterMakers.push(() => makeCharacter(
  49388. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49389. {
  49390. front: {
  49391. height: math.unit(6 + 2/12, "feet"),
  49392. name: "Front",
  49393. image: {
  49394. source: "./media/characters/nox/front.svg",
  49395. extra: 1917/1830,
  49396. bottom: 74/1991
  49397. }
  49398. },
  49399. back: {
  49400. height: math.unit(6 + 2/12, "feet"),
  49401. name: "Back",
  49402. image: {
  49403. source: "./media/characters/nox/back.svg",
  49404. extra: 1896/1815,
  49405. bottom: 21/1917
  49406. }
  49407. },
  49408. head: {
  49409. height: math.unit(1.1, "feet"),
  49410. name: "Head",
  49411. image: {
  49412. source: "./media/characters/nox/head.svg",
  49413. extra: 874/704,
  49414. bottom: 0/874
  49415. }
  49416. },
  49417. tattoo: {
  49418. height: math.unit(0.729, "feet"),
  49419. name: "Tattoo",
  49420. image: {
  49421. source: "./media/characters/nox/tattoo.svg"
  49422. }
  49423. },
  49424. },
  49425. [
  49426. {
  49427. name: "Normal",
  49428. height: math.unit(6 + 2/12, "feet")
  49429. },
  49430. {
  49431. name: "Gigamacro",
  49432. height: math.unit(2, "earths"),
  49433. default: true
  49434. },
  49435. {
  49436. name: "Cosmic",
  49437. height: math.unit(867, "yottameters")
  49438. },
  49439. ]
  49440. ))
  49441. characterMakers.push(() => makeCharacter(
  49442. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49443. {
  49444. front: {
  49445. height: math.unit(6, "feet"),
  49446. weight: math.unit(150, "lb"),
  49447. name: "Front",
  49448. image: {
  49449. source: "./media/characters/caspian/front.svg",
  49450. extra: 1443/1359,
  49451. bottom: 0/1443
  49452. }
  49453. },
  49454. back: {
  49455. height: math.unit(6, "feet"),
  49456. weight: math.unit(150, "lb"),
  49457. name: "Back",
  49458. image: {
  49459. source: "./media/characters/caspian/back.svg",
  49460. extra: 1379/1309,
  49461. bottom: 0/1379
  49462. }
  49463. },
  49464. head: {
  49465. height: math.unit(0.9, "feet"),
  49466. name: "Head",
  49467. image: {
  49468. source: "./media/characters/caspian/head.svg",
  49469. extra: 692/492,
  49470. bottom: 0/692
  49471. }
  49472. },
  49473. headAlt: {
  49474. height: math.unit(0.95, "feet"),
  49475. name: "Head (Alt)",
  49476. image: {
  49477. source: "./media/characters/caspian/head-alt.svg",
  49478. extra: 668/508,
  49479. bottom: 0/668
  49480. }
  49481. },
  49482. hand: {
  49483. height: math.unit(0.8, "feet"),
  49484. name: "Hand",
  49485. image: {
  49486. source: "./media/characters/caspian/hand.svg"
  49487. }
  49488. },
  49489. paw: {
  49490. height: math.unit(0.95, "feet"),
  49491. name: "Paw",
  49492. image: {
  49493. source: "./media/characters/caspian/paw.svg"
  49494. }
  49495. },
  49496. },
  49497. [
  49498. {
  49499. name: "Normal",
  49500. height: math.unit(162, "feet"),
  49501. default: true
  49502. },
  49503. ]
  49504. ))
  49505. characterMakers.push(() => makeCharacter(
  49506. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49507. {
  49508. front: {
  49509. height: math.unit(6, "feet"),
  49510. name: "Front",
  49511. image: {
  49512. source: "./media/characters/myra-aisling/front.svg",
  49513. extra: 1268/1166,
  49514. bottom: 73/1341
  49515. }
  49516. },
  49517. back: {
  49518. height: math.unit(6, "feet"),
  49519. name: "Back",
  49520. image: {
  49521. source: "./media/characters/myra-aisling/back.svg",
  49522. extra: 1249/1149,
  49523. bottom: 79/1328
  49524. }
  49525. },
  49526. dressed: {
  49527. height: math.unit(6, "feet"),
  49528. name: "Dressed",
  49529. image: {
  49530. source: "./media/characters/myra-aisling/dressed.svg",
  49531. extra: 1290/1189,
  49532. bottom: 47/1337
  49533. }
  49534. },
  49535. hand: {
  49536. height: math.unit(1.1, "feet"),
  49537. name: "Hand",
  49538. image: {
  49539. source: "./media/characters/myra-aisling/hand.svg"
  49540. }
  49541. },
  49542. paw: {
  49543. height: math.unit(1.23, "feet"),
  49544. name: "Paw",
  49545. image: {
  49546. source: "./media/characters/myra-aisling/paw.svg"
  49547. }
  49548. },
  49549. },
  49550. [
  49551. {
  49552. name: "Normal",
  49553. height: math.unit(160, "feet"),
  49554. default: true
  49555. },
  49556. ]
  49557. ))
  49558. characterMakers.push(() => makeCharacter(
  49559. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49560. {
  49561. front: {
  49562. height: math.unit(6, "feet"),
  49563. name: "Front",
  49564. image: {
  49565. source: "./media/characters/tenley-sidero/front.svg",
  49566. extra: 1365/1276,
  49567. bottom: 47/1412
  49568. }
  49569. },
  49570. back: {
  49571. height: math.unit(6, "feet"),
  49572. name: "Back",
  49573. image: {
  49574. source: "./media/characters/tenley-sidero/back.svg",
  49575. extra: 1383/1283,
  49576. bottom: 35/1418
  49577. }
  49578. },
  49579. dressed: {
  49580. height: math.unit(6, "feet"),
  49581. name: "Dressed",
  49582. image: {
  49583. source: "./media/characters/tenley-sidero/dressed.svg",
  49584. extra: 1364/1275,
  49585. bottom: 42/1406
  49586. }
  49587. },
  49588. head: {
  49589. height: math.unit(1.47, "feet"),
  49590. name: "Head",
  49591. image: {
  49592. source: "./media/characters/tenley-sidero/head.svg",
  49593. extra: 610/490,
  49594. bottom: 0/610
  49595. }
  49596. },
  49597. },
  49598. [
  49599. {
  49600. name: "Normal",
  49601. height: math.unit(154, "feet"),
  49602. default: true
  49603. },
  49604. ]
  49605. ))
  49606. characterMakers.push(() => makeCharacter(
  49607. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49608. {
  49609. front: {
  49610. height: math.unit(5, "inches"),
  49611. name: "Front",
  49612. image: {
  49613. source: "./media/characters/mallory/front.svg",
  49614. extra: 1919/1678,
  49615. bottom: 29/1948
  49616. }
  49617. },
  49618. hand: {
  49619. height: math.unit(0.73, "inches"),
  49620. name: "Hand",
  49621. image: {
  49622. source: "./media/characters/mallory/hand.svg"
  49623. }
  49624. },
  49625. paw: {
  49626. height: math.unit(0.68, "inches"),
  49627. name: "Paw",
  49628. image: {
  49629. source: "./media/characters/mallory/paw.svg"
  49630. }
  49631. },
  49632. },
  49633. [
  49634. {
  49635. name: "Small",
  49636. height: math.unit(5, "inches"),
  49637. default: true
  49638. },
  49639. ]
  49640. ))
  49641. characterMakers.push(() => makeCharacter(
  49642. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49643. {
  49644. naked: {
  49645. height: math.unit(6, "feet"),
  49646. name: "Naked",
  49647. image: {
  49648. source: "./media/characters/mab/naked.svg",
  49649. extra: 1855/1757,
  49650. bottom: 208/2063
  49651. }
  49652. },
  49653. outside: {
  49654. height: math.unit(6, "feet"),
  49655. name: "Outside",
  49656. image: {
  49657. source: "./media/characters/mab/outside.svg",
  49658. extra: 1855/1757,
  49659. bottom: 208/2063
  49660. }
  49661. },
  49662. party: {
  49663. height: math.unit(6, "feet"),
  49664. name: "Party",
  49665. image: {
  49666. source: "./media/characters/mab/party.svg",
  49667. extra: 1855/1757,
  49668. bottom: 208/2063
  49669. }
  49670. },
  49671. },
  49672. [
  49673. {
  49674. name: "Normal",
  49675. height: math.unit(165, "feet"),
  49676. default: true
  49677. },
  49678. ]
  49679. ))
  49680. characterMakers.push(() => makeCharacter(
  49681. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49682. {
  49683. feral: {
  49684. height: math.unit(12, "feet"),
  49685. weight: math.unit(20000, "lb"),
  49686. name: "Side",
  49687. image: {
  49688. source: "./media/characters/winter/feral.svg",
  49689. extra: 1286/943,
  49690. bottom: 112/1398
  49691. },
  49692. form: "feral",
  49693. default: true
  49694. },
  49695. feralNsfw: {
  49696. height: math.unit(12, "feet"),
  49697. weight: math.unit(20000, "lb"),
  49698. name: "Side (NSFW)",
  49699. image: {
  49700. source: "./media/characters/winter/feral-nsfw.svg",
  49701. extra: 1286/943,
  49702. bottom: 112/1398
  49703. },
  49704. form: "feral"
  49705. },
  49706. dick: {
  49707. height: math.unit(3.79, "feet"),
  49708. name: "Dick",
  49709. image: {
  49710. source: "./media/characters/winter/dick.svg"
  49711. },
  49712. form: "feral"
  49713. },
  49714. anthro: {
  49715. height: math.unit(12, "feet"),
  49716. weight: math.unit(10, "tons"),
  49717. name: "Anthro",
  49718. image: {
  49719. source: "./media/characters/winter/anthro.svg",
  49720. extra: 1701/1553,
  49721. bottom: 64/1765
  49722. },
  49723. form: "anthro",
  49724. default: true
  49725. },
  49726. },
  49727. [
  49728. {
  49729. name: "Big",
  49730. height: math.unit(12, "feet"),
  49731. default: true,
  49732. form: "feral"
  49733. },
  49734. {
  49735. name: "Big",
  49736. height: math.unit(12, "feet"),
  49737. default: true,
  49738. form: "anthro"
  49739. },
  49740. ],
  49741. {
  49742. "feral": {
  49743. name: "Feral",
  49744. default: true
  49745. },
  49746. "anthro": {
  49747. name: "Anthro"
  49748. }
  49749. }
  49750. ))
  49751. characterMakers.push(() => makeCharacter(
  49752. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49753. {
  49754. front: {
  49755. height: math.unit(4.1, "inches"),
  49756. name: "Front",
  49757. image: {
  49758. source: "./media/characters/alto/front.svg",
  49759. extra: 736/627,
  49760. bottom: 90/826
  49761. }
  49762. },
  49763. },
  49764. [
  49765. {
  49766. name: "Normal",
  49767. height: math.unit(4.1, "inches"),
  49768. default: true
  49769. },
  49770. ]
  49771. ))
  49772. characterMakers.push(() => makeCharacter(
  49773. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49774. {
  49775. sitting: {
  49776. height: math.unit(3, "feet"),
  49777. name: "Sitting",
  49778. image: {
  49779. source: "./media/characters/ratstrid-v/sitting.svg",
  49780. extra: 355/310,
  49781. bottom: 136/491
  49782. }
  49783. },
  49784. },
  49785. [
  49786. {
  49787. name: "Normal",
  49788. height: math.unit(3, "feet"),
  49789. default: true
  49790. },
  49791. ]
  49792. ))
  49793. characterMakers.push(() => makeCharacter(
  49794. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49795. {
  49796. back: {
  49797. height: math.unit(6, "feet"),
  49798. weight: math.unit(350, "lb"),
  49799. name: "Back",
  49800. image: {
  49801. source: "./media/characters/siz/back.svg",
  49802. extra: 1449/1274,
  49803. bottom: 13/1462
  49804. }
  49805. },
  49806. },
  49807. [
  49808. {
  49809. name: "Over-Overcompressed",
  49810. height: math.unit(8, "feet")
  49811. },
  49812. {
  49813. name: "Overcompressed",
  49814. height: math.unit(32, "feet")
  49815. },
  49816. {
  49817. name: "Compressed",
  49818. height: math.unit(128, "feet"),
  49819. default: true
  49820. },
  49821. {
  49822. name: "Half-Compressed",
  49823. height: math.unit(512, "feet")
  49824. },
  49825. {
  49826. name: "Quarter-Compressed",
  49827. height: math.unit(2048, "feet")
  49828. },
  49829. {
  49830. name: "Uncompressed?",
  49831. height: math.unit(8192, "feet")
  49832. },
  49833. ]
  49834. ))
  49835. characterMakers.push(() => makeCharacter(
  49836. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49837. {
  49838. front: {
  49839. height: math.unit(5 + 9/12, "feet"),
  49840. weight: math.unit(150, "lb"),
  49841. name: "Front",
  49842. image: {
  49843. source: "./media/characters/ven/front.svg",
  49844. extra: 1372/1320,
  49845. bottom: 73/1445
  49846. }
  49847. },
  49848. side: {
  49849. height: math.unit(5 + 9/12, "feet"),
  49850. weight: math.unit(1150, "lb"),
  49851. name: "Side",
  49852. image: {
  49853. source: "./media/characters/ven/side.svg",
  49854. extra: 1119/1070,
  49855. bottom: 42/1161
  49856. },
  49857. default: true
  49858. },
  49859. },
  49860. [
  49861. {
  49862. name: "Normal",
  49863. height: math.unit(5 + 9/12, "feet"),
  49864. default: true
  49865. },
  49866. ]
  49867. ))
  49868. characterMakers.push(() => makeCharacter(
  49869. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49870. {
  49871. front: {
  49872. height: math.unit(12, "feet"),
  49873. weight: math.unit(1000, "kg"),
  49874. name: "Front",
  49875. image: {
  49876. source: "./media/characters/maple/front.svg",
  49877. extra: 1193/1081,
  49878. bottom: 22/1215
  49879. }
  49880. },
  49881. },
  49882. [
  49883. {
  49884. name: "Compressed",
  49885. height: math.unit(7, "feet")
  49886. },
  49887. {
  49888. name: "Normal",
  49889. height: math.unit(12, "feet"),
  49890. default: true
  49891. },
  49892. ]
  49893. ))
  49894. characterMakers.push(() => makeCharacter(
  49895. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49896. {
  49897. front: {
  49898. height: math.unit(9, "feet"),
  49899. weight: math.unit(1500, "lb"),
  49900. name: "Front",
  49901. image: {
  49902. source: "./media/characters/nora/front.svg",
  49903. extra: 1348/1286,
  49904. bottom: 218/1566
  49905. }
  49906. },
  49907. erect: {
  49908. height: math.unit(9, "feet"),
  49909. weight: math.unit(11500, "lb"),
  49910. name: "Erect",
  49911. image: {
  49912. source: "./media/characters/nora/erect.svg",
  49913. extra: 1488/1433,
  49914. bottom: 133/1621
  49915. }
  49916. },
  49917. },
  49918. [
  49919. {
  49920. name: "Normal",
  49921. height: math.unit(9, "feet"),
  49922. default: true
  49923. },
  49924. ]
  49925. ))
  49926. characterMakers.push(() => makeCharacter(
  49927. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49928. {
  49929. front: {
  49930. height: math.unit(25, "feet"),
  49931. weight: math.unit(27500, "lb"),
  49932. name: "Front",
  49933. image: {
  49934. source: "./media/characters/north-caudin/front.svg",
  49935. extra: 1184/1082,
  49936. bottom: 23/1207
  49937. }
  49938. },
  49939. },
  49940. [
  49941. {
  49942. name: "Compressed",
  49943. height: math.unit(10, "feet")
  49944. },
  49945. {
  49946. name: "Normal",
  49947. height: math.unit(25, "feet"),
  49948. default: true
  49949. },
  49950. ]
  49951. ))
  49952. characterMakers.push(() => makeCharacter(
  49953. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49954. {
  49955. front: {
  49956. height: math.unit(9, "feet"),
  49957. weight: math.unit(1250, "lb"),
  49958. name: "Front",
  49959. image: {
  49960. source: "./media/characters/merrian/front.svg",
  49961. extra: 2393/2304,
  49962. bottom: 40/2433
  49963. }
  49964. },
  49965. },
  49966. [
  49967. {
  49968. name: "Normal",
  49969. height: math.unit(9, "feet"),
  49970. default: true
  49971. },
  49972. ]
  49973. ))
  49974. characterMakers.push(() => makeCharacter(
  49975. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49976. {
  49977. front: {
  49978. height: math.unit(9, "feet"),
  49979. weight: math.unit(1000, "lb"),
  49980. name: "Front",
  49981. image: {
  49982. source: "./media/characters/hazel/front.svg",
  49983. extra: 2351/2298,
  49984. bottom: 38/2389
  49985. }
  49986. },
  49987. },
  49988. [
  49989. {
  49990. name: "Normal",
  49991. height: math.unit(9, "feet"),
  49992. default: true
  49993. },
  49994. ]
  49995. ))
  49996. characterMakers.push(() => makeCharacter(
  49997. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49998. {
  49999. front: {
  50000. height: math.unit(13, "feet"),
  50001. weight: math.unit(3200, "lb"),
  50002. name: "Front",
  50003. image: {
  50004. source: "./media/characters/emma/front.svg",
  50005. extra: 2263/2029,
  50006. bottom: 68/2331
  50007. }
  50008. },
  50009. },
  50010. [
  50011. {
  50012. name: "Normal",
  50013. height: math.unit(13, "feet"),
  50014. default: true
  50015. },
  50016. ]
  50017. ))
  50018. characterMakers.push(() => makeCharacter(
  50019. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50020. {
  50021. front: {
  50022. height: math.unit(11 + 9/12, "feet"),
  50023. weight: math.unit(2500, "lb"),
  50024. name: "Front",
  50025. image: {
  50026. source: "./media/characters/ilumina/front.svg",
  50027. extra: 2248/2209,
  50028. bottom: 164/2412
  50029. }
  50030. },
  50031. },
  50032. [
  50033. {
  50034. name: "Normal",
  50035. height: math.unit(11 + 9/12, "feet"),
  50036. default: true
  50037. },
  50038. ]
  50039. ))
  50040. characterMakers.push(() => makeCharacter(
  50041. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50042. {
  50043. front: {
  50044. height: math.unit(8 + 10/12, "feet"),
  50045. weight: math.unit(1350, "lb"),
  50046. name: "Front",
  50047. image: {
  50048. source: "./media/characters/moonshine/front.svg",
  50049. extra: 2395/2288,
  50050. bottom: 40/2435
  50051. }
  50052. },
  50053. },
  50054. [
  50055. {
  50056. name: "Normal",
  50057. height: math.unit(8 + 10/12, "feet"),
  50058. default: true
  50059. },
  50060. ]
  50061. ))
  50062. characterMakers.push(() => makeCharacter(
  50063. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50064. {
  50065. front: {
  50066. height: math.unit(14, "feet"),
  50067. weight: math.unit(3400, "lb"),
  50068. name: "Front",
  50069. image: {
  50070. source: "./media/characters/aletia/front.svg",
  50071. extra: 1185/1052,
  50072. bottom: 21/1206
  50073. }
  50074. },
  50075. },
  50076. [
  50077. {
  50078. name: "Compressed",
  50079. height: math.unit(8, "feet")
  50080. },
  50081. {
  50082. name: "Normal",
  50083. height: math.unit(14, "feet"),
  50084. default: true
  50085. },
  50086. ]
  50087. ))
  50088. characterMakers.push(() => makeCharacter(
  50089. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50090. {
  50091. front: {
  50092. height: math.unit(17, "feet"),
  50093. weight: math.unit(6500, "lb"),
  50094. name: "Front",
  50095. image: {
  50096. source: "./media/characters/deidra/front.svg",
  50097. extra: 1201/1081,
  50098. bottom: 16/1217
  50099. }
  50100. },
  50101. },
  50102. [
  50103. {
  50104. name: "Compressed",
  50105. height: math.unit(9 + 6/12, "feet")
  50106. },
  50107. {
  50108. name: "Normal",
  50109. height: math.unit(17, "feet"),
  50110. default: true
  50111. },
  50112. ]
  50113. ))
  50114. characterMakers.push(() => makeCharacter(
  50115. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50116. {
  50117. front: {
  50118. height: math.unit(7 + 4/12, "feet"),
  50119. weight: math.unit(280, "lb"),
  50120. name: "Front",
  50121. image: {
  50122. source: "./media/characters/freki-yrmori/front.svg",
  50123. extra: 1286/1182,
  50124. bottom: 29/1315
  50125. }
  50126. },
  50127. maw: {
  50128. height: math.unit(0.9, "feet"),
  50129. name: "Maw",
  50130. image: {
  50131. source: "./media/characters/freki-yrmori/maw.svg"
  50132. }
  50133. },
  50134. },
  50135. [
  50136. {
  50137. name: "Normal",
  50138. height: math.unit(7 + 4/12, "feet"),
  50139. default: true
  50140. },
  50141. {
  50142. name: "Macro",
  50143. height: math.unit(38.5, "meters")
  50144. },
  50145. ]
  50146. ))
  50147. characterMakers.push(() => makeCharacter(
  50148. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50149. {
  50150. side: {
  50151. height: math.unit(47.2, "meters"),
  50152. weight: math.unit(10000, "tons"),
  50153. name: "Side",
  50154. image: {
  50155. source: "./media/characters/aetherios/side.svg",
  50156. extra: 2363/642,
  50157. bottom: 221/2584
  50158. }
  50159. },
  50160. top: {
  50161. height: math.unit(240, "meters"),
  50162. weight: math.unit(10000, "tons"),
  50163. name: "Top",
  50164. image: {
  50165. source: "./media/characters/aetherios/top.svg"
  50166. }
  50167. },
  50168. bottom: {
  50169. height: math.unit(240, "meters"),
  50170. weight: math.unit(10000, "tons"),
  50171. name: "Bottom",
  50172. image: {
  50173. source: "./media/characters/aetherios/bottom.svg"
  50174. }
  50175. },
  50176. head: {
  50177. height: math.unit(38.6, "meters"),
  50178. name: "Head",
  50179. image: {
  50180. source: "./media/characters/aetherios/head.svg",
  50181. extra: 1335/1112,
  50182. bottom: 0/1335
  50183. }
  50184. },
  50185. front: {
  50186. height: math.unit(29, "meters"),
  50187. name: "Front",
  50188. image: {
  50189. source: "./media/characters/aetherios/front.svg",
  50190. extra: 1266/953,
  50191. bottom: 158/1424
  50192. }
  50193. },
  50194. maw: {
  50195. height: math.unit(16.37, "meters"),
  50196. name: "Maw",
  50197. image: {
  50198. source: "./media/characters/aetherios/maw.svg",
  50199. extra: 748/637,
  50200. bottom: 0/748
  50201. },
  50202. extraAttributes: {
  50203. preyCapacity: {
  50204. name: "Capacity",
  50205. power: 3,
  50206. type: "volume",
  50207. base: math.unit(1000, "people")
  50208. },
  50209. tongueSize: {
  50210. name: "Tongue Size",
  50211. power: 2,
  50212. type: "area",
  50213. base: math.unit(21, "m^2")
  50214. }
  50215. }
  50216. },
  50217. forepaw: {
  50218. height: math.unit(18, "meters"),
  50219. name: "Forepaw",
  50220. image: {
  50221. source: "./media/characters/aetherios/forepaw.svg"
  50222. }
  50223. },
  50224. hindpaw: {
  50225. height: math.unit(23, "meters"),
  50226. name: "Hindpaw",
  50227. image: {
  50228. source: "./media/characters/aetherios/hindpaw.svg"
  50229. }
  50230. },
  50231. genitals: {
  50232. height: math.unit(42, "meters"),
  50233. name: "Genitals",
  50234. image: {
  50235. source: "./media/characters/aetherios/genitals.svg"
  50236. }
  50237. },
  50238. },
  50239. [
  50240. {
  50241. name: "Normal",
  50242. height: math.unit(47.2, "meters"),
  50243. default: true
  50244. },
  50245. {
  50246. name: "Macro",
  50247. height: math.unit(160, "meters")
  50248. },
  50249. {
  50250. name: "Mega",
  50251. height: math.unit(1.87, "km")
  50252. },
  50253. {
  50254. name: "Giga",
  50255. height: math.unit(40000, "km")
  50256. },
  50257. {
  50258. name: "Stellar",
  50259. height: math.unit(158000000, "km")
  50260. },
  50261. {
  50262. name: "Cosmic",
  50263. height: math.unit(9.46e12, "km")
  50264. },
  50265. ]
  50266. ))
  50267. characterMakers.push(() => makeCharacter(
  50268. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50269. {
  50270. front: {
  50271. height: math.unit(5 + 4/12, "feet"),
  50272. weight: math.unit(80, "lb"),
  50273. name: "Front",
  50274. image: {
  50275. source: "./media/characters/mizu-gieeg/front.svg",
  50276. extra: 850/709,
  50277. bottom: 52/902
  50278. }
  50279. },
  50280. back: {
  50281. height: math.unit(5 + 4/12, "feet"),
  50282. weight: math.unit(80, "lb"),
  50283. name: "Back",
  50284. image: {
  50285. source: "./media/characters/mizu-gieeg/back.svg",
  50286. extra: 882/745,
  50287. bottom: 25/907
  50288. }
  50289. },
  50290. },
  50291. [
  50292. {
  50293. name: "Normal",
  50294. height: math.unit(5 + 4/12, "feet"),
  50295. default: true
  50296. },
  50297. ]
  50298. ))
  50299. characterMakers.push(() => makeCharacter(
  50300. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50301. {
  50302. front: {
  50303. height: math.unit(6, "feet"),
  50304. name: "Front",
  50305. image: {
  50306. source: "./media/characters/roselle-st-papier/front.svg",
  50307. extra: 1430/1280,
  50308. bottom: 37/1467
  50309. }
  50310. },
  50311. back: {
  50312. height: math.unit(6, "feet"),
  50313. name: "Back",
  50314. image: {
  50315. source: "./media/characters/roselle-st-papier/back.svg",
  50316. extra: 1491/1296,
  50317. bottom: 23/1514
  50318. }
  50319. },
  50320. ear: {
  50321. height: math.unit(1.26, "feet"),
  50322. name: "Ear",
  50323. image: {
  50324. source: "./media/characters/roselle-st-papier/ear.svg"
  50325. }
  50326. },
  50327. },
  50328. [
  50329. {
  50330. name: "Normal",
  50331. height: math.unit(150, "feet"),
  50332. default: true
  50333. },
  50334. ]
  50335. ))
  50336. characterMakers.push(() => makeCharacter(
  50337. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50338. {
  50339. front: {
  50340. height: math.unit(1, "inches"),
  50341. name: "Front",
  50342. image: {
  50343. source: "./media/characters/valargent/front.svg",
  50344. extra: 1825/1694,
  50345. bottom: 62/1887
  50346. }
  50347. },
  50348. back: {
  50349. height: math.unit(1, "inches"),
  50350. name: "Back",
  50351. image: {
  50352. source: "./media/characters/valargent/back.svg",
  50353. extra: 1775/1682,
  50354. bottom: 88/1863
  50355. }
  50356. },
  50357. },
  50358. [
  50359. {
  50360. name: "Micro",
  50361. height: math.unit(1, "inch"),
  50362. default: true
  50363. },
  50364. ]
  50365. ))
  50366. characterMakers.push(() => makeCharacter(
  50367. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50368. {
  50369. front: {
  50370. height: math.unit(3.4, "meters"),
  50371. name: "Front",
  50372. image: {
  50373. source: "./media/characters/zarina/front.svg",
  50374. extra: 1733/1425,
  50375. bottom: 93/1826
  50376. }
  50377. },
  50378. squatting: {
  50379. height: math.unit(2.14, "meters"),
  50380. name: "Squatting",
  50381. image: {
  50382. source: "./media/characters/zarina/squatting.svg",
  50383. extra: 1073/788,
  50384. bottom: 63/1136
  50385. }
  50386. },
  50387. back: {
  50388. height: math.unit(2.14, "meters"),
  50389. name: "Back",
  50390. image: {
  50391. source: "./media/characters/zarina/back.svg",
  50392. extra: 1128/885,
  50393. bottom: 0/1128
  50394. }
  50395. },
  50396. },
  50397. [
  50398. {
  50399. name: "Normal",
  50400. height: math.unit(3.4, "meters"),
  50401. default: true
  50402. },
  50403. {
  50404. name: "Big",
  50405. height: math.unit(5, "meters")
  50406. },
  50407. {
  50408. name: "Macro",
  50409. height: math.unit(110, "meters")
  50410. },
  50411. ]
  50412. ))
  50413. characterMakers.push(() => makeCharacter(
  50414. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50415. {
  50416. front: {
  50417. height: math.unit(7, "feet"),
  50418. name: "Front",
  50419. image: {
  50420. source: "./media/characters/ventus-astro-fox/front.svg",
  50421. extra: 1792/1623,
  50422. bottom: 28/1820
  50423. }
  50424. },
  50425. back: {
  50426. height: math.unit(7, "feet"),
  50427. name: "Back",
  50428. image: {
  50429. source: "./media/characters/ventus-astro-fox/back.svg",
  50430. extra: 1789/1620,
  50431. bottom: 31/1820
  50432. }
  50433. },
  50434. outfit: {
  50435. height: math.unit(7, "feet"),
  50436. name: "Outfit",
  50437. image: {
  50438. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50439. extra: 1054/925,
  50440. bottom: 15/1069
  50441. }
  50442. },
  50443. head: {
  50444. height: math.unit(1.12, "feet"),
  50445. name: "Head",
  50446. image: {
  50447. source: "./media/characters/ventus-astro-fox/head.svg",
  50448. extra: 866/504,
  50449. bottom: 0/866
  50450. }
  50451. },
  50452. hand: {
  50453. height: math.unit(1, "feet"),
  50454. name: "Hand",
  50455. image: {
  50456. source: "./media/characters/ventus-astro-fox/hand.svg"
  50457. }
  50458. },
  50459. paw: {
  50460. height: math.unit(1.5, "feet"),
  50461. name: "Paw",
  50462. image: {
  50463. source: "./media/characters/ventus-astro-fox/paw.svg"
  50464. }
  50465. },
  50466. },
  50467. [
  50468. {
  50469. name: "Normal",
  50470. height: math.unit(7, "feet"),
  50471. default: true
  50472. },
  50473. {
  50474. name: "Macro",
  50475. height: math.unit(200, "feet")
  50476. },
  50477. {
  50478. name: "Cosmic",
  50479. height: math.unit(3, "universes")
  50480. },
  50481. ]
  50482. ))
  50483. characterMakers.push(() => makeCharacter(
  50484. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50485. {
  50486. front: {
  50487. height: math.unit(3, "meters"),
  50488. weight: math.unit(7000, "lb"),
  50489. name: "Front",
  50490. image: {
  50491. source: "./media/characters/core-t/front.svg",
  50492. extra: 5729/4941,
  50493. bottom: 1129/6858
  50494. }
  50495. },
  50496. },
  50497. [
  50498. {
  50499. name: "Big",
  50500. height: math.unit(3, "meters"),
  50501. default: true
  50502. },
  50503. ]
  50504. ))
  50505. characterMakers.push(() => makeCharacter(
  50506. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50507. {
  50508. normal: {
  50509. height: math.unit(6 + 6/12, "feet"),
  50510. weight: math.unit(275, "lb"),
  50511. name: "Front",
  50512. image: {
  50513. source: "./media/characters/cadbunny/normal.svg",
  50514. extra: 1129/947,
  50515. bottom: 93/1222
  50516. },
  50517. default: true,
  50518. form: "normal"
  50519. },
  50520. gigantamax: {
  50521. height: math.unit(26, "feet"),
  50522. weight: math.unit(16000, "lb"),
  50523. name: "Front",
  50524. image: {
  50525. source: "./media/characters/cadbunny/gigantamax.svg",
  50526. extra: 1133/944,
  50527. bottom: 90/1223
  50528. },
  50529. default: true,
  50530. form: "gigantamax"
  50531. },
  50532. },
  50533. [
  50534. {
  50535. name: "Normal",
  50536. height: math.unit(6 + 6/12, "feet"),
  50537. default: true,
  50538. form: "normal"
  50539. },
  50540. {
  50541. name: "Small",
  50542. height: math.unit(26, "feet"),
  50543. default: true,
  50544. form: "gigantamax"
  50545. },
  50546. {
  50547. name: "Large",
  50548. height: math.unit(78, "feet"),
  50549. form: "gigantamax"
  50550. },
  50551. ],
  50552. {
  50553. "normal": {
  50554. name: "Normal",
  50555. default: true
  50556. },
  50557. "gigantamax": {
  50558. name: "Gigantamax"
  50559. }
  50560. }
  50561. ))
  50562. characterMakers.push(() => makeCharacter(
  50563. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50564. {
  50565. anthroFront: {
  50566. height: math.unit(8, "feet"),
  50567. weight: math.unit(300, "lb"),
  50568. name: "Front",
  50569. image: {
  50570. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50571. extra: 1272/1176,
  50572. bottom: 53/1325
  50573. },
  50574. form: "anthro",
  50575. default: true
  50576. },
  50577. feralSide: {
  50578. height: math.unit(4, "feet"),
  50579. weight: math.unit(250, "lb"),
  50580. name: "Side",
  50581. image: {
  50582. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50583. extra: 731/621,
  50584. bottom: 0/731
  50585. },
  50586. form: "feral",
  50587. default: true
  50588. },
  50589. },
  50590. [
  50591. {
  50592. name: "Regular",
  50593. height: math.unit(8, "feet"),
  50594. form: "anthro"
  50595. },
  50596. {
  50597. name: "Macro",
  50598. height: math.unit(250, "feet"),
  50599. form: "anthro",
  50600. default: true
  50601. },
  50602. {
  50603. name: "Regular",
  50604. height: math.unit(4, "feet"),
  50605. form: "feral"
  50606. },
  50607. {
  50608. name: "Macro",
  50609. height: math.unit(125, "feet"),
  50610. form: "feral",
  50611. default: true
  50612. },
  50613. ],
  50614. {
  50615. "anthro": {
  50616. name: "Anthro",
  50617. default: true
  50618. },
  50619. "feral": {
  50620. name: "Feral",
  50621. },
  50622. }
  50623. ))
  50624. characterMakers.push(() => makeCharacter(
  50625. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50626. {
  50627. front: {
  50628. height: math.unit(11 + 10/12, "feet"),
  50629. weight: math.unit(1587, "kg"),
  50630. name: "Front",
  50631. image: {
  50632. source: "./media/characters/maple-javira-dragon/front.svg",
  50633. extra: 1136/744,
  50634. bottom: 73/1209
  50635. }
  50636. },
  50637. side: {
  50638. height: math.unit(11 + 10/12, "feet"),
  50639. weight: math.unit(1587, "kg"),
  50640. name: "Side",
  50641. image: {
  50642. source: "./media/characters/maple-javira-dragon/side.svg",
  50643. extra: 712/505,
  50644. bottom: 17/729
  50645. }
  50646. },
  50647. head: {
  50648. height: math.unit(8.05, "feet"),
  50649. name: "Head",
  50650. image: {
  50651. source: "./media/characters/maple-javira-dragon/head.svg",
  50652. extra: 1420/1344,
  50653. bottom: 0/1420
  50654. }
  50655. },
  50656. },
  50657. [
  50658. {
  50659. name: "Normal",
  50660. height: math.unit(11 + 10/12, "feet"),
  50661. default: true
  50662. },
  50663. ]
  50664. ))
  50665. characterMakers.push(() => makeCharacter(
  50666. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50667. {
  50668. front: {
  50669. height: math.unit(117, "cm"),
  50670. weight: math.unit(50, "kg"),
  50671. name: "Front",
  50672. image: {
  50673. source: "./media/characters/sonia-wyverntail/front.svg",
  50674. extra: 708/592,
  50675. bottom: 25/733
  50676. }
  50677. },
  50678. },
  50679. [
  50680. {
  50681. name: "Normal",
  50682. height: math.unit(117, "cm"),
  50683. default: true
  50684. },
  50685. ]
  50686. ))
  50687. characterMakers.push(() => makeCharacter(
  50688. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50689. {
  50690. front: {
  50691. height: math.unit(6 + 5/12, "feet"),
  50692. name: "Front",
  50693. image: {
  50694. source: "./media/characters/micah/front.svg",
  50695. extra: 1758/1546,
  50696. bottom: 214/1972
  50697. }
  50698. },
  50699. },
  50700. [
  50701. {
  50702. name: "Normal",
  50703. height: math.unit(6 + 5/12, "feet"),
  50704. default: true
  50705. },
  50706. ]
  50707. ))
  50708. characterMakers.push(() => makeCharacter(
  50709. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50710. {
  50711. front: {
  50712. height: math.unit(5 + 10/12, "feet"),
  50713. weight: math.unit(220, "lb"),
  50714. name: "Front",
  50715. image: {
  50716. source: "./media/characters/zarya/front.svg",
  50717. extra: 593/572,
  50718. bottom: 50/643
  50719. }
  50720. },
  50721. back: {
  50722. height: math.unit(5 + 10/12, "feet"),
  50723. weight: math.unit(220, "lb"),
  50724. name: "Back",
  50725. image: {
  50726. source: "./media/characters/zarya/back.svg",
  50727. extra: 603/582,
  50728. bottom: 38/641
  50729. }
  50730. },
  50731. },
  50732. [
  50733. {
  50734. name: "Normal",
  50735. height: math.unit(5 + 10/12, "feet"),
  50736. default: true
  50737. },
  50738. ]
  50739. ))
  50740. characterMakers.push(() => makeCharacter(
  50741. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50742. {
  50743. front: {
  50744. height: math.unit(7.5, "feet"),
  50745. name: "Front",
  50746. image: {
  50747. source: "./media/characters/sven-hatisson/front.svg",
  50748. extra: 917/857,
  50749. bottom: 42/959
  50750. }
  50751. },
  50752. back: {
  50753. height: math.unit(7.5, "feet"),
  50754. name: "Back",
  50755. image: {
  50756. source: "./media/characters/sven-hatisson/back.svg",
  50757. extra: 903/856,
  50758. bottom: 15/918
  50759. }
  50760. },
  50761. },
  50762. [
  50763. {
  50764. name: "Base Height",
  50765. height: math.unit(7.5, "feet")
  50766. },
  50767. {
  50768. name: "Usual Height",
  50769. height: math.unit(13.5, "feet"),
  50770. default: true
  50771. },
  50772. {
  50773. name: "Smaller Macro",
  50774. height: math.unit(85, "feet")
  50775. },
  50776. {
  50777. name: "Moderate Macro",
  50778. height: math.unit(320, "feet")
  50779. },
  50780. {
  50781. name: "Large Macro",
  50782. height: math.unit(1000, "feet")
  50783. },
  50784. {
  50785. name: "Largest Size",
  50786. height: math.unit(2, "miles")
  50787. },
  50788. ]
  50789. ))
  50790. characterMakers.push(() => makeCharacter(
  50791. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50792. {
  50793. side: {
  50794. height: math.unit(1.8, "meters"),
  50795. weight: math.unit(275, "kg"),
  50796. name: "Side",
  50797. image: {
  50798. source: "./media/characters/terra/side.svg",
  50799. extra: 1273/1147,
  50800. bottom: 0/1273
  50801. }
  50802. },
  50803. },
  50804. [
  50805. {
  50806. name: "Normal",
  50807. height: math.unit(16.2, "meters"),
  50808. default: true
  50809. },
  50810. ]
  50811. ))
  50812. characterMakers.push(() => makeCharacter(
  50813. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50814. {
  50815. borzoiFront: {
  50816. height: math.unit(6 + 9/12, "feet"),
  50817. name: "Front",
  50818. image: {
  50819. source: "./media/characters/rae/borzoi-front.svg",
  50820. extra: 1161/1098,
  50821. bottom: 31/1192
  50822. },
  50823. form: "borzoi",
  50824. default: true
  50825. },
  50826. werewolfFront: {
  50827. height: math.unit(8 + 7/12, "feet"),
  50828. name: "Front",
  50829. image: {
  50830. source: "./media/characters/rae/werewolf-front.svg",
  50831. extra: 1411/1334,
  50832. bottom: 127/1538
  50833. },
  50834. form: "werewolf",
  50835. default: true
  50836. },
  50837. },
  50838. [
  50839. {
  50840. name: "Normal",
  50841. height: math.unit(6 + 9/12, "feet"),
  50842. default: true,
  50843. form: "borzoi"
  50844. },
  50845. {
  50846. name: "Normal",
  50847. height: math.unit(8 + 7/12, "feet"),
  50848. default: true,
  50849. form: "werewolf"
  50850. },
  50851. ],
  50852. {
  50853. "borzoi": {
  50854. name: "Borzoi",
  50855. default: true
  50856. },
  50857. "werewolf": {
  50858. name: "Werewolf",
  50859. },
  50860. }
  50861. ))
  50862. characterMakers.push(() => makeCharacter(
  50863. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50864. {
  50865. front: {
  50866. height: math.unit(8 + 7/12, "feet"),
  50867. weight: math.unit(482, "lb"),
  50868. name: "Front",
  50869. image: {
  50870. source: "./media/characters/kit/front.svg",
  50871. extra: 1247/1103,
  50872. bottom: 41/1288
  50873. }
  50874. },
  50875. back: {
  50876. height: math.unit(8 + 7/12, "feet"),
  50877. weight: math.unit(482, "lb"),
  50878. name: "Back",
  50879. image: {
  50880. source: "./media/characters/kit/back.svg",
  50881. extra: 1252/1123,
  50882. bottom: 21/1273
  50883. }
  50884. },
  50885. paw: {
  50886. height: math.unit(1.46, "feet"),
  50887. name: "Paw",
  50888. image: {
  50889. source: "./media/characters/kit/paw.svg"
  50890. }
  50891. },
  50892. },
  50893. [
  50894. {
  50895. name: "Normal",
  50896. height: math.unit(2.61, "meters"),
  50897. default: true
  50898. },
  50899. {
  50900. name: "\"Tall\"",
  50901. height: math.unit(8.21, "meters")
  50902. },
  50903. {
  50904. name: "Tall",
  50905. height: math.unit(19.6, "meters")
  50906. },
  50907. {
  50908. name: "Very Tall",
  50909. height: math.unit(57.91, "meters")
  50910. },
  50911. {
  50912. name: "Semi-Macro",
  50913. height: math.unit(138.64, "meters")
  50914. },
  50915. {
  50916. name: "Macro",
  50917. height: math.unit(831.99, "meters")
  50918. },
  50919. {
  50920. name: "EX-Macro",
  50921. height: math.unit(96451121, "meters")
  50922. },
  50923. {
  50924. name: "S1-Omnipotent",
  50925. height: math.unit(4.42074e+9, "meters")
  50926. },
  50927. {
  50928. name: "S2-Omnipotent",
  50929. height: math.unit(9.42074e+17, "meters")
  50930. },
  50931. {
  50932. name: "Omnipotent",
  50933. height: math.unit(4.23112e+24, "meters")
  50934. },
  50935. {
  50936. name: "Hypergod",
  50937. height: math.unit(5.05176e+27, "meters")
  50938. },
  50939. {
  50940. name: "Hypergod-EX",
  50941. height: math.unit(9.45532e+49, "meters")
  50942. },
  50943. {
  50944. name: "Hypergod-SP",
  50945. height: math.unit(9.45532e+195, "meters")
  50946. },
  50947. ]
  50948. ))
  50949. characterMakers.push(() => makeCharacter(
  50950. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50951. {
  50952. side: {
  50953. height: math.unit(0.6, "meters"),
  50954. weight: math.unit(24, "kg"),
  50955. name: "Side",
  50956. image: {
  50957. source: "./media/characters/celeste/side.svg",
  50958. extra: 810/517,
  50959. bottom: 53/863
  50960. }
  50961. },
  50962. },
  50963. [
  50964. {
  50965. name: "Velociraptor",
  50966. height: math.unit(0.6, "meters"),
  50967. default: true
  50968. },
  50969. {
  50970. name: "Utahraptor",
  50971. height: math.unit(1.8, "meters")
  50972. },
  50973. {
  50974. name: "Gallimimus",
  50975. height: math.unit(4.0, "meters")
  50976. },
  50977. {
  50978. name: "Large",
  50979. height: math.unit(20, "meters")
  50980. },
  50981. {
  50982. name: "Planetary",
  50983. height: math.unit(50, "megameters")
  50984. },
  50985. {
  50986. name: "Stellar",
  50987. height: math.unit(1.5, "gigameters")
  50988. },
  50989. {
  50990. name: "Galactic",
  50991. height: math.unit(100, "exameters")
  50992. },
  50993. ]
  50994. ))
  50995. characterMakers.push(() => makeCharacter(
  50996. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50997. {
  50998. front: {
  50999. height: math.unit(6, "feet"),
  51000. weight: math.unit(210, "lb"),
  51001. name: "Front",
  51002. image: {
  51003. source: "./media/characters/glacia/front.svg",
  51004. extra: 958/901,
  51005. bottom: 45/1003
  51006. }
  51007. },
  51008. },
  51009. [
  51010. {
  51011. name: "Macro",
  51012. height: math.unit(1000, "meters"),
  51013. default: true
  51014. },
  51015. ]
  51016. ))
  51017. characterMakers.push(() => makeCharacter(
  51018. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51019. {
  51020. front: {
  51021. height: math.unit(4, "meters"),
  51022. name: "Front",
  51023. image: {
  51024. source: "./media/characters/giri/front.svg",
  51025. extra: 966/894,
  51026. bottom: 21/987
  51027. }
  51028. },
  51029. },
  51030. [
  51031. {
  51032. name: "Normal",
  51033. height: math.unit(4, "meters"),
  51034. default: true
  51035. },
  51036. ]
  51037. ))
  51038. characterMakers.push(() => makeCharacter(
  51039. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51040. {
  51041. back: {
  51042. height: math.unit(4, "feet"),
  51043. weight: math.unit(37, "lb"),
  51044. name: "Back",
  51045. image: {
  51046. source: "./media/characters/tin/back.svg",
  51047. extra: 845/780,
  51048. bottom: 28/873
  51049. }
  51050. },
  51051. },
  51052. [
  51053. {
  51054. name: "Normal",
  51055. height: math.unit(4, "feet"),
  51056. default: true
  51057. },
  51058. ]
  51059. ))
  51060. characterMakers.push(() => makeCharacter(
  51061. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51062. {
  51063. front: {
  51064. height: math.unit(25, "feet"),
  51065. name: "Front",
  51066. image: {
  51067. source: "./media/characters/cadenza-vivace/front.svg",
  51068. extra: 1842/1578,
  51069. bottom: 30/1872
  51070. }
  51071. },
  51072. },
  51073. [
  51074. {
  51075. name: "Macro",
  51076. height: math.unit(25, "feet"),
  51077. default: true
  51078. },
  51079. ]
  51080. ))
  51081. characterMakers.push(() => makeCharacter(
  51082. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51083. {
  51084. front: {
  51085. height: math.unit(10, "feet"),
  51086. weight: math.unit(625, "kg"),
  51087. name: "Front",
  51088. image: {
  51089. source: "./media/characters/zain/front.svg",
  51090. extra: 1682/1498,
  51091. bottom: 223/1905
  51092. }
  51093. },
  51094. back: {
  51095. height: math.unit(10, "feet"),
  51096. weight: math.unit(625, "kg"),
  51097. name: "Back",
  51098. image: {
  51099. source: "./media/characters/zain/back.svg",
  51100. extra: 1814/1657,
  51101. bottom: 152/1966
  51102. }
  51103. },
  51104. head: {
  51105. height: math.unit(10, "feet"),
  51106. weight: math.unit(625, "kg"),
  51107. name: "Head",
  51108. image: {
  51109. source: "./media/characters/zain/head.svg",
  51110. extra: 1059/762,
  51111. bottom: 0/1059
  51112. }
  51113. },
  51114. },
  51115. [
  51116. {
  51117. name: "Normal",
  51118. height: math.unit(10, "feet"),
  51119. default: true
  51120. },
  51121. ]
  51122. ))
  51123. characterMakers.push(() => makeCharacter(
  51124. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51125. {
  51126. front: {
  51127. height: math.unit(6 + 5/12, "feet"),
  51128. weight: math.unit(750, "lb"),
  51129. name: "Front",
  51130. image: {
  51131. source: "./media/characters/ruchex/front.svg",
  51132. extra: 877/820,
  51133. bottom: 17/894
  51134. },
  51135. extraAttributes: {
  51136. "width": {
  51137. name: "Width",
  51138. power: 1,
  51139. type: "length",
  51140. base: math.unit(4.757, "feet")
  51141. },
  51142. }
  51143. },
  51144. },
  51145. [
  51146. {
  51147. name: "Normal",
  51148. height: math.unit(6 + 5/12, "feet"),
  51149. default: true
  51150. },
  51151. ]
  51152. ))
  51153. characterMakers.push(() => makeCharacter(
  51154. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51155. {
  51156. dressedFront: {
  51157. height: math.unit(191, "cm"),
  51158. weight: math.unit(80, "kg"),
  51159. name: "Front",
  51160. image: {
  51161. source: "./media/characters/buster/dressed-front.svg",
  51162. extra: 1022/973,
  51163. bottom: 69/1091
  51164. }
  51165. },
  51166. dressedBack: {
  51167. height: math.unit(191, "cm"),
  51168. weight: math.unit(80, "kg"),
  51169. name: "Back",
  51170. image: {
  51171. source: "./media/characters/buster/dressed-back.svg",
  51172. extra: 1018/970,
  51173. bottom: 55/1073
  51174. }
  51175. },
  51176. nudeFront: {
  51177. height: math.unit(191, "cm"),
  51178. weight: math.unit(80, "kg"),
  51179. name: "Front (Nude)",
  51180. image: {
  51181. source: "./media/characters/buster/nude-front.svg",
  51182. extra: 1022/973,
  51183. bottom: 69/1091
  51184. }
  51185. },
  51186. nudeBack: {
  51187. height: math.unit(191, "cm"),
  51188. weight: math.unit(80, "kg"),
  51189. name: "Back (Nude)",
  51190. image: {
  51191. source: "./media/characters/buster/nude-back.svg",
  51192. extra: 1018/970,
  51193. bottom: 55/1073
  51194. }
  51195. },
  51196. dick: {
  51197. height: math.unit(2.59, "feet"),
  51198. name: "Dick",
  51199. image: {
  51200. source: "./media/characters/buster/dick.svg"
  51201. }
  51202. },
  51203. ass: {
  51204. height: math.unit(1.2, "feet"),
  51205. name: "Ass",
  51206. image: {
  51207. source: "./media/characters/buster/ass.svg"
  51208. }
  51209. },
  51210. },
  51211. [
  51212. {
  51213. name: "Normal",
  51214. height: math.unit(191, "cm"),
  51215. default: true
  51216. },
  51217. ]
  51218. ))
  51219. characterMakers.push(() => makeCharacter(
  51220. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51221. {
  51222. side: {
  51223. height: math.unit(8.1, "feet"),
  51224. weight: math.unit(3500, "lb"),
  51225. name: "Side",
  51226. image: {
  51227. source: "./media/characters/sonya/side.svg",
  51228. extra: 1730/1317,
  51229. bottom: 86/1816
  51230. }
  51231. },
  51232. },
  51233. [
  51234. {
  51235. name: "Normal",
  51236. height: math.unit(8.1, "feet"),
  51237. default: true
  51238. },
  51239. ]
  51240. ))
  51241. characterMakers.push(() => makeCharacter(
  51242. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51243. {
  51244. front: {
  51245. height: math.unit(6, "feet"),
  51246. weight: math.unit(150, "lb"),
  51247. name: "Front",
  51248. image: {
  51249. source: "./media/characters/cadence-andrysiak/front.svg",
  51250. extra: 1164/1121,
  51251. bottom: 60/1224
  51252. }
  51253. },
  51254. back: {
  51255. height: math.unit(6, "feet"),
  51256. weight: math.unit(150, "lb"),
  51257. name: "Back",
  51258. image: {
  51259. source: "./media/characters/cadence-andrysiak/back.svg",
  51260. extra: 1200/1165,
  51261. bottom: 9/1209
  51262. }
  51263. },
  51264. dressed: {
  51265. height: math.unit(6, "feet"),
  51266. weight: math.unit(150, "lb"),
  51267. name: "Dressed",
  51268. image: {
  51269. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51270. extra: 1164/1121,
  51271. bottom: 60/1224
  51272. }
  51273. },
  51274. },
  51275. [
  51276. {
  51277. name: "Micro",
  51278. height: math.unit(1, "mm")
  51279. },
  51280. {
  51281. name: "Normal",
  51282. height: math.unit(6, "feet"),
  51283. default: true
  51284. },
  51285. ]
  51286. ))
  51287. characterMakers.push(() => makeCharacter(
  51288. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51289. {
  51290. front: {
  51291. height: math.unit(60, "inches"),
  51292. weight: math.unit(16, "lb"),
  51293. preyCapacity: math.unit(80, "liters"),
  51294. name: "Front",
  51295. image: {
  51296. source: "./media/characters/penny-lynx/front.svg",
  51297. extra: 1959/1769,
  51298. bottom: 49/2008
  51299. }
  51300. },
  51301. },
  51302. [
  51303. {
  51304. name: "Nokia",
  51305. height: math.unit(2, "inches")
  51306. },
  51307. {
  51308. name: "Desktop",
  51309. height: math.unit(24, "inches")
  51310. },
  51311. {
  51312. name: "TV",
  51313. height: math.unit(60, "inches")
  51314. },
  51315. {
  51316. name: "Jumbotron",
  51317. height: math.unit(12, "feet")
  51318. },
  51319. {
  51320. name: "Billboard",
  51321. height: math.unit(48, "feet"),
  51322. default: true
  51323. },
  51324. {
  51325. name: "IMAX",
  51326. height: math.unit(96, "feet")
  51327. },
  51328. {
  51329. name: "SINGULARITY",
  51330. height: math.unit(864938, "miles")
  51331. },
  51332. ]
  51333. ))
  51334. characterMakers.push(() => makeCharacter(
  51335. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51336. {
  51337. front: {
  51338. height: math.unit(5 + 4/12, "feet"),
  51339. weight: math.unit(230, "lb"),
  51340. name: "Front",
  51341. image: {
  51342. source: "./media/characters/sukebe/front.svg",
  51343. extra: 2130/2038,
  51344. bottom: 90/2220
  51345. }
  51346. },
  51347. back: {
  51348. height: math.unit(3.48, "feet"),
  51349. weight: math.unit(230, "lb"),
  51350. name: "Back",
  51351. image: {
  51352. source: "./media/characters/sukebe/back.svg",
  51353. extra: 1670/1604,
  51354. bottom: 0/1670
  51355. }
  51356. },
  51357. },
  51358. [
  51359. {
  51360. name: "Normal",
  51361. height: math.unit(5 + 4/12, "feet"),
  51362. default: true
  51363. },
  51364. ]
  51365. ))
  51366. characterMakers.push(() => makeCharacter(
  51367. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51368. {
  51369. front: {
  51370. height: math.unit(6, "feet"),
  51371. name: "Front",
  51372. image: {
  51373. source: "./media/characters/nylla/front.svg",
  51374. extra: 1868/1699,
  51375. bottom: 97/1965
  51376. }
  51377. },
  51378. back: {
  51379. height: math.unit(6, "feet"),
  51380. name: "Back",
  51381. image: {
  51382. source: "./media/characters/nylla/back.svg",
  51383. extra: 1889/1712,
  51384. bottom: 93/1982
  51385. }
  51386. },
  51387. frontNsfw: {
  51388. height: math.unit(6, "feet"),
  51389. name: "Front (NSFW)",
  51390. image: {
  51391. source: "./media/characters/nylla/front-nsfw.svg",
  51392. extra: 1868/1699,
  51393. bottom: 97/1965
  51394. },
  51395. extraAttributes: {
  51396. "dickLength": {
  51397. name: "Dick Length",
  51398. power: 1,
  51399. type: "length",
  51400. base: math.unit(1.4, "feet")
  51401. },
  51402. "cumVolume": {
  51403. name: "Cum Volume",
  51404. power: 3,
  51405. type: "volume",
  51406. base: math.unit(100, "mL")
  51407. },
  51408. }
  51409. },
  51410. backNsfw: {
  51411. height: math.unit(6, "feet"),
  51412. name: "Back (NSFW)",
  51413. image: {
  51414. source: "./media/characters/nylla/back-nsfw.svg",
  51415. extra: 1889/1712,
  51416. bottom: 93/1982
  51417. }
  51418. },
  51419. maw: {
  51420. height: math.unit(2.10, "feet"),
  51421. name: "Maw",
  51422. image: {
  51423. source: "./media/characters/nylla/maw.svg"
  51424. }
  51425. },
  51426. paws: {
  51427. height: math.unit(2.06, "feet"),
  51428. name: "Paws",
  51429. image: {
  51430. source: "./media/characters/nylla/paws.svg"
  51431. }
  51432. },
  51433. muzzle: {
  51434. height: math.unit(0.61, "feet"),
  51435. name: "Muzzle",
  51436. image: {
  51437. source: "./media/characters/nylla/muzzle.svg"
  51438. }
  51439. },
  51440. sheath: {
  51441. height: math.unit(1.305, "feet"),
  51442. name: "Sheath",
  51443. image: {
  51444. source: "./media/characters/nylla/sheath.svg"
  51445. }
  51446. },
  51447. },
  51448. [
  51449. {
  51450. name: "Micro",
  51451. height: math.unit(7.5, "inches")
  51452. },
  51453. {
  51454. name: "Normal",
  51455. height: math.unit(7, "feet"),
  51456. default: true
  51457. },
  51458. {
  51459. name: "Macro",
  51460. height: math.unit(60, "feet")
  51461. },
  51462. {
  51463. name: "Mega",
  51464. height: math.unit(200, "feet")
  51465. },
  51466. ]
  51467. ))
  51468. characterMakers.push(() => makeCharacter(
  51469. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51470. {
  51471. front: {
  51472. height: math.unit(10, "feet"),
  51473. weight: math.unit(2300, "lb"),
  51474. name: "Front",
  51475. image: {
  51476. source: "./media/characters/hunt3r/front.svg",
  51477. extra: 1909/1742,
  51478. bottom: 46/1955
  51479. }
  51480. },
  51481. },
  51482. [
  51483. {
  51484. name: "Normal",
  51485. height: math.unit(10, "feet"),
  51486. default: true
  51487. },
  51488. ]
  51489. ))
  51490. characterMakers.push(() => makeCharacter(
  51491. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51492. {
  51493. dressed: {
  51494. height: math.unit(11, "feet"),
  51495. weight: math.unit(18500, "lb"),
  51496. preyCapacity: math.unit(9, "people"),
  51497. name: "Dressed",
  51498. image: {
  51499. source: "./media/characters/cylphis/dressed.svg",
  51500. extra: 1028/1003,
  51501. bottom: 75/1103
  51502. },
  51503. },
  51504. undressed: {
  51505. height: math.unit(11, "feet"),
  51506. weight: math.unit(18500, "lb"),
  51507. preyCapacity: math.unit(9, "people"),
  51508. name: "Undressed",
  51509. image: {
  51510. source: "./media/characters/cylphis/undressed.svg",
  51511. extra: 1028/1003,
  51512. bottom: 75/1103
  51513. }
  51514. },
  51515. full: {
  51516. height: math.unit(11, "feet"),
  51517. weight: math.unit(18500 + 150*9, "lb"),
  51518. preyCapacity: math.unit(9, "people"),
  51519. name: "Full",
  51520. image: {
  51521. source: "./media/characters/cylphis/full.svg",
  51522. extra: 1028/1003,
  51523. bottom: 75/1103
  51524. }
  51525. },
  51526. },
  51527. [
  51528. {
  51529. name: "Small",
  51530. height: math.unit(8, "feet")
  51531. },
  51532. {
  51533. name: "Normal",
  51534. height: math.unit(11, "feet"),
  51535. default: true
  51536. },
  51537. ]
  51538. ))
  51539. characterMakers.push(() => makeCharacter(
  51540. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51541. {
  51542. front: {
  51543. height: math.unit(2 + 7/12, "feet"),
  51544. name: "Front",
  51545. image: {
  51546. source: "./media/characters/orishan/front.svg",
  51547. extra: 1058/1023,
  51548. bottom: 23/1081
  51549. }
  51550. },
  51551. back: {
  51552. height: math.unit(2 + 7/12, "feet"),
  51553. name: "Back",
  51554. image: {
  51555. source: "./media/characters/orishan/back.svg",
  51556. extra: 1058/1023,
  51557. bottom: 23/1081
  51558. }
  51559. },
  51560. },
  51561. [
  51562. {
  51563. name: "Micro",
  51564. height: math.unit(2, "cm")
  51565. },
  51566. {
  51567. name: "Normal",
  51568. height: math.unit(2 + 7/12, "feet"),
  51569. default: true
  51570. },
  51571. ]
  51572. ))
  51573. characterMakers.push(() => makeCharacter(
  51574. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51575. {
  51576. front: {
  51577. height: math.unit(3, "meters"),
  51578. weight: math.unit(508, "kg"),
  51579. name: "Front",
  51580. image: {
  51581. source: "./media/characters/seranis/front.svg",
  51582. extra: 1478/1454,
  51583. bottom: 41/1519
  51584. }
  51585. },
  51586. },
  51587. [
  51588. {
  51589. name: "Normal",
  51590. height: math.unit(3, "meters"),
  51591. default: true
  51592. },
  51593. {
  51594. name: "Macro",
  51595. height: math.unit(108, "meters")
  51596. },
  51597. {
  51598. name: "Megamacro",
  51599. height: math.unit(1250, "meters")
  51600. },
  51601. ]
  51602. ))
  51603. characterMakers.push(() => makeCharacter(
  51604. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51605. {
  51606. undressed: {
  51607. height: math.unit(5 + 3/12, "feet"),
  51608. name: "Undressed",
  51609. image: {
  51610. source: "./media/characters/ankou/undressed.svg",
  51611. extra: 1301/1213,
  51612. bottom: 87/1388
  51613. }
  51614. },
  51615. dressed: {
  51616. height: math.unit(5 + 3/12, "feet"),
  51617. name: "Dressed",
  51618. image: {
  51619. source: "./media/characters/ankou/dressed.svg",
  51620. extra: 1301/1213,
  51621. bottom: 87/1388
  51622. }
  51623. },
  51624. head: {
  51625. height: math.unit(1.61, "feet"),
  51626. name: "Head",
  51627. image: {
  51628. source: "./media/characters/ankou/head.svg"
  51629. }
  51630. },
  51631. },
  51632. [
  51633. {
  51634. name: "Normal",
  51635. height: math.unit(5 + 3/12, "feet"),
  51636. default: true
  51637. },
  51638. ]
  51639. ))
  51640. characterMakers.push(() => makeCharacter(
  51641. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51642. {
  51643. side: {
  51644. height: math.unit(6 + 3/12, "feet"),
  51645. weight: math.unit(200, "kg"),
  51646. name: "Side",
  51647. image: {
  51648. source: "./media/characters/juniper-skunktaur/side.svg",
  51649. extra: 1574/1229,
  51650. bottom: 38/1612
  51651. }
  51652. },
  51653. front: {
  51654. height: math.unit(6 + 3/12, "feet"),
  51655. weight: math.unit(200, "kg"),
  51656. name: "Front",
  51657. image: {
  51658. source: "./media/characters/juniper-skunktaur/front.svg",
  51659. extra: 1337/1278,
  51660. bottom: 22/1359
  51661. }
  51662. },
  51663. back: {
  51664. height: math.unit(6 + 3/12, "feet"),
  51665. weight: math.unit(200, "kg"),
  51666. name: "Back",
  51667. image: {
  51668. source: "./media/characters/juniper-skunktaur/back.svg",
  51669. extra: 1618/1273,
  51670. bottom: 13/1631
  51671. }
  51672. },
  51673. top: {
  51674. height: math.unit(2.62, "feet"),
  51675. weight: math.unit(200, "kg"),
  51676. name: "Top",
  51677. image: {
  51678. source: "./media/characters/juniper-skunktaur/top.svg"
  51679. }
  51680. },
  51681. },
  51682. [
  51683. {
  51684. name: "Normal",
  51685. height: math.unit(6 + 3/12, "feet"),
  51686. default: true
  51687. },
  51688. ]
  51689. ))
  51690. characterMakers.push(() => makeCharacter(
  51691. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51692. {
  51693. front: {
  51694. height: math.unit(20.5, "feet"),
  51695. name: "Front",
  51696. image: {
  51697. source: "./media/characters/rei/front.svg",
  51698. extra: 1349/1195,
  51699. bottom: 31/1380
  51700. }
  51701. },
  51702. back: {
  51703. height: math.unit(20.5, "feet"),
  51704. name: "Back",
  51705. image: {
  51706. source: "./media/characters/rei/back.svg",
  51707. extra: 1358/1204,
  51708. bottom: 22/1380
  51709. }
  51710. },
  51711. pawsDigi: {
  51712. height: math.unit(3.45, "feet"),
  51713. name: "Paws (Digi)",
  51714. image: {
  51715. source: "./media/characters/rei/paws-digi.svg"
  51716. }
  51717. },
  51718. pawsPlanti: {
  51719. height: math.unit(3.45, "feet"),
  51720. name: "Paws (Planti)",
  51721. image: {
  51722. source: "./media/characters/rei/paws-planti.svg"
  51723. }
  51724. },
  51725. },
  51726. [
  51727. {
  51728. name: "Normal",
  51729. height: math.unit(20.5, "feet"),
  51730. default: true
  51731. },
  51732. ]
  51733. ))
  51734. characterMakers.push(() => makeCharacter(
  51735. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51736. {
  51737. front: {
  51738. height: math.unit(5 + 11/12, "feet"),
  51739. name: "Front",
  51740. image: {
  51741. source: "./media/characters/carina/front.svg",
  51742. extra: 1720/1449,
  51743. bottom: 14/1734
  51744. }
  51745. },
  51746. back: {
  51747. height: math.unit(5 + 11/12, "feet"),
  51748. name: "Back",
  51749. image: {
  51750. source: "./media/characters/carina/back.svg",
  51751. extra: 1493/1445,
  51752. bottom: 17/1510
  51753. }
  51754. },
  51755. paw: {
  51756. height: math.unit(0.92, "feet"),
  51757. name: "Paw",
  51758. image: {
  51759. source: "./media/characters/carina/paw.svg"
  51760. }
  51761. },
  51762. },
  51763. [
  51764. {
  51765. name: "Normal",
  51766. height: math.unit(5 + 11/12, "feet"),
  51767. default: true
  51768. },
  51769. ]
  51770. ))
  51771. characterMakers.push(() => makeCharacter(
  51772. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51773. {
  51774. front: {
  51775. height: math.unit(4.88, "meters"),
  51776. name: "Front",
  51777. image: {
  51778. source: "./media/characters/maya/front.svg",
  51779. extra: 1222/1145,
  51780. bottom: 57/1279
  51781. }
  51782. },
  51783. },
  51784. [
  51785. {
  51786. name: "Normal",
  51787. height: math.unit(4.88, "meters"),
  51788. default: true
  51789. },
  51790. {
  51791. name: "Macro",
  51792. height: math.unit(38.1, "meters")
  51793. },
  51794. {
  51795. name: "Macro+",
  51796. height: math.unit(152.4, "meters")
  51797. },
  51798. {
  51799. name: "Macro++",
  51800. height: math.unit(16.09, "km")
  51801. },
  51802. {
  51803. name: "Mega-macro",
  51804. height: math.unit(700, "megameters")
  51805. },
  51806. ]
  51807. ))
  51808. characterMakers.push(() => makeCharacter(
  51809. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51810. {
  51811. front: {
  51812. height: math.unit(6 + 2/12, "feet"),
  51813. weight: math.unit(500, "lb"),
  51814. preyCapacity: math.unit(4, "people"),
  51815. name: "Front",
  51816. image: {
  51817. source: "./media/characters/yepir/front.svg"
  51818. }
  51819. },
  51820. side: {
  51821. height: math.unit(6 + 2/12, "feet"),
  51822. weight: math.unit(500, "lb"),
  51823. preyCapacity: math.unit(4, "people"),
  51824. name: "Side",
  51825. image: {
  51826. source: "./media/characters/yepir/side.svg"
  51827. }
  51828. },
  51829. paw: {
  51830. height: math.unit(1.05, "feet"),
  51831. name: "Paw",
  51832. image: {
  51833. source: "./media/characters/yepir/paw.svg"
  51834. }
  51835. },
  51836. },
  51837. [
  51838. {
  51839. name: "Normal",
  51840. height: math.unit(6 + 2/12, "feet"),
  51841. default: true
  51842. },
  51843. ]
  51844. ))
  51845. characterMakers.push(() => makeCharacter(
  51846. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  51847. {
  51848. front: {
  51849. height: math.unit(5 + 4/12, "feet"),
  51850. name: "Front",
  51851. image: {
  51852. source: "./media/characters/russec/front.svg",
  51853. extra: 1926/1626,
  51854. bottom: 72/1998
  51855. }
  51856. },
  51857. back: {
  51858. height: math.unit(5 + 4/12, "feet"),
  51859. name: "Back",
  51860. image: {
  51861. source: "./media/characters/russec/back.svg",
  51862. extra: 1910/1591,
  51863. bottom: 48/1958
  51864. }
  51865. },
  51866. },
  51867. [
  51868. {
  51869. name: "Small",
  51870. height: math.unit(5 + 4/12, "feet")
  51871. },
  51872. {
  51873. name: "Normal",
  51874. height: math.unit(72, "feet"),
  51875. default: true
  51876. },
  51877. ]
  51878. ))
  51879. characterMakers.push(() => makeCharacter(
  51880. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  51881. {
  51882. side: {
  51883. height: math.unit(12, "feet"),
  51884. name: "Side",
  51885. image: {
  51886. source: "./media/characters/cianus/side.svg",
  51887. extra: 808/526,
  51888. bottom: 61/869
  51889. }
  51890. },
  51891. },
  51892. [
  51893. {
  51894. name: "Normal",
  51895. height: math.unit(12, "feet"),
  51896. default: true
  51897. },
  51898. ]
  51899. ))
  51900. characterMakers.push(() => makeCharacter(
  51901. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  51902. {
  51903. front: {
  51904. height: math.unit(9 + 6/12, "feet"),
  51905. weight: math.unit(300, "lb"),
  51906. name: "Front",
  51907. image: {
  51908. source: "./media/characters/ahab/front.svg",
  51909. extra: 1897/1868,
  51910. bottom: 121/2018
  51911. }
  51912. },
  51913. frontNsfw: {
  51914. height: math.unit(9 + 6/12, "feet"),
  51915. weight: math.unit(300, "lb"),
  51916. name: "Front-nsfw",
  51917. image: {
  51918. source: "./media/characters/ahab/front-nsfw.svg",
  51919. extra: 1897/1868,
  51920. bottom: 121/2018
  51921. }
  51922. },
  51923. },
  51924. [
  51925. {
  51926. name: "Normal",
  51927. height: math.unit(9 + 6/12, "feet")
  51928. },
  51929. {
  51930. name: "Macro",
  51931. height: math.unit(657, "feet"),
  51932. default: true
  51933. },
  51934. ]
  51935. ))
  51936. characterMakers.push(() => makeCharacter(
  51937. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  51938. {
  51939. front: {
  51940. height: math.unit(2.69, "meters"),
  51941. weight: math.unit(132, "kg"),
  51942. name: "Front",
  51943. image: {
  51944. source: "./media/characters/aarkus/front.svg",
  51945. extra: 1400/1231,
  51946. bottom: 34/1434
  51947. }
  51948. },
  51949. back: {
  51950. height: math.unit(2.69, "meters"),
  51951. weight: math.unit(132, "kg"),
  51952. name: "Back",
  51953. image: {
  51954. source: "./media/characters/aarkus/back.svg",
  51955. extra: 1381/1218,
  51956. bottom: 30/1411
  51957. }
  51958. },
  51959. frontNsfw: {
  51960. height: math.unit(2.69, "meters"),
  51961. weight: math.unit(132, "kg"),
  51962. name: "Front (NSFW)",
  51963. image: {
  51964. source: "./media/characters/aarkus/front-nsfw.svg",
  51965. extra: 1400/1231,
  51966. bottom: 34/1434
  51967. }
  51968. },
  51969. foot: {
  51970. height: math.unit(1.45, "feet"),
  51971. name: "Foot",
  51972. image: {
  51973. source: "./media/characters/aarkus/foot.svg"
  51974. }
  51975. },
  51976. head: {
  51977. height: math.unit(2.85, "feet"),
  51978. name: "Head",
  51979. image: {
  51980. source: "./media/characters/aarkus/head.svg"
  51981. }
  51982. },
  51983. headAlt: {
  51984. height: math.unit(3.07, "feet"),
  51985. name: "Head (Alt)",
  51986. image: {
  51987. source: "./media/characters/aarkus/head-alt.svg"
  51988. }
  51989. },
  51990. mouth: {
  51991. height: math.unit(1.25, "feet"),
  51992. name: "Mouth",
  51993. image: {
  51994. source: "./media/characters/aarkus/mouth.svg"
  51995. }
  51996. },
  51997. dick: {
  51998. height: math.unit(1.77, "feet"),
  51999. name: "Dick",
  52000. image: {
  52001. source: "./media/characters/aarkus/dick.svg"
  52002. }
  52003. },
  52004. },
  52005. [
  52006. {
  52007. name: "Normal",
  52008. height: math.unit(2.69, "meters"),
  52009. default: true
  52010. },
  52011. {
  52012. name: "Macro",
  52013. height: math.unit(269, "meters")
  52014. },
  52015. {
  52016. name: "Macro+",
  52017. height: math.unit(672.5, "meters")
  52018. },
  52019. {
  52020. name: "Megamacro",
  52021. height: math.unit(2.017, "km")
  52022. },
  52023. ]
  52024. ))
  52025. characterMakers.push(() => makeCharacter(
  52026. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52027. {
  52028. front: {
  52029. height: math.unit(23.47, "cm"),
  52030. weight: math.unit(600, "grams"),
  52031. name: "Front",
  52032. image: {
  52033. source: "./media/characters/diode/front.svg",
  52034. extra: 1778/1396,
  52035. bottom: 95/1873
  52036. }
  52037. },
  52038. side: {
  52039. height: math.unit(23.47, "cm"),
  52040. weight: math.unit(600, "grams"),
  52041. name: "Side",
  52042. image: {
  52043. source: "./media/characters/diode/side.svg",
  52044. extra: 1831/1404,
  52045. bottom: 86/1917
  52046. }
  52047. },
  52048. wings: {
  52049. height: math.unit(0.683, "feet"),
  52050. name: "Wings",
  52051. image: {
  52052. source: "./media/characters/diode/wings.svg"
  52053. }
  52054. },
  52055. },
  52056. [
  52057. {
  52058. name: "Normal",
  52059. height: math.unit(23.47, "cm"),
  52060. default: true
  52061. },
  52062. ]
  52063. ))
  52064. characterMakers.push(() => makeCharacter(
  52065. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52066. {
  52067. front: {
  52068. height: math.unit(6 + 3/12, "feet"),
  52069. weight: math.unit(250, "lb"),
  52070. name: "Front",
  52071. image: {
  52072. source: "./media/characters/reika/front.svg",
  52073. extra: 1120/1078,
  52074. bottom: 86/1206
  52075. }
  52076. },
  52077. },
  52078. [
  52079. {
  52080. name: "Normal",
  52081. height: math.unit(6 + 3/12, "feet"),
  52082. default: true
  52083. },
  52084. ]
  52085. ))
  52086. characterMakers.push(() => makeCharacter(
  52087. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52088. {
  52089. front: {
  52090. height: math.unit(16 + 8/12, "feet"),
  52091. weight: math.unit(9000, "lb"),
  52092. name: "Front",
  52093. image: {
  52094. source: "./media/characters/lokuto-takama/front.svg",
  52095. extra: 1774/1632,
  52096. bottom: 147/1921
  52097. },
  52098. extraAttributes: {
  52099. "bustWidth": {
  52100. name: "Bust Width",
  52101. power: 1,
  52102. type: "length",
  52103. base: math.unit(2.4, "meters")
  52104. },
  52105. "breastWeight": {
  52106. name: "Breast Weight",
  52107. power: 3,
  52108. type: "mass",
  52109. base: math.unit(1000, "kg")
  52110. },
  52111. }
  52112. },
  52113. },
  52114. [
  52115. {
  52116. name: "Normal",
  52117. height: math.unit(16 + 8/12, "feet"),
  52118. default: true
  52119. },
  52120. ]
  52121. ))
  52122. characterMakers.push(() => makeCharacter(
  52123. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52124. {
  52125. front: {
  52126. height: math.unit(10, "cm"),
  52127. weight: math.unit(850, "grams"),
  52128. name: "Front",
  52129. image: {
  52130. source: "./media/characters/owak-bone/front.svg",
  52131. extra: 1965/1801,
  52132. bottom: 31/1996
  52133. }
  52134. },
  52135. },
  52136. [
  52137. {
  52138. name: "Normal",
  52139. height: math.unit(10, "cm"),
  52140. default: true
  52141. },
  52142. ]
  52143. ))
  52144. characterMakers.push(() => makeCharacter(
  52145. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52146. {
  52147. front: {
  52148. height: math.unit(2 + 6/12, "feet"),
  52149. weight: math.unit(9, "lb"),
  52150. name: "Front",
  52151. image: {
  52152. source: "./media/characters/muffin/front.svg",
  52153. extra: 1220/1195,
  52154. bottom: 84/1304
  52155. }
  52156. },
  52157. },
  52158. [
  52159. {
  52160. name: "Normal",
  52161. height: math.unit(2 + 6/12, "feet"),
  52162. default: true
  52163. },
  52164. ]
  52165. ))
  52166. characterMakers.push(() => makeCharacter(
  52167. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52168. {
  52169. front: {
  52170. height: math.unit(7, "feet"),
  52171. name: "Front",
  52172. image: {
  52173. source: "./media/characters/chimera/front.svg",
  52174. extra: 1752/1614,
  52175. bottom: 68/1820
  52176. }
  52177. },
  52178. },
  52179. [
  52180. {
  52181. name: "Normal",
  52182. height: math.unit(7, "feet")
  52183. },
  52184. {
  52185. name: "Gigamacro",
  52186. height: math.unit(2.9, "gigameters"),
  52187. default: true
  52188. },
  52189. {
  52190. name: "Universal",
  52191. height: math.unit(1.56e26, "yottameters")
  52192. },
  52193. ]
  52194. ))
  52195. characterMakers.push(() => makeCharacter(
  52196. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52197. {
  52198. front: {
  52199. height: math.unit(3, "feet"),
  52200. weight: math.unit(20, "lb"),
  52201. name: "Front",
  52202. image: {
  52203. source: "./media/characters/kit-fennec-fox/front.svg",
  52204. extra: 1027/932,
  52205. bottom: 16/1043
  52206. }
  52207. },
  52208. back: {
  52209. height: math.unit(3, "feet"),
  52210. weight: math.unit(20, "lb"),
  52211. name: "Back",
  52212. image: {
  52213. source: "./media/characters/kit-fennec-fox/back.svg",
  52214. extra: 1027/932,
  52215. bottom: 16/1043
  52216. }
  52217. },
  52218. },
  52219. [
  52220. {
  52221. name: "Normal",
  52222. height: math.unit(3, "feet"),
  52223. default: true
  52224. },
  52225. ]
  52226. ))
  52227. characterMakers.push(() => makeCharacter(
  52228. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52229. {
  52230. front: {
  52231. height: math.unit(167, "cm"),
  52232. name: "Front",
  52233. image: {
  52234. source: "./media/characters/blue-otter/front.svg",
  52235. extra: 1951/1920,
  52236. bottom: 31/1982
  52237. }
  52238. },
  52239. },
  52240. [
  52241. {
  52242. name: "Otter-Sized",
  52243. height: math.unit(100, "cm")
  52244. },
  52245. {
  52246. name: "Normal",
  52247. height: math.unit(167, "cm"),
  52248. default: true
  52249. },
  52250. ]
  52251. ))
  52252. characterMakers.push(() => makeCharacter(
  52253. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52254. {
  52255. front: {
  52256. height: math.unit(4 + 4/12, "feet"),
  52257. name: "Front",
  52258. image: {
  52259. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52260. extra: 1072/1067,
  52261. bottom: 117/1189
  52262. }
  52263. },
  52264. back: {
  52265. height: math.unit(4 + 4/12, "feet"),
  52266. name: "Back",
  52267. image: {
  52268. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52269. extra: 1135/1129,
  52270. bottom: 57/1192
  52271. }
  52272. },
  52273. head: {
  52274. height: math.unit(1.77, "feet"),
  52275. name: "Head",
  52276. image: {
  52277. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52278. }
  52279. },
  52280. },
  52281. [
  52282. {
  52283. name: "Normal",
  52284. height: math.unit(4 + 4/12, "feet"),
  52285. default: true
  52286. },
  52287. ]
  52288. ))
  52289. characterMakers.push(() => makeCharacter(
  52290. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52291. {
  52292. front: {
  52293. height: math.unit(2, "inches"),
  52294. name: "Front",
  52295. image: {
  52296. source: "./media/characters/carley-hartford/front.svg",
  52297. extra: 1035/988,
  52298. bottom: 23/1058
  52299. }
  52300. },
  52301. back: {
  52302. height: math.unit(2, "inches"),
  52303. name: "Back",
  52304. image: {
  52305. source: "./media/characters/carley-hartford/back.svg",
  52306. extra: 1035/988,
  52307. bottom: 23/1058
  52308. }
  52309. },
  52310. dressed: {
  52311. height: math.unit(2, "inches"),
  52312. name: "Dressed",
  52313. image: {
  52314. source: "./media/characters/carley-hartford/dressed.svg",
  52315. extra: 651/620,
  52316. bottom: 0/651
  52317. }
  52318. },
  52319. },
  52320. [
  52321. {
  52322. name: "Micro",
  52323. height: math.unit(2, "inches"),
  52324. default: true
  52325. },
  52326. {
  52327. name: "Macro",
  52328. height: math.unit(6 + 3/12, "feet")
  52329. },
  52330. ]
  52331. ))
  52332. characterMakers.push(() => makeCharacter(
  52333. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52334. {
  52335. front: {
  52336. height: math.unit(2 + 3/12, "feet"),
  52337. weight: math.unit(15 + 7/16, "lb"),
  52338. name: "Front",
  52339. image: {
  52340. source: "./media/characters/duke/front.svg",
  52341. extra: 910/815,
  52342. bottom: 30/940
  52343. }
  52344. },
  52345. },
  52346. [
  52347. {
  52348. name: "Normal",
  52349. height: math.unit(2 + 3/12, "feet"),
  52350. default: true
  52351. },
  52352. ]
  52353. ))
  52354. characterMakers.push(() => makeCharacter(
  52355. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52356. {
  52357. front: {
  52358. height: math.unit(5 + 4/12, "feet"),
  52359. weight: math.unit(156, "lb"),
  52360. name: "Front",
  52361. image: {
  52362. source: "./media/characters/dein/front.svg",
  52363. extra: 855/815,
  52364. bottom: 48/903
  52365. }
  52366. },
  52367. side: {
  52368. height: math.unit(5 + 4/12, "feet"),
  52369. weight: math.unit(156, "lb"),
  52370. name: "side",
  52371. image: {
  52372. source: "./media/characters/dein/side.svg",
  52373. extra: 846/803,
  52374. bottom: 25/871
  52375. }
  52376. },
  52377. maw: {
  52378. height: math.unit(1.45, "feet"),
  52379. name: "Maw",
  52380. image: {
  52381. source: "./media/characters/dein/maw.svg"
  52382. }
  52383. },
  52384. },
  52385. [
  52386. {
  52387. name: "Ferret Sized",
  52388. height: math.unit(2 + 5/12, "feet")
  52389. },
  52390. {
  52391. name: "Normal",
  52392. height: math.unit(5 + 4/12, "feet"),
  52393. default: true
  52394. },
  52395. ]
  52396. ))
  52397. characterMakers.push(() => makeCharacter(
  52398. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52399. {
  52400. front: {
  52401. height: math.unit(84 + 8/12, "feet"),
  52402. weight: math.unit(942180, "lb"),
  52403. name: "Front",
  52404. image: {
  52405. source: "./media/characters/daurine-arima/front.svg",
  52406. extra: 1989/1782,
  52407. bottom: 37/2026
  52408. }
  52409. },
  52410. side: {
  52411. height: math.unit(84 + 8/12, "feet"),
  52412. weight: math.unit(942180, "lb"),
  52413. name: "Side",
  52414. image: {
  52415. source: "./media/characters/daurine-arima/side.svg",
  52416. extra: 1997/1790,
  52417. bottom: 21/2018
  52418. }
  52419. },
  52420. back: {
  52421. height: math.unit(84 + 8/12, "feet"),
  52422. weight: math.unit(942180, "lb"),
  52423. name: "Back",
  52424. image: {
  52425. source: "./media/characters/daurine-arima/back.svg",
  52426. extra: 1992/1800,
  52427. bottom: 12/2004
  52428. }
  52429. },
  52430. head: {
  52431. height: math.unit(15.5, "feet"),
  52432. name: "Head",
  52433. image: {
  52434. source: "./media/characters/daurine-arima/head.svg"
  52435. }
  52436. },
  52437. headAlt: {
  52438. height: math.unit(19.19, "feet"),
  52439. name: "Head (Alt)",
  52440. image: {
  52441. source: "./media/characters/daurine-arima/head-alt.svg"
  52442. }
  52443. },
  52444. },
  52445. [
  52446. {
  52447. name: "Minimum height",
  52448. height: math.unit(8 + 10/12, "feet")
  52449. },
  52450. {
  52451. name: "Comfort height",
  52452. height: math.unit(19 + 6 /12, "feet")
  52453. },
  52454. {
  52455. name: "\"Normal\" height",
  52456. height: math.unit(28 + 10/12, "feet")
  52457. },
  52458. {
  52459. name: "Base height",
  52460. height: math.unit(84 + 8/12, "feet"),
  52461. default: true
  52462. },
  52463. {
  52464. name: "Mini-macro",
  52465. height: math.unit(2360, "feet")
  52466. },
  52467. {
  52468. name: "Macro",
  52469. height: math.unit(10, "miles")
  52470. },
  52471. {
  52472. name: "Goddess",
  52473. height: math.unit(9.99e40, "yottameters")
  52474. },
  52475. ]
  52476. ))
  52477. characterMakers.push(() => makeCharacter(
  52478. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52479. {
  52480. front: {
  52481. height: math.unit(2.3, "meters"),
  52482. name: "Front",
  52483. image: {
  52484. source: "./media/characters/cilenomon/front.svg",
  52485. extra: 1963/1778,
  52486. bottom: 54/2017
  52487. }
  52488. },
  52489. },
  52490. [
  52491. {
  52492. name: "Normal",
  52493. height: math.unit(2.3, "meters"),
  52494. default: true
  52495. },
  52496. {
  52497. name: "Big",
  52498. height: math.unit(5, "meters")
  52499. },
  52500. {
  52501. name: "Macro",
  52502. height: math.unit(30, "meters")
  52503. },
  52504. {
  52505. name: "True",
  52506. height: math.unit(1, "universe")
  52507. },
  52508. ]
  52509. ))
  52510. characterMakers.push(() => makeCharacter(
  52511. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52512. {
  52513. front: {
  52514. height: math.unit(5, "feet"),
  52515. name: "Front",
  52516. image: {
  52517. source: "./media/characters/sen-mink/front.svg",
  52518. extra: 1727/1675,
  52519. bottom: 35/1762
  52520. }
  52521. },
  52522. },
  52523. [
  52524. {
  52525. name: "Normal",
  52526. height: math.unit(5, "feet"),
  52527. default: true
  52528. },
  52529. ]
  52530. ))
  52531. characterMakers.push(() => makeCharacter(
  52532. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52533. {
  52534. front: {
  52535. height: math.unit(5.42999, "feet"),
  52536. weight: math.unit(100, "lb"),
  52537. name: "Front",
  52538. image: {
  52539. source: "./media/characters/ophois/front.svg",
  52540. extra: 1429/1286,
  52541. bottom: 60/1489
  52542. }
  52543. },
  52544. },
  52545. [
  52546. {
  52547. name: "Normal",
  52548. height: math.unit(5.42999, "feet"),
  52549. default: true
  52550. },
  52551. ]
  52552. ))
  52553. characterMakers.push(() => makeCharacter(
  52554. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52555. {
  52556. front: {
  52557. height: math.unit(2, "meters"),
  52558. name: "Front",
  52559. image: {
  52560. source: "./media/characters/riley/front.svg",
  52561. extra: 1779/1754,
  52562. bottom: 139/1918
  52563. }
  52564. },
  52565. },
  52566. [
  52567. {
  52568. name: "Normal",
  52569. height: math.unit(2, "meters"),
  52570. default: true
  52571. },
  52572. ]
  52573. ))
  52574. characterMakers.push(() => makeCharacter(
  52575. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  52576. {
  52577. front: {
  52578. height: math.unit(6 + 2/12, "feet"),
  52579. weight: math.unit(195, "lb"),
  52580. preyCapacity: math.unit(6, "people"),
  52581. name: "Front",
  52582. image: {
  52583. source: "./media/characters/shuken-flash/front.svg",
  52584. extra: 1905/1739,
  52585. bottom: 65/1970
  52586. }
  52587. },
  52588. back: {
  52589. height: math.unit(6 + 2/12, "feet"),
  52590. weight: math.unit(195, "lb"),
  52591. preyCapacity: math.unit(6, "people"),
  52592. name: "Back",
  52593. image: {
  52594. source: "./media/characters/shuken-flash/back.svg",
  52595. extra: 1912/1751,
  52596. bottom: 13/1925
  52597. }
  52598. },
  52599. },
  52600. [
  52601. {
  52602. name: "Normal",
  52603. height: math.unit(6 + 2/12, "feet"),
  52604. default: true
  52605. },
  52606. ]
  52607. ))
  52608. characterMakers.push(() => makeCharacter(
  52609. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  52610. {
  52611. front: {
  52612. height: math.unit(5 + 9/12, "feet"),
  52613. weight: math.unit(150, "lb"),
  52614. name: "Front",
  52615. image: {
  52616. source: "./media/characters/plat/front.svg",
  52617. extra: 1816/1703,
  52618. bottom: 43/1859
  52619. }
  52620. },
  52621. side: {
  52622. height: math.unit(5 + 9/12, "feet"),
  52623. weight: math.unit(300, "lb"),
  52624. name: "Side",
  52625. image: {
  52626. source: "./media/characters/plat/side.svg",
  52627. extra: 1824/1699,
  52628. bottom: 18/1842
  52629. }
  52630. },
  52631. },
  52632. [
  52633. {
  52634. name: "Normal",
  52635. height: math.unit(5 + 9/12, "feet"),
  52636. default: true
  52637. },
  52638. ]
  52639. ))
  52640. characterMakers.push(() => makeCharacter(
  52641. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  52642. {
  52643. front: {
  52644. height: math.unit(9, "feet"),
  52645. weight: math.unit(1800, "lb"),
  52646. name: "Front",
  52647. image: {
  52648. source: "./media/characters/elaine/front.svg",
  52649. extra: 1833/1354,
  52650. bottom: 25/1858
  52651. }
  52652. },
  52653. back: {
  52654. height: math.unit(8.8, "feet"),
  52655. weight: math.unit(1800, "lb"),
  52656. name: "Back",
  52657. image: {
  52658. source: "./media/characters/elaine/back.svg",
  52659. extra: 1641/1233,
  52660. bottom: 53/1694
  52661. }
  52662. },
  52663. },
  52664. [
  52665. {
  52666. name: "Normal",
  52667. height: math.unit(9, "feet"),
  52668. default: true
  52669. },
  52670. ]
  52671. ))
  52672. characterMakers.push(() => makeCharacter(
  52673. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  52674. {
  52675. front: {
  52676. height: math.unit(17 + 9/12, "feet"),
  52677. weight: math.unit(8000, "lb"),
  52678. name: "Front",
  52679. image: {
  52680. source: "./media/characters/vera-raven/front.svg",
  52681. extra: 1457/1412,
  52682. bottom: 121/1578
  52683. }
  52684. },
  52685. side: {
  52686. height: math.unit(17 + 9/12, "feet"),
  52687. weight: math.unit(8000, "lb"),
  52688. name: "Side",
  52689. image: {
  52690. source: "./media/characters/vera-raven/side.svg",
  52691. extra: 1510/1464,
  52692. bottom: 54/1564
  52693. }
  52694. },
  52695. },
  52696. [
  52697. {
  52698. name: "Normal",
  52699. height: math.unit(17 + 9/12, "feet"),
  52700. default: true
  52701. },
  52702. ]
  52703. ))
  52704. characterMakers.push(() => makeCharacter(
  52705. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  52706. {
  52707. dressed: {
  52708. height: math.unit(6 + 9/12, "feet"),
  52709. name: "Dressed",
  52710. image: {
  52711. source: "./media/characters/nakisha/dressed.svg",
  52712. extra: 1909/1757,
  52713. bottom: 48/1957
  52714. }
  52715. },
  52716. nude: {
  52717. height: math.unit(6 + 9/12, "feet"),
  52718. name: "Nude",
  52719. image: {
  52720. source: "./media/characters/nakisha/nude.svg",
  52721. extra: 1917/1765,
  52722. bottom: 34/1951
  52723. }
  52724. },
  52725. },
  52726. [
  52727. {
  52728. name: "Normal",
  52729. height: math.unit(6 + 9/12, "feet"),
  52730. default: true
  52731. },
  52732. ]
  52733. ))
  52734. characterMakers.push(() => makeCharacter(
  52735. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  52736. {
  52737. front: {
  52738. height: math.unit(87, "meters"),
  52739. name: "Front",
  52740. image: {
  52741. source: "./media/characters/serafin/front.svg",
  52742. extra: 1919/1776,
  52743. bottom: 65/1984
  52744. }
  52745. },
  52746. },
  52747. [
  52748. {
  52749. name: "Normal",
  52750. height: math.unit(87, "meters"),
  52751. default: true
  52752. },
  52753. ]
  52754. ))
  52755. characterMakers.push(() => makeCharacter(
  52756. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  52757. {
  52758. front: {
  52759. height: math.unit(6, "feet"),
  52760. weight: math.unit(200, "lb"),
  52761. name: "Front",
  52762. image: {
  52763. source: "./media/characters/poptart/front.svg",
  52764. extra: 615/583,
  52765. bottom: 23/638
  52766. }
  52767. },
  52768. back: {
  52769. height: math.unit(6, "feet"),
  52770. weight: math.unit(200, "lb"),
  52771. name: "Back",
  52772. image: {
  52773. source: "./media/characters/poptart/back.svg",
  52774. extra: 617/584,
  52775. bottom: 22/639
  52776. }
  52777. },
  52778. frontNsfw: {
  52779. height: math.unit(6, "feet"),
  52780. weight: math.unit(200, "lb"),
  52781. name: "Front (NSFW)",
  52782. image: {
  52783. source: "./media/characters/poptart/front-nsfw.svg",
  52784. extra: 615/583,
  52785. bottom: 23/638
  52786. }
  52787. },
  52788. backNsfw: {
  52789. height: math.unit(6, "feet"),
  52790. weight: math.unit(200, "lb"),
  52791. name: "Back (NSFW)",
  52792. image: {
  52793. source: "./media/characters/poptart/back-nsfw.svg",
  52794. extra: 617/584,
  52795. bottom: 22/639
  52796. }
  52797. },
  52798. hand: {
  52799. height: math.unit(1.14, "feet"),
  52800. name: "Hand",
  52801. image: {
  52802. source: "./media/characters/poptart/hand.svg"
  52803. }
  52804. },
  52805. foot: {
  52806. height: math.unit(1.5, "feet"),
  52807. name: "Foot",
  52808. image: {
  52809. source: "./media/characters/poptart/foot.svg"
  52810. }
  52811. },
  52812. },
  52813. [
  52814. {
  52815. name: "Normal",
  52816. height: math.unit(6, "feet"),
  52817. default: true
  52818. },
  52819. {
  52820. name: "Grande",
  52821. height: math.unit(350, "feet")
  52822. },
  52823. {
  52824. name: "Massif",
  52825. height: math.unit(967, "feet")
  52826. },
  52827. ]
  52828. ))
  52829. characterMakers.push(() => makeCharacter(
  52830. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  52831. {
  52832. hyenaSide: {
  52833. height: math.unit(120, "cm"),
  52834. weight: math.unit(120, "lb"),
  52835. name: "Side",
  52836. image: {
  52837. source: "./media/characters/trance/hyena-side.svg",
  52838. extra: 998/904,
  52839. bottom: 76/1074
  52840. }
  52841. },
  52842. },
  52843. [
  52844. {
  52845. name: "Normal",
  52846. height: math.unit(120, "cm"),
  52847. default: true
  52848. },
  52849. {
  52850. name: "Dire",
  52851. height: math.unit(230, "cm")
  52852. },
  52853. {
  52854. name: "Macro",
  52855. height: math.unit(37, "feet")
  52856. },
  52857. ]
  52858. ))
  52859. characterMakers.push(() => makeCharacter(
  52860. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  52861. {
  52862. front: {
  52863. height: math.unit(6 + 3/12, "feet"),
  52864. name: "Front",
  52865. image: {
  52866. source: "./media/characters/michael-berretta/front.svg",
  52867. extra: 515/494,
  52868. bottom: 20/535
  52869. }
  52870. },
  52871. back: {
  52872. height: math.unit(6 + 3/12, "feet"),
  52873. name: "Back",
  52874. image: {
  52875. source: "./media/characters/michael-berretta/back.svg",
  52876. extra: 520/497,
  52877. bottom: 21/541
  52878. }
  52879. },
  52880. frontNsfw: {
  52881. height: math.unit(6 + 3/12, "feet"),
  52882. name: "Front (NSFW)",
  52883. image: {
  52884. source: "./media/characters/michael-berretta/front-nsfw.svg",
  52885. extra: 515/494,
  52886. bottom: 20/535
  52887. }
  52888. },
  52889. dick: {
  52890. height: math.unit(1, "feet"),
  52891. name: "Dick",
  52892. image: {
  52893. source: "./media/characters/michael-berretta/dick.svg"
  52894. }
  52895. },
  52896. },
  52897. [
  52898. {
  52899. name: "Normal",
  52900. height: math.unit(6 + 3/12, "feet"),
  52901. default: true
  52902. },
  52903. {
  52904. name: "Big",
  52905. height: math.unit(12, "feet")
  52906. },
  52907. {
  52908. name: "Macro",
  52909. height: math.unit(187.5, "feet")
  52910. },
  52911. ]
  52912. ))
  52913. characterMakers.push(() => makeCharacter(
  52914. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  52915. {
  52916. front: {
  52917. height: math.unit(9 + 9/12, "feet"),
  52918. weight: math.unit(1244, "lb"),
  52919. name: "Front",
  52920. image: {
  52921. source: "./media/characters/stella-edgecomb/front.svg",
  52922. extra: 1835/1706,
  52923. bottom: 49/1884
  52924. }
  52925. },
  52926. pen: {
  52927. height: math.unit(0.95, "feet"),
  52928. name: "Pen",
  52929. image: {
  52930. source: "./media/characters/stella-edgecomb/pen.svg"
  52931. }
  52932. },
  52933. },
  52934. [
  52935. {
  52936. name: "Cozy Bear",
  52937. height: math.unit(0.5, "inches")
  52938. },
  52939. {
  52940. name: "Normal",
  52941. height: math.unit(9 + 9/12, "feet"),
  52942. default: true
  52943. },
  52944. {
  52945. name: "Giga Bear",
  52946. height: math.unit(1, "mile")
  52947. },
  52948. {
  52949. name: "Great Bear",
  52950. height: math.unit(53, "miles")
  52951. },
  52952. {
  52953. name: "Goddess Bear",
  52954. height: math.unit(40000, "miles")
  52955. },
  52956. {
  52957. name: "Sun Bear",
  52958. height: math.unit(900000, "miles")
  52959. },
  52960. ]
  52961. ))
  52962. characterMakers.push(() => makeCharacter(
  52963. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  52964. {
  52965. anthroFront: {
  52966. height: math.unit(556, "cm"),
  52967. weight: math.unit(2650, "kg"),
  52968. preyCapacity: math.unit(3, "people"),
  52969. name: "Front",
  52970. image: {
  52971. source: "./media/characters/ash´iika/front.svg",
  52972. extra: 710/673,
  52973. bottom: 15/725
  52974. },
  52975. form: "anthro",
  52976. default: true
  52977. },
  52978. anthroSide: {
  52979. height: math.unit(556, "cm"),
  52980. weight: math.unit(2650, "kg"),
  52981. preyCapacity: math.unit(3, "people"),
  52982. name: "Side",
  52983. image: {
  52984. source: "./media/characters/ash´iika/side.svg",
  52985. extra: 696/676,
  52986. bottom: 13/709
  52987. },
  52988. form: "anthro"
  52989. },
  52990. anthroDressed: {
  52991. height: math.unit(556, "cm"),
  52992. weight: math.unit(2650, "kg"),
  52993. preyCapacity: math.unit(3, "people"),
  52994. name: "Dressed",
  52995. image: {
  52996. source: "./media/characters/ash´iika/dressed.svg",
  52997. extra: 710/673,
  52998. bottom: 15/725
  52999. },
  53000. form: "anthro"
  53001. },
  53002. anthroHead: {
  53003. height: math.unit(3.5, "feet"),
  53004. name: "Head",
  53005. image: {
  53006. source: "./media/characters/ash´iika/head.svg",
  53007. extra: 348/291,
  53008. bottom: 45/393
  53009. },
  53010. form: "anthro"
  53011. },
  53012. feralSide: {
  53013. height: math.unit(870, "cm"),
  53014. weight: math.unit(17500, "kg"),
  53015. preyCapacity: math.unit(15, "people"),
  53016. name: "Side",
  53017. image: {
  53018. source: "./media/characters/ash´iika/feral.svg",
  53019. extra: 595/199,
  53020. bottom: 7/602
  53021. },
  53022. form: "feral",
  53023. default: true,
  53024. },
  53025. },
  53026. [
  53027. {
  53028. name: "Normal",
  53029. height: math.unit(556, "cm"),
  53030. default: true,
  53031. form: "anthro"
  53032. },
  53033. {
  53034. name: "Macro",
  53035. height: math.unit(88, "meters"),
  53036. form: "anthro"
  53037. },
  53038. {
  53039. name: "Normal",
  53040. height: math.unit(870, "cm"),
  53041. default: true,
  53042. form: "feral"
  53043. },
  53044. {
  53045. name: "Large",
  53046. height: math.unit(25, "meters"),
  53047. form: "feral"
  53048. },
  53049. ],
  53050. {
  53051. "anthro": {
  53052. name: "Anthro",
  53053. default: true
  53054. },
  53055. "feral": {
  53056. name: "Feral",
  53057. },
  53058. }
  53059. ))
  53060. characterMakers.push(() => makeCharacter(
  53061. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53062. {
  53063. front: {
  53064. height: math.unit(10, "feet"),
  53065. weight: math.unit(800, "lb"),
  53066. name: "Front",
  53067. image: {
  53068. source: "./media/characters/yen/front.svg",
  53069. extra: 443/411,
  53070. bottom: 6/449
  53071. }
  53072. },
  53073. sleeping: {
  53074. height: math.unit(10, "feet"),
  53075. weight: math.unit(800, "lb"),
  53076. name: "Sleeping",
  53077. image: {
  53078. source: "./media/characters/yen/sleeping.svg",
  53079. extra: 470/422,
  53080. bottom: 0/470
  53081. }
  53082. },
  53083. head: {
  53084. height: math.unit(2.2, "feet"),
  53085. name: "Head",
  53086. image: {
  53087. source: "./media/characters/yen/head.svg"
  53088. }
  53089. },
  53090. headAlt: {
  53091. height: math.unit(2.1, "feet"),
  53092. name: "Head (Alt)",
  53093. image: {
  53094. source: "./media/characters/yen/head-alt.svg"
  53095. }
  53096. },
  53097. },
  53098. [
  53099. {
  53100. name: "Normal",
  53101. height: math.unit(10, "feet"),
  53102. default: true
  53103. },
  53104. ]
  53105. ))
  53106. characterMakers.push(() => makeCharacter(
  53107. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53108. {
  53109. front: {
  53110. height: math.unit(12, "feet"),
  53111. name: "Front",
  53112. image: {
  53113. source: "./media/characters/citra/front.svg",
  53114. extra: 1950/1710,
  53115. bottom: 47/1997
  53116. }
  53117. },
  53118. },
  53119. [
  53120. {
  53121. name: "Normal",
  53122. height: math.unit(12, "feet"),
  53123. default: true
  53124. },
  53125. ]
  53126. ))
  53127. characterMakers.push(() => makeCharacter(
  53128. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53129. {
  53130. side: {
  53131. height: math.unit(7 + 10/12, "feet"),
  53132. name: "Side",
  53133. image: {
  53134. source: "./media/characters/sholstim/side.svg",
  53135. extra: 786/682,
  53136. bottom: 40/826
  53137. }
  53138. },
  53139. },
  53140. [
  53141. {
  53142. name: "Normal",
  53143. height: math.unit(7 + 10/12, "feet"),
  53144. default: true
  53145. },
  53146. ]
  53147. ))
  53148. characterMakers.push(() => makeCharacter(
  53149. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53150. {
  53151. front: {
  53152. height: math.unit(3.10, "meters"),
  53153. name: "Front",
  53154. image: {
  53155. source: "./media/characters/aggyn/front.svg",
  53156. extra: 1188/963,
  53157. bottom: 24/1212
  53158. }
  53159. },
  53160. },
  53161. [
  53162. {
  53163. name: "Normal",
  53164. height: math.unit(3.10, "meters"),
  53165. default: true
  53166. },
  53167. ]
  53168. ))
  53169. characterMakers.push(() => makeCharacter(
  53170. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53171. {
  53172. front: {
  53173. height: math.unit(7 + 5/12, "feet"),
  53174. weight: math.unit(687, "lb"),
  53175. name: "Front",
  53176. image: {
  53177. source: "./media/characters/alsandair-hergenroether/front.svg",
  53178. extra: 1251/1186,
  53179. bottom: 75/1326
  53180. }
  53181. },
  53182. back: {
  53183. height: math.unit(7 + 5/12, "feet"),
  53184. weight: math.unit(687, "lb"),
  53185. name: "Back",
  53186. image: {
  53187. source: "./media/characters/alsandair-hergenroether/back.svg",
  53188. extra: 1290/1229,
  53189. bottom: 17/1307
  53190. }
  53191. },
  53192. },
  53193. [
  53194. {
  53195. name: "Max Compression",
  53196. height: math.unit(7 + 5/12, "feet"),
  53197. default: true
  53198. },
  53199. {
  53200. name: "\"Normal\"",
  53201. height: math.unit(2, "universes")
  53202. },
  53203. ]
  53204. ))
  53205. characterMakers.push(() => makeCharacter(
  53206. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53207. {
  53208. front: {
  53209. height: math.unit(4 + 1/12, "feet"),
  53210. weight: math.unit(92, "lb"),
  53211. name: "Front",
  53212. image: {
  53213. source: "./media/characters/ie/front.svg",
  53214. extra: 1585/1352,
  53215. bottom: 91/1676
  53216. }
  53217. },
  53218. },
  53219. [
  53220. {
  53221. name: "Normal",
  53222. height: math.unit(4 + 1/12, "feet"),
  53223. default: true
  53224. },
  53225. ]
  53226. ))
  53227. characterMakers.push(() => makeCharacter(
  53228. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53229. {
  53230. anthro: {
  53231. height: math.unit(6, "feet"),
  53232. weight: math.unit(150, "lb"),
  53233. name: "Front",
  53234. image: {
  53235. source: "./media/characters/willow/anthro.svg",
  53236. extra: 1073/986,
  53237. bottom: 34/1107
  53238. },
  53239. form: "anthro",
  53240. default: true
  53241. },
  53242. taur: {
  53243. height: math.unit(6, "feet"),
  53244. weight: math.unit(150, "lb"),
  53245. name: "Side",
  53246. image: {
  53247. source: "./media/characters/willow/taur.svg",
  53248. extra: 647/512,
  53249. bottom: 136/783
  53250. },
  53251. form: "taur",
  53252. default: true
  53253. },
  53254. },
  53255. [
  53256. {
  53257. name: "Humanoid",
  53258. height: math.unit(2.7, "meters"),
  53259. form: "anthro"
  53260. },
  53261. {
  53262. name: "Normal",
  53263. height: math.unit(9, "meters"),
  53264. form: "anthro",
  53265. default: true
  53266. },
  53267. {
  53268. name: "Humanoid",
  53269. height: math.unit(2.1, "meters"),
  53270. form: "taur"
  53271. },
  53272. {
  53273. name: "Normal",
  53274. height: math.unit(7, "meters"),
  53275. form: "taur",
  53276. default: true
  53277. },
  53278. ],
  53279. {
  53280. "anthro": {
  53281. name: "Anthro",
  53282. default: true
  53283. },
  53284. "taur": {
  53285. name: "Taur",
  53286. },
  53287. }
  53288. ))
  53289. characterMakers.push(() => makeCharacter(
  53290. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53291. {
  53292. front: {
  53293. height: math.unit(2 + 5/12, "feet"),
  53294. name: "Front",
  53295. image: {
  53296. source: "./media/characters/kyan/front.svg",
  53297. extra: 460/334,
  53298. bottom: 23/483
  53299. },
  53300. extraAttributes: {
  53301. "toeLength": {
  53302. name: "Toe Length",
  53303. power: 1,
  53304. type: "length",
  53305. base: math.unit(7, "cm")
  53306. },
  53307. "toeclawLength": {
  53308. name: "Toeclaw Length",
  53309. power: 1,
  53310. type: "length",
  53311. base: math.unit(4.7, "cm")
  53312. },
  53313. "earHeight": {
  53314. name: "Ear Height",
  53315. power: 1,
  53316. type: "length",
  53317. base: math.unit(14.1, "cm")
  53318. },
  53319. }
  53320. },
  53321. paws: {
  53322. height: math.unit(0.45, "feet"),
  53323. name: "Paws",
  53324. image: {
  53325. source: "./media/characters/kyan/paws.svg",
  53326. extra: 581/581,
  53327. bottom: 114/695
  53328. }
  53329. },
  53330. },
  53331. [
  53332. {
  53333. name: "Normal",
  53334. height: math.unit(2 + 5/12, "feet"),
  53335. default: true
  53336. },
  53337. ]
  53338. ))
  53339. characterMakers.push(() => makeCharacter(
  53340. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53341. {
  53342. front: {
  53343. height: math.unit(2 + 2/3, "feet"),
  53344. name: "Front",
  53345. image: {
  53346. source: "./media/characters/xazzon/front.svg",
  53347. extra: 1109/984,
  53348. bottom: 42/1151
  53349. }
  53350. },
  53351. back: {
  53352. height: math.unit(2 + 2/3, "feet"),
  53353. name: "Back",
  53354. image: {
  53355. source: "./media/characters/xazzon/back.svg",
  53356. extra: 1095/971,
  53357. bottom: 23/1118
  53358. }
  53359. },
  53360. },
  53361. [
  53362. {
  53363. name: "Normal",
  53364. height: math.unit(2 + 2/3, "feet"),
  53365. default: true
  53366. },
  53367. ]
  53368. ))
  53369. characterMakers.push(() => makeCharacter(
  53370. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53371. {
  53372. dressed: {
  53373. height: math.unit(5 + 7/12, "feet"),
  53374. weight: math.unit(173, "lb"),
  53375. name: "Dressed",
  53376. image: {
  53377. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53378. extra: 3262/2862,
  53379. bottom: 188/3450
  53380. }
  53381. },
  53382. undressed: {
  53383. height: math.unit(5 + 7/12, "feet"),
  53384. weight: math.unit(173, "lb"),
  53385. name: "Undressed",
  53386. image: {
  53387. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53388. extra: 3262/2862,
  53389. bottom: 188/3450
  53390. }
  53391. },
  53392. },
  53393. [
  53394. {
  53395. name: "The void",
  53396. height: math.unit(7.29193e-34, "angstroms")
  53397. },
  53398. {
  53399. name: "Uh-Oh.",
  53400. height: math.unit(5.734e-7, "angstroms")
  53401. },
  53402. {
  53403. name: "Pico",
  53404. height: math.unit(0.876, "angstroms")
  53405. },
  53406. {
  53407. name: "Nano",
  53408. height: math.unit(0.000134200, "mm")
  53409. },
  53410. {
  53411. name: "Micro",
  53412. height: math.unit(0.0673020, "mm")
  53413. },
  53414. {
  53415. name: "Tiny",
  53416. height: math.unit(2.4, "mm")
  53417. },
  53418. {
  53419. name: "Actual Normal",
  53420. height: math.unit(3, "inches"),
  53421. default: true
  53422. },
  53423. {
  53424. name: "Normal",
  53425. height: math.unit(5 + 8/12, "feet")
  53426. },
  53427. {
  53428. name: "Giant",
  53429. height: math.unit(12, "feet")
  53430. },
  53431. {
  53432. name: "City Ruler",
  53433. height: math.unit(270, "meters")
  53434. },
  53435. {
  53436. name: "Giga",
  53437. height: math.unit(1117.6, "km")
  53438. },
  53439. {
  53440. name: "All-Powerful Queen",
  53441. height: math.unit(70.8, "gigameters")
  53442. },
  53443. {
  53444. name: "'Goddess'",
  53445. height: math.unit(600, "yottameters")
  53446. },
  53447. {
  53448. name: "Biggest!",
  53449. height: math.unit(4.23e5, "yottameters")
  53450. },
  53451. ]
  53452. ))
  53453. characterMakers.push(() => makeCharacter(
  53454. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53455. {
  53456. front: {
  53457. height: math.unit(8, "feet"),
  53458. weight: math.unit(300, "lb"),
  53459. name: "Front",
  53460. image: {
  53461. source: "./media/characters/khyla-shadowsong/front.svg",
  53462. extra: 861/798,
  53463. bottom: 32/893
  53464. }
  53465. },
  53466. side: {
  53467. height: math.unit(8, "feet"),
  53468. weight: math.unit(300, "lb"),
  53469. name: "Side",
  53470. image: {
  53471. source: "./media/characters/khyla-shadowsong/side.svg",
  53472. extra: 790/750,
  53473. bottom: 87/877
  53474. }
  53475. },
  53476. back: {
  53477. height: math.unit(8, "feet"),
  53478. weight: math.unit(300, "lb"),
  53479. name: "Back",
  53480. image: {
  53481. source: "./media/characters/khyla-shadowsong/back.svg",
  53482. extra: 855/808,
  53483. bottom: 14/869
  53484. }
  53485. },
  53486. head: {
  53487. height: math.unit(2.7, "feet"),
  53488. name: "Head",
  53489. image: {
  53490. source: "./media/characters/khyla-shadowsong/head.svg"
  53491. }
  53492. },
  53493. },
  53494. [
  53495. {
  53496. name: "Micro",
  53497. height: math.unit(6, "inches")
  53498. },
  53499. {
  53500. name: "Normal",
  53501. height: math.unit(8, "feet"),
  53502. default: true
  53503. },
  53504. ]
  53505. ))
  53506. //characters
  53507. function makeCharacters() {
  53508. const results = [];
  53509. characterMakers.forEach(character => {
  53510. results.push(character());
  53511. });
  53512. return results;
  53513. }