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.
 
 
 

54623 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. }
  2071. //species
  2072. function getSpeciesInfo(speciesList) {
  2073. let result = new Set();
  2074. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2075. result.add(entry)
  2076. });
  2077. return Array.from(result);
  2078. };
  2079. function getSpeciesInfoHelper(species) {
  2080. if (!speciesData[species]) {
  2081. console.warn(species + " doesn't exist");
  2082. return [];
  2083. }
  2084. if (speciesData[species].parents) {
  2085. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2086. } else {
  2087. return [species];
  2088. }
  2089. }
  2090. characterMakers.push(() => makeCharacter(
  2091. {
  2092. name: "Fen",
  2093. species: ["crux"],
  2094. description: {
  2095. title: "Bio",
  2096. text: "Very furry. Sheds on everything."
  2097. },
  2098. tags: [
  2099. "anthro",
  2100. "goo"
  2101. ]
  2102. },
  2103. {
  2104. front: {
  2105. height: math.unit(12, "feet"),
  2106. weight: math.unit(2400, "lb"),
  2107. name: "Front",
  2108. image: {
  2109. source: "./media/characters/fen/front.svg",
  2110. extra: 1804/1562,
  2111. bottom: 205/2009
  2112. },
  2113. extraAttributes: {
  2114. pawSize: {
  2115. name: "Paw Size",
  2116. power: 2,
  2117. type: "area",
  2118. base: math.unit(0.35, "m^2")
  2119. }
  2120. }
  2121. },
  2122. diving: {
  2123. height: math.unit(4.9, "meters"),
  2124. weight: math.unit(2400, "lb"),
  2125. name: "Diving",
  2126. image: {
  2127. source: "./media/characters/fen/diving.svg"
  2128. }
  2129. },
  2130. goo: {
  2131. height: math.unit(12, "feet"),
  2132. weight: math.unit(3600, "lb"),
  2133. volume: math.unit(1000, "liters"),
  2134. preyCapacity: math.unit(6, "people"),
  2135. name: "Goo",
  2136. image: {
  2137. source: "./media/characters/fen/goo.svg",
  2138. extra: 1307/1071,
  2139. bottom: 134/1441
  2140. }
  2141. },
  2142. gooNsfw: {
  2143. height: math.unit(12, "feet"),
  2144. weight: math.unit(3750, "lb"),
  2145. volume: math.unit(1000, "liters"),
  2146. preyCapacity: math.unit(6, "people"),
  2147. name: "Goo (NSFW)",
  2148. image: {
  2149. source: "./media/characters/fen/goo-nsfw.svg",
  2150. extra: 1875/1734,
  2151. bottom: 122/1997
  2152. }
  2153. },
  2154. maw: {
  2155. height: math.unit(5.03, "feet"),
  2156. name: "Maw",
  2157. image: {
  2158. source: "./media/characters/fen/maw.svg"
  2159. }
  2160. },
  2161. gooCeiling: {
  2162. height: math.unit(6.6, "feet"),
  2163. weight: math.unit(3000, "lb"),
  2164. volume: math.unit(1000, "liters"),
  2165. preyCapacity: math.unit(6, "people"),
  2166. name: "Goo (Ceiling)",
  2167. image: {
  2168. source: "./media/characters/fen/goo-ceiling.svg"
  2169. }
  2170. },
  2171. paw: {
  2172. height: math.unit(3.77, "feet"),
  2173. name: "Paw",
  2174. image: {
  2175. source: "./media/characters/fen/paw.svg"
  2176. },
  2177. extraAttributes: {
  2178. "toeSize": {
  2179. name: "Toe Size",
  2180. power: 2,
  2181. type: "area",
  2182. base: math.unit(0.02875, "m^2")
  2183. },
  2184. "pawSize": {
  2185. name: "Paw Size",
  2186. power: 2,
  2187. type: "area",
  2188. base: math.unit(0.378, "m^2")
  2189. },
  2190. }
  2191. },
  2192. tail: {
  2193. height: math.unit(12.1, "feet"),
  2194. name: "Tail",
  2195. image: {
  2196. source: "./media/characters/fen/tail.svg"
  2197. }
  2198. },
  2199. tailFull: {
  2200. height: math.unit(12.1, "feet"),
  2201. name: "Full Tail",
  2202. image: {
  2203. source: "./media/characters/fen/tail-full.svg"
  2204. }
  2205. },
  2206. back: {
  2207. height: math.unit(12, "feet"),
  2208. weight: math.unit(2400, "lb"),
  2209. name: "Back",
  2210. image: {
  2211. source: "./media/characters/fen/back.svg",
  2212. },
  2213. info: {
  2214. description: {
  2215. mode: "append",
  2216. text: "\n\nHe is not currently looking at you."
  2217. }
  2218. }
  2219. },
  2220. full: {
  2221. height: math.unit(1.85, "meter"),
  2222. weight: math.unit(3200, "lb"),
  2223. name: "Full",
  2224. image: {
  2225. source: "./media/characters/fen/full.svg",
  2226. extra: 1133/859,
  2227. bottom: 145/1278
  2228. },
  2229. info: {
  2230. description: {
  2231. mode: "append",
  2232. text: "\n\nMunch."
  2233. }
  2234. }
  2235. },
  2236. gooLounging: {
  2237. height: math.unit(4.53, "feet"),
  2238. weight: math.unit(3000, "lb"),
  2239. preyCapacity: math.unit(6, "people"),
  2240. name: "Goo (Lounging)",
  2241. image: {
  2242. source: "./media/characters/fen/goo-lounging.svg",
  2243. bottom: 116 / 613
  2244. }
  2245. },
  2246. lounging: {
  2247. height: math.unit(10.52, "feet"),
  2248. weight: math.unit(2400, "lb"),
  2249. name: "Lounging",
  2250. image: {
  2251. source: "./media/characters/fen/lounging.svg"
  2252. }
  2253. },
  2254. },
  2255. [
  2256. {
  2257. name: "Small",
  2258. height: math.unit(2.2428, "meter")
  2259. },
  2260. {
  2261. name: "Normal",
  2262. height: math.unit(12, "feet"),
  2263. default: true,
  2264. },
  2265. {
  2266. name: "Big",
  2267. height: math.unit(20, "feet")
  2268. },
  2269. {
  2270. name: "Minimacro",
  2271. height: math.unit(40, "feet"),
  2272. info: {
  2273. description: {
  2274. mode: "append",
  2275. text: "\n\nTOO DAMN BIG"
  2276. }
  2277. }
  2278. },
  2279. {
  2280. name: "Macro",
  2281. height: math.unit(100, "feet"),
  2282. info: {
  2283. description: {
  2284. mode: "append",
  2285. text: "\n\nTOO DAMN BIG"
  2286. }
  2287. }
  2288. },
  2289. {
  2290. name: "Megamacro",
  2291. height: math.unit(2, "miles")
  2292. },
  2293. {
  2294. name: "Gigamacro",
  2295. height: math.unit(10, "earths")
  2296. },
  2297. ]
  2298. ))
  2299. characterMakers.push(() => makeCharacter(
  2300. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2301. {
  2302. front: {
  2303. height: math.unit(183, "cm"),
  2304. weight: math.unit(80, "kg"),
  2305. name: "Front",
  2306. image: {
  2307. source: "./media/characters/sofia-fluttertail/front.svg",
  2308. bottom: 0.01,
  2309. extra: 2154 / 2081
  2310. }
  2311. },
  2312. frontAlt: {
  2313. height: math.unit(183, "cm"),
  2314. weight: math.unit(80, "kg"),
  2315. name: "Front (alt)",
  2316. image: {
  2317. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2318. }
  2319. },
  2320. back: {
  2321. height: math.unit(183, "cm"),
  2322. weight: math.unit(80, "kg"),
  2323. name: "Back",
  2324. image: {
  2325. source: "./media/characters/sofia-fluttertail/back.svg"
  2326. }
  2327. },
  2328. kneeling: {
  2329. height: math.unit(125, "cm"),
  2330. weight: math.unit(80, "kg"),
  2331. name: "Kneeling",
  2332. image: {
  2333. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2334. extra: 1033 / 977,
  2335. bottom: 23.7 / 1057
  2336. }
  2337. },
  2338. maw: {
  2339. height: math.unit(183 / 5, "cm"),
  2340. name: "Maw",
  2341. image: {
  2342. source: "./media/characters/sofia-fluttertail/maw.svg"
  2343. }
  2344. },
  2345. mawcloseup: {
  2346. height: math.unit(183 / 5 * 0.41, "cm"),
  2347. name: "Maw (Closeup)",
  2348. image: {
  2349. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2350. }
  2351. },
  2352. paws: {
  2353. height: math.unit(1.17, "feet"),
  2354. name: "Paws",
  2355. image: {
  2356. source: "./media/characters/sofia-fluttertail/paws.svg",
  2357. extra: 851 / 851,
  2358. bottom: 17 / 868
  2359. }
  2360. },
  2361. },
  2362. [
  2363. {
  2364. name: "Normal",
  2365. height: math.unit(1.83, "meter")
  2366. },
  2367. {
  2368. name: "Size Thief",
  2369. height: math.unit(18, "feet")
  2370. },
  2371. {
  2372. name: "50 Foot Collie",
  2373. height: math.unit(50, "feet")
  2374. },
  2375. {
  2376. name: "Macro",
  2377. height: math.unit(96, "feet"),
  2378. default: true
  2379. },
  2380. {
  2381. name: "Megamerger",
  2382. height: math.unit(650, "feet")
  2383. },
  2384. ]
  2385. ))
  2386. characterMakers.push(() => makeCharacter(
  2387. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2388. {
  2389. front: {
  2390. height: math.unit(7, "feet"),
  2391. weight: math.unit(100, "kg"),
  2392. name: "Front",
  2393. image: {
  2394. source: "./media/characters/march/front.svg",
  2395. extra: 1992/1851,
  2396. bottom: 39/2031
  2397. }
  2398. },
  2399. foot: {
  2400. height: math.unit(0.9, "feet"),
  2401. name: "Foot",
  2402. image: {
  2403. source: "./media/characters/march/foot.svg"
  2404. }
  2405. },
  2406. },
  2407. [
  2408. {
  2409. name: "Normal",
  2410. height: math.unit(7.9, "feet")
  2411. },
  2412. {
  2413. name: "Macro",
  2414. height: math.unit(220, "meters")
  2415. },
  2416. {
  2417. name: "Megamacro",
  2418. height: math.unit(2.98, "km"),
  2419. default: true
  2420. },
  2421. {
  2422. name: "Gigamacro",
  2423. height: math.unit(15963, "km")
  2424. },
  2425. {
  2426. name: "Teramacro",
  2427. height: math.unit(2980000000, "km")
  2428. },
  2429. {
  2430. name: "Examacro",
  2431. height: math.unit(250, "parsecs")
  2432. },
  2433. ]
  2434. ))
  2435. characterMakers.push(() => makeCharacter(
  2436. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2437. {
  2438. front: {
  2439. height: math.unit(6, "feet"),
  2440. weight: math.unit(60, "kg"),
  2441. name: "Front",
  2442. image: {
  2443. source: "./media/characters/noir/front.svg",
  2444. extra: 1,
  2445. bottom: 0.032
  2446. }
  2447. },
  2448. },
  2449. [
  2450. {
  2451. name: "Normal",
  2452. height: math.unit(6.6, "feet")
  2453. },
  2454. {
  2455. name: "Macro",
  2456. height: math.unit(500, "feet")
  2457. },
  2458. {
  2459. name: "Megamacro",
  2460. height: math.unit(2.5, "km"),
  2461. default: true
  2462. },
  2463. {
  2464. name: "Gigamacro",
  2465. height: math.unit(22500, "km")
  2466. },
  2467. {
  2468. name: "Teramacro",
  2469. height: math.unit(2500000000, "km")
  2470. },
  2471. {
  2472. name: "Examacro",
  2473. height: math.unit(200, "parsecs")
  2474. },
  2475. ]
  2476. ))
  2477. characterMakers.push(() => makeCharacter(
  2478. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2479. {
  2480. front: {
  2481. height: math.unit(7, "feet"),
  2482. weight: math.unit(100, "kg"),
  2483. name: "Front",
  2484. image: {
  2485. source: "./media/characters/okuri/front.svg",
  2486. extra: 739/665,
  2487. bottom: 39/778
  2488. }
  2489. },
  2490. back: {
  2491. height: math.unit(7, "feet"),
  2492. weight: math.unit(100, "kg"),
  2493. name: "Back",
  2494. image: {
  2495. source: "./media/characters/okuri/back.svg",
  2496. extra: 734/653,
  2497. bottom: 13/747
  2498. }
  2499. },
  2500. sitting: {
  2501. height: math.unit(2.95, "feet"),
  2502. weight: math.unit(100, "kg"),
  2503. name: "Sitting",
  2504. image: {
  2505. source: "./media/characters/okuri/sitting.svg",
  2506. extra: 370/318,
  2507. bottom: 99/469
  2508. }
  2509. },
  2510. },
  2511. [
  2512. {
  2513. name: "Smallest",
  2514. height: math.unit(5 + 2/12, "feet")
  2515. },
  2516. {
  2517. name: "Smaller",
  2518. height: math.unit(300, "feet")
  2519. },
  2520. {
  2521. name: "Small",
  2522. height: math.unit(1000, "feet")
  2523. },
  2524. {
  2525. name: "Macro",
  2526. height: math.unit(1, "mile")
  2527. },
  2528. {
  2529. name: "Mega Macro (Small)",
  2530. height: math.unit(20, "km")
  2531. },
  2532. {
  2533. name: "Mega Macro (Large)",
  2534. height: math.unit(600, "km")
  2535. },
  2536. {
  2537. name: "Giga Macro",
  2538. height: math.unit(10000, "km")
  2539. },
  2540. {
  2541. name: "Normal",
  2542. height: math.unit(577560, "km"),
  2543. default: true
  2544. },
  2545. {
  2546. name: "Large",
  2547. height: math.unit(4, "galaxies")
  2548. },
  2549. {
  2550. name: "Largest",
  2551. height: math.unit(15, "multiverses")
  2552. },
  2553. ]
  2554. ))
  2555. characterMakers.push(() => makeCharacter(
  2556. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2557. {
  2558. front: {
  2559. height: math.unit(7, "feet"),
  2560. weight: math.unit(100, "kg"),
  2561. name: "Front",
  2562. image: {
  2563. source: "./media/characters/manny/front.svg",
  2564. extra: 1,
  2565. bottom: 0.06
  2566. }
  2567. },
  2568. back: {
  2569. height: math.unit(7, "feet"),
  2570. weight: math.unit(100, "kg"),
  2571. name: "Back",
  2572. image: {
  2573. source: "./media/characters/manny/back.svg",
  2574. extra: 1,
  2575. bottom: 0.014
  2576. }
  2577. },
  2578. },
  2579. [
  2580. {
  2581. name: "Normal",
  2582. height: math.unit(7, "feet"),
  2583. },
  2584. {
  2585. name: "Macro",
  2586. height: math.unit(78, "feet"),
  2587. default: true
  2588. },
  2589. {
  2590. name: "Macro+",
  2591. height: math.unit(300, "meters")
  2592. },
  2593. {
  2594. name: "Macro++",
  2595. height: math.unit(2400, "meters")
  2596. },
  2597. {
  2598. name: "Megamacro",
  2599. height: math.unit(5167, "meters")
  2600. },
  2601. {
  2602. name: "Gigamacro",
  2603. height: math.unit(41769, "miles")
  2604. },
  2605. ]
  2606. ))
  2607. characterMakers.push(() => makeCharacter(
  2608. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2609. {
  2610. front: {
  2611. height: math.unit(7, "feet"),
  2612. weight: math.unit(100, "kg"),
  2613. name: "Front",
  2614. image: {
  2615. source: "./media/characters/adake/front-1.svg"
  2616. }
  2617. },
  2618. frontAlt: {
  2619. height: math.unit(7, "feet"),
  2620. weight: math.unit(100, "kg"),
  2621. name: "Front (Alt)",
  2622. image: {
  2623. source: "./media/characters/adake/front-2.svg",
  2624. extra: 1,
  2625. bottom: 0.01
  2626. }
  2627. },
  2628. back: {
  2629. height: math.unit(7, "feet"),
  2630. weight: math.unit(100, "kg"),
  2631. name: "Back",
  2632. image: {
  2633. source: "./media/characters/adake/back.svg",
  2634. }
  2635. },
  2636. kneel: {
  2637. height: math.unit(5.385, "feet"),
  2638. weight: math.unit(100, "kg"),
  2639. name: "Kneeling",
  2640. image: {
  2641. source: "./media/characters/adake/kneel.svg",
  2642. bottom: 0.052
  2643. }
  2644. },
  2645. },
  2646. [
  2647. {
  2648. name: "Normal",
  2649. height: math.unit(7, "feet"),
  2650. },
  2651. {
  2652. name: "Macro",
  2653. height: math.unit(78, "feet"),
  2654. default: true
  2655. },
  2656. {
  2657. name: "Macro+",
  2658. height: math.unit(300, "meters")
  2659. },
  2660. {
  2661. name: "Macro++",
  2662. height: math.unit(2400, "meters")
  2663. },
  2664. {
  2665. name: "Megamacro",
  2666. height: math.unit(5167, "meters")
  2667. },
  2668. {
  2669. name: "Gigamacro",
  2670. height: math.unit(41769, "miles")
  2671. },
  2672. ]
  2673. ))
  2674. characterMakers.push(() => makeCharacter(
  2675. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2676. {
  2677. front: {
  2678. height: math.unit(1.65, "meters"),
  2679. weight: math.unit(50, "kg"),
  2680. name: "Front",
  2681. image: {
  2682. source: "./media/characters/elijah/front.svg",
  2683. extra: 858 / 830,
  2684. bottom: 95.5 / 953.8559
  2685. }
  2686. },
  2687. back: {
  2688. height: math.unit(1.65, "meters"),
  2689. weight: math.unit(50, "kg"),
  2690. name: "Back",
  2691. image: {
  2692. source: "./media/characters/elijah/back.svg",
  2693. extra: 895 / 850,
  2694. bottom: 5.3 / 897.956
  2695. }
  2696. },
  2697. frontNsfw: {
  2698. height: math.unit(1.65, "meters"),
  2699. weight: math.unit(50, "kg"),
  2700. name: "Front (NSFW)",
  2701. image: {
  2702. source: "./media/characters/elijah/front-nsfw.svg",
  2703. extra: 858 / 830,
  2704. bottom: 95.5 / 953.8559
  2705. }
  2706. },
  2707. backNsfw: {
  2708. height: math.unit(1.65, "meters"),
  2709. weight: math.unit(50, "kg"),
  2710. name: "Back (NSFW)",
  2711. image: {
  2712. source: "./media/characters/elijah/back-nsfw.svg",
  2713. extra: 895 / 850,
  2714. bottom: 5.3 / 897.956
  2715. }
  2716. },
  2717. dick: {
  2718. height: math.unit(1, "feet"),
  2719. name: "Dick",
  2720. image: {
  2721. source: "./media/characters/elijah/dick.svg"
  2722. }
  2723. },
  2724. beakOpen: {
  2725. height: math.unit(1.25, "feet"),
  2726. name: "Beak (Open)",
  2727. image: {
  2728. source: "./media/characters/elijah/beak-open.svg"
  2729. }
  2730. },
  2731. beakShut: {
  2732. height: math.unit(1.25, "feet"),
  2733. name: "Beak (Shut)",
  2734. image: {
  2735. source: "./media/characters/elijah/beak-shut.svg"
  2736. }
  2737. },
  2738. footFlexing: {
  2739. height: math.unit(1.61, "feet"),
  2740. name: "Foot (Flexing)",
  2741. image: {
  2742. source: "./media/characters/elijah/foot-flexing.svg"
  2743. }
  2744. },
  2745. footStepping: {
  2746. height: math.unit(1.44, "feet"),
  2747. name: "Foot (Stepping)",
  2748. image: {
  2749. source: "./media/characters/elijah/foot-stepping.svg"
  2750. }
  2751. },
  2752. plantigradeLeg: {
  2753. height: math.unit(2.34, "feet"),
  2754. name: "Plantigrade Leg",
  2755. image: {
  2756. source: "./media/characters/elijah/plantigrade-leg.svg"
  2757. }
  2758. },
  2759. plantigradeFootLeft: {
  2760. height: math.unit(0.9, "feet"),
  2761. name: "Plantigrade Foot (Left)",
  2762. image: {
  2763. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2764. }
  2765. },
  2766. plantigradeFootRight: {
  2767. height: math.unit(0.9, "feet"),
  2768. name: "Plantigrade Foot (Right)",
  2769. image: {
  2770. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2771. }
  2772. },
  2773. },
  2774. [
  2775. {
  2776. name: "Normal",
  2777. height: math.unit(1.65, "meters")
  2778. },
  2779. {
  2780. name: "Macro",
  2781. height: math.unit(55, "meters"),
  2782. default: true
  2783. },
  2784. {
  2785. name: "Macro+",
  2786. height: math.unit(105, "meters")
  2787. },
  2788. ]
  2789. ))
  2790. characterMakers.push(() => makeCharacter(
  2791. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2792. {
  2793. front: {
  2794. height: math.unit(7 + 2/12, "feet"),
  2795. weight: math.unit(320, "kg"),
  2796. name: "Front",
  2797. image: {
  2798. source: "./media/characters/rai/front.svg",
  2799. extra: 1802/1696,
  2800. bottom: 68/1870
  2801. }
  2802. },
  2803. frontDressed: {
  2804. height: math.unit(7 + 2/12, "feet"),
  2805. weight: math.unit(320, "kg"),
  2806. name: "Front (Dressed)",
  2807. image: {
  2808. source: "./media/characters/rai/front-dressed.svg",
  2809. extra: 1802/1696,
  2810. bottom: 68/1870
  2811. }
  2812. },
  2813. side: {
  2814. height: math.unit(7 + 2/12, "feet"),
  2815. weight: math.unit(320, "kg"),
  2816. name: "Side",
  2817. image: {
  2818. source: "./media/characters/rai/side.svg",
  2819. extra: 1789/1710,
  2820. bottom: 115/1904
  2821. }
  2822. },
  2823. back: {
  2824. height: math.unit(7 + 2/12, "feet"),
  2825. weight: math.unit(320, "kg"),
  2826. name: "Back",
  2827. image: {
  2828. source: "./media/characters/rai/back.svg",
  2829. extra: 1770/1707,
  2830. bottom: 28/1798
  2831. }
  2832. },
  2833. feral: {
  2834. height: math.unit(9.5, "feet"),
  2835. weight: math.unit(640, "kg"),
  2836. name: "Feral",
  2837. image: {
  2838. source: "./media/characters/rai/feral.svg",
  2839. extra: 945/553,
  2840. bottom: 176/1121
  2841. }
  2842. },
  2843. dragon: {
  2844. height: math.unit(23, "feet"),
  2845. weight: math.unit(50000, "lb"),
  2846. name: "Dragon",
  2847. image: {
  2848. source: "./media/characters/rai/dragon.svg",
  2849. extra: 2498 / 2030,
  2850. bottom: 85.2 / 2584
  2851. }
  2852. },
  2853. maw: {
  2854. height: math.unit(1.69, "feet"),
  2855. name: "Maw",
  2856. image: {
  2857. source: "./media/characters/rai/maw.svg"
  2858. }
  2859. },
  2860. },
  2861. [
  2862. {
  2863. name: "Normal",
  2864. height: math.unit(7 + 2/12, "feet")
  2865. },
  2866. {
  2867. name: "Big",
  2868. height: math.unit(11, "feet")
  2869. },
  2870. {
  2871. name: "Macro",
  2872. height: math.unit(302, "feet"),
  2873. default: true
  2874. },
  2875. ]
  2876. ))
  2877. characterMakers.push(() => makeCharacter(
  2878. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2879. {
  2880. frontDressed: {
  2881. height: math.unit(216, "feet"),
  2882. weight: math.unit(7000000, "lb"),
  2883. name: "Front (Dressed)",
  2884. image: {
  2885. source: "./media/characters/jazzy/front-dressed.svg",
  2886. extra: 2738 / 2651,
  2887. bottom: 41.8 / 2786
  2888. }
  2889. },
  2890. backDressed: {
  2891. height: math.unit(216, "feet"),
  2892. weight: math.unit(7000000, "lb"),
  2893. name: "Back (Dressed)",
  2894. image: {
  2895. source: "./media/characters/jazzy/back-dressed.svg",
  2896. extra: 2775 / 2673,
  2897. bottom: 36.8 / 2817
  2898. }
  2899. },
  2900. front: {
  2901. height: math.unit(216, "feet"),
  2902. weight: math.unit(7000000, "lb"),
  2903. name: "Front",
  2904. image: {
  2905. source: "./media/characters/jazzy/front.svg",
  2906. extra: 2738 / 2651,
  2907. bottom: 41.8 / 2786
  2908. }
  2909. },
  2910. back: {
  2911. height: math.unit(216, "feet"),
  2912. weight: math.unit(7000000, "lb"),
  2913. name: "Back",
  2914. image: {
  2915. source: "./media/characters/jazzy/back.svg",
  2916. extra: 2775 / 2673,
  2917. bottom: 36.8 / 2817
  2918. }
  2919. },
  2920. maw: {
  2921. height: math.unit(20, "feet"),
  2922. name: "Maw",
  2923. image: {
  2924. source: "./media/characters/jazzy/maw.svg"
  2925. }
  2926. },
  2927. paws: {
  2928. height: math.unit(27.5, "feet"),
  2929. name: "Paws",
  2930. image: {
  2931. source: "./media/characters/jazzy/paws.svg"
  2932. }
  2933. },
  2934. eye: {
  2935. height: math.unit(4.4, "feet"),
  2936. name: "Eye",
  2937. image: {
  2938. source: "./media/characters/jazzy/eye.svg"
  2939. }
  2940. },
  2941. droneOffense: {
  2942. height: math.unit(9.5, "inches"),
  2943. name: "Drone (Offense)",
  2944. image: {
  2945. source: "./media/characters/jazzy/drone-offense.svg"
  2946. }
  2947. },
  2948. droneRecon: {
  2949. height: math.unit(9.5, "inches"),
  2950. name: "Drone (Recon)",
  2951. image: {
  2952. source: "./media/characters/jazzy/drone-recon.svg"
  2953. }
  2954. },
  2955. droneDefense: {
  2956. height: math.unit(9.5, "inches"),
  2957. name: "Drone (Defense)",
  2958. image: {
  2959. source: "./media/characters/jazzy/drone-defense.svg"
  2960. }
  2961. },
  2962. },
  2963. [
  2964. {
  2965. name: "Macro",
  2966. height: math.unit(216, "feet"),
  2967. default: true
  2968. },
  2969. ]
  2970. ))
  2971. characterMakers.push(() => makeCharacter(
  2972. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2973. {
  2974. front: {
  2975. height: math.unit(9 + 6/12, "feet"),
  2976. weight: math.unit(700, "lb"),
  2977. name: "Front",
  2978. image: {
  2979. source: "./media/characters/flamm/front.svg",
  2980. extra: 1751/1632,
  2981. bottom: 46/1797
  2982. }
  2983. },
  2984. buff: {
  2985. height: math.unit(9 + 6/12, "feet"),
  2986. weight: math.unit(950, "lb"),
  2987. name: "Buff",
  2988. image: {
  2989. source: "./media/characters/flamm/buff.svg",
  2990. extra: 3018/2874,
  2991. bottom: 221/3239
  2992. }
  2993. },
  2994. },
  2995. [
  2996. {
  2997. name: "Normal",
  2998. height: math.unit(9.5, "feet")
  2999. },
  3000. {
  3001. name: "Macro",
  3002. height: math.unit(200, "feet"),
  3003. default: true
  3004. },
  3005. ]
  3006. ))
  3007. characterMakers.push(() => makeCharacter(
  3008. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3009. {
  3010. front: {
  3011. height: math.unit(5 + 3/12, "feet"),
  3012. weight: math.unit(60, "kg"),
  3013. name: "Front",
  3014. image: {
  3015. source: "./media/characters/zephiro/front.svg",
  3016. extra: 1873/1761,
  3017. bottom: 147/2020
  3018. }
  3019. },
  3020. side: {
  3021. height: math.unit(5 + 3/12, "feet"),
  3022. weight: math.unit(60, "kg"),
  3023. name: "Side",
  3024. image: {
  3025. source: "./media/characters/zephiro/side.svg",
  3026. extra: 1929/1827,
  3027. bottom: 65/1994
  3028. }
  3029. },
  3030. back: {
  3031. height: math.unit(5 + 3/12, "feet"),
  3032. weight: math.unit(60, "kg"),
  3033. name: "Back",
  3034. image: {
  3035. source: "./media/characters/zephiro/back.svg",
  3036. extra: 1926/1816,
  3037. bottom: 41/1967
  3038. }
  3039. },
  3040. hand: {
  3041. height: math.unit(0.68, "feet"),
  3042. name: "Hand",
  3043. image: {
  3044. source: "./media/characters/zephiro/hand.svg"
  3045. }
  3046. },
  3047. paw: {
  3048. height: math.unit(1, "feet"),
  3049. name: "Paw",
  3050. image: {
  3051. source: "./media/characters/zephiro/paw.svg"
  3052. }
  3053. },
  3054. beans: {
  3055. height: math.unit(0.93, "feet"),
  3056. name: "Beans",
  3057. image: {
  3058. source: "./media/characters/zephiro/beans.svg"
  3059. }
  3060. },
  3061. },
  3062. [
  3063. {
  3064. name: "Micro",
  3065. height: math.unit(3, "inches")
  3066. },
  3067. {
  3068. name: "Normal",
  3069. height: math.unit(5 + 3 / 12, "feet"),
  3070. default: true
  3071. },
  3072. {
  3073. name: "Macro",
  3074. height: math.unit(118, "feet")
  3075. },
  3076. ]
  3077. ))
  3078. characterMakers.push(() => makeCharacter(
  3079. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3080. {
  3081. front: {
  3082. height: math.unit(5, "feet"),
  3083. weight: math.unit(90, "kg"),
  3084. name: "Front",
  3085. image: {
  3086. source: "./media/characters/fory/front.svg",
  3087. extra: 2862 / 2674,
  3088. bottom: 180 / 3043.8
  3089. }
  3090. },
  3091. back: {
  3092. height: math.unit(5, "feet"),
  3093. weight: math.unit(90, "kg"),
  3094. name: "Back",
  3095. image: {
  3096. source: "./media/characters/fory/back.svg",
  3097. extra: 2962 / 2791,
  3098. bottom: 106 / 3071.8
  3099. }
  3100. },
  3101. foot: {
  3102. height: math.unit(2.14, "feet"),
  3103. name: "Foot",
  3104. image: {
  3105. source: "./media/characters/fory/foot.svg"
  3106. }
  3107. },
  3108. },
  3109. [
  3110. {
  3111. name: "Normal",
  3112. height: math.unit(5, "feet")
  3113. },
  3114. {
  3115. name: "Macro",
  3116. height: math.unit(50, "feet"),
  3117. default: true
  3118. },
  3119. {
  3120. name: "Megamacro",
  3121. height: math.unit(10, "miles")
  3122. },
  3123. {
  3124. name: "Gigamacro",
  3125. height: math.unit(5, "earths")
  3126. },
  3127. ]
  3128. ))
  3129. characterMakers.push(() => makeCharacter(
  3130. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3131. {
  3132. front: {
  3133. height: math.unit(7, "feet"),
  3134. weight: math.unit(90, "kg"),
  3135. name: "Front",
  3136. image: {
  3137. source: "./media/characters/kurrikage/front.svg",
  3138. extra: 1845/1733,
  3139. bottom: 119/1964
  3140. }
  3141. },
  3142. back: {
  3143. height: math.unit(7, "feet"),
  3144. weight: math.unit(90, "kg"),
  3145. name: "Back",
  3146. image: {
  3147. source: "./media/characters/kurrikage/back.svg",
  3148. extra: 1790/1677,
  3149. bottom: 61/1851
  3150. }
  3151. },
  3152. dressed: {
  3153. height: math.unit(7, "feet"),
  3154. weight: math.unit(90, "kg"),
  3155. name: "Dressed",
  3156. image: {
  3157. source: "./media/characters/kurrikage/dressed.svg",
  3158. extra: 1845/1733,
  3159. bottom: 119/1964
  3160. }
  3161. },
  3162. foot: {
  3163. height: math.unit(1.5, "feet"),
  3164. name: "Foot",
  3165. image: {
  3166. source: "./media/characters/kurrikage/foot.svg"
  3167. }
  3168. },
  3169. staff: {
  3170. height: math.unit(6.7, "feet"),
  3171. name: "Staff",
  3172. image: {
  3173. source: "./media/characters/kurrikage/staff.svg"
  3174. }
  3175. },
  3176. peek: {
  3177. height: math.unit(1.05, "feet"),
  3178. name: "Peeking",
  3179. image: {
  3180. source: "./media/characters/kurrikage/peek.svg",
  3181. bottom: 0.08
  3182. }
  3183. },
  3184. },
  3185. [
  3186. {
  3187. name: "Normal",
  3188. height: math.unit(12, "feet"),
  3189. default: true
  3190. },
  3191. {
  3192. name: "Big",
  3193. height: math.unit(20, "feet")
  3194. },
  3195. {
  3196. name: "Macro",
  3197. height: math.unit(500, "feet")
  3198. },
  3199. {
  3200. name: "Megamacro",
  3201. height: math.unit(20, "miles")
  3202. },
  3203. ]
  3204. ))
  3205. characterMakers.push(() => makeCharacter(
  3206. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3207. {
  3208. front: {
  3209. height: math.unit(6, "feet"),
  3210. weight: math.unit(75, "kg"),
  3211. name: "Front",
  3212. image: {
  3213. source: "./media/characters/shingo/front.svg",
  3214. extra: 1900/1825,
  3215. bottom: 82/1982
  3216. }
  3217. },
  3218. side: {
  3219. height: math.unit(6, "feet"),
  3220. weight: math.unit(75, "kg"),
  3221. name: "Side",
  3222. image: {
  3223. source: "./media/characters/shingo/side.svg",
  3224. extra: 1930/1865,
  3225. bottom: 16/1946
  3226. }
  3227. },
  3228. back: {
  3229. height: math.unit(6, "feet"),
  3230. weight: math.unit(75, "kg"),
  3231. name: "Back",
  3232. image: {
  3233. source: "./media/characters/shingo/back.svg",
  3234. extra: 1922/1852,
  3235. bottom: 16/1938
  3236. }
  3237. },
  3238. frontDressed: {
  3239. height: math.unit(6, "feet"),
  3240. weight: math.unit(150, "lb"),
  3241. name: "Front-dressed",
  3242. image: {
  3243. source: "./media/characters/shingo/front-dressed.svg",
  3244. extra: 1900/1825,
  3245. bottom: 82/1982
  3246. }
  3247. },
  3248. paw: {
  3249. height: math.unit(1.29, "feet"),
  3250. name: "Paw",
  3251. image: {
  3252. source: "./media/characters/shingo/paw.svg"
  3253. }
  3254. },
  3255. hand: {
  3256. height: math.unit(1.07, "feet"),
  3257. name: "Hand",
  3258. image: {
  3259. source: "./media/characters/shingo/hand.svg"
  3260. }
  3261. },
  3262. frontAlt: {
  3263. height: math.unit(6, "feet"),
  3264. weight: math.unit(75, "kg"),
  3265. name: "Front (Alt)",
  3266. image: {
  3267. source: "./media/characters/shingo/front-alt.svg",
  3268. extra: 3511 / 3338,
  3269. bottom: 0.005
  3270. }
  3271. },
  3272. frontAlt2: {
  3273. height: math.unit(6, "feet"),
  3274. weight: math.unit(75, "kg"),
  3275. name: "Front (Alt 2)",
  3276. image: {
  3277. source: "./media/characters/shingo/front-alt-2.svg",
  3278. extra: 706/681,
  3279. bottom: 11/717
  3280. }
  3281. },
  3282. pawAlt: {
  3283. height: math.unit(1, "feet"),
  3284. name: "Paw (Alt)",
  3285. image: {
  3286. source: "./media/characters/shingo/paw-alt.svg"
  3287. }
  3288. },
  3289. },
  3290. [
  3291. {
  3292. name: "Micro",
  3293. height: math.unit(4, "inches")
  3294. },
  3295. {
  3296. name: "Normal",
  3297. height: math.unit(6, "feet"),
  3298. default: true
  3299. },
  3300. {
  3301. name: "Macro",
  3302. height: math.unit(108, "feet")
  3303. },
  3304. {
  3305. name: "Macro+",
  3306. height: math.unit(1500, "feet")
  3307. },
  3308. ]
  3309. ))
  3310. characterMakers.push(() => makeCharacter(
  3311. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3312. {
  3313. side: {
  3314. height: math.unit(6, "feet"),
  3315. weight: math.unit(75, "kg"),
  3316. name: "Side",
  3317. image: {
  3318. source: "./media/characters/aigey/side.svg"
  3319. }
  3320. },
  3321. },
  3322. [
  3323. {
  3324. name: "Macro",
  3325. height: math.unit(200, "feet"),
  3326. default: true
  3327. },
  3328. {
  3329. name: "Megamacro",
  3330. height: math.unit(100, "miles")
  3331. },
  3332. ]
  3333. )
  3334. )
  3335. characterMakers.push(() => makeCharacter(
  3336. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3337. {
  3338. front: {
  3339. height: math.unit(5 + 5 / 12, "feet"),
  3340. weight: math.unit(75, "kg"),
  3341. name: "Front",
  3342. image: {
  3343. source: "./media/characters/natasha/front.svg",
  3344. extra: 859 / 824,
  3345. bottom: 23 / 879.6
  3346. }
  3347. },
  3348. frontNsfw: {
  3349. height: math.unit(5 + 5 / 12, "feet"),
  3350. weight: math.unit(75, "kg"),
  3351. name: "Front (NSFW)",
  3352. image: {
  3353. source: "./media/characters/natasha/front-nsfw.svg",
  3354. extra: 859 / 824,
  3355. bottom: 23 / 879.6
  3356. }
  3357. },
  3358. frontErect: {
  3359. height: math.unit(5 + 5 / 12, "feet"),
  3360. weight: math.unit(75, "kg"),
  3361. name: "Front (Erect)",
  3362. image: {
  3363. source: "./media/characters/natasha/front-erect.svg",
  3364. extra: 859 / 824,
  3365. bottom: 23 / 879.6
  3366. }
  3367. },
  3368. back: {
  3369. height: math.unit(5 + 5 / 12, "feet"),
  3370. weight: math.unit(75, "kg"),
  3371. name: "Back",
  3372. image: {
  3373. source: "./media/characters/natasha/back.svg",
  3374. extra: 887.9 / 852.6,
  3375. bottom: 9.7 / 896.4
  3376. }
  3377. },
  3378. backAlt: {
  3379. height: math.unit(5 + 5 / 12, "feet"),
  3380. weight: math.unit(75, "kg"),
  3381. name: "Back (Alt)",
  3382. image: {
  3383. source: "./media/characters/natasha/back-alt.svg",
  3384. extra: 1236.7 / 1192,
  3385. bottom: 22.3 / 1258.2
  3386. }
  3387. },
  3388. dick: {
  3389. height: math.unit(1.772, "feet"),
  3390. name: "Dick",
  3391. image: {
  3392. source: "./media/characters/natasha/dick.svg"
  3393. }
  3394. },
  3395. paw: {
  3396. height: math.unit(0.250, "meters"),
  3397. name: "Paw",
  3398. image: {
  3399. source: "./media/characters/natasha/paw.svg"
  3400. },
  3401. extraAttributes: {
  3402. "toeSize": {
  3403. name: "Toe Size",
  3404. power: 2,
  3405. type: "area",
  3406. base: math.unit(0.0024, "m^2")
  3407. },
  3408. "padSize": {
  3409. name: "Pad Size",
  3410. power: 2,
  3411. type: "area",
  3412. base: math.unit(0.00889, "m^2")
  3413. },
  3414. "pawSize": {
  3415. name: "Paw Size",
  3416. power: 2,
  3417. type: "area",
  3418. base: math.unit(0.023667, "m^2")
  3419. },
  3420. }
  3421. },
  3422. },
  3423. [
  3424. {
  3425. name: "Shortstack",
  3426. height: math.unit(3, "feet"),
  3427. default: true
  3428. },
  3429. {
  3430. name: "Normal",
  3431. height: math.unit(5 + 5 / 12, "feet")
  3432. },
  3433. {
  3434. name: "Large",
  3435. height: math.unit(12, "feet")
  3436. },
  3437. {
  3438. name: "Macro",
  3439. height: math.unit(100, "feet")
  3440. },
  3441. {
  3442. name: "Macro+",
  3443. height: math.unit(260, "feet")
  3444. },
  3445. {
  3446. name: "Macro++",
  3447. height: math.unit(1, "mile")
  3448. },
  3449. ]
  3450. ))
  3451. characterMakers.push(() => makeCharacter(
  3452. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3453. {
  3454. front: {
  3455. height: math.unit(6, "feet"),
  3456. weight: math.unit(75, "kg"),
  3457. name: "Front",
  3458. image: {
  3459. source: "./media/characters/malik/front.svg",
  3460. extra: 1750/1561,
  3461. bottom: 80/1830
  3462. },
  3463. extraAttributes: {
  3464. "toeSize": {
  3465. name: "Toe Size",
  3466. power: 2,
  3467. type: "area",
  3468. base: math.unit(0.0159, "m^2")
  3469. },
  3470. "pawSize": {
  3471. name: "Paw Size",
  3472. power: 2,
  3473. type: "area",
  3474. base: math.unit(0.09834, "m^2")
  3475. },
  3476. }
  3477. },
  3478. side: {
  3479. height: math.unit(6, "feet"),
  3480. weight: math.unit(75, "kg"),
  3481. name: "Side",
  3482. image: {
  3483. source: "./media/characters/malik/side.svg",
  3484. extra: 1802/1685,
  3485. bottom: 42/1844
  3486. },
  3487. extraAttributes: {
  3488. "toeSize": {
  3489. name: "Toe Size",
  3490. power: 2,
  3491. type: "area",
  3492. base: math.unit(0.0159, "m^2")
  3493. },
  3494. "pawSize": {
  3495. name: "Paw Size",
  3496. power: 2,
  3497. type: "area",
  3498. base: math.unit(0.09834, "m^2")
  3499. },
  3500. }
  3501. },
  3502. back: {
  3503. height: math.unit(6, "feet"),
  3504. weight: math.unit(75, "kg"),
  3505. name: "Back",
  3506. image: {
  3507. source: "./media/characters/malik/back.svg",
  3508. extra: 1803/1607,
  3509. bottom: 33/1836
  3510. },
  3511. extraAttributes: {
  3512. "toeSize": {
  3513. name: "Toe Size",
  3514. power: 2,
  3515. type: "area",
  3516. base: math.unit(0.0159, "m^2")
  3517. },
  3518. "pawSize": {
  3519. name: "Paw Size",
  3520. power: 2,
  3521. type: "area",
  3522. base: math.unit(0.09834, "m^2")
  3523. },
  3524. }
  3525. },
  3526. },
  3527. [
  3528. {
  3529. name: "Macro",
  3530. height: math.unit(156, "feet"),
  3531. default: true
  3532. },
  3533. {
  3534. name: "Macro+",
  3535. height: math.unit(1188, "feet")
  3536. },
  3537. ]
  3538. ))
  3539. characterMakers.push(() => makeCharacter(
  3540. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3541. {
  3542. front: {
  3543. height: math.unit(6, "feet"),
  3544. weight: math.unit(75, "kg"),
  3545. name: "Front",
  3546. image: {
  3547. source: "./media/characters/sefer/front.svg",
  3548. extra: 848 / 659,
  3549. bottom: 28.3 / 876.442
  3550. }
  3551. },
  3552. back: {
  3553. height: math.unit(6, "feet"),
  3554. weight: math.unit(75, "kg"),
  3555. name: "Back",
  3556. image: {
  3557. source: "./media/characters/sefer/back.svg",
  3558. extra: 864 / 695,
  3559. bottom: 10 / 871
  3560. }
  3561. },
  3562. frontDressed: {
  3563. height: math.unit(6, "feet"),
  3564. weight: math.unit(75, "kg"),
  3565. name: "Dressed",
  3566. image: {
  3567. source: "./media/characters/sefer/dressed.svg",
  3568. extra: 839 / 653,
  3569. bottom: 37.6 / 878
  3570. }
  3571. },
  3572. },
  3573. [
  3574. {
  3575. name: "Normal",
  3576. height: math.unit(6, "feet"),
  3577. default: true
  3578. },
  3579. {
  3580. name: "Big",
  3581. height: math.unit(8, "meters")
  3582. },
  3583. ]
  3584. ))
  3585. characterMakers.push(() => makeCharacter(
  3586. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3587. {
  3588. body: {
  3589. height: math.unit(2.2428, "meter"),
  3590. weight: math.unit(124.738, "kg"),
  3591. name: "Body",
  3592. image: {
  3593. extra: 1225 / 1050,
  3594. source: "./media/characters/north/front.svg"
  3595. }
  3596. }
  3597. },
  3598. [
  3599. {
  3600. name: "Micro",
  3601. height: math.unit(4, "inches")
  3602. },
  3603. {
  3604. name: "Macro",
  3605. height: math.unit(63, "meters")
  3606. },
  3607. {
  3608. name: "Megamacro",
  3609. height: math.unit(101, "miles"),
  3610. default: true
  3611. }
  3612. ]
  3613. ))
  3614. characterMakers.push(() => makeCharacter(
  3615. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3616. {
  3617. angled: {
  3618. height: math.unit(4, "meter"),
  3619. weight: math.unit(150, "kg"),
  3620. name: "Angled",
  3621. image: {
  3622. source: "./media/characters/talan/angled-sfw.svg",
  3623. bottom: 29 / 3734
  3624. }
  3625. },
  3626. angledNsfw: {
  3627. height: math.unit(4, "meter"),
  3628. weight: math.unit(150, "kg"),
  3629. name: "Angled (NSFW)",
  3630. image: {
  3631. source: "./media/characters/talan/angled-nsfw.svg",
  3632. bottom: 29 / 3734
  3633. }
  3634. },
  3635. frontNsfw: {
  3636. height: math.unit(4, "meter"),
  3637. weight: math.unit(150, "kg"),
  3638. name: "Front (NSFW)",
  3639. image: {
  3640. source: "./media/characters/talan/front-nsfw.svg",
  3641. bottom: 29 / 3734
  3642. }
  3643. },
  3644. sideNsfw: {
  3645. height: math.unit(4, "meter"),
  3646. weight: math.unit(150, "kg"),
  3647. name: "Side (NSFW)",
  3648. image: {
  3649. source: "./media/characters/talan/side-nsfw.svg",
  3650. bottom: 29 / 3734
  3651. }
  3652. },
  3653. back: {
  3654. height: math.unit(4, "meter"),
  3655. weight: math.unit(150, "kg"),
  3656. name: "Back",
  3657. image: {
  3658. source: "./media/characters/talan/back.svg"
  3659. }
  3660. },
  3661. dickBottom: {
  3662. height: math.unit(0.621, "meter"),
  3663. name: "Dick (Bottom)",
  3664. image: {
  3665. source: "./media/characters/talan/dick-bottom.svg"
  3666. }
  3667. },
  3668. dickTop: {
  3669. height: math.unit(0.621, "meter"),
  3670. name: "Dick (Top)",
  3671. image: {
  3672. source: "./media/characters/talan/dick-top.svg"
  3673. }
  3674. },
  3675. dickSide: {
  3676. height: math.unit(0.305, "meter"),
  3677. name: "Dick (Side)",
  3678. image: {
  3679. source: "./media/characters/talan/dick-side.svg"
  3680. }
  3681. },
  3682. dickFront: {
  3683. height: math.unit(0.305, "meter"),
  3684. name: "Dick (Front)",
  3685. image: {
  3686. source: "./media/characters/talan/dick-front.svg"
  3687. }
  3688. },
  3689. },
  3690. [
  3691. {
  3692. name: "Normal",
  3693. height: math.unit(4, "meters")
  3694. },
  3695. {
  3696. name: "Macro",
  3697. height: math.unit(100, "meters")
  3698. },
  3699. {
  3700. name: "Megamacro",
  3701. height: math.unit(2, "miles"),
  3702. default: true
  3703. },
  3704. {
  3705. name: "Gigamacro",
  3706. height: math.unit(5000, "miles")
  3707. },
  3708. {
  3709. name: "Teramacro",
  3710. height: math.unit(100, "parsecs")
  3711. }
  3712. ]
  3713. ))
  3714. characterMakers.push(() => makeCharacter(
  3715. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3716. {
  3717. front: {
  3718. height: math.unit(2, "meter"),
  3719. weight: math.unit(90, "kg"),
  3720. name: "Front",
  3721. image: {
  3722. source: "./media/characters/gael'rathus/front.svg"
  3723. }
  3724. },
  3725. frontAlt: {
  3726. height: math.unit(2, "meter"),
  3727. weight: math.unit(90, "kg"),
  3728. name: "Front (alt)",
  3729. image: {
  3730. source: "./media/characters/gael'rathus/front-alt.svg"
  3731. }
  3732. },
  3733. frontAlt2: {
  3734. height: math.unit(2, "meter"),
  3735. weight: math.unit(90, "kg"),
  3736. name: "Front (alt 2)",
  3737. image: {
  3738. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3739. }
  3740. }
  3741. },
  3742. [
  3743. {
  3744. name: "Normal",
  3745. height: math.unit(9, "feet"),
  3746. default: true
  3747. },
  3748. {
  3749. name: "Large",
  3750. height: math.unit(25, "feet")
  3751. },
  3752. {
  3753. name: "Macro",
  3754. height: math.unit(0.25, "miles")
  3755. },
  3756. {
  3757. name: "Megamacro",
  3758. height: math.unit(10, "miles")
  3759. }
  3760. ]
  3761. ))
  3762. characterMakers.push(() => makeCharacter(
  3763. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3764. {
  3765. side: {
  3766. height: math.unit(2, "meter"),
  3767. weight: math.unit(140, "kg"),
  3768. name: "Side",
  3769. image: {
  3770. source: "./media/characters/sosha/side.svg",
  3771. extra: 1170/1006,
  3772. bottom: 94/1264
  3773. }
  3774. },
  3775. maw: {
  3776. height: math.unit(2.87, "feet"),
  3777. name: "Maw",
  3778. image: {
  3779. source: "./media/characters/sosha/maw.svg",
  3780. extra: 966/865,
  3781. bottom: 0/966
  3782. }
  3783. },
  3784. cooch: {
  3785. height: math.unit(5.6, "feet"),
  3786. name: "Cooch",
  3787. image: {
  3788. source: "./media/characters/sosha/cooch.svg"
  3789. }
  3790. },
  3791. },
  3792. [
  3793. {
  3794. name: "Normal",
  3795. height: math.unit(12, "feet"),
  3796. default: true
  3797. }
  3798. ]
  3799. ))
  3800. characterMakers.push(() => makeCharacter(
  3801. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3802. {
  3803. side: {
  3804. height: math.unit(5 + 5 / 12, "feet"),
  3805. weight: math.unit(170, "kg"),
  3806. name: "Side",
  3807. image: {
  3808. source: "./media/characters/runnola/side.svg",
  3809. extra: 741 / 448,
  3810. bottom: 0.05
  3811. }
  3812. },
  3813. },
  3814. [
  3815. {
  3816. name: "Small",
  3817. height: math.unit(3, "feet")
  3818. },
  3819. {
  3820. name: "Normal",
  3821. height: math.unit(5 + 5 / 12, "feet"),
  3822. default: true
  3823. },
  3824. {
  3825. name: "Big",
  3826. height: math.unit(10, "feet")
  3827. },
  3828. ]
  3829. ))
  3830. characterMakers.push(() => makeCharacter(
  3831. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3832. {
  3833. front: {
  3834. height: math.unit(2, "meter"),
  3835. weight: math.unit(50, "kg"),
  3836. name: "Front",
  3837. image: {
  3838. source: "./media/characters/kurribird/front.svg",
  3839. bottom: 0.015
  3840. }
  3841. },
  3842. frontAlt: {
  3843. height: math.unit(1.5, "meter"),
  3844. weight: math.unit(50, "kg"),
  3845. name: "Front (Alt)",
  3846. image: {
  3847. source: "./media/characters/kurribird/front-alt.svg",
  3848. extra: 1.45
  3849. }
  3850. },
  3851. },
  3852. [
  3853. {
  3854. name: "Normal",
  3855. height: math.unit(7, "feet")
  3856. },
  3857. {
  3858. name: "Big",
  3859. height: math.unit(12, "feet"),
  3860. default: true
  3861. },
  3862. {
  3863. name: "Macro",
  3864. height: math.unit(1500, "feet")
  3865. },
  3866. {
  3867. name: "Megamacro",
  3868. height: math.unit(2, "miles")
  3869. }
  3870. ]
  3871. ))
  3872. characterMakers.push(() => makeCharacter(
  3873. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3874. {
  3875. front: {
  3876. height: math.unit(2, "meter"),
  3877. weight: math.unit(80, "kg"),
  3878. name: "Front",
  3879. image: {
  3880. source: "./media/characters/elbial/front.svg",
  3881. extra: 1643 / 1556,
  3882. bottom: 60.2 / 1696
  3883. }
  3884. },
  3885. side: {
  3886. height: math.unit(2, "meter"),
  3887. weight: math.unit(80, "kg"),
  3888. name: "Side",
  3889. image: {
  3890. source: "./media/characters/elbial/side.svg",
  3891. extra: 1601/1528,
  3892. bottom: 97/1698
  3893. }
  3894. },
  3895. back: {
  3896. height: math.unit(2, "meter"),
  3897. weight: math.unit(80, "kg"),
  3898. name: "Back",
  3899. image: {
  3900. source: "./media/characters/elbial/back.svg",
  3901. extra: 1653/1569,
  3902. bottom: 20/1673
  3903. }
  3904. },
  3905. frontDressed: {
  3906. height: math.unit(2, "meter"),
  3907. weight: math.unit(80, "kg"),
  3908. name: "Front (Dressed)",
  3909. image: {
  3910. source: "./media/characters/elbial/front-dressed.svg",
  3911. extra: 1638/1569,
  3912. bottom: 70/1708
  3913. }
  3914. },
  3915. genitals: {
  3916. height: math.unit(2 / 3.367, "meter"),
  3917. name: "Genitals",
  3918. image: {
  3919. source: "./media/characters/elbial/genitals.svg"
  3920. }
  3921. },
  3922. },
  3923. [
  3924. {
  3925. name: "Large",
  3926. height: math.unit(100, "feet")
  3927. },
  3928. {
  3929. name: "Macro",
  3930. height: math.unit(500, "feet"),
  3931. default: true
  3932. },
  3933. {
  3934. name: "Megamacro",
  3935. height: math.unit(10, "miles")
  3936. },
  3937. {
  3938. name: "Gigamacro",
  3939. height: math.unit(25000, "miles")
  3940. },
  3941. {
  3942. name: "Full-Size",
  3943. height: math.unit(8000000, "gigaparsecs")
  3944. }
  3945. ]
  3946. ))
  3947. characterMakers.push(() => makeCharacter(
  3948. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3949. {
  3950. front: {
  3951. height: math.unit(2, "meter"),
  3952. weight: math.unit(60, "kg"),
  3953. name: "Front",
  3954. image: {
  3955. source: "./media/characters/noah/front.svg"
  3956. }
  3957. },
  3958. talons: {
  3959. height: math.unit(0.315, "meter"),
  3960. name: "Talons",
  3961. image: {
  3962. source: "./media/characters/noah/talons.svg"
  3963. }
  3964. }
  3965. },
  3966. [
  3967. {
  3968. name: "Large",
  3969. height: math.unit(50, "feet")
  3970. },
  3971. {
  3972. name: "Macro",
  3973. height: math.unit(750, "feet"),
  3974. default: true
  3975. },
  3976. {
  3977. name: "Megamacro",
  3978. height: math.unit(50, "miles")
  3979. },
  3980. {
  3981. name: "Gigamacro",
  3982. height: math.unit(100000, "miles")
  3983. },
  3984. {
  3985. name: "Full-Size",
  3986. height: math.unit(3000000000, "miles")
  3987. }
  3988. ]
  3989. ))
  3990. characterMakers.push(() => makeCharacter(
  3991. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3992. {
  3993. front: {
  3994. height: math.unit(2, "meter"),
  3995. weight: math.unit(80, "kg"),
  3996. name: "Front",
  3997. image: {
  3998. source: "./media/characters/natalya/front.svg"
  3999. }
  4000. },
  4001. back: {
  4002. height: math.unit(2, "meter"),
  4003. weight: math.unit(80, "kg"),
  4004. name: "Back",
  4005. image: {
  4006. source: "./media/characters/natalya/back.svg"
  4007. }
  4008. }
  4009. },
  4010. [
  4011. {
  4012. name: "Normal",
  4013. height: math.unit(150, "feet"),
  4014. default: true
  4015. },
  4016. {
  4017. name: "Megamacro",
  4018. height: math.unit(5, "miles")
  4019. },
  4020. {
  4021. name: "Full-Size",
  4022. height: math.unit(600, "kiloparsecs")
  4023. }
  4024. ]
  4025. ))
  4026. characterMakers.push(() => makeCharacter(
  4027. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4028. {
  4029. front: {
  4030. height: math.unit(2, "meter"),
  4031. weight: math.unit(50, "kg"),
  4032. name: "Front",
  4033. image: {
  4034. source: "./media/characters/erestrebah/front.svg",
  4035. extra: 1262/1162,
  4036. bottom: 96/1358
  4037. }
  4038. },
  4039. back: {
  4040. height: math.unit(2, "meter"),
  4041. weight: math.unit(50, "kg"),
  4042. name: "Back",
  4043. image: {
  4044. source: "./media/characters/erestrebah/back.svg",
  4045. extra: 1257/1139,
  4046. bottom: 13/1270
  4047. }
  4048. },
  4049. wing: {
  4050. height: math.unit(2, "meter"),
  4051. weight: math.unit(50, "kg"),
  4052. name: "Wing",
  4053. image: {
  4054. source: "./media/characters/erestrebah/wing.svg",
  4055. extra: 1262/1162,
  4056. bottom: 96/1358
  4057. }
  4058. },
  4059. mouth: {
  4060. height: math.unit(0.39, "feet"),
  4061. name: "Mouth",
  4062. image: {
  4063. source: "./media/characters/erestrebah/mouth.svg"
  4064. }
  4065. }
  4066. },
  4067. [
  4068. {
  4069. name: "Normal",
  4070. height: math.unit(10, "feet")
  4071. },
  4072. {
  4073. name: "Large",
  4074. height: math.unit(50, "feet"),
  4075. default: true
  4076. },
  4077. {
  4078. name: "Macro",
  4079. height: math.unit(300, "feet")
  4080. },
  4081. {
  4082. name: "Macro+",
  4083. height: math.unit(750, "feet")
  4084. },
  4085. {
  4086. name: "Megamacro",
  4087. height: math.unit(3, "miles")
  4088. }
  4089. ]
  4090. ))
  4091. characterMakers.push(() => makeCharacter(
  4092. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4093. {
  4094. front: {
  4095. height: math.unit(2, "meter"),
  4096. weight: math.unit(80, "kg"),
  4097. name: "Front",
  4098. image: {
  4099. source: "./media/characters/jennifer/front.svg",
  4100. bottom: 0.11,
  4101. extra: 1.16
  4102. }
  4103. },
  4104. frontAlt: {
  4105. height: math.unit(2, "meter"),
  4106. weight: math.unit(80, "kg"),
  4107. name: "Front (Alt)",
  4108. image: {
  4109. source: "./media/characters/jennifer/front-alt.svg"
  4110. }
  4111. }
  4112. },
  4113. [
  4114. {
  4115. name: "Canon Height",
  4116. height: math.unit(120, "feet"),
  4117. default: true
  4118. },
  4119. {
  4120. name: "Macro+",
  4121. height: math.unit(300, "feet")
  4122. },
  4123. {
  4124. name: "Megamacro",
  4125. height: math.unit(20000, "feet")
  4126. }
  4127. ]
  4128. ))
  4129. characterMakers.push(() => makeCharacter(
  4130. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4131. {
  4132. front: {
  4133. height: math.unit(2, "meter"),
  4134. weight: math.unit(50, "kg"),
  4135. name: "Front",
  4136. image: {
  4137. source: "./media/characters/kalista/front.svg",
  4138. extra: 1314/1145,
  4139. bottom: 101/1415
  4140. }
  4141. },
  4142. back: {
  4143. height: math.unit(2, "meter"),
  4144. weight: math.unit(50, "kg"),
  4145. name: "Back",
  4146. image: {
  4147. source: "./media/characters/kalista/back.svg",
  4148. extra: 1366 / 1156,
  4149. bottom: 33.9 / 1362.78
  4150. }
  4151. }
  4152. },
  4153. [
  4154. {
  4155. name: "Uncomfortably Small",
  4156. height: math.unit(10, "feet")
  4157. },
  4158. {
  4159. name: "Small",
  4160. height: math.unit(30, "feet")
  4161. },
  4162. {
  4163. name: "Macro",
  4164. height: math.unit(100, "feet"),
  4165. default: true
  4166. },
  4167. {
  4168. name: "Macro+",
  4169. height: math.unit(2000, "feet")
  4170. },
  4171. {
  4172. name: "True Form",
  4173. height: math.unit(8924, "miles")
  4174. }
  4175. ]
  4176. ))
  4177. characterMakers.push(() => makeCharacter(
  4178. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4179. {
  4180. front: {
  4181. height: math.unit(2, "meter"),
  4182. weight: math.unit(120, "kg"),
  4183. name: "Front",
  4184. image: {
  4185. source: "./media/characters/ggv/front.svg"
  4186. }
  4187. },
  4188. side: {
  4189. height: math.unit(2, "meter"),
  4190. weight: math.unit(120, "kg"),
  4191. name: "Side",
  4192. image: {
  4193. source: "./media/characters/ggv/side.svg"
  4194. }
  4195. }
  4196. },
  4197. [
  4198. {
  4199. name: "Extremely Puny",
  4200. height: math.unit(9 + 5 / 12, "feet")
  4201. },
  4202. {
  4203. name: "Horribly Small",
  4204. height: math.unit(47.7, "miles"),
  4205. default: true
  4206. },
  4207. {
  4208. name: "Reasonably Sized",
  4209. height: math.unit(25000, "parsecs")
  4210. },
  4211. {
  4212. name: "Slightly Uncompressed",
  4213. height: math.unit(7.77e31, "parsecs")
  4214. },
  4215. {
  4216. name: "Omniversal",
  4217. height: math.unit(1e300, "meters")
  4218. },
  4219. ]
  4220. ))
  4221. characterMakers.push(() => makeCharacter(
  4222. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4223. {
  4224. front: {
  4225. height: math.unit(2, "meter"),
  4226. weight: math.unit(75, "lb"),
  4227. name: "Front",
  4228. image: {
  4229. source: "./media/characters/napalm/front.svg"
  4230. }
  4231. },
  4232. back: {
  4233. height: math.unit(2, "meter"),
  4234. weight: math.unit(75, "lb"),
  4235. name: "Back",
  4236. image: {
  4237. source: "./media/characters/napalm/back.svg"
  4238. }
  4239. }
  4240. },
  4241. [
  4242. {
  4243. name: "Standard",
  4244. height: math.unit(55, "feet"),
  4245. default: true
  4246. }
  4247. ]
  4248. ))
  4249. characterMakers.push(() => makeCharacter(
  4250. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4251. {
  4252. front: {
  4253. height: math.unit(7 + 5 / 6, "feet"),
  4254. weight: math.unit(325, "lb"),
  4255. name: "Front",
  4256. image: {
  4257. source: "./media/characters/asana/front.svg",
  4258. extra: 1133 / 1060,
  4259. bottom: 15.2 / 1148.6
  4260. }
  4261. },
  4262. back: {
  4263. height: math.unit(7 + 5 / 6, "feet"),
  4264. weight: math.unit(325, "lb"),
  4265. name: "Back",
  4266. image: {
  4267. source: "./media/characters/asana/back.svg",
  4268. extra: 1114 / 1043,
  4269. bottom: 5 / 1120
  4270. }
  4271. },
  4272. dressedDark: {
  4273. height: math.unit(7 + 5 / 6, "feet"),
  4274. weight: math.unit(325, "lb"),
  4275. name: "Dressed (Dark)",
  4276. image: {
  4277. source: "./media/characters/asana/dressed-dark.svg",
  4278. extra: 1133 / 1060,
  4279. bottom: 15.2 / 1148.6
  4280. }
  4281. },
  4282. dressedLight: {
  4283. height: math.unit(7 + 5 / 6, "feet"),
  4284. weight: math.unit(325, "lb"),
  4285. name: "Dressed (Light)",
  4286. image: {
  4287. source: "./media/characters/asana/dressed-light.svg",
  4288. extra: 1133 / 1060,
  4289. bottom: 15.2 / 1148.6
  4290. }
  4291. },
  4292. },
  4293. [
  4294. {
  4295. name: "Standard",
  4296. height: math.unit(7 + 5 / 6, "feet"),
  4297. default: true
  4298. },
  4299. {
  4300. name: "Large",
  4301. height: math.unit(10, "meters")
  4302. },
  4303. {
  4304. name: "Macro",
  4305. height: math.unit(2500, "meters")
  4306. },
  4307. {
  4308. name: "Megamacro",
  4309. height: math.unit(5e6, "meters")
  4310. },
  4311. {
  4312. name: "Examacro",
  4313. height: math.unit(5e12, "lightyears")
  4314. },
  4315. {
  4316. name: "Max Size",
  4317. height: math.unit(1e31, "lightyears")
  4318. }
  4319. ]
  4320. ))
  4321. characterMakers.push(() => makeCharacter(
  4322. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4323. {
  4324. front: {
  4325. height: math.unit(2, "meter"),
  4326. weight: math.unit(60, "kg"),
  4327. name: "Front",
  4328. image: {
  4329. source: "./media/characters/ebony/front.svg",
  4330. bottom: 0.03,
  4331. extra: 1045 / 810 + 0.03
  4332. }
  4333. },
  4334. side: {
  4335. height: math.unit(2, "meter"),
  4336. weight: math.unit(60, "kg"),
  4337. name: "Side",
  4338. image: {
  4339. source: "./media/characters/ebony/side.svg",
  4340. bottom: 0.03,
  4341. extra: 1045 / 810 + 0.03
  4342. }
  4343. },
  4344. back: {
  4345. height: math.unit(2, "meter"),
  4346. weight: math.unit(60, "kg"),
  4347. name: "Back",
  4348. image: {
  4349. source: "./media/characters/ebony/back.svg",
  4350. bottom: 0.01,
  4351. extra: 1045 / 810 + 0.01
  4352. }
  4353. },
  4354. },
  4355. [
  4356. // TODO check why I did this lol
  4357. {
  4358. name: "Standard",
  4359. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4360. default: true
  4361. },
  4362. {
  4363. name: "Macro",
  4364. height: math.unit(200, "feet")
  4365. },
  4366. {
  4367. name: "Gigamacro",
  4368. height: math.unit(13000, "km")
  4369. }
  4370. ]
  4371. ))
  4372. characterMakers.push(() => makeCharacter(
  4373. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4374. {
  4375. front: {
  4376. height: math.unit(6, "feet"),
  4377. weight: math.unit(175, "lb"),
  4378. name: "Front",
  4379. image: {
  4380. source: "./media/characters/mountain/front.svg",
  4381. extra: 972 / 955,
  4382. bottom: 64 / 1036.6
  4383. }
  4384. },
  4385. back: {
  4386. height: math.unit(6, "feet"),
  4387. weight: math.unit(175, "lb"),
  4388. name: "Back",
  4389. image: {
  4390. source: "./media/characters/mountain/back.svg",
  4391. extra: 970 / 950,
  4392. bottom: 28.25 / 999
  4393. }
  4394. },
  4395. },
  4396. [
  4397. {
  4398. name: "Large",
  4399. height: math.unit(20, "meters")
  4400. },
  4401. {
  4402. name: "Macro",
  4403. height: math.unit(300, "meters")
  4404. },
  4405. {
  4406. name: "Gigamacro",
  4407. height: math.unit(10000, "km"),
  4408. default: true
  4409. },
  4410. {
  4411. name: "Examacro",
  4412. height: math.unit(10e9, "lightyears")
  4413. }
  4414. ]
  4415. ))
  4416. characterMakers.push(() => makeCharacter(
  4417. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4418. {
  4419. front: {
  4420. height: math.unit(8, "feet"),
  4421. weight: math.unit(500, "lb"),
  4422. name: "Front",
  4423. image: {
  4424. source: "./media/characters/rick/front.svg"
  4425. }
  4426. }
  4427. },
  4428. [
  4429. {
  4430. name: "Normal",
  4431. height: math.unit(8, "feet"),
  4432. default: true
  4433. },
  4434. {
  4435. name: "Macro",
  4436. height: math.unit(5, "km")
  4437. }
  4438. ]
  4439. ))
  4440. characterMakers.push(() => makeCharacter(
  4441. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4442. {
  4443. front: {
  4444. height: math.unit(8, "feet"),
  4445. weight: math.unit(120, "lb"),
  4446. name: "Front",
  4447. image: {
  4448. source: "./media/characters/ona/front.svg"
  4449. }
  4450. },
  4451. frontAlt: {
  4452. height: math.unit(8, "feet"),
  4453. weight: math.unit(120, "lb"),
  4454. name: "Front (Alt)",
  4455. image: {
  4456. source: "./media/characters/ona/front-alt.svg"
  4457. }
  4458. },
  4459. back: {
  4460. height: math.unit(8, "feet"),
  4461. weight: math.unit(120, "lb"),
  4462. name: "Back",
  4463. image: {
  4464. source: "./media/characters/ona/back.svg"
  4465. }
  4466. },
  4467. foot: {
  4468. height: math.unit(1.1, "feet"),
  4469. name: "Foot",
  4470. image: {
  4471. source: "./media/characters/ona/foot.svg"
  4472. }
  4473. }
  4474. },
  4475. [
  4476. {
  4477. name: "Megamacro",
  4478. height: math.unit(70, "km"),
  4479. default: true
  4480. },
  4481. {
  4482. name: "Gigamacro",
  4483. height: math.unit(681818, "miles")
  4484. },
  4485. {
  4486. name: "Examacro",
  4487. height: math.unit(3800000, "lightyears")
  4488. },
  4489. ]
  4490. ))
  4491. characterMakers.push(() => makeCharacter(
  4492. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4493. {
  4494. front: {
  4495. height: math.unit(12, "feet"),
  4496. weight: math.unit(3000, "lb"),
  4497. name: "Front",
  4498. image: {
  4499. source: "./media/characters/mech/front.svg",
  4500. extra: 2900 / 2770,
  4501. bottom: 110 / 3010
  4502. }
  4503. },
  4504. back: {
  4505. height: math.unit(12, "feet"),
  4506. weight: math.unit(3000, "lb"),
  4507. name: "Back",
  4508. image: {
  4509. source: "./media/characters/mech/back.svg",
  4510. extra: 3011 / 2890,
  4511. bottom: 94 / 3105
  4512. }
  4513. },
  4514. maw: {
  4515. height: math.unit(3.07, "feet"),
  4516. name: "Maw",
  4517. image: {
  4518. source: "./media/characters/mech/maw.svg"
  4519. }
  4520. },
  4521. head: {
  4522. height: math.unit(3.07, "feet"),
  4523. name: "Head",
  4524. image: {
  4525. source: "./media/characters/mech/head.svg"
  4526. }
  4527. },
  4528. dick: {
  4529. height: math.unit(1.43, "feet"),
  4530. name: "Dick",
  4531. image: {
  4532. source: "./media/characters/mech/dick.svg"
  4533. }
  4534. },
  4535. },
  4536. [
  4537. {
  4538. name: "Normal",
  4539. height: math.unit(12, "feet")
  4540. },
  4541. {
  4542. name: "Macro",
  4543. height: math.unit(300, "feet"),
  4544. default: true
  4545. },
  4546. {
  4547. name: "Macro+",
  4548. height: math.unit(1500, "feet")
  4549. },
  4550. ]
  4551. ))
  4552. characterMakers.push(() => makeCharacter(
  4553. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4554. {
  4555. front: {
  4556. height: math.unit(1.3, "meter"),
  4557. weight: math.unit(30, "kg"),
  4558. name: "Front",
  4559. image: {
  4560. source: "./media/characters/gregory/front.svg",
  4561. }
  4562. }
  4563. },
  4564. [
  4565. {
  4566. name: "Normal",
  4567. height: math.unit(1.3, "meter"),
  4568. default: true
  4569. },
  4570. {
  4571. name: "Macro",
  4572. height: math.unit(20, "meter")
  4573. }
  4574. ]
  4575. ))
  4576. characterMakers.push(() => makeCharacter(
  4577. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4578. {
  4579. front: {
  4580. height: math.unit(2.8, "meter"),
  4581. weight: math.unit(200, "kg"),
  4582. name: "Front",
  4583. image: {
  4584. source: "./media/characters/elory/front.svg",
  4585. }
  4586. }
  4587. },
  4588. [
  4589. {
  4590. name: "Normal",
  4591. height: math.unit(2.8, "meter"),
  4592. default: true
  4593. },
  4594. {
  4595. name: "Macro",
  4596. height: math.unit(38, "meter")
  4597. }
  4598. ]
  4599. ))
  4600. characterMakers.push(() => makeCharacter(
  4601. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4602. {
  4603. front: {
  4604. height: math.unit(470, "feet"),
  4605. weight: math.unit(924, "tons"),
  4606. name: "Front",
  4607. image: {
  4608. source: "./media/characters/angelpatamon/front.svg",
  4609. }
  4610. }
  4611. },
  4612. [
  4613. {
  4614. name: "Normal",
  4615. height: math.unit(470, "feet"),
  4616. default: true
  4617. },
  4618. {
  4619. name: "Deity Size I",
  4620. height: math.unit(28651.2, "km")
  4621. },
  4622. {
  4623. name: "Deity Size II",
  4624. height: math.unit(171907.2, "km")
  4625. }
  4626. ]
  4627. ))
  4628. characterMakers.push(() => makeCharacter(
  4629. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4630. {
  4631. side: {
  4632. height: math.unit(7.2, "meter"),
  4633. weight: math.unit(8.2, "tons"),
  4634. name: "Side",
  4635. image: {
  4636. source: "./media/characters/cryae/side.svg",
  4637. extra: 3500 / 1500
  4638. }
  4639. }
  4640. },
  4641. [
  4642. {
  4643. name: "Normal",
  4644. height: math.unit(7.2, "meter"),
  4645. default: true
  4646. }
  4647. ]
  4648. ))
  4649. characterMakers.push(() => makeCharacter(
  4650. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4651. {
  4652. front: {
  4653. height: math.unit(6, "feet"),
  4654. weight: math.unit(175, "lb"),
  4655. name: "Front",
  4656. image: {
  4657. source: "./media/characters/xera/front.svg",
  4658. extra: 2377 / 1972,
  4659. bottom: 75.5 / 2452
  4660. }
  4661. },
  4662. side: {
  4663. height: math.unit(6, "feet"),
  4664. weight: math.unit(175, "lb"),
  4665. name: "Side",
  4666. image: {
  4667. source: "./media/characters/xera/side.svg",
  4668. extra: 2345 / 2019,
  4669. bottom: 39.7 / 2384
  4670. }
  4671. },
  4672. back: {
  4673. height: math.unit(6, "feet"),
  4674. weight: math.unit(175, "lb"),
  4675. name: "Back",
  4676. image: {
  4677. source: "./media/characters/xera/back.svg",
  4678. extra: 2095 / 1984,
  4679. bottom: 67 / 2166
  4680. }
  4681. },
  4682. },
  4683. [
  4684. {
  4685. name: "Small",
  4686. height: math.unit(10, "feet")
  4687. },
  4688. {
  4689. name: "Macro",
  4690. height: math.unit(500, "meters"),
  4691. default: true
  4692. },
  4693. {
  4694. name: "Macro+",
  4695. height: math.unit(10, "km")
  4696. },
  4697. {
  4698. name: "Gigamacro",
  4699. height: math.unit(25000, "km")
  4700. },
  4701. {
  4702. name: "Teramacro",
  4703. height: math.unit(3e6, "km")
  4704. }
  4705. ]
  4706. ))
  4707. characterMakers.push(() => makeCharacter(
  4708. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4709. {
  4710. front: {
  4711. height: math.unit(6, "feet"),
  4712. weight: math.unit(175, "lb"),
  4713. name: "Front",
  4714. image: {
  4715. source: "./media/characters/nebula/front.svg",
  4716. extra: 2566 / 2362,
  4717. bottom: 81 / 2644
  4718. }
  4719. }
  4720. },
  4721. [
  4722. {
  4723. name: "Small",
  4724. height: math.unit(4.5, "meters")
  4725. },
  4726. {
  4727. name: "Macro",
  4728. height: math.unit(1500, "meters"),
  4729. default: true
  4730. },
  4731. {
  4732. name: "Megamacro",
  4733. height: math.unit(150, "km")
  4734. },
  4735. {
  4736. name: "Gigamacro",
  4737. height: math.unit(27000, "km")
  4738. }
  4739. ]
  4740. ))
  4741. characterMakers.push(() => makeCharacter(
  4742. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4743. {
  4744. front: {
  4745. height: math.unit(6, "feet"),
  4746. weight: math.unit(225, "lb"),
  4747. name: "Front",
  4748. image: {
  4749. source: "./media/characters/abysgar/front.svg",
  4750. extra: 1739/1614,
  4751. bottom: 71/1810
  4752. }
  4753. },
  4754. frontNsfw: {
  4755. height: math.unit(6, "feet"),
  4756. weight: math.unit(225, "lb"),
  4757. name: "Front (NSFW)",
  4758. image: {
  4759. source: "./media/characters/abysgar/front-nsfw.svg",
  4760. extra: 1739/1614,
  4761. bottom: 71/1810
  4762. }
  4763. },
  4764. back: {
  4765. height: math.unit(4.6, "feet"),
  4766. weight: math.unit(225, "lb"),
  4767. name: "Back",
  4768. image: {
  4769. source: "./media/characters/abysgar/back.svg",
  4770. extra: 1384/1327,
  4771. bottom: 0/1384
  4772. }
  4773. },
  4774. head: {
  4775. height: math.unit(1.25, "feet"),
  4776. name: "Head",
  4777. image: {
  4778. source: "./media/characters/abysgar/head.svg",
  4779. extra: 669/569,
  4780. bottom: 0/669
  4781. }
  4782. },
  4783. },
  4784. [
  4785. {
  4786. name: "Small",
  4787. height: math.unit(4.5, "meters")
  4788. },
  4789. {
  4790. name: "Macro",
  4791. height: math.unit(1250, "meters"),
  4792. default: true
  4793. },
  4794. {
  4795. name: "Megamacro",
  4796. height: math.unit(125, "km")
  4797. },
  4798. {
  4799. name: "Gigamacro",
  4800. height: math.unit(26000, "km")
  4801. }
  4802. ]
  4803. ))
  4804. characterMakers.push(() => makeCharacter(
  4805. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4806. {
  4807. front: {
  4808. height: math.unit(6, "feet"),
  4809. weight: math.unit(180, "lb"),
  4810. name: "Front",
  4811. image: {
  4812. source: "./media/characters/yakuz/front.svg"
  4813. }
  4814. }
  4815. },
  4816. [
  4817. {
  4818. name: "Small",
  4819. height: math.unit(5, "meters")
  4820. },
  4821. {
  4822. name: "Macro",
  4823. height: math.unit(1500, "meters"),
  4824. default: true
  4825. },
  4826. {
  4827. name: "Megamacro",
  4828. height: math.unit(200, "km")
  4829. },
  4830. {
  4831. name: "Gigamacro",
  4832. height: math.unit(100000, "km")
  4833. }
  4834. ]
  4835. ))
  4836. characterMakers.push(() => makeCharacter(
  4837. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4838. {
  4839. front: {
  4840. height: math.unit(6, "feet"),
  4841. weight: math.unit(175, "lb"),
  4842. name: "Front",
  4843. image: {
  4844. source: "./media/characters/mirova/front.svg",
  4845. extra: 3334 / 3071,
  4846. bottom: 42 / 3375.6
  4847. }
  4848. }
  4849. },
  4850. [
  4851. {
  4852. name: "Small",
  4853. height: math.unit(5, "meters")
  4854. },
  4855. {
  4856. name: "Macro",
  4857. height: math.unit(900, "meters"),
  4858. default: true
  4859. },
  4860. {
  4861. name: "Megamacro",
  4862. height: math.unit(135, "km")
  4863. },
  4864. {
  4865. name: "Gigamacro",
  4866. height: math.unit(20000, "km")
  4867. }
  4868. ]
  4869. ))
  4870. characterMakers.push(() => makeCharacter(
  4871. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4872. {
  4873. side: {
  4874. height: math.unit(28.35, "feet"),
  4875. weight: math.unit(99.75, "tons"),
  4876. name: "Side",
  4877. image: {
  4878. source: "./media/characters/asana-mech/side.svg",
  4879. extra: 923 / 699,
  4880. bottom: 50 / 975
  4881. }
  4882. },
  4883. chaingun: {
  4884. height: math.unit(7, "feet"),
  4885. weight: math.unit(2400, "lb"),
  4886. name: "Chaingun",
  4887. image: {
  4888. source: "./media/characters/asana-mech/chaingun.svg"
  4889. }
  4890. },
  4891. laser: {
  4892. height: math.unit(7.12, "feet"),
  4893. weight: math.unit(2000, "lb"),
  4894. name: "Laser",
  4895. image: {
  4896. source: "./media/characters/asana-mech/laser.svg"
  4897. }
  4898. },
  4899. },
  4900. [
  4901. {
  4902. name: "Normal",
  4903. height: math.unit(28.35, "feet"),
  4904. default: true
  4905. },
  4906. {
  4907. name: "Macro",
  4908. height: math.unit(2500, "feet")
  4909. },
  4910. {
  4911. name: "Megamacro",
  4912. height: math.unit(25, "miles")
  4913. },
  4914. {
  4915. name: "Examacro",
  4916. height: math.unit(6e8, "lightyears")
  4917. },
  4918. ]
  4919. ))
  4920. characterMakers.push(() => makeCharacter(
  4921. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4922. {
  4923. front: {
  4924. height: math.unit(5, "meters"),
  4925. weight: math.unit(1000, "kg"),
  4926. name: "Front",
  4927. image: {
  4928. source: "./media/characters/asche/front.svg",
  4929. extra: 1258 / 1190,
  4930. bottom: 47 / 1305
  4931. }
  4932. },
  4933. frontUnderwear: {
  4934. height: math.unit(5, "meters"),
  4935. weight: math.unit(1000, "kg"),
  4936. name: "Front (Underwear)",
  4937. image: {
  4938. source: "./media/characters/asche/front-underwear.svg",
  4939. extra: 1258 / 1190,
  4940. bottom: 47 / 1305
  4941. }
  4942. },
  4943. frontDressed: {
  4944. height: math.unit(5, "meters"),
  4945. weight: math.unit(1000, "kg"),
  4946. name: "Front (Dressed)",
  4947. image: {
  4948. source: "./media/characters/asche/front-dressed.svg",
  4949. extra: 1258 / 1190,
  4950. bottom: 47 / 1305
  4951. }
  4952. },
  4953. frontArmor: {
  4954. height: math.unit(5, "meters"),
  4955. weight: math.unit(1000, "kg"),
  4956. name: "Front (Armored)",
  4957. image: {
  4958. source: "./media/characters/asche/front-armored.svg",
  4959. extra: 1374 / 1308,
  4960. bottom: 23 / 1397
  4961. }
  4962. },
  4963. mp724: {
  4964. height: math.unit(0.96, "meters"),
  4965. weight: math.unit(38, "kg"),
  4966. name: "H&K MP724",
  4967. image: {
  4968. source: "./media/characters/asche/h&k-mp724.svg"
  4969. }
  4970. },
  4971. side: {
  4972. height: math.unit(5, "meters"),
  4973. weight: math.unit(1000, "kg"),
  4974. name: "Side",
  4975. image: {
  4976. source: "./media/characters/asche/side.svg",
  4977. extra: 1717 / 1609,
  4978. bottom: 0.005
  4979. }
  4980. },
  4981. back: {
  4982. height: math.unit(5, "meters"),
  4983. weight: math.unit(1000, "kg"),
  4984. name: "Back",
  4985. image: {
  4986. source: "./media/characters/asche/back.svg",
  4987. extra: 1570 / 1501
  4988. }
  4989. },
  4990. },
  4991. [
  4992. {
  4993. name: "DEFCON 5",
  4994. height: math.unit(5, "meters")
  4995. },
  4996. {
  4997. name: "DEFCON 4",
  4998. height: math.unit(500, "meters"),
  4999. default: true
  5000. },
  5001. {
  5002. name: "DEFCON 3",
  5003. height: math.unit(5, "km")
  5004. },
  5005. {
  5006. name: "DEFCON 2",
  5007. height: math.unit(500, "km")
  5008. },
  5009. {
  5010. name: "DEFCON 1",
  5011. height: math.unit(500000, "km")
  5012. },
  5013. {
  5014. name: "DEFCON 0",
  5015. height: math.unit(3, "gigaparsecs")
  5016. },
  5017. ]
  5018. ))
  5019. characterMakers.push(() => makeCharacter(
  5020. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5021. {
  5022. front: {
  5023. height: math.unit(2, "meters"),
  5024. weight: math.unit(76, "kg"),
  5025. name: "Front",
  5026. image: {
  5027. source: "./media/characters/gale/front.svg"
  5028. }
  5029. },
  5030. frontAlt1: {
  5031. height: math.unit(2, "meters"),
  5032. weight: math.unit(76, "kg"),
  5033. name: "Front (Alt 1)",
  5034. image: {
  5035. source: "./media/characters/gale/front-alt-1.svg"
  5036. }
  5037. },
  5038. frontAlt2: {
  5039. height: math.unit(2, "meters"),
  5040. weight: math.unit(76, "kg"),
  5041. name: "Front (Alt 2)",
  5042. image: {
  5043. source: "./media/characters/gale/front-alt-2.svg"
  5044. }
  5045. },
  5046. },
  5047. [
  5048. {
  5049. name: "Normal",
  5050. height: math.unit(7, "feet")
  5051. },
  5052. {
  5053. name: "Macro",
  5054. height: math.unit(150, "feet"),
  5055. default: true
  5056. },
  5057. {
  5058. name: "Macro+",
  5059. height: math.unit(300, "feet")
  5060. },
  5061. ]
  5062. ))
  5063. characterMakers.push(() => makeCharacter(
  5064. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5065. {
  5066. front: {
  5067. height: math.unit(5 + 10/12, "feet"),
  5068. weight: math.unit(67, "kg"),
  5069. name: "Front",
  5070. image: {
  5071. source: "./media/characters/draylen/front.svg",
  5072. extra: 832/777,
  5073. bottom: 85/917
  5074. }
  5075. }
  5076. },
  5077. [
  5078. {
  5079. name: "Normal",
  5080. height: math.unit(5 + 10/12, "feet")
  5081. },
  5082. {
  5083. name: "Macro",
  5084. height: math.unit(150, "feet"),
  5085. default: true
  5086. }
  5087. ]
  5088. ))
  5089. characterMakers.push(() => makeCharacter(
  5090. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5091. {
  5092. front: {
  5093. height: math.unit(7 + 9 / 12, "feet"),
  5094. weight: math.unit(379, "lbs"),
  5095. name: "Front",
  5096. image: {
  5097. source: "./media/characters/chez/front.svg"
  5098. }
  5099. },
  5100. side: {
  5101. height: math.unit(7 + 9 / 12, "feet"),
  5102. weight: math.unit(379, "lbs"),
  5103. name: "Side",
  5104. image: {
  5105. source: "./media/characters/chez/side.svg"
  5106. }
  5107. }
  5108. },
  5109. [
  5110. {
  5111. name: "Normal",
  5112. height: math.unit(7 + 9 / 12, "feet"),
  5113. default: true
  5114. },
  5115. {
  5116. name: "God King",
  5117. height: math.unit(9750000, "meters")
  5118. }
  5119. ]
  5120. ))
  5121. characterMakers.push(() => makeCharacter(
  5122. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5123. {
  5124. front: {
  5125. height: math.unit(6, "feet"),
  5126. weight: math.unit(275, "lbs"),
  5127. name: "Front",
  5128. image: {
  5129. source: "./media/characters/kaylum/front.svg",
  5130. bottom: 0.01,
  5131. extra: 1166 / 1031
  5132. }
  5133. },
  5134. frontWingless: {
  5135. height: math.unit(6, "feet"),
  5136. weight: math.unit(275, "lbs"),
  5137. name: "Front (Wingless)",
  5138. image: {
  5139. source: "./media/characters/kaylum/front-wingless.svg",
  5140. bottom: 0.01,
  5141. extra: 1117 / 1031
  5142. }
  5143. }
  5144. },
  5145. [
  5146. {
  5147. name: "Normal",
  5148. height: math.unit(3.05, "meters")
  5149. },
  5150. {
  5151. name: "Master",
  5152. height: math.unit(5.5, "meters")
  5153. },
  5154. {
  5155. name: "Rampage",
  5156. height: math.unit(19, "meters")
  5157. },
  5158. {
  5159. name: "Macro Lite",
  5160. height: math.unit(37, "meters")
  5161. },
  5162. {
  5163. name: "Hyper Predator",
  5164. height: math.unit(61, "meters")
  5165. },
  5166. {
  5167. name: "Macro",
  5168. height: math.unit(138, "meters"),
  5169. default: true
  5170. }
  5171. ]
  5172. ))
  5173. characterMakers.push(() => makeCharacter(
  5174. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5175. {
  5176. front: {
  5177. height: math.unit(5 + 5 / 12, "feet"),
  5178. weight: math.unit(120, "lbs"),
  5179. name: "Front",
  5180. image: {
  5181. source: "./media/characters/geta/front.svg",
  5182. extra: 1003/933,
  5183. bottom: 21/1024
  5184. }
  5185. },
  5186. paw: {
  5187. height: math.unit(0.35, "feet"),
  5188. name: "Paw",
  5189. image: {
  5190. source: "./media/characters/geta/paw.svg"
  5191. }
  5192. },
  5193. },
  5194. [
  5195. {
  5196. name: "Micro",
  5197. height: math.unit(3, "inches"),
  5198. default: true
  5199. },
  5200. {
  5201. name: "Normal",
  5202. height: math.unit(5 + 5 / 12, "feet")
  5203. }
  5204. ]
  5205. ))
  5206. characterMakers.push(() => makeCharacter(
  5207. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5208. {
  5209. front: {
  5210. height: math.unit(6, "feet"),
  5211. weight: math.unit(300, "lbs"),
  5212. name: "Front",
  5213. image: {
  5214. source: "./media/characters/tyrnn/front.svg"
  5215. }
  5216. }
  5217. },
  5218. [
  5219. {
  5220. name: "Main Height",
  5221. height: math.unit(355, "feet"),
  5222. default: true
  5223. },
  5224. {
  5225. name: "Fave. Height",
  5226. height: math.unit(2400, "feet")
  5227. }
  5228. ]
  5229. ))
  5230. characterMakers.push(() => makeCharacter(
  5231. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5232. {
  5233. front: {
  5234. height: math.unit(6, "feet"),
  5235. weight: math.unit(300, "lbs"),
  5236. name: "Front",
  5237. image: {
  5238. source: "./media/characters/appledectomy/front.svg"
  5239. }
  5240. }
  5241. },
  5242. [
  5243. {
  5244. name: "Macro",
  5245. height: math.unit(2500, "feet")
  5246. },
  5247. {
  5248. name: "Megamacro",
  5249. height: math.unit(50, "miles"),
  5250. default: true
  5251. },
  5252. {
  5253. name: "Gigamacro",
  5254. height: math.unit(5000, "miles")
  5255. },
  5256. {
  5257. name: "Teramacro",
  5258. height: math.unit(250000, "miles")
  5259. },
  5260. ]
  5261. ))
  5262. characterMakers.push(() => makeCharacter(
  5263. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5264. {
  5265. front: {
  5266. height: math.unit(6, "feet"),
  5267. weight: math.unit(200, "lbs"),
  5268. name: "Front",
  5269. image: {
  5270. source: "./media/characters/vulpes/front.svg",
  5271. extra: 573 / 543,
  5272. bottom: 0.033
  5273. }
  5274. },
  5275. side: {
  5276. height: math.unit(6, "feet"),
  5277. weight: math.unit(200, "lbs"),
  5278. name: "Side",
  5279. image: {
  5280. source: "./media/characters/vulpes/side.svg",
  5281. extra: 577 / 549,
  5282. bottom: 11 / 588
  5283. }
  5284. },
  5285. back: {
  5286. height: math.unit(6, "feet"),
  5287. weight: math.unit(200, "lbs"),
  5288. name: "Back",
  5289. image: {
  5290. source: "./media/characters/vulpes/back.svg",
  5291. extra: 573 / 549,
  5292. bottom: 20 / 593
  5293. }
  5294. },
  5295. feet: {
  5296. height: math.unit(1.276, "feet"),
  5297. name: "Feet",
  5298. image: {
  5299. source: "./media/characters/vulpes/feet.svg"
  5300. }
  5301. },
  5302. maw: {
  5303. height: math.unit(1.18, "feet"),
  5304. name: "Maw",
  5305. image: {
  5306. source: "./media/characters/vulpes/maw.svg"
  5307. }
  5308. },
  5309. },
  5310. [
  5311. {
  5312. name: "Micro",
  5313. height: math.unit(2, "inches")
  5314. },
  5315. {
  5316. name: "Normal",
  5317. height: math.unit(6.3, "feet")
  5318. },
  5319. {
  5320. name: "Macro",
  5321. height: math.unit(850, "feet")
  5322. },
  5323. {
  5324. name: "Megamacro",
  5325. height: math.unit(7500, "feet"),
  5326. default: true
  5327. },
  5328. {
  5329. name: "Gigamacro",
  5330. height: math.unit(570000, "miles")
  5331. }
  5332. ]
  5333. ))
  5334. characterMakers.push(() => makeCharacter(
  5335. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5336. {
  5337. front: {
  5338. height: math.unit(6, "feet"),
  5339. weight: math.unit(210, "lbs"),
  5340. name: "Front",
  5341. image: {
  5342. source: "./media/characters/rain-fallen/front.svg"
  5343. }
  5344. },
  5345. side: {
  5346. height: math.unit(6, "feet"),
  5347. weight: math.unit(210, "lbs"),
  5348. name: "Side",
  5349. image: {
  5350. source: "./media/characters/rain-fallen/side.svg"
  5351. }
  5352. },
  5353. back: {
  5354. height: math.unit(6, "feet"),
  5355. weight: math.unit(210, "lbs"),
  5356. name: "Back",
  5357. image: {
  5358. source: "./media/characters/rain-fallen/back.svg"
  5359. }
  5360. },
  5361. feral: {
  5362. height: math.unit(9, "feet"),
  5363. weight: math.unit(700, "lbs"),
  5364. name: "Feral",
  5365. image: {
  5366. source: "./media/characters/rain-fallen/feral.svg"
  5367. }
  5368. },
  5369. },
  5370. [
  5371. {
  5372. name: "Meddling with Mortals",
  5373. height: math.unit(8 + 8/12, "feet")
  5374. },
  5375. {
  5376. name: "Normal",
  5377. height: math.unit(5, "meter")
  5378. },
  5379. {
  5380. name: "Macro",
  5381. height: math.unit(150, "meter"),
  5382. default: true
  5383. },
  5384. {
  5385. name: "Megamacro",
  5386. height: math.unit(278e6, "meter")
  5387. },
  5388. {
  5389. name: "Gigamacro",
  5390. height: math.unit(2e9, "meter")
  5391. },
  5392. {
  5393. name: "Teramacro",
  5394. height: math.unit(8e12, "meter")
  5395. },
  5396. {
  5397. name: "Devourer",
  5398. height: math.unit(14, "zettameters")
  5399. },
  5400. {
  5401. name: "Scarlet King",
  5402. height: math.unit(18, "yottameters")
  5403. },
  5404. {
  5405. name: "Void",
  5406. height: math.unit(1e88, "yottameters")
  5407. }
  5408. ]
  5409. ))
  5410. characterMakers.push(() => makeCharacter(
  5411. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5412. {
  5413. standing: {
  5414. height: math.unit(6, "feet"),
  5415. weight: math.unit(180, "lbs"),
  5416. name: "Standing",
  5417. image: {
  5418. source: "./media/characters/zaakira/standing.svg",
  5419. extra: 1599/1504,
  5420. bottom: 39/1638
  5421. }
  5422. },
  5423. laying: {
  5424. height: math.unit(3.3, "feet"),
  5425. weight: math.unit(180, "lbs"),
  5426. name: "Laying",
  5427. image: {
  5428. source: "./media/characters/zaakira/laying.svg"
  5429. }
  5430. },
  5431. },
  5432. [
  5433. {
  5434. name: "Normal",
  5435. height: math.unit(12, "feet")
  5436. },
  5437. {
  5438. name: "Macro",
  5439. height: math.unit(279, "feet"),
  5440. default: true
  5441. }
  5442. ]
  5443. ))
  5444. characterMakers.push(() => makeCharacter(
  5445. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5446. {
  5447. femSfw: {
  5448. height: math.unit(8, "feet"),
  5449. weight: math.unit(350, "lb"),
  5450. name: "Fem",
  5451. image: {
  5452. source: "./media/characters/sigvald/fem-sfw.svg",
  5453. extra: 182 / 164,
  5454. bottom: 8.7 / 190.5
  5455. }
  5456. },
  5457. femNsfw: {
  5458. height: math.unit(8, "feet"),
  5459. weight: math.unit(350, "lb"),
  5460. name: "Fem (NSFW)",
  5461. image: {
  5462. source: "./media/characters/sigvald/fem-nsfw.svg",
  5463. extra: 182 / 164,
  5464. bottom: 8.7 / 190.5
  5465. }
  5466. },
  5467. maleNsfw: {
  5468. height: math.unit(8, "feet"),
  5469. weight: math.unit(350, "lb"),
  5470. name: "Male (NSFW)",
  5471. image: {
  5472. source: "./media/characters/sigvald/male-nsfw.svg",
  5473. extra: 182 / 164,
  5474. bottom: 8.7 / 190.5
  5475. }
  5476. },
  5477. hermNsfw: {
  5478. height: math.unit(8, "feet"),
  5479. weight: math.unit(350, "lb"),
  5480. name: "Herm (NSFW)",
  5481. image: {
  5482. source: "./media/characters/sigvald/herm-nsfw.svg",
  5483. extra: 182 / 164,
  5484. bottom: 8.7 / 190.5
  5485. }
  5486. },
  5487. dick: {
  5488. height: math.unit(2.36, "feet"),
  5489. name: "Dick",
  5490. image: {
  5491. source: "./media/characters/sigvald/dick.svg"
  5492. }
  5493. },
  5494. eye: {
  5495. height: math.unit(0.31, "feet"),
  5496. name: "Eye",
  5497. image: {
  5498. source: "./media/characters/sigvald/eye.svg"
  5499. }
  5500. },
  5501. mouth: {
  5502. height: math.unit(0.92, "feet"),
  5503. name: "Mouth",
  5504. image: {
  5505. source: "./media/characters/sigvald/mouth.svg"
  5506. }
  5507. },
  5508. paws: {
  5509. height: math.unit(2.2, "feet"),
  5510. name: "Paws",
  5511. image: {
  5512. source: "./media/characters/sigvald/paws.svg"
  5513. }
  5514. }
  5515. },
  5516. [
  5517. {
  5518. name: "Normal",
  5519. height: math.unit(8, "feet")
  5520. },
  5521. {
  5522. name: "Large",
  5523. height: math.unit(12, "feet")
  5524. },
  5525. {
  5526. name: "Larger",
  5527. height: math.unit(20, "feet")
  5528. },
  5529. {
  5530. name: "Macro",
  5531. height: math.unit(150, "feet")
  5532. },
  5533. {
  5534. name: "Macro+",
  5535. height: math.unit(200, "feet"),
  5536. default: true
  5537. },
  5538. ]
  5539. ))
  5540. characterMakers.push(() => makeCharacter(
  5541. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5542. {
  5543. side: {
  5544. height: math.unit(12, "feet"),
  5545. weight: math.unit(2000, "kg"),
  5546. name: "Side",
  5547. image: {
  5548. source: "./media/characters/scott/side.svg",
  5549. extra: 754 / 724,
  5550. bottom: 0.069
  5551. }
  5552. },
  5553. upright: {
  5554. height: math.unit(12, "feet"),
  5555. weight: math.unit(2000, "kg"),
  5556. name: "Upright",
  5557. image: {
  5558. source: "./media/characters/scott/upright.svg",
  5559. extra: 3881 / 3722,
  5560. bottom: 0.05
  5561. }
  5562. },
  5563. },
  5564. [
  5565. {
  5566. name: "Normal",
  5567. height: math.unit(12, "feet"),
  5568. default: true
  5569. },
  5570. ]
  5571. ))
  5572. characterMakers.push(() => makeCharacter(
  5573. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5574. {
  5575. side: {
  5576. height: math.unit(8, "meters"),
  5577. weight: math.unit(84755, "lbs"),
  5578. name: "Side",
  5579. image: {
  5580. source: "./media/characters/tobias/side.svg",
  5581. extra: 1474 / 1096,
  5582. bottom: 38.9 / 1513.1235
  5583. }
  5584. },
  5585. },
  5586. [
  5587. {
  5588. name: "Normal",
  5589. height: math.unit(8, "meters"),
  5590. default: true
  5591. },
  5592. ]
  5593. ))
  5594. characterMakers.push(() => makeCharacter(
  5595. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5596. {
  5597. front: {
  5598. height: math.unit(5.5, "feet"),
  5599. weight: math.unit(400, "lbs"),
  5600. name: "Front",
  5601. image: {
  5602. source: "./media/characters/kieran/front.svg",
  5603. extra: 2694 / 2364,
  5604. bottom: 217 / 2908
  5605. }
  5606. },
  5607. side: {
  5608. height: math.unit(5.5, "feet"),
  5609. weight: math.unit(400, "lbs"),
  5610. name: "Side",
  5611. image: {
  5612. source: "./media/characters/kieran/side.svg",
  5613. extra: 875 / 777,
  5614. bottom: 84.6 / 959
  5615. }
  5616. },
  5617. },
  5618. [
  5619. {
  5620. name: "Normal",
  5621. height: math.unit(5.5, "feet"),
  5622. default: true
  5623. },
  5624. ]
  5625. ))
  5626. characterMakers.push(() => makeCharacter(
  5627. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5628. {
  5629. side: {
  5630. height: math.unit(2, "meters"),
  5631. weight: math.unit(70, "kg"),
  5632. name: "Side",
  5633. image: {
  5634. source: "./media/characters/sanya/side.svg",
  5635. bottom: 0.02,
  5636. extra: 1.02
  5637. }
  5638. },
  5639. },
  5640. [
  5641. {
  5642. name: "Small",
  5643. height: math.unit(2, "meters")
  5644. },
  5645. {
  5646. name: "Normal",
  5647. height: math.unit(3, "meters")
  5648. },
  5649. {
  5650. name: "Macro",
  5651. height: math.unit(16, "meters"),
  5652. default: true
  5653. },
  5654. ]
  5655. ))
  5656. characterMakers.push(() => makeCharacter(
  5657. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5658. {
  5659. front: {
  5660. height: math.unit(2, "meters"),
  5661. weight: math.unit(120, "kg"),
  5662. name: "Front",
  5663. image: {
  5664. source: "./media/characters/miranda/front.svg",
  5665. extra: 195 / 185,
  5666. bottom: 10.9 / 206.5
  5667. }
  5668. },
  5669. back: {
  5670. height: math.unit(2, "meters"),
  5671. weight: math.unit(120, "kg"),
  5672. name: "Back",
  5673. image: {
  5674. source: "./media/characters/miranda/back.svg",
  5675. extra: 201 / 193,
  5676. bottom: 2.3 / 203.7
  5677. }
  5678. },
  5679. },
  5680. [
  5681. {
  5682. name: "Normal",
  5683. height: math.unit(10, "feet"),
  5684. default: true
  5685. }
  5686. ]
  5687. ))
  5688. characterMakers.push(() => makeCharacter(
  5689. { name: "James", species: ["deer"], tags: ["anthro"] },
  5690. {
  5691. side: {
  5692. height: math.unit(2, "meters"),
  5693. weight: math.unit(100, "kg"),
  5694. name: "Front",
  5695. image: {
  5696. source: "./media/characters/james/front.svg",
  5697. extra: 10 / 8.5
  5698. }
  5699. },
  5700. },
  5701. [
  5702. {
  5703. name: "Normal",
  5704. height: math.unit(8.5, "feet"),
  5705. default: true
  5706. }
  5707. ]
  5708. ))
  5709. characterMakers.push(() => makeCharacter(
  5710. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5711. {
  5712. side: {
  5713. height: math.unit(9.5, "feet"),
  5714. weight: math.unit(2500, "lbs"),
  5715. name: "Side",
  5716. image: {
  5717. source: "./media/characters/heather/side.svg"
  5718. }
  5719. },
  5720. },
  5721. [
  5722. {
  5723. name: "Normal",
  5724. height: math.unit(9.5, "feet"),
  5725. default: true
  5726. }
  5727. ]
  5728. ))
  5729. characterMakers.push(() => makeCharacter(
  5730. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5731. {
  5732. side: {
  5733. height: math.unit(6.5, "feet"),
  5734. weight: math.unit(400, "lbs"),
  5735. name: "Side",
  5736. image: {
  5737. source: "./media/characters/lukas/side.svg",
  5738. extra: 7.25 / 6.5
  5739. }
  5740. },
  5741. },
  5742. [
  5743. {
  5744. name: "Normal",
  5745. height: math.unit(6.5, "feet"),
  5746. default: true
  5747. }
  5748. ]
  5749. ))
  5750. characterMakers.push(() => makeCharacter(
  5751. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5752. {
  5753. side: {
  5754. height: math.unit(5, "feet"),
  5755. weight: math.unit(3000, "lbs"),
  5756. name: "Side",
  5757. image: {
  5758. source: "./media/characters/louise/side.svg"
  5759. }
  5760. },
  5761. },
  5762. [
  5763. {
  5764. name: "Normal",
  5765. height: math.unit(5, "feet"),
  5766. default: true
  5767. }
  5768. ]
  5769. ))
  5770. characterMakers.push(() => makeCharacter(
  5771. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5772. {
  5773. side: {
  5774. height: math.unit(6, "feet"),
  5775. weight: math.unit(150, "lbs"),
  5776. name: "Side",
  5777. image: {
  5778. source: "./media/characters/ramona/side.svg",
  5779. extra: 871/854,
  5780. bottom: 41/912
  5781. }
  5782. },
  5783. },
  5784. [
  5785. {
  5786. name: "Normal",
  5787. height: math.unit(6 + 4/12, "feet")
  5788. },
  5789. {
  5790. name: "Minimacro",
  5791. height: math.unit(5.3, "meters"),
  5792. default: true
  5793. },
  5794. {
  5795. name: "Macro",
  5796. height: math.unit(20, "stories")
  5797. },
  5798. {
  5799. name: "Macro+",
  5800. height: math.unit(50, "stories")
  5801. },
  5802. ]
  5803. ))
  5804. characterMakers.push(() => makeCharacter(
  5805. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5806. {
  5807. standing: {
  5808. height: math.unit(5.75, "feet"),
  5809. weight: math.unit(160, "lbs"),
  5810. name: "Standing",
  5811. image: {
  5812. source: "./media/characters/deerpuff/standing.svg",
  5813. extra: 682 / 624
  5814. }
  5815. },
  5816. sitting: {
  5817. height: math.unit(5.75 / 1.79, "feet"),
  5818. weight: math.unit(160, "lbs"),
  5819. name: "Sitting",
  5820. image: {
  5821. source: "./media/characters/deerpuff/sitting.svg",
  5822. bottom: 44 / 400,
  5823. extra: 1
  5824. }
  5825. },
  5826. taurLaying: {
  5827. height: math.unit(6, "feet"),
  5828. weight: math.unit(400, "lbs"),
  5829. name: "Taur (Laying)",
  5830. image: {
  5831. source: "./media/characters/deerpuff/taur-laying.svg"
  5832. }
  5833. },
  5834. },
  5835. [
  5836. {
  5837. name: "Puffball",
  5838. height: math.unit(6, "inches")
  5839. },
  5840. {
  5841. name: "Normalpuff",
  5842. height: math.unit(5.75, "feet")
  5843. },
  5844. {
  5845. name: "Macropuff",
  5846. height: math.unit(1500, "feet"),
  5847. default: true
  5848. },
  5849. {
  5850. name: "Megapuff",
  5851. height: math.unit(500, "miles")
  5852. },
  5853. {
  5854. name: "Gigapuff",
  5855. height: math.unit(250000, "miles")
  5856. },
  5857. {
  5858. name: "Omegapuff",
  5859. height: math.unit(1000, "lightyears")
  5860. },
  5861. ]
  5862. ))
  5863. characterMakers.push(() => makeCharacter(
  5864. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5865. {
  5866. stomping: {
  5867. height: math.unit(6, "feet"),
  5868. weight: math.unit(170, "lbs"),
  5869. name: "Stomping",
  5870. image: {
  5871. source: "./media/characters/vivian/stomping.svg"
  5872. }
  5873. },
  5874. sitting: {
  5875. height: math.unit(6 / 1.75, "feet"),
  5876. weight: math.unit(170, "lbs"),
  5877. name: "Sitting",
  5878. image: {
  5879. source: "./media/characters/vivian/sitting.svg",
  5880. bottom: 1 / 6.4,
  5881. extra: 1,
  5882. }
  5883. },
  5884. },
  5885. [
  5886. {
  5887. name: "Normal",
  5888. height: math.unit(7, "feet"),
  5889. default: true
  5890. },
  5891. {
  5892. name: "Macro",
  5893. height: math.unit(10, "stories")
  5894. },
  5895. {
  5896. name: "Macro+",
  5897. height: math.unit(30, "stories")
  5898. },
  5899. {
  5900. name: "Megamacro",
  5901. height: math.unit(10, "miles")
  5902. },
  5903. {
  5904. name: "Megamacro+",
  5905. height: math.unit(2750000, "meters")
  5906. },
  5907. ]
  5908. ))
  5909. characterMakers.push(() => makeCharacter(
  5910. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5911. {
  5912. front: {
  5913. height: math.unit(6, "feet"),
  5914. weight: math.unit(160, "lbs"),
  5915. name: "Front",
  5916. image: {
  5917. source: "./media/characters/prince/front.svg",
  5918. extra: 3400 / 3000
  5919. }
  5920. },
  5921. jumping: {
  5922. height: math.unit(6, "feet"),
  5923. weight: math.unit(160, "lbs"),
  5924. name: "Jumping",
  5925. image: {
  5926. source: "./media/characters/prince/jump.svg",
  5927. extra: 2555 / 2134
  5928. }
  5929. },
  5930. },
  5931. [
  5932. {
  5933. name: "Normal",
  5934. height: math.unit(7.75, "feet"),
  5935. default: true
  5936. },
  5937. {
  5938. name: "Not cute",
  5939. height: math.unit(17, "feet")
  5940. },
  5941. {
  5942. name: "I said NOT",
  5943. height: math.unit(91, "feet")
  5944. },
  5945. {
  5946. name: "Please stop",
  5947. height: math.unit(560, "feet")
  5948. },
  5949. {
  5950. name: "What have you done",
  5951. height: math.unit(2200, "feet")
  5952. },
  5953. {
  5954. name: "Deer God",
  5955. height: math.unit(3.6, "miles")
  5956. },
  5957. ]
  5958. ))
  5959. characterMakers.push(() => makeCharacter(
  5960. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5961. {
  5962. standing: {
  5963. height: math.unit(6, "feet"),
  5964. weight: math.unit(300, "lbs"),
  5965. name: "Standing",
  5966. image: {
  5967. source: "./media/characters/psymon/standing.svg",
  5968. extra: 1888 / 1810,
  5969. bottom: 0.05
  5970. }
  5971. },
  5972. slithering: {
  5973. height: math.unit(6, "feet"),
  5974. weight: math.unit(300, "lbs"),
  5975. name: "Slithering",
  5976. image: {
  5977. source: "./media/characters/psymon/slithering.svg",
  5978. extra: 1330 / 1224
  5979. }
  5980. },
  5981. slitheringAlt: {
  5982. height: math.unit(6, "feet"),
  5983. weight: math.unit(300, "lbs"),
  5984. name: "Slithering (Alt)",
  5985. image: {
  5986. source: "./media/characters/psymon/slithering-alt.svg",
  5987. extra: 1330 / 1224
  5988. }
  5989. },
  5990. },
  5991. [
  5992. {
  5993. name: "Normal",
  5994. height: math.unit(11.25, "feet"),
  5995. default: true
  5996. },
  5997. {
  5998. name: "Large",
  5999. height: math.unit(27, "feet")
  6000. },
  6001. {
  6002. name: "Giant",
  6003. height: math.unit(87, "feet")
  6004. },
  6005. {
  6006. name: "Macro",
  6007. height: math.unit(365, "feet")
  6008. },
  6009. {
  6010. name: "Megamacro",
  6011. height: math.unit(3, "miles")
  6012. },
  6013. {
  6014. name: "World Serpent",
  6015. height: math.unit(8000, "miles")
  6016. },
  6017. ]
  6018. ))
  6019. characterMakers.push(() => makeCharacter(
  6020. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6021. {
  6022. front: {
  6023. height: math.unit(6, "feet"),
  6024. weight: math.unit(180, "lbs"),
  6025. name: "Front",
  6026. image: {
  6027. source: "./media/characters/daimos/front.svg",
  6028. extra: 4160 / 3897,
  6029. bottom: 0.021
  6030. }
  6031. }
  6032. },
  6033. [
  6034. {
  6035. name: "Normal",
  6036. height: math.unit(8, "feet"),
  6037. default: true
  6038. },
  6039. {
  6040. name: "Big Dog",
  6041. height: math.unit(22, "feet")
  6042. },
  6043. {
  6044. name: "Macro",
  6045. height: math.unit(127, "feet")
  6046. },
  6047. {
  6048. name: "Megamacro",
  6049. height: math.unit(3600, "feet")
  6050. },
  6051. ]
  6052. ))
  6053. characterMakers.push(() => makeCharacter(
  6054. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6055. {
  6056. side: {
  6057. height: math.unit(6, "feet"),
  6058. weight: math.unit(180, "lbs"),
  6059. name: "Side",
  6060. image: {
  6061. source: "./media/characters/blake/side.svg",
  6062. extra: 1212 / 1120,
  6063. bottom: 0.05
  6064. }
  6065. },
  6066. crouched: {
  6067. height: math.unit(6 * 0.57, "feet"),
  6068. weight: math.unit(180, "lbs"),
  6069. name: "Crouched",
  6070. image: {
  6071. source: "./media/characters/blake/crouched.svg",
  6072. extra: 840 / 587,
  6073. bottom: 0.04
  6074. }
  6075. },
  6076. bent: {
  6077. height: math.unit(6 * 0.75, "feet"),
  6078. weight: math.unit(180, "lbs"),
  6079. name: "Bent",
  6080. image: {
  6081. source: "./media/characters/blake/bent.svg",
  6082. extra: 592 / 544,
  6083. bottom: 0.035
  6084. }
  6085. },
  6086. },
  6087. [
  6088. {
  6089. name: "Normal",
  6090. height: math.unit(8 + 1 / 6, "feet"),
  6091. default: true
  6092. },
  6093. {
  6094. name: "Big Backside",
  6095. height: math.unit(37, "feet")
  6096. },
  6097. {
  6098. name: "Subway Shredder",
  6099. height: math.unit(72, "feet")
  6100. },
  6101. {
  6102. name: "City Carver",
  6103. height: math.unit(1675, "feet")
  6104. },
  6105. {
  6106. name: "Tectonic Tweaker",
  6107. height: math.unit(2300, "miles")
  6108. },
  6109. ]
  6110. ))
  6111. characterMakers.push(() => makeCharacter(
  6112. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6113. {
  6114. front: {
  6115. height: math.unit(6, "feet"),
  6116. weight: math.unit(180, "lbs"),
  6117. name: "Front",
  6118. image: {
  6119. source: "./media/characters/guisetto/front.svg",
  6120. extra: 856 / 817,
  6121. bottom: 0.06
  6122. }
  6123. },
  6124. airborne: {
  6125. height: math.unit(6, "feet"),
  6126. weight: math.unit(180, "lbs"),
  6127. name: "Airborne",
  6128. image: {
  6129. source: "./media/characters/guisetto/airborne.svg",
  6130. extra: 584 / 525
  6131. }
  6132. },
  6133. },
  6134. [
  6135. {
  6136. name: "Normal",
  6137. height: math.unit(10 + 11 / 12, "feet"),
  6138. default: true
  6139. },
  6140. {
  6141. name: "Large",
  6142. height: math.unit(35, "feet")
  6143. },
  6144. {
  6145. name: "Macro",
  6146. height: math.unit(475, "feet")
  6147. },
  6148. ]
  6149. ))
  6150. characterMakers.push(() => makeCharacter(
  6151. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6152. {
  6153. front: {
  6154. height: math.unit(6, "feet"),
  6155. weight: math.unit(180, "lbs"),
  6156. name: "Front",
  6157. image: {
  6158. source: "./media/characters/luxor/front.svg",
  6159. extra: 2940 / 2152
  6160. }
  6161. },
  6162. back: {
  6163. height: math.unit(6, "feet"),
  6164. weight: math.unit(180, "lbs"),
  6165. name: "Back",
  6166. image: {
  6167. source: "./media/characters/luxor/back.svg",
  6168. extra: 1083 / 960
  6169. }
  6170. },
  6171. },
  6172. [
  6173. {
  6174. name: "Normal",
  6175. height: math.unit(5 + 5 / 6, "feet"),
  6176. default: true
  6177. },
  6178. {
  6179. name: "Lamp",
  6180. height: math.unit(50, "feet")
  6181. },
  6182. {
  6183. name: "Lämp",
  6184. height: math.unit(300, "feet")
  6185. },
  6186. {
  6187. name: "The sun is a lamp",
  6188. height: math.unit(250000, "miles")
  6189. },
  6190. ]
  6191. ))
  6192. characterMakers.push(() => makeCharacter(
  6193. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6194. {
  6195. front: {
  6196. height: math.unit(6, "feet"),
  6197. weight: math.unit(50, "lbs"),
  6198. name: "Front",
  6199. image: {
  6200. source: "./media/characters/huoyan/front.svg"
  6201. }
  6202. },
  6203. side: {
  6204. height: math.unit(6, "feet"),
  6205. weight: math.unit(180, "lbs"),
  6206. name: "Side",
  6207. image: {
  6208. source: "./media/characters/huoyan/side.svg"
  6209. }
  6210. },
  6211. },
  6212. [
  6213. {
  6214. name: "Chef",
  6215. height: math.unit(9, "feet")
  6216. },
  6217. {
  6218. name: "Normal",
  6219. height: math.unit(65, "feet"),
  6220. default: true
  6221. },
  6222. {
  6223. name: "Macro",
  6224. height: math.unit(780, "feet")
  6225. },
  6226. {
  6227. name: "Flaming Mountain",
  6228. height: math.unit(4.8, "miles")
  6229. },
  6230. {
  6231. name: "Celestial",
  6232. height: math.unit(765000, "miles")
  6233. },
  6234. ]
  6235. ))
  6236. characterMakers.push(() => makeCharacter(
  6237. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6238. {
  6239. front: {
  6240. height: math.unit(5 + 3 / 4, "feet"),
  6241. weight: math.unit(120, "lbs"),
  6242. name: "Front",
  6243. image: {
  6244. source: "./media/characters/tails/front.svg"
  6245. }
  6246. }
  6247. },
  6248. [
  6249. {
  6250. name: "Normal",
  6251. height: math.unit(5 + 3 / 4, "feet"),
  6252. default: true
  6253. }
  6254. ]
  6255. ))
  6256. characterMakers.push(() => makeCharacter(
  6257. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6258. {
  6259. front: {
  6260. height: math.unit(4, "feet"),
  6261. weight: math.unit(50, "lbs"),
  6262. name: "Front",
  6263. image: {
  6264. source: "./media/characters/rainy/front.svg"
  6265. }
  6266. }
  6267. },
  6268. [
  6269. {
  6270. name: "Macro",
  6271. height: math.unit(800, "feet"),
  6272. default: true
  6273. }
  6274. ]
  6275. ))
  6276. characterMakers.push(() => makeCharacter(
  6277. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6278. {
  6279. front: {
  6280. height: math.unit(6, "feet"),
  6281. weight: math.unit(150, "lbs"),
  6282. name: "Front",
  6283. image: {
  6284. source: "./media/characters/rainier/front.svg"
  6285. }
  6286. }
  6287. },
  6288. [
  6289. {
  6290. name: "Micro",
  6291. height: math.unit(2, "mm"),
  6292. default: true
  6293. }
  6294. ]
  6295. ))
  6296. characterMakers.push(() => makeCharacter(
  6297. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6298. {
  6299. front: {
  6300. height: math.unit(8 + 4/12, "feet"),
  6301. weight: math.unit(450, "kilograms"),
  6302. volume: math.unit(5, "cups"),
  6303. name: "Front",
  6304. image: {
  6305. source: "./media/characters/andy-renard/front.svg",
  6306. extra: 1839/1726,
  6307. bottom: 134/1973
  6308. }
  6309. },
  6310. back: {
  6311. height: math.unit(8 + 4/12, "feet"),
  6312. weight: math.unit(450, "kilograms"),
  6313. volume: math.unit(5, "cups"),
  6314. name: "Back",
  6315. image: {
  6316. source: "./media/characters/andy-renard/back.svg",
  6317. extra: 1838/1710,
  6318. bottom: 105/1943
  6319. }
  6320. },
  6321. },
  6322. [
  6323. {
  6324. name: "Tall",
  6325. height: math.unit(8 + 4/12, "feet")
  6326. },
  6327. {
  6328. name: "Mini Macro",
  6329. height: math.unit(15, "feet"),
  6330. default: true
  6331. },
  6332. {
  6333. name: "Macro",
  6334. height: math.unit(100, "feet")
  6335. },
  6336. {
  6337. name: "Mega Macro",
  6338. height: math.unit(1000, "feet")
  6339. },
  6340. {
  6341. name: "Giga Macro",
  6342. height: math.unit(10, "miles")
  6343. },
  6344. {
  6345. name: "God Macro",
  6346. height: math.unit(1, "multiverse")
  6347. },
  6348. ]
  6349. ))
  6350. characterMakers.push(() => makeCharacter(
  6351. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6352. {
  6353. front: {
  6354. height: math.unit(6, "feet"),
  6355. weight: math.unit(210, "lbs"),
  6356. name: "Front",
  6357. image: {
  6358. source: "./media/characters/cimmaron/front-sfw.svg",
  6359. extra: 701 / 676,
  6360. bottom: 0.046
  6361. }
  6362. },
  6363. back: {
  6364. height: math.unit(6, "feet"),
  6365. weight: math.unit(210, "lbs"),
  6366. name: "Back",
  6367. image: {
  6368. source: "./media/characters/cimmaron/back-sfw.svg",
  6369. extra: 701 / 676,
  6370. bottom: 0.046
  6371. }
  6372. },
  6373. frontNsfw: {
  6374. height: math.unit(6, "feet"),
  6375. weight: math.unit(210, "lbs"),
  6376. name: "Front (NSFW)",
  6377. image: {
  6378. source: "./media/characters/cimmaron/front-nsfw.svg",
  6379. extra: 701 / 676,
  6380. bottom: 0.046
  6381. }
  6382. },
  6383. backNsfw: {
  6384. height: math.unit(6, "feet"),
  6385. weight: math.unit(210, "lbs"),
  6386. name: "Back (NSFW)",
  6387. image: {
  6388. source: "./media/characters/cimmaron/back-nsfw.svg",
  6389. extra: 701 / 676,
  6390. bottom: 0.046
  6391. }
  6392. },
  6393. dick: {
  6394. height: math.unit(1.714, "feet"),
  6395. name: "Dick",
  6396. image: {
  6397. source: "./media/characters/cimmaron/dick.svg"
  6398. }
  6399. },
  6400. },
  6401. [
  6402. {
  6403. name: "Normal",
  6404. height: math.unit(6, "feet"),
  6405. default: true
  6406. },
  6407. {
  6408. name: "Macro Mayor",
  6409. height: math.unit(350, "meters")
  6410. },
  6411. ]
  6412. ))
  6413. characterMakers.push(() => makeCharacter(
  6414. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6415. {
  6416. front: {
  6417. height: math.unit(6, "feet"),
  6418. weight: math.unit(200, "lbs"),
  6419. name: "Front",
  6420. image: {
  6421. source: "./media/characters/akari/front.svg",
  6422. extra: 962 / 901,
  6423. bottom: 0.04
  6424. }
  6425. }
  6426. },
  6427. [
  6428. {
  6429. name: "Micro",
  6430. height: math.unit(5, "inches"),
  6431. default: true
  6432. },
  6433. {
  6434. name: "Normal",
  6435. height: math.unit(7, "feet")
  6436. },
  6437. ]
  6438. ))
  6439. characterMakers.push(() => makeCharacter(
  6440. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6441. {
  6442. front: {
  6443. height: math.unit(6, "feet"),
  6444. weight: math.unit(140, "lbs"),
  6445. name: "Front",
  6446. image: {
  6447. source: "./media/characters/cynosura/front.svg",
  6448. extra: 896 / 847
  6449. }
  6450. },
  6451. back: {
  6452. height: math.unit(6, "feet"),
  6453. weight: math.unit(140, "lbs"),
  6454. name: "Back",
  6455. image: {
  6456. source: "./media/characters/cynosura/back.svg",
  6457. extra: 1365 / 1250
  6458. }
  6459. },
  6460. },
  6461. [
  6462. {
  6463. name: "Micro",
  6464. height: math.unit(4, "inches")
  6465. },
  6466. {
  6467. name: "Normal",
  6468. height: math.unit(5.75, "feet"),
  6469. default: true
  6470. },
  6471. {
  6472. name: "Tall",
  6473. height: math.unit(10, "feet")
  6474. },
  6475. {
  6476. name: "Big",
  6477. height: math.unit(20, "feet")
  6478. },
  6479. {
  6480. name: "Macro",
  6481. height: math.unit(50, "feet")
  6482. },
  6483. ]
  6484. ))
  6485. characterMakers.push(() => makeCharacter(
  6486. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6487. {
  6488. front: {
  6489. height: math.unit(13 + 2/12, "feet"),
  6490. weight: math.unit(800, "kg"),
  6491. name: "Front",
  6492. image: {
  6493. source: "./media/characters/gin/front.svg",
  6494. extra: 1312/1191,
  6495. bottom: 45/1357
  6496. }
  6497. },
  6498. mouth: {
  6499. height: math.unit(2.39 * 1.8, "feet"),
  6500. name: "Mouth",
  6501. image: {
  6502. source: "./media/characters/gin/mouth.svg"
  6503. }
  6504. },
  6505. hand: {
  6506. height: math.unit(1.57 * 2.19, "feet"),
  6507. name: "Hand",
  6508. image: {
  6509. source: "./media/characters/gin/hand.svg"
  6510. }
  6511. },
  6512. foot: {
  6513. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6514. name: "Foot",
  6515. image: {
  6516. source: "./media/characters/gin/foot.svg"
  6517. }
  6518. },
  6519. sole: {
  6520. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6521. name: "Sole",
  6522. image: {
  6523. source: "./media/characters/gin/sole.svg"
  6524. }
  6525. },
  6526. },
  6527. [
  6528. {
  6529. name: "Very Small",
  6530. height: math.unit(13 + 2 / 12, "feet")
  6531. },
  6532. {
  6533. name: "Micro",
  6534. height: math.unit(600, "miles")
  6535. },
  6536. {
  6537. name: "Regular",
  6538. height: math.unit(20, "earths"),
  6539. default: true
  6540. },
  6541. {
  6542. name: "Macro",
  6543. height: math.unit(2.2, "solarradii")
  6544. },
  6545. {
  6546. name: "Teramacro",
  6547. height: math.unit(1.2, "galaxies")
  6548. },
  6549. {
  6550. name: "Omegamacro",
  6551. height: math.unit(200, "universes")
  6552. },
  6553. ]
  6554. ))
  6555. characterMakers.push(() => makeCharacter(
  6556. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6557. {
  6558. front: {
  6559. height: math.unit(6 + 1 / 6, "feet"),
  6560. weight: math.unit(178, "lbs"),
  6561. name: "Front",
  6562. image: {
  6563. source: "./media/characters/guy/front.svg"
  6564. }
  6565. }
  6566. },
  6567. [
  6568. {
  6569. name: "Normal",
  6570. height: math.unit(6 + 1 / 6, "feet"),
  6571. default: true
  6572. },
  6573. {
  6574. name: "Large",
  6575. height: math.unit(25 + 7 / 12, "feet")
  6576. },
  6577. {
  6578. name: "Macro",
  6579. height: math.unit(60 + 9 / 12, "feet")
  6580. },
  6581. {
  6582. name: "Macro+",
  6583. height: math.unit(246, "feet")
  6584. },
  6585. {
  6586. name: "Macro++",
  6587. height: math.unit(878, "feet")
  6588. }
  6589. ]
  6590. ))
  6591. characterMakers.push(() => makeCharacter(
  6592. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6593. {
  6594. front: {
  6595. height: math.unit(9, "feet"),
  6596. weight: math.unit(800, "lbs"),
  6597. name: "Front",
  6598. image: {
  6599. source: "./media/characters/tiberius/front.svg",
  6600. extra: 2295 / 2071
  6601. }
  6602. },
  6603. back: {
  6604. height: math.unit(9, "feet"),
  6605. weight: math.unit(800, "lbs"),
  6606. name: "Back",
  6607. image: {
  6608. source: "./media/characters/tiberius/back.svg",
  6609. extra: 2373 / 2160
  6610. }
  6611. },
  6612. },
  6613. [
  6614. {
  6615. name: "Normal",
  6616. height: math.unit(9, "feet"),
  6617. default: true
  6618. }
  6619. ]
  6620. ))
  6621. characterMakers.push(() => makeCharacter(
  6622. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6623. {
  6624. front: {
  6625. height: math.unit(6, "feet"),
  6626. weight: math.unit(600, "lbs"),
  6627. name: "Front",
  6628. image: {
  6629. source: "./media/characters/surgo/front.svg",
  6630. extra: 3591 / 2227
  6631. }
  6632. },
  6633. back: {
  6634. height: math.unit(6, "feet"),
  6635. weight: math.unit(600, "lbs"),
  6636. name: "Back",
  6637. image: {
  6638. source: "./media/characters/surgo/back.svg",
  6639. extra: 3557 / 2228
  6640. }
  6641. },
  6642. laying: {
  6643. height: math.unit(6 * 0.85, "feet"),
  6644. weight: math.unit(600, "lbs"),
  6645. name: "Laying",
  6646. image: {
  6647. source: "./media/characters/surgo/laying.svg"
  6648. }
  6649. },
  6650. },
  6651. [
  6652. {
  6653. name: "Normal",
  6654. height: math.unit(6, "feet"),
  6655. default: true
  6656. }
  6657. ]
  6658. ))
  6659. characterMakers.push(() => makeCharacter(
  6660. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6661. {
  6662. side: {
  6663. height: math.unit(6, "feet"),
  6664. weight: math.unit(150, "lbs"),
  6665. name: "Side",
  6666. image: {
  6667. source: "./media/characters/cibus/side.svg",
  6668. extra: 800 / 400
  6669. }
  6670. },
  6671. },
  6672. [
  6673. {
  6674. name: "Normal",
  6675. height: math.unit(6, "feet"),
  6676. default: true
  6677. }
  6678. ]
  6679. ))
  6680. characterMakers.push(() => makeCharacter(
  6681. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6682. {
  6683. front: {
  6684. height: math.unit(6, "feet"),
  6685. weight: math.unit(240, "lbs"),
  6686. name: "Front",
  6687. image: {
  6688. source: "./media/characters/nibbles/front.svg"
  6689. }
  6690. },
  6691. side: {
  6692. height: math.unit(6, "feet"),
  6693. weight: math.unit(240, "lbs"),
  6694. name: "Side",
  6695. image: {
  6696. source: "./media/characters/nibbles/side.svg"
  6697. }
  6698. },
  6699. },
  6700. [
  6701. {
  6702. name: "Normal",
  6703. height: math.unit(9, "feet"),
  6704. default: true
  6705. }
  6706. ]
  6707. ))
  6708. characterMakers.push(() => makeCharacter(
  6709. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6710. {
  6711. side: {
  6712. height: math.unit(5 + 1 / 6, "feet"),
  6713. weight: math.unit(130, "lbs"),
  6714. name: "Side",
  6715. image: {
  6716. source: "./media/characters/rikky/side.svg",
  6717. extra: 851 / 801
  6718. }
  6719. },
  6720. },
  6721. [
  6722. {
  6723. name: "Normal",
  6724. height: math.unit(5 + 1 / 6, "feet")
  6725. },
  6726. {
  6727. name: "Macro",
  6728. height: math.unit(152, "feet"),
  6729. default: true
  6730. },
  6731. {
  6732. name: "Megamacro",
  6733. height: math.unit(7, "miles")
  6734. }
  6735. ]
  6736. ))
  6737. characterMakers.push(() => makeCharacter(
  6738. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6739. {
  6740. side: {
  6741. height: math.unit(370, "cm"),
  6742. weight: math.unit(350, "lbs"),
  6743. name: "Side",
  6744. image: {
  6745. source: "./media/characters/malfressa/side.svg"
  6746. }
  6747. },
  6748. walking: {
  6749. height: math.unit(370, "cm"),
  6750. weight: math.unit(350, "lbs"),
  6751. name: "Walking",
  6752. image: {
  6753. source: "./media/characters/malfressa/walking.svg"
  6754. }
  6755. },
  6756. feral: {
  6757. height: math.unit(2500, "cm"),
  6758. weight: math.unit(100000, "lbs"),
  6759. name: "Feral",
  6760. image: {
  6761. source: "./media/characters/malfressa/feral.svg",
  6762. extra: 2108 / 837,
  6763. bottom: 0.02
  6764. }
  6765. },
  6766. },
  6767. [
  6768. {
  6769. name: "Normal",
  6770. height: math.unit(370, "cm")
  6771. },
  6772. {
  6773. name: "Macro",
  6774. height: math.unit(300, "meters"),
  6775. default: true
  6776. }
  6777. ]
  6778. ))
  6779. characterMakers.push(() => makeCharacter(
  6780. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6781. {
  6782. front: {
  6783. height: math.unit(6, "feet"),
  6784. weight: math.unit(60, "kg"),
  6785. name: "Front",
  6786. image: {
  6787. source: "./media/characters/jaro/front.svg",
  6788. extra: 845/817,
  6789. bottom: 45/890
  6790. }
  6791. },
  6792. back: {
  6793. height: math.unit(6, "feet"),
  6794. weight: math.unit(60, "kg"),
  6795. name: "Back",
  6796. image: {
  6797. source: "./media/characters/jaro/back.svg",
  6798. extra: 847/817,
  6799. bottom: 34/881
  6800. }
  6801. },
  6802. },
  6803. [
  6804. {
  6805. name: "Micro",
  6806. height: math.unit(7, "inches")
  6807. },
  6808. {
  6809. name: "Normal",
  6810. height: math.unit(5.5, "feet"),
  6811. default: true
  6812. },
  6813. {
  6814. name: "Minimacro",
  6815. height: math.unit(20, "feet")
  6816. },
  6817. {
  6818. name: "Macro",
  6819. height: math.unit(200, "meters")
  6820. }
  6821. ]
  6822. ))
  6823. characterMakers.push(() => makeCharacter(
  6824. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6825. {
  6826. front: {
  6827. height: math.unit(6, "feet"),
  6828. weight: math.unit(195, "lb"),
  6829. name: "Front",
  6830. image: {
  6831. source: "./media/characters/rogue/front.svg"
  6832. }
  6833. },
  6834. },
  6835. [
  6836. {
  6837. name: "Macro",
  6838. height: math.unit(90, "feet"),
  6839. default: true
  6840. },
  6841. ]
  6842. ))
  6843. characterMakers.push(() => makeCharacter(
  6844. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6845. {
  6846. standing: {
  6847. height: math.unit(5 + 8 / 12, "feet"),
  6848. weight: math.unit(140, "lb"),
  6849. name: "Standing",
  6850. image: {
  6851. source: "./media/characters/piper/standing.svg",
  6852. extra: 1440/1284,
  6853. bottom: 66/1506
  6854. }
  6855. },
  6856. running: {
  6857. height: math.unit(5 + 8 / 12, "feet"),
  6858. weight: math.unit(140, "lb"),
  6859. name: "Running",
  6860. image: {
  6861. source: "./media/characters/piper/running.svg",
  6862. extra: 3948/3655,
  6863. bottom: 0/3948
  6864. }
  6865. },
  6866. sole: {
  6867. height: math.unit(0.81, "feet"),
  6868. weight: math.unit(2, "kg"),
  6869. name: "Sole",
  6870. image: {
  6871. source: "./media/characters/piper/sole.svg"
  6872. }
  6873. },
  6874. nipple: {
  6875. height: math.unit(0.25, "feet"),
  6876. weight: math.unit(1.5, "lb"),
  6877. name: "Nipple",
  6878. image: {
  6879. source: "./media/characters/piper/nipple.svg"
  6880. }
  6881. },
  6882. head: {
  6883. height: math.unit(1.1, "feet"),
  6884. name: "Head",
  6885. image: {
  6886. source: "./media/characters/piper/head.svg"
  6887. }
  6888. },
  6889. },
  6890. [
  6891. {
  6892. name: "Micro",
  6893. height: math.unit(2, "inches")
  6894. },
  6895. {
  6896. name: "Normal",
  6897. height: math.unit(5 + 8 / 12, "feet")
  6898. },
  6899. {
  6900. name: "Macro",
  6901. height: math.unit(250, "feet"),
  6902. default: true
  6903. },
  6904. {
  6905. name: "Megamacro",
  6906. height: math.unit(7, "miles")
  6907. },
  6908. ]
  6909. ))
  6910. characterMakers.push(() => makeCharacter(
  6911. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6912. {
  6913. front: {
  6914. height: math.unit(6, "feet"),
  6915. weight: math.unit(220, "lb"),
  6916. name: "Front",
  6917. image: {
  6918. source: "./media/characters/gemini/front.svg"
  6919. }
  6920. },
  6921. back: {
  6922. height: math.unit(6, "feet"),
  6923. weight: math.unit(220, "lb"),
  6924. name: "Back",
  6925. image: {
  6926. source: "./media/characters/gemini/back.svg"
  6927. }
  6928. },
  6929. kneeling: {
  6930. height: math.unit(6 / 1.5, "feet"),
  6931. weight: math.unit(220, "lb"),
  6932. name: "Kneeling",
  6933. image: {
  6934. source: "./media/characters/gemini/kneeling.svg",
  6935. bottom: 0.02
  6936. }
  6937. },
  6938. },
  6939. [
  6940. {
  6941. name: "Macro",
  6942. height: math.unit(300, "meters"),
  6943. default: true
  6944. },
  6945. {
  6946. name: "Megamacro",
  6947. height: math.unit(6900, "meters")
  6948. },
  6949. ]
  6950. ))
  6951. characterMakers.push(() => makeCharacter(
  6952. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6953. {
  6954. anthro: {
  6955. height: math.unit(2.35, "meters"),
  6956. weight: math.unit(73, "kg"),
  6957. name: "Anthro",
  6958. image: {
  6959. source: "./media/characters/alicia/anthro.svg",
  6960. extra: 2571 / 2385,
  6961. bottom: 75 / 2648
  6962. }
  6963. },
  6964. paw: {
  6965. height: math.unit(1.32, "feet"),
  6966. name: "Paw",
  6967. image: {
  6968. source: "./media/characters/alicia/paw.svg"
  6969. }
  6970. },
  6971. feral: {
  6972. height: math.unit(1.69, "meters"),
  6973. weight: math.unit(73, "kg"),
  6974. name: "Feral",
  6975. image: {
  6976. source: "./media/characters/alicia/feral.svg",
  6977. extra: 2123 / 1715,
  6978. bottom: 222 / 2349
  6979. }
  6980. },
  6981. },
  6982. [
  6983. {
  6984. name: "Normal",
  6985. height: math.unit(2.35, "meters")
  6986. },
  6987. {
  6988. name: "Macro",
  6989. height: math.unit(60, "meters"),
  6990. default: true
  6991. },
  6992. {
  6993. name: "Megamacro",
  6994. height: math.unit(10000, "kilometers")
  6995. },
  6996. ]
  6997. ))
  6998. characterMakers.push(() => makeCharacter(
  6999. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7000. {
  7001. front: {
  7002. height: math.unit(7, "feet"),
  7003. weight: math.unit(250, "lbs"),
  7004. name: "Front",
  7005. image: {
  7006. source: "./media/characters/archy/front.svg"
  7007. }
  7008. }
  7009. },
  7010. [
  7011. {
  7012. name: "Micro",
  7013. height: math.unit(1, "inch")
  7014. },
  7015. {
  7016. name: "Shorty",
  7017. height: math.unit(5, "feet")
  7018. },
  7019. {
  7020. name: "Normal",
  7021. height: math.unit(7, "feet")
  7022. },
  7023. {
  7024. name: "Macro",
  7025. height: math.unit(600, "meters"),
  7026. default: true
  7027. },
  7028. {
  7029. name: "Megamacro",
  7030. height: math.unit(1, "mile")
  7031. },
  7032. ]
  7033. ))
  7034. characterMakers.push(() => makeCharacter(
  7035. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7036. {
  7037. front: {
  7038. height: math.unit(1.65, "meters"),
  7039. weight: math.unit(74, "kg"),
  7040. name: "Front",
  7041. image: {
  7042. source: "./media/characters/berri/front.svg",
  7043. extra: 857 / 837,
  7044. bottom: 18 / 877
  7045. }
  7046. },
  7047. bum: {
  7048. height: math.unit(1.46, "feet"),
  7049. name: "Bum",
  7050. image: {
  7051. source: "./media/characters/berri/bum.svg"
  7052. }
  7053. },
  7054. mouth: {
  7055. height: math.unit(0.44, "feet"),
  7056. name: "Mouth",
  7057. image: {
  7058. source: "./media/characters/berri/mouth.svg"
  7059. }
  7060. },
  7061. paw: {
  7062. height: math.unit(0.826, "feet"),
  7063. name: "Paw",
  7064. image: {
  7065. source: "./media/characters/berri/paw.svg"
  7066. }
  7067. },
  7068. },
  7069. [
  7070. {
  7071. name: "Normal",
  7072. height: math.unit(1.65, "meters")
  7073. },
  7074. {
  7075. name: "Macro",
  7076. height: math.unit(60, "m"),
  7077. default: true
  7078. },
  7079. {
  7080. name: "Megamacro",
  7081. height: math.unit(9.213, "km")
  7082. },
  7083. {
  7084. name: "Planet Eater",
  7085. height: math.unit(489, "megameters")
  7086. },
  7087. {
  7088. name: "Teramacro",
  7089. height: math.unit(2471635000000, "meters")
  7090. },
  7091. {
  7092. name: "Examacro",
  7093. height: math.unit(8.0624e+26, "meters")
  7094. }
  7095. ]
  7096. ))
  7097. characterMakers.push(() => makeCharacter(
  7098. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7099. {
  7100. front: {
  7101. height: math.unit(1.72, "meters"),
  7102. weight: math.unit(68, "kg"),
  7103. name: "Front",
  7104. image: {
  7105. source: "./media/characters/lexi/front.svg"
  7106. }
  7107. }
  7108. },
  7109. [
  7110. {
  7111. name: "Very Smol",
  7112. height: math.unit(10, "mm")
  7113. },
  7114. {
  7115. name: "Micro",
  7116. height: math.unit(6.8, "cm"),
  7117. default: true
  7118. },
  7119. {
  7120. name: "Normal",
  7121. height: math.unit(1.72, "m")
  7122. }
  7123. ]
  7124. ))
  7125. characterMakers.push(() => makeCharacter(
  7126. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7127. {
  7128. front: {
  7129. height: math.unit(1.69, "meters"),
  7130. weight: math.unit(68, "kg"),
  7131. name: "Front",
  7132. image: {
  7133. source: "./media/characters/martin/front.svg",
  7134. extra: 596 / 581
  7135. }
  7136. }
  7137. },
  7138. [
  7139. {
  7140. name: "Micro",
  7141. height: math.unit(6.85, "cm"),
  7142. default: true
  7143. },
  7144. {
  7145. name: "Normal",
  7146. height: math.unit(1.69, "m")
  7147. }
  7148. ]
  7149. ))
  7150. characterMakers.push(() => makeCharacter(
  7151. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7152. {
  7153. front: {
  7154. height: math.unit(1.69, "meters"),
  7155. weight: math.unit(68, "kg"),
  7156. name: "Front",
  7157. image: {
  7158. source: "./media/characters/juno/front.svg"
  7159. }
  7160. }
  7161. },
  7162. [
  7163. {
  7164. name: "Micro",
  7165. height: math.unit(7, "cm")
  7166. },
  7167. {
  7168. name: "Normal",
  7169. height: math.unit(1.89, "m")
  7170. },
  7171. {
  7172. name: "Macro",
  7173. height: math.unit(353, "meters"),
  7174. default: true
  7175. }
  7176. ]
  7177. ))
  7178. characterMakers.push(() => makeCharacter(
  7179. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7180. {
  7181. front: {
  7182. height: math.unit(1.93, "meters"),
  7183. weight: math.unit(83, "kg"),
  7184. name: "Front",
  7185. image: {
  7186. source: "./media/characters/samantha/front.svg"
  7187. }
  7188. },
  7189. frontClothed: {
  7190. height: math.unit(1.93, "meters"),
  7191. weight: math.unit(83, "kg"),
  7192. name: "Front (Clothed)",
  7193. image: {
  7194. source: "./media/characters/samantha/front-clothed.svg"
  7195. }
  7196. },
  7197. back: {
  7198. height: math.unit(1.93, "meters"),
  7199. weight: math.unit(83, "kg"),
  7200. name: "Back",
  7201. image: {
  7202. source: "./media/characters/samantha/back.svg"
  7203. }
  7204. },
  7205. },
  7206. [
  7207. {
  7208. name: "Normal",
  7209. height: math.unit(1.93, "m")
  7210. },
  7211. {
  7212. name: "Macro",
  7213. height: math.unit(74, "meters"),
  7214. default: true
  7215. },
  7216. {
  7217. name: "Macro+",
  7218. height: math.unit(223, "meters"),
  7219. },
  7220. {
  7221. name: "Megamacro",
  7222. height: math.unit(8381, "meters"),
  7223. },
  7224. {
  7225. name: "Megamacro+",
  7226. height: math.unit(12000, "kilometers")
  7227. },
  7228. ]
  7229. ))
  7230. characterMakers.push(() => makeCharacter(
  7231. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7232. {
  7233. front: {
  7234. height: math.unit(1.92, "meters"),
  7235. weight: math.unit(80, "kg"),
  7236. name: "Front",
  7237. image: {
  7238. source: "./media/characters/dr-clay/front.svg"
  7239. }
  7240. },
  7241. frontClothed: {
  7242. height: math.unit(1.92, "meters"),
  7243. weight: math.unit(80, "kg"),
  7244. name: "Front (Clothed)",
  7245. image: {
  7246. source: "./media/characters/dr-clay/front-clothed.svg"
  7247. }
  7248. }
  7249. },
  7250. [
  7251. {
  7252. name: "Normal",
  7253. height: math.unit(1.92, "m")
  7254. },
  7255. {
  7256. name: "Macro",
  7257. height: math.unit(214, "meters"),
  7258. default: true
  7259. },
  7260. {
  7261. name: "Macro+",
  7262. height: math.unit(12.237, "meters"),
  7263. },
  7264. {
  7265. name: "Megamacro",
  7266. height: math.unit(557, "megameters"),
  7267. },
  7268. {
  7269. name: "Unimaginable",
  7270. height: math.unit(120e9, "lightyears")
  7271. },
  7272. ]
  7273. ))
  7274. characterMakers.push(() => makeCharacter(
  7275. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7276. {
  7277. front: {
  7278. height: math.unit(2, "meters"),
  7279. weight: math.unit(80, "kg"),
  7280. name: "Front",
  7281. image: {
  7282. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7283. }
  7284. }
  7285. },
  7286. [
  7287. {
  7288. name: "Teramacro",
  7289. height: math.unit(500000, "lightyears"),
  7290. default: true
  7291. },
  7292. ]
  7293. ))
  7294. characterMakers.push(() => makeCharacter(
  7295. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7296. {
  7297. crux: {
  7298. height: math.unit(2, "meters"),
  7299. weight: math.unit(150, "kg"),
  7300. name: "Crux",
  7301. image: {
  7302. source: "./media/characters/vemus/crux.svg",
  7303. extra: 1074/936,
  7304. bottom: 23/1097
  7305. }
  7306. },
  7307. skunkTanuki: {
  7308. height: math.unit(2, "meters"),
  7309. weight: math.unit(150, "kg"),
  7310. name: "Skunk-Tanuki",
  7311. image: {
  7312. source: "./media/characters/vemus/skunk-tanuki.svg",
  7313. extra: 926/893,
  7314. bottom: 20/946
  7315. }
  7316. },
  7317. },
  7318. [
  7319. {
  7320. name: "Normal",
  7321. height: math.unit(4, "meters"),
  7322. default: true
  7323. },
  7324. {
  7325. name: "Big",
  7326. height: math.unit(8, "meters")
  7327. },
  7328. {
  7329. name: "Macro",
  7330. height: math.unit(100, "meters")
  7331. },
  7332. {
  7333. name: "Macro+",
  7334. height: math.unit(1500, "meters")
  7335. },
  7336. {
  7337. name: "Stellar",
  7338. height: math.unit(14e8, "meters")
  7339. },
  7340. ]
  7341. ))
  7342. characterMakers.push(() => makeCharacter(
  7343. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7344. {
  7345. front: {
  7346. height: math.unit(2, "meters"),
  7347. weight: math.unit(70, "kg"),
  7348. name: "Front",
  7349. image: {
  7350. source: "./media/characters/beherit/front.svg",
  7351. extra: 1234/1109,
  7352. bottom: 55/1289
  7353. }
  7354. }
  7355. },
  7356. [
  7357. {
  7358. name: "Normal",
  7359. height: math.unit(6, "feet")
  7360. },
  7361. {
  7362. name: "Lorg",
  7363. height: math.unit(25, "feet"),
  7364. default: true
  7365. },
  7366. {
  7367. name: "Lorger",
  7368. height: math.unit(75, "feet")
  7369. },
  7370. {
  7371. name: "Macro",
  7372. height: math.unit(200, "meters")
  7373. },
  7374. ]
  7375. ))
  7376. characterMakers.push(() => makeCharacter(
  7377. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7378. {
  7379. front: {
  7380. height: math.unit(2, "meters"),
  7381. weight: math.unit(150, "kg"),
  7382. name: "Front",
  7383. image: {
  7384. source: "./media/characters/everett/front.svg",
  7385. extra: 1017/866,
  7386. bottom: 86/1103
  7387. }
  7388. },
  7389. paw: {
  7390. height: math.unit(2 / 3.6, "meters"),
  7391. name: "Paw",
  7392. image: {
  7393. source: "./media/characters/everett/paw.svg"
  7394. }
  7395. },
  7396. },
  7397. [
  7398. {
  7399. name: "Normal",
  7400. height: math.unit(15, "feet"),
  7401. default: true
  7402. },
  7403. {
  7404. name: "Lorg",
  7405. height: math.unit(70, "feet"),
  7406. default: true
  7407. },
  7408. {
  7409. name: "Lorger",
  7410. height: math.unit(250, "feet")
  7411. },
  7412. {
  7413. name: "Macro",
  7414. height: math.unit(500, "meters")
  7415. },
  7416. ]
  7417. ))
  7418. characterMakers.push(() => makeCharacter(
  7419. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7420. {
  7421. front: {
  7422. height: math.unit(2, "meters"),
  7423. weight: math.unit(86, "kg"),
  7424. name: "Front",
  7425. image: {
  7426. source: "./media/characters/rose/front.svg",
  7427. extra: 1785/1636,
  7428. bottom: 30/1815
  7429. },
  7430. form: "liom",
  7431. default: true
  7432. },
  7433. frontSporty: {
  7434. height: math.unit(2, "meters"),
  7435. weight: math.unit(86, "kg"),
  7436. name: "Front (Sporty)",
  7437. image: {
  7438. source: "./media/characters/rose/front-sporty.svg",
  7439. extra: 350/335,
  7440. bottom: 10/360
  7441. },
  7442. form: "liom"
  7443. },
  7444. frontAlt: {
  7445. height: math.unit(1.6, "meters"),
  7446. weight: math.unit(86, "kg"),
  7447. name: "Front (Alt)",
  7448. image: {
  7449. source: "./media/characters/rose/front-alt.svg",
  7450. extra: 299/283,
  7451. bottom: 3/302
  7452. },
  7453. form: "liom"
  7454. },
  7455. plush: {
  7456. height: math.unit(2, "meters"),
  7457. weight: math.unit(86/3, "kg"),
  7458. name: "Plush",
  7459. image: {
  7460. source: "./media/characters/rose/plush.svg",
  7461. extra: 361/337,
  7462. bottom: 11/372
  7463. },
  7464. form: "plush",
  7465. default: true
  7466. },
  7467. faeStanding: {
  7468. height: math.unit(10, "cm"),
  7469. weight: math.unit(10, "grams"),
  7470. name: "Standing",
  7471. image: {
  7472. source: "./media/characters/rose/fae-standing.svg",
  7473. extra: 1189/1060,
  7474. bottom: 27/1216
  7475. },
  7476. form: "fae",
  7477. default: true
  7478. },
  7479. faeSitting: {
  7480. height: math.unit(5, "cm"),
  7481. weight: math.unit(10, "grams"),
  7482. name: "Sitting",
  7483. image: {
  7484. source: "./media/characters/rose/fae-sitting.svg",
  7485. extra: 737/577,
  7486. bottom: 356/1093
  7487. },
  7488. form: "fae"
  7489. },
  7490. faePaw: {
  7491. height: math.unit(1.35, "cm"),
  7492. name: "Paw",
  7493. image: {
  7494. source: "./media/characters/rose/fae-paw.svg"
  7495. },
  7496. form: "fae"
  7497. },
  7498. },
  7499. [
  7500. {
  7501. name: "True Micro",
  7502. height: math.unit(9, "cm"),
  7503. form: "liom"
  7504. },
  7505. {
  7506. name: "Micro",
  7507. height: math.unit(16, "cm"),
  7508. form: "liom"
  7509. },
  7510. {
  7511. name: "Normal",
  7512. height: math.unit(1.85, "meters"),
  7513. default: true,
  7514. form: "liom"
  7515. },
  7516. {
  7517. name: "Mini-Macro",
  7518. height: math.unit(5, "meters"),
  7519. form: "liom"
  7520. },
  7521. {
  7522. name: "Macro",
  7523. height: math.unit(15, "meters"),
  7524. form: "liom"
  7525. },
  7526. {
  7527. name: "True Macro",
  7528. height: math.unit(40, "meters"),
  7529. form: "liom"
  7530. },
  7531. {
  7532. name: "City Scale",
  7533. height: math.unit(1, "km"),
  7534. form: "liom"
  7535. },
  7536. {
  7537. name: "Plushie",
  7538. height: math.unit(9, "cm"),
  7539. form: "plush",
  7540. default: true
  7541. },
  7542. {
  7543. name: "Fae",
  7544. height: math.unit(10, "cm"),
  7545. form: "fae",
  7546. default: true
  7547. },
  7548. ],
  7549. {
  7550. "liom": {
  7551. name: "Liom"
  7552. },
  7553. "plush": {
  7554. name: "Plush"
  7555. },
  7556. "fae": {
  7557. name: "Fae Fox",
  7558. default: true
  7559. }
  7560. }
  7561. ))
  7562. characterMakers.push(() => makeCharacter(
  7563. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7564. {
  7565. front: {
  7566. height: math.unit(2, "meters"),
  7567. weight: math.unit(350, "lbs"),
  7568. name: "Front",
  7569. image: {
  7570. source: "./media/characters/regal/front.svg"
  7571. }
  7572. },
  7573. back: {
  7574. height: math.unit(2, "meters"),
  7575. weight: math.unit(350, "lbs"),
  7576. name: "Back",
  7577. image: {
  7578. source: "./media/characters/regal/back.svg"
  7579. }
  7580. },
  7581. },
  7582. [
  7583. {
  7584. name: "Macro",
  7585. height: math.unit(350, "feet"),
  7586. default: true
  7587. }
  7588. ]
  7589. ))
  7590. characterMakers.push(() => makeCharacter(
  7591. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7592. {
  7593. front: {
  7594. height: math.unit(4 + 11 / 12, "feet"),
  7595. weight: math.unit(100, "lbs"),
  7596. name: "Front",
  7597. image: {
  7598. source: "./media/characters/opal/front.svg"
  7599. }
  7600. },
  7601. frontAlt: {
  7602. height: math.unit(4 + 11 / 12, "feet"),
  7603. weight: math.unit(100, "lbs"),
  7604. name: "Front (Alt)",
  7605. image: {
  7606. source: "./media/characters/opal/front-alt.svg"
  7607. }
  7608. },
  7609. },
  7610. [
  7611. {
  7612. name: "Small",
  7613. height: math.unit(4 + 11 / 12, "feet")
  7614. },
  7615. {
  7616. name: "Normal",
  7617. height: math.unit(20, "feet"),
  7618. default: true
  7619. },
  7620. {
  7621. name: "Macro",
  7622. height: math.unit(120, "feet")
  7623. },
  7624. {
  7625. name: "Megamacro",
  7626. height: math.unit(80, "miles")
  7627. },
  7628. {
  7629. name: "True Size",
  7630. height: math.unit(100000, "lightyears")
  7631. },
  7632. ]
  7633. ))
  7634. characterMakers.push(() => makeCharacter(
  7635. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7636. {
  7637. front: {
  7638. height: math.unit(6, "feet"),
  7639. weight: math.unit(200, "lbs"),
  7640. name: "Front",
  7641. image: {
  7642. source: "./media/characters/vector-wuff/front.svg"
  7643. }
  7644. }
  7645. },
  7646. [
  7647. {
  7648. name: "Normal",
  7649. height: math.unit(2.8, "meters")
  7650. },
  7651. {
  7652. name: "Macro",
  7653. height: math.unit(450, "meters"),
  7654. default: true
  7655. },
  7656. {
  7657. name: "Megamacro",
  7658. height: math.unit(15, "kilometers")
  7659. }
  7660. ]
  7661. ))
  7662. characterMakers.push(() => makeCharacter(
  7663. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7664. {
  7665. front: {
  7666. height: math.unit(6, "feet"),
  7667. weight: math.unit(256, "lbs"),
  7668. name: "Front",
  7669. image: {
  7670. source: "./media/characters/dannik/front.svg"
  7671. }
  7672. }
  7673. },
  7674. [
  7675. {
  7676. name: "Macro",
  7677. height: math.unit(69.57, "meters"),
  7678. default: true
  7679. },
  7680. ]
  7681. ))
  7682. characterMakers.push(() => makeCharacter(
  7683. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7684. {
  7685. front: {
  7686. height: math.unit(6, "feet"),
  7687. weight: math.unit(120, "lbs"),
  7688. name: "Front",
  7689. image: {
  7690. source: "./media/characters/azura-saharah/front.svg"
  7691. }
  7692. },
  7693. back: {
  7694. height: math.unit(6, "feet"),
  7695. weight: math.unit(120, "lbs"),
  7696. name: "Back",
  7697. image: {
  7698. source: "./media/characters/azura-saharah/back.svg"
  7699. }
  7700. },
  7701. },
  7702. [
  7703. {
  7704. name: "Macro",
  7705. height: math.unit(100, "feet"),
  7706. default: true
  7707. },
  7708. ]
  7709. ))
  7710. characterMakers.push(() => makeCharacter(
  7711. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7712. {
  7713. side: {
  7714. height: math.unit(5 + 4 / 12, "feet"),
  7715. weight: math.unit(163, "lbs"),
  7716. name: "Side",
  7717. image: {
  7718. source: "./media/characters/kennedy/side.svg"
  7719. }
  7720. }
  7721. },
  7722. [
  7723. {
  7724. name: "Standard Doggo",
  7725. height: math.unit(5 + 4 / 12, "feet")
  7726. },
  7727. {
  7728. name: "Big Doggo",
  7729. height: math.unit(25 + 3 / 12, "feet"),
  7730. default: true
  7731. },
  7732. ]
  7733. ))
  7734. characterMakers.push(() => makeCharacter(
  7735. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7736. {
  7737. front: {
  7738. height: math.unit(5 + 5/12, "feet"),
  7739. weight: math.unit(100, "lbs"),
  7740. name: "Front",
  7741. image: {
  7742. source: "./media/characters/odios-de-lunar/front.svg",
  7743. extra: 1468/1323,
  7744. bottom: 22/1490
  7745. }
  7746. }
  7747. },
  7748. [
  7749. {
  7750. name: "Micro",
  7751. height: math.unit(3, "inches")
  7752. },
  7753. {
  7754. name: "Normal",
  7755. height: math.unit(5.5, "feet"),
  7756. default: true
  7757. },
  7758. {
  7759. name: "Macro",
  7760. height: math.unit(100, "feet")
  7761. },
  7762. ]
  7763. ))
  7764. characterMakers.push(() => makeCharacter(
  7765. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7766. {
  7767. back: {
  7768. height: math.unit(6, "feet"),
  7769. weight: math.unit(220, "lbs"),
  7770. name: "Back",
  7771. image: {
  7772. source: "./media/characters/mandake/back.svg"
  7773. }
  7774. }
  7775. },
  7776. [
  7777. {
  7778. name: "Normal",
  7779. height: math.unit(7, "feet"),
  7780. default: true
  7781. },
  7782. {
  7783. name: "Macro",
  7784. height: math.unit(78, "feet")
  7785. },
  7786. {
  7787. name: "Macro+",
  7788. height: math.unit(300, "meters")
  7789. },
  7790. {
  7791. name: "Macro++",
  7792. height: math.unit(2400, "feet")
  7793. },
  7794. {
  7795. name: "Megamacro",
  7796. height: math.unit(5167, "meters")
  7797. },
  7798. {
  7799. name: "Gigamacro",
  7800. height: math.unit(41769, "miles")
  7801. },
  7802. ]
  7803. ))
  7804. characterMakers.push(() => makeCharacter(
  7805. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7806. {
  7807. front: {
  7808. height: math.unit(6, "feet"),
  7809. weight: math.unit(120, "lbs"),
  7810. name: "Front",
  7811. image: {
  7812. source: "./media/characters/yozey/front.svg"
  7813. }
  7814. },
  7815. frontAlt: {
  7816. height: math.unit(6, "feet"),
  7817. weight: math.unit(120, "lbs"),
  7818. name: "Front (Alt)",
  7819. image: {
  7820. source: "./media/characters/yozey/front-alt.svg"
  7821. }
  7822. },
  7823. side: {
  7824. height: math.unit(6, "feet"),
  7825. weight: math.unit(120, "lbs"),
  7826. name: "Side",
  7827. image: {
  7828. source: "./media/characters/yozey/side.svg"
  7829. }
  7830. },
  7831. },
  7832. [
  7833. {
  7834. name: "Micro",
  7835. height: math.unit(3, "inches"),
  7836. default: true
  7837. },
  7838. {
  7839. name: "Normal",
  7840. height: math.unit(6, "feet")
  7841. }
  7842. ]
  7843. ))
  7844. characterMakers.push(() => makeCharacter(
  7845. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7846. {
  7847. front: {
  7848. height: math.unit(6, "feet"),
  7849. weight: math.unit(103, "lbs"),
  7850. name: "Front",
  7851. image: {
  7852. source: "./media/characters/valeska-voss/front.svg"
  7853. }
  7854. }
  7855. },
  7856. [
  7857. {
  7858. name: "Mini-Sized Sub",
  7859. height: math.unit(3.1, "inches")
  7860. },
  7861. {
  7862. name: "Mid-Sized Sub",
  7863. height: math.unit(6.2, "inches")
  7864. },
  7865. {
  7866. name: "Full-Sized Sub",
  7867. height: math.unit(9.3, "inches")
  7868. },
  7869. {
  7870. name: "Normal",
  7871. height: math.unit(5 + 2 / 12, "foot"),
  7872. default: true
  7873. },
  7874. ]
  7875. ))
  7876. characterMakers.push(() => makeCharacter(
  7877. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7878. {
  7879. front: {
  7880. height: math.unit(6, "feet"),
  7881. weight: math.unit(160, "lbs"),
  7882. name: "Front",
  7883. image: {
  7884. source: "./media/characters/gene-zeta/front.svg",
  7885. extra: 3006 / 2826,
  7886. bottom: 182 / 3188
  7887. }
  7888. }
  7889. },
  7890. [
  7891. {
  7892. name: "Micro",
  7893. height: math.unit(6, "inches")
  7894. },
  7895. {
  7896. name: "Normal",
  7897. height: math.unit(5 + 11 / 12, "foot"),
  7898. default: true
  7899. },
  7900. {
  7901. name: "Macro",
  7902. height: math.unit(140, "feet")
  7903. },
  7904. {
  7905. name: "Supercharged",
  7906. height: math.unit(2500, "feet")
  7907. },
  7908. ]
  7909. ))
  7910. characterMakers.push(() => makeCharacter(
  7911. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7912. {
  7913. front: {
  7914. height: math.unit(6, "feet"),
  7915. weight: math.unit(350, "lbs"),
  7916. name: "Front",
  7917. image: {
  7918. source: "./media/characters/razinox/front.svg",
  7919. extra: 1686 / 1548,
  7920. bottom: 28.2 / 1868
  7921. }
  7922. },
  7923. back: {
  7924. height: math.unit(6, "feet"),
  7925. weight: math.unit(350, "lbs"),
  7926. name: "Back",
  7927. image: {
  7928. source: "./media/characters/razinox/back.svg",
  7929. extra: 1660 / 1590,
  7930. bottom: 15 / 1665
  7931. }
  7932. },
  7933. },
  7934. [
  7935. {
  7936. name: "Normal",
  7937. height: math.unit(10 + 8 / 12, "foot")
  7938. },
  7939. {
  7940. name: "Minimacro",
  7941. height: math.unit(15, "foot")
  7942. },
  7943. {
  7944. name: "Macro",
  7945. height: math.unit(60, "foot"),
  7946. default: true
  7947. },
  7948. {
  7949. name: "Megamacro",
  7950. height: math.unit(5, "miles")
  7951. },
  7952. {
  7953. name: "Gigamacro",
  7954. height: math.unit(6000, "miles")
  7955. },
  7956. ]
  7957. ))
  7958. characterMakers.push(() => makeCharacter(
  7959. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7960. {
  7961. front: {
  7962. height: math.unit(6, "feet"),
  7963. weight: math.unit(150, "lbs"),
  7964. name: "Front",
  7965. image: {
  7966. source: "./media/characters/cobalt/front.svg"
  7967. }
  7968. }
  7969. },
  7970. [
  7971. {
  7972. name: "Normal",
  7973. height: math.unit(8 + 1 / 12, "foot")
  7974. },
  7975. {
  7976. name: "Macro",
  7977. height: math.unit(111, "foot"),
  7978. default: true
  7979. },
  7980. {
  7981. name: "Supracosmic",
  7982. height: math.unit(1e42, "feet")
  7983. },
  7984. ]
  7985. ))
  7986. characterMakers.push(() => makeCharacter(
  7987. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7988. {
  7989. front: {
  7990. height: math.unit(5, "inches"),
  7991. name: "Front",
  7992. image: {
  7993. source: "./media/characters/amanda/front.svg",
  7994. extra: 926/791,
  7995. bottom: 38/964
  7996. }
  7997. },
  7998. back: {
  7999. height: math.unit(5, "inches"),
  8000. name: "Back",
  8001. image: {
  8002. source: "./media/characters/amanda/back.svg",
  8003. extra: 909/805,
  8004. bottom: 43/952
  8005. }
  8006. },
  8007. },
  8008. [
  8009. {
  8010. name: "Micro",
  8011. height: math.unit(5, "inches"),
  8012. default: true
  8013. },
  8014. ]
  8015. ))
  8016. characterMakers.push(() => makeCharacter(
  8017. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8018. {
  8019. front: {
  8020. height: math.unit(2.75, "meters"),
  8021. weight: math.unit(1200, "lb"),
  8022. name: "Front",
  8023. image: {
  8024. source: "./media/characters/teal/front.svg",
  8025. extra: 2463 / 2320,
  8026. bottom: 166 / 2629
  8027. }
  8028. },
  8029. back: {
  8030. height: math.unit(2.75, "meters"),
  8031. weight: math.unit(1200, "lb"),
  8032. name: "Back",
  8033. image: {
  8034. source: "./media/characters/teal/back.svg",
  8035. extra: 2580 / 2489,
  8036. bottom: 151 / 2731
  8037. }
  8038. },
  8039. sitting: {
  8040. height: math.unit(1.9, "meters"),
  8041. weight: math.unit(1200, "lb"),
  8042. name: "Sitting",
  8043. image: {
  8044. source: "./media/characters/teal/sitting.svg",
  8045. extra: 623 / 590,
  8046. bottom: 121 / 744
  8047. }
  8048. },
  8049. standing: {
  8050. height: math.unit(2.75, "meters"),
  8051. weight: math.unit(1200, "lb"),
  8052. name: "Standing",
  8053. image: {
  8054. source: "./media/characters/teal/standing.svg",
  8055. extra: 923 / 893,
  8056. bottom: 60 / 983
  8057. }
  8058. },
  8059. stretching: {
  8060. height: math.unit(3.65, "meters"),
  8061. weight: math.unit(1200, "lb"),
  8062. name: "Stretching",
  8063. image: {
  8064. source: "./media/characters/teal/stretching.svg",
  8065. extra: 1276 / 1244,
  8066. bottom: 0 / 1276
  8067. }
  8068. },
  8069. legged: {
  8070. height: math.unit(1.3, "meters"),
  8071. weight: math.unit(100, "lb"),
  8072. name: "Legged",
  8073. image: {
  8074. source: "./media/characters/teal/legged.svg",
  8075. extra: 462 / 437,
  8076. bottom: 24 / 486
  8077. }
  8078. },
  8079. naga: {
  8080. height: math.unit(5.4, "meters"),
  8081. weight: math.unit(4000, "lb"),
  8082. name: "Naga",
  8083. image: {
  8084. source: "./media/characters/teal/naga.svg",
  8085. extra: 1902 / 1858,
  8086. bottom: 0 / 1902
  8087. }
  8088. },
  8089. hand: {
  8090. height: math.unit(0.52, "meters"),
  8091. name: "Hand",
  8092. image: {
  8093. source: "./media/characters/teal/hand.svg"
  8094. }
  8095. },
  8096. maw: {
  8097. height: math.unit(0.43, "meters"),
  8098. name: "Maw",
  8099. image: {
  8100. source: "./media/characters/teal/maw.svg"
  8101. }
  8102. },
  8103. slit: {
  8104. height: math.unit(0.25, "meters"),
  8105. name: "Slit",
  8106. image: {
  8107. source: "./media/characters/teal/slit.svg"
  8108. }
  8109. },
  8110. },
  8111. [
  8112. {
  8113. name: "Normal",
  8114. height: math.unit(2.75, "meters"),
  8115. default: true
  8116. },
  8117. {
  8118. name: "Macro",
  8119. height: math.unit(300, "feet")
  8120. },
  8121. {
  8122. name: "Macro+",
  8123. height: math.unit(2000, "feet")
  8124. },
  8125. ]
  8126. ))
  8127. characterMakers.push(() => makeCharacter(
  8128. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8129. {
  8130. frontCat: {
  8131. height: math.unit(6, "feet"),
  8132. weight: math.unit(180, "lbs"),
  8133. name: "Front (Cat)",
  8134. image: {
  8135. source: "./media/characters/ravin-amulet/front-cat.svg"
  8136. }
  8137. },
  8138. frontCatAlt: {
  8139. height: math.unit(6, "feet"),
  8140. weight: math.unit(180, "lbs"),
  8141. name: "Front (Alt, Cat)",
  8142. image: {
  8143. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8144. }
  8145. },
  8146. frontWerewolf: {
  8147. height: math.unit(6 * 1.2, "feet"),
  8148. weight: math.unit(225, "lbs"),
  8149. name: "Front (Werewolf)",
  8150. image: {
  8151. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8152. }
  8153. },
  8154. backWerewolf: {
  8155. height: math.unit(6 * 1.2, "feet"),
  8156. weight: math.unit(225, "lbs"),
  8157. name: "Back (Werewolf)",
  8158. image: {
  8159. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8160. }
  8161. },
  8162. },
  8163. [
  8164. {
  8165. name: "Nano",
  8166. height: math.unit(1, "micrometer")
  8167. },
  8168. {
  8169. name: "Micro",
  8170. height: math.unit(1, "inch")
  8171. },
  8172. {
  8173. name: "Normal",
  8174. height: math.unit(6, "feet"),
  8175. default: true
  8176. },
  8177. {
  8178. name: "Macro",
  8179. height: math.unit(60, "feet")
  8180. }
  8181. ]
  8182. ))
  8183. characterMakers.push(() => makeCharacter(
  8184. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8185. {
  8186. front: {
  8187. height: math.unit(6, "feet"),
  8188. weight: math.unit(165, "lbs"),
  8189. name: "Front",
  8190. image: {
  8191. source: "./media/characters/fluoresce/front.svg"
  8192. }
  8193. }
  8194. },
  8195. [
  8196. {
  8197. name: "Micro",
  8198. height: math.unit(6, "cm")
  8199. },
  8200. {
  8201. name: "Normal",
  8202. height: math.unit(5 + 7 / 12, "feet"),
  8203. default: true
  8204. },
  8205. {
  8206. name: "Macro",
  8207. height: math.unit(56, "feet")
  8208. },
  8209. {
  8210. name: "Megamacro",
  8211. height: math.unit(1.9, "miles")
  8212. },
  8213. ]
  8214. ))
  8215. characterMakers.push(() => makeCharacter(
  8216. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8217. {
  8218. front: {
  8219. height: math.unit(9 + 6 / 12, "feet"),
  8220. weight: math.unit(523, "lbs"),
  8221. name: "Side",
  8222. image: {
  8223. source: "./media/characters/aurora/side.svg"
  8224. }
  8225. }
  8226. },
  8227. [
  8228. {
  8229. name: "Normal",
  8230. height: math.unit(9 + 6 / 12, "feet")
  8231. },
  8232. {
  8233. name: "Macro",
  8234. height: math.unit(96, "feet"),
  8235. default: true
  8236. },
  8237. {
  8238. name: "Macro+",
  8239. height: math.unit(243, "feet")
  8240. },
  8241. ]
  8242. ))
  8243. characterMakers.push(() => makeCharacter(
  8244. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8245. {
  8246. front: {
  8247. height: math.unit(194, "cm"),
  8248. weight: math.unit(90, "kg"),
  8249. name: "Front",
  8250. image: {
  8251. source: "./media/characters/ranek/front.svg",
  8252. extra: 1862/1791,
  8253. bottom: 80/1942
  8254. }
  8255. },
  8256. back: {
  8257. height: math.unit(194, "cm"),
  8258. weight: math.unit(90, "kg"),
  8259. name: "Back",
  8260. image: {
  8261. source: "./media/characters/ranek/back.svg",
  8262. extra: 1853/1787,
  8263. bottom: 74/1927
  8264. }
  8265. },
  8266. feral: {
  8267. height: math.unit(30, "cm"),
  8268. weight: math.unit(1.6, "lbs"),
  8269. name: "Feral",
  8270. image: {
  8271. source: "./media/characters/ranek/feral.svg",
  8272. extra: 990/631,
  8273. bottom: 29/1019
  8274. }
  8275. },
  8276. },
  8277. [
  8278. {
  8279. name: "Normal",
  8280. height: math.unit(194, "cm"),
  8281. default: true
  8282. },
  8283. {
  8284. name: "Macro",
  8285. height: math.unit(100, "meters")
  8286. },
  8287. ]
  8288. ))
  8289. characterMakers.push(() => makeCharacter(
  8290. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8291. {
  8292. front: {
  8293. height: math.unit(5 + 6 / 12, "feet"),
  8294. weight: math.unit(153, "lbs"),
  8295. name: "Front",
  8296. image: {
  8297. source: "./media/characters/andrew-cooper/front.svg"
  8298. }
  8299. },
  8300. },
  8301. [
  8302. {
  8303. name: "Nano",
  8304. height: math.unit(1, "mm")
  8305. },
  8306. {
  8307. name: "Micro",
  8308. height: math.unit(2, "inches")
  8309. },
  8310. {
  8311. name: "Normal",
  8312. height: math.unit(5 + 6 / 12, "feet"),
  8313. default: true
  8314. }
  8315. ]
  8316. ))
  8317. characterMakers.push(() => makeCharacter(
  8318. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8319. {
  8320. front: {
  8321. height: math.unit(6, "feet"),
  8322. weight: math.unit(180, "lbs"),
  8323. name: "Front",
  8324. image: {
  8325. source: "./media/characters/akane-sato/front.svg",
  8326. extra: 1219 / 1140
  8327. }
  8328. },
  8329. back: {
  8330. height: math.unit(6, "feet"),
  8331. weight: math.unit(180, "lbs"),
  8332. name: "Back",
  8333. image: {
  8334. source: "./media/characters/akane-sato/back.svg",
  8335. extra: 1219 / 1170
  8336. }
  8337. },
  8338. },
  8339. [
  8340. {
  8341. name: "Normal",
  8342. height: math.unit(2.5, "meters")
  8343. },
  8344. {
  8345. name: "Macro",
  8346. height: math.unit(250, "meters"),
  8347. default: true
  8348. },
  8349. {
  8350. name: "Megamacro",
  8351. height: math.unit(25, "km")
  8352. },
  8353. ]
  8354. ))
  8355. characterMakers.push(() => makeCharacter(
  8356. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8357. {
  8358. front: {
  8359. height: math.unit(6, "feet"),
  8360. weight: math.unit(65, "kg"),
  8361. name: "Front",
  8362. image: {
  8363. source: "./media/characters/rook/front.svg",
  8364. extra: 960 / 950
  8365. }
  8366. }
  8367. },
  8368. [
  8369. {
  8370. name: "Normal",
  8371. height: math.unit(8.8, "feet")
  8372. },
  8373. {
  8374. name: "Macro",
  8375. height: math.unit(88, "feet"),
  8376. default: true
  8377. },
  8378. {
  8379. name: "Megamacro",
  8380. height: math.unit(8, "miles")
  8381. },
  8382. ]
  8383. ))
  8384. characterMakers.push(() => makeCharacter(
  8385. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8386. {
  8387. front: {
  8388. height: math.unit(12 + 2 / 12, "feet"),
  8389. weight: math.unit(808, "lbs"),
  8390. name: "Front",
  8391. image: {
  8392. source: "./media/characters/prodigy/front.svg"
  8393. }
  8394. }
  8395. },
  8396. [
  8397. {
  8398. name: "Normal",
  8399. height: math.unit(12 + 2 / 12, "feet"),
  8400. default: true
  8401. },
  8402. {
  8403. name: "Macro",
  8404. height: math.unit(143, "feet")
  8405. },
  8406. {
  8407. name: "Macro+",
  8408. height: math.unit(400, "feet")
  8409. },
  8410. ]
  8411. ))
  8412. characterMakers.push(() => makeCharacter(
  8413. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8414. {
  8415. front: {
  8416. height: math.unit(6, "feet"),
  8417. weight: math.unit(225, "lbs"),
  8418. name: "Front",
  8419. image: {
  8420. source: "./media/characters/daniel/front.svg"
  8421. }
  8422. },
  8423. leaning: {
  8424. height: math.unit(6, "feet"),
  8425. weight: math.unit(225, "lbs"),
  8426. name: "Leaning",
  8427. image: {
  8428. source: "./media/characters/daniel/leaning.svg"
  8429. }
  8430. },
  8431. },
  8432. [
  8433. {
  8434. name: "Macro",
  8435. height: math.unit(1000, "feet"),
  8436. default: true
  8437. },
  8438. ]
  8439. ))
  8440. characterMakers.push(() => makeCharacter(
  8441. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8442. {
  8443. front: {
  8444. height: math.unit(6, "feet"),
  8445. weight: math.unit(88, "lbs"),
  8446. name: "Front",
  8447. image: {
  8448. source: "./media/characters/chiros/front.svg",
  8449. extra: 306 / 226
  8450. }
  8451. },
  8452. side: {
  8453. height: math.unit(6, "feet"),
  8454. weight: math.unit(88, "lbs"),
  8455. name: "Side",
  8456. image: {
  8457. source: "./media/characters/chiros/side.svg",
  8458. extra: 306 / 226
  8459. }
  8460. },
  8461. },
  8462. [
  8463. {
  8464. name: "Normal",
  8465. height: math.unit(6, "cm"),
  8466. default: true
  8467. },
  8468. ]
  8469. ))
  8470. characterMakers.push(() => makeCharacter(
  8471. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8472. {
  8473. front: {
  8474. height: math.unit(6, "feet"),
  8475. weight: math.unit(100, "lbs"),
  8476. name: "Front",
  8477. image: {
  8478. source: "./media/characters/selka/front.svg",
  8479. extra: 947 / 887
  8480. }
  8481. }
  8482. },
  8483. [
  8484. {
  8485. name: "Normal",
  8486. height: math.unit(5, "cm"),
  8487. default: true
  8488. },
  8489. ]
  8490. ))
  8491. characterMakers.push(() => makeCharacter(
  8492. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8493. {
  8494. front: {
  8495. height: math.unit(8 + 3 / 12, "feet"),
  8496. weight: math.unit(424, "lbs"),
  8497. name: "Front",
  8498. image: {
  8499. source: "./media/characters/verin/front.svg",
  8500. extra: 1845 / 1550
  8501. }
  8502. },
  8503. frontArmored: {
  8504. height: math.unit(8 + 3 / 12, "feet"),
  8505. weight: math.unit(424, "lbs"),
  8506. name: "Front (Armored)",
  8507. image: {
  8508. source: "./media/characters/verin/front-armor.svg",
  8509. extra: 1845 / 1550,
  8510. bottom: 0.01
  8511. }
  8512. },
  8513. back: {
  8514. height: math.unit(8 + 3 / 12, "feet"),
  8515. weight: math.unit(424, "lbs"),
  8516. name: "Back",
  8517. image: {
  8518. source: "./media/characters/verin/back.svg",
  8519. bottom: 0.1,
  8520. extra: 1
  8521. }
  8522. },
  8523. foot: {
  8524. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8525. name: "Foot",
  8526. image: {
  8527. source: "./media/characters/verin/foot.svg"
  8528. }
  8529. },
  8530. },
  8531. [
  8532. {
  8533. name: "Normal",
  8534. height: math.unit(8 + 3 / 12, "feet")
  8535. },
  8536. {
  8537. name: "Minimacro",
  8538. height: math.unit(21, "feet"),
  8539. default: true
  8540. },
  8541. {
  8542. name: "Macro",
  8543. height: math.unit(626, "feet")
  8544. },
  8545. ]
  8546. ))
  8547. characterMakers.push(() => makeCharacter(
  8548. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8549. {
  8550. front: {
  8551. height: math.unit(2.718, "meters"),
  8552. weight: math.unit(150, "lbs"),
  8553. name: "Front",
  8554. image: {
  8555. source: "./media/characters/sovrim-terraquian/front.svg",
  8556. extra: 1752/1689,
  8557. bottom: 36/1788
  8558. }
  8559. },
  8560. back: {
  8561. height: math.unit(2.718, "meters"),
  8562. weight: math.unit(150, "lbs"),
  8563. name: "Back",
  8564. image: {
  8565. source: "./media/characters/sovrim-terraquian/back.svg",
  8566. extra: 1698/1657,
  8567. bottom: 58/1756
  8568. }
  8569. },
  8570. tongue: {
  8571. height: math.unit(2.865, "feet"),
  8572. name: "Tongue",
  8573. image: {
  8574. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8575. }
  8576. },
  8577. hand: {
  8578. height: math.unit(1.61, "feet"),
  8579. name: "Hand",
  8580. image: {
  8581. source: "./media/characters/sovrim-terraquian/hand.svg"
  8582. }
  8583. },
  8584. foot: {
  8585. height: math.unit(1.05, "feet"),
  8586. name: "Foot",
  8587. image: {
  8588. source: "./media/characters/sovrim-terraquian/foot.svg"
  8589. }
  8590. },
  8591. footAlt: {
  8592. height: math.unit(0.88, "feet"),
  8593. name: "Foot (Alt)",
  8594. image: {
  8595. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8596. }
  8597. },
  8598. },
  8599. [
  8600. {
  8601. name: "Micro",
  8602. height: math.unit(2, "inches")
  8603. },
  8604. {
  8605. name: "Small",
  8606. height: math.unit(1, "meter")
  8607. },
  8608. {
  8609. name: "Normal",
  8610. height: math.unit(Math.E, "meters"),
  8611. default: true
  8612. },
  8613. {
  8614. name: "Macro",
  8615. height: math.unit(20, "meters")
  8616. },
  8617. {
  8618. name: "Macro+",
  8619. height: math.unit(400, "meters")
  8620. },
  8621. ]
  8622. ))
  8623. characterMakers.push(() => makeCharacter(
  8624. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8625. {
  8626. front: {
  8627. height: math.unit(7, "feet"),
  8628. weight: math.unit(489, "lbs"),
  8629. name: "Front",
  8630. image: {
  8631. source: "./media/characters/reece-silvermane/front.svg",
  8632. bottom: 0.02,
  8633. extra: 1
  8634. }
  8635. },
  8636. },
  8637. [
  8638. {
  8639. name: "Macro",
  8640. height: math.unit(1.5, "miles"),
  8641. default: true
  8642. },
  8643. ]
  8644. ))
  8645. characterMakers.push(() => makeCharacter(
  8646. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8647. {
  8648. front: {
  8649. height: math.unit(6, "feet"),
  8650. weight: math.unit(78, "kg"),
  8651. name: "Front",
  8652. image: {
  8653. source: "./media/characters/kane/front.svg",
  8654. extra: 978 / 899
  8655. }
  8656. },
  8657. },
  8658. [
  8659. {
  8660. name: "Normal",
  8661. height: math.unit(2.1, "m"),
  8662. },
  8663. {
  8664. name: "Macro",
  8665. height: math.unit(1, "km"),
  8666. default: true
  8667. },
  8668. ]
  8669. ))
  8670. characterMakers.push(() => makeCharacter(
  8671. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8672. {
  8673. front: {
  8674. height: math.unit(6, "feet"),
  8675. weight: math.unit(200, "kg"),
  8676. name: "Front",
  8677. image: {
  8678. source: "./media/characters/tegon/front.svg",
  8679. bottom: 0.01,
  8680. extra: 1
  8681. }
  8682. },
  8683. },
  8684. [
  8685. {
  8686. name: "Micro",
  8687. height: math.unit(1, "inch")
  8688. },
  8689. {
  8690. name: "Normal",
  8691. height: math.unit(6 + 3 / 12, "feet"),
  8692. default: true
  8693. },
  8694. {
  8695. name: "Macro",
  8696. height: math.unit(300, "feet")
  8697. },
  8698. {
  8699. name: "Megamacro",
  8700. height: math.unit(69, "miles")
  8701. },
  8702. ]
  8703. ))
  8704. characterMakers.push(() => makeCharacter(
  8705. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8706. {
  8707. side: {
  8708. height: math.unit(6, "feet"),
  8709. weight: math.unit(2304, "lbs"),
  8710. name: "Side",
  8711. image: {
  8712. source: "./media/characters/arcturax/side.svg",
  8713. extra: 790 / 376,
  8714. bottom: 0.01
  8715. }
  8716. },
  8717. },
  8718. [
  8719. {
  8720. name: "Micro",
  8721. height: math.unit(2, "inch")
  8722. },
  8723. {
  8724. name: "Normal",
  8725. height: math.unit(6, "feet")
  8726. },
  8727. {
  8728. name: "Macro",
  8729. height: math.unit(39, "feet"),
  8730. default: true
  8731. },
  8732. {
  8733. name: "Megamacro",
  8734. height: math.unit(7, "miles")
  8735. },
  8736. ]
  8737. ))
  8738. characterMakers.push(() => makeCharacter(
  8739. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8740. {
  8741. front: {
  8742. height: math.unit(6, "feet"),
  8743. weight: math.unit(50, "lbs"),
  8744. name: "Front",
  8745. image: {
  8746. source: "./media/characters/sentri/front.svg",
  8747. extra: 1750 / 1570,
  8748. bottom: 0.025
  8749. }
  8750. },
  8751. frontAlt: {
  8752. height: math.unit(6, "feet"),
  8753. weight: math.unit(50, "lbs"),
  8754. name: "Front (Alt)",
  8755. image: {
  8756. source: "./media/characters/sentri/front-alt.svg",
  8757. extra: 1750 / 1570,
  8758. bottom: 0.025
  8759. }
  8760. },
  8761. },
  8762. [
  8763. {
  8764. name: "Normal",
  8765. height: math.unit(15, "feet"),
  8766. default: true
  8767. },
  8768. {
  8769. name: "Macro",
  8770. height: math.unit(2500, "feet")
  8771. }
  8772. ]
  8773. ))
  8774. characterMakers.push(() => makeCharacter(
  8775. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8776. {
  8777. front: {
  8778. height: math.unit(5 + 8 / 12, "feet"),
  8779. weight: math.unit(130, "lbs"),
  8780. name: "Front",
  8781. image: {
  8782. source: "./media/characters/corvin/front.svg",
  8783. extra: 1803 / 1629
  8784. }
  8785. },
  8786. frontShirt: {
  8787. height: math.unit(5 + 8 / 12, "feet"),
  8788. weight: math.unit(130, "lbs"),
  8789. name: "Front (Shirt)",
  8790. image: {
  8791. source: "./media/characters/corvin/front-shirt.svg",
  8792. extra: 1803 / 1629
  8793. }
  8794. },
  8795. frontPoncho: {
  8796. height: math.unit(5 + 8 / 12, "feet"),
  8797. weight: math.unit(130, "lbs"),
  8798. name: "Front (Poncho)",
  8799. image: {
  8800. source: "./media/characters/corvin/front-poncho.svg",
  8801. extra: 1803 / 1629
  8802. }
  8803. },
  8804. side: {
  8805. height: math.unit(5 + 8 / 12, "feet"),
  8806. weight: math.unit(130, "lbs"),
  8807. name: "Side",
  8808. image: {
  8809. source: "./media/characters/corvin/side.svg",
  8810. extra: 1012 / 945
  8811. }
  8812. },
  8813. back: {
  8814. height: math.unit(5 + 8 / 12, "feet"),
  8815. weight: math.unit(130, "lbs"),
  8816. name: "Back",
  8817. image: {
  8818. source: "./media/characters/corvin/back.svg",
  8819. extra: 1803 / 1629
  8820. }
  8821. },
  8822. },
  8823. [
  8824. {
  8825. name: "Micro",
  8826. height: math.unit(3, "inches")
  8827. },
  8828. {
  8829. name: "Normal",
  8830. height: math.unit(5 + 8 / 12, "feet")
  8831. },
  8832. {
  8833. name: "Macro",
  8834. height: math.unit(300, "feet"),
  8835. default: true
  8836. },
  8837. {
  8838. name: "Megamacro",
  8839. height: math.unit(500, "miles")
  8840. }
  8841. ]
  8842. ))
  8843. characterMakers.push(() => makeCharacter(
  8844. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8845. {
  8846. front: {
  8847. height: math.unit(6, "feet"),
  8848. weight: math.unit(135, "lbs"),
  8849. name: "Front",
  8850. image: {
  8851. source: "./media/characters/q/front.svg",
  8852. extra: 854 / 752,
  8853. bottom: 0.005
  8854. }
  8855. },
  8856. back: {
  8857. height: math.unit(6, "feet"),
  8858. weight: math.unit(130, "lbs"),
  8859. name: "Back",
  8860. image: {
  8861. source: "./media/characters/q/back.svg",
  8862. extra: 854 / 752
  8863. }
  8864. },
  8865. },
  8866. [
  8867. {
  8868. name: "Macro",
  8869. height: math.unit(90, "feet"),
  8870. default: true
  8871. },
  8872. {
  8873. name: "Extra Macro",
  8874. height: math.unit(300, "feet"),
  8875. },
  8876. {
  8877. name: "BIG WALF",
  8878. height: math.unit(750, "feet"),
  8879. },
  8880. ]
  8881. ))
  8882. characterMakers.push(() => makeCharacter(
  8883. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8884. {
  8885. front: {
  8886. height: math.unit(3, "feet"),
  8887. weight: math.unit(28, "lbs"),
  8888. name: "Front",
  8889. image: {
  8890. source: "./media/characters/citrine/front.svg"
  8891. }
  8892. }
  8893. },
  8894. [
  8895. {
  8896. name: "Normal",
  8897. height: math.unit(3, "feet"),
  8898. default: true
  8899. }
  8900. ]
  8901. ))
  8902. characterMakers.push(() => makeCharacter(
  8903. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8904. {
  8905. front: {
  8906. height: math.unit(14, "feet"),
  8907. weight: math.unit(1450, "kg"),
  8908. preyCapacity: math.unit(15, "people"),
  8909. name: "Front",
  8910. image: {
  8911. source: "./media/characters/aura-starwind/front.svg",
  8912. extra: 1440/1327,
  8913. bottom: 11/1451
  8914. }
  8915. },
  8916. side: {
  8917. height: math.unit(14, "feet"),
  8918. weight: math.unit(1450, "kg"),
  8919. preyCapacity: math.unit(15, "people"),
  8920. name: "Side",
  8921. image: {
  8922. source: "./media/characters/aura-starwind/side.svg",
  8923. extra: 1654 / 1497
  8924. }
  8925. },
  8926. taur: {
  8927. height: math.unit(18, "feet"),
  8928. weight: math.unit(5500, "kg"),
  8929. preyCapacity: math.unit(50, "people"),
  8930. name: "Taur",
  8931. image: {
  8932. source: "./media/characters/aura-starwind/taur.svg",
  8933. extra: 1760 / 1650
  8934. }
  8935. },
  8936. feral: {
  8937. height: math.unit(46, "feet"),
  8938. weight: math.unit(25000, "kg"),
  8939. preyCapacity: math.unit(120, "people"),
  8940. name: "Feral",
  8941. image: {
  8942. source: "./media/characters/aura-starwind/feral.svg"
  8943. }
  8944. },
  8945. },
  8946. [
  8947. {
  8948. name: "Normal",
  8949. height: math.unit(14, "feet"),
  8950. default: true
  8951. },
  8952. {
  8953. name: "Macro",
  8954. height: math.unit(50, "meters")
  8955. },
  8956. {
  8957. name: "Megamacro",
  8958. height: math.unit(5000, "meters")
  8959. },
  8960. {
  8961. name: "Gigamacro",
  8962. height: math.unit(100000, "kilometers")
  8963. },
  8964. ]
  8965. ))
  8966. characterMakers.push(() => makeCharacter(
  8967. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8968. {
  8969. front: {
  8970. height: math.unit(2 + 7 / 12, "feet"),
  8971. weight: math.unit(32, "lbs"),
  8972. name: "Front",
  8973. image: {
  8974. source: "./media/characters/rivet/front.svg",
  8975. extra: 1716 / 1658,
  8976. bottom: 0.03
  8977. }
  8978. },
  8979. foot: {
  8980. height: math.unit(0.551, "feet"),
  8981. name: "Rivet's Foot",
  8982. image: {
  8983. source: "./media/characters/rivet/foot.svg"
  8984. },
  8985. rename: true
  8986. }
  8987. },
  8988. [
  8989. {
  8990. name: "Micro",
  8991. height: math.unit(1.5, "inches"),
  8992. },
  8993. {
  8994. name: "Normal",
  8995. height: math.unit(2 + 7 / 12, "feet"),
  8996. default: true
  8997. },
  8998. {
  8999. name: "Macro",
  9000. height: math.unit(85, "feet")
  9001. },
  9002. {
  9003. name: "Megamacro",
  9004. height: math.unit(2.2, "km")
  9005. }
  9006. ]
  9007. ))
  9008. characterMakers.push(() => makeCharacter(
  9009. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9010. {
  9011. front: {
  9012. height: math.unit(5 + 9 / 12, "feet"),
  9013. weight: math.unit(150, "lbs"),
  9014. name: "Front",
  9015. image: {
  9016. source: "./media/characters/coffee/front.svg",
  9017. extra: 946/880,
  9018. bottom: 66/1012
  9019. }
  9020. },
  9021. foot: {
  9022. height: math.unit(1.29, "feet"),
  9023. name: "Foot",
  9024. image: {
  9025. source: "./media/characters/coffee/foot.svg"
  9026. }
  9027. },
  9028. },
  9029. [
  9030. {
  9031. name: "Micro",
  9032. height: math.unit(2, "inches"),
  9033. },
  9034. {
  9035. name: "Normal",
  9036. height: math.unit(5 + 9 / 12, "feet"),
  9037. default: true
  9038. },
  9039. {
  9040. name: "Macro",
  9041. height: math.unit(800, "feet")
  9042. },
  9043. {
  9044. name: "Megamacro",
  9045. height: math.unit(25, "miles")
  9046. }
  9047. ]
  9048. ))
  9049. characterMakers.push(() => makeCharacter(
  9050. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9051. {
  9052. front: {
  9053. height: math.unit(6, "feet"),
  9054. weight: math.unit(200, "lbs"),
  9055. name: "Front",
  9056. image: {
  9057. source: "./media/characters/chari-gal/front.svg",
  9058. extra: 1568 / 1385,
  9059. bottom: 0.047
  9060. }
  9061. },
  9062. gigantamax: {
  9063. height: math.unit(6 * 16, "feet"),
  9064. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9065. name: "Gigantamax",
  9066. image: {
  9067. source: "./media/characters/chari-gal/gigantamax.svg",
  9068. extra: 1124 / 888,
  9069. bottom: 0.03
  9070. }
  9071. },
  9072. },
  9073. [
  9074. {
  9075. name: "Normal",
  9076. height: math.unit(5 + 7 / 12, "feet")
  9077. },
  9078. {
  9079. name: "Macro",
  9080. height: math.unit(200, "feet"),
  9081. default: true
  9082. }
  9083. ]
  9084. ))
  9085. characterMakers.push(() => makeCharacter(
  9086. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9087. {
  9088. front: {
  9089. height: math.unit(6, "feet"),
  9090. weight: math.unit(150, "lbs"),
  9091. name: "Front",
  9092. image: {
  9093. source: "./media/characters/nova/front.svg",
  9094. extra: 5000 / 4722,
  9095. bottom: 0.02
  9096. }
  9097. }
  9098. },
  9099. [
  9100. {
  9101. name: "Micro-",
  9102. height: math.unit(0.8, "inches")
  9103. },
  9104. {
  9105. name: "Micro",
  9106. height: math.unit(2, "inches"),
  9107. default: true
  9108. },
  9109. ]
  9110. ))
  9111. characterMakers.push(() => makeCharacter(
  9112. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9113. {
  9114. koboldFront: {
  9115. height: math.unit(3 + 1 / 12, "feet"),
  9116. weight: math.unit(21.7, "lbs"),
  9117. name: "Front",
  9118. image: {
  9119. source: "./media/characters/argent/kobold-front.svg",
  9120. extra: 1471 / 1331,
  9121. bottom: 100.8 / 1575.5
  9122. },
  9123. form: "kobold",
  9124. default: true
  9125. },
  9126. dragonFront: {
  9127. height: math.unit(75, "inches"),
  9128. name: "Front",
  9129. image: {
  9130. source: "./media/characters/argent/dragon-front.svg",
  9131. extra: 1389/1248,
  9132. bottom: 54/1443
  9133. },
  9134. form: "dragon",
  9135. },
  9136. dragonBack: {
  9137. height: math.unit(75, "inches"),
  9138. name: "Back",
  9139. image: {
  9140. source: "./media/characters/argent/dragon-back.svg",
  9141. extra: 1399/1271,
  9142. bottom: 23/1422
  9143. },
  9144. form: "dragon",
  9145. },
  9146. dragonDressed: {
  9147. height: math.unit(75, "inches"),
  9148. name: "Dressed",
  9149. image: {
  9150. source: "./media/characters/argent/dragon-dressed.svg",
  9151. extra: 1350/1215,
  9152. bottom: 26/1376
  9153. },
  9154. form: "dragon"
  9155. },
  9156. dragonHead: {
  9157. height: math.unit(23.5, "inches"),
  9158. name: "Head",
  9159. image: {
  9160. source: "./media/characters/argent/dragon-head.svg"
  9161. },
  9162. form: "dragon",
  9163. },
  9164. },
  9165. [
  9166. {
  9167. name: "Micro",
  9168. height: math.unit(2, "inches"),
  9169. form: "kobold",
  9170. },
  9171. {
  9172. name: "Normal",
  9173. height: math.unit(3 + 1 / 12, "feet"),
  9174. form: "kobold",
  9175. default: true
  9176. },
  9177. {
  9178. name: "Macro",
  9179. height: math.unit(120, "feet"),
  9180. form: "kobold",
  9181. },
  9182. {
  9183. name: "Speck",
  9184. height: math.unit(1, "mm"),
  9185. form: "dragon",
  9186. },
  9187. {
  9188. name: "Tiny",
  9189. height: math.unit(1, "cm"),
  9190. form: "dragon",
  9191. },
  9192. {
  9193. name: "Micro",
  9194. height: math.unit(5, "cm"),
  9195. form: "dragon",
  9196. },
  9197. {
  9198. name: "Normal",
  9199. height: math.unit(75, "inches"),
  9200. form: "dragon",
  9201. default: true
  9202. },
  9203. {
  9204. name: "Extra Tall",
  9205. height: math.unit(9, "feet"),
  9206. form: "dragon",
  9207. },
  9208. {
  9209. name: "Inconvenient",
  9210. height: math.unit(5, "meters"),
  9211. form: "dragon",
  9212. },
  9213. {
  9214. name: "Macro",
  9215. height: math.unit(70, "meters"),
  9216. form: "dragon",
  9217. },
  9218. {
  9219. name: "Macro+",
  9220. height: math.unit(250, "meters"),
  9221. form: "dragon",
  9222. },
  9223. {
  9224. name: "Megamacro",
  9225. height: math.unit(20, "km"),
  9226. form: "dragon",
  9227. },
  9228. {
  9229. name: "Mountainous",
  9230. height: math.unit(100, "km"),
  9231. form: "dragon",
  9232. },
  9233. {
  9234. name: "Continental",
  9235. height: math.unit(2, "megameters"),
  9236. form: "dragon",
  9237. },
  9238. {
  9239. name: "Too Big",
  9240. height: math.unit(900, "megameters"),
  9241. form: "dragon",
  9242. },
  9243. ],
  9244. {
  9245. "kobold": {
  9246. name: "Kobold",
  9247. default: true
  9248. },
  9249. "dragon": {
  9250. name: "Dragon",
  9251. },
  9252. }
  9253. ))
  9254. characterMakers.push(() => makeCharacter(
  9255. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9256. {
  9257. lamp: {
  9258. height: math.unit(7 * 1559 / 989, "feet"),
  9259. name: "Magic Lamp",
  9260. image: {
  9261. source: "./media/characters/mira-al-cul/lamp.svg",
  9262. extra: 1617 / 1559
  9263. }
  9264. },
  9265. front: {
  9266. height: math.unit(7, "feet"),
  9267. name: "Front",
  9268. image: {
  9269. source: "./media/characters/mira-al-cul/front.svg",
  9270. extra: 1044 / 990
  9271. }
  9272. },
  9273. },
  9274. [
  9275. {
  9276. name: "Heavily Restricted",
  9277. height: math.unit(7 * 1559 / 989, "feet")
  9278. },
  9279. {
  9280. name: "Freshly Freed",
  9281. height: math.unit(50 * 1559 / 989, "feet")
  9282. },
  9283. {
  9284. name: "World Encompassing",
  9285. height: math.unit(10000 * 1559 / 989, "miles")
  9286. },
  9287. {
  9288. name: "Galactic",
  9289. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9290. },
  9291. {
  9292. name: "Palmed Universe",
  9293. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9294. default: true
  9295. },
  9296. {
  9297. name: "Multiversal Matriarch",
  9298. height: math.unit(8.87e10, "yottameters")
  9299. },
  9300. {
  9301. name: "Void Mother",
  9302. height: math.unit(3.14e110, "yottaparsecs")
  9303. },
  9304. {
  9305. name: "Toying with Transcendence",
  9306. height: math.unit(1e307, "meters")
  9307. },
  9308. ]
  9309. ))
  9310. characterMakers.push(() => makeCharacter(
  9311. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9312. {
  9313. front: {
  9314. height: math.unit(17 + 1 / 12, "feet"),
  9315. weight: math.unit(476.2 * 5, "lbs"),
  9316. name: "Front",
  9317. image: {
  9318. source: "./media/characters/kuro-shi-uchū/front.svg",
  9319. extra: 2329 / 1835,
  9320. bottom: 0.02
  9321. }
  9322. },
  9323. },
  9324. [
  9325. {
  9326. name: "Micro",
  9327. height: math.unit(2, "inches")
  9328. },
  9329. {
  9330. name: "Normal",
  9331. height: math.unit(12, "meters")
  9332. },
  9333. {
  9334. name: "Planetary",
  9335. height: math.unit(0.00929, "AU"),
  9336. default: true
  9337. },
  9338. {
  9339. name: "Universal",
  9340. height: math.unit(20, "gigaparsecs")
  9341. },
  9342. ]
  9343. ))
  9344. characterMakers.push(() => makeCharacter(
  9345. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9346. {
  9347. front: {
  9348. height: math.unit(5 + 2 / 12, "feet"),
  9349. weight: math.unit(120, "lbs"),
  9350. name: "Front",
  9351. image: {
  9352. source: "./media/characters/katherine/front.svg",
  9353. extra: 2075 / 1969
  9354. }
  9355. },
  9356. dress: {
  9357. height: math.unit(5 + 2 / 12, "feet"),
  9358. weight: math.unit(120, "lbs"),
  9359. name: "Dress",
  9360. image: {
  9361. source: "./media/characters/katherine/dress.svg",
  9362. extra: 2258 / 2064
  9363. }
  9364. },
  9365. },
  9366. [
  9367. {
  9368. name: "Micro",
  9369. height: math.unit(1, "inches"),
  9370. default: true
  9371. },
  9372. {
  9373. name: "Normal",
  9374. height: math.unit(5 + 2 / 12, "feet")
  9375. },
  9376. {
  9377. name: "Macro",
  9378. height: math.unit(100, "meters")
  9379. },
  9380. {
  9381. name: "Megamacro",
  9382. height: math.unit(80, "miles")
  9383. },
  9384. ]
  9385. ))
  9386. characterMakers.push(() => makeCharacter(
  9387. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9388. {
  9389. front: {
  9390. height: math.unit(7 + 8 / 12, "feet"),
  9391. weight: math.unit(250, "lbs"),
  9392. name: "Front",
  9393. image: {
  9394. source: "./media/characters/yevis/front.svg",
  9395. extra: 1938 / 1755
  9396. }
  9397. }
  9398. },
  9399. [
  9400. {
  9401. name: "Mortal",
  9402. height: math.unit(7 + 8 / 12, "feet")
  9403. },
  9404. {
  9405. name: "Battle",
  9406. height: math.unit(25 + 11 / 12, "feet")
  9407. },
  9408. {
  9409. name: "Wrath",
  9410. height: math.unit(1654 + 11 / 12, "feet")
  9411. },
  9412. {
  9413. name: "Planet Destroyer",
  9414. height: math.unit(12000, "miles")
  9415. },
  9416. {
  9417. name: "Galaxy Conqueror",
  9418. height: math.unit(1.45, "zettameters"),
  9419. default: true
  9420. },
  9421. {
  9422. name: "Universal War",
  9423. height: math.unit(184, "gigaparsecs")
  9424. },
  9425. {
  9426. name: "Eternity War",
  9427. height: math.unit(1.98e55, "yottaparsecs")
  9428. },
  9429. ]
  9430. ))
  9431. characterMakers.push(() => makeCharacter(
  9432. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9433. {
  9434. front: {
  9435. height: math.unit(5 + 8 / 12, "feet"),
  9436. weight: math.unit(63, "kg"),
  9437. name: "Front",
  9438. image: {
  9439. source: "./media/characters/xavier/front.svg",
  9440. extra: 944 / 883
  9441. }
  9442. },
  9443. frontStretch: {
  9444. height: math.unit(5 + 8 / 12, "feet"),
  9445. weight: math.unit(63, "kg"),
  9446. name: "Stretching",
  9447. image: {
  9448. source: "./media/characters/xavier/front-stretch.svg",
  9449. extra: 962 / 820
  9450. }
  9451. },
  9452. },
  9453. [
  9454. {
  9455. name: "Normal",
  9456. height: math.unit(5 + 8 / 12, "feet")
  9457. },
  9458. {
  9459. name: "Macro",
  9460. height: math.unit(100, "meters"),
  9461. default: true
  9462. },
  9463. {
  9464. name: "McLargeHuge",
  9465. height: math.unit(10, "miles")
  9466. },
  9467. ]
  9468. ))
  9469. characterMakers.push(() => makeCharacter(
  9470. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9471. {
  9472. front: {
  9473. height: math.unit(5 + 5 / 12, "feet"),
  9474. weight: math.unit(150, "lb"),
  9475. name: "Front",
  9476. image: {
  9477. source: "./media/characters/joshii/front.svg",
  9478. extra: 765 / 653,
  9479. bottom: 51 / 816
  9480. }
  9481. },
  9482. foot: {
  9483. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9484. name: "Foot",
  9485. image: {
  9486. source: "./media/characters/joshii/foot.svg"
  9487. }
  9488. },
  9489. },
  9490. [
  9491. {
  9492. name: "Micro",
  9493. height: math.unit(2, "inches")
  9494. },
  9495. {
  9496. name: "Normal",
  9497. height: math.unit(5 + 5 / 12, "feet")
  9498. },
  9499. {
  9500. name: "Macro",
  9501. height: math.unit(785, "feet"),
  9502. default: true
  9503. },
  9504. {
  9505. name: "Megamacro",
  9506. height: math.unit(24.5, "miles")
  9507. },
  9508. ]
  9509. ))
  9510. characterMakers.push(() => makeCharacter(
  9511. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9512. {
  9513. front: {
  9514. height: math.unit(6, "feet"),
  9515. weight: math.unit(150, "lb"),
  9516. name: "Front",
  9517. image: {
  9518. source: "./media/characters/goddess-elizabeth/front.svg",
  9519. extra: 1800 / 1525,
  9520. bottom: 0.005
  9521. }
  9522. },
  9523. foot: {
  9524. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9525. name: "Foot",
  9526. image: {
  9527. source: "./media/characters/goddess-elizabeth/foot.svg"
  9528. }
  9529. },
  9530. mouth: {
  9531. height: math.unit(6, "feet"),
  9532. name: "Mouth",
  9533. image: {
  9534. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9535. }
  9536. },
  9537. },
  9538. [
  9539. {
  9540. name: "Micro",
  9541. height: math.unit(12, "feet")
  9542. },
  9543. {
  9544. name: "Normal",
  9545. height: math.unit(80, "miles"),
  9546. default: true
  9547. },
  9548. {
  9549. name: "Macro",
  9550. height: math.unit(15000, "parsecs")
  9551. },
  9552. ]
  9553. ))
  9554. characterMakers.push(() => makeCharacter(
  9555. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9556. {
  9557. front: {
  9558. height: math.unit(5 + 9 / 12, "feet"),
  9559. weight: math.unit(144, "lb"),
  9560. name: "Front",
  9561. image: {
  9562. source: "./media/characters/kara/front.svg"
  9563. }
  9564. },
  9565. feet: {
  9566. height: math.unit(6 / 6.765, "feet"),
  9567. name: "Kara's Feet",
  9568. rename: true,
  9569. image: {
  9570. source: "./media/characters/kara/feet.svg"
  9571. }
  9572. },
  9573. },
  9574. [
  9575. {
  9576. name: "Normal",
  9577. height: math.unit(5 + 9 / 12, "feet")
  9578. },
  9579. {
  9580. name: "Macro",
  9581. height: math.unit(174, "feet"),
  9582. default: true
  9583. },
  9584. ]
  9585. ))
  9586. characterMakers.push(() => makeCharacter(
  9587. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9588. {
  9589. front: {
  9590. height: math.unit(18, "feet"),
  9591. weight: math.unit(4050, "lb"),
  9592. name: "Front",
  9593. image: {
  9594. source: "./media/characters/tyrone/front.svg",
  9595. extra: 2405 / 2270,
  9596. bottom: 182 / 2587
  9597. }
  9598. },
  9599. },
  9600. [
  9601. {
  9602. name: "Normal",
  9603. height: math.unit(18, "feet"),
  9604. default: true
  9605. },
  9606. {
  9607. name: "Macro",
  9608. height: math.unit(300, "feet")
  9609. },
  9610. {
  9611. name: "Megamacro",
  9612. height: math.unit(15, "km")
  9613. },
  9614. {
  9615. name: "Gigamacro",
  9616. height: math.unit(500, "km")
  9617. },
  9618. {
  9619. name: "Teramacro",
  9620. height: math.unit(0.5, "gigameters")
  9621. },
  9622. {
  9623. name: "Omnimacro",
  9624. height: math.unit(1e252, "yottauniverse")
  9625. },
  9626. ]
  9627. ))
  9628. characterMakers.push(() => makeCharacter(
  9629. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9630. {
  9631. front: {
  9632. height: math.unit(7 + 8 / 12, "feet"),
  9633. weight: math.unit(120, "lb"),
  9634. name: "Front",
  9635. image: {
  9636. source: "./media/characters/danny/front.svg",
  9637. extra: 1490 / 1350
  9638. }
  9639. },
  9640. back: {
  9641. height: math.unit(7 + 8 / 12, "feet"),
  9642. weight: math.unit(120, "lb"),
  9643. name: "Back",
  9644. image: {
  9645. source: "./media/characters/danny/back.svg",
  9646. extra: 1490 / 1350
  9647. }
  9648. },
  9649. },
  9650. [
  9651. {
  9652. name: "Normal",
  9653. height: math.unit(7 + 8 / 12, "feet"),
  9654. default: true
  9655. },
  9656. ]
  9657. ))
  9658. characterMakers.push(() => makeCharacter(
  9659. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9660. {
  9661. front: {
  9662. height: math.unit(3.5, "inches"),
  9663. weight: math.unit(19, "grams"),
  9664. name: "Front",
  9665. image: {
  9666. source: "./media/characters/mallow/front.svg",
  9667. extra: 471 / 431
  9668. }
  9669. },
  9670. back: {
  9671. height: math.unit(3.5, "inches"),
  9672. weight: math.unit(19, "grams"),
  9673. name: "Back",
  9674. image: {
  9675. source: "./media/characters/mallow/back.svg",
  9676. extra: 471 / 431
  9677. }
  9678. },
  9679. },
  9680. [
  9681. {
  9682. name: "Normal",
  9683. height: math.unit(3.5, "inches"),
  9684. default: true
  9685. },
  9686. ]
  9687. ))
  9688. characterMakers.push(() => makeCharacter(
  9689. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9690. {
  9691. front: {
  9692. height: math.unit(9, "feet"),
  9693. weight: math.unit(230, "kg"),
  9694. name: "Front",
  9695. image: {
  9696. source: "./media/characters/starry-aqua/front.svg"
  9697. }
  9698. },
  9699. back: {
  9700. height: math.unit(9, "feet"),
  9701. weight: math.unit(230, "kg"),
  9702. name: "Back",
  9703. image: {
  9704. source: "./media/characters/starry-aqua/back.svg"
  9705. }
  9706. },
  9707. hand: {
  9708. height: math.unit(9 * 0.1168, "feet"),
  9709. name: "Hand",
  9710. image: {
  9711. source: "./media/characters/starry-aqua/hand.svg"
  9712. }
  9713. },
  9714. foot: {
  9715. height: math.unit(9 * 0.18, "feet"),
  9716. name: "Foot",
  9717. image: {
  9718. source: "./media/characters/starry-aqua/foot.svg"
  9719. }
  9720. }
  9721. },
  9722. [
  9723. {
  9724. name: "Micro",
  9725. height: math.unit(3, "inches")
  9726. },
  9727. {
  9728. name: "Normal",
  9729. height: math.unit(9, "feet")
  9730. },
  9731. {
  9732. name: "Macro",
  9733. height: math.unit(300, "feet"),
  9734. default: true
  9735. },
  9736. {
  9737. name: "Megamacro",
  9738. height: math.unit(3200, "feet")
  9739. }
  9740. ]
  9741. ))
  9742. characterMakers.push(() => makeCharacter(
  9743. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9744. {
  9745. front: {
  9746. height: math.unit(15, "feet"),
  9747. weight: math.unit(5026, "lb"),
  9748. name: "Front",
  9749. image: {
  9750. source: "./media/characters/luka-towers/front.svg",
  9751. extra: 1269/1133,
  9752. bottom: 51/1320
  9753. }
  9754. },
  9755. },
  9756. [
  9757. {
  9758. name: "Normal",
  9759. height: math.unit(15, "feet"),
  9760. default: true
  9761. },
  9762. {
  9763. name: "Minimacro",
  9764. height: math.unit(25, "feet")
  9765. },
  9766. {
  9767. name: "Macro",
  9768. height: math.unit(320, "feet")
  9769. },
  9770. {
  9771. name: "Megamacro",
  9772. height: math.unit(35000, "feet")
  9773. },
  9774. {
  9775. name: "Gigamacro",
  9776. height: math.unit(4000, "miles")
  9777. },
  9778. {
  9779. name: "Teramacro",
  9780. height: math.unit(15000, "miles")
  9781. },
  9782. ]
  9783. ))
  9784. characterMakers.push(() => makeCharacter(
  9785. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9786. {
  9787. front: {
  9788. height: math.unit(6, "feet"),
  9789. weight: math.unit(150, "lb"),
  9790. name: "Front",
  9791. image: {
  9792. source: "./media/characters/natalie-nightring/front.svg",
  9793. extra: 1,
  9794. bottom: 0.06
  9795. }
  9796. },
  9797. },
  9798. [
  9799. {
  9800. name: "Uh Oh",
  9801. height: math.unit(0.1, "mm")
  9802. },
  9803. {
  9804. name: "Small",
  9805. height: math.unit(3, "inches")
  9806. },
  9807. {
  9808. name: "Human Scale",
  9809. height: math.unit(6, "feet")
  9810. },
  9811. {
  9812. name: "Librarian",
  9813. height: math.unit(50, "feet"),
  9814. default: true
  9815. },
  9816. {
  9817. name: "Immense",
  9818. height: math.unit(200, "miles")
  9819. },
  9820. ]
  9821. ))
  9822. characterMakers.push(() => makeCharacter(
  9823. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9824. {
  9825. front: {
  9826. height: math.unit(6, "feet"),
  9827. weight: math.unit(180, "lbs"),
  9828. name: "Front",
  9829. image: {
  9830. source: "./media/characters/danni-rosie/front.svg",
  9831. extra: 1260 / 1128,
  9832. bottom: 0.022
  9833. }
  9834. },
  9835. },
  9836. [
  9837. {
  9838. name: "Micro",
  9839. height: math.unit(2, "inches"),
  9840. default: true
  9841. },
  9842. ]
  9843. ))
  9844. characterMakers.push(() => makeCharacter(
  9845. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9846. {
  9847. front: {
  9848. height: math.unit(5 + 9 / 12, "feet"),
  9849. weight: math.unit(220, "lb"),
  9850. name: "Front",
  9851. image: {
  9852. source: "./media/characters/samantha-kruse/front.svg",
  9853. extra: (985 / 935),
  9854. bottom: 0.03
  9855. }
  9856. },
  9857. frontUndressed: {
  9858. height: math.unit(5 + 9 / 12, "feet"),
  9859. weight: math.unit(220, "lb"),
  9860. name: "Front (Undressed)",
  9861. image: {
  9862. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9863. extra: (973 / 923),
  9864. bottom: 0.025
  9865. }
  9866. },
  9867. fat: {
  9868. height: math.unit(5 + 9 / 12, "feet"),
  9869. weight: math.unit(900, "lb"),
  9870. name: "Front (Fat)",
  9871. image: {
  9872. source: "./media/characters/samantha-kruse/fat.svg",
  9873. extra: 2688 / 2561
  9874. }
  9875. },
  9876. },
  9877. [
  9878. {
  9879. name: "Normal",
  9880. height: math.unit(5 + 9 / 12, "feet"),
  9881. default: true
  9882. }
  9883. ]
  9884. ))
  9885. characterMakers.push(() => makeCharacter(
  9886. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9887. {
  9888. back: {
  9889. height: math.unit(5 + 4 / 12, "feet"),
  9890. weight: math.unit(4963, "lb"),
  9891. name: "Back",
  9892. image: {
  9893. source: "./media/characters/amelia-rosie/back.svg",
  9894. extra: 1113 / 963,
  9895. bottom: 0.01
  9896. }
  9897. },
  9898. },
  9899. [
  9900. {
  9901. name: "Level 0",
  9902. height: math.unit(5 + 4 / 12, "feet")
  9903. },
  9904. {
  9905. name: "Level 1",
  9906. height: math.unit(164597, "feet"),
  9907. default: true
  9908. },
  9909. {
  9910. name: "Level 2",
  9911. height: math.unit(956243, "miles")
  9912. },
  9913. {
  9914. name: "Level 3",
  9915. height: math.unit(29421709423, "miles")
  9916. },
  9917. {
  9918. name: "Level 4",
  9919. height: math.unit(154, "lightyears")
  9920. },
  9921. {
  9922. name: "Level 5",
  9923. height: math.unit(4738272, "lightyears")
  9924. },
  9925. {
  9926. name: "Level 6",
  9927. height: math.unit(145787152896, "lightyears")
  9928. },
  9929. ]
  9930. ))
  9931. characterMakers.push(() => makeCharacter(
  9932. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9933. {
  9934. front: {
  9935. height: math.unit(5 + 11 / 12, "feet"),
  9936. weight: math.unit(65, "kg"),
  9937. name: "Front",
  9938. image: {
  9939. source: "./media/characters/rook-kitara/front.svg",
  9940. extra: 1347 / 1274,
  9941. bottom: 0.005
  9942. }
  9943. },
  9944. },
  9945. [
  9946. {
  9947. name: "Totally Unfair",
  9948. height: math.unit(1.8, "mm")
  9949. },
  9950. {
  9951. name: "Lap Rookie",
  9952. height: math.unit(1.4, "feet")
  9953. },
  9954. {
  9955. name: "Normal",
  9956. height: math.unit(5 + 11 / 12, "feet"),
  9957. default: true
  9958. },
  9959. {
  9960. name: "How Did This Happen",
  9961. height: math.unit(80, "miles")
  9962. }
  9963. ]
  9964. ))
  9965. characterMakers.push(() => makeCharacter(
  9966. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9967. {
  9968. front: {
  9969. height: math.unit(7, "feet"),
  9970. weight: math.unit(300, "lb"),
  9971. name: "Front",
  9972. image: {
  9973. source: "./media/characters/pisces/front.svg",
  9974. extra: 2255 / 2115,
  9975. bottom: 0.03
  9976. }
  9977. },
  9978. back: {
  9979. height: math.unit(7, "feet"),
  9980. weight: math.unit(300, "lb"),
  9981. name: "Back",
  9982. image: {
  9983. source: "./media/characters/pisces/back.svg",
  9984. extra: 2146 / 2055,
  9985. bottom: 0.04
  9986. }
  9987. },
  9988. },
  9989. [
  9990. {
  9991. name: "Normal",
  9992. height: math.unit(7, "feet"),
  9993. default: true
  9994. },
  9995. {
  9996. name: "Swimming Pool",
  9997. height: math.unit(12.2, "meters")
  9998. },
  9999. {
  10000. name: "Olympic Swimming Pool",
  10001. height: math.unit(56.3, "meters")
  10002. },
  10003. {
  10004. name: "Lake Superior",
  10005. height: math.unit(93900, "meters")
  10006. },
  10007. {
  10008. name: "Mediterranean Sea",
  10009. height: math.unit(644457, "meters")
  10010. },
  10011. {
  10012. name: "World's Oceans",
  10013. height: math.unit(4567491, "meters")
  10014. },
  10015. ]
  10016. ))
  10017. characterMakers.push(() => makeCharacter(
  10018. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10019. {
  10020. front: {
  10021. height: math.unit(2.3, "meters"),
  10022. weight: math.unit(120, "kg"),
  10023. name: "Front",
  10024. image: {
  10025. source: "./media/characters/zelas/front.svg"
  10026. }
  10027. },
  10028. side: {
  10029. height: math.unit(2.3, "meters"),
  10030. weight: math.unit(120, "kg"),
  10031. name: "Side",
  10032. image: {
  10033. source: "./media/characters/zelas/side.svg"
  10034. }
  10035. },
  10036. back: {
  10037. height: math.unit(2.3, "meters"),
  10038. weight: math.unit(120, "kg"),
  10039. name: "Back",
  10040. image: {
  10041. source: "./media/characters/zelas/back.svg"
  10042. }
  10043. },
  10044. foot: {
  10045. height: math.unit(1.116, "feet"),
  10046. name: "Foot",
  10047. image: {
  10048. source: "./media/characters/zelas/foot.svg"
  10049. }
  10050. },
  10051. },
  10052. [
  10053. {
  10054. name: "Normal",
  10055. height: math.unit(2.3, "meters")
  10056. },
  10057. {
  10058. name: "Macro",
  10059. height: math.unit(30, "meters"),
  10060. default: true
  10061. },
  10062. ]
  10063. ))
  10064. characterMakers.push(() => makeCharacter(
  10065. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10066. {
  10067. front: {
  10068. height: math.unit(1, "inch"),
  10069. weight: math.unit(0.21, "grams"),
  10070. name: "Front",
  10071. image: {
  10072. source: "./media/characters/talbot/front.svg",
  10073. extra: 594 / 544
  10074. }
  10075. },
  10076. },
  10077. [
  10078. {
  10079. name: "Micro",
  10080. height: math.unit(1, "inch"),
  10081. default: true
  10082. },
  10083. ]
  10084. ))
  10085. characterMakers.push(() => makeCharacter(
  10086. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10087. {
  10088. front: {
  10089. height: math.unit(3 + 3 / 12, "feet"),
  10090. weight: math.unit(51.8, "lb"),
  10091. name: "Front",
  10092. image: {
  10093. source: "./media/characters/fliss/front.svg",
  10094. extra: 840 / 640
  10095. }
  10096. },
  10097. },
  10098. [
  10099. {
  10100. name: "Teeny Tiny",
  10101. height: math.unit(1, "mm")
  10102. },
  10103. {
  10104. name: "Small",
  10105. height: math.unit(1, "inch"),
  10106. default: true
  10107. },
  10108. {
  10109. name: "Standard Sylveon",
  10110. height: math.unit(3 + 3 / 12, "feet")
  10111. },
  10112. {
  10113. name: "Large Nuisance",
  10114. height: math.unit(33, "feet")
  10115. },
  10116. {
  10117. name: "City Filler",
  10118. height: math.unit(3000, "feet")
  10119. },
  10120. {
  10121. name: "New Horizon",
  10122. height: math.unit(6000, "miles")
  10123. },
  10124. ]
  10125. ))
  10126. characterMakers.push(() => makeCharacter(
  10127. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10128. {
  10129. front: {
  10130. height: math.unit(5, "cm"),
  10131. weight: math.unit(1.94, "g"),
  10132. name: "Front",
  10133. image: {
  10134. source: "./media/characters/fleta/front.svg",
  10135. extra: 835 / 803
  10136. }
  10137. },
  10138. back: {
  10139. height: math.unit(5, "cm"),
  10140. weight: math.unit(1.94, "g"),
  10141. name: "Back",
  10142. image: {
  10143. source: "./media/characters/fleta/back.svg",
  10144. extra: 835 / 803
  10145. }
  10146. },
  10147. },
  10148. [
  10149. {
  10150. name: "Micro",
  10151. height: math.unit(5, "cm"),
  10152. default: true
  10153. },
  10154. ]
  10155. ))
  10156. characterMakers.push(() => makeCharacter(
  10157. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10158. {
  10159. front: {
  10160. height: math.unit(6, "feet"),
  10161. weight: math.unit(225, "lb"),
  10162. name: "Front",
  10163. image: {
  10164. source: "./media/characters/dominic/front.svg",
  10165. extra: 1770 / 1620,
  10166. bottom: 0.025
  10167. }
  10168. },
  10169. back: {
  10170. height: math.unit(6, "feet"),
  10171. weight: math.unit(225, "lb"),
  10172. name: "Back",
  10173. image: {
  10174. source: "./media/characters/dominic/back.svg",
  10175. extra: 1745 / 1620,
  10176. bottom: 0.065
  10177. }
  10178. },
  10179. },
  10180. [
  10181. {
  10182. name: "Nano",
  10183. height: math.unit(0.1, "mm")
  10184. },
  10185. {
  10186. name: "Micro-",
  10187. height: math.unit(1, "mm")
  10188. },
  10189. {
  10190. name: "Micro",
  10191. height: math.unit(4, "inches")
  10192. },
  10193. {
  10194. name: "Normal",
  10195. height: math.unit(6 + 4 / 12, "feet"),
  10196. default: true
  10197. },
  10198. {
  10199. name: "Macro",
  10200. height: math.unit(115, "feet")
  10201. },
  10202. {
  10203. name: "Macro+",
  10204. height: math.unit(955, "feet")
  10205. },
  10206. {
  10207. name: "Megamacro",
  10208. height: math.unit(8990, "feet")
  10209. },
  10210. {
  10211. name: "Gigmacro",
  10212. height: math.unit(9310, "miles")
  10213. },
  10214. {
  10215. name: "Teramacro",
  10216. height: math.unit(1567005010, "miles")
  10217. },
  10218. {
  10219. name: "Examacro",
  10220. height: math.unit(1425, "parsecs")
  10221. },
  10222. ]
  10223. ))
  10224. characterMakers.push(() => makeCharacter(
  10225. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10226. {
  10227. front: {
  10228. height: math.unit(400, "feet"),
  10229. weight: math.unit(44444444, "lb"),
  10230. name: "Front",
  10231. image: {
  10232. source: "./media/characters/major-colonel/front.svg"
  10233. }
  10234. },
  10235. back: {
  10236. height: math.unit(400, "feet"),
  10237. weight: math.unit(44444444, "lb"),
  10238. name: "Back",
  10239. image: {
  10240. source: "./media/characters/major-colonel/back.svg"
  10241. }
  10242. },
  10243. },
  10244. [
  10245. {
  10246. name: "Macro",
  10247. height: math.unit(400, "feet"),
  10248. default: true
  10249. },
  10250. ]
  10251. ))
  10252. characterMakers.push(() => makeCharacter(
  10253. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10254. {
  10255. catFront: {
  10256. height: math.unit(6, "feet"),
  10257. weight: math.unit(120, "lb"),
  10258. name: "Front (Cat Side)",
  10259. image: {
  10260. source: "./media/characters/axel-lycan/cat-front.svg",
  10261. extra: 430 / 402,
  10262. bottom: 43 / 472.35
  10263. }
  10264. },
  10265. catBack: {
  10266. height: math.unit(6, "feet"),
  10267. weight: math.unit(120, "lb"),
  10268. name: "Back (Cat Side)",
  10269. image: {
  10270. source: "./media/characters/axel-lycan/cat-back.svg",
  10271. extra: 447 / 419,
  10272. bottom: 23.3 / 469
  10273. }
  10274. },
  10275. wolfFront: {
  10276. height: math.unit(6, "feet"),
  10277. weight: math.unit(120, "lb"),
  10278. name: "Front (Wolf Side)",
  10279. image: {
  10280. source: "./media/characters/axel-lycan/wolf-front.svg",
  10281. extra: 485 / 456,
  10282. bottom: 19 / 504
  10283. }
  10284. },
  10285. wolfBack: {
  10286. height: math.unit(6, "feet"),
  10287. weight: math.unit(120, "lb"),
  10288. name: "Back (Wolf Side)",
  10289. image: {
  10290. source: "./media/characters/axel-lycan/wolf-back.svg",
  10291. extra: 475 / 438,
  10292. bottom: 39.2 / 514
  10293. }
  10294. },
  10295. },
  10296. [
  10297. {
  10298. name: "Macro",
  10299. height: math.unit(1, "km"),
  10300. default: true
  10301. },
  10302. ]
  10303. ))
  10304. characterMakers.push(() => makeCharacter(
  10305. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10306. {
  10307. front: {
  10308. height: math.unit(5 + 9 / 12, "feet"),
  10309. weight: math.unit(175, "lb"),
  10310. name: "Front",
  10311. image: {
  10312. source: "./media/characters/vanrel-hyena/front.svg",
  10313. extra: 1086 / 1010,
  10314. bottom: 0.04
  10315. }
  10316. },
  10317. },
  10318. [
  10319. {
  10320. name: "Normal",
  10321. height: math.unit(5 + 9 / 12, "feet"),
  10322. default: true
  10323. },
  10324. ]
  10325. ))
  10326. characterMakers.push(() => makeCharacter(
  10327. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10328. {
  10329. front: {
  10330. height: math.unit(6, "feet"),
  10331. weight: math.unit(103, "lb"),
  10332. name: "Front",
  10333. image: {
  10334. source: "./media/characters/abbott-absol/front.svg",
  10335. extra: 2010 / 1842
  10336. }
  10337. },
  10338. },
  10339. [
  10340. {
  10341. name: "Megamicro",
  10342. height: math.unit(0.1, "mm")
  10343. },
  10344. {
  10345. name: "Micro",
  10346. height: math.unit(1, "inch")
  10347. },
  10348. {
  10349. name: "Normal",
  10350. height: math.unit(6, "feet"),
  10351. default: true
  10352. },
  10353. ]
  10354. ))
  10355. characterMakers.push(() => makeCharacter(
  10356. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10357. {
  10358. front: {
  10359. height: math.unit(6, "feet"),
  10360. weight: math.unit(264, "lb"),
  10361. name: "Front",
  10362. image: {
  10363. source: "./media/characters/hector/front.svg",
  10364. extra: 2280 / 2130,
  10365. bottom: 0.07
  10366. }
  10367. },
  10368. },
  10369. [
  10370. {
  10371. name: "Normal",
  10372. height: math.unit(12.25, "foot"),
  10373. default: true
  10374. },
  10375. {
  10376. name: "Macro",
  10377. height: math.unit(160, "feet")
  10378. },
  10379. ]
  10380. ))
  10381. characterMakers.push(() => makeCharacter(
  10382. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10383. {
  10384. front: {
  10385. height: math.unit(6, "feet"),
  10386. weight: math.unit(150, "lb"),
  10387. name: "Front",
  10388. image: {
  10389. source: "./media/characters/sal/front.svg",
  10390. extra: 1846 / 1699,
  10391. bottom: 0.04
  10392. }
  10393. },
  10394. },
  10395. [
  10396. {
  10397. name: "Megamacro",
  10398. height: math.unit(10, "miles"),
  10399. default: true
  10400. },
  10401. ]
  10402. ))
  10403. characterMakers.push(() => makeCharacter(
  10404. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10405. {
  10406. front: {
  10407. height: math.unit(3, "meters"),
  10408. weight: math.unit(450, "kg"),
  10409. name: "front",
  10410. image: {
  10411. source: "./media/characters/ranger/front.svg",
  10412. extra: 2401 / 2243,
  10413. bottom: 0.05
  10414. }
  10415. },
  10416. },
  10417. [
  10418. {
  10419. name: "Normal",
  10420. height: math.unit(3, "meters"),
  10421. default: true
  10422. },
  10423. ]
  10424. ))
  10425. characterMakers.push(() => makeCharacter(
  10426. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10427. {
  10428. front: {
  10429. height: math.unit(14, "feet"),
  10430. weight: math.unit(800, "kg"),
  10431. name: "Front",
  10432. image: {
  10433. source: "./media/characters/theresa/front.svg",
  10434. extra: 3575 / 3346,
  10435. bottom: 0.03
  10436. }
  10437. },
  10438. },
  10439. [
  10440. {
  10441. name: "Normal",
  10442. height: math.unit(14, "feet"),
  10443. default: true
  10444. },
  10445. ]
  10446. ))
  10447. characterMakers.push(() => makeCharacter(
  10448. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10449. {
  10450. front: {
  10451. height: math.unit(6, "feet"),
  10452. weight: math.unit(3, "kg"),
  10453. name: "Front",
  10454. image: {
  10455. source: "./media/characters/ine/front.svg",
  10456. extra: 678 / 539,
  10457. bottom: 0.023
  10458. }
  10459. },
  10460. },
  10461. [
  10462. {
  10463. name: "Normal",
  10464. height: math.unit(2.265, "feet"),
  10465. default: true
  10466. },
  10467. ]
  10468. ))
  10469. characterMakers.push(() => makeCharacter(
  10470. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10471. {
  10472. front: {
  10473. height: math.unit(5, "feet"),
  10474. weight: math.unit(30, "kg"),
  10475. name: "Front",
  10476. image: {
  10477. source: "./media/characters/vial/front.svg",
  10478. extra: 1365 / 1277,
  10479. bottom: 0.04
  10480. }
  10481. },
  10482. },
  10483. [
  10484. {
  10485. name: "Normal",
  10486. height: math.unit(5, "feet"),
  10487. default: true
  10488. },
  10489. ]
  10490. ))
  10491. characterMakers.push(() => makeCharacter(
  10492. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10493. {
  10494. side: {
  10495. height: math.unit(3.4, "meters"),
  10496. weight: math.unit(1000, "lb"),
  10497. name: "Side",
  10498. image: {
  10499. source: "./media/characters/rovoska/side.svg",
  10500. extra: 4403 / 1515
  10501. }
  10502. },
  10503. },
  10504. [
  10505. {
  10506. name: "Normal",
  10507. height: math.unit(3.4, "meters"),
  10508. default: true
  10509. },
  10510. ]
  10511. ))
  10512. characterMakers.push(() => makeCharacter(
  10513. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10514. {
  10515. front: {
  10516. height: math.unit(8, "feet"),
  10517. weight: math.unit(315, "lb"),
  10518. name: "Front",
  10519. image: {
  10520. source: "./media/characters/gunner-rotthbauer/front.svg"
  10521. }
  10522. },
  10523. back: {
  10524. height: math.unit(8, "feet"),
  10525. weight: math.unit(315, "lb"),
  10526. name: "Back",
  10527. image: {
  10528. source: "./media/characters/gunner-rotthbauer/back.svg"
  10529. }
  10530. },
  10531. },
  10532. [
  10533. {
  10534. name: "Micro",
  10535. height: math.unit(3.5, "inches")
  10536. },
  10537. {
  10538. name: "Normal",
  10539. height: math.unit(8, "feet"),
  10540. default: true
  10541. },
  10542. {
  10543. name: "Macro",
  10544. height: math.unit(250, "feet")
  10545. },
  10546. {
  10547. name: "Megamacro",
  10548. height: math.unit(1, "AU")
  10549. },
  10550. ]
  10551. ))
  10552. characterMakers.push(() => makeCharacter(
  10553. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10554. {
  10555. front: {
  10556. height: math.unit(5 + 5 / 12, "feet"),
  10557. weight: math.unit(140, "lb"),
  10558. name: "Front",
  10559. image: {
  10560. source: "./media/characters/allatia/front.svg",
  10561. extra: 1227 / 1180,
  10562. bottom: 0.027
  10563. }
  10564. },
  10565. },
  10566. [
  10567. {
  10568. name: "Normal",
  10569. height: math.unit(5 + 5 / 12, "feet")
  10570. },
  10571. {
  10572. name: "Macro",
  10573. height: math.unit(250, "feet"),
  10574. default: true
  10575. },
  10576. {
  10577. name: "Megamacro",
  10578. height: math.unit(8, "miles")
  10579. }
  10580. ]
  10581. ))
  10582. characterMakers.push(() => makeCharacter(
  10583. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10584. {
  10585. front: {
  10586. height: math.unit(6, "feet"),
  10587. weight: math.unit(120, "lb"),
  10588. name: "Front",
  10589. image: {
  10590. source: "./media/characters/tene/front.svg",
  10591. extra: 814/750,
  10592. bottom: 36/850
  10593. }
  10594. },
  10595. stomping: {
  10596. height: math.unit(2.025, "meters"),
  10597. weight: math.unit(120, "lb"),
  10598. name: "Stomping",
  10599. image: {
  10600. source: "./media/characters/tene/stomping.svg",
  10601. extra: 885/821,
  10602. bottom: 15/900
  10603. }
  10604. },
  10605. sitting: {
  10606. height: math.unit(1, "meter"),
  10607. weight: math.unit(120, "lb"),
  10608. name: "Sitting",
  10609. image: {
  10610. source: "./media/characters/tene/sitting.svg",
  10611. extra: 396/366,
  10612. bottom: 79/475
  10613. }
  10614. },
  10615. smiling: {
  10616. height: math.unit(1.2, "feet"),
  10617. name: "Smiling",
  10618. image: {
  10619. source: "./media/characters/tene/smiling.svg",
  10620. extra: 1364/1071,
  10621. bottom: 0/1364
  10622. }
  10623. },
  10624. smug: {
  10625. height: math.unit(1.3, "feet"),
  10626. name: "Smug",
  10627. image: {
  10628. source: "./media/characters/tene/smug.svg",
  10629. extra: 1323/1082,
  10630. bottom: 0/1323
  10631. }
  10632. },
  10633. feral: {
  10634. height: math.unit(3.9, "feet"),
  10635. weight: math.unit(250, "lb"),
  10636. name: "Feral",
  10637. image: {
  10638. source: "./media/characters/tene/feral.svg",
  10639. extra: 717 / 458,
  10640. bottom: 0.179
  10641. }
  10642. },
  10643. },
  10644. [
  10645. {
  10646. name: "Normal",
  10647. height: math.unit(6, "feet")
  10648. },
  10649. {
  10650. name: "Macro",
  10651. height: math.unit(300, "feet"),
  10652. default: true
  10653. },
  10654. {
  10655. name: "Megamacro",
  10656. height: math.unit(5, "miles")
  10657. },
  10658. ]
  10659. ))
  10660. characterMakers.push(() => makeCharacter(
  10661. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10662. {
  10663. side: {
  10664. height: math.unit(6, "feet"),
  10665. name: "Side",
  10666. image: {
  10667. source: "./media/characters/evander/side.svg",
  10668. extra: 877 / 477
  10669. }
  10670. },
  10671. },
  10672. [
  10673. {
  10674. name: "Normal",
  10675. height: math.unit(0.83, "meters"),
  10676. default: true
  10677. },
  10678. ]
  10679. ))
  10680. characterMakers.push(() => makeCharacter(
  10681. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10682. {
  10683. front: {
  10684. height: math.unit(12, "feet"),
  10685. weight: math.unit(1000, "lb"),
  10686. name: "Front",
  10687. image: {
  10688. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10689. extra: 1762 / 1611
  10690. }
  10691. },
  10692. back: {
  10693. height: math.unit(12, "feet"),
  10694. weight: math.unit(1000, "lb"),
  10695. name: "Back",
  10696. image: {
  10697. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10698. extra: 1762 / 1611
  10699. }
  10700. },
  10701. },
  10702. [
  10703. {
  10704. name: "Normal",
  10705. height: math.unit(12, "feet"),
  10706. default: true
  10707. },
  10708. {
  10709. name: "Kaiju",
  10710. height: math.unit(150, "feet")
  10711. },
  10712. ]
  10713. ))
  10714. characterMakers.push(() => makeCharacter(
  10715. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10716. {
  10717. front: {
  10718. height: math.unit(6, "feet"),
  10719. weight: math.unit(150, "lb"),
  10720. name: "Front",
  10721. image: {
  10722. source: "./media/characters/zero-alurus/front.svg"
  10723. }
  10724. },
  10725. back: {
  10726. height: math.unit(6, "feet"),
  10727. weight: math.unit(150, "lb"),
  10728. name: "Back",
  10729. image: {
  10730. source: "./media/characters/zero-alurus/back.svg"
  10731. }
  10732. },
  10733. },
  10734. [
  10735. {
  10736. name: "Normal",
  10737. height: math.unit(5 + 10 / 12, "feet")
  10738. },
  10739. {
  10740. name: "Macro",
  10741. height: math.unit(60, "feet"),
  10742. default: true
  10743. },
  10744. {
  10745. name: "Macro+",
  10746. height: math.unit(450, "feet")
  10747. },
  10748. ]
  10749. ))
  10750. characterMakers.push(() => makeCharacter(
  10751. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10752. {
  10753. front: {
  10754. height: math.unit(6, "feet"),
  10755. weight: math.unit(200, "lb"),
  10756. name: "Front",
  10757. image: {
  10758. source: "./media/characters/mega-shi/front.svg",
  10759. extra: 1279 / 1250,
  10760. bottom: 0.02
  10761. }
  10762. },
  10763. back: {
  10764. height: math.unit(6, "feet"),
  10765. weight: math.unit(200, "lb"),
  10766. name: "Back",
  10767. image: {
  10768. source: "./media/characters/mega-shi/back.svg",
  10769. extra: 1279 / 1250,
  10770. bottom: 0.02
  10771. }
  10772. },
  10773. },
  10774. [
  10775. {
  10776. name: "Micro",
  10777. height: math.unit(16 + 6 / 12, "feet")
  10778. },
  10779. {
  10780. name: "Third Dimension",
  10781. height: math.unit(40, "meters")
  10782. },
  10783. {
  10784. name: "Normal",
  10785. height: math.unit(660, "feet"),
  10786. default: true
  10787. },
  10788. {
  10789. name: "Megamacro",
  10790. height: math.unit(10, "miles")
  10791. },
  10792. {
  10793. name: "Planetary Launch",
  10794. height: math.unit(500, "miles")
  10795. },
  10796. {
  10797. name: "Interstellar",
  10798. height: math.unit(1e9, "miles")
  10799. },
  10800. {
  10801. name: "Leaving the Universe",
  10802. height: math.unit(1, "gigaparsec")
  10803. },
  10804. {
  10805. name: "Travelling Universes",
  10806. height: math.unit(30e15, "parsecs")
  10807. },
  10808. ]
  10809. ))
  10810. characterMakers.push(() => makeCharacter(
  10811. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10812. {
  10813. front: {
  10814. height: math.unit(5 + 4/12, "feet"),
  10815. weight: math.unit(120, "lb"),
  10816. name: "Front",
  10817. image: {
  10818. source: "./media/characters/odyssey/front.svg",
  10819. extra: 1747/1571,
  10820. bottom: 47/1794
  10821. }
  10822. },
  10823. side: {
  10824. height: math.unit(5.1, "feet"),
  10825. weight: math.unit(120, "lb"),
  10826. name: "Side",
  10827. image: {
  10828. source: "./media/characters/odyssey/side.svg",
  10829. extra: 1847/1619,
  10830. bottom: 47/1894
  10831. }
  10832. },
  10833. lounging: {
  10834. height: math.unit(1.464, "feet"),
  10835. weight: math.unit(120, "lb"),
  10836. name: "Lounging",
  10837. image: {
  10838. source: "./media/characters/odyssey/lounging.svg",
  10839. extra: 1235/837,
  10840. bottom: 551/1786
  10841. }
  10842. },
  10843. },
  10844. [
  10845. {
  10846. name: "Normal",
  10847. height: math.unit(5 + 4 / 12, "feet")
  10848. },
  10849. {
  10850. name: "Macro",
  10851. height: math.unit(1, "km")
  10852. },
  10853. {
  10854. name: "Megamacro",
  10855. height: math.unit(3000, "km")
  10856. },
  10857. {
  10858. name: "Gigamacro",
  10859. height: math.unit(1, "AU"),
  10860. default: true
  10861. },
  10862. {
  10863. name: "Omniversal",
  10864. height: math.unit(100e14, "lightyears")
  10865. },
  10866. ]
  10867. ))
  10868. characterMakers.push(() => makeCharacter(
  10869. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10870. {
  10871. front: {
  10872. height: math.unit(6, "feet"),
  10873. weight: math.unit(300, "lb"),
  10874. name: "Front",
  10875. image: {
  10876. source: "./media/characters/mekuto/front.svg",
  10877. extra: 921 / 832,
  10878. bottom: 0.03
  10879. }
  10880. },
  10881. hand: {
  10882. height: math.unit(6 / 10.24, "feet"),
  10883. name: "Hand",
  10884. image: {
  10885. source: "./media/characters/mekuto/hand.svg"
  10886. }
  10887. },
  10888. foot: {
  10889. height: math.unit(6 / 5.05, "feet"),
  10890. name: "Foot",
  10891. image: {
  10892. source: "./media/characters/mekuto/foot.svg"
  10893. }
  10894. },
  10895. },
  10896. [
  10897. {
  10898. name: "Minimicro",
  10899. height: math.unit(0.2, "inches")
  10900. },
  10901. {
  10902. name: "Micro",
  10903. height: math.unit(1.5, "inches")
  10904. },
  10905. {
  10906. name: "Normal",
  10907. height: math.unit(5 + 11 / 12, "feet"),
  10908. default: true
  10909. },
  10910. {
  10911. name: "Minimacro",
  10912. height: math.unit(17 + 9 / 12, "feet")
  10913. },
  10914. {
  10915. name: "Macro",
  10916. height: math.unit(177.5, "feet")
  10917. },
  10918. {
  10919. name: "Megamacro",
  10920. height: math.unit(152, "miles")
  10921. },
  10922. ]
  10923. ))
  10924. characterMakers.push(() => makeCharacter(
  10925. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10926. {
  10927. front: {
  10928. height: math.unit(6.5, "inches"),
  10929. weight: math.unit(13, "oz"),
  10930. name: "Front",
  10931. image: {
  10932. source: "./media/characters/dafydd-tomos/front.svg",
  10933. extra: 2990 / 2603,
  10934. bottom: 0.03
  10935. }
  10936. },
  10937. },
  10938. [
  10939. {
  10940. name: "Micro",
  10941. height: math.unit(6.5, "inches"),
  10942. default: true
  10943. },
  10944. ]
  10945. ))
  10946. characterMakers.push(() => makeCharacter(
  10947. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10948. {
  10949. front: {
  10950. height: math.unit(6, "feet"),
  10951. weight: math.unit(150, "lb"),
  10952. name: "Front",
  10953. image: {
  10954. source: "./media/characters/splinter/front.svg",
  10955. extra: 2990 / 2882,
  10956. bottom: 0.04
  10957. }
  10958. },
  10959. back: {
  10960. height: math.unit(6, "feet"),
  10961. weight: math.unit(150, "lb"),
  10962. name: "Back",
  10963. image: {
  10964. source: "./media/characters/splinter/back.svg",
  10965. extra: 2990 / 2882,
  10966. bottom: 0.04
  10967. }
  10968. },
  10969. },
  10970. [
  10971. {
  10972. name: "Normal",
  10973. height: math.unit(6, "feet")
  10974. },
  10975. {
  10976. name: "Macro",
  10977. height: math.unit(230, "meters"),
  10978. default: true
  10979. },
  10980. ]
  10981. ))
  10982. characterMakers.push(() => makeCharacter(
  10983. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10984. {
  10985. front: {
  10986. height: math.unit(4 + 10 / 12, "feet"),
  10987. weight: math.unit(480, "lb"),
  10988. name: "Front",
  10989. image: {
  10990. source: "./media/characters/snow-gabumon/front.svg",
  10991. extra: 1140 / 963,
  10992. bottom: 0.058
  10993. }
  10994. },
  10995. back: {
  10996. height: math.unit(4 + 10 / 12, "feet"),
  10997. weight: math.unit(480, "lb"),
  10998. name: "Back",
  10999. image: {
  11000. source: "./media/characters/snow-gabumon/back.svg",
  11001. extra: 1115 / 962,
  11002. bottom: 0.041
  11003. }
  11004. },
  11005. frontUndresed: {
  11006. height: math.unit(4 + 10 / 12, "feet"),
  11007. weight: math.unit(480, "lb"),
  11008. name: "Front (Undressed)",
  11009. image: {
  11010. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11011. extra: 1061 / 960,
  11012. bottom: 0.045
  11013. }
  11014. },
  11015. },
  11016. [
  11017. {
  11018. name: "Micro",
  11019. height: math.unit(1, "inch")
  11020. },
  11021. {
  11022. name: "Normal",
  11023. height: math.unit(4 + 10 / 12, "feet"),
  11024. default: true
  11025. },
  11026. {
  11027. name: "Macro",
  11028. height: math.unit(200, "feet")
  11029. },
  11030. {
  11031. name: "Megamacro",
  11032. height: math.unit(120, "miles")
  11033. },
  11034. {
  11035. name: "Gigamacro",
  11036. height: math.unit(9800, "miles")
  11037. },
  11038. ]
  11039. ))
  11040. characterMakers.push(() => makeCharacter(
  11041. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11042. {
  11043. front: {
  11044. height: math.unit(1.7, "meters"),
  11045. weight: math.unit(140, "lb"),
  11046. name: "Front",
  11047. image: {
  11048. source: "./media/characters/moody/front.svg",
  11049. extra: 3226 / 3007,
  11050. bottom: 0.087
  11051. }
  11052. },
  11053. },
  11054. [
  11055. {
  11056. name: "Micro",
  11057. height: math.unit(1, "mm")
  11058. },
  11059. {
  11060. name: "Normal",
  11061. height: math.unit(1.7, "meters"),
  11062. default: true
  11063. },
  11064. {
  11065. name: "Macro",
  11066. height: math.unit(80, "meters")
  11067. },
  11068. {
  11069. name: "Macro+",
  11070. height: math.unit(500, "meters")
  11071. },
  11072. ]
  11073. ))
  11074. characterMakers.push(() => makeCharacter(
  11075. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11076. {
  11077. front: {
  11078. height: math.unit(6, "feet"),
  11079. weight: math.unit(150, "lb"),
  11080. name: "Front",
  11081. image: {
  11082. source: "./media/characters/zyas/front.svg",
  11083. extra: 1180 / 1120,
  11084. bottom: 0.045
  11085. }
  11086. },
  11087. },
  11088. [
  11089. {
  11090. name: "Normal",
  11091. height: math.unit(10, "feet"),
  11092. default: true
  11093. },
  11094. {
  11095. name: "Macro",
  11096. height: math.unit(500, "feet")
  11097. },
  11098. {
  11099. name: "Megamacro",
  11100. height: math.unit(5, "miles")
  11101. },
  11102. {
  11103. name: "Teramacro",
  11104. height: math.unit(150000, "miles")
  11105. },
  11106. ]
  11107. ))
  11108. characterMakers.push(() => makeCharacter(
  11109. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11110. {
  11111. front: {
  11112. height: math.unit(6, "feet"),
  11113. weight: math.unit(150, "lb"),
  11114. name: "Front",
  11115. image: {
  11116. source: "./media/characters/cuon/front.svg",
  11117. extra: 1390 / 1320,
  11118. bottom: 0.008
  11119. }
  11120. },
  11121. },
  11122. [
  11123. {
  11124. name: "Micro",
  11125. height: math.unit(3, "inches")
  11126. },
  11127. {
  11128. name: "Normal",
  11129. height: math.unit(18 + 9 / 12, "feet"),
  11130. default: true
  11131. },
  11132. {
  11133. name: "Macro",
  11134. height: math.unit(360, "feet")
  11135. },
  11136. {
  11137. name: "Megamacro",
  11138. height: math.unit(360, "miles")
  11139. },
  11140. ]
  11141. ))
  11142. characterMakers.push(() => makeCharacter(
  11143. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11144. {
  11145. front: {
  11146. height: math.unit(2.4, "meters"),
  11147. weight: math.unit(70, "kg"),
  11148. name: "Front",
  11149. image: {
  11150. source: "./media/characters/nyanuxk/front.svg",
  11151. extra: 1172 / 1084,
  11152. bottom: 0.065
  11153. }
  11154. },
  11155. side: {
  11156. height: math.unit(2.4, "meters"),
  11157. weight: math.unit(70, "kg"),
  11158. name: "Side",
  11159. image: {
  11160. source: "./media/characters/nyanuxk/side.svg",
  11161. extra: 1190 / 1132,
  11162. bottom: 0.007
  11163. }
  11164. },
  11165. back: {
  11166. height: math.unit(2.4, "meters"),
  11167. weight: math.unit(70, "kg"),
  11168. name: "Back",
  11169. image: {
  11170. source: "./media/characters/nyanuxk/back.svg",
  11171. extra: 1200 / 1141,
  11172. bottom: 0.015
  11173. }
  11174. },
  11175. foot: {
  11176. height: math.unit(0.52, "meters"),
  11177. name: "Foot",
  11178. image: {
  11179. source: "./media/characters/nyanuxk/foot.svg"
  11180. }
  11181. },
  11182. },
  11183. [
  11184. {
  11185. name: "Micro",
  11186. height: math.unit(2, "cm")
  11187. },
  11188. {
  11189. name: "Normal",
  11190. height: math.unit(2.4, "meters"),
  11191. default: true
  11192. },
  11193. {
  11194. name: "Smaller Macro",
  11195. height: math.unit(120, "meters")
  11196. },
  11197. {
  11198. name: "Bigger Macro",
  11199. height: math.unit(1.2, "km")
  11200. },
  11201. {
  11202. name: "Megamacro",
  11203. height: math.unit(15, "kilometers")
  11204. },
  11205. {
  11206. name: "Gigamacro",
  11207. height: math.unit(2000, "km")
  11208. },
  11209. {
  11210. name: "Teramacro",
  11211. height: math.unit(500000, "km")
  11212. },
  11213. ]
  11214. ))
  11215. characterMakers.push(() => makeCharacter(
  11216. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11217. {
  11218. side: {
  11219. height: math.unit(6, "feet"),
  11220. name: "Side",
  11221. image: {
  11222. source: "./media/characters/ailbhe/side.svg",
  11223. extra: 757 / 464,
  11224. bottom: 0.041
  11225. }
  11226. },
  11227. },
  11228. [
  11229. {
  11230. name: "Normal",
  11231. height: math.unit(1.07, "meters"),
  11232. default: true
  11233. },
  11234. ]
  11235. ))
  11236. characterMakers.push(() => makeCharacter(
  11237. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11238. {
  11239. front: {
  11240. height: math.unit(6, "feet"),
  11241. weight: math.unit(120, "kg"),
  11242. name: "Front",
  11243. image: {
  11244. source: "./media/characters/zevulfius/front.svg",
  11245. extra: 965 / 903
  11246. }
  11247. },
  11248. side: {
  11249. height: math.unit(6, "feet"),
  11250. weight: math.unit(120, "kg"),
  11251. name: "Side",
  11252. image: {
  11253. source: "./media/characters/zevulfius/side.svg",
  11254. extra: 939 / 900
  11255. }
  11256. },
  11257. back: {
  11258. height: math.unit(6, "feet"),
  11259. weight: math.unit(120, "kg"),
  11260. name: "Back",
  11261. image: {
  11262. source: "./media/characters/zevulfius/back.svg",
  11263. extra: 918 / 854,
  11264. bottom: 0.005
  11265. }
  11266. },
  11267. foot: {
  11268. height: math.unit(6 / 3.72, "feet"),
  11269. name: "Foot",
  11270. image: {
  11271. source: "./media/characters/zevulfius/foot.svg"
  11272. }
  11273. },
  11274. },
  11275. [
  11276. {
  11277. name: "Macro",
  11278. height: math.unit(750, "meters")
  11279. },
  11280. {
  11281. name: "Megamacro",
  11282. height: math.unit(20, "km"),
  11283. default: true
  11284. },
  11285. {
  11286. name: "Gigamacro",
  11287. height: math.unit(2000, "km")
  11288. },
  11289. {
  11290. name: "Teramacro",
  11291. height: math.unit(250000, "km")
  11292. },
  11293. ]
  11294. ))
  11295. characterMakers.push(() => makeCharacter(
  11296. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11297. {
  11298. front: {
  11299. height: math.unit(100, "feet"),
  11300. weight: math.unit(350, "kg"),
  11301. name: "Front",
  11302. image: {
  11303. source: "./media/characters/rikes/front.svg",
  11304. extra: 1565 / 1483,
  11305. bottom: 0.017
  11306. }
  11307. },
  11308. },
  11309. [
  11310. {
  11311. name: "Macro",
  11312. height: math.unit(100, "feet"),
  11313. default: true
  11314. },
  11315. ]
  11316. ))
  11317. characterMakers.push(() => makeCharacter(
  11318. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11319. {
  11320. front: {
  11321. height: math.unit(8, "feet"),
  11322. weight: math.unit(356, "lb"),
  11323. name: "Front",
  11324. image: {
  11325. source: "./media/characters/adam-silver-mane/front.svg",
  11326. extra: 1036/937,
  11327. bottom: 63/1099
  11328. }
  11329. },
  11330. side: {
  11331. height: math.unit(8, "feet"),
  11332. weight: math.unit(356, "lb"),
  11333. name: "Side",
  11334. image: {
  11335. source: "./media/characters/adam-silver-mane/side.svg",
  11336. extra: 997/901,
  11337. bottom: 59/1056
  11338. }
  11339. },
  11340. frontNsfw: {
  11341. height: math.unit(8, "feet"),
  11342. weight: math.unit(356, "lb"),
  11343. name: "Front (NSFW)",
  11344. image: {
  11345. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11346. extra: 1036/937,
  11347. bottom: 63/1099
  11348. }
  11349. },
  11350. sideNsfw: {
  11351. height: math.unit(8, "feet"),
  11352. weight: math.unit(356, "lb"),
  11353. name: "Side (NSFW)",
  11354. image: {
  11355. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11356. extra: 997/901,
  11357. bottom: 59/1056
  11358. }
  11359. },
  11360. dick: {
  11361. height: math.unit(2.1, "feet"),
  11362. name: "Dick",
  11363. image: {
  11364. source: "./media/characters/adam-silver-mane/dick.svg"
  11365. }
  11366. },
  11367. taur: {
  11368. height: math.unit(16, "feet"),
  11369. weight: math.unit(1500, "kg"),
  11370. name: "Taur",
  11371. image: {
  11372. source: "./media/characters/adam-silver-mane/taur.svg",
  11373. extra: 1713 / 1571,
  11374. bottom: 0.01
  11375. }
  11376. },
  11377. },
  11378. [
  11379. {
  11380. name: "Normal",
  11381. height: math.unit(8, "feet")
  11382. },
  11383. {
  11384. name: "Minimacro",
  11385. height: math.unit(80, "feet")
  11386. },
  11387. {
  11388. name: "MDA",
  11389. height: math.unit(80, "meters")
  11390. },
  11391. {
  11392. name: "Macro",
  11393. height: math.unit(800, "feet"),
  11394. default: true
  11395. },
  11396. {
  11397. name: "Megamacro",
  11398. height: math.unit(8000, "feet")
  11399. },
  11400. {
  11401. name: "Gigamacro",
  11402. height: math.unit(800, "miles")
  11403. },
  11404. {
  11405. name: "Teramacro",
  11406. height: math.unit(80000, "miles")
  11407. },
  11408. {
  11409. name: "Celestial",
  11410. height: math.unit(8e6, "miles")
  11411. },
  11412. {
  11413. name: "Star Dragon",
  11414. height: math.unit(800000, "parsecs")
  11415. },
  11416. {
  11417. name: "Godly",
  11418. height: math.unit(800, "teraparsecs")
  11419. },
  11420. ]
  11421. ))
  11422. characterMakers.push(() => makeCharacter(
  11423. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11424. {
  11425. front: {
  11426. height: math.unit(6, "feet"),
  11427. weight: math.unit(150, "lb"),
  11428. name: "Front",
  11429. image: {
  11430. source: "./media/characters/ky'owin/front.svg",
  11431. extra: 3888 / 3068,
  11432. bottom: 0.015
  11433. }
  11434. },
  11435. },
  11436. [
  11437. {
  11438. name: "Normal",
  11439. height: math.unit(6 + 8 / 12, "feet")
  11440. },
  11441. {
  11442. name: "Large",
  11443. height: math.unit(68, "feet")
  11444. },
  11445. {
  11446. name: "Macro",
  11447. height: math.unit(132, "feet")
  11448. },
  11449. {
  11450. name: "Macro+",
  11451. height: math.unit(340, "feet")
  11452. },
  11453. {
  11454. name: "Macro++",
  11455. height: math.unit(680, "feet"),
  11456. default: true
  11457. },
  11458. {
  11459. name: "Megamacro",
  11460. height: math.unit(1, "mile")
  11461. },
  11462. {
  11463. name: "Megamacro+",
  11464. height: math.unit(10, "miles")
  11465. },
  11466. ]
  11467. ))
  11468. characterMakers.push(() => makeCharacter(
  11469. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11470. {
  11471. front: {
  11472. height: math.unit(4, "feet"),
  11473. weight: math.unit(50, "lb"),
  11474. name: "Front",
  11475. image: {
  11476. source: "./media/characters/mal/front.svg",
  11477. extra: 785 / 724,
  11478. bottom: 0.07
  11479. }
  11480. },
  11481. },
  11482. [
  11483. {
  11484. name: "Micro",
  11485. height: math.unit(4, "inches")
  11486. },
  11487. {
  11488. name: "Normal",
  11489. height: math.unit(4, "feet"),
  11490. default: true
  11491. },
  11492. {
  11493. name: "Macro",
  11494. height: math.unit(200, "feet")
  11495. },
  11496. ]
  11497. ))
  11498. characterMakers.push(() => makeCharacter(
  11499. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11500. {
  11501. front: {
  11502. height: math.unit(6, "feet"),
  11503. weight: math.unit(150, "lb"),
  11504. name: "Front",
  11505. image: {
  11506. source: "./media/characters/jordan-deware/front.svg",
  11507. extra: 1191 / 1012
  11508. }
  11509. },
  11510. },
  11511. [
  11512. {
  11513. name: "Nano",
  11514. height: math.unit(0.01, "mm")
  11515. },
  11516. {
  11517. name: "Minimicro",
  11518. height: math.unit(1, "mm")
  11519. },
  11520. {
  11521. name: "Micro",
  11522. height: math.unit(0.5, "inches")
  11523. },
  11524. {
  11525. name: "Normal",
  11526. height: math.unit(4, "feet"),
  11527. default: true
  11528. },
  11529. {
  11530. name: "Minimacro",
  11531. height: math.unit(40, "meters")
  11532. },
  11533. {
  11534. name: "Small Macro",
  11535. height: math.unit(400, "meters")
  11536. },
  11537. {
  11538. name: "Macro",
  11539. height: math.unit(4, "miles")
  11540. },
  11541. {
  11542. name: "Megamacro",
  11543. height: math.unit(40, "miles")
  11544. },
  11545. {
  11546. name: "Megamacro+",
  11547. height: math.unit(400, "miles")
  11548. },
  11549. {
  11550. name: "Gigamacro",
  11551. height: math.unit(400000, "miles")
  11552. },
  11553. ]
  11554. ))
  11555. characterMakers.push(() => makeCharacter(
  11556. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11557. {
  11558. side: {
  11559. height: math.unit(6, "feet"),
  11560. weight: math.unit(150, "lb"),
  11561. name: "Side",
  11562. image: {
  11563. source: "./media/characters/kimiko/side.svg",
  11564. extra: 600 / 358
  11565. }
  11566. },
  11567. },
  11568. [
  11569. {
  11570. name: "Normal",
  11571. height: math.unit(15, "feet"),
  11572. default: true
  11573. },
  11574. {
  11575. name: "Macro",
  11576. height: math.unit(220, "feet")
  11577. },
  11578. {
  11579. name: "Macro+",
  11580. height: math.unit(1450, "feet")
  11581. },
  11582. {
  11583. name: "Megamacro",
  11584. height: math.unit(11500, "feet")
  11585. },
  11586. {
  11587. name: "Gigamacro",
  11588. height: math.unit(9500, "miles")
  11589. },
  11590. {
  11591. name: "Teramacro",
  11592. height: math.unit(2208005005, "miles")
  11593. },
  11594. {
  11595. name: "Examacro",
  11596. height: math.unit(2750, "parsecs")
  11597. },
  11598. {
  11599. name: "Zettamacro",
  11600. height: math.unit(101500, "parsecs")
  11601. },
  11602. ]
  11603. ))
  11604. characterMakers.push(() => makeCharacter(
  11605. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11606. {
  11607. front: {
  11608. height: math.unit(6, "feet"),
  11609. weight: math.unit(70, "kg"),
  11610. name: "Front",
  11611. image: {
  11612. source: "./media/characters/andrew-sleepy/front.svg"
  11613. }
  11614. },
  11615. side: {
  11616. height: math.unit(6, "feet"),
  11617. weight: math.unit(70, "kg"),
  11618. name: "Side",
  11619. image: {
  11620. source: "./media/characters/andrew-sleepy/side.svg"
  11621. }
  11622. },
  11623. },
  11624. [
  11625. {
  11626. name: "Micro",
  11627. height: math.unit(1, "mm"),
  11628. default: true
  11629. },
  11630. ]
  11631. ))
  11632. characterMakers.push(() => makeCharacter(
  11633. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11634. {
  11635. front: {
  11636. height: math.unit(6, "feet"),
  11637. weight: math.unit(150, "lb"),
  11638. name: "Front",
  11639. image: {
  11640. source: "./media/characters/judio/front.svg",
  11641. extra: 1258 / 1110
  11642. }
  11643. },
  11644. },
  11645. [
  11646. {
  11647. name: "Normal",
  11648. height: math.unit(5 + 6 / 12, "feet")
  11649. },
  11650. {
  11651. name: "Macro",
  11652. height: math.unit(1000, "feet"),
  11653. default: true
  11654. },
  11655. {
  11656. name: "Megamacro",
  11657. height: math.unit(10, "miles")
  11658. },
  11659. ]
  11660. ))
  11661. characterMakers.push(() => makeCharacter(
  11662. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11663. {
  11664. frontDressed: {
  11665. height: math.unit(6, "feet"),
  11666. weight: math.unit(68, "kg"),
  11667. name: "Front (Dressed)",
  11668. image: {
  11669. source: "./media/characters/nomaxice/front-dressed.svg",
  11670. extra: 1137/824,
  11671. bottom: 74/1211
  11672. }
  11673. },
  11674. frontShorts: {
  11675. height: math.unit(6, "feet"),
  11676. weight: math.unit(68, "kg"),
  11677. name: "Front (Shorts)",
  11678. image: {
  11679. source: "./media/characters/nomaxice/front-shorts.svg",
  11680. extra: 1137/824,
  11681. bottom: 74/1211
  11682. }
  11683. },
  11684. back: {
  11685. height: math.unit(6, "feet"),
  11686. weight: math.unit(68, "kg"),
  11687. name: "Back",
  11688. image: {
  11689. source: "./media/characters/nomaxice/back.svg",
  11690. extra: 822/786,
  11691. bottom: 39/861
  11692. }
  11693. },
  11694. hand: {
  11695. height: math.unit(0.565, "feet"),
  11696. name: "Hand",
  11697. image: {
  11698. source: "./media/characters/nomaxice/hand.svg"
  11699. }
  11700. },
  11701. foot: {
  11702. height: math.unit(1, "feet"),
  11703. name: "Foot",
  11704. image: {
  11705. source: "./media/characters/nomaxice/foot.svg"
  11706. }
  11707. },
  11708. },
  11709. [
  11710. {
  11711. name: "Micro",
  11712. height: math.unit(8, "cm")
  11713. },
  11714. {
  11715. name: "Norm",
  11716. height: math.unit(1.82, "m")
  11717. },
  11718. {
  11719. name: "Norm+",
  11720. height: math.unit(8.8, "feet"),
  11721. default: true
  11722. },
  11723. {
  11724. name: "Big",
  11725. height: math.unit(8, "meters")
  11726. },
  11727. {
  11728. name: "Macro",
  11729. height: math.unit(18, "meters")
  11730. },
  11731. {
  11732. name: "Macro+",
  11733. height: math.unit(88, "meters")
  11734. },
  11735. ]
  11736. ))
  11737. characterMakers.push(() => makeCharacter(
  11738. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11739. {
  11740. front: {
  11741. height: math.unit(12, "feet"),
  11742. weight: math.unit(1.5, "tons"),
  11743. name: "Front",
  11744. image: {
  11745. source: "./media/characters/dydros/front.svg",
  11746. extra: 863 / 800,
  11747. bottom: 0.015
  11748. }
  11749. },
  11750. back: {
  11751. height: math.unit(12, "feet"),
  11752. weight: math.unit(1.5, "tons"),
  11753. name: "Back",
  11754. image: {
  11755. source: "./media/characters/dydros/back.svg",
  11756. extra: 900 / 843,
  11757. bottom: 0.005
  11758. }
  11759. },
  11760. },
  11761. [
  11762. {
  11763. name: "Normal",
  11764. height: math.unit(12, "feet"),
  11765. default: true
  11766. },
  11767. ]
  11768. ))
  11769. characterMakers.push(() => makeCharacter(
  11770. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11771. {
  11772. front: {
  11773. height: math.unit(6, "feet"),
  11774. weight: math.unit(100, "kg"),
  11775. name: "Front",
  11776. image: {
  11777. source: "./media/characters/riggi/front.svg",
  11778. extra: 5787 / 5303
  11779. }
  11780. },
  11781. hyper: {
  11782. height: math.unit(6 * 5 / 3, "feet"),
  11783. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11784. name: "Hyper",
  11785. image: {
  11786. source: "./media/characters/riggi/hyper.svg",
  11787. extra: 3595 / 3485
  11788. }
  11789. },
  11790. },
  11791. [
  11792. {
  11793. name: "Small Macro",
  11794. height: math.unit(50, "feet")
  11795. },
  11796. {
  11797. name: "Default",
  11798. height: math.unit(200, "feet"),
  11799. default: true
  11800. },
  11801. {
  11802. name: "Loom",
  11803. height: math.unit(10000, "feet")
  11804. },
  11805. {
  11806. name: "Cruising Altitude",
  11807. height: math.unit(30000, "feet")
  11808. },
  11809. {
  11810. name: "Megamacro",
  11811. height: math.unit(100, "miles")
  11812. },
  11813. {
  11814. name: "Continent Sized",
  11815. height: math.unit(2800, "miles")
  11816. },
  11817. {
  11818. name: "Earth Sized",
  11819. height: math.unit(8000, "miles")
  11820. },
  11821. ]
  11822. ))
  11823. characterMakers.push(() => makeCharacter(
  11824. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11825. {
  11826. front: {
  11827. height: math.unit(6, "feet"),
  11828. weight: math.unit(250, "lb"),
  11829. name: "Front",
  11830. image: {
  11831. source: "./media/characters/alexi/front.svg",
  11832. extra: 3483 / 3291,
  11833. bottom: 0.04
  11834. }
  11835. },
  11836. back: {
  11837. height: math.unit(6, "feet"),
  11838. weight: math.unit(250, "lb"),
  11839. name: "Back",
  11840. image: {
  11841. source: "./media/characters/alexi/back.svg",
  11842. extra: 3533 / 3356,
  11843. bottom: 0.021
  11844. }
  11845. },
  11846. frontTransforming: {
  11847. height: math.unit(8.58, "feet"),
  11848. weight: math.unit(1300, "lb"),
  11849. name: "Transforming",
  11850. image: {
  11851. source: "./media/characters/alexi/front-transforming.svg",
  11852. extra: 437 / 409,
  11853. bottom: 19 / 458.66
  11854. }
  11855. },
  11856. frontTransformed: {
  11857. height: math.unit(12.5, "feet"),
  11858. weight: math.unit(4000, "lb"),
  11859. name: "Transformed",
  11860. image: {
  11861. source: "./media/characters/alexi/front-transformed.svg",
  11862. extra: 639 / 614,
  11863. bottom: 30.55 / 671
  11864. }
  11865. },
  11866. },
  11867. [
  11868. {
  11869. name: "Normal",
  11870. height: math.unit(14, "feet"),
  11871. default: true
  11872. },
  11873. {
  11874. name: "Minimacro",
  11875. height: math.unit(30, "meters")
  11876. },
  11877. {
  11878. name: "Macro",
  11879. height: math.unit(500, "meters")
  11880. },
  11881. {
  11882. name: "Megamacro",
  11883. height: math.unit(9000, "km")
  11884. },
  11885. {
  11886. name: "Teramacro",
  11887. height: math.unit(384000, "km")
  11888. },
  11889. ]
  11890. ))
  11891. characterMakers.push(() => makeCharacter(
  11892. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11893. {
  11894. front: {
  11895. height: math.unit(6, "feet"),
  11896. weight: math.unit(150, "lb"),
  11897. name: "Front",
  11898. image: {
  11899. source: "./media/characters/kayroo/front.svg",
  11900. extra: 1153 / 1038,
  11901. bottom: 0.06
  11902. }
  11903. },
  11904. foot: {
  11905. height: math.unit(6, "feet"),
  11906. weight: math.unit(150, "lb"),
  11907. name: "Foot",
  11908. image: {
  11909. source: "./media/characters/kayroo/foot.svg"
  11910. }
  11911. },
  11912. },
  11913. [
  11914. {
  11915. name: "Normal",
  11916. height: math.unit(8, "feet"),
  11917. default: true
  11918. },
  11919. {
  11920. name: "Minimacro",
  11921. height: math.unit(250, "feet")
  11922. },
  11923. {
  11924. name: "Macro",
  11925. height: math.unit(2800, "feet")
  11926. },
  11927. {
  11928. name: "Megamacro",
  11929. height: math.unit(5200, "feet")
  11930. },
  11931. {
  11932. name: "Gigamacro",
  11933. height: math.unit(27000, "feet")
  11934. },
  11935. {
  11936. name: "Omega",
  11937. height: math.unit(45000, "feet")
  11938. },
  11939. ]
  11940. ))
  11941. characterMakers.push(() => makeCharacter(
  11942. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11943. {
  11944. front: {
  11945. height: math.unit(18, "feet"),
  11946. weight: math.unit(5800, "lb"),
  11947. name: "Front",
  11948. image: {
  11949. source: "./media/characters/rhys/front.svg",
  11950. extra: 3386 / 3090,
  11951. bottom: 0.07
  11952. }
  11953. },
  11954. },
  11955. [
  11956. {
  11957. name: "Normal",
  11958. height: math.unit(18, "feet"),
  11959. default: true
  11960. },
  11961. {
  11962. name: "Working Size",
  11963. height: math.unit(200, "feet")
  11964. },
  11965. {
  11966. name: "Demolition Size",
  11967. height: math.unit(2000, "feet")
  11968. },
  11969. {
  11970. name: "Maximum Licensed Size",
  11971. height: math.unit(5, "miles")
  11972. },
  11973. {
  11974. name: "Maximum Observed Size",
  11975. height: math.unit(10, "yottameters")
  11976. },
  11977. ]
  11978. ))
  11979. characterMakers.push(() => makeCharacter(
  11980. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11981. {
  11982. front: {
  11983. height: math.unit(6, "feet"),
  11984. weight: math.unit(250, "lb"),
  11985. name: "Front",
  11986. image: {
  11987. source: "./media/characters/toto/front.svg",
  11988. extra: 527 / 479,
  11989. bottom: 0.05
  11990. }
  11991. },
  11992. },
  11993. [
  11994. {
  11995. name: "Micro",
  11996. height: math.unit(3, "feet")
  11997. },
  11998. {
  11999. name: "Normal",
  12000. height: math.unit(10, "feet")
  12001. },
  12002. {
  12003. name: "Macro",
  12004. height: math.unit(150, "feet"),
  12005. default: true
  12006. },
  12007. {
  12008. name: "Megamacro",
  12009. height: math.unit(1200, "feet")
  12010. },
  12011. ]
  12012. ))
  12013. characterMakers.push(() => makeCharacter(
  12014. { name: "King", species: ["lion"], tags: ["anthro"] },
  12015. {
  12016. back: {
  12017. height: math.unit(6, "feet"),
  12018. weight: math.unit(150, "lb"),
  12019. name: "Back",
  12020. image: {
  12021. source: "./media/characters/king/back.svg"
  12022. }
  12023. },
  12024. },
  12025. [
  12026. {
  12027. name: "Micro",
  12028. height: math.unit(2, "inches")
  12029. },
  12030. {
  12031. name: "Normal",
  12032. height: math.unit(8, "feet")
  12033. },
  12034. {
  12035. name: "Macro",
  12036. height: math.unit(200, "feet"),
  12037. default: true
  12038. },
  12039. {
  12040. name: "Megamacro",
  12041. height: math.unit(50, "miles")
  12042. },
  12043. ]
  12044. ))
  12045. characterMakers.push(() => makeCharacter(
  12046. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12047. {
  12048. front: {
  12049. height: math.unit(11, "feet"),
  12050. weight: math.unit(1400, "lb"),
  12051. name: "Front",
  12052. image: {
  12053. source: "./media/characters/cordite/front.svg",
  12054. extra: 1919/1827,
  12055. bottom: 40/1959
  12056. }
  12057. },
  12058. side: {
  12059. height: math.unit(11, "feet"),
  12060. weight: math.unit(1400, "lb"),
  12061. name: "Side",
  12062. image: {
  12063. source: "./media/characters/cordite/side.svg",
  12064. extra: 1908/1793,
  12065. bottom: 38/1946
  12066. }
  12067. },
  12068. back: {
  12069. height: math.unit(11, "feet"),
  12070. weight: math.unit(1400, "lb"),
  12071. name: "Back",
  12072. image: {
  12073. source: "./media/characters/cordite/back.svg",
  12074. extra: 1938/1837,
  12075. bottom: 10/1948
  12076. }
  12077. },
  12078. feral: {
  12079. height: math.unit(2, "feet"),
  12080. weight: math.unit(90, "lb"),
  12081. name: "Feral",
  12082. image: {
  12083. source: "./media/characters/cordite/feral.svg",
  12084. extra: 1260 / 755,
  12085. bottom: 0.05
  12086. }
  12087. },
  12088. },
  12089. [
  12090. {
  12091. name: "Normal",
  12092. height: math.unit(11, "feet"),
  12093. default: true
  12094. },
  12095. ]
  12096. ))
  12097. characterMakers.push(() => makeCharacter(
  12098. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12099. {
  12100. front: {
  12101. height: math.unit(6, "feet"),
  12102. weight: math.unit(150, "lb"),
  12103. name: "Front",
  12104. image: {
  12105. source: "./media/characters/pianostrong/front.svg",
  12106. extra: 6577 / 6254,
  12107. bottom: 0.02
  12108. }
  12109. },
  12110. side: {
  12111. height: math.unit(6, "feet"),
  12112. weight: math.unit(150, "lb"),
  12113. name: "Side",
  12114. image: {
  12115. source: "./media/characters/pianostrong/side.svg",
  12116. extra: 6106 / 5730
  12117. }
  12118. },
  12119. back: {
  12120. height: math.unit(6, "feet"),
  12121. weight: math.unit(150, "lb"),
  12122. name: "Back",
  12123. image: {
  12124. source: "./media/characters/pianostrong/back.svg",
  12125. extra: 6085 / 5733,
  12126. bottom: 0.01
  12127. }
  12128. },
  12129. },
  12130. [
  12131. {
  12132. name: "Macro",
  12133. height: math.unit(100, "feet")
  12134. },
  12135. {
  12136. name: "Macro+",
  12137. height: math.unit(300, "feet"),
  12138. default: true
  12139. },
  12140. {
  12141. name: "Macro++",
  12142. height: math.unit(1000, "feet")
  12143. },
  12144. ]
  12145. ))
  12146. characterMakers.push(() => makeCharacter(
  12147. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12148. {
  12149. front: {
  12150. height: math.unit(6, "feet"),
  12151. weight: math.unit(150, "lb"),
  12152. name: "Front",
  12153. image: {
  12154. source: "./media/characters/kona/front.svg",
  12155. extra: 2960 / 2629,
  12156. bottom: 0.005
  12157. }
  12158. },
  12159. },
  12160. [
  12161. {
  12162. name: "Normal",
  12163. height: math.unit(11 + 8 / 12, "feet")
  12164. },
  12165. {
  12166. name: "Macro",
  12167. height: math.unit(850, "feet"),
  12168. default: true
  12169. },
  12170. {
  12171. name: "Macro+",
  12172. height: math.unit(1.5, "km"),
  12173. default: true
  12174. },
  12175. {
  12176. name: "Megamacro",
  12177. height: math.unit(80, "miles")
  12178. },
  12179. {
  12180. name: "Gigamacro",
  12181. height: math.unit(3500, "miles")
  12182. },
  12183. ]
  12184. ))
  12185. characterMakers.push(() => makeCharacter(
  12186. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12187. {
  12188. side: {
  12189. height: math.unit(1.9, "meters"),
  12190. weight: math.unit(326, "kg"),
  12191. name: "Side",
  12192. image: {
  12193. source: "./media/characters/levi/side.svg",
  12194. extra: 1704 / 1334,
  12195. bottom: 0.02
  12196. }
  12197. },
  12198. },
  12199. [
  12200. {
  12201. name: "Normal",
  12202. height: math.unit(1.9, "meters"),
  12203. default: true
  12204. },
  12205. {
  12206. name: "Macro",
  12207. height: math.unit(20, "meters")
  12208. },
  12209. {
  12210. name: "Macro+",
  12211. height: math.unit(200, "meters")
  12212. },
  12213. {
  12214. name: "Megamacro",
  12215. height: math.unit(2, "km")
  12216. },
  12217. {
  12218. name: "Megamacro+",
  12219. height: math.unit(20, "km")
  12220. },
  12221. {
  12222. name: "Gigamacro",
  12223. height: math.unit(2500, "km")
  12224. },
  12225. {
  12226. name: "Gigamacro+",
  12227. height: math.unit(120000, "km")
  12228. },
  12229. {
  12230. name: "Teramacro",
  12231. height: math.unit(7.77e6, "km")
  12232. },
  12233. ]
  12234. ))
  12235. characterMakers.push(() => makeCharacter(
  12236. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12237. {
  12238. front: {
  12239. height: math.unit(6 + 4/12, "feet"),
  12240. weight: math.unit(190, "lb"),
  12241. name: "Front",
  12242. image: {
  12243. source: "./media/characters/bmc/front.svg",
  12244. extra: 1626/1472,
  12245. bottom: 79/1705
  12246. }
  12247. },
  12248. back: {
  12249. height: math.unit(6 + 4/12, "feet"),
  12250. weight: math.unit(190, "lb"),
  12251. name: "Back",
  12252. image: {
  12253. source: "./media/characters/bmc/back.svg",
  12254. extra: 1640/1479,
  12255. bottom: 45/1685
  12256. }
  12257. },
  12258. frontArmor: {
  12259. height: math.unit(6 + 4/12, "feet"),
  12260. weight: math.unit(190, "lb"),
  12261. name: "Front-armor",
  12262. image: {
  12263. source: "./media/characters/bmc/front-armor.svg",
  12264. extra: 1538/1468,
  12265. bottom: 79/1617
  12266. }
  12267. },
  12268. },
  12269. [
  12270. {
  12271. name: "Human-sized",
  12272. height: math.unit(6 + 4 / 12, "feet")
  12273. },
  12274. {
  12275. name: "Interactive Size",
  12276. height: math.unit(25, "feet")
  12277. },
  12278. {
  12279. name: "Small",
  12280. height: math.unit(250, "feet")
  12281. },
  12282. {
  12283. name: "Normal",
  12284. height: math.unit(1250, "feet"),
  12285. default: true
  12286. },
  12287. {
  12288. name: "Good Day",
  12289. height: math.unit(88, "miles")
  12290. },
  12291. {
  12292. name: "Largest Measured Size",
  12293. height: math.unit(105.960, "galaxies")
  12294. },
  12295. ]
  12296. ))
  12297. characterMakers.push(() => makeCharacter(
  12298. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12299. {
  12300. front: {
  12301. height: math.unit(20, "feet"),
  12302. weight: math.unit(2016, "kg"),
  12303. name: "Front",
  12304. image: {
  12305. source: "./media/characters/sven-the-kaiju/front.svg",
  12306. extra: 1277/1250,
  12307. bottom: 35/1312
  12308. }
  12309. },
  12310. mouth: {
  12311. height: math.unit(1.85, "feet"),
  12312. name: "Mouth",
  12313. image: {
  12314. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12315. }
  12316. },
  12317. },
  12318. [
  12319. {
  12320. name: "Fairy",
  12321. height: math.unit(6, "inches")
  12322. },
  12323. {
  12324. name: "Normal",
  12325. height: math.unit(20, "feet"),
  12326. default: true
  12327. },
  12328. {
  12329. name: "Rampage",
  12330. height: math.unit(200, "feet")
  12331. },
  12332. {
  12333. name: "Archfey Forest Guardian",
  12334. height: math.unit(1, "mile")
  12335. },
  12336. ]
  12337. ))
  12338. characterMakers.push(() => makeCharacter(
  12339. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12340. {
  12341. front: {
  12342. height: math.unit(4, "meters"),
  12343. weight: math.unit(2, "tons"),
  12344. name: "Front",
  12345. image: {
  12346. source: "./media/characters/marik/front.svg",
  12347. extra: 1057 / 1003,
  12348. bottom: 0.08
  12349. }
  12350. },
  12351. },
  12352. [
  12353. {
  12354. name: "Normal",
  12355. height: math.unit(4, "meters"),
  12356. default: true
  12357. },
  12358. {
  12359. name: "Macro",
  12360. height: math.unit(20, "meters")
  12361. },
  12362. {
  12363. name: "Megamacro",
  12364. height: math.unit(50, "km")
  12365. },
  12366. {
  12367. name: "Gigamacro",
  12368. height: math.unit(100, "km")
  12369. },
  12370. {
  12371. name: "Alpha Macro",
  12372. height: math.unit(7.88e7, "yottameters")
  12373. },
  12374. ]
  12375. ))
  12376. characterMakers.push(() => makeCharacter(
  12377. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12378. {
  12379. front: {
  12380. height: math.unit(6, "feet"),
  12381. weight: math.unit(110, "lb"),
  12382. name: "Front",
  12383. image: {
  12384. source: "./media/characters/mel/front.svg",
  12385. extra: 736 / 617,
  12386. bottom: 0.017
  12387. }
  12388. },
  12389. },
  12390. [
  12391. {
  12392. name: "Pico",
  12393. height: math.unit(3, "pm")
  12394. },
  12395. {
  12396. name: "Nano",
  12397. height: math.unit(3, "nm")
  12398. },
  12399. {
  12400. name: "Micro",
  12401. height: math.unit(0.3, "mm"),
  12402. default: true
  12403. },
  12404. {
  12405. name: "Micro+",
  12406. height: math.unit(3, "mm")
  12407. },
  12408. {
  12409. name: "Normal",
  12410. height: math.unit(5 + 10.5 / 12, "feet")
  12411. },
  12412. ]
  12413. ))
  12414. characterMakers.push(() => makeCharacter(
  12415. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12416. {
  12417. kaiju: {
  12418. height: math.unit(1.75, "meters"),
  12419. weight: math.unit(55, "kg"),
  12420. name: "Kaiju",
  12421. image: {
  12422. source: "./media/characters/lykonous/kaiju.svg",
  12423. extra: 1055 / 946,
  12424. bottom: 0.135
  12425. }
  12426. },
  12427. },
  12428. [
  12429. {
  12430. name: "Normal",
  12431. height: math.unit(2.5, "meters"),
  12432. default: true
  12433. },
  12434. {
  12435. name: "Kaiju Dragon",
  12436. height: math.unit(60, "meters")
  12437. },
  12438. {
  12439. name: "Mega Kaiju",
  12440. height: math.unit(120, "km")
  12441. },
  12442. {
  12443. name: "Giga Kaiju",
  12444. height: math.unit(200, "megameters")
  12445. },
  12446. {
  12447. name: "Terra Kaiju",
  12448. height: math.unit(400, "gigameters")
  12449. },
  12450. {
  12451. name: "Kaiju Dragon God",
  12452. height: math.unit(13000, "exaparsecs")
  12453. },
  12454. ]
  12455. ))
  12456. characterMakers.push(() => makeCharacter(
  12457. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12458. {
  12459. front: {
  12460. height: math.unit(6, "feet"),
  12461. weight: math.unit(150, "lb"),
  12462. name: "Front",
  12463. image: {
  12464. source: "./media/characters/blü/front.svg",
  12465. extra: 1883 / 1564,
  12466. bottom: 0.031
  12467. }
  12468. },
  12469. },
  12470. [
  12471. {
  12472. name: "Normal",
  12473. height: math.unit(13, "feet"),
  12474. default: true
  12475. },
  12476. {
  12477. name: "Big Boi",
  12478. height: math.unit(150, "meters")
  12479. },
  12480. {
  12481. name: "Mini Stomper",
  12482. height: math.unit(300, "meters")
  12483. },
  12484. {
  12485. name: "Macro",
  12486. height: math.unit(1000, "meters")
  12487. },
  12488. {
  12489. name: "Megamacro",
  12490. height: math.unit(11000, "meters")
  12491. },
  12492. {
  12493. name: "Gigamacro",
  12494. height: math.unit(11000, "km")
  12495. },
  12496. {
  12497. name: "Teramacro",
  12498. height: math.unit(420000, "km")
  12499. },
  12500. {
  12501. name: "Examacro",
  12502. height: math.unit(120, "parsecs")
  12503. },
  12504. {
  12505. name: "God Tho",
  12506. height: math.unit(98000000000, "parsecs")
  12507. },
  12508. ]
  12509. ))
  12510. characterMakers.push(() => makeCharacter(
  12511. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12512. {
  12513. taurFront: {
  12514. height: math.unit(6, "feet"),
  12515. weight: math.unit(200, "lb"),
  12516. name: "Taur (Front)",
  12517. image: {
  12518. source: "./media/characters/scales/taur-front.svg",
  12519. extra: 1,
  12520. bottom: 0.05
  12521. }
  12522. },
  12523. taurBack: {
  12524. height: math.unit(6, "feet"),
  12525. weight: math.unit(200, "lb"),
  12526. name: "Taur (Back)",
  12527. image: {
  12528. source: "./media/characters/scales/taur-back.svg",
  12529. extra: 1,
  12530. bottom: 0.08
  12531. }
  12532. },
  12533. anthro: {
  12534. height: math.unit(6 * 7 / 12, "feet"),
  12535. weight: math.unit(100, "lb"),
  12536. name: "Anthro",
  12537. image: {
  12538. source: "./media/characters/scales/anthro.svg",
  12539. extra: 1,
  12540. bottom: 0.06
  12541. }
  12542. },
  12543. },
  12544. [
  12545. {
  12546. name: "Normal",
  12547. height: math.unit(12, "feet"),
  12548. default: true
  12549. },
  12550. ]
  12551. ))
  12552. characterMakers.push(() => makeCharacter(
  12553. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12554. {
  12555. front: {
  12556. height: math.unit(6, "feet"),
  12557. weight: math.unit(150, "lb"),
  12558. name: "Front",
  12559. image: {
  12560. source: "./media/characters/koragos/front.svg",
  12561. extra: 841 / 794,
  12562. bottom: 0.035
  12563. }
  12564. },
  12565. back: {
  12566. height: math.unit(6, "feet"),
  12567. weight: math.unit(150, "lb"),
  12568. name: "Back",
  12569. image: {
  12570. source: "./media/characters/koragos/back.svg",
  12571. extra: 841 / 810,
  12572. bottom: 0.022
  12573. }
  12574. },
  12575. },
  12576. [
  12577. {
  12578. name: "Normal",
  12579. height: math.unit(6 + 11 / 12, "feet"),
  12580. default: true
  12581. },
  12582. {
  12583. name: "Macro",
  12584. height: math.unit(490, "feet")
  12585. },
  12586. {
  12587. name: "Megamacro",
  12588. height: math.unit(10, "miles")
  12589. },
  12590. {
  12591. name: "Gigamacro",
  12592. height: math.unit(50, "miles")
  12593. },
  12594. ]
  12595. ))
  12596. characterMakers.push(() => makeCharacter(
  12597. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12598. {
  12599. front: {
  12600. height: math.unit(6, "feet"),
  12601. weight: math.unit(250, "lb"),
  12602. name: "Front",
  12603. image: {
  12604. source: "./media/characters/xylrem/front.svg",
  12605. extra: 3323 / 3050,
  12606. bottom: 0.065
  12607. }
  12608. },
  12609. },
  12610. [
  12611. {
  12612. name: "Micro",
  12613. height: math.unit(4, "feet")
  12614. },
  12615. {
  12616. name: "Normal",
  12617. height: math.unit(16, "feet"),
  12618. default: true
  12619. },
  12620. {
  12621. name: "Macro",
  12622. height: math.unit(2720, "feet")
  12623. },
  12624. {
  12625. name: "Megamacro",
  12626. height: math.unit(25000, "miles")
  12627. },
  12628. ]
  12629. ))
  12630. characterMakers.push(() => makeCharacter(
  12631. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12632. {
  12633. front: {
  12634. height: math.unit(8, "feet"),
  12635. weight: math.unit(250, "kg"),
  12636. name: "Front",
  12637. image: {
  12638. source: "./media/characters/ikideru/front.svg",
  12639. extra: 930 / 870,
  12640. bottom: 0.087
  12641. }
  12642. },
  12643. back: {
  12644. height: math.unit(8, "feet"),
  12645. weight: math.unit(250, "kg"),
  12646. name: "Back",
  12647. image: {
  12648. source: "./media/characters/ikideru/back.svg",
  12649. extra: 919 / 852,
  12650. bottom: 0.055
  12651. }
  12652. },
  12653. },
  12654. [
  12655. {
  12656. name: "Rare",
  12657. height: math.unit(8, "feet"),
  12658. default: true
  12659. },
  12660. {
  12661. name: "Playful Loom",
  12662. height: math.unit(80, "feet")
  12663. },
  12664. {
  12665. name: "City Leaner",
  12666. height: math.unit(230, "feet")
  12667. },
  12668. {
  12669. name: "Megamacro",
  12670. height: math.unit(2500, "feet")
  12671. },
  12672. {
  12673. name: "Gigamacro",
  12674. height: math.unit(26400, "feet")
  12675. },
  12676. {
  12677. name: "Tectonic Shifter",
  12678. height: math.unit(1.7, "megameters")
  12679. },
  12680. {
  12681. name: "Planet Carer",
  12682. height: math.unit(21, "megameters")
  12683. },
  12684. {
  12685. name: "God",
  12686. height: math.unit(11157.22, "parsecs")
  12687. },
  12688. ]
  12689. ))
  12690. characterMakers.push(() => makeCharacter(
  12691. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12692. {
  12693. front: {
  12694. height: math.unit(6, "feet"),
  12695. weight: math.unit(120, "lb"),
  12696. name: "Front",
  12697. image: {
  12698. source: "./media/characters/neo/front.svg"
  12699. }
  12700. },
  12701. },
  12702. [
  12703. {
  12704. name: "Micro",
  12705. height: math.unit(2, "inches"),
  12706. default: true
  12707. },
  12708. {
  12709. name: "Human Size",
  12710. height: math.unit(5 + 8 / 12, "feet")
  12711. },
  12712. ]
  12713. ))
  12714. characterMakers.push(() => makeCharacter(
  12715. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12716. {
  12717. front: {
  12718. height: math.unit(13 + 10 / 12, "feet"),
  12719. weight: math.unit(5320, "lb"),
  12720. name: "Front",
  12721. image: {
  12722. source: "./media/characters/chauncey-chantz/front.svg",
  12723. extra: 1587 / 1435,
  12724. bottom: 0.02
  12725. }
  12726. },
  12727. },
  12728. [
  12729. {
  12730. name: "Normal",
  12731. height: math.unit(13 + 10 / 12, "feet"),
  12732. default: true
  12733. },
  12734. {
  12735. name: "Macro",
  12736. height: math.unit(45, "feet")
  12737. },
  12738. {
  12739. name: "Megamacro",
  12740. height: math.unit(250, "miles")
  12741. },
  12742. {
  12743. name: "Planetary",
  12744. height: math.unit(10000, "miles")
  12745. },
  12746. {
  12747. name: "Galactic",
  12748. height: math.unit(40000, "parsecs")
  12749. },
  12750. {
  12751. name: "Universal",
  12752. height: math.unit(1, "yottameter")
  12753. },
  12754. ]
  12755. ))
  12756. characterMakers.push(() => makeCharacter(
  12757. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12758. {
  12759. front: {
  12760. height: math.unit(6, "feet"),
  12761. weight: math.unit(150, "lb"),
  12762. name: "Front",
  12763. image: {
  12764. source: "./media/characters/epifox/front.svg",
  12765. extra: 1,
  12766. bottom: 0.075
  12767. }
  12768. },
  12769. },
  12770. [
  12771. {
  12772. name: "Micro",
  12773. height: math.unit(6, "inches")
  12774. },
  12775. {
  12776. name: "Normal",
  12777. height: math.unit(12, "feet"),
  12778. default: true
  12779. },
  12780. {
  12781. name: "Macro",
  12782. height: math.unit(3810, "feet")
  12783. },
  12784. {
  12785. name: "Megamacro",
  12786. height: math.unit(500, "miles")
  12787. },
  12788. ]
  12789. ))
  12790. characterMakers.push(() => makeCharacter(
  12791. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12792. {
  12793. front: {
  12794. height: math.unit(1.8796, "m"),
  12795. weight: math.unit(230, "lb"),
  12796. name: "Front",
  12797. image: {
  12798. source: "./media/characters/colin-t/front.svg",
  12799. extra: 1272 / 1193,
  12800. bottom: 0.07
  12801. }
  12802. },
  12803. },
  12804. [
  12805. {
  12806. name: "Micro",
  12807. height: math.unit(0.571, "meters")
  12808. },
  12809. {
  12810. name: "Normal",
  12811. height: math.unit(1.8796, "meters"),
  12812. default: true
  12813. },
  12814. {
  12815. name: "Tall",
  12816. height: math.unit(4, "meters")
  12817. },
  12818. {
  12819. name: "Macro",
  12820. height: math.unit(67.241, "meters")
  12821. },
  12822. {
  12823. name: "Megamacro",
  12824. height: math.unit(371.856, "meters")
  12825. },
  12826. {
  12827. name: "Planetary",
  12828. height: math.unit(12631.5689, "km")
  12829. },
  12830. ]
  12831. ))
  12832. characterMakers.push(() => makeCharacter(
  12833. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12834. {
  12835. front: {
  12836. height: math.unit(1.85, "meters"),
  12837. weight: math.unit(80, "kg"),
  12838. name: "Front",
  12839. image: {
  12840. source: "./media/characters/matvei/front.svg",
  12841. extra: 614 / 594,
  12842. bottom: 0.01
  12843. }
  12844. },
  12845. },
  12846. [
  12847. {
  12848. name: "Normal",
  12849. height: math.unit(1.85, "meters"),
  12850. default: true
  12851. },
  12852. ]
  12853. ))
  12854. characterMakers.push(() => makeCharacter(
  12855. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12856. {
  12857. front: {
  12858. height: math.unit(5 + 9 / 12, "feet"),
  12859. weight: math.unit(70, "lb"),
  12860. name: "Front",
  12861. image: {
  12862. source: "./media/characters/quincy/front.svg",
  12863. extra: 3041 / 2751
  12864. }
  12865. },
  12866. back: {
  12867. height: math.unit(5 + 9 / 12, "feet"),
  12868. weight: math.unit(70, "lb"),
  12869. name: "Back",
  12870. image: {
  12871. source: "./media/characters/quincy/back.svg",
  12872. extra: 3041 / 2751
  12873. }
  12874. },
  12875. flying: {
  12876. height: math.unit(5 + 4 / 12, "feet"),
  12877. weight: math.unit(70, "lb"),
  12878. name: "Flying",
  12879. image: {
  12880. source: "./media/characters/quincy/flying.svg",
  12881. extra: 1044 / 930
  12882. }
  12883. },
  12884. },
  12885. [
  12886. {
  12887. name: "Micro",
  12888. height: math.unit(3, "cm")
  12889. },
  12890. {
  12891. name: "Normal",
  12892. height: math.unit(5 + 9 / 12, "feet")
  12893. },
  12894. {
  12895. name: "Macro",
  12896. height: math.unit(200, "meters"),
  12897. default: true
  12898. },
  12899. {
  12900. name: "Megamacro",
  12901. height: math.unit(1000, "meters")
  12902. },
  12903. ]
  12904. ))
  12905. characterMakers.push(() => makeCharacter(
  12906. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12907. {
  12908. front: {
  12909. height: math.unit(3 + 11/12, "feet"),
  12910. weight: math.unit(50, "lb"),
  12911. name: "Front",
  12912. image: {
  12913. source: "./media/characters/vanrel/front.svg",
  12914. extra: 1104/949,
  12915. bottom: 52/1156
  12916. }
  12917. },
  12918. back: {
  12919. height: math.unit(3 + 11/12, "feet"),
  12920. weight: math.unit(50, "lb"),
  12921. name: "Back",
  12922. image: {
  12923. source: "./media/characters/vanrel/back.svg",
  12924. extra: 1119/976,
  12925. bottom: 37/1156
  12926. }
  12927. },
  12928. tome: {
  12929. height: math.unit(1.35, "feet"),
  12930. weight: math.unit(10, "lb"),
  12931. name: "Vanrel's Tome",
  12932. rename: true,
  12933. image: {
  12934. source: "./media/characters/vanrel/tome.svg"
  12935. }
  12936. },
  12937. beans: {
  12938. height: math.unit(0.89, "feet"),
  12939. name: "Beans",
  12940. image: {
  12941. source: "./media/characters/vanrel/beans.svg"
  12942. }
  12943. },
  12944. },
  12945. [
  12946. {
  12947. name: "Normal",
  12948. height: math.unit(3 + 11/12, "feet"),
  12949. default: true
  12950. },
  12951. ]
  12952. ))
  12953. characterMakers.push(() => makeCharacter(
  12954. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12955. {
  12956. front: {
  12957. height: math.unit(7 + 5 / 12, "feet"),
  12958. name: "Front",
  12959. image: {
  12960. source: "./media/characters/kuiper-vanrel/front.svg",
  12961. extra: 1219/1169,
  12962. bottom: 69/1288
  12963. }
  12964. },
  12965. back: {
  12966. height: math.unit(7 + 5 / 12, "feet"),
  12967. name: "Back",
  12968. image: {
  12969. source: "./media/characters/kuiper-vanrel/back.svg",
  12970. extra: 1236/1193,
  12971. bottom: 27/1263
  12972. }
  12973. },
  12974. foot: {
  12975. height: math.unit(0.55, "meters"),
  12976. name: "Foot",
  12977. image: {
  12978. source: "./media/characters/kuiper-vanrel/foot.svg",
  12979. }
  12980. },
  12981. battle: {
  12982. height: math.unit(6.824, "feet"),
  12983. name: "Battle",
  12984. image: {
  12985. source: "./media/characters/kuiper-vanrel/battle.svg",
  12986. extra: 1466 / 1327,
  12987. bottom: 29 / 1492.5
  12988. }
  12989. },
  12990. meerkui: {
  12991. height: math.unit(18, "inches"),
  12992. name: "Meerkui",
  12993. image: {
  12994. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12995. extra: 1354/1289,
  12996. bottom: 69/1423
  12997. }
  12998. },
  12999. },
  13000. [
  13001. {
  13002. name: "Normal",
  13003. height: math.unit(7 + 5 / 12, "feet"),
  13004. default: true
  13005. },
  13006. ]
  13007. ))
  13008. characterMakers.push(() => makeCharacter(
  13009. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13010. {
  13011. front: {
  13012. height: math.unit(8 + 5 / 12, "feet"),
  13013. name: "Front",
  13014. image: {
  13015. source: "./media/characters/keset-vanrel/front.svg",
  13016. extra: 1231/1148,
  13017. bottom: 82/1313
  13018. }
  13019. },
  13020. back: {
  13021. height: math.unit(8 + 5 / 12, "feet"),
  13022. name: "Back",
  13023. image: {
  13024. source: "./media/characters/keset-vanrel/back.svg",
  13025. extra: 1240/1174,
  13026. bottom: 33/1273
  13027. }
  13028. },
  13029. hand: {
  13030. height: math.unit(0.6, "meters"),
  13031. name: "Hand",
  13032. image: {
  13033. source: "./media/characters/keset-vanrel/hand.svg"
  13034. }
  13035. },
  13036. foot: {
  13037. height: math.unit(0.94978, "meters"),
  13038. name: "Foot",
  13039. image: {
  13040. source: "./media/characters/keset-vanrel/foot.svg"
  13041. }
  13042. },
  13043. battle: {
  13044. height: math.unit(7.408, "feet"),
  13045. name: "Battle",
  13046. image: {
  13047. source: "./media/characters/keset-vanrel/battle.svg",
  13048. extra: 1890 / 1386,
  13049. bottom: 73.28 / 1970
  13050. }
  13051. },
  13052. },
  13053. [
  13054. {
  13055. name: "Normal",
  13056. height: math.unit(8 + 5 / 12, "feet"),
  13057. default: true
  13058. },
  13059. ]
  13060. ))
  13061. characterMakers.push(() => makeCharacter(
  13062. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13063. {
  13064. front: {
  13065. height: math.unit(6, "feet"),
  13066. weight: math.unit(150, "lb"),
  13067. name: "Front",
  13068. image: {
  13069. source: "./media/characters/neos/front.svg",
  13070. extra: 1696 / 992,
  13071. bottom: 0.14
  13072. }
  13073. },
  13074. },
  13075. [
  13076. {
  13077. name: "Normal",
  13078. height: math.unit(54, "cm"),
  13079. default: true
  13080. },
  13081. {
  13082. name: "Macro",
  13083. height: math.unit(100, "m")
  13084. },
  13085. {
  13086. name: "Megamacro",
  13087. height: math.unit(10, "km")
  13088. },
  13089. {
  13090. name: "Megamacro+",
  13091. height: math.unit(100, "km")
  13092. },
  13093. {
  13094. name: "Gigamacro",
  13095. height: math.unit(100, "Mm")
  13096. },
  13097. {
  13098. name: "Teramacro",
  13099. height: math.unit(100, "Gm")
  13100. },
  13101. {
  13102. name: "Examacro",
  13103. height: math.unit(100, "Em")
  13104. },
  13105. {
  13106. name: "Godly",
  13107. height: math.unit(10000, "Ym")
  13108. },
  13109. {
  13110. name: "Beyond Godly",
  13111. height: math.unit(25, "multiverses")
  13112. },
  13113. ]
  13114. ))
  13115. characterMakers.push(() => makeCharacter(
  13116. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13117. {
  13118. feminine: {
  13119. height: math.unit(5, "feet"),
  13120. weight: math.unit(100, "lb"),
  13121. name: "Feminine",
  13122. image: {
  13123. source: "./media/characters/sammy-mouse/feminine.svg",
  13124. extra: 2526 / 2425,
  13125. bottom: 0.123
  13126. }
  13127. },
  13128. masculine: {
  13129. height: math.unit(5, "feet"),
  13130. weight: math.unit(100, "lb"),
  13131. name: "Masculine",
  13132. image: {
  13133. source: "./media/characters/sammy-mouse/masculine.svg",
  13134. extra: 2526 / 2425,
  13135. bottom: 0.123
  13136. }
  13137. },
  13138. },
  13139. [
  13140. {
  13141. name: "Micro",
  13142. height: math.unit(5, "inches")
  13143. },
  13144. {
  13145. name: "Normal",
  13146. height: math.unit(5, "feet"),
  13147. default: true
  13148. },
  13149. {
  13150. name: "Macro",
  13151. height: math.unit(60, "feet")
  13152. },
  13153. ]
  13154. ))
  13155. characterMakers.push(() => makeCharacter(
  13156. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13157. {
  13158. front: {
  13159. height: math.unit(4, "feet"),
  13160. weight: math.unit(50, "lb"),
  13161. name: "Front",
  13162. image: {
  13163. source: "./media/characters/kole/front.svg",
  13164. extra: 1423 / 1303,
  13165. bottom: 0.025
  13166. }
  13167. },
  13168. back: {
  13169. height: math.unit(4, "feet"),
  13170. weight: math.unit(50, "lb"),
  13171. name: "Back",
  13172. image: {
  13173. source: "./media/characters/kole/back.svg",
  13174. extra: 1426 / 1280,
  13175. bottom: 0.02
  13176. }
  13177. },
  13178. },
  13179. [
  13180. {
  13181. name: "Normal",
  13182. height: math.unit(4, "feet"),
  13183. default: true
  13184. },
  13185. ]
  13186. ))
  13187. characterMakers.push(() => makeCharacter(
  13188. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13189. {
  13190. front: {
  13191. height: math.unit(2.5, "feet"),
  13192. weight: math.unit(32, "lb"),
  13193. name: "Front",
  13194. image: {
  13195. source: "./media/characters/rufran/front.svg",
  13196. extra: 1313/885,
  13197. bottom: 94/1407
  13198. }
  13199. },
  13200. side: {
  13201. height: math.unit(2.5, "feet"),
  13202. weight: math.unit(32, "lb"),
  13203. name: "Side",
  13204. image: {
  13205. source: "./media/characters/rufran/side.svg",
  13206. extra: 1109/852,
  13207. bottom: 118/1227
  13208. }
  13209. },
  13210. back: {
  13211. height: math.unit(2.5, "feet"),
  13212. weight: math.unit(32, "lb"),
  13213. name: "Back",
  13214. image: {
  13215. source: "./media/characters/rufran/back.svg",
  13216. extra: 1280/878,
  13217. bottom: 131/1411
  13218. }
  13219. },
  13220. mouth: {
  13221. height: math.unit(1.13, "feet"),
  13222. name: "Mouth",
  13223. image: {
  13224. source: "./media/characters/rufran/mouth.svg"
  13225. }
  13226. },
  13227. foot: {
  13228. height: math.unit(1.33, "feet"),
  13229. name: "Foot",
  13230. image: {
  13231. source: "./media/characters/rufran/foot.svg"
  13232. }
  13233. },
  13234. koboldFront: {
  13235. height: math.unit(2 + 6 / 12, "feet"),
  13236. weight: math.unit(20, "lb"),
  13237. name: "Front (Kobold)",
  13238. image: {
  13239. source: "./media/characters/rufran/kobold-front.svg",
  13240. extra: 2041 / 1839,
  13241. bottom: 0.055
  13242. }
  13243. },
  13244. koboldBack: {
  13245. height: math.unit(2 + 6 / 12, "feet"),
  13246. weight: math.unit(20, "lb"),
  13247. name: "Back (Kobold)",
  13248. image: {
  13249. source: "./media/characters/rufran/kobold-back.svg",
  13250. extra: 2054 / 1839,
  13251. bottom: 0.01
  13252. }
  13253. },
  13254. koboldHand: {
  13255. height: math.unit(0.2166, "meters"),
  13256. name: "Hand (Kobold)",
  13257. image: {
  13258. source: "./media/characters/rufran/kobold-hand.svg"
  13259. }
  13260. },
  13261. koboldFoot: {
  13262. height: math.unit(0.185, "meters"),
  13263. name: "Foot (Kobold)",
  13264. image: {
  13265. source: "./media/characters/rufran/kobold-foot.svg"
  13266. }
  13267. },
  13268. },
  13269. [
  13270. {
  13271. name: "Micro",
  13272. height: math.unit(1, "inch")
  13273. },
  13274. {
  13275. name: "Normal",
  13276. height: math.unit(2 + 6 / 12, "feet"),
  13277. default: true
  13278. },
  13279. {
  13280. name: "Big",
  13281. height: math.unit(60, "feet")
  13282. },
  13283. {
  13284. name: "Macro",
  13285. height: math.unit(325, "feet")
  13286. },
  13287. ]
  13288. ))
  13289. characterMakers.push(() => makeCharacter(
  13290. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13291. {
  13292. front: {
  13293. height: math.unit(0.3, "meters"),
  13294. weight: math.unit(3.5, "kg"),
  13295. name: "Front",
  13296. image: {
  13297. source: "./media/characters/chip/front.svg",
  13298. extra: 748 / 674
  13299. }
  13300. },
  13301. },
  13302. [
  13303. {
  13304. name: "Micro",
  13305. height: math.unit(1, "inch"),
  13306. default: true
  13307. },
  13308. ]
  13309. ))
  13310. characterMakers.push(() => makeCharacter(
  13311. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13312. {
  13313. side: {
  13314. height: math.unit(2.3, "meters"),
  13315. weight: math.unit(3500, "lb"),
  13316. name: "Side",
  13317. image: {
  13318. source: "./media/characters/torvid/side.svg",
  13319. extra: 1972 / 722,
  13320. bottom: 0.035
  13321. }
  13322. },
  13323. },
  13324. [
  13325. {
  13326. name: "Normal",
  13327. height: math.unit(2.3, "meters"),
  13328. default: true
  13329. },
  13330. ]
  13331. ))
  13332. characterMakers.push(() => makeCharacter(
  13333. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13334. {
  13335. front: {
  13336. height: math.unit(2, "meters"),
  13337. weight: math.unit(150.5, "kg"),
  13338. name: "Front",
  13339. image: {
  13340. source: "./media/characters/susan/front.svg",
  13341. extra: 693 / 635,
  13342. bottom: 0.05
  13343. }
  13344. },
  13345. },
  13346. [
  13347. {
  13348. name: "Megamacro",
  13349. height: math.unit(505, "miles"),
  13350. default: true
  13351. },
  13352. ]
  13353. ))
  13354. characterMakers.push(() => makeCharacter(
  13355. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13356. {
  13357. front: {
  13358. height: math.unit(6, "feet"),
  13359. weight: math.unit(150, "lb"),
  13360. name: "Front",
  13361. image: {
  13362. source: "./media/characters/raindrops/front.svg",
  13363. extra: 2655 / 2461,
  13364. bottom: 49 / 2705
  13365. }
  13366. },
  13367. back: {
  13368. height: math.unit(6, "feet"),
  13369. weight: math.unit(150, "lb"),
  13370. name: "Back",
  13371. image: {
  13372. source: "./media/characters/raindrops/back.svg",
  13373. extra: 2574 / 2400,
  13374. bottom: 65 / 2634
  13375. }
  13376. },
  13377. },
  13378. [
  13379. {
  13380. name: "Micro",
  13381. height: math.unit(6, "inches")
  13382. },
  13383. {
  13384. name: "Normal",
  13385. height: math.unit(6 + 2 / 12, "feet")
  13386. },
  13387. {
  13388. name: "Macro",
  13389. height: math.unit(131, "feet"),
  13390. default: true
  13391. },
  13392. {
  13393. name: "Megamacro",
  13394. height: math.unit(15, "miles")
  13395. },
  13396. {
  13397. name: "Gigamacro",
  13398. height: math.unit(4000, "miles")
  13399. },
  13400. {
  13401. name: "Teramacro",
  13402. height: math.unit(315000, "miles")
  13403. },
  13404. ]
  13405. ))
  13406. characterMakers.push(() => makeCharacter(
  13407. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13408. {
  13409. front: {
  13410. height: math.unit(2.794, "meters"),
  13411. weight: math.unit(325, "kg"),
  13412. name: "Front",
  13413. image: {
  13414. source: "./media/characters/tezwa/front.svg",
  13415. extra: 2083 / 1906,
  13416. bottom: 0.031
  13417. }
  13418. },
  13419. foot: {
  13420. height: math.unit(0.687, "meters"),
  13421. name: "Foot",
  13422. image: {
  13423. source: "./media/characters/tezwa/foot.svg"
  13424. }
  13425. },
  13426. },
  13427. [
  13428. {
  13429. name: "Normal",
  13430. height: math.unit(9 + 2 / 12, "feet"),
  13431. default: true
  13432. },
  13433. ]
  13434. ))
  13435. characterMakers.push(() => makeCharacter(
  13436. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13437. {
  13438. front: {
  13439. height: math.unit(58, "feet"),
  13440. weight: math.unit(89000, "lb"),
  13441. name: "Front",
  13442. image: {
  13443. source: "./media/characters/typhus/front.svg",
  13444. extra: 816 / 800,
  13445. bottom: 0.065
  13446. }
  13447. },
  13448. },
  13449. [
  13450. {
  13451. name: "Macro",
  13452. height: math.unit(58, "feet"),
  13453. default: true
  13454. },
  13455. ]
  13456. ))
  13457. characterMakers.push(() => makeCharacter(
  13458. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13459. {
  13460. front: {
  13461. height: math.unit(12, "feet"),
  13462. weight: math.unit(6, "tonnes"),
  13463. name: "Front",
  13464. image: {
  13465. source: "./media/characters/lyra-von-wulf/front.svg",
  13466. extra: 1,
  13467. bottom: 0.10
  13468. }
  13469. },
  13470. frontMecha: {
  13471. height: math.unit(12, "feet"),
  13472. weight: math.unit(12, "tonnes"),
  13473. name: "Front (Mecha)",
  13474. image: {
  13475. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13476. extra: 1,
  13477. bottom: 0.042
  13478. }
  13479. },
  13480. maw: {
  13481. height: math.unit(2.2, "feet"),
  13482. name: "Maw",
  13483. image: {
  13484. source: "./media/characters/lyra-von-wulf/maw.svg"
  13485. }
  13486. },
  13487. },
  13488. [
  13489. {
  13490. name: "Normal",
  13491. height: math.unit(12, "feet"),
  13492. default: true
  13493. },
  13494. {
  13495. name: "Classic",
  13496. height: math.unit(50, "feet")
  13497. },
  13498. {
  13499. name: "Macro",
  13500. height: math.unit(500, "feet")
  13501. },
  13502. {
  13503. name: "Megamacro",
  13504. height: math.unit(1, "mile")
  13505. },
  13506. {
  13507. name: "Gigamacro",
  13508. height: math.unit(400, "miles")
  13509. },
  13510. {
  13511. name: "Teramacro",
  13512. height: math.unit(22000, "miles")
  13513. },
  13514. {
  13515. name: "Solarmacro",
  13516. height: math.unit(8600000, "miles")
  13517. },
  13518. {
  13519. name: "Galactic",
  13520. height: math.unit(1057000, "lightyears")
  13521. },
  13522. ]
  13523. ))
  13524. characterMakers.push(() => makeCharacter(
  13525. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13526. {
  13527. front: {
  13528. height: math.unit(6 + 10 / 12, "feet"),
  13529. weight: math.unit(150, "lb"),
  13530. name: "Front",
  13531. image: {
  13532. source: "./media/characters/dixon/front.svg",
  13533. extra: 3361 / 3209,
  13534. bottom: 0.01
  13535. }
  13536. },
  13537. },
  13538. [
  13539. {
  13540. name: "Normal",
  13541. height: math.unit(6 + 10 / 12, "feet"),
  13542. default: true
  13543. },
  13544. {
  13545. name: "Big",
  13546. height: math.unit(12, "meters")
  13547. },
  13548. {
  13549. name: "Macro",
  13550. height: math.unit(500, "meters")
  13551. },
  13552. {
  13553. name: "Megamacro",
  13554. height: math.unit(2, "km")
  13555. },
  13556. ]
  13557. ))
  13558. characterMakers.push(() => makeCharacter(
  13559. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13560. {
  13561. front: {
  13562. height: math.unit(185, "cm"),
  13563. weight: math.unit(68, "kg"),
  13564. name: "Front",
  13565. image: {
  13566. source: "./media/characters/kauko/front.svg",
  13567. extra: 1455 / 1421,
  13568. bottom: 0.03
  13569. }
  13570. },
  13571. back: {
  13572. height: math.unit(185, "cm"),
  13573. weight: math.unit(68, "kg"),
  13574. name: "Back",
  13575. image: {
  13576. source: "./media/characters/kauko/back.svg",
  13577. extra: 1455 / 1421,
  13578. bottom: 0.004
  13579. }
  13580. },
  13581. },
  13582. [
  13583. {
  13584. name: "Normal",
  13585. height: math.unit(185, "cm"),
  13586. default: true
  13587. },
  13588. ]
  13589. ))
  13590. characterMakers.push(() => makeCharacter(
  13591. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13592. {
  13593. front: {
  13594. height: math.unit(6, "feet"),
  13595. weight: math.unit(150, "kg"),
  13596. name: "Front",
  13597. image: {
  13598. source: "./media/characters/varg/front.svg",
  13599. extra: 1108 / 1018,
  13600. bottom: 0.0375
  13601. }
  13602. },
  13603. },
  13604. [
  13605. {
  13606. name: "Normal",
  13607. height: math.unit(5, "meters")
  13608. },
  13609. {
  13610. name: "Macro",
  13611. height: math.unit(200, "meters")
  13612. },
  13613. {
  13614. name: "Megamacro",
  13615. height: math.unit(20, "kilometers")
  13616. },
  13617. {
  13618. name: "True Size",
  13619. height: math.unit(211, "km"),
  13620. default: true
  13621. },
  13622. {
  13623. name: "Gigamacro",
  13624. height: math.unit(1000, "km")
  13625. },
  13626. {
  13627. name: "Gigamacro+",
  13628. height: math.unit(8000, "km")
  13629. },
  13630. {
  13631. name: "Teramacro",
  13632. height: math.unit(1000000, "km")
  13633. },
  13634. ]
  13635. ))
  13636. characterMakers.push(() => makeCharacter(
  13637. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13638. {
  13639. front: {
  13640. height: math.unit(7 + 7 / 12, "feet"),
  13641. weight: math.unit(267, "lb"),
  13642. name: "Front",
  13643. image: {
  13644. source: "./media/characters/dayza/front.svg",
  13645. extra: 1262 / 1200,
  13646. bottom: 0.035
  13647. }
  13648. },
  13649. side: {
  13650. height: math.unit(7 + 7 / 12, "feet"),
  13651. weight: math.unit(267, "lb"),
  13652. name: "Side",
  13653. image: {
  13654. source: "./media/characters/dayza/side.svg",
  13655. extra: 1295 / 1245,
  13656. bottom: 0.05
  13657. }
  13658. },
  13659. back: {
  13660. height: math.unit(7 + 7 / 12, "feet"),
  13661. weight: math.unit(267, "lb"),
  13662. name: "Back",
  13663. image: {
  13664. source: "./media/characters/dayza/back.svg",
  13665. extra: 1241 / 1170
  13666. }
  13667. },
  13668. },
  13669. [
  13670. {
  13671. name: "Normal",
  13672. height: math.unit(7 + 7 / 12, "feet"),
  13673. default: true
  13674. },
  13675. {
  13676. name: "Macro",
  13677. height: math.unit(155, "feet")
  13678. },
  13679. ]
  13680. ))
  13681. characterMakers.push(() => makeCharacter(
  13682. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13683. {
  13684. front: {
  13685. height: math.unit(6 + 5 / 12, "feet"),
  13686. weight: math.unit(160, "lb"),
  13687. name: "Front",
  13688. image: {
  13689. source: "./media/characters/xanthos/front.svg",
  13690. extra: 1,
  13691. bottom: 0.04
  13692. }
  13693. },
  13694. back: {
  13695. height: math.unit(6 + 5 / 12, "feet"),
  13696. weight: math.unit(160, "lb"),
  13697. name: "Back",
  13698. image: {
  13699. source: "./media/characters/xanthos/back.svg",
  13700. extra: 1,
  13701. bottom: 0.03
  13702. }
  13703. },
  13704. hand: {
  13705. height: math.unit(0.928, "feet"),
  13706. name: "Hand",
  13707. image: {
  13708. source: "./media/characters/xanthos/hand.svg"
  13709. }
  13710. },
  13711. foot: {
  13712. height: math.unit(1.286, "feet"),
  13713. name: "Foot",
  13714. image: {
  13715. source: "./media/characters/xanthos/foot.svg"
  13716. }
  13717. },
  13718. },
  13719. [
  13720. {
  13721. name: "Normal",
  13722. height: math.unit(6 + 5 / 12, "feet"),
  13723. default: true
  13724. },
  13725. {
  13726. name: "Normal+",
  13727. height: math.unit(6, "meters")
  13728. },
  13729. {
  13730. name: "Macro",
  13731. height: math.unit(40, "feet")
  13732. },
  13733. {
  13734. name: "Macro+",
  13735. height: math.unit(200, "meters")
  13736. },
  13737. {
  13738. name: "Megamacro",
  13739. height: math.unit(20, "km")
  13740. },
  13741. {
  13742. name: "Megamacro+",
  13743. height: math.unit(100, "km")
  13744. },
  13745. {
  13746. name: "Gigamacro",
  13747. height: math.unit(200, "megameters")
  13748. },
  13749. {
  13750. name: "Gigamacro+",
  13751. height: math.unit(1.5, "gigameters")
  13752. },
  13753. ]
  13754. ))
  13755. characterMakers.push(() => makeCharacter(
  13756. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13757. {
  13758. front: {
  13759. height: math.unit(6 + 3 / 12, "feet"),
  13760. weight: math.unit(215, "lb"),
  13761. name: "Front",
  13762. image: {
  13763. source: "./media/characters/grynn/front.svg",
  13764. extra: 4627 / 4209,
  13765. bottom: 0.047
  13766. }
  13767. },
  13768. },
  13769. [
  13770. {
  13771. name: "Micro",
  13772. height: math.unit(6, "inches")
  13773. },
  13774. {
  13775. name: "Normal",
  13776. height: math.unit(6 + 3 / 12, "feet"),
  13777. default: true
  13778. },
  13779. {
  13780. name: "Big",
  13781. height: math.unit(104, "feet")
  13782. },
  13783. {
  13784. name: "Macro",
  13785. height: math.unit(944, "feet")
  13786. },
  13787. {
  13788. name: "Macro+",
  13789. height: math.unit(9480, "feet")
  13790. },
  13791. {
  13792. name: "Megamacro",
  13793. height: math.unit(78752, "feet")
  13794. },
  13795. {
  13796. name: "Megamacro+",
  13797. height: math.unit(630128, "feet")
  13798. },
  13799. {
  13800. name: "Megamacro++",
  13801. height: math.unit(3150695, "feet")
  13802. },
  13803. ]
  13804. ))
  13805. characterMakers.push(() => makeCharacter(
  13806. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13807. {
  13808. front: {
  13809. height: math.unit(7 + 5 / 12, "feet"),
  13810. weight: math.unit(450, "lb"),
  13811. name: "Front",
  13812. image: {
  13813. source: "./media/characters/mocha-aura/front.svg",
  13814. extra: 1907 / 1817,
  13815. bottom: 0.04
  13816. }
  13817. },
  13818. back: {
  13819. height: math.unit(7 + 5 / 12, "feet"),
  13820. weight: math.unit(450, "lb"),
  13821. name: "Back",
  13822. image: {
  13823. source: "./media/characters/mocha-aura/back.svg",
  13824. extra: 1900 / 1825,
  13825. bottom: 0.045
  13826. }
  13827. },
  13828. },
  13829. [
  13830. {
  13831. name: "Nano",
  13832. height: math.unit(1, "nm")
  13833. },
  13834. {
  13835. name: "Megamicro",
  13836. height: math.unit(1, "mm")
  13837. },
  13838. {
  13839. name: "Micro",
  13840. height: math.unit(3, "inches")
  13841. },
  13842. {
  13843. name: "Normal",
  13844. height: math.unit(7 + 5 / 12, "feet"),
  13845. default: true
  13846. },
  13847. {
  13848. name: "Macro",
  13849. height: math.unit(30, "feet")
  13850. },
  13851. {
  13852. name: "Megamacro",
  13853. height: math.unit(3500, "feet")
  13854. },
  13855. {
  13856. name: "Teramacro",
  13857. height: math.unit(500000, "miles")
  13858. },
  13859. {
  13860. name: "Petamacro",
  13861. height: math.unit(50000000000000000, "parsecs")
  13862. },
  13863. ]
  13864. ))
  13865. characterMakers.push(() => makeCharacter(
  13866. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13867. {
  13868. front: {
  13869. height: math.unit(6, "feet"),
  13870. weight: math.unit(150, "lb"),
  13871. name: "Front",
  13872. image: {
  13873. source: "./media/characters/ilisha-devya/front.svg",
  13874. extra: 1053/1049,
  13875. bottom: 270/1323
  13876. }
  13877. },
  13878. back: {
  13879. height: math.unit(6, "feet"),
  13880. weight: math.unit(150, "lb"),
  13881. name: "Back",
  13882. image: {
  13883. source: "./media/characters/ilisha-devya/back.svg",
  13884. extra: 1131/1128,
  13885. bottom: 39/1170
  13886. }
  13887. },
  13888. },
  13889. [
  13890. {
  13891. name: "Macro",
  13892. height: math.unit(500, "feet"),
  13893. default: true
  13894. },
  13895. {
  13896. name: "Megamacro",
  13897. height: math.unit(10, "miles")
  13898. },
  13899. {
  13900. name: "Gigamacro",
  13901. height: math.unit(100000, "miles")
  13902. },
  13903. {
  13904. name: "Examacro",
  13905. height: math.unit(1e9, "lightyears")
  13906. },
  13907. {
  13908. name: "Omniversal",
  13909. height: math.unit(1e33, "lightyears")
  13910. },
  13911. {
  13912. name: "Beyond Infinite",
  13913. height: math.unit(1e100, "lightyears")
  13914. },
  13915. ]
  13916. ))
  13917. characterMakers.push(() => makeCharacter(
  13918. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13919. {
  13920. Side: {
  13921. height: math.unit(6, "feet"),
  13922. weight: math.unit(150, "lb"),
  13923. name: "Side",
  13924. image: {
  13925. source: "./media/characters/mira/side.svg",
  13926. extra: 900 / 799,
  13927. bottom: 0.02
  13928. }
  13929. },
  13930. },
  13931. [
  13932. {
  13933. name: "Human Size",
  13934. height: math.unit(6, "feet")
  13935. },
  13936. {
  13937. name: "Macro",
  13938. height: math.unit(100, "feet"),
  13939. default: true
  13940. },
  13941. {
  13942. name: "Megamacro",
  13943. height: math.unit(10, "miles")
  13944. },
  13945. {
  13946. name: "Gigamacro",
  13947. height: math.unit(25000, "miles")
  13948. },
  13949. {
  13950. name: "Teramacro",
  13951. height: math.unit(300, "AU")
  13952. },
  13953. {
  13954. name: "Full Size",
  13955. height: math.unit(4.5e10, "lightyears")
  13956. },
  13957. ]
  13958. ))
  13959. characterMakers.push(() => makeCharacter(
  13960. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13961. {
  13962. front: {
  13963. height: math.unit(6, "feet"),
  13964. weight: math.unit(150, "lb"),
  13965. name: "Front",
  13966. image: {
  13967. source: "./media/characters/holly/front.svg",
  13968. extra: 639 / 606
  13969. }
  13970. },
  13971. back: {
  13972. height: math.unit(6, "feet"),
  13973. weight: math.unit(150, "lb"),
  13974. name: "Back",
  13975. image: {
  13976. source: "./media/characters/holly/back.svg",
  13977. extra: 623 / 598
  13978. }
  13979. },
  13980. frontWorking: {
  13981. height: math.unit(6, "feet"),
  13982. weight: math.unit(150, "lb"),
  13983. name: "Front (Working)",
  13984. image: {
  13985. source: "./media/characters/holly/front-working.svg",
  13986. extra: 607 / 577,
  13987. bottom: 0.048
  13988. }
  13989. },
  13990. },
  13991. [
  13992. {
  13993. name: "Normal",
  13994. height: math.unit(12 + 3 / 12, "feet"),
  13995. default: true
  13996. },
  13997. ]
  13998. ))
  13999. characterMakers.push(() => makeCharacter(
  14000. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14001. {
  14002. front: {
  14003. height: math.unit(6, "feet"),
  14004. weight: math.unit(150, "lb"),
  14005. name: "Front",
  14006. image: {
  14007. source: "./media/characters/porter/front.svg",
  14008. extra: 1,
  14009. bottom: 0.01
  14010. }
  14011. },
  14012. frontRobes: {
  14013. height: math.unit(6, "feet"),
  14014. weight: math.unit(150, "lb"),
  14015. name: "Front (Robes)",
  14016. image: {
  14017. source: "./media/characters/porter/front-robes.svg",
  14018. extra: 1.01,
  14019. bottom: 0.01
  14020. }
  14021. },
  14022. },
  14023. [
  14024. {
  14025. name: "Normal",
  14026. height: math.unit(11 + 9 / 12, "feet"),
  14027. default: true
  14028. },
  14029. ]
  14030. ))
  14031. characterMakers.push(() => makeCharacter(
  14032. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14033. {
  14034. legendary: {
  14035. height: math.unit(6, "feet"),
  14036. weight: math.unit(150, "lb"),
  14037. name: "Legendary",
  14038. image: {
  14039. source: "./media/characters/lucy/legendary.svg",
  14040. extra: 1355 / 1100,
  14041. bottom: 0.045
  14042. }
  14043. },
  14044. },
  14045. [
  14046. {
  14047. name: "Legendary",
  14048. height: math.unit(86882 * 2, "miles"),
  14049. default: true
  14050. },
  14051. ]
  14052. ))
  14053. characterMakers.push(() => makeCharacter(
  14054. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14055. {
  14056. front: {
  14057. height: math.unit(6, "feet"),
  14058. weight: math.unit(150, "lb"),
  14059. name: "Front",
  14060. image: {
  14061. source: "./media/characters/drusilla/front.svg",
  14062. extra: 678 / 635,
  14063. bottom: 0.03
  14064. }
  14065. },
  14066. back: {
  14067. height: math.unit(6, "feet"),
  14068. weight: math.unit(150, "lb"),
  14069. name: "Back",
  14070. image: {
  14071. source: "./media/characters/drusilla/back.svg",
  14072. extra: 678 / 635,
  14073. bottom: 0.005
  14074. }
  14075. },
  14076. },
  14077. [
  14078. {
  14079. name: "Macro",
  14080. height: math.unit(100, "feet")
  14081. },
  14082. {
  14083. name: "Canon Height",
  14084. height: math.unit(2000, "feet"),
  14085. default: true
  14086. },
  14087. ]
  14088. ))
  14089. characterMakers.push(() => makeCharacter(
  14090. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14091. {
  14092. front: {
  14093. height: math.unit(6, "feet"),
  14094. weight: math.unit(180, "lb"),
  14095. name: "Front",
  14096. image: {
  14097. source: "./media/characters/renard-thatch/front.svg",
  14098. extra: 2411 / 2275,
  14099. bottom: 0.01
  14100. }
  14101. },
  14102. frontPosing: {
  14103. height: math.unit(6, "feet"),
  14104. weight: math.unit(180, "lb"),
  14105. name: "Front (Posing)",
  14106. image: {
  14107. source: "./media/characters/renard-thatch/front-posing.svg",
  14108. extra: 2381 / 2261,
  14109. bottom: 0.01
  14110. }
  14111. },
  14112. back: {
  14113. height: math.unit(6, "feet"),
  14114. weight: math.unit(180, "lb"),
  14115. name: "Back",
  14116. image: {
  14117. source: "./media/characters/renard-thatch/back.svg",
  14118. extra: 2428 / 2288
  14119. }
  14120. },
  14121. },
  14122. [
  14123. {
  14124. name: "Micro",
  14125. height: math.unit(3, "inches")
  14126. },
  14127. {
  14128. name: "Default",
  14129. height: math.unit(6, "feet"),
  14130. default: true
  14131. },
  14132. {
  14133. name: "Macro",
  14134. height: math.unit(75, "feet")
  14135. },
  14136. ]
  14137. ))
  14138. characterMakers.push(() => makeCharacter(
  14139. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14140. {
  14141. front: {
  14142. height: math.unit(1450, "feet"),
  14143. weight: math.unit(1.21e6, "tons"),
  14144. name: "Front",
  14145. image: {
  14146. source: "./media/characters/sekvra/front.svg",
  14147. extra: 1193/1190,
  14148. bottom: 78/1271
  14149. }
  14150. },
  14151. side: {
  14152. height: math.unit(1450, "feet"),
  14153. weight: math.unit(1.21e6, "tons"),
  14154. name: "Side",
  14155. image: {
  14156. source: "./media/characters/sekvra/side.svg",
  14157. extra: 1193/1190,
  14158. bottom: 52/1245
  14159. }
  14160. },
  14161. back: {
  14162. height: math.unit(1450, "feet"),
  14163. weight: math.unit(1.21e6, "tons"),
  14164. name: "Back",
  14165. image: {
  14166. source: "./media/characters/sekvra/back.svg",
  14167. extra: 1219/1216,
  14168. bottom: 21/1240
  14169. }
  14170. },
  14171. frontClothed: {
  14172. height: math.unit(1450, "feet"),
  14173. weight: math.unit(1.21e6, "tons"),
  14174. name: "Front (Clothed)",
  14175. image: {
  14176. source: "./media/characters/sekvra/front-clothed.svg",
  14177. extra: 1192/1189,
  14178. bottom: 79/1271
  14179. }
  14180. },
  14181. },
  14182. [
  14183. {
  14184. name: "Macro",
  14185. height: math.unit(1450, "feet"),
  14186. default: true
  14187. },
  14188. {
  14189. name: "Megamacro",
  14190. height: math.unit(15000, "feet")
  14191. },
  14192. ]
  14193. ))
  14194. characterMakers.push(() => makeCharacter(
  14195. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14196. {
  14197. front: {
  14198. height: math.unit(6, "feet"),
  14199. weight: math.unit(150, "lb"),
  14200. name: "Front",
  14201. image: {
  14202. source: "./media/characters/carmine/front.svg",
  14203. extra: 1,
  14204. bottom: 0.035
  14205. }
  14206. },
  14207. frontArmor: {
  14208. height: math.unit(6, "feet"),
  14209. weight: math.unit(150, "lb"),
  14210. name: "Front (Armor)",
  14211. image: {
  14212. source: "./media/characters/carmine/front-armor.svg",
  14213. extra: 1,
  14214. bottom: 0.035
  14215. }
  14216. },
  14217. },
  14218. [
  14219. {
  14220. name: "Large",
  14221. height: math.unit(1, "mile")
  14222. },
  14223. {
  14224. name: "Huge",
  14225. height: math.unit(40, "miles"),
  14226. default: true
  14227. },
  14228. {
  14229. name: "Colossal",
  14230. height: math.unit(2500, "miles")
  14231. },
  14232. ]
  14233. ))
  14234. characterMakers.push(() => makeCharacter(
  14235. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14236. {
  14237. front: {
  14238. height: math.unit(6, "feet"),
  14239. weight: math.unit(150, "lb"),
  14240. name: "Front",
  14241. image: {
  14242. source: "./media/characters/elyssia/front.svg",
  14243. extra: 2201 / 2035,
  14244. bottom: 0.05
  14245. }
  14246. },
  14247. frontClothed: {
  14248. height: math.unit(6, "feet"),
  14249. weight: math.unit(150, "lb"),
  14250. name: "Front (Clothed)",
  14251. image: {
  14252. source: "./media/characters/elyssia/front-clothed.svg",
  14253. extra: 2201 / 2035,
  14254. bottom: 0.05
  14255. }
  14256. },
  14257. back: {
  14258. height: math.unit(6, "feet"),
  14259. weight: math.unit(150, "lb"),
  14260. name: "Back",
  14261. image: {
  14262. source: "./media/characters/elyssia/back.svg",
  14263. extra: 2201 / 2035,
  14264. bottom: 0.013
  14265. }
  14266. },
  14267. },
  14268. [
  14269. {
  14270. name: "Smaller",
  14271. height: math.unit(150, "feet")
  14272. },
  14273. {
  14274. name: "Standard",
  14275. height: math.unit(1400, "feet"),
  14276. default: true
  14277. },
  14278. {
  14279. name: "Distracted",
  14280. height: math.unit(15000, "feet")
  14281. },
  14282. ]
  14283. ))
  14284. characterMakers.push(() => makeCharacter(
  14285. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14286. {
  14287. front: {
  14288. height: math.unit(7 + 4/12, "feet"),
  14289. weight: math.unit(690, "lb"),
  14290. name: "Front",
  14291. image: {
  14292. source: "./media/characters/geno-maxwell/front.svg",
  14293. extra: 984/856,
  14294. bottom: 87/1071
  14295. }
  14296. },
  14297. back: {
  14298. height: math.unit(7 + 4/12, "feet"),
  14299. weight: math.unit(690, "lb"),
  14300. name: "Back",
  14301. image: {
  14302. source: "./media/characters/geno-maxwell/back.svg",
  14303. extra: 981/854,
  14304. bottom: 57/1038
  14305. }
  14306. },
  14307. frontCostume: {
  14308. height: math.unit(7 + 4/12, "feet"),
  14309. weight: math.unit(690, "lb"),
  14310. name: "Front (Costume)",
  14311. image: {
  14312. source: "./media/characters/geno-maxwell/front-costume.svg",
  14313. extra: 984/856,
  14314. bottom: 87/1071
  14315. }
  14316. },
  14317. backcostume: {
  14318. height: math.unit(7 + 4/12, "feet"),
  14319. weight: math.unit(690, "lb"),
  14320. name: "Back (Costume)",
  14321. image: {
  14322. source: "./media/characters/geno-maxwell/back-costume.svg",
  14323. extra: 981/854,
  14324. bottom: 57/1038
  14325. }
  14326. },
  14327. },
  14328. [
  14329. {
  14330. name: "Micro",
  14331. height: math.unit(3, "inches")
  14332. },
  14333. {
  14334. name: "Normal",
  14335. height: math.unit(7 + 4 / 12, "feet"),
  14336. default: true
  14337. },
  14338. {
  14339. name: "Macro",
  14340. height: math.unit(220, "feet")
  14341. },
  14342. {
  14343. name: "Megamacro",
  14344. height: math.unit(11, "miles")
  14345. },
  14346. ]
  14347. ))
  14348. characterMakers.push(() => makeCharacter(
  14349. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14350. {
  14351. front: {
  14352. height: math.unit(7 + 4/12, "feet"),
  14353. weight: math.unit(750, "lb"),
  14354. name: "Front",
  14355. image: {
  14356. source: "./media/characters/regena-maxwell/front.svg",
  14357. extra: 984/856,
  14358. bottom: 87/1071
  14359. }
  14360. },
  14361. back: {
  14362. height: math.unit(7 + 4/12, "feet"),
  14363. weight: math.unit(750, "lb"),
  14364. name: "Back",
  14365. image: {
  14366. source: "./media/characters/regena-maxwell/back.svg",
  14367. extra: 981/854,
  14368. bottom: 57/1038
  14369. }
  14370. },
  14371. frontCostume: {
  14372. height: math.unit(7 + 4/12, "feet"),
  14373. weight: math.unit(750, "lb"),
  14374. name: "Front (Costume)",
  14375. image: {
  14376. source: "./media/characters/regena-maxwell/front-costume.svg",
  14377. extra: 984/856,
  14378. bottom: 87/1071
  14379. }
  14380. },
  14381. backcostume: {
  14382. height: math.unit(7 + 4/12, "feet"),
  14383. weight: math.unit(750, "lb"),
  14384. name: "Back (Costume)",
  14385. image: {
  14386. source: "./media/characters/regena-maxwell/back-costume.svg",
  14387. extra: 981/854,
  14388. bottom: 57/1038
  14389. }
  14390. },
  14391. },
  14392. [
  14393. {
  14394. name: "Normal",
  14395. height: math.unit(7 + 4 / 12, "feet"),
  14396. default: true
  14397. },
  14398. {
  14399. name: "Macro",
  14400. height: math.unit(220, "feet")
  14401. },
  14402. {
  14403. name: "Megamacro",
  14404. height: math.unit(11, "miles")
  14405. },
  14406. ]
  14407. ))
  14408. characterMakers.push(() => makeCharacter(
  14409. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14410. {
  14411. front: {
  14412. height: math.unit(6, "feet"),
  14413. weight: math.unit(150, "lb"),
  14414. name: "Front",
  14415. image: {
  14416. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14417. extra: 860 / 690,
  14418. bottom: 0.03
  14419. }
  14420. },
  14421. },
  14422. [
  14423. {
  14424. name: "Normal",
  14425. height: math.unit(1.7, "meters"),
  14426. default: true
  14427. },
  14428. ]
  14429. ))
  14430. characterMakers.push(() => makeCharacter(
  14431. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14432. {
  14433. front: {
  14434. height: math.unit(6, "feet"),
  14435. weight: math.unit(150, "lb"),
  14436. name: "Front",
  14437. image: {
  14438. source: "./media/characters/quilly/front.svg",
  14439. extra: 890 / 776
  14440. }
  14441. },
  14442. },
  14443. [
  14444. {
  14445. name: "Gigamacro",
  14446. height: math.unit(404090, "miles"),
  14447. default: true
  14448. },
  14449. ]
  14450. ))
  14451. characterMakers.push(() => makeCharacter(
  14452. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14453. {
  14454. front: {
  14455. height: math.unit(7 + 8 / 12, "feet"),
  14456. weight: math.unit(350, "lb"),
  14457. name: "Front",
  14458. image: {
  14459. source: "./media/characters/tempest/front.svg",
  14460. extra: 1175 / 1086,
  14461. bottom: 0.02
  14462. }
  14463. },
  14464. },
  14465. [
  14466. {
  14467. name: "Normal",
  14468. height: math.unit(7 + 8 / 12, "feet"),
  14469. default: true
  14470. },
  14471. ]
  14472. ))
  14473. characterMakers.push(() => makeCharacter(
  14474. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14475. {
  14476. side: {
  14477. height: math.unit(4 + 5 / 12, "feet"),
  14478. weight: math.unit(80, "lb"),
  14479. name: "Side",
  14480. image: {
  14481. source: "./media/characters/rodger/side.svg",
  14482. extra: 1235 / 1118
  14483. }
  14484. },
  14485. },
  14486. [
  14487. {
  14488. name: "Micro",
  14489. height: math.unit(1, "inch")
  14490. },
  14491. {
  14492. name: "Normal",
  14493. height: math.unit(4 + 5 / 12, "feet"),
  14494. default: true
  14495. },
  14496. {
  14497. name: "Macro",
  14498. height: math.unit(120, "feet")
  14499. },
  14500. ]
  14501. ))
  14502. characterMakers.push(() => makeCharacter(
  14503. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14504. {
  14505. front: {
  14506. height: math.unit(6, "feet"),
  14507. weight: math.unit(150, "lb"),
  14508. name: "Front",
  14509. image: {
  14510. source: "./media/characters/danyel/front.svg",
  14511. extra: 1185 / 1123,
  14512. bottom: 0.05
  14513. }
  14514. },
  14515. },
  14516. [
  14517. {
  14518. name: "Shrunken",
  14519. height: math.unit(0.5, "mm")
  14520. },
  14521. {
  14522. name: "Micro",
  14523. height: math.unit(1, "mm"),
  14524. default: true
  14525. },
  14526. {
  14527. name: "Upsized",
  14528. height: math.unit(5 + 5 / 12, "feet")
  14529. },
  14530. ]
  14531. ))
  14532. characterMakers.push(() => makeCharacter(
  14533. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14534. {
  14535. front: {
  14536. height: math.unit(5 + 6 / 12, "feet"),
  14537. weight: math.unit(200, "lb"),
  14538. name: "Front",
  14539. image: {
  14540. source: "./media/characters/vivian-bijoux/front.svg",
  14541. extra: 1217/1209,
  14542. bottom: 76/1293
  14543. }
  14544. },
  14545. back: {
  14546. height: math.unit(5 + 6 / 12, "feet"),
  14547. weight: math.unit(200, "lb"),
  14548. name: "Back",
  14549. image: {
  14550. source: "./media/characters/vivian-bijoux/back.svg",
  14551. extra: 1214/1208,
  14552. bottom: 51/1265
  14553. }
  14554. },
  14555. dressed: {
  14556. height: math.unit(5 + 6 / 12, "feet"),
  14557. weight: math.unit(200, "lb"),
  14558. name: "Dressed",
  14559. image: {
  14560. source: "./media/characters/vivian-bijoux/dressed.svg",
  14561. extra: 1217/1209,
  14562. bottom: 76/1293
  14563. }
  14564. },
  14565. },
  14566. [
  14567. {
  14568. name: "Normal",
  14569. height: math.unit(5 + 6 / 12, "feet"),
  14570. default: true
  14571. },
  14572. {
  14573. name: "Bad Dream",
  14574. height: math.unit(500, "feet")
  14575. },
  14576. {
  14577. name: "Nightmare",
  14578. height: math.unit(500, "miles")
  14579. },
  14580. ]
  14581. ))
  14582. characterMakers.push(() => makeCharacter(
  14583. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14584. {
  14585. front: {
  14586. height: math.unit(6 + 1 / 12, "feet"),
  14587. weight: math.unit(260, "lb"),
  14588. name: "Front",
  14589. image: {
  14590. source: "./media/characters/zeta/front.svg",
  14591. extra: 1968 / 1889,
  14592. bottom: 0.06
  14593. }
  14594. },
  14595. back: {
  14596. height: math.unit(6 + 1 / 12, "feet"),
  14597. weight: math.unit(260, "lb"),
  14598. name: "Back",
  14599. image: {
  14600. source: "./media/characters/zeta/back.svg",
  14601. extra: 1944 / 1858,
  14602. bottom: 0.03
  14603. }
  14604. },
  14605. hand: {
  14606. height: math.unit(1.112, "feet"),
  14607. name: "Hand",
  14608. image: {
  14609. source: "./media/characters/zeta/hand.svg"
  14610. }
  14611. },
  14612. foot: {
  14613. height: math.unit(1.48, "feet"),
  14614. name: "Foot",
  14615. image: {
  14616. source: "./media/characters/zeta/foot.svg"
  14617. }
  14618. },
  14619. },
  14620. [
  14621. {
  14622. name: "Micro",
  14623. height: math.unit(6, "inches")
  14624. },
  14625. {
  14626. name: "Normal",
  14627. height: math.unit(6 + 1 / 12, "feet"),
  14628. default: true
  14629. },
  14630. {
  14631. name: "Macro",
  14632. height: math.unit(20, "feet")
  14633. },
  14634. ]
  14635. ))
  14636. characterMakers.push(() => makeCharacter(
  14637. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14638. {
  14639. front: {
  14640. height: math.unit(6, "feet"),
  14641. weight: math.unit(150, "lb"),
  14642. name: "Front",
  14643. image: {
  14644. source: "./media/characters/jamie-larsen/front.svg",
  14645. extra: 962 / 933,
  14646. bottom: 0.02
  14647. }
  14648. },
  14649. back: {
  14650. height: math.unit(6, "feet"),
  14651. weight: math.unit(150, "lb"),
  14652. name: "Back",
  14653. image: {
  14654. source: "./media/characters/jamie-larsen/back.svg",
  14655. extra: 997 / 946
  14656. }
  14657. },
  14658. },
  14659. [
  14660. {
  14661. name: "Macro",
  14662. height: math.unit(28 + 7 / 12, "feet"),
  14663. default: true
  14664. },
  14665. {
  14666. name: "Macro+",
  14667. height: math.unit(180, "feet")
  14668. },
  14669. {
  14670. name: "Megamacro",
  14671. height: math.unit(10, "miles")
  14672. },
  14673. {
  14674. name: "Gigamacro",
  14675. height: math.unit(200000, "miles")
  14676. },
  14677. ]
  14678. ))
  14679. characterMakers.push(() => makeCharacter(
  14680. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14681. {
  14682. front: {
  14683. height: math.unit(6, "feet"),
  14684. weight: math.unit(120, "lb"),
  14685. name: "Front",
  14686. image: {
  14687. source: "./media/characters/vance/front.svg",
  14688. extra: 1980 / 1890,
  14689. bottom: 0.09
  14690. }
  14691. },
  14692. back: {
  14693. height: math.unit(6, "feet"),
  14694. weight: math.unit(120, "lb"),
  14695. name: "Back",
  14696. image: {
  14697. source: "./media/characters/vance/back.svg",
  14698. extra: 2081 / 1994,
  14699. bottom: 0.014
  14700. }
  14701. },
  14702. hand: {
  14703. height: math.unit(0.88, "feet"),
  14704. name: "Hand",
  14705. image: {
  14706. source: "./media/characters/vance/hand.svg"
  14707. }
  14708. },
  14709. foot: {
  14710. height: math.unit(0.64, "feet"),
  14711. name: "Foot",
  14712. image: {
  14713. source: "./media/characters/vance/foot.svg"
  14714. }
  14715. },
  14716. },
  14717. [
  14718. {
  14719. name: "Small",
  14720. height: math.unit(90, "feet"),
  14721. default: true
  14722. },
  14723. {
  14724. name: "Macro",
  14725. height: math.unit(100, "meters")
  14726. },
  14727. {
  14728. name: "Megamacro",
  14729. height: math.unit(15, "miles")
  14730. },
  14731. ]
  14732. ))
  14733. characterMakers.push(() => makeCharacter(
  14734. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14735. {
  14736. front: {
  14737. height: math.unit(6, "feet"),
  14738. weight: math.unit(180, "lb"),
  14739. name: "Front",
  14740. image: {
  14741. source: "./media/characters/xochitl/front.svg",
  14742. extra: 2297 / 2261,
  14743. bottom: 0.065
  14744. }
  14745. },
  14746. back: {
  14747. height: math.unit(6, "feet"),
  14748. weight: math.unit(180, "lb"),
  14749. name: "Back",
  14750. image: {
  14751. source: "./media/characters/xochitl/back.svg",
  14752. extra: 2386 / 2354,
  14753. bottom: 0.01
  14754. }
  14755. },
  14756. foot: {
  14757. height: math.unit(6 / 5 * 1.15, "feet"),
  14758. weight: math.unit(150, "lb"),
  14759. name: "Foot",
  14760. image: {
  14761. source: "./media/characters/xochitl/foot.svg"
  14762. }
  14763. },
  14764. },
  14765. [
  14766. {
  14767. name: "Macro",
  14768. height: math.unit(80, "feet")
  14769. },
  14770. {
  14771. name: "Macro+",
  14772. height: math.unit(400, "feet"),
  14773. default: true
  14774. },
  14775. {
  14776. name: "Gigamacro",
  14777. height: math.unit(80000, "miles")
  14778. },
  14779. {
  14780. name: "Gigamacro+",
  14781. height: math.unit(400000, "miles")
  14782. },
  14783. {
  14784. name: "Teramacro",
  14785. height: math.unit(300, "AU")
  14786. },
  14787. ]
  14788. ))
  14789. characterMakers.push(() => makeCharacter(
  14790. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14791. {
  14792. front: {
  14793. height: math.unit(6, "feet"),
  14794. weight: math.unit(150, "lb"),
  14795. name: "Front",
  14796. image: {
  14797. source: "./media/characters/vincent/front.svg",
  14798. extra: 1130 / 1080,
  14799. bottom: 0.055
  14800. }
  14801. },
  14802. beak: {
  14803. height: math.unit(6 * 0.1, "feet"),
  14804. name: "Beak",
  14805. image: {
  14806. source: "./media/characters/vincent/beak.svg"
  14807. }
  14808. },
  14809. hand: {
  14810. height: math.unit(6 * 0.85, "feet"),
  14811. weight: math.unit(150, "lb"),
  14812. name: "Hand",
  14813. image: {
  14814. source: "./media/characters/vincent/hand.svg"
  14815. }
  14816. },
  14817. foot: {
  14818. height: math.unit(6 * 0.19, "feet"),
  14819. weight: math.unit(150, "lb"),
  14820. name: "Foot",
  14821. image: {
  14822. source: "./media/characters/vincent/foot.svg"
  14823. }
  14824. },
  14825. },
  14826. [
  14827. {
  14828. name: "Base",
  14829. height: math.unit(6 + 5 / 12, "feet"),
  14830. default: true
  14831. },
  14832. {
  14833. name: "Macro",
  14834. height: math.unit(300, "feet")
  14835. },
  14836. {
  14837. name: "Megamacro",
  14838. height: math.unit(2, "miles")
  14839. },
  14840. {
  14841. name: "Gigamacro",
  14842. height: math.unit(1000, "miles")
  14843. },
  14844. ]
  14845. ))
  14846. characterMakers.push(() => makeCharacter(
  14847. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14848. {
  14849. front: {
  14850. height: math.unit(2, "meters"),
  14851. weight: math.unit(500, "kg"),
  14852. name: "Front",
  14853. image: {
  14854. source: "./media/characters/coatl/front.svg",
  14855. extra: 3948 / 3500,
  14856. bottom: 0.082
  14857. }
  14858. },
  14859. },
  14860. [
  14861. {
  14862. name: "Normal",
  14863. height: math.unit(4, "meters")
  14864. },
  14865. {
  14866. name: "Macro",
  14867. height: math.unit(100, "meters"),
  14868. default: true
  14869. },
  14870. {
  14871. name: "Macro+",
  14872. height: math.unit(300, "meters")
  14873. },
  14874. {
  14875. name: "Megamacro",
  14876. height: math.unit(3, "gigameters")
  14877. },
  14878. {
  14879. name: "Megamacro+",
  14880. height: math.unit(300, "terameters")
  14881. },
  14882. {
  14883. name: "Megamacro++",
  14884. height: math.unit(3, "lightyears")
  14885. },
  14886. ]
  14887. ))
  14888. characterMakers.push(() => makeCharacter(
  14889. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14890. {
  14891. front: {
  14892. height: math.unit(6, "feet"),
  14893. weight: math.unit(50, "kg"),
  14894. name: "front",
  14895. image: {
  14896. source: "./media/characters/shiroryu/front.svg",
  14897. extra: 1990 / 1935
  14898. }
  14899. },
  14900. },
  14901. [
  14902. {
  14903. name: "Mortal Mingling",
  14904. height: math.unit(3, "meters")
  14905. },
  14906. {
  14907. name: "Kaiju-ish",
  14908. height: math.unit(250, "meters")
  14909. },
  14910. {
  14911. name: "Somewhat Godly",
  14912. height: math.unit(400, "km"),
  14913. default: true
  14914. },
  14915. {
  14916. name: "Planetary",
  14917. height: math.unit(300, "megameters")
  14918. },
  14919. {
  14920. name: "Galaxy-dwarfing",
  14921. height: math.unit(450, "kiloparsecs")
  14922. },
  14923. {
  14924. name: "Universe Eater",
  14925. height: math.unit(150, "gigaparsecs")
  14926. },
  14927. {
  14928. name: "Almost Immeasurable",
  14929. height: math.unit(1.3e266, "yottaparsecs")
  14930. },
  14931. ]
  14932. ))
  14933. characterMakers.push(() => makeCharacter(
  14934. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14935. {
  14936. front: {
  14937. height: math.unit(6, "feet"),
  14938. weight: math.unit(150, "lb"),
  14939. name: "Front",
  14940. image: {
  14941. source: "./media/characters/umeko/front.svg",
  14942. extra: 1,
  14943. bottom: 0.019
  14944. }
  14945. },
  14946. frontArmored: {
  14947. height: math.unit(6, "feet"),
  14948. weight: math.unit(150, "lb"),
  14949. name: "Front (Armored)",
  14950. image: {
  14951. source: "./media/characters/umeko/front-armored.svg",
  14952. extra: 1,
  14953. bottom: 0.021
  14954. }
  14955. },
  14956. },
  14957. [
  14958. {
  14959. name: "Macro",
  14960. height: math.unit(220, "feet"),
  14961. default: true
  14962. },
  14963. {
  14964. name: "Guardian Dragon",
  14965. height: math.unit(50, "miles")
  14966. },
  14967. {
  14968. name: "Cosmic",
  14969. height: math.unit(800000, "miles")
  14970. },
  14971. ]
  14972. ))
  14973. characterMakers.push(() => makeCharacter(
  14974. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14975. {
  14976. front: {
  14977. height: math.unit(6, "feet"),
  14978. weight: math.unit(150, "lb"),
  14979. name: "Front",
  14980. image: {
  14981. source: "./media/characters/cassidy/front.svg",
  14982. extra: 810/808,
  14983. bottom: 41/851
  14984. }
  14985. },
  14986. },
  14987. [
  14988. {
  14989. name: "Canon Height",
  14990. height: math.unit(120, "feet"),
  14991. default: true
  14992. },
  14993. {
  14994. name: "Macro+",
  14995. height: math.unit(400, "feet")
  14996. },
  14997. {
  14998. name: "Macro++",
  14999. height: math.unit(4000, "feet")
  15000. },
  15001. {
  15002. name: "Megamacro",
  15003. height: math.unit(3, "miles")
  15004. },
  15005. ]
  15006. ))
  15007. characterMakers.push(() => makeCharacter(
  15008. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15009. {
  15010. front: {
  15011. height: math.unit(6, "feet"),
  15012. weight: math.unit(150, "lb"),
  15013. name: "Front",
  15014. image: {
  15015. source: "./media/characters/isaac/front.svg",
  15016. extra: 896 / 815,
  15017. bottom: 0.11
  15018. }
  15019. },
  15020. },
  15021. [
  15022. {
  15023. name: "Human Size",
  15024. height: math.unit(8, "feet"),
  15025. default: true
  15026. },
  15027. {
  15028. name: "Macro",
  15029. height: math.unit(400, "feet")
  15030. },
  15031. {
  15032. name: "Megamacro",
  15033. height: math.unit(50, "miles")
  15034. },
  15035. {
  15036. name: "Canon Height",
  15037. height: math.unit(200, "AU")
  15038. },
  15039. ]
  15040. ))
  15041. characterMakers.push(() => makeCharacter(
  15042. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15043. {
  15044. front: {
  15045. height: math.unit(6, "feet"),
  15046. weight: math.unit(72, "kg"),
  15047. name: "Front",
  15048. image: {
  15049. source: "./media/characters/sleekit/front.svg",
  15050. extra: 4693 / 4487,
  15051. bottom: 0.012
  15052. }
  15053. },
  15054. },
  15055. [
  15056. {
  15057. name: "Minimum Height",
  15058. height: math.unit(10, "meters")
  15059. },
  15060. {
  15061. name: "Smaller",
  15062. height: math.unit(25, "meters")
  15063. },
  15064. {
  15065. name: "Larger",
  15066. height: math.unit(38, "meters"),
  15067. default: true
  15068. },
  15069. {
  15070. name: "Maximum height",
  15071. height: math.unit(100, "meters")
  15072. },
  15073. ]
  15074. ))
  15075. characterMakers.push(() => makeCharacter(
  15076. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15077. {
  15078. front: {
  15079. height: math.unit(6, "feet"),
  15080. weight: math.unit(150, "lb"),
  15081. name: "Front",
  15082. image: {
  15083. source: "./media/characters/nillia/front.svg",
  15084. extra: 2195 / 2037,
  15085. bottom: 0.005
  15086. }
  15087. },
  15088. back: {
  15089. height: math.unit(6, "feet"),
  15090. weight: math.unit(150, "lb"),
  15091. name: "Back",
  15092. image: {
  15093. source: "./media/characters/nillia/back.svg",
  15094. extra: 2195 / 2037,
  15095. bottom: 0.005
  15096. }
  15097. },
  15098. },
  15099. [
  15100. {
  15101. name: "Canon Height",
  15102. height: math.unit(489, "feet"),
  15103. default: true
  15104. }
  15105. ]
  15106. ))
  15107. characterMakers.push(() => makeCharacter(
  15108. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15109. {
  15110. front: {
  15111. height: math.unit(6, "feet"),
  15112. weight: math.unit(150, "lb"),
  15113. name: "Front",
  15114. image: {
  15115. source: "./media/characters/mesmyriza/front.svg",
  15116. extra: 2067 / 1784,
  15117. bottom: 0.035
  15118. }
  15119. },
  15120. foot: {
  15121. height: math.unit(6 / (250 / 35), "feet"),
  15122. name: "Foot",
  15123. image: {
  15124. source: "./media/characters/mesmyriza/foot.svg"
  15125. }
  15126. },
  15127. },
  15128. [
  15129. {
  15130. name: "Macro",
  15131. height: math.unit(457, "meters"),
  15132. default: true
  15133. },
  15134. {
  15135. name: "Megamacro",
  15136. height: math.unit(8, "megameters")
  15137. },
  15138. ]
  15139. ))
  15140. characterMakers.push(() => makeCharacter(
  15141. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15142. {
  15143. front: {
  15144. height: math.unit(6, "feet"),
  15145. weight: math.unit(250, "lb"),
  15146. name: "Front",
  15147. image: {
  15148. source: "./media/characters/saudade/front.svg",
  15149. extra: 1172 / 1139,
  15150. bottom: 0.035
  15151. }
  15152. },
  15153. },
  15154. [
  15155. {
  15156. name: "Micro",
  15157. height: math.unit(3, "inches")
  15158. },
  15159. {
  15160. name: "Normal",
  15161. height: math.unit(6, "feet"),
  15162. default: true
  15163. },
  15164. {
  15165. name: "Macro",
  15166. height: math.unit(50, "feet")
  15167. },
  15168. {
  15169. name: "Megamacro",
  15170. height: math.unit(2800, "feet")
  15171. },
  15172. ]
  15173. ))
  15174. characterMakers.push(() => makeCharacter(
  15175. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15176. {
  15177. front: {
  15178. height: math.unit(5 + 4 / 12, "feet"),
  15179. weight: math.unit(100, "lb"),
  15180. name: "Front",
  15181. image: {
  15182. source: "./media/characters/keireer/front.svg",
  15183. extra: 716 / 666,
  15184. bottom: 0.05
  15185. }
  15186. },
  15187. },
  15188. [
  15189. {
  15190. name: "Normal",
  15191. height: math.unit(5 + 4 / 12, "feet"),
  15192. default: true
  15193. },
  15194. ]
  15195. ))
  15196. characterMakers.push(() => makeCharacter(
  15197. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15198. {
  15199. front: {
  15200. height: math.unit(5.5, "feet"),
  15201. weight: math.unit(90, "kg"),
  15202. name: "Front",
  15203. image: {
  15204. source: "./media/characters/mirja/front.svg",
  15205. extra: 1452/1262,
  15206. bottom: 67/1519
  15207. }
  15208. },
  15209. frontDressed: {
  15210. height: math.unit(5.5, "feet"),
  15211. weight: math.unit(90, "lb"),
  15212. name: "Front (Dressed)",
  15213. image: {
  15214. source: "./media/characters/mirja/dressed.svg",
  15215. extra: 1452/1262,
  15216. bottom: 67/1519
  15217. }
  15218. },
  15219. back: {
  15220. height: math.unit(6, "feet"),
  15221. weight: math.unit(90, "lb"),
  15222. name: "Back",
  15223. image: {
  15224. source: "./media/characters/mirja/back.svg",
  15225. extra: 1892/1795,
  15226. bottom: 48/1940
  15227. }
  15228. },
  15229. maw: {
  15230. height: math.unit(1.312, "feet"),
  15231. name: "Maw",
  15232. image: {
  15233. source: "./media/characters/mirja/maw.svg"
  15234. }
  15235. },
  15236. paw: {
  15237. height: math.unit(1.15, "feet"),
  15238. name: "Paw",
  15239. image: {
  15240. source: "./media/characters/mirja/paw.svg"
  15241. }
  15242. },
  15243. },
  15244. [
  15245. {
  15246. name: "\"Incognito\"",
  15247. height: math.unit(3, "meters")
  15248. },
  15249. {
  15250. name: "Strolling Size",
  15251. height: math.unit(15, "km")
  15252. },
  15253. {
  15254. name: "Larger Strolling Size",
  15255. height: math.unit(400, "km")
  15256. },
  15257. {
  15258. name: "Preferred Size",
  15259. height: math.unit(5000, "km"),
  15260. default: true
  15261. },
  15262. {
  15263. name: "True Size",
  15264. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15265. },
  15266. ]
  15267. ))
  15268. characterMakers.push(() => makeCharacter(
  15269. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15270. {
  15271. front: {
  15272. height: math.unit(15, "feet"),
  15273. weight: math.unit(880, "kg"),
  15274. name: "Front",
  15275. image: {
  15276. source: "./media/characters/nightraver/front.svg",
  15277. extra: 2444 / 2160,
  15278. bottom: 0.027
  15279. }
  15280. },
  15281. back: {
  15282. height: math.unit(15, "feet"),
  15283. weight: math.unit(880, "kg"),
  15284. name: "Back",
  15285. image: {
  15286. source: "./media/characters/nightraver/back.svg",
  15287. extra: 2309 / 2180,
  15288. bottom: 0.005
  15289. }
  15290. },
  15291. sole: {
  15292. height: math.unit(2.878, "feet"),
  15293. name: "Sole",
  15294. image: {
  15295. source: "./media/characters/nightraver/sole.svg"
  15296. }
  15297. },
  15298. foot: {
  15299. height: math.unit(2.285, "feet"),
  15300. name: "Foot",
  15301. image: {
  15302. source: "./media/characters/nightraver/foot.svg"
  15303. }
  15304. },
  15305. maw: {
  15306. height: math.unit(2.67, "feet"),
  15307. name: "Maw",
  15308. image: {
  15309. source: "./media/characters/nightraver/maw.svg"
  15310. }
  15311. },
  15312. },
  15313. [
  15314. {
  15315. name: "Micro",
  15316. height: math.unit(1, "cm")
  15317. },
  15318. {
  15319. name: "Normal",
  15320. height: math.unit(15, "feet"),
  15321. default: true
  15322. },
  15323. {
  15324. name: "Macro",
  15325. height: math.unit(300, "feet")
  15326. },
  15327. {
  15328. name: "Megamacro",
  15329. height: math.unit(300, "miles")
  15330. },
  15331. {
  15332. name: "Gigamacro",
  15333. height: math.unit(10000, "miles")
  15334. },
  15335. ]
  15336. ))
  15337. characterMakers.push(() => makeCharacter(
  15338. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15339. {
  15340. side: {
  15341. height: math.unit(2, "inches"),
  15342. weight: math.unit(5, "grams"),
  15343. name: "Side",
  15344. image: {
  15345. source: "./media/characters/arc/side.svg"
  15346. }
  15347. },
  15348. },
  15349. [
  15350. {
  15351. name: "Micro",
  15352. height: math.unit(2, "inches"),
  15353. default: true
  15354. },
  15355. ]
  15356. ))
  15357. characterMakers.push(() => makeCharacter(
  15358. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15359. {
  15360. front: {
  15361. height: math.unit(1.1938, "meters"),
  15362. weight: math.unit(54, "kg"),
  15363. name: "Front",
  15364. image: {
  15365. source: "./media/characters/nebula-shahar/front.svg",
  15366. extra: 1642 / 1436,
  15367. bottom: 0.06
  15368. }
  15369. },
  15370. },
  15371. [
  15372. {
  15373. name: "Megamicro",
  15374. height: math.unit(0.3, "mm")
  15375. },
  15376. {
  15377. name: "Micro",
  15378. height: math.unit(3, "cm")
  15379. },
  15380. {
  15381. name: "Normal",
  15382. height: math.unit(138, "cm"),
  15383. default: true
  15384. },
  15385. {
  15386. name: "Macro",
  15387. height: math.unit(30, "m")
  15388. },
  15389. ]
  15390. ))
  15391. characterMakers.push(() => makeCharacter(
  15392. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15393. {
  15394. front: {
  15395. height: math.unit(5.24, "feet"),
  15396. weight: math.unit(150, "lb"),
  15397. name: "Front",
  15398. image: {
  15399. source: "./media/characters/shayla/front.svg",
  15400. extra: 1512 / 1414,
  15401. bottom: 0.01
  15402. }
  15403. },
  15404. back: {
  15405. height: math.unit(5.24, "feet"),
  15406. weight: math.unit(150, "lb"),
  15407. name: "Back",
  15408. image: {
  15409. source: "./media/characters/shayla/back.svg",
  15410. extra: 1512 / 1414
  15411. }
  15412. },
  15413. hand: {
  15414. height: math.unit(0.7781496062992126, "feet"),
  15415. name: "Hand",
  15416. image: {
  15417. source: "./media/characters/shayla/hand.svg"
  15418. }
  15419. },
  15420. foot: {
  15421. height: math.unit(1.4206036745406823, "feet"),
  15422. name: "Foot",
  15423. image: {
  15424. source: "./media/characters/shayla/foot.svg"
  15425. }
  15426. },
  15427. },
  15428. [
  15429. {
  15430. name: "Micro",
  15431. height: math.unit(0.32, "feet")
  15432. },
  15433. {
  15434. name: "Normal",
  15435. height: math.unit(5.24, "feet"),
  15436. default: true
  15437. },
  15438. {
  15439. name: "Macro",
  15440. height: math.unit(492.12, "feet")
  15441. },
  15442. {
  15443. name: "Megamacro",
  15444. height: math.unit(186.41, "miles")
  15445. },
  15446. ]
  15447. ))
  15448. characterMakers.push(() => makeCharacter(
  15449. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15450. {
  15451. front: {
  15452. height: math.unit(2.2, "m"),
  15453. weight: math.unit(120, "kg"),
  15454. name: "Front",
  15455. image: {
  15456. source: "./media/characters/pia-jr/front.svg",
  15457. extra: 1000 / 970,
  15458. bottom: 0.035
  15459. }
  15460. },
  15461. hand: {
  15462. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15463. name: "Hand",
  15464. image: {
  15465. source: "./media/characters/pia-jr/hand.svg"
  15466. }
  15467. },
  15468. paw: {
  15469. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15470. name: "Paw",
  15471. image: {
  15472. source: "./media/characters/pia-jr/paw.svg"
  15473. }
  15474. },
  15475. },
  15476. [
  15477. {
  15478. name: "Micro",
  15479. height: math.unit(1.2, "cm")
  15480. },
  15481. {
  15482. name: "Normal",
  15483. height: math.unit(2.2, "m"),
  15484. default: true
  15485. },
  15486. {
  15487. name: "Macro",
  15488. height: math.unit(180, "m")
  15489. },
  15490. {
  15491. name: "Megamacro",
  15492. height: math.unit(420, "km")
  15493. },
  15494. ]
  15495. ))
  15496. characterMakers.push(() => makeCharacter(
  15497. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15498. {
  15499. front: {
  15500. height: math.unit(2, "m"),
  15501. weight: math.unit(115, "kg"),
  15502. name: "Front",
  15503. image: {
  15504. source: "./media/characters/pia-sr/front.svg",
  15505. extra: 760 / 730,
  15506. bottom: 0.015
  15507. }
  15508. },
  15509. back: {
  15510. height: math.unit(2, "m"),
  15511. weight: math.unit(115, "kg"),
  15512. name: "Back",
  15513. image: {
  15514. source: "./media/characters/pia-sr/back.svg",
  15515. extra: 760 / 730,
  15516. bottom: 0.01
  15517. }
  15518. },
  15519. hand: {
  15520. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15521. name: "Hand",
  15522. image: {
  15523. source: "./media/characters/pia-sr/hand.svg"
  15524. }
  15525. },
  15526. foot: {
  15527. height: math.unit(1.83, "feet"),
  15528. name: "Foot",
  15529. image: {
  15530. source: "./media/characters/pia-sr/foot.svg"
  15531. }
  15532. },
  15533. },
  15534. [
  15535. {
  15536. name: "Micro",
  15537. height: math.unit(88, "mm")
  15538. },
  15539. {
  15540. name: "Normal",
  15541. height: math.unit(2, "m"),
  15542. default: true
  15543. },
  15544. {
  15545. name: "Macro",
  15546. height: math.unit(200, "m")
  15547. },
  15548. {
  15549. name: "Megamacro",
  15550. height: math.unit(420, "km")
  15551. },
  15552. ]
  15553. ))
  15554. characterMakers.push(() => makeCharacter(
  15555. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15556. {
  15557. front: {
  15558. height: math.unit(8 + 2 / 12, "feet"),
  15559. weight: math.unit(300, "lb"),
  15560. name: "Front",
  15561. image: {
  15562. source: "./media/characters/kibibyte/front.svg",
  15563. extra: 2221 / 2098,
  15564. bottom: 0.04
  15565. }
  15566. },
  15567. },
  15568. [
  15569. {
  15570. name: "Normal",
  15571. height: math.unit(8 + 2 / 12, "feet"),
  15572. default: true
  15573. },
  15574. {
  15575. name: "Socialable Macro",
  15576. height: math.unit(50, "feet")
  15577. },
  15578. {
  15579. name: "Macro",
  15580. height: math.unit(300, "feet")
  15581. },
  15582. {
  15583. name: "Megamacro",
  15584. height: math.unit(500, "miles")
  15585. },
  15586. ]
  15587. ))
  15588. characterMakers.push(() => makeCharacter(
  15589. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15590. {
  15591. front: {
  15592. height: math.unit(6, "feet"),
  15593. weight: math.unit(150, "lb"),
  15594. name: "Front",
  15595. image: {
  15596. source: "./media/characters/felix/front.svg",
  15597. extra: 762 / 722,
  15598. bottom: 0.02
  15599. }
  15600. },
  15601. frontClothed: {
  15602. height: math.unit(6, "feet"),
  15603. weight: math.unit(150, "lb"),
  15604. name: "Front (Clothed)",
  15605. image: {
  15606. source: "./media/characters/felix/front-clothed.svg",
  15607. extra: 762 / 722,
  15608. bottom: 0.02
  15609. }
  15610. },
  15611. },
  15612. [
  15613. {
  15614. name: "Normal",
  15615. height: math.unit(6 + 8 / 12, "feet"),
  15616. default: true
  15617. },
  15618. {
  15619. name: "Macro",
  15620. height: math.unit(2600, "feet")
  15621. },
  15622. {
  15623. name: "Megamacro",
  15624. height: math.unit(450, "miles")
  15625. },
  15626. ]
  15627. ))
  15628. characterMakers.push(() => makeCharacter(
  15629. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15630. {
  15631. front: {
  15632. height: math.unit(6 + 1 / 12, "feet"),
  15633. weight: math.unit(250, "lb"),
  15634. name: "Front",
  15635. image: {
  15636. source: "./media/characters/tobo/front.svg",
  15637. extra: 608 / 586,
  15638. bottom: 0.023
  15639. }
  15640. },
  15641. back: {
  15642. height: math.unit(6 + 1 / 12, "feet"),
  15643. weight: math.unit(250, "lb"),
  15644. name: "Back",
  15645. image: {
  15646. source: "./media/characters/tobo/back.svg",
  15647. extra: 608 / 586
  15648. }
  15649. },
  15650. },
  15651. [
  15652. {
  15653. name: "Nano",
  15654. height: math.unit(2, "nm")
  15655. },
  15656. {
  15657. name: "Megamicro",
  15658. height: math.unit(0.1, "mm")
  15659. },
  15660. {
  15661. name: "Micro",
  15662. height: math.unit(1, "inch"),
  15663. default: true
  15664. },
  15665. {
  15666. name: "Human-sized",
  15667. height: math.unit(6 + 1 / 12, "feet")
  15668. },
  15669. {
  15670. name: "Macro",
  15671. height: math.unit(250, "feet")
  15672. },
  15673. {
  15674. name: "Megamacro",
  15675. height: math.unit(75, "miles")
  15676. },
  15677. {
  15678. name: "Texas-sized",
  15679. height: math.unit(750, "miles")
  15680. },
  15681. {
  15682. name: "Teramacro",
  15683. height: math.unit(50000, "miles")
  15684. },
  15685. ]
  15686. ))
  15687. characterMakers.push(() => makeCharacter(
  15688. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15689. {
  15690. front: {
  15691. height: math.unit(6, "feet"),
  15692. weight: math.unit(269, "lb"),
  15693. name: "Front",
  15694. image: {
  15695. source: "./media/characters/danny-kapowsky/front.svg",
  15696. extra: 766 / 736,
  15697. bottom: 0.044
  15698. }
  15699. },
  15700. back: {
  15701. height: math.unit(6, "feet"),
  15702. weight: math.unit(269, "lb"),
  15703. name: "Back",
  15704. image: {
  15705. source: "./media/characters/danny-kapowsky/back.svg",
  15706. extra: 797 / 760,
  15707. bottom: 0.025
  15708. }
  15709. },
  15710. },
  15711. [
  15712. {
  15713. name: "Macro",
  15714. height: math.unit(150, "feet"),
  15715. default: true
  15716. },
  15717. {
  15718. name: "Macro+",
  15719. height: math.unit(200, "feet")
  15720. },
  15721. {
  15722. name: "Macro++",
  15723. height: math.unit(300, "feet")
  15724. },
  15725. {
  15726. name: "Macro+++",
  15727. height: math.unit(400, "feet")
  15728. },
  15729. ]
  15730. ))
  15731. characterMakers.push(() => makeCharacter(
  15732. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15733. {
  15734. side: {
  15735. height: math.unit(6, "feet"),
  15736. weight: math.unit(170, "lb"),
  15737. name: "Side",
  15738. image: {
  15739. source: "./media/characters/finn/side.svg",
  15740. extra: 1953 / 1807,
  15741. bottom: 0.057
  15742. }
  15743. },
  15744. },
  15745. [
  15746. {
  15747. name: "Megamacro",
  15748. height: math.unit(14445, "feet"),
  15749. default: true
  15750. },
  15751. ]
  15752. ))
  15753. characterMakers.push(() => makeCharacter(
  15754. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15755. {
  15756. front: {
  15757. height: math.unit(5 + 6 / 12, "feet"),
  15758. weight: math.unit(125, "lb"),
  15759. name: "Front",
  15760. image: {
  15761. source: "./media/characters/roy/front.svg",
  15762. extra: 1,
  15763. bottom: 0.11
  15764. }
  15765. },
  15766. },
  15767. [
  15768. {
  15769. name: "Micro",
  15770. height: math.unit(3, "inches"),
  15771. default: true
  15772. },
  15773. {
  15774. name: "Normal",
  15775. height: math.unit(5 + 6 / 12, "feet")
  15776. },
  15777. {
  15778. name: "Lesser Macro",
  15779. height: math.unit(60, "feet")
  15780. },
  15781. {
  15782. name: "Greater Macro",
  15783. height: math.unit(120, "feet")
  15784. },
  15785. ]
  15786. ))
  15787. characterMakers.push(() => makeCharacter(
  15788. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15789. {
  15790. front: {
  15791. height: math.unit(6, "feet"),
  15792. weight: math.unit(100, "lb"),
  15793. name: "Front",
  15794. image: {
  15795. source: "./media/characters/aevsivs/front.svg",
  15796. extra: 1,
  15797. bottom: 0.03
  15798. }
  15799. },
  15800. back: {
  15801. height: math.unit(6, "feet"),
  15802. weight: math.unit(100, "lb"),
  15803. name: "Back",
  15804. image: {
  15805. source: "./media/characters/aevsivs/back.svg"
  15806. }
  15807. },
  15808. },
  15809. [
  15810. {
  15811. name: "Micro",
  15812. height: math.unit(2, "inches"),
  15813. default: true
  15814. },
  15815. {
  15816. name: "Normal",
  15817. height: math.unit(5, "feet")
  15818. },
  15819. ]
  15820. ))
  15821. characterMakers.push(() => makeCharacter(
  15822. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15823. {
  15824. front: {
  15825. height: math.unit(5 + 7 / 12, "feet"),
  15826. weight: math.unit(159, "lb"),
  15827. name: "Front",
  15828. image: {
  15829. source: "./media/characters/hildegard/front.svg",
  15830. extra: 289 / 269,
  15831. bottom: 7.63 / 297.8
  15832. }
  15833. },
  15834. back: {
  15835. height: math.unit(5 + 7 / 12, "feet"),
  15836. weight: math.unit(159, "lb"),
  15837. name: "Back",
  15838. image: {
  15839. source: "./media/characters/hildegard/back.svg",
  15840. extra: 280 / 260,
  15841. bottom: 2.3 / 282
  15842. }
  15843. },
  15844. },
  15845. [
  15846. {
  15847. name: "Normal",
  15848. height: math.unit(5 + 7 / 12, "feet"),
  15849. default: true
  15850. },
  15851. ]
  15852. ))
  15853. characterMakers.push(() => makeCharacter(
  15854. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15855. {
  15856. bernard: {
  15857. height: math.unit(2 + 7 / 12, "feet"),
  15858. weight: math.unit(66, "lb"),
  15859. name: "Bernard",
  15860. rename: true,
  15861. image: {
  15862. source: "./media/characters/bernard-wilder/bernard.svg",
  15863. extra: 192 / 128,
  15864. bottom: 0.05
  15865. }
  15866. },
  15867. wilder: {
  15868. height: math.unit(5 + 8 / 12, "feet"),
  15869. weight: math.unit(143, "lb"),
  15870. name: "Wilder",
  15871. rename: true,
  15872. image: {
  15873. source: "./media/characters/bernard-wilder/wilder.svg",
  15874. extra: 361 / 312,
  15875. bottom: 0.02
  15876. }
  15877. },
  15878. },
  15879. [
  15880. {
  15881. name: "Normal",
  15882. height: math.unit(2 + 7 / 12, "feet"),
  15883. default: true
  15884. },
  15885. ]
  15886. ))
  15887. characterMakers.push(() => makeCharacter(
  15888. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15889. {
  15890. anthro: {
  15891. height: math.unit(6 + 1 / 12, "feet"),
  15892. weight: math.unit(155, "lb"),
  15893. name: "Anthro",
  15894. image: {
  15895. source: "./media/characters/hearth/anthro.svg",
  15896. extra: 1178/1136,
  15897. bottom: 28/1206
  15898. }
  15899. },
  15900. feral: {
  15901. height: math.unit(3.78, "feet"),
  15902. weight: math.unit(35, "kg"),
  15903. name: "Feral",
  15904. image: {
  15905. source: "./media/characters/hearth/feral.svg",
  15906. extra: 153 / 135,
  15907. bottom: 0.03
  15908. }
  15909. },
  15910. },
  15911. [
  15912. {
  15913. name: "Normal",
  15914. height: math.unit(6 + 1 / 12, "feet"),
  15915. default: true
  15916. },
  15917. ]
  15918. ))
  15919. characterMakers.push(() => makeCharacter(
  15920. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15921. {
  15922. front: {
  15923. height: math.unit(6, "feet"),
  15924. weight: math.unit(182, "lb"),
  15925. name: "Front",
  15926. image: {
  15927. source: "./media/characters/ingrid/front.svg",
  15928. extra: 294 / 268,
  15929. bottom: 0.027
  15930. }
  15931. },
  15932. },
  15933. [
  15934. {
  15935. name: "Normal",
  15936. height: math.unit(6, "feet"),
  15937. default: true
  15938. },
  15939. ]
  15940. ))
  15941. characterMakers.push(() => makeCharacter(
  15942. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15943. {
  15944. eevee: {
  15945. height: math.unit(2 + 10 / 12, "feet"),
  15946. weight: math.unit(86, "lb"),
  15947. name: "Malgam",
  15948. image: {
  15949. source: "./media/characters/malgam/eevee.svg",
  15950. extra: 952/784,
  15951. bottom: 38/990
  15952. }
  15953. },
  15954. sylveon: {
  15955. height: math.unit(4, "feet"),
  15956. weight: math.unit(101, "lb"),
  15957. name: "Future Malgam",
  15958. rename: true,
  15959. image: {
  15960. source: "./media/characters/malgam/sylveon.svg",
  15961. extra: 371 / 325,
  15962. bottom: 0.015
  15963. }
  15964. },
  15965. gigantamax: {
  15966. height: math.unit(50, "feet"),
  15967. name: "Gigantamax Malgam",
  15968. rename: true,
  15969. image: {
  15970. source: "./media/characters/malgam/gigantamax.svg"
  15971. }
  15972. },
  15973. },
  15974. [
  15975. {
  15976. name: "Normal",
  15977. height: math.unit(2 + 10 / 12, "feet"),
  15978. default: true
  15979. },
  15980. ]
  15981. ))
  15982. characterMakers.push(() => makeCharacter(
  15983. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15984. {
  15985. front: {
  15986. height: math.unit(5 + 11 / 12, "feet"),
  15987. weight: math.unit(188, "lb"),
  15988. name: "Front",
  15989. image: {
  15990. source: "./media/characters/fleur/front.svg",
  15991. extra: 309 / 283,
  15992. bottom: 0.007
  15993. }
  15994. },
  15995. },
  15996. [
  15997. {
  15998. name: "Normal",
  15999. height: math.unit(5 + 11 / 12, "feet"),
  16000. default: true
  16001. },
  16002. ]
  16003. ))
  16004. characterMakers.push(() => makeCharacter(
  16005. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16006. {
  16007. front: {
  16008. height: math.unit(5 + 4 / 12, "feet"),
  16009. weight: math.unit(122, "lb"),
  16010. name: "Front",
  16011. image: {
  16012. source: "./media/characters/jude/front.svg",
  16013. extra: 288 / 273,
  16014. bottom: 0.03
  16015. }
  16016. },
  16017. },
  16018. [
  16019. {
  16020. name: "Normal",
  16021. height: math.unit(5 + 4 / 12, "feet"),
  16022. default: true
  16023. },
  16024. ]
  16025. ))
  16026. characterMakers.push(() => makeCharacter(
  16027. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16028. {
  16029. front: {
  16030. height: math.unit(5 + 11 / 12, "feet"),
  16031. weight: math.unit(190, "lb"),
  16032. name: "Front",
  16033. image: {
  16034. source: "./media/characters/seara/front.svg",
  16035. extra: 1,
  16036. bottom: 0.05
  16037. }
  16038. },
  16039. },
  16040. [
  16041. {
  16042. name: "Normal",
  16043. height: math.unit(5 + 11 / 12, "feet"),
  16044. default: true
  16045. },
  16046. ]
  16047. ))
  16048. characterMakers.push(() => makeCharacter(
  16049. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16050. {
  16051. front: {
  16052. height: math.unit(16 + 5 / 12, "feet"),
  16053. weight: math.unit(524, "lb"),
  16054. name: "Front",
  16055. image: {
  16056. source: "./media/characters/caspian-lugia/front.svg",
  16057. extra: 1,
  16058. bottom: 0.04
  16059. }
  16060. },
  16061. },
  16062. [
  16063. {
  16064. name: "Normal",
  16065. height: math.unit(16 + 5 / 12, "feet"),
  16066. default: true
  16067. },
  16068. ]
  16069. ))
  16070. characterMakers.push(() => makeCharacter(
  16071. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16072. {
  16073. front: {
  16074. height: math.unit(5 + 7 / 12, "feet"),
  16075. weight: math.unit(170, "lb"),
  16076. name: "Front",
  16077. image: {
  16078. source: "./media/characters/mika/front.svg",
  16079. extra: 1,
  16080. bottom: 0.016
  16081. }
  16082. },
  16083. },
  16084. [
  16085. {
  16086. name: "Normal",
  16087. height: math.unit(5 + 7 / 12, "feet"),
  16088. default: true
  16089. },
  16090. ]
  16091. ))
  16092. characterMakers.push(() => makeCharacter(
  16093. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16094. {
  16095. front: {
  16096. height: math.unit(6 + 2 / 12, "feet"),
  16097. weight: math.unit(268, "lb"),
  16098. name: "Front",
  16099. image: {
  16100. source: "./media/characters/sol/front.svg",
  16101. extra: 247 / 231,
  16102. bottom: 0.05
  16103. }
  16104. },
  16105. },
  16106. [
  16107. {
  16108. name: "Normal",
  16109. height: math.unit(6 + 2 / 12, "feet"),
  16110. default: true
  16111. },
  16112. ]
  16113. ))
  16114. characterMakers.push(() => makeCharacter(
  16115. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16116. {
  16117. buizel: {
  16118. height: math.unit(2 + 5 / 12, "feet"),
  16119. weight: math.unit(87, "lb"),
  16120. name: "Front",
  16121. image: {
  16122. source: "./media/characters/umiko/buizel.svg",
  16123. extra: 172 / 157,
  16124. bottom: 0.01
  16125. },
  16126. form: "buizel",
  16127. default: true
  16128. },
  16129. floatzel: {
  16130. height: math.unit(5 + 9 / 12, "feet"),
  16131. weight: math.unit(250, "lb"),
  16132. name: "Front",
  16133. image: {
  16134. source: "./media/characters/umiko/floatzel.svg",
  16135. extra: 1076/1006,
  16136. bottom: 15/1091
  16137. },
  16138. form: "floatzel",
  16139. default: true
  16140. },
  16141. },
  16142. [
  16143. {
  16144. name: "Normal",
  16145. height: math.unit(2 + 5 / 12, "feet"),
  16146. form: "buizel",
  16147. default: true
  16148. },
  16149. {
  16150. name: "Normal",
  16151. height: math.unit(5 + 9 / 12, "feet"),
  16152. form: "floatzel",
  16153. default: true
  16154. },
  16155. ],
  16156. {
  16157. "buizel": {
  16158. name: "Buizel"
  16159. },
  16160. "floatzel": {
  16161. name: "Floatzel",
  16162. default: true
  16163. }
  16164. }
  16165. ))
  16166. characterMakers.push(() => makeCharacter(
  16167. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16168. {
  16169. front: {
  16170. height: math.unit(6 + 2 / 12, "feet"),
  16171. weight: math.unit(146, "lb"),
  16172. name: "Front",
  16173. image: {
  16174. source: "./media/characters/iliac/front.svg",
  16175. extra: 389 / 365,
  16176. bottom: 0.035
  16177. }
  16178. },
  16179. },
  16180. [
  16181. {
  16182. name: "Normal",
  16183. height: math.unit(6 + 2 / 12, "feet"),
  16184. default: true
  16185. },
  16186. ]
  16187. ))
  16188. characterMakers.push(() => makeCharacter(
  16189. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16190. {
  16191. front: {
  16192. height: math.unit(6, "feet"),
  16193. weight: math.unit(170, "lb"),
  16194. name: "Front",
  16195. image: {
  16196. source: "./media/characters/topaz/front.svg",
  16197. extra: 317 / 303,
  16198. bottom: 0.055
  16199. }
  16200. },
  16201. },
  16202. [
  16203. {
  16204. name: "Normal",
  16205. height: math.unit(6, "feet"),
  16206. default: true
  16207. },
  16208. ]
  16209. ))
  16210. characterMakers.push(() => makeCharacter(
  16211. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16212. {
  16213. front: {
  16214. height: math.unit(5 + 11 / 12, "feet"),
  16215. weight: math.unit(144, "lb"),
  16216. name: "Front",
  16217. image: {
  16218. source: "./media/characters/gabriel/front.svg",
  16219. extra: 285 / 262,
  16220. bottom: 0.004
  16221. }
  16222. },
  16223. },
  16224. [
  16225. {
  16226. name: "Normal",
  16227. height: math.unit(5 + 11 / 12, "feet"),
  16228. default: true
  16229. },
  16230. ]
  16231. ))
  16232. characterMakers.push(() => makeCharacter(
  16233. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16234. {
  16235. side: {
  16236. height: math.unit(6 + 5 / 12, "feet"),
  16237. weight: math.unit(300, "lb"),
  16238. name: "Side",
  16239. image: {
  16240. source: "./media/characters/tempest-suicune/side.svg",
  16241. extra: 195 / 154,
  16242. bottom: 0.04
  16243. }
  16244. },
  16245. },
  16246. [
  16247. {
  16248. name: "Normal",
  16249. height: math.unit(6 + 5 / 12, "feet"),
  16250. default: true
  16251. },
  16252. ]
  16253. ))
  16254. characterMakers.push(() => makeCharacter(
  16255. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16256. {
  16257. front: {
  16258. height: math.unit(7 + 2 / 12, "feet"),
  16259. weight: math.unit(322, "lb"),
  16260. name: "Front",
  16261. image: {
  16262. source: "./media/characters/vulcan/front.svg",
  16263. extra: 154 / 147,
  16264. bottom: 0.04
  16265. }
  16266. },
  16267. },
  16268. [
  16269. {
  16270. name: "Normal",
  16271. height: math.unit(7 + 2 / 12, "feet"),
  16272. default: true
  16273. },
  16274. ]
  16275. ))
  16276. characterMakers.push(() => makeCharacter(
  16277. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16278. {
  16279. front: {
  16280. height: math.unit(5 + 10 / 12, "feet"),
  16281. weight: math.unit(264, "lb"),
  16282. name: "Front",
  16283. image: {
  16284. source: "./media/characters/gault/front.svg",
  16285. extra: 161 / 140,
  16286. bottom: 0.028
  16287. }
  16288. },
  16289. },
  16290. [
  16291. {
  16292. name: "Normal",
  16293. height: math.unit(5 + 10 / 12, "feet"),
  16294. default: true
  16295. },
  16296. ]
  16297. ))
  16298. characterMakers.push(() => makeCharacter(
  16299. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16300. {
  16301. front: {
  16302. height: math.unit(6, "feet"),
  16303. weight: math.unit(150, "lb"),
  16304. name: "Front",
  16305. image: {
  16306. source: "./media/characters/shard/front.svg",
  16307. extra: 273 / 238,
  16308. bottom: 0.02
  16309. }
  16310. },
  16311. },
  16312. [
  16313. {
  16314. name: "Normal",
  16315. height: math.unit(3 + 6 / 12, "feet"),
  16316. default: true
  16317. },
  16318. ]
  16319. ))
  16320. characterMakers.push(() => makeCharacter(
  16321. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16322. {
  16323. front: {
  16324. height: math.unit(5 + 11 / 12, "feet"),
  16325. weight: math.unit(146, "lb"),
  16326. name: "Front",
  16327. image: {
  16328. source: "./media/characters/ashe/front.svg",
  16329. extra: 400 / 373,
  16330. bottom: 0.01
  16331. }
  16332. },
  16333. },
  16334. [
  16335. {
  16336. name: "Normal",
  16337. height: math.unit(5 + 11 / 12, "feet"),
  16338. default: true
  16339. },
  16340. ]
  16341. ))
  16342. characterMakers.push(() => makeCharacter(
  16343. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16344. {
  16345. front: {
  16346. height: math.unit(5 + 5 / 12, "feet"),
  16347. weight: math.unit(135, "lb"),
  16348. name: "Front",
  16349. image: {
  16350. source: "./media/characters/beatrix/front.svg",
  16351. extra: 392 / 379,
  16352. bottom: 0.01
  16353. }
  16354. },
  16355. },
  16356. [
  16357. {
  16358. name: "Normal",
  16359. height: math.unit(6, "feet"),
  16360. default: true
  16361. },
  16362. ]
  16363. ))
  16364. characterMakers.push(() => makeCharacter(
  16365. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16366. {
  16367. front: {
  16368. height: math.unit(6 + 2/12, "feet"),
  16369. weight: math.unit(135, "lb"),
  16370. name: "Front",
  16371. image: {
  16372. source: "./media/characters/ignatius/front.svg",
  16373. extra: 1380/1259,
  16374. bottom: 27/1407
  16375. }
  16376. },
  16377. },
  16378. [
  16379. {
  16380. name: "Normal",
  16381. height: math.unit(6 + 2/12, "feet"),
  16382. default: true
  16383. },
  16384. ]
  16385. ))
  16386. characterMakers.push(() => makeCharacter(
  16387. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16388. {
  16389. front: {
  16390. height: math.unit(6 + 2 / 12, "feet"),
  16391. weight: math.unit(138, "lb"),
  16392. name: "Front",
  16393. image: {
  16394. source: "./media/characters/mei-li/front.svg",
  16395. extra: 237 / 229,
  16396. bottom: 0.03
  16397. }
  16398. },
  16399. },
  16400. [
  16401. {
  16402. name: "Normal",
  16403. height: math.unit(6 + 2 / 12, "feet"),
  16404. default: true
  16405. },
  16406. ]
  16407. ))
  16408. characterMakers.push(() => makeCharacter(
  16409. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16410. {
  16411. front: {
  16412. height: math.unit(2 + 4 / 12, "feet"),
  16413. weight: math.unit(62, "lb"),
  16414. name: "Front",
  16415. image: {
  16416. source: "./media/characters/puru/front.svg",
  16417. extra: 206 / 149,
  16418. bottom: 0.06
  16419. }
  16420. },
  16421. },
  16422. [
  16423. {
  16424. name: "Normal",
  16425. height: math.unit(2 + 4 / 12, "feet"),
  16426. default: true
  16427. },
  16428. ]
  16429. ))
  16430. characterMakers.push(() => makeCharacter(
  16431. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16432. {
  16433. anthro: {
  16434. height: math.unit(5 + 8/12, "feet"),
  16435. weight: math.unit(200, "lb"),
  16436. energyNeed: math.unit(2000, "kcal"),
  16437. name: "Anthro",
  16438. image: {
  16439. source: "./media/characters/kee/anthro.svg",
  16440. extra: 3251/3184,
  16441. bottom: 250/3501
  16442. }
  16443. },
  16444. taur: {
  16445. height: math.unit(11, "feet"),
  16446. weight: math.unit(500, "lb"),
  16447. energyNeed: math.unit(5000, "kcal"),
  16448. name: "Taur",
  16449. image: {
  16450. source: "./media/characters/kee/taur.svg",
  16451. extra: 1362/1320,
  16452. bottom: 83/1445
  16453. }
  16454. },
  16455. },
  16456. [
  16457. {
  16458. name: "Normal",
  16459. height: math.unit(5 + 8/12, "feet"),
  16460. default: true
  16461. },
  16462. {
  16463. name: "Macro",
  16464. height: math.unit(35, "feet")
  16465. },
  16466. ]
  16467. ))
  16468. characterMakers.push(() => makeCharacter(
  16469. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16470. {
  16471. anthro: {
  16472. height: math.unit(7, "feet"),
  16473. weight: math.unit(190, "lb"),
  16474. name: "Anthro",
  16475. image: {
  16476. source: "./media/characters/cobalt-dracha/anthro.svg",
  16477. extra: 231 / 225,
  16478. bottom: 0.04
  16479. }
  16480. },
  16481. feral: {
  16482. height: math.unit(9 + 7 / 12, "feet"),
  16483. weight: math.unit(294, "lb"),
  16484. name: "Feral",
  16485. image: {
  16486. source: "./media/characters/cobalt-dracha/feral.svg",
  16487. extra: 692 / 633,
  16488. bottom: 0.05
  16489. }
  16490. },
  16491. },
  16492. [
  16493. {
  16494. name: "Normal",
  16495. height: math.unit(7, "feet"),
  16496. default: true
  16497. },
  16498. ]
  16499. ))
  16500. characterMakers.push(() => makeCharacter(
  16501. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16502. {
  16503. fallen: {
  16504. height: math.unit(11 + 8 / 12, "feet"),
  16505. weight: math.unit(485, "lb"),
  16506. name: "Java (Fallen)",
  16507. rename: true,
  16508. image: {
  16509. source: "./media/characters/java/fallen.svg",
  16510. extra: 226 / 208,
  16511. bottom: 0.005
  16512. }
  16513. },
  16514. godkin: {
  16515. height: math.unit(10 + 6 / 12, "feet"),
  16516. weight: math.unit(328, "lb"),
  16517. name: "Java (Godkin)",
  16518. rename: true,
  16519. image: {
  16520. source: "./media/characters/java/godkin.svg",
  16521. extra: 1104/1068,
  16522. bottom: 36/1140
  16523. }
  16524. },
  16525. },
  16526. [
  16527. {
  16528. name: "Normal",
  16529. height: math.unit(11 + 8 / 12, "feet"),
  16530. default: true
  16531. },
  16532. ]
  16533. ))
  16534. characterMakers.push(() => makeCharacter(
  16535. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16536. {
  16537. front: {
  16538. height: math.unit(5 + 9 / 12, "feet"),
  16539. weight: math.unit(170, "lb"),
  16540. name: "Front",
  16541. image: {
  16542. source: "./media/characters/purna/front.svg",
  16543. extra: 239 / 229,
  16544. bottom: 0.01
  16545. }
  16546. },
  16547. },
  16548. [
  16549. {
  16550. name: "Normal",
  16551. height: math.unit(5 + 9 / 12, "feet"),
  16552. default: true
  16553. },
  16554. ]
  16555. ))
  16556. characterMakers.push(() => makeCharacter(
  16557. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16558. {
  16559. front: {
  16560. height: math.unit(5 + 9 / 12, "feet"),
  16561. weight: math.unit(142, "lb"),
  16562. name: "Front",
  16563. image: {
  16564. source: "./media/characters/kuva/front.svg",
  16565. extra: 281 / 271,
  16566. bottom: 0.006
  16567. }
  16568. },
  16569. },
  16570. [
  16571. {
  16572. name: "Normal",
  16573. height: math.unit(5 + 9 / 12, "feet"),
  16574. default: true
  16575. },
  16576. ]
  16577. ))
  16578. characterMakers.push(() => makeCharacter(
  16579. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16580. {
  16581. anthro: {
  16582. height: math.unit(9 + 2 / 12, "feet"),
  16583. weight: math.unit(270, "lb"),
  16584. name: "Anthro",
  16585. image: {
  16586. source: "./media/characters/embra/anthro.svg",
  16587. extra: 200 / 187,
  16588. bottom: 0.02
  16589. }
  16590. },
  16591. feral: {
  16592. height: math.unit(18 + 8 / 12, "feet"),
  16593. weight: math.unit(576, "lb"),
  16594. name: "Feral",
  16595. image: {
  16596. source: "./media/characters/embra/feral.svg",
  16597. extra: 152 / 137,
  16598. bottom: 0.037
  16599. }
  16600. },
  16601. },
  16602. [
  16603. {
  16604. name: "Normal",
  16605. height: math.unit(9 + 2 / 12, "feet"),
  16606. default: true
  16607. },
  16608. ]
  16609. ))
  16610. characterMakers.push(() => makeCharacter(
  16611. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16612. {
  16613. anthro: {
  16614. height: math.unit(10 + 9 / 12, "feet"),
  16615. weight: math.unit(224, "lb"),
  16616. name: "Anthro",
  16617. image: {
  16618. source: "./media/characters/grottos/anthro.svg",
  16619. extra: 350 / 332,
  16620. bottom: 0.045
  16621. }
  16622. },
  16623. feral: {
  16624. height: math.unit(20 + 7 / 12, "feet"),
  16625. weight: math.unit(629, "lb"),
  16626. name: "Feral",
  16627. image: {
  16628. source: "./media/characters/grottos/feral.svg",
  16629. extra: 207 / 190,
  16630. bottom: 0.05
  16631. }
  16632. },
  16633. },
  16634. [
  16635. {
  16636. name: "Normal",
  16637. height: math.unit(10 + 9 / 12, "feet"),
  16638. default: true
  16639. },
  16640. ]
  16641. ))
  16642. characterMakers.push(() => makeCharacter(
  16643. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16644. {
  16645. anthro: {
  16646. height: math.unit(9 + 6 / 12, "feet"),
  16647. weight: math.unit(298, "lb"),
  16648. name: "Anthro",
  16649. image: {
  16650. source: "./media/characters/frifna/anthro.svg",
  16651. extra: 282 / 269,
  16652. bottom: 0.015
  16653. }
  16654. },
  16655. feral: {
  16656. height: math.unit(16 + 2 / 12, "feet"),
  16657. weight: math.unit(624, "lb"),
  16658. name: "Feral",
  16659. image: {
  16660. source: "./media/characters/frifna/feral.svg"
  16661. }
  16662. },
  16663. },
  16664. [
  16665. {
  16666. name: "Normal",
  16667. height: math.unit(9 + 6 / 12, "feet"),
  16668. default: true
  16669. },
  16670. ]
  16671. ))
  16672. characterMakers.push(() => makeCharacter(
  16673. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16674. {
  16675. front: {
  16676. height: math.unit(6 + 2 / 12, "feet"),
  16677. weight: math.unit(168, "lb"),
  16678. name: "Front",
  16679. image: {
  16680. source: "./media/characters/elise/front.svg",
  16681. extra: 276 / 271
  16682. }
  16683. },
  16684. },
  16685. [
  16686. {
  16687. name: "Normal",
  16688. height: math.unit(6 + 2 / 12, "feet"),
  16689. default: true
  16690. },
  16691. ]
  16692. ))
  16693. characterMakers.push(() => makeCharacter(
  16694. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16695. {
  16696. front: {
  16697. height: math.unit(5 + 10 / 12, "feet"),
  16698. weight: math.unit(210, "lb"),
  16699. name: "Front",
  16700. image: {
  16701. source: "./media/characters/glade/front.svg",
  16702. extra: 258 / 247,
  16703. bottom: 0.008
  16704. }
  16705. },
  16706. },
  16707. [
  16708. {
  16709. name: "Normal",
  16710. height: math.unit(5 + 10 / 12, "feet"),
  16711. default: true
  16712. },
  16713. ]
  16714. ))
  16715. characterMakers.push(() => makeCharacter(
  16716. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16717. {
  16718. front: {
  16719. height: math.unit(5 + 10 / 12, "feet"),
  16720. weight: math.unit(129, "lb"),
  16721. name: "Front",
  16722. image: {
  16723. source: "./media/characters/rina/front.svg",
  16724. extra: 266 / 255,
  16725. bottom: 0.005
  16726. }
  16727. },
  16728. },
  16729. [
  16730. {
  16731. name: "Normal",
  16732. height: math.unit(5 + 10 / 12, "feet"),
  16733. default: true
  16734. },
  16735. ]
  16736. ))
  16737. characterMakers.push(() => makeCharacter(
  16738. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16739. {
  16740. front: {
  16741. height: math.unit(6 + 1 / 12, "feet"),
  16742. weight: math.unit(192, "lb"),
  16743. name: "Front",
  16744. image: {
  16745. source: "./media/characters/veronica/front.svg",
  16746. extra: 319 / 309,
  16747. bottom: 0.005
  16748. }
  16749. },
  16750. },
  16751. [
  16752. {
  16753. name: "Normal",
  16754. height: math.unit(6 + 1 / 12, "feet"),
  16755. default: true
  16756. },
  16757. ]
  16758. ))
  16759. characterMakers.push(() => makeCharacter(
  16760. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16761. {
  16762. front: {
  16763. height: math.unit(9 + 3 / 12, "feet"),
  16764. weight: math.unit(1100, "lb"),
  16765. name: "Front",
  16766. image: {
  16767. source: "./media/characters/braxton/front.svg",
  16768. extra: 1057 / 984,
  16769. bottom: 0.05
  16770. }
  16771. },
  16772. },
  16773. [
  16774. {
  16775. name: "Normal",
  16776. height: math.unit(9 + 3 / 12, "feet")
  16777. },
  16778. {
  16779. name: "Giant",
  16780. height: math.unit(300, "feet"),
  16781. default: true
  16782. },
  16783. {
  16784. name: "Macro",
  16785. height: math.unit(700, "feet")
  16786. },
  16787. {
  16788. name: "Megamacro",
  16789. height: math.unit(6000, "feet")
  16790. },
  16791. ]
  16792. ))
  16793. characterMakers.push(() => makeCharacter(
  16794. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16795. {
  16796. front: {
  16797. height: math.unit(6 + 7 / 12, "feet"),
  16798. weight: math.unit(150, "lb"),
  16799. name: "Front",
  16800. image: {
  16801. source: "./media/characters/blue-feyonics/front.svg",
  16802. extra: 1403 / 1306,
  16803. bottom: 0.047
  16804. }
  16805. },
  16806. },
  16807. [
  16808. {
  16809. name: "Normal",
  16810. height: math.unit(6 + 7 / 12, "feet"),
  16811. default: true
  16812. },
  16813. ]
  16814. ))
  16815. characterMakers.push(() => makeCharacter(
  16816. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16817. {
  16818. front: {
  16819. height: math.unit(1.8, "meters"),
  16820. weight: math.unit(60, "kg"),
  16821. name: "Front",
  16822. image: {
  16823. source: "./media/characters/maxwell/front.svg",
  16824. extra: 2060 / 1873
  16825. }
  16826. },
  16827. },
  16828. [
  16829. {
  16830. name: "Micro",
  16831. height: math.unit(1, "mm")
  16832. },
  16833. {
  16834. name: "Normal",
  16835. height: math.unit(1.8, "meter"),
  16836. default: true
  16837. },
  16838. {
  16839. name: "Macro",
  16840. height: math.unit(30, "meters")
  16841. },
  16842. {
  16843. name: "Megamacro",
  16844. height: math.unit(10, "km")
  16845. },
  16846. ]
  16847. ))
  16848. characterMakers.push(() => makeCharacter(
  16849. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16850. {
  16851. front: {
  16852. height: math.unit(6, "feet"),
  16853. weight: math.unit(150, "lb"),
  16854. name: "Front",
  16855. image: {
  16856. source: "./media/characters/jack/front.svg",
  16857. extra: 1754 / 1640,
  16858. bottom: 0.01
  16859. }
  16860. },
  16861. },
  16862. [
  16863. {
  16864. name: "Normal",
  16865. height: math.unit(80000, "feet"),
  16866. default: true
  16867. },
  16868. {
  16869. name: "Max size",
  16870. height: math.unit(10, "lightyears")
  16871. },
  16872. ]
  16873. ))
  16874. characterMakers.push(() => makeCharacter(
  16875. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16876. {
  16877. urban: {
  16878. height: math.unit(5, "feet"),
  16879. weight: math.unit(240, "lb"),
  16880. name: "Urban",
  16881. image: {
  16882. source: "./media/characters/cafat/urban.svg",
  16883. extra: 1223/1126,
  16884. bottom: 205/1428
  16885. }
  16886. },
  16887. summer: {
  16888. height: math.unit(5, "feet"),
  16889. weight: math.unit(240, "lb"),
  16890. name: "Summer",
  16891. image: {
  16892. source: "./media/characters/cafat/summer.svg",
  16893. extra: 1223/1126,
  16894. bottom: 205/1428
  16895. }
  16896. },
  16897. winter: {
  16898. height: math.unit(5, "feet"),
  16899. weight: math.unit(240, "lb"),
  16900. name: "Winter",
  16901. image: {
  16902. source: "./media/characters/cafat/winter.svg",
  16903. extra: 1223/1126,
  16904. bottom: 205/1428
  16905. }
  16906. },
  16907. lingerie: {
  16908. height: math.unit(5, "feet"),
  16909. weight: math.unit(240, "lb"),
  16910. name: "Lingerie",
  16911. image: {
  16912. source: "./media/characters/cafat/lingerie.svg",
  16913. extra: 1223/1126,
  16914. bottom: 205/1428
  16915. }
  16916. },
  16917. upright: {
  16918. height: math.unit(6.3, "feet"),
  16919. weight: math.unit(240, "lb"),
  16920. name: "Upright",
  16921. image: {
  16922. source: "./media/characters/cafat/upright.svg",
  16923. bottom: 0.01
  16924. }
  16925. },
  16926. uprightFull: {
  16927. height: math.unit(6.3, "feet"),
  16928. weight: math.unit(240, "lb"),
  16929. name: "Upright (Full)",
  16930. image: {
  16931. source: "./media/characters/cafat/upright-full.svg",
  16932. bottom: 0.01
  16933. }
  16934. },
  16935. },
  16936. [
  16937. {
  16938. name: "Small",
  16939. height: math.unit(5, "feet"),
  16940. default: true
  16941. },
  16942. {
  16943. name: "Large",
  16944. height: math.unit(13, "feet")
  16945. },
  16946. ]
  16947. ))
  16948. characterMakers.push(() => makeCharacter(
  16949. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16950. {
  16951. front: {
  16952. height: math.unit(6, "feet"),
  16953. weight: math.unit(150, "lb"),
  16954. name: "Front",
  16955. image: {
  16956. source: "./media/characters/verin-raharra/front.svg",
  16957. extra: 5019 / 4835,
  16958. bottom: 0.023
  16959. }
  16960. },
  16961. },
  16962. [
  16963. {
  16964. name: "Normal",
  16965. height: math.unit(7 + 5 / 12, "feet"),
  16966. default: true
  16967. },
  16968. {
  16969. name: "Upsized",
  16970. height: math.unit(20, "feet")
  16971. },
  16972. ]
  16973. ))
  16974. characterMakers.push(() => makeCharacter(
  16975. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16976. {
  16977. front: {
  16978. height: math.unit(7, "feet"),
  16979. weight: math.unit(230, "lb"),
  16980. name: "Front",
  16981. image: {
  16982. source: "./media/characters/nakata/front.svg",
  16983. extra: 1.005,
  16984. bottom: 0.01
  16985. }
  16986. },
  16987. },
  16988. [
  16989. {
  16990. name: "Normal",
  16991. height: math.unit(7, "feet"),
  16992. default: true
  16993. },
  16994. {
  16995. name: "Big",
  16996. height: math.unit(14, "feet")
  16997. },
  16998. {
  16999. name: "Macro",
  17000. height: math.unit(400, "feet")
  17001. },
  17002. ]
  17003. ))
  17004. characterMakers.push(() => makeCharacter(
  17005. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17006. {
  17007. front: {
  17008. height: math.unit(4.91, "feet"),
  17009. weight: math.unit(100, "lb"),
  17010. name: "Front",
  17011. image: {
  17012. source: "./media/characters/lily/front.svg",
  17013. extra: 1585 / 1415,
  17014. bottom: 0.02
  17015. }
  17016. },
  17017. },
  17018. [
  17019. {
  17020. name: "Normal",
  17021. height: math.unit(4.91, "feet"),
  17022. default: true
  17023. },
  17024. ]
  17025. ))
  17026. characterMakers.push(() => makeCharacter(
  17027. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17028. {
  17029. laying: {
  17030. height: math.unit(4 + 4 / 12, "feet"),
  17031. weight: math.unit(600, "lb"),
  17032. name: "Laying",
  17033. image: {
  17034. source: "./media/characters/sheila/laying.svg",
  17035. extra: 1333 / 1265,
  17036. bottom: 0.16
  17037. }
  17038. },
  17039. },
  17040. [
  17041. {
  17042. name: "Normal",
  17043. height: math.unit(4 + 4 / 12, "feet"),
  17044. default: true
  17045. },
  17046. ]
  17047. ))
  17048. characterMakers.push(() => makeCharacter(
  17049. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17050. {
  17051. front: {
  17052. height: math.unit(6, "feet"),
  17053. weight: math.unit(190, "lb"),
  17054. name: "Front",
  17055. image: {
  17056. source: "./media/characters/sax/front.svg",
  17057. extra: 1187 / 973,
  17058. bottom: 0.042
  17059. }
  17060. },
  17061. },
  17062. [
  17063. {
  17064. name: "Micro",
  17065. height: math.unit(4, "inches"),
  17066. default: true
  17067. },
  17068. ]
  17069. ))
  17070. characterMakers.push(() => makeCharacter(
  17071. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17072. {
  17073. front: {
  17074. height: math.unit(6, "feet"),
  17075. weight: math.unit(150, "lb"),
  17076. name: "Front",
  17077. image: {
  17078. source: "./media/characters/pandora/front.svg",
  17079. extra: 2720 / 2556,
  17080. bottom: 0.015
  17081. }
  17082. },
  17083. back: {
  17084. height: math.unit(6, "feet"),
  17085. weight: math.unit(150, "lb"),
  17086. name: "Back",
  17087. image: {
  17088. source: "./media/characters/pandora/back.svg",
  17089. extra: 2720 / 2556,
  17090. bottom: 0.01
  17091. }
  17092. },
  17093. beans: {
  17094. height: math.unit(6 / 8, "feet"),
  17095. name: "Beans",
  17096. image: {
  17097. source: "./media/characters/pandora/beans.svg"
  17098. }
  17099. },
  17100. collar: {
  17101. height: math.unit(0.31, "feet"),
  17102. name: "Collar",
  17103. image: {
  17104. source: "./media/characters/pandora/collar.svg"
  17105. }
  17106. },
  17107. skirt: {
  17108. height: math.unit(6, "feet"),
  17109. weight: math.unit(150, "lb"),
  17110. name: "Skirt",
  17111. image: {
  17112. source: "./media/characters/pandora/skirt.svg",
  17113. extra: 1622 / 1525,
  17114. bottom: 0.015
  17115. }
  17116. },
  17117. hoodie: {
  17118. height: math.unit(6, "feet"),
  17119. weight: math.unit(150, "lb"),
  17120. name: "Hoodie",
  17121. image: {
  17122. source: "./media/characters/pandora/hoodie.svg",
  17123. extra: 1622 / 1525,
  17124. bottom: 0.015
  17125. }
  17126. },
  17127. casual: {
  17128. height: math.unit(6, "feet"),
  17129. weight: math.unit(150, "lb"),
  17130. name: "Casual",
  17131. image: {
  17132. source: "./media/characters/pandora/casual.svg",
  17133. extra: 1622 / 1525,
  17134. bottom: 0.015
  17135. }
  17136. },
  17137. },
  17138. [
  17139. {
  17140. name: "Normal",
  17141. height: math.unit(6, "feet")
  17142. },
  17143. {
  17144. name: "Big Steppy",
  17145. height: math.unit(1, "km"),
  17146. default: true
  17147. },
  17148. {
  17149. name: "Galactic Steppy",
  17150. height: math.unit(2, "gigameters")
  17151. },
  17152. ]
  17153. ))
  17154. characterMakers.push(() => makeCharacter(
  17155. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17156. {
  17157. side: {
  17158. height: math.unit(10, "feet"),
  17159. weight: math.unit(800, "kg"),
  17160. name: "Side",
  17161. image: {
  17162. source: "./media/characters/venio-darcony/side.svg",
  17163. extra: 1373 / 1003,
  17164. bottom: 0.037
  17165. }
  17166. },
  17167. front: {
  17168. height: math.unit(19, "feet"),
  17169. weight: math.unit(800, "kg"),
  17170. name: "Front",
  17171. image: {
  17172. source: "./media/characters/venio-darcony/front.svg"
  17173. }
  17174. },
  17175. back: {
  17176. height: math.unit(19, "feet"),
  17177. weight: math.unit(800, "kg"),
  17178. name: "Back",
  17179. image: {
  17180. source: "./media/characters/venio-darcony/back.svg"
  17181. }
  17182. },
  17183. sideNsfw: {
  17184. height: math.unit(10, "feet"),
  17185. weight: math.unit(800, "kg"),
  17186. name: "Side (NSFW)",
  17187. image: {
  17188. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17189. extra: 1373 / 1003,
  17190. bottom: 0.037
  17191. }
  17192. },
  17193. frontNsfw: {
  17194. height: math.unit(19, "feet"),
  17195. weight: math.unit(800, "kg"),
  17196. name: "Front (NSFW)",
  17197. image: {
  17198. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17199. }
  17200. },
  17201. backNsfw: {
  17202. height: math.unit(19, "feet"),
  17203. weight: math.unit(800, "kg"),
  17204. name: "Back (NSFW)",
  17205. image: {
  17206. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17207. }
  17208. },
  17209. sideArmored: {
  17210. height: math.unit(10, "feet"),
  17211. weight: math.unit(800, "kg"),
  17212. name: "Side (Armored)",
  17213. image: {
  17214. source: "./media/characters/venio-darcony/side-armored.svg",
  17215. extra: 1373 / 1003,
  17216. bottom: 0.037
  17217. }
  17218. },
  17219. frontArmored: {
  17220. height: math.unit(19, "feet"),
  17221. weight: math.unit(900, "kg"),
  17222. name: "Front (Armored)",
  17223. image: {
  17224. source: "./media/characters/venio-darcony/front-armored.svg"
  17225. }
  17226. },
  17227. backArmored: {
  17228. height: math.unit(19, "feet"),
  17229. weight: math.unit(900, "kg"),
  17230. name: "Back (Armored)",
  17231. image: {
  17232. source: "./media/characters/venio-darcony/back-armored.svg"
  17233. }
  17234. },
  17235. sword: {
  17236. height: math.unit(10, "feet"),
  17237. weight: math.unit(50, "lb"),
  17238. name: "Sword",
  17239. image: {
  17240. source: "./media/characters/venio-darcony/sword.svg"
  17241. }
  17242. },
  17243. },
  17244. [
  17245. {
  17246. name: "Normal",
  17247. height: math.unit(10, "feet")
  17248. },
  17249. {
  17250. name: "Macro",
  17251. height: math.unit(130, "feet"),
  17252. default: true
  17253. },
  17254. {
  17255. name: "Macro+",
  17256. height: math.unit(240, "feet")
  17257. },
  17258. ]
  17259. ))
  17260. characterMakers.push(() => makeCharacter(
  17261. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17262. {
  17263. front: {
  17264. height: math.unit(6, "feet"),
  17265. weight: math.unit(150, "lb"),
  17266. name: "Front",
  17267. image: {
  17268. source: "./media/characters/veski/front.svg",
  17269. extra: 1299 / 1225,
  17270. bottom: 0.04
  17271. }
  17272. },
  17273. back: {
  17274. height: math.unit(6, "feet"),
  17275. weight: math.unit(150, "lb"),
  17276. name: "Back",
  17277. image: {
  17278. source: "./media/characters/veski/back.svg",
  17279. extra: 1299 / 1225,
  17280. bottom: 0.008
  17281. }
  17282. },
  17283. maw: {
  17284. height: math.unit(1.5 * 1.21, "feet"),
  17285. name: "Maw",
  17286. image: {
  17287. source: "./media/characters/veski/maw.svg"
  17288. }
  17289. },
  17290. },
  17291. [
  17292. {
  17293. name: "Macro",
  17294. height: math.unit(2, "km"),
  17295. default: true
  17296. },
  17297. ]
  17298. ))
  17299. characterMakers.push(() => makeCharacter(
  17300. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17301. {
  17302. front: {
  17303. height: math.unit(5 + 7 / 12, "feet"),
  17304. name: "Front",
  17305. image: {
  17306. source: "./media/characters/isabelle/front.svg",
  17307. extra: 2130 / 1976,
  17308. bottom: 0.05
  17309. }
  17310. },
  17311. },
  17312. [
  17313. {
  17314. name: "Supermicro",
  17315. height: math.unit(10, "micrometers")
  17316. },
  17317. {
  17318. name: "Micro",
  17319. height: math.unit(1, "inch")
  17320. },
  17321. {
  17322. name: "Tiny",
  17323. height: math.unit(5, "inches")
  17324. },
  17325. {
  17326. name: "Standard",
  17327. height: math.unit(5 + 7 / 12, "inches")
  17328. },
  17329. {
  17330. name: "Macro",
  17331. height: math.unit(80, "meters"),
  17332. default: true
  17333. },
  17334. {
  17335. name: "Megamacro",
  17336. height: math.unit(250, "meters")
  17337. },
  17338. {
  17339. name: "Gigamacro",
  17340. height: math.unit(5, "km")
  17341. },
  17342. {
  17343. name: "Cosmic",
  17344. height: math.unit(2.5e6, "miles")
  17345. },
  17346. ]
  17347. ))
  17348. characterMakers.push(() => makeCharacter(
  17349. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17350. {
  17351. front: {
  17352. height: math.unit(6, "feet"),
  17353. weight: math.unit(150, "lb"),
  17354. name: "Front",
  17355. image: {
  17356. source: "./media/characters/hanzo/front.svg",
  17357. extra: 374 / 344,
  17358. bottom: 0.02
  17359. }
  17360. },
  17361. },
  17362. [
  17363. {
  17364. name: "Normal",
  17365. height: math.unit(8, "feet"),
  17366. default: true
  17367. },
  17368. ]
  17369. ))
  17370. characterMakers.push(() => makeCharacter(
  17371. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17372. {
  17373. front: {
  17374. height: math.unit(7, "feet"),
  17375. weight: math.unit(130, "lb"),
  17376. name: "Front",
  17377. image: {
  17378. source: "./media/characters/anna/front.svg",
  17379. extra: 169 / 145,
  17380. bottom: 0.06
  17381. }
  17382. },
  17383. full: {
  17384. height: math.unit(4.96, "feet"),
  17385. weight: math.unit(220, "lb"),
  17386. name: "Full",
  17387. image: {
  17388. source: "./media/characters/anna/full.svg",
  17389. extra: 138 / 114,
  17390. bottom: 0.15
  17391. }
  17392. },
  17393. tongue: {
  17394. height: math.unit(2.53, "feet"),
  17395. name: "Tongue",
  17396. image: {
  17397. source: "./media/characters/anna/tongue.svg"
  17398. }
  17399. },
  17400. },
  17401. [
  17402. {
  17403. name: "Normal",
  17404. height: math.unit(7, "feet"),
  17405. default: true
  17406. },
  17407. ]
  17408. ))
  17409. characterMakers.push(() => makeCharacter(
  17410. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17411. {
  17412. front: {
  17413. height: math.unit(7, "feet"),
  17414. weight: math.unit(150, "lb"),
  17415. name: "Front",
  17416. image: {
  17417. source: "./media/characters/ian-corvid/front.svg",
  17418. extra: 150 / 142,
  17419. bottom: 0.02
  17420. }
  17421. },
  17422. back: {
  17423. height: math.unit(7, "feet"),
  17424. weight: math.unit(150, "lb"),
  17425. name: "Back",
  17426. image: {
  17427. source: "./media/characters/ian-corvid/back.svg",
  17428. extra: 150 / 143,
  17429. bottom: 0.01
  17430. }
  17431. },
  17432. stomping: {
  17433. height: math.unit(7, "feet"),
  17434. weight: math.unit(150, "lb"),
  17435. name: "Stomping",
  17436. image: {
  17437. source: "./media/characters/ian-corvid/stomping.svg",
  17438. extra: 76 / 72
  17439. }
  17440. },
  17441. sitting: {
  17442. height: math.unit(7 / 1.8, "feet"),
  17443. weight: math.unit(150, "lb"),
  17444. name: "Sitting",
  17445. image: {
  17446. source: "./media/characters/ian-corvid/sitting.svg",
  17447. extra: 1400 / 1269,
  17448. bottom: 0.15
  17449. }
  17450. },
  17451. },
  17452. [
  17453. {
  17454. name: "Tiny Microw",
  17455. height: math.unit(1, "inch")
  17456. },
  17457. {
  17458. name: "Microw",
  17459. height: math.unit(6, "inches")
  17460. },
  17461. {
  17462. name: "Crow",
  17463. height: math.unit(7 + 1 / 12, "feet"),
  17464. default: true
  17465. },
  17466. {
  17467. name: "Macrow",
  17468. height: math.unit(176, "feet")
  17469. },
  17470. ]
  17471. ))
  17472. characterMakers.push(() => makeCharacter(
  17473. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17474. {
  17475. front: {
  17476. height: math.unit(5 + 7 / 12, "feet"),
  17477. weight: math.unit(147, "lb"),
  17478. name: "Front",
  17479. image: {
  17480. source: "./media/characters/natalie-kellon/front.svg",
  17481. extra: 1214 / 1141,
  17482. bottom: 0.02
  17483. }
  17484. },
  17485. },
  17486. [
  17487. {
  17488. name: "Micro",
  17489. height: math.unit(1 / 16, "inch")
  17490. },
  17491. {
  17492. name: "Tiny",
  17493. height: math.unit(4, "inches")
  17494. },
  17495. {
  17496. name: "Normal",
  17497. height: math.unit(5 + 7 / 12, "feet"),
  17498. default: true
  17499. },
  17500. {
  17501. name: "Amazon",
  17502. height: math.unit(12, "feet")
  17503. },
  17504. {
  17505. name: "Giantess",
  17506. height: math.unit(160, "meters")
  17507. },
  17508. {
  17509. name: "Titaness",
  17510. height: math.unit(800, "meters")
  17511. },
  17512. ]
  17513. ))
  17514. characterMakers.push(() => makeCharacter(
  17515. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17516. {
  17517. front: {
  17518. height: math.unit(6, "feet"),
  17519. weight: math.unit(150, "lb"),
  17520. name: "Front",
  17521. image: {
  17522. source: "./media/characters/alluria/front.svg",
  17523. extra: 806 / 738,
  17524. bottom: 0.01
  17525. }
  17526. },
  17527. side: {
  17528. height: math.unit(6, "feet"),
  17529. weight: math.unit(150, "lb"),
  17530. name: "Side",
  17531. image: {
  17532. source: "./media/characters/alluria/side.svg",
  17533. extra: 800 / 750,
  17534. }
  17535. },
  17536. back: {
  17537. height: math.unit(6, "feet"),
  17538. weight: math.unit(150, "lb"),
  17539. name: "Back",
  17540. image: {
  17541. source: "./media/characters/alluria/back.svg",
  17542. extra: 806 / 738,
  17543. }
  17544. },
  17545. frontMaid: {
  17546. height: math.unit(6, "feet"),
  17547. weight: math.unit(150, "lb"),
  17548. name: "Front (Maid)",
  17549. image: {
  17550. source: "./media/characters/alluria/front-maid.svg",
  17551. extra: 806 / 738,
  17552. bottom: 0.01
  17553. }
  17554. },
  17555. sideMaid: {
  17556. height: math.unit(6, "feet"),
  17557. weight: math.unit(150, "lb"),
  17558. name: "Side (Maid)",
  17559. image: {
  17560. source: "./media/characters/alluria/side-maid.svg",
  17561. extra: 800 / 750,
  17562. bottom: 0.005
  17563. }
  17564. },
  17565. backMaid: {
  17566. height: math.unit(6, "feet"),
  17567. weight: math.unit(150, "lb"),
  17568. name: "Back (Maid)",
  17569. image: {
  17570. source: "./media/characters/alluria/back-maid.svg",
  17571. extra: 806 / 738,
  17572. }
  17573. },
  17574. },
  17575. [
  17576. {
  17577. name: "Micro",
  17578. height: math.unit(6, "inches"),
  17579. default: true
  17580. },
  17581. ]
  17582. ))
  17583. characterMakers.push(() => makeCharacter(
  17584. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17585. {
  17586. front: {
  17587. height: math.unit(6, "feet"),
  17588. weight: math.unit(150, "lb"),
  17589. name: "Front",
  17590. image: {
  17591. source: "./media/characters/kyle/front.svg",
  17592. extra: 1069 / 962,
  17593. bottom: 77.228 / 1727.45
  17594. }
  17595. },
  17596. },
  17597. [
  17598. {
  17599. name: "Macro",
  17600. height: math.unit(150, "feet"),
  17601. default: true
  17602. },
  17603. ]
  17604. ))
  17605. characterMakers.push(() => makeCharacter(
  17606. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17607. {
  17608. front: {
  17609. height: math.unit(6, "feet"),
  17610. weight: math.unit(300, "lb"),
  17611. name: "Front",
  17612. image: {
  17613. source: "./media/characters/duncan/front.svg",
  17614. extra: 1650 / 1482,
  17615. bottom: 0.05
  17616. }
  17617. },
  17618. },
  17619. [
  17620. {
  17621. name: "Macro",
  17622. height: math.unit(100, "feet"),
  17623. default: true
  17624. },
  17625. ]
  17626. ))
  17627. characterMakers.push(() => makeCharacter(
  17628. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17629. {
  17630. front: {
  17631. height: math.unit(5 + 4 / 12, "feet"),
  17632. weight: math.unit(220, "lb"),
  17633. name: "Front",
  17634. image: {
  17635. source: "./media/characters/memory/front.svg",
  17636. extra: 3641 / 3545,
  17637. bottom: 0.03
  17638. }
  17639. },
  17640. back: {
  17641. height: math.unit(5 + 4 / 12, "feet"),
  17642. weight: math.unit(220, "lb"),
  17643. name: "Back",
  17644. image: {
  17645. source: "./media/characters/memory/back.svg",
  17646. extra: 3641 / 3545,
  17647. bottom: 0.025
  17648. }
  17649. },
  17650. frontSkirt: {
  17651. height: math.unit(5 + 4 / 12, "feet"),
  17652. weight: math.unit(220, "lb"),
  17653. name: "Front (Skirt)",
  17654. image: {
  17655. source: "./media/characters/memory/front-skirt.svg",
  17656. extra: 3641 / 3545,
  17657. bottom: 0.03
  17658. }
  17659. },
  17660. frontDress: {
  17661. height: math.unit(5 + 4 / 12, "feet"),
  17662. weight: math.unit(220, "lb"),
  17663. name: "Front (Dress)",
  17664. image: {
  17665. source: "./media/characters/memory/front-dress.svg",
  17666. extra: 3641 / 3545,
  17667. bottom: 0.03
  17668. }
  17669. },
  17670. },
  17671. [
  17672. {
  17673. name: "Micro",
  17674. height: math.unit(6, "inches"),
  17675. default: true
  17676. },
  17677. {
  17678. name: "Normal",
  17679. height: math.unit(5 + 4 / 12, "feet")
  17680. },
  17681. ]
  17682. ))
  17683. characterMakers.push(() => makeCharacter(
  17684. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17685. {
  17686. front: {
  17687. height: math.unit(4 + 11 / 12, "feet"),
  17688. weight: math.unit(100, "lb"),
  17689. name: "Front",
  17690. image: {
  17691. source: "./media/characters/luno/front.svg",
  17692. extra: 1535 / 1487,
  17693. bottom: 0.03
  17694. }
  17695. },
  17696. },
  17697. [
  17698. {
  17699. name: "Micro",
  17700. height: math.unit(3, "inches")
  17701. },
  17702. {
  17703. name: "Normal",
  17704. height: math.unit(4 + 11 / 12, "feet"),
  17705. default: true
  17706. },
  17707. {
  17708. name: "Macro",
  17709. height: math.unit(300, "feet")
  17710. },
  17711. {
  17712. name: "Megamacro",
  17713. height: math.unit(700, "miles")
  17714. },
  17715. ]
  17716. ))
  17717. characterMakers.push(() => makeCharacter(
  17718. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17719. {
  17720. front: {
  17721. height: math.unit(6 + 2 / 12, "feet"),
  17722. weight: math.unit(170, "lb"),
  17723. name: "Front",
  17724. image: {
  17725. source: "./media/characters/jamesy/front.svg",
  17726. extra: 440 / 382,
  17727. bottom: 0.005
  17728. }
  17729. },
  17730. },
  17731. [
  17732. {
  17733. name: "Micro",
  17734. height: math.unit(3, "inches")
  17735. },
  17736. {
  17737. name: "Normal",
  17738. height: math.unit(6 + 2 / 12, "feet"),
  17739. default: true
  17740. },
  17741. {
  17742. name: "Macro",
  17743. height: math.unit(300, "feet")
  17744. },
  17745. {
  17746. name: "Megamacro",
  17747. height: math.unit(700, "miles")
  17748. },
  17749. ]
  17750. ))
  17751. characterMakers.push(() => makeCharacter(
  17752. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17753. {
  17754. front: {
  17755. height: math.unit(6, "feet"),
  17756. weight: math.unit(160, "lb"),
  17757. name: "Front",
  17758. image: {
  17759. source: "./media/characters/mark/front.svg",
  17760. extra: 3300 / 3100,
  17761. bottom: 136.42 / 3440.47
  17762. }
  17763. },
  17764. },
  17765. [
  17766. {
  17767. name: "Macro",
  17768. height: math.unit(120, "meters")
  17769. },
  17770. {
  17771. name: "Bigger Macro",
  17772. height: math.unit(350, "meters")
  17773. },
  17774. {
  17775. name: "Megamacro",
  17776. height: math.unit(8, "km"),
  17777. default: true
  17778. },
  17779. {
  17780. name: "Continental",
  17781. height: math.unit(4550, "km")
  17782. },
  17783. {
  17784. name: "Planetary",
  17785. height: math.unit(65000, "km")
  17786. },
  17787. ]
  17788. ))
  17789. characterMakers.push(() => makeCharacter(
  17790. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17791. {
  17792. front: {
  17793. height: math.unit(6, "feet"),
  17794. weight: math.unit(400, "lb"),
  17795. name: "Front",
  17796. image: {
  17797. source: "./media/characters/mac/front.svg",
  17798. extra: 1048 / 987.7,
  17799. bottom: 60 / 1107.6,
  17800. }
  17801. },
  17802. },
  17803. [
  17804. {
  17805. name: "Macro",
  17806. height: math.unit(500, "feet"),
  17807. default: true
  17808. },
  17809. ]
  17810. ))
  17811. characterMakers.push(() => makeCharacter(
  17812. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17813. {
  17814. front: {
  17815. height: math.unit(5 + 2 / 12, "feet"),
  17816. weight: math.unit(190, "lb"),
  17817. name: "Front",
  17818. image: {
  17819. source: "./media/characters/bari/front.svg",
  17820. extra: 3156 / 2880,
  17821. bottom: 0.03
  17822. }
  17823. },
  17824. back: {
  17825. height: math.unit(5 + 2 / 12, "feet"),
  17826. weight: math.unit(190, "lb"),
  17827. name: "Back",
  17828. image: {
  17829. source: "./media/characters/bari/back.svg",
  17830. extra: 3260 / 2834,
  17831. bottom: 0.025
  17832. }
  17833. },
  17834. frontPlush: {
  17835. height: math.unit(5 + 2 / 12, "feet"),
  17836. weight: math.unit(190, "lb"),
  17837. name: "Front (Plush)",
  17838. image: {
  17839. source: "./media/characters/bari/front-plush.svg",
  17840. extra: 1112 / 1061,
  17841. bottom: 0.002
  17842. }
  17843. },
  17844. },
  17845. [
  17846. {
  17847. name: "Micro",
  17848. height: math.unit(3, "inches")
  17849. },
  17850. {
  17851. name: "Normal",
  17852. height: math.unit(5 + 2 / 12, "feet"),
  17853. default: true
  17854. },
  17855. {
  17856. name: "Macro",
  17857. height: math.unit(20, "feet")
  17858. },
  17859. ]
  17860. ))
  17861. characterMakers.push(() => makeCharacter(
  17862. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17863. {
  17864. front: {
  17865. height: math.unit(6 + 1 / 12, "feet"),
  17866. weight: math.unit(275, "lb"),
  17867. name: "Front",
  17868. image: {
  17869. source: "./media/characters/hunter-misha-raven/front.svg"
  17870. }
  17871. },
  17872. },
  17873. [
  17874. {
  17875. name: "Mortal",
  17876. height: math.unit(6 + 1 / 12, "feet")
  17877. },
  17878. {
  17879. name: "Divine",
  17880. height: math.unit(1.12134e34, "parsecs"),
  17881. default: true
  17882. },
  17883. ]
  17884. ))
  17885. characterMakers.push(() => makeCharacter(
  17886. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17887. {
  17888. front: {
  17889. height: math.unit(6 + 3 / 12, "feet"),
  17890. weight: math.unit(220, "lb"),
  17891. name: "Front",
  17892. image: {
  17893. source: "./media/characters/max-calore/front.svg",
  17894. extra: 1700 / 1648,
  17895. bottom: 0.01
  17896. }
  17897. },
  17898. back: {
  17899. height: math.unit(6 + 3 / 12, "feet"),
  17900. weight: math.unit(220, "lb"),
  17901. name: "Back",
  17902. image: {
  17903. source: "./media/characters/max-calore/back.svg",
  17904. extra: 1700 / 1648,
  17905. bottom: 0.01
  17906. }
  17907. },
  17908. },
  17909. [
  17910. {
  17911. name: "Normal",
  17912. height: math.unit(6 + 3 / 12, "feet"),
  17913. default: true
  17914. },
  17915. ]
  17916. ))
  17917. characterMakers.push(() => makeCharacter(
  17918. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17919. {
  17920. side: {
  17921. height: math.unit(2 + 8 / 12, "feet"),
  17922. weight: math.unit(99, "lb"),
  17923. name: "Side",
  17924. image: {
  17925. source: "./media/characters/aspen/side.svg",
  17926. extra: 152 / 138,
  17927. bottom: 0.032
  17928. }
  17929. },
  17930. },
  17931. [
  17932. {
  17933. name: "Normal",
  17934. height: math.unit(2 + 8 / 12, "feet"),
  17935. default: true
  17936. },
  17937. ]
  17938. ))
  17939. characterMakers.push(() => makeCharacter(
  17940. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17941. {
  17942. side: {
  17943. height: math.unit(3 + 2 / 12, "feet"),
  17944. weight: math.unit(224, "lb"),
  17945. name: "Side",
  17946. image: {
  17947. source: "./media/characters/sheila-feral-wolf/side.svg",
  17948. extra: 179 / 166,
  17949. bottom: 0.03
  17950. }
  17951. },
  17952. },
  17953. [
  17954. {
  17955. name: "Normal",
  17956. height: math.unit(3 + 2 / 12, "feet"),
  17957. default: true
  17958. },
  17959. ]
  17960. ))
  17961. characterMakers.push(() => makeCharacter(
  17962. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17963. {
  17964. side: {
  17965. height: math.unit(1 + 9 / 12, "feet"),
  17966. weight: math.unit(38, "lb"),
  17967. name: "Side",
  17968. image: {
  17969. source: "./media/characters/michelle/side.svg",
  17970. extra: 147 / 136.7,
  17971. bottom: 0.03
  17972. }
  17973. },
  17974. },
  17975. [
  17976. {
  17977. name: "Normal",
  17978. height: math.unit(1 + 9 / 12, "feet"),
  17979. default: true
  17980. },
  17981. ]
  17982. ))
  17983. characterMakers.push(() => makeCharacter(
  17984. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17985. {
  17986. front: {
  17987. height: math.unit(1.54, "feet"),
  17988. weight: math.unit(50, "lb"),
  17989. name: "Front",
  17990. image: {
  17991. source: "./media/characters/nino/front.svg"
  17992. }
  17993. },
  17994. },
  17995. [
  17996. {
  17997. name: "Normal",
  17998. height: math.unit(1.54, "feet"),
  17999. default: true
  18000. },
  18001. ]
  18002. ))
  18003. characterMakers.push(() => makeCharacter(
  18004. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18005. {
  18006. front: {
  18007. height: math.unit(1.49, "feet"),
  18008. weight: math.unit(45, "lb"),
  18009. name: "Front",
  18010. image: {
  18011. source: "./media/characters/viola/front.svg"
  18012. }
  18013. },
  18014. },
  18015. [
  18016. {
  18017. name: "Normal",
  18018. height: math.unit(1.49, "feet"),
  18019. default: true
  18020. },
  18021. ]
  18022. ))
  18023. characterMakers.push(() => makeCharacter(
  18024. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18025. {
  18026. front: {
  18027. height: math.unit(6 + 5 / 12, "feet"),
  18028. weight: math.unit(580, "lb"),
  18029. name: "Front",
  18030. image: {
  18031. source: "./media/characters/atlas/front.svg",
  18032. extra: 298.5 / 290,
  18033. bottom: 0.015
  18034. }
  18035. },
  18036. },
  18037. [
  18038. {
  18039. name: "Normal",
  18040. height: math.unit(6 + 5 / 12, "feet"),
  18041. default: true
  18042. },
  18043. ]
  18044. ))
  18045. characterMakers.push(() => makeCharacter(
  18046. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18047. {
  18048. side: {
  18049. height: math.unit(15.6, "inches"),
  18050. weight: math.unit(10, "lb"),
  18051. name: "Side",
  18052. image: {
  18053. source: "./media/characters/davy/side.svg",
  18054. extra: 200 / 170,
  18055. bottom: 0.01
  18056. }
  18057. },
  18058. },
  18059. [
  18060. {
  18061. name: "Normal",
  18062. height: math.unit(15.6, "inches"),
  18063. default: true
  18064. },
  18065. ]
  18066. ))
  18067. characterMakers.push(() => makeCharacter(
  18068. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18069. {
  18070. side: {
  18071. height: math.unit(4 + 8 / 12, "feet"),
  18072. weight: math.unit(166, "lb"),
  18073. name: "Side",
  18074. image: {
  18075. source: "./media/characters/fiona/side.svg",
  18076. extra: 232 / 220,
  18077. bottom: 0.03
  18078. }
  18079. },
  18080. },
  18081. [
  18082. {
  18083. name: "Normal",
  18084. height: math.unit(4 + 8 / 12, "feet"),
  18085. default: true
  18086. },
  18087. ]
  18088. ))
  18089. characterMakers.push(() => makeCharacter(
  18090. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18091. {
  18092. front: {
  18093. height: math.unit(26, "inches"),
  18094. weight: math.unit(35, "lb"),
  18095. name: "Front",
  18096. image: {
  18097. source: "./media/characters/lyla/front.svg",
  18098. bottom: 0.1
  18099. }
  18100. },
  18101. },
  18102. [
  18103. {
  18104. name: "Normal",
  18105. height: math.unit(3, "feet"),
  18106. default: true
  18107. },
  18108. ]
  18109. ))
  18110. characterMakers.push(() => makeCharacter(
  18111. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18112. {
  18113. side: {
  18114. height: math.unit(1.8, "feet"),
  18115. weight: math.unit(44, "lb"),
  18116. name: "Side",
  18117. image: {
  18118. source: "./media/characters/perseus/side.svg",
  18119. bottom: 0.21
  18120. }
  18121. },
  18122. },
  18123. [
  18124. {
  18125. name: "Normal",
  18126. height: math.unit(1.8, "feet"),
  18127. default: true
  18128. },
  18129. ]
  18130. ))
  18131. characterMakers.push(() => makeCharacter(
  18132. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18133. {
  18134. side: {
  18135. height: math.unit(4 + 2 / 12, "feet"),
  18136. weight: math.unit(20, "lb"),
  18137. name: "Side",
  18138. image: {
  18139. source: "./media/characters/remus/side.svg"
  18140. }
  18141. },
  18142. },
  18143. [
  18144. {
  18145. name: "Normal",
  18146. height: math.unit(4 + 2 / 12, "feet"),
  18147. default: true
  18148. },
  18149. ]
  18150. ))
  18151. characterMakers.push(() => makeCharacter(
  18152. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18153. {
  18154. front: {
  18155. height: math.unit(4 + 11 / 12, "feet"),
  18156. weight: math.unit(114, "lb"),
  18157. name: "Front",
  18158. image: {
  18159. source: "./media/characters/raf/front.svg",
  18160. extra: 1504/1339,
  18161. bottom: 26/1530
  18162. }
  18163. },
  18164. side: {
  18165. height: math.unit(4 + 11 / 12, "feet"),
  18166. weight: math.unit(114, "lb"),
  18167. name: "Side",
  18168. image: {
  18169. source: "./media/characters/raf/side.svg",
  18170. extra: 1466/1316,
  18171. bottom: 29/1495
  18172. }
  18173. },
  18174. paw: {
  18175. height: math.unit(1.45, "feet"),
  18176. name: "Paw",
  18177. image: {
  18178. source: "./media/characters/raf/paw.svg"
  18179. },
  18180. extraAttributes: {
  18181. "toeSize": {
  18182. name: "Toe Size",
  18183. power: 2,
  18184. type: "area",
  18185. base: math.unit(0.004, "m^2")
  18186. },
  18187. "padSize": {
  18188. name: "Pad Size",
  18189. power: 2,
  18190. type: "area",
  18191. base: math.unit(0.04, "m^2")
  18192. },
  18193. "footSize": {
  18194. name: "Foot Size",
  18195. power: 2,
  18196. type: "area",
  18197. base: math.unit(0.08, "m^2")
  18198. },
  18199. }
  18200. },
  18201. },
  18202. [
  18203. {
  18204. name: "Micro",
  18205. height: math.unit(2, "inches")
  18206. },
  18207. {
  18208. name: "Normal",
  18209. height: math.unit(4 + 11 / 12, "feet"),
  18210. default: true
  18211. },
  18212. {
  18213. name: "Macro",
  18214. height: math.unit(70, "feet")
  18215. },
  18216. ]
  18217. ))
  18218. characterMakers.push(() => makeCharacter(
  18219. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18220. {
  18221. front: {
  18222. height: math.unit(1.5, "meters"),
  18223. weight: math.unit(68, "kg"),
  18224. name: "Front",
  18225. image: {
  18226. source: "./media/characters/liam-einarr/front.svg",
  18227. extra: 2822 / 2666
  18228. }
  18229. },
  18230. back: {
  18231. height: math.unit(1.5, "meters"),
  18232. weight: math.unit(68, "kg"),
  18233. name: "Back",
  18234. image: {
  18235. source: "./media/characters/liam-einarr/back.svg",
  18236. extra: 2822 / 2666,
  18237. bottom: 0.015
  18238. }
  18239. },
  18240. },
  18241. [
  18242. {
  18243. name: "Normal",
  18244. height: math.unit(1.5, "meters"),
  18245. default: true
  18246. },
  18247. {
  18248. name: "Macro",
  18249. height: math.unit(150, "meters")
  18250. },
  18251. {
  18252. name: "Megamacro",
  18253. height: math.unit(35, "km")
  18254. },
  18255. ]
  18256. ))
  18257. characterMakers.push(() => makeCharacter(
  18258. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18259. {
  18260. front: {
  18261. height: math.unit(6, "feet"),
  18262. weight: math.unit(75, "kg"),
  18263. name: "Front",
  18264. image: {
  18265. source: "./media/characters/linda/front.svg",
  18266. extra: 930 / 874,
  18267. bottom: 0.004
  18268. }
  18269. },
  18270. },
  18271. [
  18272. {
  18273. name: "Normal",
  18274. height: math.unit(6, "feet"),
  18275. default: true
  18276. },
  18277. ]
  18278. ))
  18279. characterMakers.push(() => makeCharacter(
  18280. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18281. {
  18282. front: {
  18283. height: math.unit(6 + 8 / 12, "feet"),
  18284. weight: math.unit(220, "lb"),
  18285. name: "Front",
  18286. image: {
  18287. source: "./media/characters/caylex/front.svg",
  18288. extra: 821 / 772,
  18289. bottom: 0.07
  18290. }
  18291. },
  18292. back: {
  18293. height: math.unit(6 + 8 / 12, "feet"),
  18294. weight: math.unit(220, "lb"),
  18295. name: "Back",
  18296. image: {
  18297. source: "./media/characters/caylex/back.svg",
  18298. extra: 821 / 772,
  18299. bottom: 0.022
  18300. }
  18301. },
  18302. hand: {
  18303. height: math.unit(1.25, "feet"),
  18304. name: "Hand",
  18305. image: {
  18306. source: "./media/characters/caylex/hand.svg"
  18307. }
  18308. },
  18309. foot: {
  18310. height: math.unit(1.6, "feet"),
  18311. name: "Foot",
  18312. image: {
  18313. source: "./media/characters/caylex/foot.svg"
  18314. }
  18315. },
  18316. armored: {
  18317. height: math.unit(6 + 8 / 12, "feet"),
  18318. weight: math.unit(250, "lb"),
  18319. name: "Armored",
  18320. image: {
  18321. source: "./media/characters/caylex/armored.svg",
  18322. extra: 1420 / 1310,
  18323. bottom: 0.045
  18324. }
  18325. },
  18326. },
  18327. [
  18328. {
  18329. name: "Normal",
  18330. height: math.unit(6 + 8 / 12, "feet"),
  18331. default: true
  18332. },
  18333. {
  18334. name: "Normal+",
  18335. height: math.unit(12, "feet")
  18336. },
  18337. ]
  18338. ))
  18339. characterMakers.push(() => makeCharacter(
  18340. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18341. {
  18342. front: {
  18343. height: math.unit(7 + 6 / 12, "feet"),
  18344. weight: math.unit(288, "lb"),
  18345. name: "Front",
  18346. image: {
  18347. source: "./media/characters/alana/front.svg",
  18348. extra: 679 / 653,
  18349. bottom: 22.5 / 701
  18350. }
  18351. },
  18352. },
  18353. [
  18354. {
  18355. name: "Normal",
  18356. height: math.unit(7 + 6 / 12, "feet")
  18357. },
  18358. {
  18359. name: "Large",
  18360. height: math.unit(50, "feet")
  18361. },
  18362. {
  18363. name: "Macro",
  18364. height: math.unit(100, "feet"),
  18365. default: true
  18366. },
  18367. {
  18368. name: "Macro+",
  18369. height: math.unit(200, "feet")
  18370. },
  18371. ]
  18372. ))
  18373. characterMakers.push(() => makeCharacter(
  18374. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18375. {
  18376. front: {
  18377. height: math.unit(6 + 1 / 12, "feet"),
  18378. weight: math.unit(210, "lb"),
  18379. name: "Front",
  18380. image: {
  18381. source: "./media/characters/hasani/front.svg",
  18382. extra: 244 / 232,
  18383. bottom: 0.01
  18384. }
  18385. },
  18386. back: {
  18387. height: math.unit(6 + 1 / 12, "feet"),
  18388. weight: math.unit(210, "lb"),
  18389. name: "Back",
  18390. image: {
  18391. source: "./media/characters/hasani/back.svg",
  18392. extra: 244 / 232,
  18393. bottom: 0.01
  18394. }
  18395. },
  18396. },
  18397. [
  18398. {
  18399. name: "Normal",
  18400. height: math.unit(6 + 1 / 12, "feet")
  18401. },
  18402. {
  18403. name: "Macro",
  18404. height: math.unit(175, "feet"),
  18405. default: true
  18406. },
  18407. ]
  18408. ))
  18409. characterMakers.push(() => makeCharacter(
  18410. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18411. {
  18412. front: {
  18413. height: math.unit(1.82, "meters"),
  18414. weight: math.unit(140, "lb"),
  18415. name: "Front",
  18416. image: {
  18417. source: "./media/characters/nita/front.svg",
  18418. extra: 2473 / 2363,
  18419. bottom: 0.01
  18420. }
  18421. },
  18422. },
  18423. [
  18424. {
  18425. name: "Normal",
  18426. height: math.unit(1.82, "m")
  18427. },
  18428. {
  18429. name: "Macro",
  18430. height: math.unit(300, "m")
  18431. },
  18432. {
  18433. name: "Mistake Canon",
  18434. height: math.unit(0.5, "miles"),
  18435. default: true
  18436. },
  18437. {
  18438. name: "Big Mistake",
  18439. height: math.unit(13, "miles")
  18440. },
  18441. {
  18442. name: "Playing God",
  18443. height: math.unit(2450, "miles")
  18444. },
  18445. ]
  18446. ))
  18447. characterMakers.push(() => makeCharacter(
  18448. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18449. {
  18450. front: {
  18451. height: math.unit(4, "feet"),
  18452. weight: math.unit(120, "lb"),
  18453. name: "Front",
  18454. image: {
  18455. source: "./media/characters/shiriko/front.svg",
  18456. extra: 970/934,
  18457. bottom: 5/975
  18458. }
  18459. },
  18460. },
  18461. [
  18462. {
  18463. name: "Normal",
  18464. height: math.unit(4, "feet"),
  18465. default: true
  18466. },
  18467. ]
  18468. ))
  18469. characterMakers.push(() => makeCharacter(
  18470. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18471. {
  18472. front: {
  18473. height: math.unit(6, "feet"),
  18474. name: "front",
  18475. image: {
  18476. source: "./media/characters/deja/front.svg",
  18477. extra: 926 / 840,
  18478. bottom: 0.07
  18479. }
  18480. },
  18481. },
  18482. [
  18483. {
  18484. name: "Planck Length",
  18485. height: math.unit(1.6e-35, "meters")
  18486. },
  18487. {
  18488. name: "Normal",
  18489. height: math.unit(30.48, "meters"),
  18490. default: true
  18491. },
  18492. {
  18493. name: "Universal",
  18494. height: math.unit(8.8e26, "meters")
  18495. },
  18496. ]
  18497. ))
  18498. characterMakers.push(() => makeCharacter(
  18499. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18500. {
  18501. side: {
  18502. height: math.unit(8, "feet"),
  18503. weight: math.unit(6300, "lb"),
  18504. name: "Side",
  18505. image: {
  18506. source: "./media/characters/anima/side.svg",
  18507. bottom: 0.035
  18508. }
  18509. },
  18510. },
  18511. [
  18512. {
  18513. name: "Normal",
  18514. height: math.unit(8, "feet"),
  18515. default: true
  18516. },
  18517. ]
  18518. ))
  18519. characterMakers.push(() => makeCharacter(
  18520. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18521. {
  18522. front: {
  18523. height: math.unit(8, "feet"),
  18524. weight: math.unit(350, "lb"),
  18525. name: "Front",
  18526. image: {
  18527. source: "./media/characters/bianca/front.svg",
  18528. extra: 234 / 225,
  18529. bottom: 0.03
  18530. }
  18531. },
  18532. },
  18533. [
  18534. {
  18535. name: "Normal",
  18536. height: math.unit(8, "feet"),
  18537. default: true
  18538. },
  18539. ]
  18540. ))
  18541. characterMakers.push(() => makeCharacter(
  18542. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18543. {
  18544. front: {
  18545. height: math.unit(11 + 5/12, "feet"),
  18546. weight: math.unit(1200, "lb"),
  18547. name: "Front",
  18548. image: {
  18549. source: "./media/characters/adinia/front.svg",
  18550. extra: 1767/1641,
  18551. bottom: 44/1811
  18552. },
  18553. extraAttributes: {
  18554. "energyIntake": {
  18555. name: "Energy Intake",
  18556. power: 3,
  18557. type: "energy",
  18558. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18559. },
  18560. }
  18561. },
  18562. back: {
  18563. height: math.unit(11 + 5/12, "feet"),
  18564. weight: math.unit(1200, "lb"),
  18565. name: "Back",
  18566. image: {
  18567. source: "./media/characters/adinia/back.svg",
  18568. extra: 1834/1684,
  18569. bottom: 14/1848
  18570. },
  18571. extraAttributes: {
  18572. "energyIntake": {
  18573. name: "Energy Intake",
  18574. power: 3,
  18575. type: "energy",
  18576. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18577. },
  18578. }
  18579. },
  18580. maw: {
  18581. height: math.unit(3.79, "feet"),
  18582. name: "Maw",
  18583. image: {
  18584. source: "./media/characters/adinia/maw.svg"
  18585. }
  18586. },
  18587. rump: {
  18588. height: math.unit(4.6, "feet"),
  18589. name: "Rump",
  18590. image: {
  18591. source: "./media/characters/adinia/rump.svg"
  18592. }
  18593. },
  18594. },
  18595. [
  18596. {
  18597. name: "Normal",
  18598. height: math.unit(11 + 5 / 12, "feet"),
  18599. default: true
  18600. },
  18601. ]
  18602. ))
  18603. characterMakers.push(() => makeCharacter(
  18604. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18605. {
  18606. front: {
  18607. height: math.unit(3, "meters"),
  18608. weight: math.unit(200, "kg"),
  18609. name: "Front",
  18610. image: {
  18611. source: "./media/characters/lykasa/front.svg",
  18612. extra: 1076 / 976,
  18613. bottom: 0.06
  18614. }
  18615. },
  18616. },
  18617. [
  18618. {
  18619. name: "Normal",
  18620. height: math.unit(3, "meters")
  18621. },
  18622. {
  18623. name: "Kaiju",
  18624. height: math.unit(120, "meters"),
  18625. default: true
  18626. },
  18627. {
  18628. name: "Mega Kaiju",
  18629. height: math.unit(240, "km")
  18630. },
  18631. {
  18632. name: "Giga Kaiju",
  18633. height: math.unit(400, "megameters")
  18634. },
  18635. {
  18636. name: "Tera Kaiju",
  18637. height: math.unit(800, "gigameters")
  18638. },
  18639. {
  18640. name: "Kaiju Dragon Goddess",
  18641. height: math.unit(26, "zettaparsecs")
  18642. },
  18643. ]
  18644. ))
  18645. characterMakers.push(() => makeCharacter(
  18646. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18647. {
  18648. side: {
  18649. height: math.unit(283 / 124 * 6, "feet"),
  18650. weight: math.unit(35000, "lb"),
  18651. name: "Side",
  18652. image: {
  18653. source: "./media/characters/malfaren/side.svg",
  18654. extra: 1310/529,
  18655. bottom: 24/1334
  18656. }
  18657. },
  18658. front: {
  18659. height: math.unit(22.36, "feet"),
  18660. weight: math.unit(35000, "lb"),
  18661. name: "Front",
  18662. image: {
  18663. source: "./media/characters/malfaren/front.svg",
  18664. extra: 1237/1115,
  18665. bottom: 32/1269
  18666. }
  18667. },
  18668. maw: {
  18669. height: math.unit(6.9, "feet"),
  18670. name: "Maw",
  18671. image: {
  18672. source: "./media/characters/malfaren/maw.svg"
  18673. }
  18674. },
  18675. dick: {
  18676. height: math.unit(6.19, "feet"),
  18677. name: "Dick",
  18678. image: {
  18679. source: "./media/characters/malfaren/dick.svg"
  18680. }
  18681. },
  18682. eye: {
  18683. height: math.unit(0.69, "feet"),
  18684. name: "Eye",
  18685. image: {
  18686. source: "./media/characters/malfaren/eye.svg"
  18687. }
  18688. },
  18689. },
  18690. [
  18691. {
  18692. name: "Big",
  18693. height: math.unit(283 / 162 * 6, "feet"),
  18694. },
  18695. {
  18696. name: "Bigger",
  18697. height: math.unit(283 / 124 * 6, "feet")
  18698. },
  18699. {
  18700. name: "Massive",
  18701. height: math.unit(283 / 92 * 6, "feet"),
  18702. default: true
  18703. },
  18704. {
  18705. name: "👀💦",
  18706. height: math.unit(283 / 73 * 6, "feet"),
  18707. },
  18708. ]
  18709. ))
  18710. characterMakers.push(() => makeCharacter(
  18711. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18712. {
  18713. front: {
  18714. height: math.unit(1.7, "m"),
  18715. weight: math.unit(70, "kg"),
  18716. name: "Front",
  18717. image: {
  18718. source: "./media/characters/kernel/front.svg",
  18719. extra: 222 / 210,
  18720. bottom: 0.007
  18721. }
  18722. },
  18723. },
  18724. [
  18725. {
  18726. name: "Nano",
  18727. height: math.unit(17, "micrometers")
  18728. },
  18729. {
  18730. name: "Micro",
  18731. height: math.unit(1.7, "mm")
  18732. },
  18733. {
  18734. name: "Small",
  18735. height: math.unit(1.7, "cm")
  18736. },
  18737. {
  18738. name: "Normal",
  18739. height: math.unit(1.7, "m"),
  18740. default: true
  18741. },
  18742. ]
  18743. ))
  18744. characterMakers.push(() => makeCharacter(
  18745. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18746. {
  18747. front: {
  18748. height: math.unit(1.75, "meters"),
  18749. weight: math.unit(65, "kg"),
  18750. name: "Front",
  18751. image: {
  18752. source: "./media/characters/jayne-folest/front.svg",
  18753. extra: 2115 / 2007,
  18754. bottom: 0.02
  18755. }
  18756. },
  18757. back: {
  18758. height: math.unit(1.75, "meters"),
  18759. weight: math.unit(65, "kg"),
  18760. name: "Back",
  18761. image: {
  18762. source: "./media/characters/jayne-folest/back.svg",
  18763. extra: 2115 / 2007,
  18764. bottom: 0.005
  18765. }
  18766. },
  18767. frontClothed: {
  18768. height: math.unit(1.75, "meters"),
  18769. weight: math.unit(65, "kg"),
  18770. name: "Front (Clothed)",
  18771. image: {
  18772. source: "./media/characters/jayne-folest/front-clothed.svg",
  18773. extra: 2115 / 2007,
  18774. bottom: 0.035
  18775. }
  18776. },
  18777. hand: {
  18778. height: math.unit(1 / 1.260, "feet"),
  18779. name: "Hand",
  18780. image: {
  18781. source: "./media/characters/jayne-folest/hand.svg"
  18782. }
  18783. },
  18784. foot: {
  18785. height: math.unit(1 / 0.918, "feet"),
  18786. name: "Foot",
  18787. image: {
  18788. source: "./media/characters/jayne-folest/foot.svg"
  18789. }
  18790. },
  18791. },
  18792. [
  18793. {
  18794. name: "Micro",
  18795. height: math.unit(4, "cm")
  18796. },
  18797. {
  18798. name: "Normal",
  18799. height: math.unit(1.75, "meters")
  18800. },
  18801. {
  18802. name: "Macro",
  18803. height: math.unit(47.5, "meters"),
  18804. default: true
  18805. },
  18806. ]
  18807. ))
  18808. characterMakers.push(() => makeCharacter(
  18809. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18810. {
  18811. front: {
  18812. height: math.unit(180, "cm"),
  18813. weight: math.unit(70, "kg"),
  18814. name: "Front",
  18815. image: {
  18816. source: "./media/characters/algier/front.svg",
  18817. extra: 596 / 572,
  18818. bottom: 0.04
  18819. }
  18820. },
  18821. back: {
  18822. height: math.unit(180, "cm"),
  18823. weight: math.unit(70, "kg"),
  18824. name: "Back",
  18825. image: {
  18826. source: "./media/characters/algier/back.svg",
  18827. extra: 596 / 572,
  18828. bottom: 0.025
  18829. }
  18830. },
  18831. frontdressed: {
  18832. height: math.unit(180, "cm"),
  18833. weight: math.unit(150, "kg"),
  18834. name: "Front-dressed",
  18835. image: {
  18836. source: "./media/characters/algier/front-dressed.svg",
  18837. extra: 596 / 572,
  18838. bottom: 0.038
  18839. }
  18840. },
  18841. },
  18842. [
  18843. {
  18844. name: "Micro",
  18845. height: math.unit(5, "cm")
  18846. },
  18847. {
  18848. name: "Normal",
  18849. height: math.unit(180, "cm"),
  18850. default: true
  18851. },
  18852. {
  18853. name: "Macro",
  18854. height: math.unit(64, "m")
  18855. },
  18856. ]
  18857. ))
  18858. characterMakers.push(() => makeCharacter(
  18859. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18860. {
  18861. upright: {
  18862. height: math.unit(7, "feet"),
  18863. weight: math.unit(300, "lb"),
  18864. name: "Upright",
  18865. image: {
  18866. source: "./media/characters/pretzel/upright.svg",
  18867. extra: 534 / 522,
  18868. bottom: 0.065
  18869. }
  18870. },
  18871. sprawling: {
  18872. height: math.unit(3.75, "feet"),
  18873. weight: math.unit(300, "lb"),
  18874. name: "Sprawling",
  18875. image: {
  18876. source: "./media/characters/pretzel/sprawling.svg",
  18877. extra: 314 / 281,
  18878. bottom: 0.1
  18879. }
  18880. },
  18881. tongue: {
  18882. height: math.unit(2, "feet"),
  18883. name: "Tongue",
  18884. image: {
  18885. source: "./media/characters/pretzel/tongue.svg"
  18886. }
  18887. },
  18888. },
  18889. [
  18890. {
  18891. name: "Normal",
  18892. height: math.unit(7, "feet"),
  18893. default: true
  18894. },
  18895. {
  18896. name: "Oversized",
  18897. height: math.unit(15, "feet")
  18898. },
  18899. {
  18900. name: "Huge",
  18901. height: math.unit(30, "feet")
  18902. },
  18903. {
  18904. name: "Macro",
  18905. height: math.unit(250, "feet")
  18906. },
  18907. ]
  18908. ))
  18909. characterMakers.push(() => makeCharacter(
  18910. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18911. {
  18912. sideFront: {
  18913. height: math.unit(5 + 2 / 12, "feet"),
  18914. weight: math.unit(120, "lb"),
  18915. name: "Front Side",
  18916. image: {
  18917. source: "./media/characters/roxi/side-front.svg",
  18918. extra: 2924 / 2717,
  18919. bottom: 0.08
  18920. }
  18921. },
  18922. sideBack: {
  18923. height: math.unit(5 + 2 / 12, "feet"),
  18924. weight: math.unit(120, "lb"),
  18925. name: "Back Side",
  18926. image: {
  18927. source: "./media/characters/roxi/side-back.svg",
  18928. extra: 2904 / 2693,
  18929. bottom: 0.06
  18930. }
  18931. },
  18932. front: {
  18933. height: math.unit(5 + 2 / 12, "feet"),
  18934. weight: math.unit(120, "lb"),
  18935. name: "Front",
  18936. image: {
  18937. source: "./media/characters/roxi/front.svg",
  18938. extra: 2028 / 1907,
  18939. bottom: 0.01
  18940. }
  18941. },
  18942. frontAlt: {
  18943. height: math.unit(5 + 2 / 12, "feet"),
  18944. weight: math.unit(120, "lb"),
  18945. name: "Front (Alt)",
  18946. image: {
  18947. source: "./media/characters/roxi/front-alt.svg",
  18948. extra: 1828 / 1798,
  18949. bottom: 0.01
  18950. }
  18951. },
  18952. sitting: {
  18953. height: math.unit(2.8, "feet"),
  18954. weight: math.unit(120, "lb"),
  18955. name: "Sitting",
  18956. image: {
  18957. source: "./media/characters/roxi/sitting.svg",
  18958. extra: 2660 / 2462,
  18959. bottom: 0.1
  18960. }
  18961. },
  18962. },
  18963. [
  18964. {
  18965. name: "Normal",
  18966. height: math.unit(5 + 2 / 12, "feet"),
  18967. default: true
  18968. },
  18969. ]
  18970. ))
  18971. characterMakers.push(() => makeCharacter(
  18972. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18973. {
  18974. side: {
  18975. height: math.unit(55, "feet"),
  18976. weight: math.unit(153, "tons"),
  18977. name: "Side",
  18978. image: {
  18979. source: "./media/characters/shadow/side.svg",
  18980. extra: 701 / 628,
  18981. bottom: 0.02
  18982. }
  18983. },
  18984. flying: {
  18985. height: math.unit(145, "feet"),
  18986. weight: math.unit(153, "tons"),
  18987. name: "Flying",
  18988. image: {
  18989. source: "./media/characters/shadow/flying.svg"
  18990. }
  18991. },
  18992. },
  18993. [
  18994. {
  18995. name: "Normal",
  18996. height: math.unit(55, "feet"),
  18997. default: true
  18998. },
  18999. ]
  19000. ))
  19001. characterMakers.push(() => makeCharacter(
  19002. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19003. {
  19004. front: {
  19005. height: math.unit(6, "feet"),
  19006. weight: math.unit(200, "lb"),
  19007. name: "Front",
  19008. image: {
  19009. source: "./media/characters/marcie/front.svg",
  19010. extra: 960 / 876,
  19011. bottom: 58 / 1017.87
  19012. }
  19013. },
  19014. },
  19015. [
  19016. {
  19017. name: "Macro",
  19018. height: math.unit(1, "mile"),
  19019. default: true
  19020. },
  19021. ]
  19022. ))
  19023. characterMakers.push(() => makeCharacter(
  19024. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19025. {
  19026. front: {
  19027. height: math.unit(7, "feet"),
  19028. weight: math.unit(200, "lb"),
  19029. name: "Front",
  19030. image: {
  19031. source: "./media/characters/kachina/front.svg",
  19032. extra: 1290.68 / 1119,
  19033. bottom: 36.5 / 1327.18
  19034. }
  19035. },
  19036. },
  19037. [
  19038. {
  19039. name: "Normal",
  19040. height: math.unit(7, "feet"),
  19041. default: true
  19042. },
  19043. ]
  19044. ))
  19045. characterMakers.push(() => makeCharacter(
  19046. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19047. {
  19048. looking: {
  19049. height: math.unit(2, "meters"),
  19050. weight: math.unit(300, "kg"),
  19051. name: "Looking",
  19052. image: {
  19053. source: "./media/characters/kash/looking.svg",
  19054. extra: 474 / 344,
  19055. bottom: 0.03
  19056. }
  19057. },
  19058. side: {
  19059. height: math.unit(2, "meters"),
  19060. weight: math.unit(300, "kg"),
  19061. name: "Side",
  19062. image: {
  19063. source: "./media/characters/kash/side.svg",
  19064. extra: 302 / 251,
  19065. bottom: 0.03
  19066. }
  19067. },
  19068. front: {
  19069. height: math.unit(2, "meters"),
  19070. weight: math.unit(300, "kg"),
  19071. name: "Front",
  19072. image: {
  19073. source: "./media/characters/kash/front.svg",
  19074. extra: 495 / 360,
  19075. bottom: 0.015
  19076. }
  19077. },
  19078. },
  19079. [
  19080. {
  19081. name: "Normal",
  19082. height: math.unit(2, "meters"),
  19083. default: true
  19084. },
  19085. {
  19086. name: "Big",
  19087. height: math.unit(3, "meters")
  19088. },
  19089. {
  19090. name: "Large",
  19091. height: math.unit(5, "meters")
  19092. },
  19093. ]
  19094. ))
  19095. characterMakers.push(() => makeCharacter(
  19096. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19097. {
  19098. feeding: {
  19099. height: math.unit(6.7, "feet"),
  19100. weight: math.unit(350, "lb"),
  19101. name: "Feeding",
  19102. image: {
  19103. source: "./media/characters/lalim/feeding.svg",
  19104. }
  19105. },
  19106. },
  19107. [
  19108. {
  19109. name: "Normal",
  19110. height: math.unit(6.7, "feet"),
  19111. default: true
  19112. },
  19113. ]
  19114. ))
  19115. characterMakers.push(() => makeCharacter(
  19116. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19117. {
  19118. front: {
  19119. height: math.unit(9.5, "feet"),
  19120. weight: math.unit(600, "lb"),
  19121. name: "Front",
  19122. image: {
  19123. source: "./media/characters/de'vout/front.svg",
  19124. extra: 1443 / 1328,
  19125. bottom: 0.025
  19126. }
  19127. },
  19128. back: {
  19129. height: math.unit(9.5, "feet"),
  19130. weight: math.unit(600, "lb"),
  19131. name: "Back",
  19132. image: {
  19133. source: "./media/characters/de'vout/back.svg",
  19134. extra: 1443 / 1328
  19135. }
  19136. },
  19137. frontDressed: {
  19138. height: math.unit(9.5, "feet"),
  19139. weight: math.unit(600, "lb"),
  19140. name: "Front (Dressed",
  19141. image: {
  19142. source: "./media/characters/de'vout/front-dressed.svg",
  19143. extra: 1443 / 1328,
  19144. bottom: 0.025
  19145. }
  19146. },
  19147. backDressed: {
  19148. height: math.unit(9.5, "feet"),
  19149. weight: math.unit(600, "lb"),
  19150. name: "Back (Dressed",
  19151. image: {
  19152. source: "./media/characters/de'vout/back-dressed.svg",
  19153. extra: 1443 / 1328
  19154. }
  19155. },
  19156. },
  19157. [
  19158. {
  19159. name: "Normal",
  19160. height: math.unit(9.5, "feet"),
  19161. default: true
  19162. },
  19163. ]
  19164. ))
  19165. characterMakers.push(() => makeCharacter(
  19166. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19167. {
  19168. front: {
  19169. height: math.unit(8, "feet"),
  19170. weight: math.unit(225, "lb"),
  19171. name: "Front",
  19172. image: {
  19173. source: "./media/characters/talana/front.svg",
  19174. extra: 1410 / 1300,
  19175. bottom: 0.015
  19176. }
  19177. },
  19178. frontDressed: {
  19179. height: math.unit(8, "feet"),
  19180. weight: math.unit(225, "lb"),
  19181. name: "Front (Dressed",
  19182. image: {
  19183. source: "./media/characters/talana/front-dressed.svg",
  19184. extra: 1410 / 1300,
  19185. bottom: 0.015
  19186. }
  19187. },
  19188. },
  19189. [
  19190. {
  19191. name: "Normal",
  19192. height: math.unit(8, "feet"),
  19193. default: true
  19194. },
  19195. ]
  19196. ))
  19197. characterMakers.push(() => makeCharacter(
  19198. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19199. {
  19200. side: {
  19201. height: math.unit(7.2, "feet"),
  19202. weight: math.unit(150, "lb"),
  19203. name: "Side",
  19204. image: {
  19205. source: "./media/characters/xeauvok/side.svg",
  19206. extra: 1975 / 1523,
  19207. bottom: 0.07
  19208. }
  19209. },
  19210. },
  19211. [
  19212. {
  19213. name: "Normal",
  19214. height: math.unit(7.2, "feet"),
  19215. default: true
  19216. },
  19217. ]
  19218. ))
  19219. characterMakers.push(() => makeCharacter(
  19220. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19221. {
  19222. side: {
  19223. height: math.unit(4, "meters"),
  19224. weight: math.unit(2200, "kg"),
  19225. name: "Side",
  19226. image: {
  19227. source: "./media/characters/zara/side.svg",
  19228. extra: 765/744,
  19229. bottom: 156/921
  19230. }
  19231. },
  19232. },
  19233. [
  19234. {
  19235. name: "Normal",
  19236. height: math.unit(4, "meters"),
  19237. default: true
  19238. },
  19239. ]
  19240. ))
  19241. characterMakers.push(() => makeCharacter(
  19242. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19243. {
  19244. side: {
  19245. height: math.unit(6, "feet"),
  19246. weight: math.unit(150, "lb"),
  19247. name: "Side",
  19248. image: {
  19249. source: "./media/characters/richard-dragon/side.svg",
  19250. extra: 845 / 340,
  19251. bottom: 0.017
  19252. }
  19253. },
  19254. maw: {
  19255. height: math.unit(2.97, "feet"),
  19256. name: "Maw",
  19257. image: {
  19258. source: "./media/characters/richard-dragon/maw.svg"
  19259. }
  19260. },
  19261. },
  19262. [
  19263. ]
  19264. ))
  19265. characterMakers.push(() => makeCharacter(
  19266. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19267. {
  19268. front: {
  19269. height: math.unit(4, "feet"),
  19270. weight: math.unit(100, "lb"),
  19271. name: "Front",
  19272. image: {
  19273. source: "./media/characters/richard-smeargle/front.svg",
  19274. extra: 2952 / 2820,
  19275. bottom: 0.028
  19276. }
  19277. },
  19278. },
  19279. [
  19280. {
  19281. name: "Normal",
  19282. height: math.unit(4, "feet"),
  19283. default: true
  19284. },
  19285. {
  19286. name: "Dynamax",
  19287. height: math.unit(20, "meters")
  19288. },
  19289. ]
  19290. ))
  19291. characterMakers.push(() => makeCharacter(
  19292. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19293. {
  19294. front: {
  19295. height: math.unit(6, "feet"),
  19296. weight: math.unit(110, "lb"),
  19297. name: "Front",
  19298. image: {
  19299. source: "./media/characters/klay/front.svg",
  19300. extra: 962 / 883,
  19301. bottom: 0.04
  19302. }
  19303. },
  19304. back: {
  19305. height: math.unit(6, "feet"),
  19306. weight: math.unit(110, "lb"),
  19307. name: "Back",
  19308. image: {
  19309. source: "./media/characters/klay/back.svg",
  19310. extra: 962 / 883
  19311. }
  19312. },
  19313. beans: {
  19314. height: math.unit(1.15, "feet"),
  19315. name: "Beans",
  19316. image: {
  19317. source: "./media/characters/klay/beans.svg"
  19318. }
  19319. },
  19320. },
  19321. [
  19322. {
  19323. name: "Micro",
  19324. height: math.unit(6, "inches")
  19325. },
  19326. {
  19327. name: "Mini",
  19328. height: math.unit(3, "feet")
  19329. },
  19330. {
  19331. name: "Normal",
  19332. height: math.unit(6, "feet"),
  19333. default: true
  19334. },
  19335. {
  19336. name: "Big",
  19337. height: math.unit(25, "feet")
  19338. },
  19339. {
  19340. name: "Macro",
  19341. height: math.unit(100, "feet")
  19342. },
  19343. {
  19344. name: "Megamacro",
  19345. height: math.unit(400, "feet")
  19346. },
  19347. ]
  19348. ))
  19349. characterMakers.push(() => makeCharacter(
  19350. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19351. {
  19352. front: {
  19353. height: math.unit(6, "feet"),
  19354. weight: math.unit(160, "lb"),
  19355. name: "Front",
  19356. image: {
  19357. source: "./media/characters/marcus/front.svg",
  19358. extra: 734 / 676,
  19359. bottom: 0.03
  19360. }
  19361. },
  19362. },
  19363. [
  19364. {
  19365. name: "Little",
  19366. height: math.unit(6, "feet")
  19367. },
  19368. {
  19369. name: "Normal",
  19370. height: math.unit(110, "feet"),
  19371. default: true
  19372. },
  19373. {
  19374. name: "Macro",
  19375. height: math.unit(250, "feet")
  19376. },
  19377. {
  19378. name: "Megamacro",
  19379. height: math.unit(1000, "feet")
  19380. },
  19381. ]
  19382. ))
  19383. characterMakers.push(() => makeCharacter(
  19384. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19385. {
  19386. front: {
  19387. height: math.unit(7, "feet"),
  19388. weight: math.unit(275, "lb"),
  19389. name: "Front",
  19390. image: {
  19391. source: "./media/characters/claude-delroute/front.svg",
  19392. extra: 902/827,
  19393. bottom: 26/928
  19394. }
  19395. },
  19396. side: {
  19397. height: math.unit(7, "feet"),
  19398. weight: math.unit(275, "lb"),
  19399. name: "Side",
  19400. image: {
  19401. source: "./media/characters/claude-delroute/side.svg",
  19402. extra: 908/853,
  19403. bottom: 16/924
  19404. }
  19405. },
  19406. back: {
  19407. height: math.unit(7, "feet"),
  19408. weight: math.unit(275, "lb"),
  19409. name: "Back",
  19410. image: {
  19411. source: "./media/characters/claude-delroute/back.svg",
  19412. extra: 911/829,
  19413. bottom: 18/929
  19414. }
  19415. },
  19416. maw: {
  19417. height: math.unit(0.6407, "meters"),
  19418. name: "Maw",
  19419. image: {
  19420. source: "./media/characters/claude-delroute/maw.svg"
  19421. }
  19422. },
  19423. },
  19424. [
  19425. {
  19426. name: "Normal",
  19427. height: math.unit(7, "feet"),
  19428. default: true
  19429. },
  19430. {
  19431. name: "Lorge",
  19432. height: math.unit(20, "feet")
  19433. },
  19434. ]
  19435. ))
  19436. characterMakers.push(() => makeCharacter(
  19437. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19438. {
  19439. front: {
  19440. height: math.unit(8 + 4 / 12, "feet"),
  19441. weight: math.unit(600, "lb"),
  19442. name: "Front",
  19443. image: {
  19444. source: "./media/characters/dragonien/front.svg",
  19445. extra: 100 / 94,
  19446. bottom: 3.3 / 103.3445
  19447. }
  19448. },
  19449. back: {
  19450. height: math.unit(8 + 4 / 12, "feet"),
  19451. weight: math.unit(600, "lb"),
  19452. name: "Back",
  19453. image: {
  19454. source: "./media/characters/dragonien/back.svg",
  19455. extra: 776 / 746,
  19456. bottom: 6.4 / 782.0616
  19457. }
  19458. },
  19459. foot: {
  19460. height: math.unit(1.54, "feet"),
  19461. name: "Foot",
  19462. image: {
  19463. source: "./media/characters/dragonien/foot.svg",
  19464. }
  19465. },
  19466. },
  19467. [
  19468. {
  19469. name: "Normal",
  19470. height: math.unit(8 + 4 / 12, "feet"),
  19471. default: true
  19472. },
  19473. {
  19474. name: "Macro",
  19475. height: math.unit(200, "feet")
  19476. },
  19477. {
  19478. name: "Megamacro",
  19479. height: math.unit(1, "mile")
  19480. },
  19481. {
  19482. name: "Gigamacro",
  19483. height: math.unit(1000, "miles")
  19484. },
  19485. ]
  19486. ))
  19487. characterMakers.push(() => makeCharacter(
  19488. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19489. {
  19490. front: {
  19491. height: math.unit(5 + 2 / 12, "feet"),
  19492. weight: math.unit(110, "lb"),
  19493. name: "Front",
  19494. image: {
  19495. source: "./media/characters/desta/front.svg",
  19496. extra: 767 / 726,
  19497. bottom: 11.7 / 779
  19498. }
  19499. },
  19500. back: {
  19501. height: math.unit(5 + 2 / 12, "feet"),
  19502. weight: math.unit(110, "lb"),
  19503. name: "Back",
  19504. image: {
  19505. source: "./media/characters/desta/back.svg",
  19506. extra: 777 / 728,
  19507. bottom: 6 / 784
  19508. }
  19509. },
  19510. frontAlt: {
  19511. height: math.unit(5 + 2 / 12, "feet"),
  19512. weight: math.unit(110, "lb"),
  19513. name: "Front",
  19514. image: {
  19515. source: "./media/characters/desta/front-alt.svg",
  19516. extra: 1482 / 1417
  19517. }
  19518. },
  19519. side: {
  19520. height: math.unit(5 + 2 / 12, "feet"),
  19521. weight: math.unit(110, "lb"),
  19522. name: "Side",
  19523. image: {
  19524. source: "./media/characters/desta/side.svg",
  19525. extra: 2579 / 2491,
  19526. bottom: 0.053
  19527. }
  19528. },
  19529. },
  19530. [
  19531. {
  19532. name: "Micro",
  19533. height: math.unit(6, "inches")
  19534. },
  19535. {
  19536. name: "Normal",
  19537. height: math.unit(5 + 2 / 12, "feet"),
  19538. default: true
  19539. },
  19540. {
  19541. name: "Macro",
  19542. height: math.unit(62, "feet")
  19543. },
  19544. {
  19545. name: "Megamacro",
  19546. height: math.unit(1800, "feet")
  19547. },
  19548. ]
  19549. ))
  19550. characterMakers.push(() => makeCharacter(
  19551. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19552. {
  19553. front: {
  19554. height: math.unit(10, "feet"),
  19555. weight: math.unit(700, "lb"),
  19556. name: "Front",
  19557. image: {
  19558. source: "./media/characters/storm-alystar/front.svg",
  19559. extra: 2112 / 1898,
  19560. bottom: 0.034
  19561. }
  19562. },
  19563. },
  19564. [
  19565. {
  19566. name: "Micro",
  19567. height: math.unit(3.5, "inches")
  19568. },
  19569. {
  19570. name: "Normal",
  19571. height: math.unit(10, "feet"),
  19572. default: true
  19573. },
  19574. {
  19575. name: "Macro",
  19576. height: math.unit(400, "feet")
  19577. },
  19578. {
  19579. name: "Deific",
  19580. height: math.unit(60, "miles")
  19581. },
  19582. ]
  19583. ))
  19584. characterMakers.push(() => makeCharacter(
  19585. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19586. {
  19587. front: {
  19588. height: math.unit(2.35, "meters"),
  19589. weight: math.unit(119, "kg"),
  19590. name: "Front",
  19591. image: {
  19592. source: "./media/characters/ilia/front.svg",
  19593. extra: 1285 / 1255,
  19594. bottom: 0.06
  19595. }
  19596. },
  19597. },
  19598. [
  19599. {
  19600. name: "Normal",
  19601. height: math.unit(2.35, "meters")
  19602. },
  19603. {
  19604. name: "Macro",
  19605. height: math.unit(140, "meters"),
  19606. default: true
  19607. },
  19608. {
  19609. name: "Megamacro",
  19610. height: math.unit(100, "miles")
  19611. },
  19612. ]
  19613. ))
  19614. characterMakers.push(() => makeCharacter(
  19615. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19616. {
  19617. front: {
  19618. height: math.unit(6 + 5 / 12, "feet"),
  19619. weight: math.unit(190, "lb"),
  19620. name: "Front",
  19621. image: {
  19622. source: "./media/characters/kingdead/front.svg",
  19623. extra: 1228 / 1177
  19624. }
  19625. },
  19626. },
  19627. [
  19628. {
  19629. name: "Micro",
  19630. height: math.unit(7, "inches")
  19631. },
  19632. {
  19633. name: "Normal",
  19634. height: math.unit(6 + 5 / 12, "feet")
  19635. },
  19636. {
  19637. name: "Macro",
  19638. height: math.unit(150, "feet"),
  19639. default: true
  19640. },
  19641. {
  19642. name: "Megamacro",
  19643. height: math.unit(200, "miles")
  19644. },
  19645. ]
  19646. ))
  19647. characterMakers.push(() => makeCharacter(
  19648. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19649. {
  19650. front: {
  19651. height: math.unit(8, "feet"),
  19652. weight: math.unit(600, "lb"),
  19653. name: "Front",
  19654. image: {
  19655. source: "./media/characters/kyrehx/front.svg",
  19656. extra: 1195 / 1095,
  19657. bottom: 0.034
  19658. }
  19659. },
  19660. },
  19661. [
  19662. {
  19663. name: "Micro",
  19664. height: math.unit(2, "inches")
  19665. },
  19666. {
  19667. name: "Normal",
  19668. height: math.unit(8, "feet"),
  19669. default: true
  19670. },
  19671. {
  19672. name: "Macro",
  19673. height: math.unit(255, "feet")
  19674. },
  19675. ]
  19676. ))
  19677. characterMakers.push(() => makeCharacter(
  19678. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19679. {
  19680. front: {
  19681. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19682. weight: math.unit(184, "lb"),
  19683. name: "Front",
  19684. image: {
  19685. source: "./media/characters/xang/front.svg",
  19686. extra: 845 / 755
  19687. }
  19688. },
  19689. },
  19690. [
  19691. {
  19692. name: "Normal",
  19693. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19694. default: true
  19695. },
  19696. {
  19697. name: "Macro",
  19698. height: math.unit(0.935 * 146, "feet")
  19699. },
  19700. {
  19701. name: "Megamacro",
  19702. height: math.unit(0.935 * 3, "miles")
  19703. },
  19704. ]
  19705. ))
  19706. characterMakers.push(() => makeCharacter(
  19707. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19708. {
  19709. frontDressed: {
  19710. height: math.unit(5 + 7 / 12, "feet"),
  19711. weight: math.unit(140, "lb"),
  19712. name: "Front (Dressed)",
  19713. image: {
  19714. source: "./media/characters/doc-weardno/front-dressed.svg",
  19715. extra: 263 / 234
  19716. }
  19717. },
  19718. backDressed: {
  19719. height: math.unit(5 + 7 / 12, "feet"),
  19720. weight: math.unit(140, "lb"),
  19721. name: "Back (Dressed)",
  19722. image: {
  19723. source: "./media/characters/doc-weardno/back-dressed.svg",
  19724. extra: 266 / 238
  19725. }
  19726. },
  19727. front: {
  19728. height: math.unit(5 + 7 / 12, "feet"),
  19729. weight: math.unit(140, "lb"),
  19730. name: "Front",
  19731. image: {
  19732. source: "./media/characters/doc-weardno/front.svg",
  19733. extra: 254 / 233
  19734. }
  19735. },
  19736. },
  19737. [
  19738. {
  19739. name: "Micro",
  19740. height: math.unit(3, "inches")
  19741. },
  19742. {
  19743. name: "Normal",
  19744. height: math.unit(5 + 7 / 12, "feet"),
  19745. default: true
  19746. },
  19747. {
  19748. name: "Macro",
  19749. height: math.unit(25, "feet")
  19750. },
  19751. {
  19752. name: "Megamacro",
  19753. height: math.unit(2, "miles")
  19754. },
  19755. ]
  19756. ))
  19757. characterMakers.push(() => makeCharacter(
  19758. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19759. {
  19760. front: {
  19761. height: math.unit(6 + 2 / 12, "feet"),
  19762. weight: math.unit(153, "lb"),
  19763. name: "Front",
  19764. image: {
  19765. source: "./media/characters/seth-whilst/front.svg",
  19766. bottom: 0.07
  19767. }
  19768. },
  19769. },
  19770. [
  19771. {
  19772. name: "Micro",
  19773. height: math.unit(5, "inches")
  19774. },
  19775. {
  19776. name: "Normal",
  19777. height: math.unit(6 + 2 / 12, "feet"),
  19778. default: true
  19779. },
  19780. ]
  19781. ))
  19782. characterMakers.push(() => makeCharacter(
  19783. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19784. {
  19785. front: {
  19786. height: math.unit(3, "inches"),
  19787. weight: math.unit(8, "grams"),
  19788. name: "Front",
  19789. image: {
  19790. source: "./media/characters/pocket-jabari/front.svg",
  19791. extra: 1024 / 974,
  19792. bottom: 0.039
  19793. }
  19794. },
  19795. },
  19796. [
  19797. {
  19798. name: "Minimicro",
  19799. height: math.unit(8, "mm")
  19800. },
  19801. {
  19802. name: "Micro",
  19803. height: math.unit(3, "inches"),
  19804. default: true
  19805. },
  19806. {
  19807. name: "Normal",
  19808. height: math.unit(3, "feet")
  19809. },
  19810. ]
  19811. ))
  19812. characterMakers.push(() => makeCharacter(
  19813. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19814. {
  19815. frontDressed: {
  19816. height: math.unit(15, "feet"),
  19817. weight: math.unit(3280, "lb"),
  19818. name: "Front (Dressed)",
  19819. image: {
  19820. source: "./media/characters/sapphy/front-dressed.svg",
  19821. extra: 1951/1654,
  19822. bottom: 194/2145
  19823. },
  19824. form: "anthro",
  19825. default: true
  19826. },
  19827. backDressed: {
  19828. height: math.unit(15, "feet"),
  19829. weight: math.unit(3280, "lb"),
  19830. name: "Back (Dressed)",
  19831. image: {
  19832. source: "./media/characters/sapphy/back-dressed.svg",
  19833. extra: 2058/1918,
  19834. bottom: 125/2183
  19835. },
  19836. form: "anthro"
  19837. },
  19838. frontNude: {
  19839. height: math.unit(15, "feet"),
  19840. weight: math.unit(3280, "lb"),
  19841. name: "Front (Nude)",
  19842. image: {
  19843. source: "./media/characters/sapphy/front-nude.svg",
  19844. extra: 1951/1654,
  19845. bottom: 194/2145
  19846. },
  19847. form: "anthro"
  19848. },
  19849. backNude: {
  19850. height: math.unit(15, "feet"),
  19851. weight: math.unit(3280, "lb"),
  19852. name: "Back (Nude)",
  19853. image: {
  19854. source: "./media/characters/sapphy/back-nude.svg",
  19855. extra: 2058/1918,
  19856. bottom: 125/2183
  19857. },
  19858. form: "anthro"
  19859. },
  19860. full: {
  19861. height: math.unit(15, "feet"),
  19862. weight: math.unit(3280, "lb"),
  19863. name: "Full",
  19864. image: {
  19865. source: "./media/characters/sapphy/full.svg",
  19866. extra: 1396/1317,
  19867. bottom: 44/1440
  19868. },
  19869. form: "anthro"
  19870. },
  19871. dick: {
  19872. height: math.unit(3.8, "feet"),
  19873. name: "Dick",
  19874. image: {
  19875. source: "./media/characters/sapphy/dick.svg"
  19876. },
  19877. form: "anthro"
  19878. },
  19879. feral: {
  19880. height: math.unit(35, "feet"),
  19881. weight: math.unit(160, "tons"),
  19882. name: "Feral",
  19883. image: {
  19884. source: "./media/characters/sapphy/feral.svg",
  19885. extra: 1050/573,
  19886. bottom: 60/1110
  19887. },
  19888. form: "feral",
  19889. default: true
  19890. },
  19891. },
  19892. [
  19893. {
  19894. name: "Normal",
  19895. height: math.unit(15, "feet"),
  19896. form: "anthro"
  19897. },
  19898. {
  19899. name: "Casual Macro",
  19900. height: math.unit(120, "feet"),
  19901. form: "anthro"
  19902. },
  19903. {
  19904. name: "Macro",
  19905. height: math.unit(2150, "feet"),
  19906. default: true,
  19907. form: "anthro"
  19908. },
  19909. {
  19910. name: "Megamacro",
  19911. height: math.unit(8, "miles"),
  19912. form: "anthro"
  19913. },
  19914. {
  19915. name: "Galaxy Mom",
  19916. height: math.unit(6, "megalightyears"),
  19917. form: "anthro"
  19918. },
  19919. {
  19920. name: "Normal",
  19921. height: math.unit(35, "feet"),
  19922. form: "feral",
  19923. default: true
  19924. },
  19925. {
  19926. name: "Macro",
  19927. height: math.unit(300, "feet"),
  19928. form: "feral"
  19929. },
  19930. {
  19931. name: "Galaxy Mom",
  19932. height: math.unit(10, "megalightyears"),
  19933. form: "feral"
  19934. },
  19935. ],
  19936. {
  19937. "anthro": {
  19938. name: "Anthro",
  19939. default: true
  19940. },
  19941. "feral": {
  19942. name: "Feral"
  19943. }
  19944. }
  19945. ))
  19946. characterMakers.push(() => makeCharacter(
  19947. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19948. {
  19949. front: {
  19950. height: math.unit(6, "feet"),
  19951. weight: math.unit(170, "lb"),
  19952. name: "Front",
  19953. image: {
  19954. source: "./media/characters/kiro/front.svg",
  19955. extra: 1064 / 1012,
  19956. bottom: 0.052
  19957. }
  19958. },
  19959. },
  19960. [
  19961. {
  19962. name: "Micro",
  19963. height: math.unit(6, "inches")
  19964. },
  19965. {
  19966. name: "Normal",
  19967. height: math.unit(6, "feet"),
  19968. default: true
  19969. },
  19970. {
  19971. name: "Macro",
  19972. height: math.unit(72, "feet")
  19973. },
  19974. ]
  19975. ))
  19976. characterMakers.push(() => makeCharacter(
  19977. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19978. {
  19979. front: {
  19980. height: math.unit(5 + 9 / 12, "feet"),
  19981. weight: math.unit(175, "lb"),
  19982. name: "Front",
  19983. image: {
  19984. source: "./media/characters/irishfox/front.svg",
  19985. extra: 1912 / 1680,
  19986. bottom: 0.02
  19987. }
  19988. },
  19989. },
  19990. [
  19991. {
  19992. name: "Nano",
  19993. height: math.unit(1, "mm")
  19994. },
  19995. {
  19996. name: "Micro",
  19997. height: math.unit(2, "inches")
  19998. },
  19999. {
  20000. name: "Normal",
  20001. height: math.unit(5 + 9 / 12, "feet"),
  20002. default: true
  20003. },
  20004. {
  20005. name: "Macro",
  20006. height: math.unit(45, "feet")
  20007. },
  20008. ]
  20009. ))
  20010. characterMakers.push(() => makeCharacter(
  20011. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20012. {
  20013. front: {
  20014. height: math.unit(6 + 1 / 12, "feet"),
  20015. weight: math.unit(75, "lb"),
  20016. name: "Front",
  20017. image: {
  20018. source: "./media/characters/aronai-sieyes/front.svg",
  20019. extra: 1532/1450,
  20020. bottom: 42/1574
  20021. }
  20022. },
  20023. side: {
  20024. height: math.unit(6 + 1 / 12, "feet"),
  20025. weight: math.unit(75, "lb"),
  20026. name: "Side",
  20027. image: {
  20028. source: "./media/characters/aronai-sieyes/side.svg",
  20029. extra: 1422/1365,
  20030. bottom: 148/1570
  20031. }
  20032. },
  20033. back: {
  20034. height: math.unit(6 + 1 / 12, "feet"),
  20035. weight: math.unit(75, "lb"),
  20036. name: "Back",
  20037. image: {
  20038. source: "./media/characters/aronai-sieyes/back.svg",
  20039. extra: 1526/1464,
  20040. bottom: 51/1577
  20041. }
  20042. },
  20043. dressed: {
  20044. height: math.unit(6 + 1 / 12, "feet"),
  20045. weight: math.unit(75, "lb"),
  20046. name: "Dressed",
  20047. image: {
  20048. source: "./media/characters/aronai-sieyes/dressed.svg",
  20049. extra: 1559/1483,
  20050. bottom: 39/1598
  20051. }
  20052. },
  20053. slit: {
  20054. height: math.unit(1.3, "feet"),
  20055. name: "Slit",
  20056. image: {
  20057. source: "./media/characters/aronai-sieyes/slit.svg"
  20058. }
  20059. },
  20060. slitSpread: {
  20061. height: math.unit(0.9, "feet"),
  20062. name: "Slit (Spread)",
  20063. image: {
  20064. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20065. }
  20066. },
  20067. rump: {
  20068. height: math.unit(1.3, "feet"),
  20069. name: "Rump",
  20070. image: {
  20071. source: "./media/characters/aronai-sieyes/rump.svg"
  20072. }
  20073. },
  20074. maw: {
  20075. height: math.unit(1.25, "feet"),
  20076. name: "Maw",
  20077. image: {
  20078. source: "./media/characters/aronai-sieyes/maw.svg"
  20079. }
  20080. },
  20081. feral: {
  20082. height: math.unit(18, "feet"),
  20083. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20084. name: "Feral",
  20085. image: {
  20086. source: "./media/characters/aronai-sieyes/feral.svg",
  20087. extra: 1530 / 1240,
  20088. bottom: 0.035
  20089. }
  20090. },
  20091. },
  20092. [
  20093. {
  20094. name: "Micro",
  20095. height: math.unit(2, "inches")
  20096. },
  20097. {
  20098. name: "Normal",
  20099. height: math.unit(6 + 1 / 12, "feet"),
  20100. default: true
  20101. }
  20102. ]
  20103. ))
  20104. characterMakers.push(() => makeCharacter(
  20105. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20106. {
  20107. front: {
  20108. height: math.unit(12, "feet"),
  20109. weight: math.unit(410, "kg"),
  20110. name: "Front",
  20111. image: {
  20112. source: "./media/characters/xuna/front.svg",
  20113. extra: 2184 / 1980
  20114. }
  20115. },
  20116. side: {
  20117. height: math.unit(12, "feet"),
  20118. weight: math.unit(410, "kg"),
  20119. name: "Side",
  20120. image: {
  20121. source: "./media/characters/xuna/side.svg",
  20122. extra: 2184 / 1980
  20123. }
  20124. },
  20125. back: {
  20126. height: math.unit(12, "feet"),
  20127. weight: math.unit(410, "kg"),
  20128. name: "Back",
  20129. image: {
  20130. source: "./media/characters/xuna/back.svg",
  20131. extra: 2184 / 1980
  20132. }
  20133. },
  20134. },
  20135. [
  20136. {
  20137. name: "Nano glow",
  20138. height: math.unit(10, "nm")
  20139. },
  20140. {
  20141. name: "Micro floof",
  20142. height: math.unit(0.3, "m")
  20143. },
  20144. {
  20145. name: "Huggable softy boi",
  20146. height: math.unit(3.6576, "m"),
  20147. default: true
  20148. },
  20149. {
  20150. name: "Admirable floof",
  20151. height: math.unit(80, "meters")
  20152. },
  20153. {
  20154. name: "Gentle macro",
  20155. height: math.unit(300, "meters")
  20156. },
  20157. {
  20158. name: "Very careful floof",
  20159. height: math.unit(3200, "meters")
  20160. },
  20161. {
  20162. name: "The mega floof",
  20163. height: math.unit(36000, "meters")
  20164. },
  20165. {
  20166. name: "Giga-fur-Wicker",
  20167. height: math.unit(4800000, "meters")
  20168. },
  20169. {
  20170. name: "Licky world",
  20171. height: math.unit(20000000, "meters")
  20172. },
  20173. {
  20174. name: "Floofy cyan sun",
  20175. height: math.unit(1500000000, "meters")
  20176. },
  20177. {
  20178. name: "Milky Wicker",
  20179. height: math.unit(1000000000000000000000, "meters")
  20180. },
  20181. {
  20182. name: "The observing Wicker",
  20183. height: math.unit(999999999999999999999999999, "meters")
  20184. },
  20185. ]
  20186. ))
  20187. characterMakers.push(() => makeCharacter(
  20188. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20189. {
  20190. front: {
  20191. height: math.unit(5 + 9 / 12, "feet"),
  20192. weight: math.unit(150, "lb"),
  20193. name: "Front",
  20194. image: {
  20195. source: "./media/characters/arokha-sieyes/front.svg",
  20196. extra: 1425 / 1284,
  20197. bottom: 0.05
  20198. }
  20199. },
  20200. },
  20201. [
  20202. {
  20203. name: "Normal",
  20204. height: math.unit(5 + 9 / 12, "feet")
  20205. },
  20206. {
  20207. name: "Macro",
  20208. height: math.unit(30, "meters"),
  20209. default: true
  20210. },
  20211. ]
  20212. ))
  20213. characterMakers.push(() => makeCharacter(
  20214. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20215. {
  20216. front: {
  20217. height: math.unit(6, "feet"),
  20218. weight: math.unit(180, "lb"),
  20219. name: "Front",
  20220. image: {
  20221. source: "./media/characters/arokh-sieyes/front.svg",
  20222. extra: 1830 / 1769,
  20223. bottom: 0.01
  20224. }
  20225. },
  20226. },
  20227. [
  20228. {
  20229. name: "Normal",
  20230. height: math.unit(6, "feet")
  20231. },
  20232. {
  20233. name: "Macro",
  20234. height: math.unit(30, "meters"),
  20235. default: true
  20236. },
  20237. ]
  20238. ))
  20239. characterMakers.push(() => makeCharacter(
  20240. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20241. {
  20242. side: {
  20243. height: math.unit(13 + 1 / 12, "feet"),
  20244. weight: math.unit(8.5, "tonnes"),
  20245. name: "Side",
  20246. image: {
  20247. source: "./media/characters/goldeneye/side.svg",
  20248. extra: 1182 / 778,
  20249. bottom: 0.067
  20250. }
  20251. },
  20252. paw: {
  20253. height: math.unit(3.4, "feet"),
  20254. name: "Paw",
  20255. image: {
  20256. source: "./media/characters/goldeneye/paw.svg"
  20257. }
  20258. },
  20259. },
  20260. [
  20261. {
  20262. name: "Normal",
  20263. height: math.unit(13 + 1 / 12, "feet"),
  20264. default: true
  20265. },
  20266. ]
  20267. ))
  20268. characterMakers.push(() => makeCharacter(
  20269. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20270. {
  20271. front: {
  20272. height: math.unit(6 + 1 / 12, "feet"),
  20273. weight: math.unit(210, "lb"),
  20274. name: "Front",
  20275. image: {
  20276. source: "./media/characters/leonardo-lycheborne/front.svg",
  20277. extra: 776/723,
  20278. bottom: 34/810
  20279. }
  20280. },
  20281. side: {
  20282. height: math.unit(6 + 1 / 12, "feet"),
  20283. weight: math.unit(210, "lb"),
  20284. name: "Side",
  20285. image: {
  20286. source: "./media/characters/leonardo-lycheborne/side.svg",
  20287. extra: 780/728,
  20288. bottom: 12/792
  20289. }
  20290. },
  20291. back: {
  20292. height: math.unit(6 + 1 / 12, "feet"),
  20293. weight: math.unit(210, "lb"),
  20294. name: "Back",
  20295. image: {
  20296. source: "./media/characters/leonardo-lycheborne/back.svg",
  20297. extra: 775/721,
  20298. bottom: 17/792
  20299. }
  20300. },
  20301. hand: {
  20302. height: math.unit(1.08, "feet"),
  20303. name: "Hand",
  20304. image: {
  20305. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20306. }
  20307. },
  20308. foot: {
  20309. height: math.unit(1.32, "feet"),
  20310. name: "Foot",
  20311. image: {
  20312. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20313. }
  20314. },
  20315. maw: {
  20316. height: math.unit(1, "feet"),
  20317. name: "Maw",
  20318. image: {
  20319. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20320. }
  20321. },
  20322. were: {
  20323. height: math.unit(20, "feet"),
  20324. weight: math.unit(7800, "lb"),
  20325. name: "Were",
  20326. image: {
  20327. source: "./media/characters/leonardo-lycheborne/were.svg",
  20328. extra: 1224/1165,
  20329. bottom: 72/1296
  20330. }
  20331. },
  20332. feral: {
  20333. height: math.unit(7.5, "feet"),
  20334. weight: math.unit(600, "lb"),
  20335. name: "Feral",
  20336. image: {
  20337. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20338. extra: 797/702,
  20339. bottom: 139/936
  20340. }
  20341. },
  20342. taur: {
  20343. height: math.unit(11, "feet"),
  20344. weight: math.unit(3300, "lb"),
  20345. name: "Taur",
  20346. image: {
  20347. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20348. extra: 1271/1197,
  20349. bottom: 47/1318
  20350. }
  20351. },
  20352. barghest: {
  20353. height: math.unit(11, "feet"),
  20354. weight: math.unit(1300, "lb"),
  20355. name: "Barghest",
  20356. image: {
  20357. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20358. extra: 1291/1204,
  20359. bottom: 37/1328
  20360. }
  20361. },
  20362. dick: {
  20363. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20364. name: "Dick",
  20365. image: {
  20366. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20367. }
  20368. },
  20369. dickWere: {
  20370. height: math.unit((20) / 3.8, "feet"),
  20371. name: "Dick (Were)",
  20372. image: {
  20373. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20374. }
  20375. },
  20376. },
  20377. [
  20378. {
  20379. name: "Normal",
  20380. height: math.unit(6 + 1 / 12, "feet"),
  20381. default: true
  20382. },
  20383. ]
  20384. ))
  20385. characterMakers.push(() => makeCharacter(
  20386. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20387. {
  20388. front: {
  20389. height: math.unit(10, "feet"),
  20390. weight: math.unit(350, "lb"),
  20391. name: "Front",
  20392. image: {
  20393. source: "./media/characters/jet/front.svg",
  20394. extra: 2050 / 1980,
  20395. bottom: 0.013
  20396. }
  20397. },
  20398. back: {
  20399. height: math.unit(10, "feet"),
  20400. weight: math.unit(350, "lb"),
  20401. name: "Back",
  20402. image: {
  20403. source: "./media/characters/jet/back.svg",
  20404. extra: 2050 / 1980,
  20405. bottom: 0.013
  20406. }
  20407. },
  20408. },
  20409. [
  20410. {
  20411. name: "Micro",
  20412. height: math.unit(6, "inches")
  20413. },
  20414. {
  20415. name: "Normal",
  20416. height: math.unit(10, "feet"),
  20417. default: true
  20418. },
  20419. {
  20420. name: "Macro",
  20421. height: math.unit(100, "feet")
  20422. },
  20423. ]
  20424. ))
  20425. characterMakers.push(() => makeCharacter(
  20426. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20427. {
  20428. front: {
  20429. height: math.unit(15, "feet"),
  20430. weight: math.unit(2800, "lb"),
  20431. name: "Front",
  20432. image: {
  20433. source: "./media/characters/tanarath/front.svg",
  20434. extra: 2392 / 2220,
  20435. bottom: 0.03
  20436. }
  20437. },
  20438. back: {
  20439. height: math.unit(15, "feet"),
  20440. weight: math.unit(2800, "lb"),
  20441. name: "Back",
  20442. image: {
  20443. source: "./media/characters/tanarath/back.svg",
  20444. extra: 2392 / 2220,
  20445. bottom: 0.03
  20446. }
  20447. },
  20448. },
  20449. [
  20450. {
  20451. name: "Normal",
  20452. height: math.unit(15, "feet"),
  20453. default: true
  20454. },
  20455. ]
  20456. ))
  20457. characterMakers.push(() => makeCharacter(
  20458. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20459. {
  20460. front: {
  20461. height: math.unit(7 + 1 / 12, "feet"),
  20462. weight: math.unit(175, "lb"),
  20463. name: "Front",
  20464. image: {
  20465. source: "./media/characters/patty-cattybatty/front.svg",
  20466. extra: 908 / 874,
  20467. bottom: 0.025
  20468. }
  20469. },
  20470. },
  20471. [
  20472. {
  20473. name: "Micro",
  20474. height: math.unit(1, "inch")
  20475. },
  20476. {
  20477. name: "Normal",
  20478. height: math.unit(7 + 1 / 12, "feet")
  20479. },
  20480. {
  20481. name: "Mini Macro",
  20482. height: math.unit(155, "feet")
  20483. },
  20484. {
  20485. name: "Macro",
  20486. height: math.unit(1077, "feet")
  20487. },
  20488. {
  20489. name: "Mega Macro",
  20490. height: math.unit(47650, "feet"),
  20491. default: true
  20492. },
  20493. {
  20494. name: "Giga Macro",
  20495. height: math.unit(440, "miles")
  20496. },
  20497. {
  20498. name: "Tera Macro",
  20499. height: math.unit(8700, "miles")
  20500. },
  20501. {
  20502. name: "Planetary Macro",
  20503. height: math.unit(32700, "miles")
  20504. },
  20505. {
  20506. name: "Solar Macro",
  20507. height: math.unit(550000, "miles")
  20508. },
  20509. {
  20510. name: "Celestial Macro",
  20511. height: math.unit(2.5, "AU")
  20512. },
  20513. ]
  20514. ))
  20515. characterMakers.push(() => makeCharacter(
  20516. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20517. {
  20518. front: {
  20519. height: math.unit(4 + 5 / 12, "feet"),
  20520. weight: math.unit(90, "lb"),
  20521. name: "Front",
  20522. image: {
  20523. source: "./media/characters/cappu/front.svg",
  20524. extra: 1247 / 1152,
  20525. bottom: 0.012
  20526. }
  20527. },
  20528. },
  20529. [
  20530. {
  20531. name: "Normal",
  20532. height: math.unit(4 + 5 / 12, "feet"),
  20533. default: true
  20534. },
  20535. ]
  20536. ))
  20537. characterMakers.push(() => makeCharacter(
  20538. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20539. {
  20540. frontDressed: {
  20541. height: math.unit(70, "cm"),
  20542. weight: math.unit(6, "kg"),
  20543. name: "Front (Dressed)",
  20544. image: {
  20545. source: "./media/characters/sebi/front-dressed.svg",
  20546. extra: 713.5 / 686.5,
  20547. bottom: 0.003
  20548. }
  20549. },
  20550. front: {
  20551. height: math.unit(70, "cm"),
  20552. weight: math.unit(5, "kg"),
  20553. name: "Front",
  20554. image: {
  20555. source: "./media/characters/sebi/front.svg",
  20556. extra: 713.5 / 686.5,
  20557. bottom: 0.003
  20558. }
  20559. }
  20560. },
  20561. [
  20562. {
  20563. name: "Normal",
  20564. height: math.unit(70, "cm"),
  20565. default: true
  20566. },
  20567. {
  20568. name: "Macro",
  20569. height: math.unit(8, "meters")
  20570. },
  20571. ]
  20572. ))
  20573. characterMakers.push(() => makeCharacter(
  20574. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20575. {
  20576. front: {
  20577. height: math.unit(6, "feet"),
  20578. weight: math.unit(150, "lb"),
  20579. name: "Front",
  20580. image: {
  20581. source: "./media/characters/typhek/front.svg",
  20582. extra: 1948 / 1929,
  20583. bottom: 0.025
  20584. }
  20585. },
  20586. side: {
  20587. height: math.unit(6, "feet"),
  20588. weight: math.unit(150, "lb"),
  20589. name: "Side",
  20590. image: {
  20591. source: "./media/characters/typhek/side.svg",
  20592. extra: 2034 / 2010,
  20593. bottom: 0.003
  20594. }
  20595. },
  20596. back: {
  20597. height: math.unit(6, "feet"),
  20598. weight: math.unit(150, "lb"),
  20599. name: "Back",
  20600. image: {
  20601. source: "./media/characters/typhek/back.svg",
  20602. extra: 2005 / 1978,
  20603. bottom: 0.004
  20604. }
  20605. },
  20606. palm: {
  20607. height: math.unit(1.2, "feet"),
  20608. name: "Palm",
  20609. image: {
  20610. source: "./media/characters/typhek/palm.svg"
  20611. }
  20612. },
  20613. fist: {
  20614. height: math.unit(1.1, "feet"),
  20615. name: "Fist",
  20616. image: {
  20617. source: "./media/characters/typhek/fist.svg"
  20618. }
  20619. },
  20620. foot: {
  20621. height: math.unit(1.57, "feet"),
  20622. name: "Foot",
  20623. image: {
  20624. source: "./media/characters/typhek/foot.svg"
  20625. }
  20626. },
  20627. sole: {
  20628. height: math.unit(2.05, "feet"),
  20629. name: "Sole",
  20630. image: {
  20631. source: "./media/characters/typhek/sole.svg"
  20632. }
  20633. },
  20634. },
  20635. [
  20636. {
  20637. name: "Macro",
  20638. height: math.unit(40, "stories"),
  20639. default: true
  20640. },
  20641. {
  20642. name: "Megamacro",
  20643. height: math.unit(1, "mile")
  20644. },
  20645. {
  20646. name: "Gigamacro",
  20647. height: math.unit(4000, "solarradii")
  20648. },
  20649. {
  20650. name: "Universal",
  20651. height: math.unit(1.1, "universes")
  20652. }
  20653. ]
  20654. ))
  20655. characterMakers.push(() => makeCharacter(
  20656. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20657. {
  20658. side: {
  20659. height: math.unit(5 + 7 / 12, "feet"),
  20660. weight: math.unit(150, "lb"),
  20661. name: "Side",
  20662. image: {
  20663. source: "./media/characters/kassy/side.svg",
  20664. extra: 1280 / 1225,
  20665. bottom: 0.002
  20666. }
  20667. },
  20668. front: {
  20669. height: math.unit(5 + 7 / 12, "feet"),
  20670. weight: math.unit(150, "lb"),
  20671. name: "Front",
  20672. image: {
  20673. source: "./media/characters/kassy/front.svg",
  20674. extra: 1280 / 1225,
  20675. bottom: 0.025
  20676. }
  20677. },
  20678. back: {
  20679. height: math.unit(5 + 7 / 12, "feet"),
  20680. weight: math.unit(150, "lb"),
  20681. name: "Back",
  20682. image: {
  20683. source: "./media/characters/kassy/back.svg",
  20684. extra: 1280 / 1225,
  20685. bottom: 0.002
  20686. }
  20687. },
  20688. foot: {
  20689. height: math.unit(1.266, "feet"),
  20690. name: "Foot",
  20691. image: {
  20692. source: "./media/characters/kassy/foot.svg"
  20693. }
  20694. },
  20695. },
  20696. [
  20697. {
  20698. name: "Normal",
  20699. height: math.unit(5 + 7 / 12, "feet")
  20700. },
  20701. {
  20702. name: "Macro",
  20703. height: math.unit(137, "feet"),
  20704. default: true
  20705. },
  20706. {
  20707. name: "Megamacro",
  20708. height: math.unit(1, "mile")
  20709. },
  20710. ]
  20711. ))
  20712. characterMakers.push(() => makeCharacter(
  20713. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20714. {
  20715. front: {
  20716. height: math.unit(6 + 1 / 12, "feet"),
  20717. weight: math.unit(200, "lb"),
  20718. name: "Front",
  20719. image: {
  20720. source: "./media/characters/neil/front.svg",
  20721. extra: 1326 / 1250,
  20722. bottom: 0.023
  20723. }
  20724. },
  20725. },
  20726. [
  20727. {
  20728. name: "Normal",
  20729. height: math.unit(6 + 1 / 12, "feet"),
  20730. default: true
  20731. },
  20732. {
  20733. name: "Macro",
  20734. height: math.unit(200, "feet")
  20735. },
  20736. ]
  20737. ))
  20738. characterMakers.push(() => makeCharacter(
  20739. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20740. {
  20741. front: {
  20742. height: math.unit(5 + 9 / 12, "feet"),
  20743. weight: math.unit(190, "lb"),
  20744. name: "Front",
  20745. image: {
  20746. source: "./media/characters/atticus/front.svg",
  20747. extra: 2934 / 2785,
  20748. bottom: 0.025
  20749. }
  20750. },
  20751. },
  20752. [
  20753. {
  20754. name: "Normal",
  20755. height: math.unit(5 + 9 / 12, "feet"),
  20756. default: true
  20757. },
  20758. {
  20759. name: "Macro",
  20760. height: math.unit(180, "feet")
  20761. },
  20762. ]
  20763. ))
  20764. characterMakers.push(() => makeCharacter(
  20765. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20766. {
  20767. side: {
  20768. height: math.unit(9, "feet"),
  20769. weight: math.unit(650, "lb"),
  20770. name: "Side",
  20771. image: {
  20772. source: "./media/characters/milo/side.svg",
  20773. extra: 2644 / 2310,
  20774. bottom: 0.032
  20775. }
  20776. },
  20777. },
  20778. [
  20779. {
  20780. name: "Normal",
  20781. height: math.unit(9, "feet"),
  20782. default: true
  20783. },
  20784. {
  20785. name: "Macro",
  20786. height: math.unit(300, "feet")
  20787. },
  20788. ]
  20789. ))
  20790. characterMakers.push(() => makeCharacter(
  20791. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20792. {
  20793. side: {
  20794. height: math.unit(8, "meters"),
  20795. weight: math.unit(90000, "kg"),
  20796. name: "Side",
  20797. image: {
  20798. source: "./media/characters/ijzer/side.svg",
  20799. extra: 2756 / 1600,
  20800. bottom: 0.01
  20801. }
  20802. },
  20803. },
  20804. [
  20805. {
  20806. name: "Small",
  20807. height: math.unit(3, "meters")
  20808. },
  20809. {
  20810. name: "Normal",
  20811. height: math.unit(8, "meters"),
  20812. default: true
  20813. },
  20814. {
  20815. name: "Normal+",
  20816. height: math.unit(10, "meters")
  20817. },
  20818. {
  20819. name: "Bigger",
  20820. height: math.unit(24, "meters")
  20821. },
  20822. {
  20823. name: "Huge",
  20824. height: math.unit(80, "meters")
  20825. },
  20826. ]
  20827. ))
  20828. characterMakers.push(() => makeCharacter(
  20829. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20830. {
  20831. front: {
  20832. height: math.unit(6 + 2 / 12, "feet"),
  20833. weight: math.unit(153, "lb"),
  20834. name: "Front",
  20835. image: {
  20836. source: "./media/characters/luca-cervicum/front.svg",
  20837. extra: 370 / 327,
  20838. bottom: 0.015
  20839. }
  20840. },
  20841. back: {
  20842. height: math.unit(6 + 2 / 12, "feet"),
  20843. weight: math.unit(153, "lb"),
  20844. name: "Back",
  20845. image: {
  20846. source: "./media/characters/luca-cervicum/back.svg",
  20847. extra: 367 / 333,
  20848. bottom: 0.005
  20849. }
  20850. },
  20851. frontGear: {
  20852. height: math.unit(6 + 2 / 12, "feet"),
  20853. weight: math.unit(173, "lb"),
  20854. name: "Front (Gear)",
  20855. image: {
  20856. source: "./media/characters/luca-cervicum/front-gear.svg",
  20857. extra: 377 / 333,
  20858. bottom: 0.006
  20859. }
  20860. },
  20861. },
  20862. [
  20863. {
  20864. name: "Normal",
  20865. height: math.unit(6 + 2 / 12, "feet"),
  20866. default: true
  20867. },
  20868. ]
  20869. ))
  20870. characterMakers.push(() => makeCharacter(
  20871. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20872. {
  20873. front: {
  20874. height: math.unit(6 + 1 / 12, "feet"),
  20875. weight: math.unit(304, "lb"),
  20876. name: "Front",
  20877. image: {
  20878. source: "./media/characters/oliver/front.svg",
  20879. extra: 157 / 143,
  20880. bottom: 0.08
  20881. }
  20882. },
  20883. },
  20884. [
  20885. {
  20886. name: "Normal",
  20887. height: math.unit(6 + 1 / 12, "feet"),
  20888. default: true
  20889. },
  20890. ]
  20891. ))
  20892. characterMakers.push(() => makeCharacter(
  20893. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20894. {
  20895. front: {
  20896. height: math.unit(5 + 7 / 12, "feet"),
  20897. weight: math.unit(140, "lb"),
  20898. name: "Front",
  20899. image: {
  20900. source: "./media/characters/shane/front.svg",
  20901. extra: 304 / 289,
  20902. bottom: 0.005
  20903. }
  20904. },
  20905. },
  20906. [
  20907. {
  20908. name: "Normal",
  20909. height: math.unit(5 + 7 / 12, "feet"),
  20910. default: true
  20911. },
  20912. ]
  20913. ))
  20914. characterMakers.push(() => makeCharacter(
  20915. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20916. {
  20917. front: {
  20918. height: math.unit(5 + 9 / 12, "feet"),
  20919. weight: math.unit(178, "lb"),
  20920. name: "Front",
  20921. image: {
  20922. source: "./media/characters/shin/front.svg",
  20923. extra: 159 / 151,
  20924. bottom: 0.015
  20925. }
  20926. },
  20927. },
  20928. [
  20929. {
  20930. name: "Normal",
  20931. height: math.unit(5 + 9 / 12, "feet"),
  20932. default: true
  20933. },
  20934. ]
  20935. ))
  20936. characterMakers.push(() => makeCharacter(
  20937. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20938. {
  20939. front: {
  20940. height: math.unit(5 + 10 / 12, "feet"),
  20941. weight: math.unit(168, "lb"),
  20942. name: "Front",
  20943. image: {
  20944. source: "./media/characters/xerxes/front.svg",
  20945. extra: 282 / 260,
  20946. bottom: 0.045
  20947. }
  20948. },
  20949. },
  20950. [
  20951. {
  20952. name: "Normal",
  20953. height: math.unit(5 + 10 / 12, "feet"),
  20954. default: true
  20955. },
  20956. ]
  20957. ))
  20958. characterMakers.push(() => makeCharacter(
  20959. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20960. {
  20961. front: {
  20962. height: math.unit(6 + 7 / 12, "feet"),
  20963. weight: math.unit(208, "lb"),
  20964. name: "Front",
  20965. image: {
  20966. source: "./media/characters/chaska/front.svg",
  20967. extra: 332 / 319,
  20968. bottom: 0.015
  20969. }
  20970. },
  20971. },
  20972. [
  20973. {
  20974. name: "Normal",
  20975. height: math.unit(6 + 7 / 12, "feet"),
  20976. default: true
  20977. },
  20978. ]
  20979. ))
  20980. characterMakers.push(() => makeCharacter(
  20981. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20982. {
  20983. front: {
  20984. height: math.unit(5 + 8 / 12, "feet"),
  20985. weight: math.unit(208, "lb"),
  20986. name: "Front",
  20987. image: {
  20988. source: "./media/characters/enuk/front.svg",
  20989. extra: 437 / 406,
  20990. bottom: 0.02
  20991. }
  20992. },
  20993. },
  20994. [
  20995. {
  20996. name: "Normal",
  20997. height: math.unit(5 + 8 / 12, "feet"),
  20998. default: true
  20999. },
  21000. ]
  21001. ))
  21002. characterMakers.push(() => makeCharacter(
  21003. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21004. {
  21005. front: {
  21006. height: math.unit(5 + 10 / 12, "feet"),
  21007. weight: math.unit(252, "lb"),
  21008. name: "Front",
  21009. image: {
  21010. source: "./media/characters/bruun/front.svg",
  21011. extra: 197 / 187,
  21012. bottom: 0.012
  21013. }
  21014. },
  21015. },
  21016. [
  21017. {
  21018. name: "Normal",
  21019. height: math.unit(5 + 10 / 12, "feet"),
  21020. default: true
  21021. },
  21022. ]
  21023. ))
  21024. characterMakers.push(() => makeCharacter(
  21025. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21026. {
  21027. front: {
  21028. height: math.unit(6 + 10 / 12, "feet"),
  21029. weight: math.unit(255, "lb"),
  21030. name: "Front",
  21031. image: {
  21032. source: "./media/characters/alexeev/front.svg",
  21033. extra: 213 / 200,
  21034. bottom: 0.05
  21035. }
  21036. },
  21037. },
  21038. [
  21039. {
  21040. name: "Normal",
  21041. height: math.unit(6 + 10 / 12, "feet"),
  21042. default: true
  21043. },
  21044. ]
  21045. ))
  21046. characterMakers.push(() => makeCharacter(
  21047. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21048. {
  21049. front: {
  21050. height: math.unit(2 + 8 / 12, "feet"),
  21051. weight: math.unit(22, "lb"),
  21052. name: "Front",
  21053. image: {
  21054. source: "./media/characters/evelyn/front.svg",
  21055. extra: 208 / 180
  21056. }
  21057. },
  21058. },
  21059. [
  21060. {
  21061. name: "Normal",
  21062. height: math.unit(2 + 8 / 12, "feet"),
  21063. default: true
  21064. },
  21065. ]
  21066. ))
  21067. characterMakers.push(() => makeCharacter(
  21068. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21069. {
  21070. front: {
  21071. height: math.unit(5 + 9 / 12, "feet"),
  21072. weight: math.unit(139, "lb"),
  21073. name: "Front",
  21074. image: {
  21075. source: "./media/characters/inca/front.svg",
  21076. extra: 294 / 291,
  21077. bottom: 0.03
  21078. }
  21079. },
  21080. },
  21081. [
  21082. {
  21083. name: "Normal",
  21084. height: math.unit(5 + 9 / 12, "feet"),
  21085. default: true
  21086. },
  21087. ]
  21088. ))
  21089. characterMakers.push(() => makeCharacter(
  21090. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21091. {
  21092. front: {
  21093. height: math.unit(6 + 3 / 12, "feet"),
  21094. weight: math.unit(185, "lb"),
  21095. name: "Front",
  21096. image: {
  21097. source: "./media/characters/mera/front.svg",
  21098. extra: 291 / 277,
  21099. bottom: 0.03
  21100. }
  21101. },
  21102. },
  21103. [
  21104. {
  21105. name: "Normal",
  21106. height: math.unit(6 + 3 / 12, "feet"),
  21107. default: true
  21108. },
  21109. ]
  21110. ))
  21111. characterMakers.push(() => makeCharacter(
  21112. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21113. {
  21114. front: {
  21115. height: math.unit(6 + 7 / 12, "feet"),
  21116. weight: math.unit(160, "lb"),
  21117. name: "Front",
  21118. image: {
  21119. source: "./media/characters/ceres/front.svg",
  21120. extra: 1023 / 950,
  21121. bottom: 0.027
  21122. }
  21123. },
  21124. back: {
  21125. height: math.unit(6 + 7 / 12, "feet"),
  21126. weight: math.unit(160, "lb"),
  21127. name: "Back",
  21128. image: {
  21129. source: "./media/characters/ceres/back.svg",
  21130. extra: 1023 / 950
  21131. }
  21132. },
  21133. },
  21134. [
  21135. {
  21136. name: "Normal",
  21137. height: math.unit(6 + 7 / 12, "feet"),
  21138. default: true
  21139. },
  21140. ]
  21141. ))
  21142. characterMakers.push(() => makeCharacter(
  21143. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21144. {
  21145. front: {
  21146. height: math.unit(5 + 10 / 12, "feet"),
  21147. weight: math.unit(150, "lb"),
  21148. name: "Front",
  21149. image: {
  21150. source: "./media/characters/kris/front.svg",
  21151. extra: 885 / 803,
  21152. bottom: 0.03
  21153. }
  21154. },
  21155. },
  21156. [
  21157. {
  21158. name: "Normal",
  21159. height: math.unit(5 + 10 / 12, "feet"),
  21160. default: true
  21161. },
  21162. ]
  21163. ))
  21164. characterMakers.push(() => makeCharacter(
  21165. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21166. {
  21167. front: {
  21168. height: math.unit(7, "feet"),
  21169. weight: math.unit(120, "kg"),
  21170. name: "Front",
  21171. image: {
  21172. source: "./media/characters/taluthus/front.svg",
  21173. extra: 903 / 833,
  21174. bottom: 0.015
  21175. }
  21176. },
  21177. },
  21178. [
  21179. {
  21180. name: "Normal",
  21181. height: math.unit(7, "feet"),
  21182. default: true
  21183. },
  21184. {
  21185. name: "Macro",
  21186. height: math.unit(300, "feet")
  21187. },
  21188. ]
  21189. ))
  21190. characterMakers.push(() => makeCharacter(
  21191. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21192. {
  21193. front: {
  21194. height: math.unit(5 + 9 / 12, "feet"),
  21195. weight: math.unit(145, "lb"),
  21196. name: "Front",
  21197. image: {
  21198. source: "./media/characters/dawn/front.svg",
  21199. extra: 2094 / 2016,
  21200. bottom: 0.025
  21201. }
  21202. },
  21203. back: {
  21204. height: math.unit(5 + 9 / 12, "feet"),
  21205. weight: math.unit(160, "lb"),
  21206. name: "Back",
  21207. image: {
  21208. source: "./media/characters/dawn/back.svg",
  21209. extra: 2112 / 2080,
  21210. bottom: 0.005
  21211. }
  21212. },
  21213. },
  21214. [
  21215. {
  21216. name: "Normal",
  21217. height: math.unit(6 + 7 / 12, "feet"),
  21218. default: true
  21219. },
  21220. ]
  21221. ))
  21222. characterMakers.push(() => makeCharacter(
  21223. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21224. {
  21225. anthro: {
  21226. height: math.unit(8 + 3 / 12, "feet"),
  21227. weight: math.unit(450, "lb"),
  21228. name: "Anthro",
  21229. image: {
  21230. source: "./media/characters/arador/anthro.svg",
  21231. extra: 1835 / 1718,
  21232. bottom: 0.025
  21233. }
  21234. },
  21235. feral: {
  21236. height: math.unit(4, "feet"),
  21237. weight: math.unit(200, "lb"),
  21238. name: "Feral",
  21239. image: {
  21240. source: "./media/characters/arador/feral.svg",
  21241. extra: 1683 / 1514,
  21242. bottom: 0.07
  21243. }
  21244. },
  21245. },
  21246. [
  21247. {
  21248. name: "Normal",
  21249. height: math.unit(8 + 3 / 12, "feet")
  21250. },
  21251. {
  21252. name: "Macro",
  21253. height: math.unit(82.5, "feet"),
  21254. default: true
  21255. },
  21256. ]
  21257. ))
  21258. characterMakers.push(() => makeCharacter(
  21259. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21260. {
  21261. front: {
  21262. height: math.unit(5 + 10 / 12, "feet"),
  21263. weight: math.unit(125, "lb"),
  21264. name: "Front",
  21265. image: {
  21266. source: "./media/characters/dharsi/front.svg",
  21267. extra: 716 / 630,
  21268. bottom: 0.035
  21269. }
  21270. },
  21271. },
  21272. [
  21273. {
  21274. name: "Nano",
  21275. height: math.unit(100, "nm")
  21276. },
  21277. {
  21278. name: "Micro",
  21279. height: math.unit(2, "inches")
  21280. },
  21281. {
  21282. name: "Normal",
  21283. height: math.unit(5 + 10 / 12, "feet"),
  21284. default: true
  21285. },
  21286. {
  21287. name: "Macro",
  21288. height: math.unit(1000, "feet")
  21289. },
  21290. {
  21291. name: "Megamacro",
  21292. height: math.unit(10, "miles")
  21293. },
  21294. {
  21295. name: "Gigamacro",
  21296. height: math.unit(3000, "miles")
  21297. },
  21298. {
  21299. name: "Teramacro",
  21300. height: math.unit(500000, "miles")
  21301. },
  21302. {
  21303. name: "Teramacro+",
  21304. height: math.unit(30, "galaxies")
  21305. },
  21306. ]
  21307. ))
  21308. characterMakers.push(() => makeCharacter(
  21309. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21310. {
  21311. front: {
  21312. height: math.unit(6, "feet"),
  21313. weight: math.unit(150, "lb"),
  21314. name: "Front",
  21315. image: {
  21316. source: "./media/characters/deathy/front.svg",
  21317. extra: 1552 / 1463,
  21318. bottom: 0.025
  21319. }
  21320. },
  21321. side: {
  21322. height: math.unit(6, "feet"),
  21323. weight: math.unit(150, "lb"),
  21324. name: "Side",
  21325. image: {
  21326. source: "./media/characters/deathy/side.svg",
  21327. extra: 1604 / 1455,
  21328. bottom: 0.025
  21329. }
  21330. },
  21331. back: {
  21332. height: math.unit(6, "feet"),
  21333. weight: math.unit(150, "lb"),
  21334. name: "Back",
  21335. image: {
  21336. source: "./media/characters/deathy/back.svg",
  21337. extra: 1580 / 1463,
  21338. bottom: 0.005
  21339. }
  21340. },
  21341. },
  21342. [
  21343. {
  21344. name: "Micro",
  21345. height: math.unit(5, "millimeters")
  21346. },
  21347. {
  21348. name: "Normal",
  21349. height: math.unit(6 + 5 / 12, "feet"),
  21350. default: true
  21351. },
  21352. ]
  21353. ))
  21354. characterMakers.push(() => makeCharacter(
  21355. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21356. {
  21357. front: {
  21358. height: math.unit(16, "feet"),
  21359. weight: math.unit(4000, "lb"),
  21360. name: "Front",
  21361. image: {
  21362. source: "./media/characters/juniper/front.svg",
  21363. bottom: 0.04
  21364. }
  21365. },
  21366. },
  21367. [
  21368. {
  21369. name: "Normal",
  21370. height: math.unit(16, "feet"),
  21371. default: true
  21372. },
  21373. ]
  21374. ))
  21375. characterMakers.push(() => makeCharacter(
  21376. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21377. {
  21378. front: {
  21379. height: math.unit(6, "feet"),
  21380. weight: math.unit(150, "lb"),
  21381. name: "Front",
  21382. image: {
  21383. source: "./media/characters/hipster/front.svg",
  21384. extra: 1312 / 1209,
  21385. bottom: 0.025
  21386. }
  21387. },
  21388. back: {
  21389. height: math.unit(6, "feet"),
  21390. weight: math.unit(150, "lb"),
  21391. name: "Back",
  21392. image: {
  21393. source: "./media/characters/hipster/back.svg",
  21394. extra: 1281 / 1196,
  21395. bottom: 0.01
  21396. }
  21397. },
  21398. },
  21399. [
  21400. {
  21401. name: "Micro",
  21402. height: math.unit(1, "mm")
  21403. },
  21404. {
  21405. name: "Normal",
  21406. height: math.unit(4, "inches"),
  21407. default: true
  21408. },
  21409. {
  21410. name: "Macro",
  21411. height: math.unit(500, "feet")
  21412. },
  21413. {
  21414. name: "Megamacro",
  21415. height: math.unit(1000, "miles")
  21416. },
  21417. ]
  21418. ))
  21419. characterMakers.push(() => makeCharacter(
  21420. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21421. {
  21422. front: {
  21423. height: math.unit(6, "feet"),
  21424. weight: math.unit(150, "lb"),
  21425. name: "Front",
  21426. image: {
  21427. source: "./media/characters/tendirmuldr/front.svg",
  21428. extra: 1878 / 1772,
  21429. bottom: 0.015
  21430. }
  21431. },
  21432. },
  21433. [
  21434. {
  21435. name: "Megamacro",
  21436. height: math.unit(1500, "miles"),
  21437. default: true
  21438. },
  21439. ]
  21440. ))
  21441. characterMakers.push(() => makeCharacter(
  21442. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21443. {
  21444. front: {
  21445. height: math.unit(14, "feet"),
  21446. weight: math.unit(12000, "lb"),
  21447. name: "Front",
  21448. image: {
  21449. source: "./media/characters/mort/front.svg",
  21450. extra: 365 / 318,
  21451. bottom: 0.01
  21452. }
  21453. },
  21454. side: {
  21455. height: math.unit(14, "feet"),
  21456. weight: math.unit(12000, "lb"),
  21457. name: "Side",
  21458. image: {
  21459. source: "./media/characters/mort/side.svg",
  21460. extra: 365 / 318,
  21461. bottom: 0.052
  21462. },
  21463. default: true
  21464. },
  21465. back: {
  21466. height: math.unit(14, "feet"),
  21467. weight: math.unit(12000, "lb"),
  21468. name: "Back",
  21469. image: {
  21470. source: "./media/characters/mort/back.svg",
  21471. extra: 371 / 332,
  21472. bottom: 0.18
  21473. }
  21474. },
  21475. },
  21476. [
  21477. {
  21478. name: "Normal",
  21479. height: math.unit(14, "feet"),
  21480. default: true
  21481. },
  21482. ]
  21483. ))
  21484. characterMakers.push(() => makeCharacter(
  21485. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21486. {
  21487. front: {
  21488. height: math.unit(8, "feet"),
  21489. weight: math.unit(1, "ton"),
  21490. name: "Front",
  21491. image: {
  21492. source: "./media/characters/lycoa/front.svg",
  21493. extra: 1836/1728,
  21494. bottom: 81/1917
  21495. }
  21496. },
  21497. back: {
  21498. height: math.unit(8, "feet"),
  21499. weight: math.unit(1, "ton"),
  21500. name: "Back",
  21501. image: {
  21502. source: "./media/characters/lycoa/back.svg",
  21503. extra: 1785/1720,
  21504. bottom: 91/1876
  21505. }
  21506. },
  21507. head: {
  21508. height: math.unit(1.6243, "feet"),
  21509. name: "Head",
  21510. image: {
  21511. source: "./media/characters/lycoa/head.svg",
  21512. extra: 1011/782,
  21513. bottom: 0/1011
  21514. }
  21515. },
  21516. tailmaw: {
  21517. height: math.unit(1.9, "feet"),
  21518. name: "Tailmaw",
  21519. image: {
  21520. source: "./media/characters/lycoa/tailmaw.svg"
  21521. }
  21522. },
  21523. tentacles: {
  21524. height: math.unit(2.1, "feet"),
  21525. name: "Tentacles",
  21526. image: {
  21527. source: "./media/characters/lycoa/tentacles.svg"
  21528. }
  21529. },
  21530. dick: {
  21531. height: math.unit(1.73, "feet"),
  21532. name: "Dick",
  21533. image: {
  21534. source: "./media/characters/lycoa/dick.svg"
  21535. }
  21536. },
  21537. },
  21538. [
  21539. {
  21540. name: "Normal",
  21541. height: math.unit(8, "feet"),
  21542. default: true
  21543. },
  21544. {
  21545. name: "Macro",
  21546. height: math.unit(30, "feet")
  21547. },
  21548. ]
  21549. ))
  21550. characterMakers.push(() => makeCharacter(
  21551. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21552. {
  21553. front: {
  21554. height: math.unit(4 + 2 / 12, "feet"),
  21555. weight: math.unit(70, "lb"),
  21556. name: "Front",
  21557. image: {
  21558. source: "./media/characters/naldara/front.svg",
  21559. extra: 1664/1387,
  21560. bottom: 81/1745
  21561. },
  21562. form: "anthro",
  21563. default: true
  21564. },
  21565. naga: {
  21566. height: math.unit(20, "feet"),
  21567. weight: math.unit(15000, "kg"),
  21568. name: "Front",
  21569. image: {
  21570. source: "./media/characters/naldara/naga.svg",
  21571. extra: 1590/1396,
  21572. bottom: 285/1875
  21573. },
  21574. form: "naga",
  21575. default: true
  21576. },
  21577. },
  21578. [
  21579. {
  21580. name: "Normal",
  21581. height: math.unit(4 + 2 / 12, "feet"),
  21582. form: "anthro",
  21583. default: true
  21584. },
  21585. {
  21586. name: "Normal",
  21587. height: math.unit(20, "feet"),
  21588. form: "naga",
  21589. default: true
  21590. },
  21591. ],
  21592. {
  21593. "anthro": {
  21594. name: "Anthro",
  21595. default: true
  21596. },
  21597. "naga": {
  21598. name: "Naga"
  21599. }
  21600. }
  21601. ))
  21602. characterMakers.push(() => makeCharacter(
  21603. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21604. {
  21605. front: {
  21606. height: math.unit(13 + 7 / 12, "feet"),
  21607. weight: math.unit(1500, "lb"),
  21608. name: "Front",
  21609. image: {
  21610. source: "./media/characters/briar/front.svg",
  21611. extra: 1223/1157,
  21612. bottom: 123/1346
  21613. }
  21614. },
  21615. },
  21616. [
  21617. {
  21618. name: "Normal",
  21619. height: math.unit(13 + 7 / 12, "feet"),
  21620. default: true
  21621. },
  21622. ]
  21623. ))
  21624. characterMakers.push(() => makeCharacter(
  21625. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21626. {
  21627. side: {
  21628. height: math.unit(16, "feet"),
  21629. weight: math.unit(500, "lb"),
  21630. name: "Side",
  21631. image: {
  21632. source: "./media/characters/vanguard/side.svg",
  21633. extra: 1022/914,
  21634. bottom: 30/1052
  21635. }
  21636. },
  21637. sideAlt: {
  21638. height: math.unit(10, "feet"),
  21639. weight: math.unit(500, "lb"),
  21640. name: "Side (Alt)",
  21641. image: {
  21642. source: "./media/characters/vanguard/side-alt.svg",
  21643. extra: 502 / 425,
  21644. bottom: 0.087
  21645. }
  21646. },
  21647. },
  21648. [
  21649. {
  21650. name: "Normal",
  21651. height: math.unit(17.71, "feet"),
  21652. default: true
  21653. },
  21654. ]
  21655. ))
  21656. characterMakers.push(() => makeCharacter(
  21657. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21658. {
  21659. front: {
  21660. height: math.unit(7.5, "feet"),
  21661. weight: math.unit(2, "lb"),
  21662. name: "Front",
  21663. image: {
  21664. source: "./media/characters/artemis/work-safe-front.svg",
  21665. extra: 1192 / 1075,
  21666. bottom: 0.07
  21667. },
  21668. form: "work-safe",
  21669. default: true
  21670. },
  21671. frontNsfw: {
  21672. height: math.unit(7.5, "feet"),
  21673. weight: math.unit(2, "lb"),
  21674. name: "Front",
  21675. image: {
  21676. source: "./media/characters/artemis/calibrating-front.svg",
  21677. extra: 1192 / 1075,
  21678. bottom: 0.07
  21679. },
  21680. form: "calibrating",
  21681. default: true
  21682. },
  21683. frontNsfwer: {
  21684. height: math.unit(7.5, "feet"),
  21685. weight: math.unit(2, "lb"),
  21686. name: "Front",
  21687. image: {
  21688. source: "./media/characters/artemis/oversize-load-front.svg",
  21689. extra: 1192 / 1075,
  21690. bottom: 0.07
  21691. },
  21692. form: "oversize-load",
  21693. default: true
  21694. },
  21695. side: {
  21696. height: math.unit(7.5, "feet"),
  21697. weight: math.unit(2, "lb"),
  21698. name: "Side",
  21699. image: {
  21700. source: "./media/characters/artemis/work-safe-side.svg",
  21701. extra: 1192 / 1075,
  21702. bottom: 0.07
  21703. },
  21704. form: "work-safe"
  21705. },
  21706. sideNsfw: {
  21707. height: math.unit(7.5, "feet"),
  21708. weight: math.unit(2, "lb"),
  21709. name: "Side",
  21710. image: {
  21711. source: "./media/characters/artemis/calibrating-side.svg",
  21712. extra: 1192 / 1075,
  21713. bottom: 0.07
  21714. },
  21715. form: "calibrating"
  21716. },
  21717. sideNsfwer: {
  21718. height: math.unit(7.5, "feet"),
  21719. weight: math.unit(2, "lb"),
  21720. name: "Side",
  21721. image: {
  21722. source: "./media/characters/artemis/oversize-load-side.svg",
  21723. extra: 1192 / 1075,
  21724. bottom: 0.07
  21725. },
  21726. form: "oversize-load"
  21727. },
  21728. maw: {
  21729. height: math.unit(1.1, "feet"),
  21730. name: "Maw",
  21731. image: {
  21732. source: "./media/characters/artemis/maw.svg"
  21733. },
  21734. form: "work-safe"
  21735. },
  21736. stomach: {
  21737. height: math.unit(0.95, "feet"),
  21738. name: "Stomach",
  21739. image: {
  21740. source: "./media/characters/artemis/stomach.svg"
  21741. },
  21742. form: "work-safe"
  21743. },
  21744. dickCanine: {
  21745. height: math.unit(1, "feet"),
  21746. name: "Dick (Canine)",
  21747. image: {
  21748. source: "./media/characters/artemis/dick-canine.svg"
  21749. },
  21750. form: "calibrating"
  21751. },
  21752. dickEquine: {
  21753. height: math.unit(0.85, "feet"),
  21754. name: "Dick (Equine)",
  21755. image: {
  21756. source: "./media/characters/artemis/dick-equine.svg"
  21757. },
  21758. form: "calibrating"
  21759. },
  21760. dickExotic: {
  21761. height: math.unit(0.85, "feet"),
  21762. name: "Dick (Exotic)",
  21763. image: {
  21764. source: "./media/characters/artemis/dick-exotic.svg"
  21765. },
  21766. form: "calibrating"
  21767. },
  21768. dickCanineBigger: {
  21769. height: math.unit(1 * 1.33, "feet"),
  21770. name: "Dick (Canine)",
  21771. image: {
  21772. source: "./media/characters/artemis/dick-canine.svg"
  21773. },
  21774. form: "oversize-load"
  21775. },
  21776. dickEquineBigger: {
  21777. height: math.unit(0.85 * 1.33, "feet"),
  21778. name: "Dick (Equine)",
  21779. image: {
  21780. source: "./media/characters/artemis/dick-equine.svg"
  21781. },
  21782. form: "oversize-load"
  21783. },
  21784. dickExoticBigger: {
  21785. height: math.unit(0.85 * 1.33, "feet"),
  21786. name: "Dick (Exotic)",
  21787. image: {
  21788. source: "./media/characters/artemis/dick-exotic.svg"
  21789. },
  21790. form: "oversize-load"
  21791. },
  21792. },
  21793. [
  21794. {
  21795. name: "Normal",
  21796. height: math.unit(7.5, "feet"),
  21797. form: "work-safe",
  21798. default: true
  21799. },
  21800. {
  21801. name: "Normal",
  21802. height: math.unit(7.5, "feet"),
  21803. form: "calibrating",
  21804. default: true
  21805. },
  21806. {
  21807. name: "Normal",
  21808. height: math.unit(7.5, "feet"),
  21809. form: "oversize-load",
  21810. default: true
  21811. },
  21812. {
  21813. name: "Enlarged",
  21814. height: math.unit(12, "feet"),
  21815. form: "work-safe",
  21816. },
  21817. {
  21818. name: "Enlarged",
  21819. height: math.unit(12, "feet"),
  21820. form: "calibrating",
  21821. },
  21822. {
  21823. name: "Enlarged",
  21824. height: math.unit(12, "feet"),
  21825. form: "oversize-load",
  21826. },
  21827. ],
  21828. {
  21829. "work-safe": {
  21830. name: "Work-Safe",
  21831. default: true
  21832. },
  21833. "calibrating": {
  21834. name: "Calibrating"
  21835. },
  21836. "oversize-load": {
  21837. name: "Oversize Load"
  21838. }
  21839. }
  21840. ))
  21841. characterMakers.push(() => makeCharacter(
  21842. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21843. {
  21844. front: {
  21845. height: math.unit(5 + 3 / 12, "feet"),
  21846. weight: math.unit(160, "lb"),
  21847. name: "Front",
  21848. image: {
  21849. source: "./media/characters/kira/front.svg",
  21850. extra: 906 / 786,
  21851. bottom: 0.01
  21852. }
  21853. },
  21854. back: {
  21855. height: math.unit(5 + 3 / 12, "feet"),
  21856. weight: math.unit(160, "lb"),
  21857. name: "Back",
  21858. image: {
  21859. source: "./media/characters/kira/back.svg",
  21860. extra: 882 / 757,
  21861. bottom: 0.005
  21862. }
  21863. },
  21864. frontDressed: {
  21865. height: math.unit(5 + 3 / 12, "feet"),
  21866. weight: math.unit(160, "lb"),
  21867. name: "Front (Dressed)",
  21868. image: {
  21869. source: "./media/characters/kira/front-dressed.svg",
  21870. extra: 906 / 786,
  21871. bottom: 0.01
  21872. }
  21873. },
  21874. beans: {
  21875. height: math.unit(0.92, "feet"),
  21876. name: "Beans",
  21877. image: {
  21878. source: "./media/characters/kira/beans.svg"
  21879. }
  21880. },
  21881. },
  21882. [
  21883. {
  21884. name: "Normal",
  21885. height: math.unit(5 + 3 / 12, "feet"),
  21886. default: true
  21887. },
  21888. ]
  21889. ))
  21890. characterMakers.push(() => makeCharacter(
  21891. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21892. {
  21893. front: {
  21894. height: math.unit(5 + 4 / 12, "feet"),
  21895. weight: math.unit(145, "lb"),
  21896. name: "Front",
  21897. image: {
  21898. source: "./media/characters/scramble/front.svg",
  21899. extra: 763 / 727,
  21900. bottom: 0.05
  21901. }
  21902. },
  21903. back: {
  21904. height: math.unit(5 + 4 / 12, "feet"),
  21905. weight: math.unit(145, "lb"),
  21906. name: "Back",
  21907. image: {
  21908. source: "./media/characters/scramble/back.svg",
  21909. extra: 826 / 737,
  21910. bottom: 0.002
  21911. }
  21912. },
  21913. },
  21914. [
  21915. {
  21916. name: "Normal",
  21917. height: math.unit(5 + 4 / 12, "feet"),
  21918. default: true
  21919. },
  21920. ]
  21921. ))
  21922. characterMakers.push(() => makeCharacter(
  21923. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21924. {
  21925. side: {
  21926. height: math.unit(6 + 2 / 12, "feet"),
  21927. weight: math.unit(190, "lb"),
  21928. name: "Side",
  21929. image: {
  21930. source: "./media/characters/biscuit/side.svg",
  21931. extra: 858 / 791,
  21932. bottom: 0.044
  21933. }
  21934. },
  21935. },
  21936. [
  21937. {
  21938. name: "Normal",
  21939. height: math.unit(6 + 2 / 12, "feet"),
  21940. default: true
  21941. },
  21942. ]
  21943. ))
  21944. characterMakers.push(() => makeCharacter(
  21945. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21946. {
  21947. front: {
  21948. height: math.unit(5 + 2 / 12, "feet"),
  21949. weight: math.unit(120, "lb"),
  21950. name: "Front",
  21951. image: {
  21952. source: "./media/characters/poffin/front.svg",
  21953. extra: 786 / 680,
  21954. bottom: 0.005
  21955. }
  21956. },
  21957. },
  21958. [
  21959. {
  21960. name: "Normal",
  21961. height: math.unit(5 + 2 / 12, "feet"),
  21962. default: true
  21963. },
  21964. ]
  21965. ))
  21966. characterMakers.push(() => makeCharacter(
  21967. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21968. {
  21969. front: {
  21970. height: math.unit(6 + 3 / 12, "feet"),
  21971. weight: math.unit(519, "lb"),
  21972. name: "Front",
  21973. image: {
  21974. source: "./media/characters/dhari/front.svg",
  21975. extra: 1048 / 946,
  21976. bottom: 0.015
  21977. }
  21978. },
  21979. back: {
  21980. height: math.unit(6 + 3 / 12, "feet"),
  21981. weight: math.unit(519, "lb"),
  21982. name: "Back",
  21983. image: {
  21984. source: "./media/characters/dhari/back.svg",
  21985. extra: 1048 / 931,
  21986. bottom: 0.005
  21987. }
  21988. },
  21989. frontDressed: {
  21990. height: math.unit(6 + 3 / 12, "feet"),
  21991. weight: math.unit(519, "lb"),
  21992. name: "Front (Dressed)",
  21993. image: {
  21994. source: "./media/characters/dhari/front-dressed.svg",
  21995. extra: 1713 / 1546,
  21996. bottom: 0.02
  21997. }
  21998. },
  21999. backDressed: {
  22000. height: math.unit(6 + 3 / 12, "feet"),
  22001. weight: math.unit(519, "lb"),
  22002. name: "Back (Dressed)",
  22003. image: {
  22004. source: "./media/characters/dhari/back-dressed.svg",
  22005. extra: 1699 / 1537,
  22006. bottom: 0.01
  22007. }
  22008. },
  22009. maw: {
  22010. height: math.unit(0.95, "feet"),
  22011. name: "Maw",
  22012. image: {
  22013. source: "./media/characters/dhari/maw.svg"
  22014. }
  22015. },
  22016. wereFront: {
  22017. height: math.unit(12 + 8 / 12, "feet"),
  22018. weight: math.unit(4000, "lb"),
  22019. name: "Front (Were)",
  22020. image: {
  22021. source: "./media/characters/dhari/were-front.svg",
  22022. extra: 1065 / 969,
  22023. bottom: 0.015
  22024. }
  22025. },
  22026. wereBack: {
  22027. height: math.unit(12 + 8 / 12, "feet"),
  22028. weight: math.unit(4000, "lb"),
  22029. name: "Back (Were)",
  22030. image: {
  22031. source: "./media/characters/dhari/were-back.svg",
  22032. extra: 1065 / 969,
  22033. bottom: 0.012
  22034. }
  22035. },
  22036. wereMaw: {
  22037. height: math.unit(0.625, "meters"),
  22038. name: "Maw (Were)",
  22039. image: {
  22040. source: "./media/characters/dhari/were-maw.svg"
  22041. }
  22042. },
  22043. },
  22044. [
  22045. {
  22046. name: "Normal",
  22047. height: math.unit(6 + 3 / 12, "feet"),
  22048. default: true
  22049. },
  22050. ]
  22051. ))
  22052. characterMakers.push(() => makeCharacter(
  22053. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22054. {
  22055. anthro: {
  22056. height: math.unit(5 + 7 / 12, "feet"),
  22057. weight: math.unit(175, "lb"),
  22058. name: "Anthro",
  22059. image: {
  22060. source: "./media/characters/rena-dyne/anthro.svg",
  22061. extra: 1849 / 1785,
  22062. bottom: 0.005
  22063. }
  22064. },
  22065. taur: {
  22066. height: math.unit(15 + 6 / 12, "feet"),
  22067. weight: math.unit(8000, "lb"),
  22068. name: "Taur",
  22069. image: {
  22070. source: "./media/characters/rena-dyne/taur.svg",
  22071. extra: 2315 / 2234,
  22072. bottom: 0.033
  22073. }
  22074. },
  22075. },
  22076. [
  22077. {
  22078. name: "Normal",
  22079. height: math.unit(5 + 7 / 12, "feet"),
  22080. default: true
  22081. },
  22082. ]
  22083. ))
  22084. characterMakers.push(() => makeCharacter(
  22085. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22086. {
  22087. front: {
  22088. height: math.unit(8, "feet"),
  22089. weight: math.unit(600, "lb"),
  22090. name: "Front",
  22091. image: {
  22092. source: "./media/characters/weremeep/front.svg",
  22093. extra: 970/849,
  22094. bottom: 7/977
  22095. }
  22096. },
  22097. },
  22098. [
  22099. {
  22100. name: "Normal",
  22101. height: math.unit(8, "feet"),
  22102. default: true
  22103. },
  22104. {
  22105. name: "Lorg",
  22106. height: math.unit(12, "feet")
  22107. },
  22108. {
  22109. name: "Oh Lawd She Comin'",
  22110. height: math.unit(20, "feet")
  22111. },
  22112. ]
  22113. ))
  22114. characterMakers.push(() => makeCharacter(
  22115. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22116. {
  22117. front: {
  22118. height: math.unit(4, "feet"),
  22119. weight: math.unit(90, "lb"),
  22120. name: "Front",
  22121. image: {
  22122. source: "./media/characters/reza/front.svg",
  22123. extra: 1183 / 1111,
  22124. bottom: 0.017
  22125. }
  22126. },
  22127. back: {
  22128. height: math.unit(4, "feet"),
  22129. weight: math.unit(90, "lb"),
  22130. name: "Back",
  22131. image: {
  22132. source: "./media/characters/reza/back.svg",
  22133. extra: 1183 / 1111,
  22134. bottom: 0.01
  22135. }
  22136. },
  22137. drake: {
  22138. height: math.unit(30, "feet"),
  22139. weight: math.unit(246960, "lb"),
  22140. name: "Drake",
  22141. image: {
  22142. source: "./media/characters/reza/drake.svg",
  22143. extra: 2350 / 2024,
  22144. bottom: 60.7 / 2403
  22145. }
  22146. },
  22147. },
  22148. [
  22149. {
  22150. name: "Normal",
  22151. height: math.unit(4, "feet"),
  22152. default: true
  22153. },
  22154. ]
  22155. ))
  22156. characterMakers.push(() => makeCharacter(
  22157. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22158. {
  22159. side: {
  22160. height: math.unit(15, "feet"),
  22161. weight: math.unit(14, "tons"),
  22162. name: "Side",
  22163. image: {
  22164. source: "./media/characters/athea/side.svg",
  22165. extra: 960 / 540,
  22166. bottom: 0.003
  22167. }
  22168. },
  22169. sitting: {
  22170. height: math.unit(6 * 2.85, "feet"),
  22171. weight: math.unit(14, "tons"),
  22172. name: "Sitting",
  22173. image: {
  22174. source: "./media/characters/athea/sitting.svg",
  22175. extra: 621 / 581,
  22176. bottom: 0.075
  22177. }
  22178. },
  22179. maw: {
  22180. height: math.unit(7.59498031496063, "feet"),
  22181. name: "Maw",
  22182. image: {
  22183. source: "./media/characters/athea/maw.svg"
  22184. }
  22185. },
  22186. },
  22187. [
  22188. {
  22189. name: "Lap Cat",
  22190. height: math.unit(2.5, "feet")
  22191. },
  22192. {
  22193. name: "Minimacro",
  22194. height: math.unit(15, "feet"),
  22195. default: true
  22196. },
  22197. {
  22198. name: "Macro",
  22199. height: math.unit(120, "feet")
  22200. },
  22201. {
  22202. name: "Macro+",
  22203. height: math.unit(640, "feet")
  22204. },
  22205. {
  22206. name: "Colossus",
  22207. height: math.unit(2.2, "miles")
  22208. },
  22209. ]
  22210. ))
  22211. characterMakers.push(() => makeCharacter(
  22212. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22213. {
  22214. front: {
  22215. height: math.unit(8 + 8 / 12, "feet"),
  22216. weight: math.unit(130, "kg"),
  22217. name: "Front",
  22218. image: {
  22219. source: "./media/characters/seroko/front.svg",
  22220. extra: 1385 / 1280,
  22221. bottom: 0.025
  22222. }
  22223. },
  22224. back: {
  22225. height: math.unit(8 + 8 / 12, "feet"),
  22226. weight: math.unit(130, "kg"),
  22227. name: "Back",
  22228. image: {
  22229. source: "./media/characters/seroko/back.svg",
  22230. extra: 1369 / 1238,
  22231. bottom: 0.018
  22232. }
  22233. },
  22234. frontDressed: {
  22235. height: math.unit(8 + 8 / 12, "feet"),
  22236. weight: math.unit(130, "kg"),
  22237. name: "Front (Dressed)",
  22238. image: {
  22239. source: "./media/characters/seroko/front-dressed.svg",
  22240. extra: 1366 / 1275,
  22241. bottom: 0.03
  22242. }
  22243. },
  22244. },
  22245. [
  22246. {
  22247. name: "Normal",
  22248. height: math.unit(8 + 8 / 12, "feet"),
  22249. default: true
  22250. },
  22251. ]
  22252. ))
  22253. characterMakers.push(() => makeCharacter(
  22254. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22255. {
  22256. front: {
  22257. height: math.unit(5.5, "feet"),
  22258. weight: math.unit(160, "lb"),
  22259. name: "Front",
  22260. image: {
  22261. source: "./media/characters/quatzi/front.svg",
  22262. extra: 2346 / 2242,
  22263. bottom: 0.015
  22264. }
  22265. },
  22266. },
  22267. [
  22268. {
  22269. name: "Normal",
  22270. height: math.unit(5.5, "feet"),
  22271. default: true
  22272. },
  22273. {
  22274. name: "Big",
  22275. height: math.unit(7.7, "feet")
  22276. },
  22277. ]
  22278. ))
  22279. characterMakers.push(() => makeCharacter(
  22280. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22281. {
  22282. front: {
  22283. height: math.unit(5 + 11 / 12, "feet"),
  22284. weight: math.unit(180, "lb"),
  22285. name: "Front",
  22286. image: {
  22287. source: "./media/characters/sen/front.svg",
  22288. extra: 1321 / 1254,
  22289. bottom: 0.015
  22290. }
  22291. },
  22292. side: {
  22293. height: math.unit(5 + 11 / 12, "feet"),
  22294. weight: math.unit(180, "lb"),
  22295. name: "Side",
  22296. image: {
  22297. source: "./media/characters/sen/side.svg",
  22298. extra: 1321 / 1254,
  22299. bottom: 0.007
  22300. }
  22301. },
  22302. back: {
  22303. height: math.unit(5 + 11 / 12, "feet"),
  22304. weight: math.unit(180, "lb"),
  22305. name: "Back",
  22306. image: {
  22307. source: "./media/characters/sen/back.svg",
  22308. extra: 1321 / 1254
  22309. }
  22310. },
  22311. },
  22312. [
  22313. {
  22314. name: "Normal",
  22315. height: math.unit(5 + 11 / 12, "feet"),
  22316. default: true
  22317. },
  22318. ]
  22319. ))
  22320. characterMakers.push(() => makeCharacter(
  22321. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22322. {
  22323. front: {
  22324. height: math.unit(166.6, "cm"),
  22325. weight: math.unit(66.6, "kg"),
  22326. name: "Front",
  22327. image: {
  22328. source: "./media/characters/fruity/front.svg",
  22329. extra: 1510 / 1386,
  22330. bottom: 0.04
  22331. }
  22332. },
  22333. back: {
  22334. height: math.unit(166.6, "cm"),
  22335. weight: math.unit(66.6, "lb"),
  22336. name: "Back",
  22337. image: {
  22338. source: "./media/characters/fruity/back.svg",
  22339. extra: 1563 / 1435,
  22340. bottom: 0.005
  22341. }
  22342. },
  22343. },
  22344. [
  22345. {
  22346. name: "Normal",
  22347. height: math.unit(166.6, "cm"),
  22348. default: true
  22349. },
  22350. {
  22351. name: "Demonic",
  22352. height: math.unit(166.6, "feet")
  22353. },
  22354. ]
  22355. ))
  22356. characterMakers.push(() => makeCharacter(
  22357. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22358. {
  22359. side: {
  22360. height: math.unit(10, "feet"),
  22361. weight: math.unit(500, "lb"),
  22362. name: "Side",
  22363. image: {
  22364. source: "./media/characters/zost/side.svg",
  22365. extra: 2870/2533,
  22366. bottom: 252/3122
  22367. }
  22368. },
  22369. mawFront: {
  22370. height: math.unit(1.08, "meters"),
  22371. name: "Maw (Front)",
  22372. image: {
  22373. source: "./media/characters/zost/maw-front.svg"
  22374. }
  22375. },
  22376. mawSide: {
  22377. height: math.unit(2.66, "feet"),
  22378. name: "Maw (Side)",
  22379. image: {
  22380. source: "./media/characters/zost/maw-side.svg"
  22381. }
  22382. },
  22383. wingspan: {
  22384. height: math.unit(7.4, "feet"),
  22385. name: "Wingspan",
  22386. image: {
  22387. source: "./media/characters/zost/wingspan.svg"
  22388. }
  22389. },
  22390. },
  22391. [
  22392. {
  22393. name: "Normal",
  22394. height: math.unit(10, "feet"),
  22395. default: true
  22396. },
  22397. ]
  22398. ))
  22399. characterMakers.push(() => makeCharacter(
  22400. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22401. {
  22402. front: {
  22403. height: math.unit(5 + 4 / 12, "feet"),
  22404. weight: math.unit(120, "lb"),
  22405. name: "Front",
  22406. image: {
  22407. source: "./media/characters/luci/front.svg",
  22408. extra: 1985 / 1884,
  22409. bottom: 0.04
  22410. }
  22411. },
  22412. back: {
  22413. height: math.unit(5 + 4 / 12, "feet"),
  22414. weight: math.unit(120, "lb"),
  22415. name: "Back",
  22416. image: {
  22417. source: "./media/characters/luci/back.svg",
  22418. extra: 1892 / 1791,
  22419. bottom: 0.002
  22420. }
  22421. },
  22422. },
  22423. [
  22424. {
  22425. name: "Normal",
  22426. height: math.unit(5 + 4 / 12, "feet"),
  22427. default: true
  22428. },
  22429. ]
  22430. ))
  22431. characterMakers.push(() => makeCharacter(
  22432. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22433. {
  22434. front: {
  22435. height: math.unit(1500, "feet"),
  22436. weight: math.unit(3.8e6, "tons"),
  22437. name: "Front",
  22438. image: {
  22439. source: "./media/characters/2th/front.svg",
  22440. extra: 3489 / 3350,
  22441. bottom: 0.1
  22442. }
  22443. },
  22444. foot: {
  22445. height: math.unit(461, "feet"),
  22446. name: "Foot",
  22447. image: {
  22448. source: "./media/characters/2th/foot.svg"
  22449. }
  22450. },
  22451. },
  22452. [
  22453. {
  22454. name: "\"Micro\"",
  22455. height: math.unit(15 + 7 / 12, "feet")
  22456. },
  22457. {
  22458. name: "Normal",
  22459. height: math.unit(1500, "feet"),
  22460. default: true
  22461. },
  22462. {
  22463. name: "Macro",
  22464. height: math.unit(5000, "feet")
  22465. },
  22466. {
  22467. name: "Megamacro",
  22468. height: math.unit(15, "miles")
  22469. },
  22470. {
  22471. name: "Gigamacro",
  22472. height: math.unit(4000, "miles")
  22473. },
  22474. {
  22475. name: "Galactic",
  22476. height: math.unit(50, "AU")
  22477. },
  22478. ]
  22479. ))
  22480. characterMakers.push(() => makeCharacter(
  22481. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22482. {
  22483. front: {
  22484. height: math.unit(5 + 6 / 12, "feet"),
  22485. weight: math.unit(220, "lb"),
  22486. name: "Front",
  22487. image: {
  22488. source: "./media/characters/amethyst/front.svg",
  22489. extra: 2078 / 2040,
  22490. bottom: 0.045
  22491. }
  22492. },
  22493. back: {
  22494. height: math.unit(5 + 6 / 12, "feet"),
  22495. weight: math.unit(220, "lb"),
  22496. name: "Back",
  22497. image: {
  22498. source: "./media/characters/amethyst/back.svg",
  22499. extra: 2021 / 1989,
  22500. bottom: 0.02
  22501. }
  22502. },
  22503. },
  22504. [
  22505. {
  22506. name: "Normal",
  22507. height: math.unit(5 + 6 / 12, "feet"),
  22508. default: true
  22509. },
  22510. ]
  22511. ))
  22512. characterMakers.push(() => makeCharacter(
  22513. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22514. {
  22515. front: {
  22516. height: math.unit(4 + 11 / 12, "feet"),
  22517. weight: math.unit(120, "lb"),
  22518. name: "Front",
  22519. image: {
  22520. source: "./media/characters/yumi-akiyama/front.svg",
  22521. extra: 1327 / 1235,
  22522. bottom: 0.02
  22523. }
  22524. },
  22525. back: {
  22526. height: math.unit(4 + 11 / 12, "feet"),
  22527. weight: math.unit(120, "lb"),
  22528. name: "Back",
  22529. image: {
  22530. source: "./media/characters/yumi-akiyama/back.svg",
  22531. extra: 1287 / 1245,
  22532. bottom: 0.002
  22533. }
  22534. },
  22535. },
  22536. [
  22537. {
  22538. name: "Galactic",
  22539. height: math.unit(50, "galaxies"),
  22540. default: true
  22541. },
  22542. {
  22543. name: "Universal",
  22544. height: math.unit(100, "universes")
  22545. },
  22546. ]
  22547. ))
  22548. characterMakers.push(() => makeCharacter(
  22549. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22550. {
  22551. front: {
  22552. height: math.unit(8, "feet"),
  22553. weight: math.unit(500, "lb"),
  22554. name: "Front",
  22555. image: {
  22556. source: "./media/characters/rifter-yrmori/front.svg",
  22557. extra: 1180 / 1125,
  22558. bottom: 0.02
  22559. }
  22560. },
  22561. back: {
  22562. height: math.unit(8, "feet"),
  22563. weight: math.unit(500, "lb"),
  22564. name: "Back",
  22565. image: {
  22566. source: "./media/characters/rifter-yrmori/back.svg",
  22567. extra: 1190 / 1145,
  22568. bottom: 0.001
  22569. }
  22570. },
  22571. wings: {
  22572. height: math.unit(7.75, "feet"),
  22573. weight: math.unit(500, "lb"),
  22574. name: "Wings",
  22575. image: {
  22576. source: "./media/characters/rifter-yrmori/wings.svg",
  22577. extra: 1357 / 1285
  22578. }
  22579. },
  22580. maw: {
  22581. height: math.unit(0.8, "feet"),
  22582. name: "Maw",
  22583. image: {
  22584. source: "./media/characters/rifter-yrmori/maw.svg"
  22585. }
  22586. },
  22587. mawfront: {
  22588. height: math.unit(1.45, "feet"),
  22589. name: "Maw (Front)",
  22590. image: {
  22591. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22592. }
  22593. },
  22594. },
  22595. [
  22596. {
  22597. name: "Normal",
  22598. height: math.unit(8, "feet"),
  22599. default: true
  22600. },
  22601. {
  22602. name: "Macro",
  22603. height: math.unit(42, "meters")
  22604. },
  22605. ]
  22606. ))
  22607. characterMakers.push(() => makeCharacter(
  22608. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22609. {
  22610. were: {
  22611. height: math.unit(25 + 6 / 12, "feet"),
  22612. weight: math.unit(10000, "lb"),
  22613. name: "Were",
  22614. image: {
  22615. source: "./media/characters/tahajin/were.svg",
  22616. extra: 801 / 770,
  22617. bottom: 0.042
  22618. }
  22619. },
  22620. aquatic: {
  22621. height: math.unit(6 + 4 / 12, "feet"),
  22622. weight: math.unit(160, "lb"),
  22623. name: "Aquatic",
  22624. image: {
  22625. source: "./media/characters/tahajin/aquatic.svg",
  22626. extra: 572 / 542,
  22627. bottom: 0.04
  22628. }
  22629. },
  22630. chow: {
  22631. height: math.unit(8 + 11 / 12, "feet"),
  22632. weight: math.unit(450, "lb"),
  22633. name: "Chow",
  22634. image: {
  22635. source: "./media/characters/tahajin/chow.svg",
  22636. extra: 660 / 640,
  22637. bottom: 0.015
  22638. }
  22639. },
  22640. demiNaga: {
  22641. height: math.unit(6 + 8 / 12, "feet"),
  22642. weight: math.unit(300, "lb"),
  22643. name: "Demi Naga",
  22644. image: {
  22645. source: "./media/characters/tahajin/demi-naga.svg",
  22646. extra: 643 / 615,
  22647. bottom: 0.1
  22648. }
  22649. },
  22650. data: {
  22651. height: math.unit(5, "inches"),
  22652. weight: math.unit(0.1, "lb"),
  22653. name: "Data",
  22654. image: {
  22655. source: "./media/characters/tahajin/data.svg"
  22656. }
  22657. },
  22658. fluu: {
  22659. height: math.unit(5 + 7 / 12, "feet"),
  22660. weight: math.unit(140, "lb"),
  22661. name: "Fluu",
  22662. image: {
  22663. source: "./media/characters/tahajin/fluu.svg",
  22664. extra: 628 / 592,
  22665. bottom: 0.02
  22666. }
  22667. },
  22668. starWarrior: {
  22669. height: math.unit(4 + 5 / 12, "feet"),
  22670. weight: math.unit(50, "lb"),
  22671. name: "Star Warrior",
  22672. image: {
  22673. source: "./media/characters/tahajin/star-warrior.svg"
  22674. }
  22675. },
  22676. },
  22677. [
  22678. {
  22679. name: "Normal",
  22680. height: math.unit(25 + 6 / 12, "feet"),
  22681. default: true
  22682. },
  22683. ]
  22684. ))
  22685. characterMakers.push(() => makeCharacter(
  22686. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22687. {
  22688. front: {
  22689. height: math.unit(8, "feet"),
  22690. weight: math.unit(350, "lb"),
  22691. name: "Front",
  22692. image: {
  22693. source: "./media/characters/gabira/front.svg",
  22694. extra: 1261/1154,
  22695. bottom: 51/1312
  22696. }
  22697. },
  22698. back: {
  22699. height: math.unit(8, "feet"),
  22700. weight: math.unit(350, "lb"),
  22701. name: "Back",
  22702. image: {
  22703. source: "./media/characters/gabira/back.svg",
  22704. extra: 1265/1163,
  22705. bottom: 46/1311
  22706. }
  22707. },
  22708. head: {
  22709. height: math.unit(2.85, "feet"),
  22710. name: "Head",
  22711. image: {
  22712. source: "./media/characters/gabira/head.svg"
  22713. }
  22714. },
  22715. },
  22716. [
  22717. {
  22718. name: "Normal",
  22719. height: math.unit(8, "feet"),
  22720. default: true
  22721. },
  22722. ]
  22723. ))
  22724. characterMakers.push(() => makeCharacter(
  22725. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22726. {
  22727. front: {
  22728. height: math.unit(5 + 3 / 12, "feet"),
  22729. weight: math.unit(137, "lb"),
  22730. name: "Front",
  22731. image: {
  22732. source: "./media/characters/sasha-katraine/front.svg",
  22733. extra: 1745/1694,
  22734. bottom: 37/1782
  22735. }
  22736. },
  22737. back: {
  22738. height: math.unit(5 + 3 / 12, "feet"),
  22739. weight: math.unit(137, "lb"),
  22740. name: "Back",
  22741. image: {
  22742. source: "./media/characters/sasha-katraine/back.svg",
  22743. extra: 1776/1699,
  22744. bottom: 26/1802
  22745. }
  22746. },
  22747. },
  22748. [
  22749. {
  22750. name: "Micro",
  22751. height: math.unit(5, "inches")
  22752. },
  22753. {
  22754. name: "Normal",
  22755. height: math.unit(5 + 3 / 12, "feet"),
  22756. default: true
  22757. },
  22758. ]
  22759. ))
  22760. characterMakers.push(() => makeCharacter(
  22761. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22762. {
  22763. side: {
  22764. height: math.unit(4, "inches"),
  22765. weight: math.unit(200, "grams"),
  22766. name: "Side",
  22767. image: {
  22768. source: "./media/characters/der/side.svg",
  22769. extra: 719 / 400,
  22770. bottom: 30.6 / 749.9187
  22771. }
  22772. },
  22773. },
  22774. [
  22775. {
  22776. name: "Micro",
  22777. height: math.unit(4, "inches"),
  22778. default: true
  22779. },
  22780. ]
  22781. ))
  22782. characterMakers.push(() => makeCharacter(
  22783. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22784. {
  22785. side: {
  22786. height: math.unit(30, "meters"),
  22787. weight: math.unit(700, "tonnes"),
  22788. name: "Side",
  22789. image: {
  22790. source: "./media/characters/fixerdragon/side.svg",
  22791. extra: (1293.0514 - 116.03) / 1106.86,
  22792. bottom: 116.03 / 1293.0514
  22793. }
  22794. },
  22795. },
  22796. [
  22797. {
  22798. name: "Planck",
  22799. height: math.unit(1.6e-35, "meters")
  22800. },
  22801. {
  22802. name: "Micro",
  22803. height: math.unit(0.4, "meters")
  22804. },
  22805. {
  22806. name: "Normal",
  22807. height: math.unit(30, "meters"),
  22808. default: true
  22809. },
  22810. {
  22811. name: "Megamacro",
  22812. height: math.unit(1.2, "megameters")
  22813. },
  22814. {
  22815. name: "Teramacro",
  22816. height: math.unit(130, "terameters")
  22817. },
  22818. {
  22819. name: "Yottamacro",
  22820. height: math.unit(6200, "yottameters")
  22821. },
  22822. ]
  22823. ));
  22824. characterMakers.push(() => makeCharacter(
  22825. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22826. {
  22827. front: {
  22828. height: math.unit(8, "feet"),
  22829. weight: math.unit(250, "lb"),
  22830. name: "Front",
  22831. image: {
  22832. source: "./media/characters/kite/front.svg",
  22833. extra: 2796 / 2659,
  22834. bottom: 0.002
  22835. }
  22836. },
  22837. },
  22838. [
  22839. {
  22840. name: "Normal",
  22841. height: math.unit(8, "feet"),
  22842. default: true
  22843. },
  22844. {
  22845. name: "Macro",
  22846. height: math.unit(360, "feet")
  22847. },
  22848. {
  22849. name: "Megamacro",
  22850. height: math.unit(1500, "feet")
  22851. },
  22852. ]
  22853. ))
  22854. characterMakers.push(() => makeCharacter(
  22855. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22856. {
  22857. front: {
  22858. height: math.unit(5 + 11/12, "feet"),
  22859. weight: math.unit(170, "lb"),
  22860. name: "Front",
  22861. image: {
  22862. source: "./media/characters/poojawa-vynar/front.svg",
  22863. extra: 1735/1585,
  22864. bottom: 96/1831
  22865. }
  22866. },
  22867. back: {
  22868. height: math.unit(5 + 11/12, "feet"),
  22869. weight: math.unit(170, "lb"),
  22870. name: "Back",
  22871. image: {
  22872. source: "./media/characters/poojawa-vynar/back.svg",
  22873. extra: 1749/1607,
  22874. bottom: 28/1777
  22875. }
  22876. },
  22877. male: {
  22878. height: math.unit(5 + 11/12, "feet"),
  22879. weight: math.unit(170, "lb"),
  22880. name: "Male",
  22881. image: {
  22882. source: "./media/characters/poojawa-vynar/male.svg",
  22883. extra: 1855/1713,
  22884. bottom: 63/1918
  22885. }
  22886. },
  22887. taur: {
  22888. height: math.unit(5 + 11/12, "feet"),
  22889. weight: math.unit(170, "lb"),
  22890. name: "Taur",
  22891. image: {
  22892. source: "./media/characters/poojawa-vynar/taur.svg",
  22893. extra: 1151/1059,
  22894. bottom: 356/1507
  22895. }
  22896. },
  22897. frontDressed: {
  22898. height: math.unit(5 + 11/12, "feet"),
  22899. weight: math.unit(170, "lb"),
  22900. name: "Front (Dressed)",
  22901. image: {
  22902. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22903. extra: 1735/1585,
  22904. bottom: 96/1831
  22905. }
  22906. },
  22907. backDressed: {
  22908. height: math.unit(5 + 11/12, "feet"),
  22909. weight: math.unit(170, "lb"),
  22910. name: "Back (Dressed)",
  22911. image: {
  22912. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22913. extra: 1749/1607,
  22914. bottom: 28/1777
  22915. }
  22916. },
  22917. maleDressed: {
  22918. height: math.unit(5 + 11/12, "feet"),
  22919. weight: math.unit(170, "lb"),
  22920. name: "Male (Dressed)",
  22921. image: {
  22922. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22923. extra: 1855/1713,
  22924. bottom: 63/1918
  22925. }
  22926. },
  22927. taurDressed: {
  22928. height: math.unit(5 + 11/12, "feet"),
  22929. weight: math.unit(170, "lb"),
  22930. name: "Taur (Dressed)",
  22931. image: {
  22932. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22933. extra: 1151/1059,
  22934. bottom: 356/1507
  22935. }
  22936. },
  22937. maw: {
  22938. height: math.unit(1.46, "feet"),
  22939. name: "Maw",
  22940. image: {
  22941. source: "./media/characters/poojawa-vynar/maw.svg"
  22942. }
  22943. },
  22944. head: {
  22945. height: math.unit(2.34, "feet"),
  22946. name: "Head",
  22947. image: {
  22948. source: "./media/characters/poojawa-vynar/head.svg"
  22949. }
  22950. },
  22951. paw: {
  22952. height: math.unit(1.61, "feet"),
  22953. name: "Paw",
  22954. image: {
  22955. source: "./media/characters/poojawa-vynar/paw.svg"
  22956. }
  22957. },
  22958. pawToering: {
  22959. height: math.unit(1.72, "feet"),
  22960. name: "Paw (Toering)",
  22961. image: {
  22962. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22963. }
  22964. },
  22965. toering: {
  22966. height: math.unit(2.9, "inches"),
  22967. name: "Toering",
  22968. image: {
  22969. source: "./media/characters/poojawa-vynar/toering.svg"
  22970. }
  22971. },
  22972. shaft: {
  22973. height: math.unit(0.625, "feet"),
  22974. name: "Shaft",
  22975. image: {
  22976. source: "./media/characters/poojawa-vynar/shaft.svg"
  22977. }
  22978. },
  22979. spade: {
  22980. height: math.unit(0.42, "feet"),
  22981. name: "Spade",
  22982. image: {
  22983. source: "./media/characters/poojawa-vynar/spade.svg"
  22984. }
  22985. },
  22986. },
  22987. [
  22988. {
  22989. name: "Shortstack",
  22990. height: math.unit(4, "feet")
  22991. },
  22992. {
  22993. name: "Normal",
  22994. height: math.unit(5 + 11 / 12, "feet"),
  22995. default: true
  22996. },
  22997. {
  22998. name: "Tauric",
  22999. height: math.unit(4, "meters")
  23000. },
  23001. ]
  23002. ))
  23003. characterMakers.push(() => makeCharacter(
  23004. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23005. {
  23006. front: {
  23007. height: math.unit(293, "meters"),
  23008. weight: math.unit(70400, "tons"),
  23009. name: "Front",
  23010. image: {
  23011. source: "./media/characters/violette/front.svg",
  23012. extra: 1227 / 1180,
  23013. bottom: 0.005
  23014. }
  23015. },
  23016. back: {
  23017. height: math.unit(293, "meters"),
  23018. weight: math.unit(70400, "tons"),
  23019. name: "Back",
  23020. image: {
  23021. source: "./media/characters/violette/back.svg",
  23022. extra: 1227 / 1180,
  23023. bottom: 0.005
  23024. }
  23025. },
  23026. },
  23027. [
  23028. {
  23029. name: "Macro",
  23030. height: math.unit(293, "meters"),
  23031. default: true
  23032. },
  23033. ]
  23034. ))
  23035. characterMakers.push(() => makeCharacter(
  23036. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23037. {
  23038. front: {
  23039. height: math.unit(1050, "feet"),
  23040. weight: math.unit(200000, "tons"),
  23041. name: "Front",
  23042. image: {
  23043. source: "./media/characters/alessandra/front.svg",
  23044. extra: 960 / 912,
  23045. bottom: 0.06
  23046. }
  23047. },
  23048. },
  23049. [
  23050. {
  23051. name: "Macro",
  23052. height: math.unit(1050, "feet")
  23053. },
  23054. {
  23055. name: "Macro+",
  23056. height: math.unit(900, "meters"),
  23057. default: true
  23058. },
  23059. ]
  23060. ))
  23061. characterMakers.push(() => makeCharacter(
  23062. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23063. {
  23064. front: {
  23065. height: math.unit(5, "feet"),
  23066. weight: math.unit(187, "lb"),
  23067. name: "Front",
  23068. image: {
  23069. source: "./media/characters/person/front.svg",
  23070. extra: 3087 / 2945,
  23071. bottom: 91 / 3181
  23072. }
  23073. },
  23074. },
  23075. [
  23076. {
  23077. name: "Micro",
  23078. height: math.unit(3, "inches")
  23079. },
  23080. {
  23081. name: "Normal",
  23082. height: math.unit(5, "feet"),
  23083. default: true
  23084. },
  23085. {
  23086. name: "Macro",
  23087. height: math.unit(90, "feet")
  23088. },
  23089. {
  23090. name: "Max Size",
  23091. height: math.unit(280, "feet")
  23092. },
  23093. ]
  23094. ))
  23095. characterMakers.push(() => makeCharacter(
  23096. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23097. {
  23098. front: {
  23099. height: math.unit(4.5, "meters"),
  23100. weight: math.unit(3200, "lb"),
  23101. name: "Front",
  23102. image: {
  23103. source: "./media/characters/ty/front.svg",
  23104. extra: 1038 / 960,
  23105. bottom: 31.156 / 1068
  23106. }
  23107. },
  23108. back: {
  23109. height: math.unit(4.5, "meters"),
  23110. weight: math.unit(3200, "lb"),
  23111. name: "Back",
  23112. image: {
  23113. source: "./media/characters/ty/back.svg",
  23114. extra: 1044 / 966,
  23115. bottom: 7.48 / 1049
  23116. }
  23117. },
  23118. },
  23119. [
  23120. {
  23121. name: "Normal",
  23122. height: math.unit(4.5, "meters"),
  23123. default: true
  23124. },
  23125. ]
  23126. ))
  23127. characterMakers.push(() => makeCharacter(
  23128. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23129. {
  23130. front: {
  23131. height: math.unit(5 + 4 / 12, "feet"),
  23132. weight: math.unit(115, "lb"),
  23133. name: "Front",
  23134. image: {
  23135. source: "./media/characters/rocky/front.svg",
  23136. extra: 1012 / 975,
  23137. bottom: 54 / 1066
  23138. }
  23139. },
  23140. },
  23141. [
  23142. {
  23143. name: "Normal",
  23144. height: math.unit(5 + 4 / 12, "feet"),
  23145. default: true
  23146. },
  23147. ]
  23148. ))
  23149. characterMakers.push(() => makeCharacter(
  23150. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23151. {
  23152. upright: {
  23153. height: math.unit(6, "meters"),
  23154. weight: math.unit(4000, "kg"),
  23155. name: "Upright",
  23156. image: {
  23157. source: "./media/characters/ruin/upright.svg",
  23158. extra: 668 / 661,
  23159. bottom: 42 / 799.8396
  23160. }
  23161. },
  23162. },
  23163. [
  23164. {
  23165. name: "Normal",
  23166. height: math.unit(6, "meters"),
  23167. default: true
  23168. },
  23169. ]
  23170. ))
  23171. characterMakers.push(() => makeCharacter(
  23172. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23173. {
  23174. front: {
  23175. height: math.unit(5, "feet"),
  23176. weight: math.unit(106, "lb"),
  23177. name: "Front",
  23178. image: {
  23179. source: "./media/characters/robin/front.svg",
  23180. extra: 862 / 799,
  23181. bottom: 42.4 / 914.8856
  23182. }
  23183. },
  23184. },
  23185. [
  23186. {
  23187. name: "Normal",
  23188. height: math.unit(5, "feet"),
  23189. default: true
  23190. },
  23191. ]
  23192. ))
  23193. characterMakers.push(() => makeCharacter(
  23194. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23195. {
  23196. side: {
  23197. height: math.unit(3, "feet"),
  23198. weight: math.unit(225, "lb"),
  23199. name: "Side",
  23200. image: {
  23201. source: "./media/characters/saian/side.svg",
  23202. extra: 566 / 356,
  23203. bottom: 79.7 / 643
  23204. }
  23205. },
  23206. maw: {
  23207. height: math.unit(2.85, "feet"),
  23208. name: "Maw",
  23209. image: {
  23210. source: "./media/characters/saian/maw.svg"
  23211. }
  23212. },
  23213. },
  23214. [
  23215. {
  23216. name: "Normal",
  23217. height: math.unit(3, "feet"),
  23218. default: true
  23219. },
  23220. ]
  23221. ))
  23222. characterMakers.push(() => makeCharacter(
  23223. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23224. {
  23225. side: {
  23226. height: math.unit(8, "feet"),
  23227. weight: math.unit(300, "lb"),
  23228. name: "Side",
  23229. image: {
  23230. source: "./media/characters/equus-silvermane/side.svg",
  23231. extra: 2176 / 2050,
  23232. bottom: 65.7 / 2245
  23233. }
  23234. },
  23235. front: {
  23236. height: math.unit(8, "feet"),
  23237. weight: math.unit(300, "lb"),
  23238. name: "Front",
  23239. image: {
  23240. source: "./media/characters/equus-silvermane/front.svg",
  23241. extra: 4633 / 4400,
  23242. bottom: 71.3 / 4706.915
  23243. }
  23244. },
  23245. sideStepping: {
  23246. height: math.unit(8, "feet"),
  23247. weight: math.unit(300, "lb"),
  23248. name: "Side (Stepping)",
  23249. image: {
  23250. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23251. extra: 1968 / 1860,
  23252. bottom: 16.4 / 1989
  23253. }
  23254. },
  23255. },
  23256. [
  23257. {
  23258. name: "Normal",
  23259. height: math.unit(8, "feet")
  23260. },
  23261. {
  23262. name: "Minimacro",
  23263. height: math.unit(75, "feet"),
  23264. default: true
  23265. },
  23266. {
  23267. name: "Macro",
  23268. height: math.unit(150, "feet")
  23269. },
  23270. {
  23271. name: "Macro+",
  23272. height: math.unit(1000, "feet")
  23273. },
  23274. {
  23275. name: "Megamacro",
  23276. height: math.unit(1, "mile")
  23277. },
  23278. ]
  23279. ))
  23280. characterMakers.push(() => makeCharacter(
  23281. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23282. {
  23283. side: {
  23284. height: math.unit(20, "feet"),
  23285. weight: math.unit(30000, "kg"),
  23286. name: "Side",
  23287. image: {
  23288. source: "./media/characters/windar/side.svg",
  23289. extra: 1491 / 1248,
  23290. bottom: 82.56 / 1568
  23291. }
  23292. },
  23293. },
  23294. [
  23295. {
  23296. name: "Normal",
  23297. height: math.unit(20, "feet"),
  23298. default: true
  23299. },
  23300. ]
  23301. ))
  23302. characterMakers.push(() => makeCharacter(
  23303. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23304. {
  23305. side: {
  23306. height: math.unit(15.66, "feet"),
  23307. weight: math.unit(150, "lb"),
  23308. name: "Side",
  23309. image: {
  23310. source: "./media/characters/melody/side.svg",
  23311. extra: 1097 / 944,
  23312. bottom: 11.8 / 1109
  23313. }
  23314. },
  23315. sideOutfit: {
  23316. height: math.unit(15.66, "feet"),
  23317. weight: math.unit(150, "lb"),
  23318. name: "Side (Outfit)",
  23319. image: {
  23320. source: "./media/characters/melody/side-outfit.svg",
  23321. extra: 1097 / 944,
  23322. bottom: 11.8 / 1109
  23323. }
  23324. },
  23325. },
  23326. [
  23327. {
  23328. name: "Normal",
  23329. height: math.unit(15.66, "feet"),
  23330. default: true
  23331. },
  23332. ]
  23333. ))
  23334. characterMakers.push(() => makeCharacter(
  23335. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23336. {
  23337. armoredFront: {
  23338. height: math.unit(8, "feet"),
  23339. weight: math.unit(325, "lb"),
  23340. name: "Front",
  23341. image: {
  23342. source: "./media/characters/windera/armored-front.svg",
  23343. extra: 1830/1598,
  23344. bottom: 151/1981
  23345. },
  23346. form: "armored",
  23347. default: true
  23348. },
  23349. macroFront: {
  23350. height: math.unit(70, "feet"),
  23351. weight: math.unit(315453, "lb"),
  23352. name: "Front",
  23353. image: {
  23354. source: "./media/characters/windera/macro-front.svg",
  23355. extra: 963/883,
  23356. bottom: 23/986
  23357. },
  23358. form: "macro",
  23359. default: true
  23360. },
  23361. },
  23362. [
  23363. {
  23364. name: "Normal",
  23365. height: math.unit(8, "feet"),
  23366. default: true,
  23367. form: "armored"
  23368. },
  23369. {
  23370. name: "Normal",
  23371. height: math.unit(70, "feet"),
  23372. default: true,
  23373. form: "macro"
  23374. },
  23375. ],
  23376. {
  23377. "armored": {
  23378. name: "Armored",
  23379. default: true
  23380. },
  23381. "macro": {
  23382. name: "Macro",
  23383. },
  23384. }
  23385. ))
  23386. characterMakers.push(() => makeCharacter(
  23387. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23388. {
  23389. front: {
  23390. height: math.unit(28.75, "feet"),
  23391. weight: math.unit(2000, "kg"),
  23392. name: "Front",
  23393. image: {
  23394. source: "./media/characters/sonear/front.svg",
  23395. extra: 1041.1 / 964.9,
  23396. bottom: 53.7 / 1096.6
  23397. }
  23398. },
  23399. },
  23400. [
  23401. {
  23402. name: "Normal",
  23403. height: math.unit(28.75, "feet"),
  23404. default: true
  23405. },
  23406. ]
  23407. ))
  23408. characterMakers.push(() => makeCharacter(
  23409. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23410. {
  23411. side: {
  23412. height: math.unit(25.5, "feet"),
  23413. weight: math.unit(23000, "kg"),
  23414. name: "Side",
  23415. image: {
  23416. source: "./media/characters/kanara/side.svg"
  23417. }
  23418. },
  23419. },
  23420. [
  23421. {
  23422. name: "Normal",
  23423. height: math.unit(25.5, "feet"),
  23424. default: true
  23425. },
  23426. ]
  23427. ))
  23428. characterMakers.push(() => makeCharacter(
  23429. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23430. {
  23431. side: {
  23432. height: math.unit(10, "feet"),
  23433. weight: math.unit(1000, "kg"),
  23434. name: "Side",
  23435. image: {
  23436. source: "./media/characters/ereus/side.svg",
  23437. extra: 1157 / 959,
  23438. bottom: 153 / 1312.5
  23439. }
  23440. },
  23441. },
  23442. [
  23443. {
  23444. name: "Normal",
  23445. height: math.unit(10, "feet"),
  23446. default: true
  23447. },
  23448. ]
  23449. ))
  23450. characterMakers.push(() => makeCharacter(
  23451. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23452. {
  23453. side: {
  23454. height: math.unit(4.5, "feet"),
  23455. weight: math.unit(500, "lb"),
  23456. name: "Side",
  23457. image: {
  23458. source: "./media/characters/e-ter/side.svg",
  23459. extra: 1550 / 1248,
  23460. bottom: 146 / 1694
  23461. }
  23462. },
  23463. },
  23464. [
  23465. {
  23466. name: "Normal",
  23467. height: math.unit(4.5, "feet"),
  23468. default: true
  23469. },
  23470. ]
  23471. ))
  23472. characterMakers.push(() => makeCharacter(
  23473. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23474. {
  23475. side: {
  23476. height: math.unit(9.7, "feet"),
  23477. weight: math.unit(4000, "kg"),
  23478. name: "Side",
  23479. image: {
  23480. source: "./media/characters/yamie/side.svg"
  23481. }
  23482. },
  23483. },
  23484. [
  23485. {
  23486. name: "Normal",
  23487. height: math.unit(9.7, "feet"),
  23488. default: true
  23489. },
  23490. ]
  23491. ))
  23492. characterMakers.push(() => makeCharacter(
  23493. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23494. {
  23495. front: {
  23496. height: math.unit(50, "feet"),
  23497. weight: math.unit(50000, "kg"),
  23498. name: "Front",
  23499. image: {
  23500. source: "./media/characters/anders/front.svg",
  23501. extra: 570 / 539,
  23502. bottom: 14.7 / 586.7
  23503. }
  23504. },
  23505. },
  23506. [
  23507. {
  23508. name: "Large",
  23509. height: math.unit(50, "feet")
  23510. },
  23511. {
  23512. name: "Macro",
  23513. height: math.unit(2000, "feet"),
  23514. default: true
  23515. },
  23516. {
  23517. name: "Megamacro",
  23518. height: math.unit(12, "miles")
  23519. },
  23520. ]
  23521. ))
  23522. characterMakers.push(() => makeCharacter(
  23523. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23524. {
  23525. front: {
  23526. height: math.unit(7 + 2 / 12, "feet"),
  23527. weight: math.unit(300, "lb"),
  23528. name: "Front",
  23529. image: {
  23530. source: "./media/characters/reban/front.svg",
  23531. extra: 1287/1212,
  23532. bottom: 148/1435
  23533. }
  23534. },
  23535. head: {
  23536. height: math.unit(1.95, "feet"),
  23537. name: "Head",
  23538. image: {
  23539. source: "./media/characters/reban/head.svg"
  23540. }
  23541. },
  23542. maw: {
  23543. height: math.unit(0.95, "feet"),
  23544. name: "Maw",
  23545. image: {
  23546. source: "./media/characters/reban/maw.svg"
  23547. }
  23548. },
  23549. foot: {
  23550. height: math.unit(1.65, "feet"),
  23551. name: "Foot",
  23552. image: {
  23553. source: "./media/characters/reban/foot.svg"
  23554. }
  23555. },
  23556. dick: {
  23557. height: math.unit(7 / 5, "feet"),
  23558. name: "Dick",
  23559. image: {
  23560. source: "./media/characters/reban/dick.svg"
  23561. }
  23562. },
  23563. },
  23564. [
  23565. {
  23566. name: "Natural Height",
  23567. height: math.unit(7 + 2 / 12, "feet")
  23568. },
  23569. {
  23570. name: "Macro",
  23571. height: math.unit(500, "feet"),
  23572. default: true
  23573. },
  23574. {
  23575. name: "Canon Height",
  23576. height: math.unit(50, "AU")
  23577. },
  23578. ]
  23579. ))
  23580. characterMakers.push(() => makeCharacter(
  23581. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23582. {
  23583. front: {
  23584. height: math.unit(6, "feet"),
  23585. weight: math.unit(150, "lb"),
  23586. name: "Front",
  23587. image: {
  23588. source: "./media/characters/terrance-keayes/front.svg",
  23589. extra: 1.005,
  23590. bottom: 151 / 1615
  23591. }
  23592. },
  23593. side: {
  23594. height: math.unit(6, "feet"),
  23595. weight: math.unit(150, "lb"),
  23596. name: "Side",
  23597. image: {
  23598. source: "./media/characters/terrance-keayes/side.svg",
  23599. extra: 1.005,
  23600. bottom: 129.4 / 1544
  23601. }
  23602. },
  23603. back: {
  23604. height: math.unit(6, "feet"),
  23605. weight: math.unit(150, "lb"),
  23606. name: "Back",
  23607. image: {
  23608. source: "./media/characters/terrance-keayes/back.svg",
  23609. extra: 1.005,
  23610. bottom: 58.4 / 1557.3
  23611. }
  23612. },
  23613. dick: {
  23614. height: math.unit(6 * 0.208, "feet"),
  23615. name: "Dick",
  23616. image: {
  23617. source: "./media/characters/terrance-keayes/dick.svg"
  23618. }
  23619. },
  23620. },
  23621. [
  23622. {
  23623. name: "Canon Height",
  23624. height: math.unit(35, "miles"),
  23625. default: true
  23626. },
  23627. ]
  23628. ))
  23629. characterMakers.push(() => makeCharacter(
  23630. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23631. {
  23632. front: {
  23633. height: math.unit(6, "feet"),
  23634. weight: math.unit(150, "lb"),
  23635. name: "Front",
  23636. image: {
  23637. source: "./media/characters/ofelia/front.svg",
  23638. extra: 1130/1117,
  23639. bottom: 91/1221
  23640. }
  23641. },
  23642. back: {
  23643. height: math.unit(6, "feet"),
  23644. weight: math.unit(150, "lb"),
  23645. name: "Back",
  23646. image: {
  23647. source: "./media/characters/ofelia/back.svg",
  23648. extra: 1172/1159,
  23649. bottom: 28/1200
  23650. }
  23651. },
  23652. maw: {
  23653. height: math.unit(1, "feet"),
  23654. name: "Maw",
  23655. image: {
  23656. source: "./media/characters/ofelia/maw.svg"
  23657. }
  23658. },
  23659. foot: {
  23660. height: math.unit(1.949, "feet"),
  23661. name: "Foot",
  23662. image: {
  23663. source: "./media/characters/ofelia/foot.svg"
  23664. }
  23665. },
  23666. },
  23667. [
  23668. {
  23669. name: "Canon Height",
  23670. height: math.unit(2000, "miles"),
  23671. default: true
  23672. },
  23673. ]
  23674. ))
  23675. characterMakers.push(() => makeCharacter(
  23676. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23677. {
  23678. front: {
  23679. height: math.unit(6, "feet"),
  23680. weight: math.unit(150, "lb"),
  23681. name: "Front",
  23682. image: {
  23683. source: "./media/characters/samuel/front.svg",
  23684. extra: 265 / 258,
  23685. bottom: 2 / 266.1566
  23686. }
  23687. },
  23688. },
  23689. [
  23690. {
  23691. name: "Macro",
  23692. height: math.unit(100, "feet"),
  23693. default: true
  23694. },
  23695. {
  23696. name: "Full Size",
  23697. height: math.unit(1000, "miles")
  23698. },
  23699. ]
  23700. ))
  23701. characterMakers.push(() => makeCharacter(
  23702. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23703. {
  23704. front: {
  23705. height: math.unit(6, "feet"),
  23706. weight: math.unit(300, "lb"),
  23707. name: "Front",
  23708. image: {
  23709. source: "./media/characters/beishir-kiel/front.svg",
  23710. extra: 569 / 547,
  23711. bottom: 41.9 / 609
  23712. }
  23713. },
  23714. maw: {
  23715. height: math.unit(6 * 0.202, "feet"),
  23716. name: "Maw",
  23717. image: {
  23718. source: "./media/characters/beishir-kiel/maw.svg"
  23719. }
  23720. },
  23721. },
  23722. [
  23723. {
  23724. name: "Macro",
  23725. height: math.unit(300, "feet"),
  23726. default: true
  23727. },
  23728. ]
  23729. ))
  23730. characterMakers.push(() => makeCharacter(
  23731. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23732. {
  23733. front: {
  23734. height: math.unit(5 + 7/12, "feet"),
  23735. weight: math.unit(120, "lb"),
  23736. name: "Front",
  23737. image: {
  23738. source: "./media/characters/logan-grey/front.svg",
  23739. extra: 1836/1738,
  23740. bottom: 108/1944
  23741. }
  23742. },
  23743. back: {
  23744. height: math.unit(5 + 7/12, "feet"),
  23745. weight: math.unit(120, "lb"),
  23746. name: "Back",
  23747. image: {
  23748. source: "./media/characters/logan-grey/back.svg",
  23749. extra: 1880/1794,
  23750. bottom: 24/1904
  23751. }
  23752. },
  23753. frontSfw: {
  23754. height: math.unit(5 + 7/12, "feet"),
  23755. weight: math.unit(120, "lb"),
  23756. name: "Front (SFW)",
  23757. image: {
  23758. source: "./media/characters/logan-grey/front-sfw.svg",
  23759. extra: 1836/1738,
  23760. bottom: 108/1944
  23761. }
  23762. },
  23763. backSfw: {
  23764. height: math.unit(5 + 7/12, "feet"),
  23765. weight: math.unit(120, "lb"),
  23766. name: "Back (SFW)",
  23767. image: {
  23768. source: "./media/characters/logan-grey/back-sfw.svg",
  23769. extra: 1880/1794,
  23770. bottom: 24/1904
  23771. }
  23772. },
  23773. hands: {
  23774. height: math.unit(0.84, "feet"),
  23775. name: "Hands",
  23776. image: {
  23777. source: "./media/characters/logan-grey/hands.svg"
  23778. }
  23779. },
  23780. paws: {
  23781. height: math.unit(0.72, "feet"),
  23782. name: "Paws",
  23783. image: {
  23784. source: "./media/characters/logan-grey/paws.svg"
  23785. }
  23786. },
  23787. cock: {
  23788. height: math.unit(1.45, "feet"),
  23789. name: "Cock",
  23790. image: {
  23791. source: "./media/characters/logan-grey/cock.svg"
  23792. }
  23793. },
  23794. cockAlt: {
  23795. height: math.unit(1.437, "feet"),
  23796. name: "Cock (alt)",
  23797. image: {
  23798. source: "./media/characters/logan-grey/cock-alt.svg"
  23799. }
  23800. },
  23801. },
  23802. [
  23803. {
  23804. name: "Normal",
  23805. height: math.unit(5 + 8 / 12, "feet")
  23806. },
  23807. {
  23808. name: "The 500 Foot Femboy",
  23809. height: math.unit(500, "feet"),
  23810. default: true
  23811. },
  23812. {
  23813. name: "Megmacro",
  23814. height: math.unit(20, "miles")
  23815. },
  23816. ]
  23817. ))
  23818. characterMakers.push(() => makeCharacter(
  23819. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23820. {
  23821. front: {
  23822. height: math.unit(8 + 2 / 12, "feet"),
  23823. weight: math.unit(275, "lb"),
  23824. name: "Front",
  23825. image: {
  23826. source: "./media/characters/draganta/front.svg",
  23827. extra: 1177 / 1135,
  23828. bottom: 33.46 / 1212.1
  23829. }
  23830. },
  23831. },
  23832. [
  23833. {
  23834. name: "Normal",
  23835. height: math.unit(8 + 6 / 12, "feet"),
  23836. default: true
  23837. },
  23838. {
  23839. name: "Macro",
  23840. height: math.unit(150, "feet")
  23841. },
  23842. {
  23843. name: "Megamacro",
  23844. height: math.unit(1000, "miles")
  23845. },
  23846. ]
  23847. ))
  23848. characterMakers.push(() => makeCharacter(
  23849. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23850. {
  23851. front: {
  23852. height: math.unit(1.72, "m"),
  23853. weight: math.unit(80, "lb"),
  23854. name: "Front",
  23855. image: {
  23856. source: "./media/characters/voski/front.svg",
  23857. extra: 2076.22 / 2022.4,
  23858. bottom: 102.7 / 2177.3866
  23859. }
  23860. },
  23861. frontFlaccid: {
  23862. height: math.unit(1.72, "m"),
  23863. weight: math.unit(80, "lb"),
  23864. name: "Front (Flaccid)",
  23865. image: {
  23866. source: "./media/characters/voski/front-flaccid.svg",
  23867. extra: 2076.22 / 2022.4,
  23868. bottom: 102.7 / 2177.3866
  23869. }
  23870. },
  23871. frontErect: {
  23872. height: math.unit(1.72, "m"),
  23873. weight: math.unit(80, "lb"),
  23874. name: "Front (Erect)",
  23875. image: {
  23876. source: "./media/characters/voski/front-erect.svg",
  23877. extra: 2076.22 / 2022.4,
  23878. bottom: 102.7 / 2177.3866
  23879. }
  23880. },
  23881. back: {
  23882. height: math.unit(1.72, "m"),
  23883. weight: math.unit(80, "lb"),
  23884. name: "Back",
  23885. image: {
  23886. source: "./media/characters/voski/back.svg",
  23887. extra: 2104 / 2051,
  23888. bottom: 10.45 / 2113.63
  23889. }
  23890. },
  23891. },
  23892. [
  23893. {
  23894. name: "Normal",
  23895. height: math.unit(1.72, "m")
  23896. },
  23897. {
  23898. name: "Macro",
  23899. height: math.unit(55, "m"),
  23900. default: true
  23901. },
  23902. {
  23903. name: "Macro+",
  23904. height: math.unit(300, "m")
  23905. },
  23906. {
  23907. name: "Macro++",
  23908. height: math.unit(700, "m")
  23909. },
  23910. {
  23911. name: "Macro+++",
  23912. height: math.unit(4500, "m")
  23913. },
  23914. {
  23915. name: "Macro++++",
  23916. height: math.unit(45, "km")
  23917. },
  23918. {
  23919. name: "Macro+++++",
  23920. height: math.unit(1220, "km")
  23921. },
  23922. ]
  23923. ))
  23924. characterMakers.push(() => makeCharacter(
  23925. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23926. {
  23927. front: {
  23928. height: math.unit(2.3, "m"),
  23929. weight: math.unit(304, "kg"),
  23930. name: "Front",
  23931. image: {
  23932. source: "./media/characters/icowom-lee/front.svg",
  23933. extra: 985 / 955,
  23934. bottom: 25.4 / 1012
  23935. }
  23936. },
  23937. fronttentacles: {
  23938. height: math.unit(2.3, "m"),
  23939. weight: math.unit(304, "kg"),
  23940. name: "Front-tentacles",
  23941. image: {
  23942. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23943. extra: 985 / 955,
  23944. bottom: 25.4 / 1012
  23945. }
  23946. },
  23947. back: {
  23948. height: math.unit(2.3, "m"),
  23949. weight: math.unit(304, "kg"),
  23950. name: "Back",
  23951. image: {
  23952. source: "./media/characters/icowom-lee/back.svg",
  23953. extra: 975 / 954,
  23954. bottom: 9.5 / 985
  23955. }
  23956. },
  23957. backtentacles: {
  23958. height: math.unit(2.3, "m"),
  23959. weight: math.unit(304, "kg"),
  23960. name: "Back-tentacles",
  23961. image: {
  23962. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23963. extra: 975 / 954,
  23964. bottom: 9.5 / 985
  23965. }
  23966. },
  23967. frontDressed: {
  23968. height: math.unit(2.3, "m"),
  23969. weight: math.unit(304, "kg"),
  23970. name: "Front (Dressed)",
  23971. image: {
  23972. source: "./media/characters/icowom-lee/front-dressed.svg",
  23973. extra: 3076 / 2933,
  23974. bottom: 51.4 / 3125.1889
  23975. }
  23976. },
  23977. rump: {
  23978. height: math.unit(0.776, "meters"),
  23979. name: "Rump",
  23980. image: {
  23981. source: "./media/characters/icowom-lee/rump.svg"
  23982. }
  23983. },
  23984. genitals: {
  23985. height: math.unit(0.78, "meters"),
  23986. name: "Genitals",
  23987. image: {
  23988. source: "./media/characters/icowom-lee/genitals.svg"
  23989. }
  23990. },
  23991. },
  23992. [
  23993. {
  23994. name: "Normal",
  23995. height: math.unit(2.3, "meters"),
  23996. default: true
  23997. },
  23998. {
  23999. name: "Macro",
  24000. height: math.unit(94, "meters"),
  24001. default: true
  24002. },
  24003. ]
  24004. ))
  24005. characterMakers.push(() => makeCharacter(
  24006. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24007. {
  24008. front: {
  24009. height: math.unit(22, "meters"),
  24010. weight: math.unit(21000, "kg"),
  24011. name: "Front",
  24012. image: {
  24013. source: "./media/characters/shock-diamond/front.svg",
  24014. extra: 2204 / 2053,
  24015. bottom: 65 / 2239.47
  24016. }
  24017. },
  24018. frontNude: {
  24019. height: math.unit(22, "meters"),
  24020. weight: math.unit(21000, "kg"),
  24021. name: "Front (Nude)",
  24022. image: {
  24023. source: "./media/characters/shock-diamond/front-nude.svg",
  24024. extra: 2514 / 2285,
  24025. bottom: 13 / 2527.56
  24026. }
  24027. },
  24028. },
  24029. [
  24030. {
  24031. name: "Normal",
  24032. height: math.unit(3, "meters")
  24033. },
  24034. {
  24035. name: "Macro",
  24036. height: math.unit(22, "meters"),
  24037. default: true
  24038. },
  24039. ]
  24040. ))
  24041. characterMakers.push(() => makeCharacter(
  24042. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24043. {
  24044. front: {
  24045. height: math.unit(5 + 4/12, "feet"),
  24046. weight: math.unit(125, "lb"),
  24047. name: "Front",
  24048. image: {
  24049. source: "./media/characters/rory/front.svg",
  24050. extra: 1790/1681,
  24051. bottom: 66/1856
  24052. }
  24053. },
  24054. back: {
  24055. height: math.unit(5 + 4/12, "feet"),
  24056. weight: math.unit(125, "lb"),
  24057. name: "Back",
  24058. image: {
  24059. source: "./media/characters/rory/back.svg",
  24060. extra: 1805/1690,
  24061. bottom: 56/1861
  24062. }
  24063. },
  24064. frontDressed: {
  24065. height: math.unit(5 + 4/12, "feet"),
  24066. weight: math.unit(125, "lb"),
  24067. name: "Front (Dressed)",
  24068. image: {
  24069. source: "./media/characters/rory/front-dressed.svg",
  24070. extra: 1790/1681,
  24071. bottom: 66/1856
  24072. }
  24073. },
  24074. backDressed: {
  24075. height: math.unit(5 + 4/12, "feet"),
  24076. weight: math.unit(125, "lb"),
  24077. name: "Back (Dressed)",
  24078. image: {
  24079. source: "./media/characters/rory/back-dressed.svg",
  24080. extra: 1805/1690,
  24081. bottom: 56/1861
  24082. }
  24083. },
  24084. frontNsfw: {
  24085. height: math.unit(5 + 4/12, "feet"),
  24086. weight: math.unit(125, "lb"),
  24087. name: "Front (NSFW)",
  24088. image: {
  24089. source: "./media/characters/rory/front-nsfw.svg",
  24090. extra: 1790/1681,
  24091. bottom: 66/1856
  24092. }
  24093. },
  24094. backNsfw: {
  24095. height: math.unit(5 + 4/12, "feet"),
  24096. weight: math.unit(125, "lb"),
  24097. name: "Back (NSFW)",
  24098. image: {
  24099. source: "./media/characters/rory/back-nsfw.svg",
  24100. extra: 1805/1690,
  24101. bottom: 56/1861
  24102. }
  24103. },
  24104. dick: {
  24105. height: math.unit(0.8, "feet"),
  24106. name: "Dick",
  24107. image: {
  24108. source: "./media/characters/rory/dick.svg"
  24109. }
  24110. },
  24111. },
  24112. [
  24113. {
  24114. name: "Micro",
  24115. height: math.unit(3, "inches")
  24116. },
  24117. {
  24118. name: "Normal",
  24119. height: math.unit(5 + 4/12, "feet"),
  24120. default: true
  24121. },
  24122. {
  24123. name: "Macro",
  24124. height: math.unit(90, "feet")
  24125. },
  24126. {
  24127. name: "Supercharged",
  24128. height: math.unit(270, "feet")
  24129. },
  24130. ]
  24131. ))
  24132. characterMakers.push(() => makeCharacter(
  24133. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24134. {
  24135. front: {
  24136. height: math.unit(5 + 9 / 12, "feet"),
  24137. weight: math.unit(190, "lb"),
  24138. name: "Front",
  24139. image: {
  24140. source: "./media/characters/sprisk/front.svg",
  24141. extra: 1225 / 1180,
  24142. bottom: 42.7 / 1266.4
  24143. }
  24144. },
  24145. frontNsfw: {
  24146. height: math.unit(5 + 9 / 12, "feet"),
  24147. weight: math.unit(190, "lb"),
  24148. name: "Front (NSFW)",
  24149. image: {
  24150. source: "./media/characters/sprisk/front-nsfw.svg",
  24151. extra: 1225 / 1180,
  24152. bottom: 42.7 / 1266.4
  24153. }
  24154. },
  24155. back: {
  24156. height: math.unit(5 + 9 / 12, "feet"),
  24157. weight: math.unit(190, "lb"),
  24158. name: "Back",
  24159. image: {
  24160. source: "./media/characters/sprisk/back.svg",
  24161. extra: 1247 / 1200,
  24162. bottom: 5.6 / 1253.04
  24163. }
  24164. },
  24165. },
  24166. [
  24167. {
  24168. name: "Tiny",
  24169. height: math.unit(2, "inches")
  24170. },
  24171. {
  24172. name: "Normal",
  24173. height: math.unit(5 + 9 / 12, "feet"),
  24174. default: true
  24175. },
  24176. {
  24177. name: "Mini Macro",
  24178. height: math.unit(18, "feet")
  24179. },
  24180. {
  24181. name: "Macro",
  24182. height: math.unit(100, "feet")
  24183. },
  24184. {
  24185. name: "MACRO",
  24186. height: math.unit(50, "miles")
  24187. },
  24188. {
  24189. name: "M A C R O",
  24190. height: math.unit(300, "miles")
  24191. },
  24192. ]
  24193. ))
  24194. characterMakers.push(() => makeCharacter(
  24195. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24196. {
  24197. side: {
  24198. height: math.unit(15.6, "meters"),
  24199. weight: math.unit(700000, "kg"),
  24200. name: "Side",
  24201. image: {
  24202. source: "./media/characters/bunsen/side.svg",
  24203. extra: 1644 / 358
  24204. }
  24205. },
  24206. foot: {
  24207. height: math.unit(1.611 * 1644 / 358, "meter"),
  24208. name: "Foot",
  24209. image: {
  24210. source: "./media/characters/bunsen/foot.svg"
  24211. }
  24212. },
  24213. },
  24214. [
  24215. {
  24216. name: "Small",
  24217. height: math.unit(10, "feet")
  24218. },
  24219. {
  24220. name: "Normal",
  24221. height: math.unit(15.6, "meters"),
  24222. default: true
  24223. },
  24224. ]
  24225. ))
  24226. characterMakers.push(() => makeCharacter(
  24227. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24228. {
  24229. front: {
  24230. height: math.unit(4 + 11 / 12, "feet"),
  24231. weight: math.unit(140, "lb"),
  24232. name: "Front",
  24233. image: {
  24234. source: "./media/characters/sesh/front.svg",
  24235. extra: 3420 / 3231,
  24236. bottom: 72 / 3949.5
  24237. }
  24238. },
  24239. },
  24240. [
  24241. {
  24242. name: "Normal",
  24243. height: math.unit(4 + 11 / 12, "feet")
  24244. },
  24245. {
  24246. name: "Grown",
  24247. height: math.unit(15, "feet"),
  24248. default: true
  24249. },
  24250. {
  24251. name: "Macro",
  24252. height: math.unit(1500, "feet")
  24253. },
  24254. {
  24255. name: "Megamacro",
  24256. height: math.unit(30, "miles")
  24257. },
  24258. {
  24259. name: "Continental",
  24260. height: math.unit(3000, "miles")
  24261. },
  24262. {
  24263. name: "Gravity Mass",
  24264. height: math.unit(300000, "miles")
  24265. },
  24266. {
  24267. name: "Planet Buster",
  24268. height: math.unit(30000000, "miles")
  24269. },
  24270. {
  24271. name: "Big",
  24272. height: math.unit(3000000000, "miles")
  24273. },
  24274. ]
  24275. ))
  24276. characterMakers.push(() => makeCharacter(
  24277. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24278. {
  24279. front: {
  24280. height: math.unit(9, "feet"),
  24281. weight: math.unit(350, "lb"),
  24282. name: "Front",
  24283. image: {
  24284. source: "./media/characters/pepper/front.svg",
  24285. extra: 1448 / 1312,
  24286. bottom: 9.4 / 1457.88
  24287. }
  24288. },
  24289. back: {
  24290. height: math.unit(9, "feet"),
  24291. weight: math.unit(350, "lb"),
  24292. name: "Back",
  24293. image: {
  24294. source: "./media/characters/pepper/back.svg",
  24295. extra: 1423 / 1300,
  24296. bottom: 4.6 / 1429
  24297. }
  24298. },
  24299. maw: {
  24300. height: math.unit(0.932, "feet"),
  24301. name: "Maw",
  24302. image: {
  24303. source: "./media/characters/pepper/maw.svg"
  24304. }
  24305. },
  24306. },
  24307. [
  24308. {
  24309. name: "Normal",
  24310. height: math.unit(9, "feet"),
  24311. default: true
  24312. },
  24313. ]
  24314. ))
  24315. characterMakers.push(() => makeCharacter(
  24316. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24317. {
  24318. front: {
  24319. height: math.unit(6, "feet"),
  24320. weight: math.unit(150, "lb"),
  24321. name: "Front",
  24322. image: {
  24323. source: "./media/characters/maelstrom/front.svg",
  24324. extra: 2100 / 1883,
  24325. bottom: 94 / 2196.7
  24326. }
  24327. },
  24328. },
  24329. [
  24330. {
  24331. name: "Less Kaiju",
  24332. height: math.unit(200, "feet")
  24333. },
  24334. {
  24335. name: "Kaiju",
  24336. height: math.unit(400, "feet"),
  24337. default: true
  24338. },
  24339. {
  24340. name: "Kaiju-er",
  24341. height: math.unit(600, "feet")
  24342. },
  24343. ]
  24344. ))
  24345. characterMakers.push(() => makeCharacter(
  24346. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24347. {
  24348. front: {
  24349. height: math.unit(6 + 5 / 12, "feet"),
  24350. weight: math.unit(180, "lb"),
  24351. name: "Front",
  24352. image: {
  24353. source: "./media/characters/lexir/front.svg",
  24354. extra: 180 / 172,
  24355. bottom: 12 / 192
  24356. }
  24357. },
  24358. back: {
  24359. height: math.unit(6 + 5 / 12, "feet"),
  24360. weight: math.unit(180, "lb"),
  24361. name: "Back",
  24362. image: {
  24363. source: "./media/characters/lexir/back.svg",
  24364. extra: 1273/1201,
  24365. bottom: 39/1312
  24366. }
  24367. },
  24368. },
  24369. [
  24370. {
  24371. name: "Very Smal",
  24372. height: math.unit(1, "nm")
  24373. },
  24374. {
  24375. name: "Normal",
  24376. height: math.unit(6 + 5 / 12, "feet"),
  24377. default: true
  24378. },
  24379. {
  24380. name: "Macro",
  24381. height: math.unit(1, "mile")
  24382. },
  24383. {
  24384. name: "Megamacro",
  24385. height: math.unit(50, "miles")
  24386. },
  24387. ]
  24388. ))
  24389. characterMakers.push(() => makeCharacter(
  24390. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24391. {
  24392. front: {
  24393. height: math.unit(1.5, "meters"),
  24394. weight: math.unit(100, "lb"),
  24395. name: "Front",
  24396. image: {
  24397. source: "./media/characters/maksio/front.svg",
  24398. extra: 1549 / 1531,
  24399. bottom: 123.7 / 1674.5429
  24400. }
  24401. },
  24402. back: {
  24403. height: math.unit(1.5, "meters"),
  24404. weight: math.unit(100, "lb"),
  24405. name: "Back",
  24406. image: {
  24407. source: "./media/characters/maksio/back.svg",
  24408. extra: 1541 / 1509,
  24409. bottom: 97 / 1639
  24410. }
  24411. },
  24412. hand: {
  24413. height: math.unit(0.621, "feet"),
  24414. name: "Hand",
  24415. image: {
  24416. source: "./media/characters/maksio/hand.svg"
  24417. }
  24418. },
  24419. foot: {
  24420. height: math.unit(1.611, "feet"),
  24421. name: "Foot",
  24422. image: {
  24423. source: "./media/characters/maksio/foot.svg"
  24424. }
  24425. },
  24426. },
  24427. [
  24428. {
  24429. name: "Shrunken",
  24430. height: math.unit(10, "cm")
  24431. },
  24432. {
  24433. name: "Normal",
  24434. height: math.unit(150, "cm"),
  24435. default: true
  24436. },
  24437. ]
  24438. ))
  24439. characterMakers.push(() => makeCharacter(
  24440. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24441. {
  24442. front: {
  24443. height: math.unit(100, "feet"),
  24444. name: "Front",
  24445. image: {
  24446. source: "./media/characters/erza-bear/front.svg",
  24447. extra: 2449 / 2390,
  24448. bottom: 46 / 2494
  24449. }
  24450. },
  24451. back: {
  24452. height: math.unit(100, "feet"),
  24453. name: "Back",
  24454. image: {
  24455. source: "./media/characters/erza-bear/back.svg",
  24456. extra: 2489 / 2430,
  24457. bottom: 85.4 / 2480
  24458. }
  24459. },
  24460. tail: {
  24461. height: math.unit(42, "feet"),
  24462. name: "Tail",
  24463. image: {
  24464. source: "./media/characters/erza-bear/tail.svg"
  24465. }
  24466. },
  24467. tongue: {
  24468. height: math.unit(8, "feet"),
  24469. name: "Tongue",
  24470. image: {
  24471. source: "./media/characters/erza-bear/tongue.svg"
  24472. }
  24473. },
  24474. dick: {
  24475. height: math.unit(10.5, "feet"),
  24476. name: "Dick",
  24477. image: {
  24478. source: "./media/characters/erza-bear/dick.svg"
  24479. }
  24480. },
  24481. dickVertical: {
  24482. height: math.unit(16.9, "feet"),
  24483. name: "Dick (Vertical)",
  24484. image: {
  24485. source: "./media/characters/erza-bear/dick-vertical.svg"
  24486. }
  24487. },
  24488. },
  24489. [
  24490. {
  24491. name: "Macro",
  24492. height: math.unit(100, "feet"),
  24493. default: true
  24494. },
  24495. ]
  24496. ))
  24497. characterMakers.push(() => makeCharacter(
  24498. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24499. {
  24500. front: {
  24501. height: math.unit(172, "cm"),
  24502. weight: math.unit(73, "kg"),
  24503. name: "Front",
  24504. image: {
  24505. source: "./media/characters/violet-flor/front.svg",
  24506. extra: 1530 / 1442,
  24507. bottom: 61.9 / 1588.8
  24508. }
  24509. },
  24510. back: {
  24511. height: math.unit(180, "cm"),
  24512. weight: math.unit(73, "kg"),
  24513. name: "Back",
  24514. image: {
  24515. source: "./media/characters/violet-flor/back.svg",
  24516. extra: 1692 / 1630,
  24517. bottom: 20 / 1712
  24518. }
  24519. },
  24520. },
  24521. [
  24522. {
  24523. name: "Normal",
  24524. height: math.unit(172, "cm"),
  24525. default: true
  24526. },
  24527. ]
  24528. ))
  24529. characterMakers.push(() => makeCharacter(
  24530. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24531. {
  24532. front: {
  24533. height: math.unit(6, "feet"),
  24534. weight: math.unit(220, "lb"),
  24535. name: "Front",
  24536. image: {
  24537. source: "./media/characters/lynn-rhea/front.svg",
  24538. extra: 310 / 273
  24539. }
  24540. },
  24541. back: {
  24542. height: math.unit(6, "feet"),
  24543. weight: math.unit(220, "lb"),
  24544. name: "Back",
  24545. image: {
  24546. source: "./media/characters/lynn-rhea/back.svg",
  24547. extra: 310 / 273
  24548. }
  24549. },
  24550. dicks: {
  24551. height: math.unit(0.9, "feet"),
  24552. name: "Dicks",
  24553. image: {
  24554. source: "./media/characters/lynn-rhea/dicks.svg"
  24555. }
  24556. },
  24557. slit: {
  24558. height: math.unit(0.4, "feet"),
  24559. name: "Slit",
  24560. image: {
  24561. source: "./media/characters/lynn-rhea/slit.svg"
  24562. }
  24563. },
  24564. },
  24565. [
  24566. {
  24567. name: "Micro",
  24568. height: math.unit(1, "inch")
  24569. },
  24570. {
  24571. name: "Macro",
  24572. height: math.unit(60, "feet"),
  24573. default: true
  24574. },
  24575. {
  24576. name: "Megamacro",
  24577. height: math.unit(2, "miles")
  24578. },
  24579. {
  24580. name: "Gigamacro",
  24581. height: math.unit(3, "earths")
  24582. },
  24583. {
  24584. name: "Galactic",
  24585. height: math.unit(0.8, "galaxies")
  24586. },
  24587. ]
  24588. ))
  24589. characterMakers.push(() => makeCharacter(
  24590. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24591. {
  24592. front: {
  24593. height: math.unit(1600, "feet"),
  24594. weight: math.unit(85758785169, "kg"),
  24595. name: "Front",
  24596. image: {
  24597. source: "./media/characters/valathos/front.svg",
  24598. extra: 1451 / 1339
  24599. }
  24600. },
  24601. },
  24602. [
  24603. {
  24604. name: "Macro",
  24605. height: math.unit(1600, "feet"),
  24606. default: true
  24607. },
  24608. ]
  24609. ))
  24610. characterMakers.push(() => makeCharacter(
  24611. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24612. {
  24613. front: {
  24614. height: math.unit(7 + 5 / 12, "feet"),
  24615. weight: math.unit(300, "lb"),
  24616. name: "Front",
  24617. image: {
  24618. source: "./media/characters/azula/front.svg",
  24619. extra: 3208 / 2880,
  24620. bottom: 80.2 / 3277
  24621. }
  24622. },
  24623. back: {
  24624. height: math.unit(7 + 5 / 12, "feet"),
  24625. weight: math.unit(300, "lb"),
  24626. name: "Back",
  24627. image: {
  24628. source: "./media/characters/azula/back.svg",
  24629. extra: 3169 / 2822,
  24630. bottom: 150.6 / 3321
  24631. }
  24632. },
  24633. },
  24634. [
  24635. {
  24636. name: "Normal",
  24637. height: math.unit(7 + 5 / 12, "feet"),
  24638. default: true
  24639. },
  24640. {
  24641. name: "Big",
  24642. height: math.unit(20, "feet")
  24643. },
  24644. ]
  24645. ))
  24646. characterMakers.push(() => makeCharacter(
  24647. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24648. {
  24649. front: {
  24650. height: math.unit(5 + 1 / 12, "feet"),
  24651. weight: math.unit(110, "lb"),
  24652. name: "Front",
  24653. image: {
  24654. source: "./media/characters/rupert/front.svg",
  24655. extra: 1549 / 1495,
  24656. bottom: 54.2 / 1604.4
  24657. }
  24658. },
  24659. },
  24660. [
  24661. {
  24662. name: "Normal",
  24663. height: math.unit(5 + 1 / 12, "feet"),
  24664. default: true
  24665. },
  24666. ]
  24667. ))
  24668. characterMakers.push(() => makeCharacter(
  24669. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24670. {
  24671. front: {
  24672. height: math.unit(8 + 4 / 12, "feet"),
  24673. weight: math.unit(350, "lb"),
  24674. name: "Front",
  24675. image: {
  24676. source: "./media/characters/sheera-castellar/front.svg",
  24677. extra: 1957 / 1894,
  24678. bottom: 26.97 / 1975.017
  24679. }
  24680. },
  24681. side: {
  24682. height: math.unit(8 + 4 / 12, "feet"),
  24683. weight: math.unit(350, "lb"),
  24684. name: "Side",
  24685. image: {
  24686. source: "./media/characters/sheera-castellar/side.svg",
  24687. extra: 1957 / 1894
  24688. }
  24689. },
  24690. back: {
  24691. height: math.unit(8 + 4 / 12, "feet"),
  24692. weight: math.unit(350, "lb"),
  24693. name: "Back",
  24694. image: {
  24695. source: "./media/characters/sheera-castellar/back.svg",
  24696. extra: 1957 / 1894
  24697. }
  24698. },
  24699. angled: {
  24700. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24701. weight: math.unit(350, "lb"),
  24702. name: "Angled",
  24703. image: {
  24704. source: "./media/characters/sheera-castellar/angled.svg",
  24705. extra: 1807 / 1707,
  24706. bottom: 68 / 1875
  24707. }
  24708. },
  24709. genitals: {
  24710. height: math.unit(2.2, "feet"),
  24711. name: "Genitals",
  24712. image: {
  24713. source: "./media/characters/sheera-castellar/genitals.svg"
  24714. }
  24715. },
  24716. taur: {
  24717. height: math.unit(10 + 6/12, "feet"),
  24718. name: "Taur",
  24719. image: {
  24720. source: "./media/characters/sheera-castellar/taur.svg",
  24721. extra: 2017/1909,
  24722. bottom: 185/2202
  24723. }
  24724. },
  24725. },
  24726. [
  24727. {
  24728. name: "Normal",
  24729. height: math.unit(8 + 4 / 12, "feet")
  24730. },
  24731. {
  24732. name: "Macro",
  24733. height: math.unit(150, "feet"),
  24734. default: true
  24735. },
  24736. {
  24737. name: "Macro+",
  24738. height: math.unit(800, "feet")
  24739. },
  24740. ]
  24741. ))
  24742. characterMakers.push(() => makeCharacter(
  24743. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24744. {
  24745. front: {
  24746. height: math.unit(6, "feet"),
  24747. weight: math.unit(150, "lb"),
  24748. name: "Front",
  24749. image: {
  24750. source: "./media/characters/jaipur/front.svg",
  24751. extra: 3860 / 3731,
  24752. bottom: 287 / 4140
  24753. }
  24754. },
  24755. back: {
  24756. height: math.unit(6, "feet"),
  24757. weight: math.unit(150, "lb"),
  24758. name: "Back",
  24759. image: {
  24760. source: "./media/characters/jaipur/back.svg",
  24761. extra: 1637/1561,
  24762. bottom: 154/1791
  24763. }
  24764. },
  24765. },
  24766. [
  24767. {
  24768. name: "Normal",
  24769. height: math.unit(1.85, "meters"),
  24770. default: true
  24771. },
  24772. {
  24773. name: "Macro",
  24774. height: math.unit(150, "meters")
  24775. },
  24776. {
  24777. name: "Macro+",
  24778. height: math.unit(0.5, "miles")
  24779. },
  24780. {
  24781. name: "Macro++",
  24782. height: math.unit(2.5, "miles")
  24783. },
  24784. {
  24785. name: "Macro+++",
  24786. height: math.unit(12, "miles")
  24787. },
  24788. {
  24789. name: "Macro++++",
  24790. height: math.unit(120, "miles")
  24791. },
  24792. {
  24793. name: "Macro+++++",
  24794. height: math.unit(1200, "miles")
  24795. },
  24796. ]
  24797. ))
  24798. characterMakers.push(() => makeCharacter(
  24799. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24800. {
  24801. front: {
  24802. height: math.unit(6, "feet"),
  24803. weight: math.unit(150, "lb"),
  24804. name: "Front",
  24805. image: {
  24806. source: "./media/characters/sheila-wolf/front.svg",
  24807. extra: 1931 / 1808,
  24808. bottom: 29.5 / 1960
  24809. }
  24810. },
  24811. dick: {
  24812. height: math.unit(1.464, "feet"),
  24813. name: "Dick",
  24814. image: {
  24815. source: "./media/characters/sheila-wolf/dick.svg"
  24816. }
  24817. },
  24818. muzzle: {
  24819. height: math.unit(0.513, "feet"),
  24820. name: "Muzzle",
  24821. image: {
  24822. source: "./media/characters/sheila-wolf/muzzle.svg"
  24823. }
  24824. },
  24825. },
  24826. [
  24827. {
  24828. name: "Macro",
  24829. height: math.unit(70, "feet"),
  24830. default: true
  24831. },
  24832. ]
  24833. ))
  24834. characterMakers.push(() => makeCharacter(
  24835. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24836. {
  24837. front: {
  24838. height: math.unit(32, "meters"),
  24839. weight: math.unit(300000, "kg"),
  24840. name: "Front",
  24841. image: {
  24842. source: "./media/characters/almor/front.svg",
  24843. extra: 1408 / 1322,
  24844. bottom: 94.6 / 1506.5
  24845. }
  24846. },
  24847. },
  24848. [
  24849. {
  24850. name: "Macro",
  24851. height: math.unit(32, "meters"),
  24852. default: true
  24853. },
  24854. ]
  24855. ))
  24856. characterMakers.push(() => makeCharacter(
  24857. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24858. {
  24859. front: {
  24860. height: math.unit(7, "feet"),
  24861. weight: math.unit(200, "lb"),
  24862. name: "Front",
  24863. image: {
  24864. source: "./media/characters/silver/front.svg",
  24865. extra: 472.1 / 450.5,
  24866. bottom: 26.5 / 499.424
  24867. }
  24868. },
  24869. },
  24870. [
  24871. {
  24872. name: "Normal",
  24873. height: math.unit(7, "feet"),
  24874. default: true
  24875. },
  24876. {
  24877. name: "Macro",
  24878. height: math.unit(800, "feet")
  24879. },
  24880. {
  24881. name: "Megamacro",
  24882. height: math.unit(250, "miles")
  24883. },
  24884. ]
  24885. ))
  24886. characterMakers.push(() => makeCharacter(
  24887. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24888. {
  24889. front: {
  24890. height: math.unit(6, "feet"),
  24891. weight: math.unit(150, "lb"),
  24892. name: "Front",
  24893. image: {
  24894. source: "./media/characters/pliskin/front.svg",
  24895. extra: 1469 / 1359,
  24896. bottom: 70 / 1540
  24897. }
  24898. },
  24899. },
  24900. [
  24901. {
  24902. name: "Micro",
  24903. height: math.unit(3, "inches")
  24904. },
  24905. {
  24906. name: "Normal",
  24907. height: math.unit(5 + 11 / 12, "feet"),
  24908. default: true
  24909. },
  24910. {
  24911. name: "Macro",
  24912. height: math.unit(120, "feet")
  24913. },
  24914. ]
  24915. ))
  24916. characterMakers.push(() => makeCharacter(
  24917. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24918. {
  24919. front: {
  24920. height: math.unit(6, "feet"),
  24921. weight: math.unit(150, "lb"),
  24922. name: "Front",
  24923. image: {
  24924. source: "./media/characters/sammy/front.svg",
  24925. extra: 1193 / 1089,
  24926. bottom: 30.5 / 1226
  24927. }
  24928. },
  24929. },
  24930. [
  24931. {
  24932. name: "Macro",
  24933. height: math.unit(1700, "feet"),
  24934. default: true
  24935. },
  24936. {
  24937. name: "Examacro",
  24938. height: math.unit(2.5e9, "lightyears")
  24939. },
  24940. ]
  24941. ))
  24942. characterMakers.push(() => makeCharacter(
  24943. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24944. {
  24945. front: {
  24946. height: math.unit(21, "meters"),
  24947. weight: math.unit(12, "tonnes"),
  24948. name: "Front",
  24949. image: {
  24950. source: "./media/characters/kuru/front.svg",
  24951. extra: 4301 / 3785,
  24952. bottom: 371.3 / 4691
  24953. }
  24954. },
  24955. },
  24956. [
  24957. {
  24958. name: "Macro",
  24959. height: math.unit(21, "meters"),
  24960. default: true
  24961. },
  24962. ]
  24963. ))
  24964. characterMakers.push(() => makeCharacter(
  24965. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24966. {
  24967. front: {
  24968. height: math.unit(23, "meters"),
  24969. weight: math.unit(12.2, "tonnes"),
  24970. name: "Front",
  24971. image: {
  24972. source: "./media/characters/rakka/front.svg",
  24973. extra: 4670 / 4169,
  24974. bottom: 301 / 4968.7
  24975. }
  24976. },
  24977. },
  24978. [
  24979. {
  24980. name: "Macro",
  24981. height: math.unit(23, "meters"),
  24982. default: true
  24983. },
  24984. ]
  24985. ))
  24986. characterMakers.push(() => makeCharacter(
  24987. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24988. {
  24989. front: {
  24990. height: math.unit(6, "feet"),
  24991. weight: math.unit(150, "lb"),
  24992. name: "Front",
  24993. image: {
  24994. source: "./media/characters/rhys-feline/front.svg",
  24995. extra: 2488 / 2308,
  24996. bottom: 35.67 / 2519.19
  24997. }
  24998. },
  24999. },
  25000. [
  25001. {
  25002. name: "Really Small",
  25003. height: math.unit(1, "nm")
  25004. },
  25005. {
  25006. name: "Micro",
  25007. height: math.unit(4, "inches")
  25008. },
  25009. {
  25010. name: "Normal",
  25011. height: math.unit(4 + 10 / 12, "feet"),
  25012. default: true
  25013. },
  25014. {
  25015. name: "Macro",
  25016. height: math.unit(100, "feet")
  25017. },
  25018. {
  25019. name: "Megamacto",
  25020. height: math.unit(50, "miles")
  25021. },
  25022. ]
  25023. ))
  25024. characterMakers.push(() => makeCharacter(
  25025. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25026. {
  25027. side: {
  25028. height: math.unit(30, "feet"),
  25029. weight: math.unit(35000, "kg"),
  25030. name: "Side",
  25031. image: {
  25032. source: "./media/characters/alydar/side.svg",
  25033. extra: 234 / 222,
  25034. bottom: 6.5 / 241
  25035. }
  25036. },
  25037. front: {
  25038. height: math.unit(30, "feet"),
  25039. weight: math.unit(35000, "kg"),
  25040. name: "Front",
  25041. image: {
  25042. source: "./media/characters/alydar/front.svg",
  25043. extra: 223.37 / 210.2,
  25044. bottom: 22.3 / 246.76
  25045. }
  25046. },
  25047. top: {
  25048. height: math.unit(64.54, "feet"),
  25049. weight: math.unit(35000, "kg"),
  25050. name: "Top",
  25051. image: {
  25052. source: "./media/characters/alydar/top.svg"
  25053. }
  25054. },
  25055. anthro: {
  25056. height: math.unit(30, "feet"),
  25057. weight: math.unit(9000, "kg"),
  25058. name: "Anthro",
  25059. image: {
  25060. source: "./media/characters/alydar/anthro.svg",
  25061. extra: 432 / 421,
  25062. bottom: 7.18 / 440
  25063. }
  25064. },
  25065. maw: {
  25066. height: math.unit(11.693, "feet"),
  25067. name: "Maw",
  25068. image: {
  25069. source: "./media/characters/alydar/maw.svg"
  25070. }
  25071. },
  25072. head: {
  25073. height: math.unit(11.693, "feet"),
  25074. name: "Head",
  25075. image: {
  25076. source: "./media/characters/alydar/head.svg"
  25077. }
  25078. },
  25079. headAlt: {
  25080. height: math.unit(12.861, "feet"),
  25081. name: "Head (Alt)",
  25082. image: {
  25083. source: "./media/characters/alydar/head-alt.svg"
  25084. }
  25085. },
  25086. wing: {
  25087. height: math.unit(20.712, "feet"),
  25088. name: "Wing",
  25089. image: {
  25090. source: "./media/characters/alydar/wing.svg"
  25091. }
  25092. },
  25093. wingFeather: {
  25094. height: math.unit(9.662, "feet"),
  25095. name: "Wing Feather",
  25096. image: {
  25097. source: "./media/characters/alydar/wing-feather.svg"
  25098. }
  25099. },
  25100. countourFeather: {
  25101. height: math.unit(4.154, "feet"),
  25102. name: "Contour Feather",
  25103. image: {
  25104. source: "./media/characters/alydar/contour-feather.svg"
  25105. }
  25106. },
  25107. },
  25108. [
  25109. {
  25110. name: "Diplomatic",
  25111. height: math.unit(13, "feet"),
  25112. default: true
  25113. },
  25114. {
  25115. name: "Small",
  25116. height: math.unit(30, "feet")
  25117. },
  25118. {
  25119. name: "Normal",
  25120. height: math.unit(95, "feet"),
  25121. default: true
  25122. },
  25123. {
  25124. name: "Large",
  25125. height: math.unit(285, "feet")
  25126. },
  25127. {
  25128. name: "Incomprehensible",
  25129. height: math.unit(450, "megameters")
  25130. },
  25131. ]
  25132. ))
  25133. characterMakers.push(() => makeCharacter(
  25134. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25135. {
  25136. side: {
  25137. height: math.unit(11, "feet"),
  25138. weight: math.unit(1750, "kg"),
  25139. name: "Side",
  25140. image: {
  25141. source: "./media/characters/selicia/side.svg",
  25142. extra: 440 / 396,
  25143. bottom: 24.8 / 465.979
  25144. }
  25145. },
  25146. maw: {
  25147. height: math.unit(4.665, "feet"),
  25148. name: "Maw",
  25149. image: {
  25150. source: "./media/characters/selicia/maw.svg"
  25151. }
  25152. },
  25153. },
  25154. [
  25155. {
  25156. name: "Normal",
  25157. height: math.unit(11, "feet"),
  25158. default: true
  25159. },
  25160. ]
  25161. ))
  25162. characterMakers.push(() => makeCharacter(
  25163. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25164. {
  25165. side: {
  25166. height: math.unit(2 + 6 / 12, "feet"),
  25167. weight: math.unit(30, "lb"),
  25168. name: "Side",
  25169. image: {
  25170. source: "./media/characters/layla/side.svg",
  25171. extra: 244 / 188,
  25172. bottom: 18.2 / 262.1
  25173. }
  25174. },
  25175. back: {
  25176. height: math.unit(2 + 6 / 12, "feet"),
  25177. weight: math.unit(30, "lb"),
  25178. name: "Back",
  25179. image: {
  25180. source: "./media/characters/layla/back.svg",
  25181. extra: 308 / 241.5,
  25182. bottom: 8.9 / 316.8
  25183. }
  25184. },
  25185. cumming: {
  25186. height: math.unit(2 + 6 / 12, "feet"),
  25187. weight: math.unit(30, "lb"),
  25188. name: "Cumming",
  25189. image: {
  25190. source: "./media/characters/layla/cumming.svg",
  25191. extra: 342 / 279,
  25192. bottom: 595 / 938
  25193. }
  25194. },
  25195. dickFlaccid: {
  25196. height: math.unit(2.595, "feet"),
  25197. name: "Flaccid Genitals",
  25198. image: {
  25199. source: "./media/characters/layla/dick-flaccid.svg"
  25200. }
  25201. },
  25202. dickErect: {
  25203. height: math.unit(2.359, "feet"),
  25204. name: "Erect Genitals",
  25205. image: {
  25206. source: "./media/characters/layla/dick-erect.svg"
  25207. }
  25208. },
  25209. dragon: {
  25210. height: math.unit(40, "feet"),
  25211. name: "Dragon",
  25212. image: {
  25213. source: "./media/characters/layla/dragon.svg",
  25214. extra: 610/535,
  25215. bottom: 367/977
  25216. }
  25217. },
  25218. taur: {
  25219. height: math.unit(30, "feet"),
  25220. name: "Taur",
  25221. image: {
  25222. source: "./media/characters/layla/taur.svg",
  25223. extra: 1268/1199,
  25224. bottom: 112/1380
  25225. }
  25226. },
  25227. },
  25228. [
  25229. {
  25230. name: "Micro",
  25231. height: math.unit(1, "inch")
  25232. },
  25233. {
  25234. name: "Small",
  25235. height: math.unit(1, "foot")
  25236. },
  25237. {
  25238. name: "Normal",
  25239. height: math.unit(2 + 6 / 12, "feet"),
  25240. default: true
  25241. },
  25242. {
  25243. name: "Macro",
  25244. height: math.unit(200, "feet")
  25245. },
  25246. {
  25247. name: "Megamacro",
  25248. height: math.unit(1000, "miles")
  25249. },
  25250. {
  25251. name: "Planetary",
  25252. height: math.unit(8000, "miles")
  25253. },
  25254. {
  25255. name: "True Layla",
  25256. height: math.unit(200000 * 7, "multiverses")
  25257. },
  25258. ]
  25259. ))
  25260. characterMakers.push(() => makeCharacter(
  25261. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25262. {
  25263. back: {
  25264. height: math.unit(10.5, "feet"),
  25265. weight: math.unit(800, "lb"),
  25266. name: "Back",
  25267. image: {
  25268. source: "./media/characters/knox/back.svg",
  25269. extra: 1486 / 1089,
  25270. bottom: 107 / 1601.4
  25271. }
  25272. },
  25273. side: {
  25274. height: math.unit(10.5, "feet"),
  25275. weight: math.unit(800, "lb"),
  25276. name: "Side",
  25277. image: {
  25278. source: "./media/characters/knox/side.svg",
  25279. extra: 244 / 218,
  25280. bottom: 14 / 260
  25281. }
  25282. },
  25283. },
  25284. [
  25285. {
  25286. name: "Compact",
  25287. height: math.unit(10.5, "feet"),
  25288. default: true
  25289. },
  25290. {
  25291. name: "Dynamax",
  25292. height: math.unit(210, "feet")
  25293. },
  25294. {
  25295. name: "Full Macro",
  25296. height: math.unit(850, "feet")
  25297. },
  25298. ]
  25299. ))
  25300. characterMakers.push(() => makeCharacter(
  25301. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25302. {
  25303. front: {
  25304. height: math.unit(28, "feet"),
  25305. weight: math.unit(10500, "lb"),
  25306. name: "Front",
  25307. image: {
  25308. source: "./media/characters/kayda/front.svg",
  25309. extra: 1536 / 1428,
  25310. bottom: 68.7 / 1603
  25311. }
  25312. },
  25313. back: {
  25314. height: math.unit(28, "feet"),
  25315. weight: math.unit(10500, "lb"),
  25316. name: "Back",
  25317. image: {
  25318. source: "./media/characters/kayda/back.svg",
  25319. extra: 1557 / 1464,
  25320. bottom: 39.5 / 1597.49
  25321. }
  25322. },
  25323. dick: {
  25324. height: math.unit(3.858, "feet"),
  25325. name: "Dick",
  25326. image: {
  25327. source: "./media/characters/kayda/dick.svg"
  25328. }
  25329. },
  25330. },
  25331. [
  25332. {
  25333. name: "Macro",
  25334. height: math.unit(28, "feet"),
  25335. default: true
  25336. },
  25337. ]
  25338. ))
  25339. characterMakers.push(() => makeCharacter(
  25340. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25341. {
  25342. front: {
  25343. height: math.unit(10 + 11 / 12, "feet"),
  25344. weight: math.unit(1400, "lb"),
  25345. name: "Front",
  25346. image: {
  25347. source: "./media/characters/brian/front.svg",
  25348. extra: 737 / 692,
  25349. bottom: 55.4 / 785
  25350. }
  25351. },
  25352. },
  25353. [
  25354. {
  25355. name: "Normal",
  25356. height: math.unit(10 + 11 / 12, "feet"),
  25357. default: true
  25358. },
  25359. ]
  25360. ))
  25361. characterMakers.push(() => makeCharacter(
  25362. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25363. {
  25364. front: {
  25365. height: math.unit(5 + 8 / 12, "feet"),
  25366. weight: math.unit(140, "lb"),
  25367. name: "Front",
  25368. image: {
  25369. source: "./media/characters/khemri/front.svg",
  25370. extra: 4780 / 4059,
  25371. bottom: 80.1 / 4859.25
  25372. }
  25373. },
  25374. },
  25375. [
  25376. {
  25377. name: "Micro",
  25378. height: math.unit(6, "inches")
  25379. },
  25380. {
  25381. name: "Normal",
  25382. height: math.unit(5 + 8 / 12, "feet"),
  25383. default: true
  25384. },
  25385. ]
  25386. ))
  25387. characterMakers.push(() => makeCharacter(
  25388. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25389. {
  25390. front: {
  25391. height: math.unit(13, "feet"),
  25392. weight: math.unit(1700, "lb"),
  25393. name: "Front",
  25394. image: {
  25395. source: "./media/characters/felix-braveheart/front.svg",
  25396. extra: 1222 / 1157,
  25397. bottom: 53.2 / 1280
  25398. }
  25399. },
  25400. back: {
  25401. height: math.unit(13, "feet"),
  25402. weight: math.unit(1700, "lb"),
  25403. name: "Back",
  25404. image: {
  25405. source: "./media/characters/felix-braveheart/back.svg",
  25406. extra: 1277 / 1203,
  25407. bottom: 50.2 / 1327
  25408. }
  25409. },
  25410. feral: {
  25411. height: math.unit(6, "feet"),
  25412. weight: math.unit(400, "lb"),
  25413. name: "Feral",
  25414. image: {
  25415. source: "./media/characters/felix-braveheart/feral.svg",
  25416. extra: 682 / 625,
  25417. bottom: 6.9 / 688
  25418. }
  25419. },
  25420. },
  25421. [
  25422. {
  25423. name: "Normal",
  25424. height: math.unit(13, "feet"),
  25425. default: true
  25426. },
  25427. ]
  25428. ))
  25429. characterMakers.push(() => makeCharacter(
  25430. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25431. {
  25432. side: {
  25433. height: math.unit(5 + 11 / 12, "feet"),
  25434. weight: math.unit(1400, "lb"),
  25435. name: "Side",
  25436. image: {
  25437. source: "./media/characters/shadow-blade/side.svg",
  25438. extra: 1726 / 1267,
  25439. bottom: 58.4 / 1785
  25440. }
  25441. },
  25442. },
  25443. [
  25444. {
  25445. name: "Normal",
  25446. height: math.unit(5 + 11 / 12, "feet"),
  25447. default: true
  25448. },
  25449. ]
  25450. ))
  25451. characterMakers.push(() => makeCharacter(
  25452. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25453. {
  25454. front: {
  25455. height: math.unit(1 + 6 / 12, "feet"),
  25456. weight: math.unit(25, "lb"),
  25457. name: "Front",
  25458. image: {
  25459. source: "./media/characters/karla-halldor/front.svg",
  25460. extra: 1459 / 1383,
  25461. bottom: 12 / 1472
  25462. }
  25463. },
  25464. },
  25465. [
  25466. {
  25467. name: "Normal",
  25468. height: math.unit(1 + 6 / 12, "feet"),
  25469. default: true
  25470. },
  25471. ]
  25472. ))
  25473. characterMakers.push(() => makeCharacter(
  25474. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25475. {
  25476. front: {
  25477. height: math.unit(6 + 2 / 12, "feet"),
  25478. weight: math.unit(160, "lb"),
  25479. name: "Front",
  25480. image: {
  25481. source: "./media/characters/ariam/front.svg",
  25482. extra: 1073/976,
  25483. bottom: 52/1125
  25484. }
  25485. },
  25486. back: {
  25487. height: math.unit(6 + 2/12, "feet"),
  25488. weight: math.unit(160, "lb"),
  25489. name: "Back",
  25490. image: {
  25491. source: "./media/characters/ariam/back.svg",
  25492. extra: 1103/1023,
  25493. bottom: 9/1112
  25494. }
  25495. },
  25496. dressed: {
  25497. height: math.unit(6 + 2/12, "feet"),
  25498. weight: math.unit(160, "lb"),
  25499. name: "Dressed",
  25500. image: {
  25501. source: "./media/characters/ariam/dressed.svg",
  25502. extra: 1099/1009,
  25503. bottom: 25/1124
  25504. }
  25505. },
  25506. squatting: {
  25507. height: math.unit(4.1, "feet"),
  25508. weight: math.unit(160, "lb"),
  25509. name: "Squatting",
  25510. image: {
  25511. source: "./media/characters/ariam/squatting.svg",
  25512. extra: 2617 / 2112,
  25513. bottom: 61.2 / 2681,
  25514. }
  25515. },
  25516. },
  25517. [
  25518. {
  25519. name: "Normal",
  25520. height: math.unit(6 + 2 / 12, "feet"),
  25521. default: true
  25522. },
  25523. {
  25524. name: "Normal+",
  25525. height: math.unit(4, "meters")
  25526. },
  25527. {
  25528. name: "Macro",
  25529. height: math.unit(50, "meters")
  25530. },
  25531. {
  25532. name: "Macro+",
  25533. height: math.unit(100, "meters")
  25534. },
  25535. {
  25536. name: "Megamacro",
  25537. height: math.unit(20, "km")
  25538. },
  25539. {
  25540. name: "Caretaker",
  25541. height: math.unit(444, "megameters")
  25542. },
  25543. ]
  25544. ))
  25545. characterMakers.push(() => makeCharacter(
  25546. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25547. {
  25548. front: {
  25549. height: math.unit(1.67, "meters"),
  25550. weight: math.unit(140, "lb"),
  25551. name: "Front",
  25552. image: {
  25553. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25554. extra: 438 / 410,
  25555. bottom: 0.75 / 439
  25556. }
  25557. },
  25558. },
  25559. [
  25560. {
  25561. name: "Shrunken",
  25562. height: math.unit(7.6, "cm")
  25563. },
  25564. {
  25565. name: "Human Scale",
  25566. height: math.unit(1.67, "meters")
  25567. },
  25568. {
  25569. name: "Wolxi Scale",
  25570. height: math.unit(36.7, "meters"),
  25571. default: true
  25572. },
  25573. ]
  25574. ))
  25575. characterMakers.push(() => makeCharacter(
  25576. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25577. {
  25578. front: {
  25579. height: math.unit(1.73, "meters"),
  25580. weight: math.unit(240, "lb"),
  25581. name: "Front",
  25582. image: {
  25583. source: "./media/characters/izue-two-mothers/front.svg",
  25584. extra: 469 / 437,
  25585. bottom: 1.24 / 470.6
  25586. }
  25587. },
  25588. },
  25589. [
  25590. {
  25591. name: "Shrunken",
  25592. height: math.unit(7.86, "cm")
  25593. },
  25594. {
  25595. name: "Human Scale",
  25596. height: math.unit(1.73, "meters")
  25597. },
  25598. {
  25599. name: "Wolxi Scale",
  25600. height: math.unit(38, "meters"),
  25601. default: true
  25602. },
  25603. ]
  25604. ))
  25605. characterMakers.push(() => makeCharacter(
  25606. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25607. {
  25608. front: {
  25609. height: math.unit(1.55, "meters"),
  25610. weight: math.unit(120, "lb"),
  25611. name: "Front",
  25612. image: {
  25613. source: "./media/characters/teeku-love-shack/front.svg",
  25614. extra: 387 / 362,
  25615. bottom: 1.51 / 388
  25616. }
  25617. },
  25618. },
  25619. [
  25620. {
  25621. name: "Shrunken",
  25622. height: math.unit(7, "cm")
  25623. },
  25624. {
  25625. name: "Human Scale",
  25626. height: math.unit(1.55, "meters")
  25627. },
  25628. {
  25629. name: "Wolxi Scale",
  25630. height: math.unit(34.1, "meters"),
  25631. default: true
  25632. },
  25633. ]
  25634. ))
  25635. characterMakers.push(() => makeCharacter(
  25636. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25637. {
  25638. front: {
  25639. height: math.unit(1.83, "meters"),
  25640. weight: math.unit(135, "lb"),
  25641. name: "Front",
  25642. image: {
  25643. source: "./media/characters/dejma-the-red/front.svg",
  25644. extra: 480 / 458,
  25645. bottom: 1.8 / 482
  25646. }
  25647. },
  25648. },
  25649. [
  25650. {
  25651. name: "Shrunken",
  25652. height: math.unit(8.3, "cm")
  25653. },
  25654. {
  25655. name: "Human Scale",
  25656. height: math.unit(1.83, "meters")
  25657. },
  25658. {
  25659. name: "Wolxi Scale",
  25660. height: math.unit(40, "meters"),
  25661. default: true
  25662. },
  25663. ]
  25664. ))
  25665. characterMakers.push(() => makeCharacter(
  25666. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25667. {
  25668. front: {
  25669. height: math.unit(1.78, "meters"),
  25670. weight: math.unit(65, "kg"),
  25671. name: "Front",
  25672. image: {
  25673. source: "./media/characters/aki/front.svg",
  25674. extra: 452 / 415
  25675. }
  25676. },
  25677. frontNsfw: {
  25678. height: math.unit(1.78, "meters"),
  25679. weight: math.unit(65, "kg"),
  25680. name: "Front (NSFW)",
  25681. image: {
  25682. source: "./media/characters/aki/front-nsfw.svg",
  25683. extra: 452 / 415
  25684. }
  25685. },
  25686. back: {
  25687. height: math.unit(1.78, "meters"),
  25688. weight: math.unit(65, "kg"),
  25689. name: "Back",
  25690. image: {
  25691. source: "./media/characters/aki/back.svg",
  25692. extra: 452 / 415
  25693. }
  25694. },
  25695. rump: {
  25696. height: math.unit(2.05, "feet"),
  25697. name: "Rump",
  25698. image: {
  25699. source: "./media/characters/aki/rump.svg"
  25700. }
  25701. },
  25702. dick: {
  25703. height: math.unit(0.95, "feet"),
  25704. name: "Dick",
  25705. image: {
  25706. source: "./media/characters/aki/dick.svg"
  25707. }
  25708. },
  25709. },
  25710. [
  25711. {
  25712. name: "Micro",
  25713. height: math.unit(15, "cm")
  25714. },
  25715. {
  25716. name: "Normal",
  25717. height: math.unit(178, "cm"),
  25718. default: true
  25719. },
  25720. {
  25721. name: "Macro",
  25722. height: math.unit(214, "m")
  25723. },
  25724. {
  25725. name: "Macro+",
  25726. height: math.unit(534, "m")
  25727. },
  25728. ]
  25729. ))
  25730. characterMakers.push(() => makeCharacter(
  25731. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25732. {
  25733. front: {
  25734. height: math.unit(5 + 5 / 12, "feet"),
  25735. weight: math.unit(120, "lb"),
  25736. name: "Front",
  25737. image: {
  25738. source: "./media/characters/ari/front.svg",
  25739. extra: 1550/1471,
  25740. bottom: 39/1589
  25741. }
  25742. },
  25743. },
  25744. [
  25745. {
  25746. name: "Normal",
  25747. height: math.unit(5 + 5 / 12, "feet")
  25748. },
  25749. {
  25750. name: "Macro",
  25751. height: math.unit(100, "feet"),
  25752. default: true
  25753. },
  25754. {
  25755. name: "Megamacro",
  25756. height: math.unit(100, "miles")
  25757. },
  25758. {
  25759. name: "Gigamacro",
  25760. height: math.unit(80000, "miles")
  25761. },
  25762. ]
  25763. ))
  25764. characterMakers.push(() => makeCharacter(
  25765. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25766. {
  25767. side: {
  25768. height: math.unit(9, "feet"),
  25769. weight: math.unit(400, "kg"),
  25770. name: "Side",
  25771. image: {
  25772. source: "./media/characters/bolt/side.svg",
  25773. extra: 1126 / 896,
  25774. bottom: 60 / 1187.3,
  25775. }
  25776. },
  25777. },
  25778. [
  25779. {
  25780. name: "Micro",
  25781. height: math.unit(5, "inches")
  25782. },
  25783. {
  25784. name: "Normal",
  25785. height: math.unit(9, "feet"),
  25786. default: true
  25787. },
  25788. {
  25789. name: "Macro",
  25790. height: math.unit(700, "feet")
  25791. },
  25792. {
  25793. name: "Max Size",
  25794. height: math.unit(1.52e22, "yottameters")
  25795. },
  25796. ]
  25797. ))
  25798. characterMakers.push(() => makeCharacter(
  25799. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25800. {
  25801. front: {
  25802. height: math.unit(4.3, "meters"),
  25803. weight: math.unit(3, "tons"),
  25804. name: "Front",
  25805. image: {
  25806. source: "./media/characters/draekon-sylviar/front.svg",
  25807. extra: 2072/1512,
  25808. bottom: 74/2146
  25809. }
  25810. },
  25811. back: {
  25812. height: math.unit(4.3, "meters"),
  25813. weight: math.unit(3, "tons"),
  25814. name: "Back",
  25815. image: {
  25816. source: "./media/characters/draekon-sylviar/back.svg",
  25817. extra: 1639/1483,
  25818. bottom: 41/1680
  25819. }
  25820. },
  25821. feral: {
  25822. height: math.unit(1.15, "meters"),
  25823. weight: math.unit(3, "tons"),
  25824. name: "Feral",
  25825. image: {
  25826. source: "./media/characters/draekon-sylviar/feral.svg",
  25827. extra: 1033/395,
  25828. bottom: 130/1163
  25829. }
  25830. },
  25831. maw: {
  25832. height: math.unit(1.3, "meters"),
  25833. name: "Maw",
  25834. image: {
  25835. source: "./media/characters/draekon-sylviar/maw.svg"
  25836. }
  25837. },
  25838. mawSeparated: {
  25839. height: math.unit(1.53, "meters"),
  25840. name: "Separated Maw",
  25841. image: {
  25842. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25843. }
  25844. },
  25845. tail: {
  25846. height: math.unit(1.15, "meters"),
  25847. name: "Tail",
  25848. image: {
  25849. source: "./media/characters/draekon-sylviar/tail.svg"
  25850. }
  25851. },
  25852. tailDick: {
  25853. height: math.unit(1.15, "meters"),
  25854. name: "Tail (Dick)",
  25855. image: {
  25856. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25857. }
  25858. },
  25859. tailDickSeparated: {
  25860. height: math.unit(1.19, "meters"),
  25861. name: "Tail (Separated Dick)",
  25862. image: {
  25863. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25864. }
  25865. },
  25866. slit: {
  25867. height: math.unit(1, "meters"),
  25868. name: "Slit",
  25869. image: {
  25870. source: "./media/characters/draekon-sylviar/slit.svg"
  25871. }
  25872. },
  25873. dick: {
  25874. height: math.unit(1.15, "meters"),
  25875. name: "Dick",
  25876. image: {
  25877. source: "./media/characters/draekon-sylviar/dick.svg"
  25878. }
  25879. },
  25880. dickSeparated: {
  25881. height: math.unit(1.1, "meters"),
  25882. name: "Separated Dick",
  25883. image: {
  25884. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25885. }
  25886. },
  25887. sheath: {
  25888. height: math.unit(1.15, "meters"),
  25889. name: "Sheath",
  25890. image: {
  25891. source: "./media/characters/draekon-sylviar/sheath.svg"
  25892. }
  25893. },
  25894. },
  25895. [
  25896. {
  25897. name: "Small",
  25898. height: math.unit(4.53 / 2, "meters"),
  25899. default: true
  25900. },
  25901. {
  25902. name: "Normal",
  25903. height: math.unit(4.53, "meters"),
  25904. default: true
  25905. },
  25906. {
  25907. name: "Large",
  25908. height: math.unit(4.53 * 2, "meters"),
  25909. },
  25910. ]
  25911. ))
  25912. characterMakers.push(() => makeCharacter(
  25913. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25914. {
  25915. front: {
  25916. height: math.unit(6 + 2 / 12, "feet"),
  25917. weight: math.unit(180, "lb"),
  25918. name: "Front",
  25919. image: {
  25920. source: "./media/characters/brawler/front.svg",
  25921. extra: 3301 / 3027,
  25922. bottom: 138 / 3439
  25923. }
  25924. },
  25925. },
  25926. [
  25927. {
  25928. name: "Normal",
  25929. height: math.unit(6 + 2 / 12, "feet"),
  25930. default: true
  25931. },
  25932. ]
  25933. ))
  25934. characterMakers.push(() => makeCharacter(
  25935. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25936. {
  25937. front: {
  25938. height: math.unit(11, "feet"),
  25939. weight: math.unit(1000, "lb"),
  25940. name: "Front",
  25941. image: {
  25942. source: "./media/characters/alex/front.svg",
  25943. bottom: 44.5 / 620
  25944. }
  25945. },
  25946. },
  25947. [
  25948. {
  25949. name: "Micro",
  25950. height: math.unit(5, "inches")
  25951. },
  25952. {
  25953. name: "Normal",
  25954. height: math.unit(11, "feet"),
  25955. default: true
  25956. },
  25957. {
  25958. name: "Macro",
  25959. height: math.unit(9.5e9, "feet")
  25960. },
  25961. {
  25962. name: "Max Size",
  25963. height: math.unit(1.4e283, "yottameters")
  25964. },
  25965. ]
  25966. ))
  25967. characterMakers.push(() => makeCharacter(
  25968. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25969. {
  25970. female: {
  25971. height: math.unit(29.9, "m"),
  25972. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25973. name: "Female",
  25974. image: {
  25975. source: "./media/characters/zenari/female.svg",
  25976. extra: 3281.6 / 3217,
  25977. bottom: 72.2 / 3353
  25978. }
  25979. },
  25980. male: {
  25981. height: math.unit(27.7, "m"),
  25982. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25983. name: "Male",
  25984. image: {
  25985. source: "./media/characters/zenari/male.svg",
  25986. extra: 3008 / 2991,
  25987. bottom: 54.6 / 3069
  25988. }
  25989. },
  25990. },
  25991. [
  25992. {
  25993. name: "Macro",
  25994. height: math.unit(29.7, "meters"),
  25995. default: true
  25996. },
  25997. ]
  25998. ))
  25999. characterMakers.push(() => makeCharacter(
  26000. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26001. {
  26002. female: {
  26003. height: math.unit(23.8, "m"),
  26004. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26005. name: "Female",
  26006. image: {
  26007. source: "./media/characters/mactarian/female.svg",
  26008. extra: 2662 / 2569,
  26009. bottom: 73 / 2736
  26010. }
  26011. },
  26012. male: {
  26013. height: math.unit(23.8, "m"),
  26014. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26015. name: "Male",
  26016. image: {
  26017. source: "./media/characters/mactarian/male.svg",
  26018. extra: 2673 / 2600,
  26019. bottom: 76 / 2750
  26020. }
  26021. },
  26022. },
  26023. [
  26024. {
  26025. name: "Macro",
  26026. height: math.unit(23.8, "meters"),
  26027. default: true
  26028. },
  26029. ]
  26030. ))
  26031. characterMakers.push(() => makeCharacter(
  26032. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26033. {
  26034. female: {
  26035. height: math.unit(19.3, "m"),
  26036. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26037. name: "Female",
  26038. image: {
  26039. source: "./media/characters/umok/female.svg",
  26040. extra: 2186 / 2078,
  26041. bottom: 87 / 2277
  26042. }
  26043. },
  26044. male: {
  26045. height: math.unit(19.5, "m"),
  26046. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26047. name: "Male",
  26048. image: {
  26049. source: "./media/characters/umok/male.svg",
  26050. extra: 2233 / 2140,
  26051. bottom: 24.4 / 2258
  26052. }
  26053. },
  26054. },
  26055. [
  26056. {
  26057. name: "Macro",
  26058. height: math.unit(19.3, "meters"),
  26059. default: true
  26060. },
  26061. ]
  26062. ))
  26063. characterMakers.push(() => makeCharacter(
  26064. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26065. {
  26066. female: {
  26067. height: math.unit(26.15, "m"),
  26068. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26069. name: "Female",
  26070. image: {
  26071. source: "./media/characters/joraxian/female.svg",
  26072. extra: 2912 / 2824,
  26073. bottom: 36 / 2956
  26074. }
  26075. },
  26076. male: {
  26077. height: math.unit(25.4, "m"),
  26078. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26079. name: "Male",
  26080. image: {
  26081. source: "./media/characters/joraxian/male.svg",
  26082. extra: 2877 / 2721,
  26083. bottom: 82 / 2967
  26084. }
  26085. },
  26086. },
  26087. [
  26088. {
  26089. name: "Macro",
  26090. height: math.unit(26.15, "meters"),
  26091. default: true
  26092. },
  26093. ]
  26094. ))
  26095. characterMakers.push(() => makeCharacter(
  26096. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26097. {
  26098. female: {
  26099. height: math.unit(21.6, "m"),
  26100. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26101. name: "Female",
  26102. image: {
  26103. source: "./media/characters/sthara/female.svg",
  26104. extra: 2516 / 2347,
  26105. bottom: 21.5 / 2537
  26106. }
  26107. },
  26108. male: {
  26109. height: math.unit(24, "m"),
  26110. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26111. name: "Male",
  26112. image: {
  26113. source: "./media/characters/sthara/male.svg",
  26114. extra: 2732 / 2607,
  26115. bottom: 23 / 2732
  26116. }
  26117. },
  26118. },
  26119. [
  26120. {
  26121. name: "Macro",
  26122. height: math.unit(21.6, "meters"),
  26123. default: true
  26124. },
  26125. ]
  26126. ))
  26127. characterMakers.push(() => makeCharacter(
  26128. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26129. {
  26130. front: {
  26131. height: math.unit(6 + 4 / 12, "feet"),
  26132. weight: math.unit(175, "lb"),
  26133. name: "Front",
  26134. image: {
  26135. source: "./media/characters/luka-bryzant/front.svg",
  26136. extra: 311 / 289,
  26137. bottom: 4 / 315
  26138. }
  26139. },
  26140. back: {
  26141. height: math.unit(6 + 4 / 12, "feet"),
  26142. weight: math.unit(175, "lb"),
  26143. name: "Back",
  26144. image: {
  26145. source: "./media/characters/luka-bryzant/back.svg",
  26146. extra: 311 / 289,
  26147. bottom: 3.8 / 313.7
  26148. }
  26149. },
  26150. },
  26151. [
  26152. {
  26153. name: "Micro",
  26154. height: math.unit(10, "inches")
  26155. },
  26156. {
  26157. name: "Normal",
  26158. height: math.unit(6 + 4 / 12, "feet"),
  26159. default: true
  26160. },
  26161. {
  26162. name: "Large",
  26163. height: math.unit(12, "feet")
  26164. },
  26165. ]
  26166. ))
  26167. characterMakers.push(() => makeCharacter(
  26168. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26169. {
  26170. front: {
  26171. height: math.unit(5 + 7 / 12, "feet"),
  26172. weight: math.unit(185, "lb"),
  26173. name: "Front",
  26174. image: {
  26175. source: "./media/characters/aman-aquila/front.svg",
  26176. extra: 1013 / 976,
  26177. bottom: 45.6 / 1057
  26178. }
  26179. },
  26180. side: {
  26181. height: math.unit(5 + 7 / 12, "feet"),
  26182. weight: math.unit(185, "lb"),
  26183. name: "Side",
  26184. image: {
  26185. source: "./media/characters/aman-aquila/side.svg",
  26186. extra: 1054 / 1011,
  26187. bottom: 15 / 1070
  26188. }
  26189. },
  26190. back: {
  26191. height: math.unit(5 + 7 / 12, "feet"),
  26192. weight: math.unit(185, "lb"),
  26193. name: "Back",
  26194. image: {
  26195. source: "./media/characters/aman-aquila/back.svg",
  26196. extra: 1026 / 970,
  26197. bottom: 12 / 1039
  26198. }
  26199. },
  26200. head: {
  26201. height: math.unit(1.211, "feet"),
  26202. name: "Head",
  26203. image: {
  26204. source: "./media/characters/aman-aquila/head.svg",
  26205. }
  26206. },
  26207. },
  26208. [
  26209. {
  26210. name: "Minimicro",
  26211. height: math.unit(0.057, "inches")
  26212. },
  26213. {
  26214. name: "Micro",
  26215. height: math.unit(7, "inches")
  26216. },
  26217. {
  26218. name: "Mini",
  26219. height: math.unit(3 + 7 / 12, "feet")
  26220. },
  26221. {
  26222. name: "Normal",
  26223. height: math.unit(5 + 7 / 12, "feet"),
  26224. default: true
  26225. },
  26226. {
  26227. name: "Macro",
  26228. height: math.unit(157 + 7 / 12, "feet")
  26229. },
  26230. {
  26231. name: "Megamacro",
  26232. height: math.unit(1557 + 7 / 12, "feet")
  26233. },
  26234. {
  26235. name: "Gigamacro",
  26236. height: math.unit(15557 + 7 / 12, "feet")
  26237. },
  26238. ]
  26239. ))
  26240. characterMakers.push(() => makeCharacter(
  26241. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26242. {
  26243. front: {
  26244. height: math.unit(3 + 2 / 12, "inches"),
  26245. weight: math.unit(0.3, "ounces"),
  26246. name: "Front",
  26247. image: {
  26248. source: "./media/characters/hiphae/front.svg",
  26249. extra: 1931 / 1683,
  26250. bottom: 24 / 1955
  26251. }
  26252. },
  26253. },
  26254. [
  26255. {
  26256. name: "Normal",
  26257. height: math.unit(3 + 1 / 2, "inches"),
  26258. default: true
  26259. },
  26260. ]
  26261. ))
  26262. characterMakers.push(() => makeCharacter(
  26263. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26264. {
  26265. front: {
  26266. height: math.unit(5 + 10 / 12, "feet"),
  26267. weight: math.unit(165, "lb"),
  26268. name: "Front",
  26269. image: {
  26270. source: "./media/characters/nicky/front.svg",
  26271. extra: 3144 / 2886,
  26272. bottom: 45.6 / 3192
  26273. }
  26274. },
  26275. back: {
  26276. height: math.unit(5 + 10 / 12, "feet"),
  26277. weight: math.unit(165, "lb"),
  26278. name: "Back",
  26279. image: {
  26280. source: "./media/characters/nicky/back.svg",
  26281. extra: 3055 / 2804,
  26282. bottom: 28.4 / 3087
  26283. }
  26284. },
  26285. frontclothed: {
  26286. height: math.unit(5 + 10 / 12, "feet"),
  26287. weight: math.unit(165, "lb"),
  26288. name: "Front-clothed",
  26289. image: {
  26290. source: "./media/characters/nicky/front-clothed.svg",
  26291. extra: 3184.9 / 2926.9,
  26292. bottom: 86.5 / 3239.9
  26293. }
  26294. },
  26295. foot: {
  26296. height: math.unit(1.16, "feet"),
  26297. name: "Foot",
  26298. image: {
  26299. source: "./media/characters/nicky/foot.svg"
  26300. }
  26301. },
  26302. feet: {
  26303. height: math.unit(1.34, "feet"),
  26304. name: "Feet",
  26305. image: {
  26306. source: "./media/characters/nicky/feet.svg"
  26307. }
  26308. },
  26309. maw: {
  26310. height: math.unit(0.9, "feet"),
  26311. name: "Maw",
  26312. image: {
  26313. source: "./media/characters/nicky/maw.svg"
  26314. }
  26315. },
  26316. },
  26317. [
  26318. {
  26319. name: "Normal",
  26320. height: math.unit(5 + 10 / 12, "feet"),
  26321. default: true
  26322. },
  26323. {
  26324. name: "Macro",
  26325. height: math.unit(60, "feet")
  26326. },
  26327. {
  26328. name: "Megamacro",
  26329. height: math.unit(1, "mile")
  26330. },
  26331. ]
  26332. ))
  26333. characterMakers.push(() => makeCharacter(
  26334. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26335. {
  26336. side: {
  26337. height: math.unit(10, "feet"),
  26338. weight: math.unit(600, "lb"),
  26339. name: "Side",
  26340. image: {
  26341. source: "./media/characters/blair/side.svg",
  26342. bottom: 16.6 / 475,
  26343. extra: 458 / 431
  26344. }
  26345. },
  26346. },
  26347. [
  26348. {
  26349. name: "Micro",
  26350. height: math.unit(8, "inches")
  26351. },
  26352. {
  26353. name: "Normal",
  26354. height: math.unit(10, "feet"),
  26355. default: true
  26356. },
  26357. {
  26358. name: "Macro",
  26359. height: math.unit(180, "feet")
  26360. },
  26361. ]
  26362. ))
  26363. characterMakers.push(() => makeCharacter(
  26364. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26365. {
  26366. front: {
  26367. height: math.unit(5 + 4 / 12, "feet"),
  26368. weight: math.unit(125, "lb"),
  26369. name: "Front",
  26370. image: {
  26371. source: "./media/characters/fisher/front.svg",
  26372. extra: 444 / 390,
  26373. bottom: 2 / 444.8
  26374. }
  26375. },
  26376. },
  26377. [
  26378. {
  26379. name: "Micro",
  26380. height: math.unit(4, "inches")
  26381. },
  26382. {
  26383. name: "Normal",
  26384. height: math.unit(5 + 4 / 12, "feet"),
  26385. default: true
  26386. },
  26387. {
  26388. name: "Macro",
  26389. height: math.unit(100, "feet")
  26390. },
  26391. ]
  26392. ))
  26393. characterMakers.push(() => makeCharacter(
  26394. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26395. {
  26396. front: {
  26397. height: math.unit(6.71, "feet"),
  26398. weight: math.unit(200, "lb"),
  26399. preyCapacity: math.unit(1000000, "people"),
  26400. name: "Front",
  26401. image: {
  26402. source: "./media/characters/gliss/front.svg",
  26403. extra: 2347 / 2231,
  26404. bottom: 113 / 2462
  26405. }
  26406. },
  26407. hammerspaceSize: {
  26408. height: math.unit(6.71 * 717, "feet"),
  26409. weight: math.unit(200, "lb"),
  26410. preyCapacity: math.unit(1000000, "people"),
  26411. name: "Hammerspace Size",
  26412. image: {
  26413. source: "./media/characters/gliss/front.svg",
  26414. extra: 2347 / 2231,
  26415. bottom: 113 / 2462
  26416. }
  26417. },
  26418. },
  26419. [
  26420. {
  26421. name: "Normal",
  26422. height: math.unit(6.71, "feet"),
  26423. default: true
  26424. },
  26425. ]
  26426. ))
  26427. characterMakers.push(() => makeCharacter(
  26428. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26429. {
  26430. side: {
  26431. height: math.unit(1.44, "m"),
  26432. weight: math.unit(80, "kg"),
  26433. name: "Side",
  26434. image: {
  26435. source: "./media/characters/dune-anderson/side.svg",
  26436. bottom: 49 / 1426
  26437. }
  26438. },
  26439. },
  26440. [
  26441. {
  26442. name: "Wolf-sized",
  26443. height: math.unit(1.44, "meters")
  26444. },
  26445. {
  26446. name: "Normal",
  26447. height: math.unit(5.05, "meters"),
  26448. default: true
  26449. },
  26450. {
  26451. name: "Big",
  26452. height: math.unit(14.4, "meters")
  26453. },
  26454. {
  26455. name: "Huge",
  26456. height: math.unit(144, "meters")
  26457. },
  26458. ]
  26459. ))
  26460. characterMakers.push(() => makeCharacter(
  26461. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26462. {
  26463. front: {
  26464. height: math.unit(7, "feet"),
  26465. weight: math.unit(425, "lb"),
  26466. name: "Front",
  26467. image: {
  26468. source: "./media/characters/hind/front.svg",
  26469. extra: 2091 / 1860,
  26470. bottom: 129 / 2220
  26471. }
  26472. },
  26473. back: {
  26474. height: math.unit(7, "feet"),
  26475. weight: math.unit(425, "lb"),
  26476. name: "Back",
  26477. image: {
  26478. source: "./media/characters/hind/back.svg",
  26479. extra: 2091 / 1860,
  26480. bottom: 24.6 / 2309
  26481. }
  26482. },
  26483. tail: {
  26484. height: math.unit(2.8, "feet"),
  26485. name: "Tail",
  26486. image: {
  26487. source: "./media/characters/hind/tail.svg"
  26488. }
  26489. },
  26490. head: {
  26491. height: math.unit(2.55, "feet"),
  26492. name: "Head",
  26493. image: {
  26494. source: "./media/characters/hind/head.svg"
  26495. }
  26496. },
  26497. },
  26498. [
  26499. {
  26500. name: "XS",
  26501. height: math.unit(0.7, "feet")
  26502. },
  26503. {
  26504. name: "Normal",
  26505. height: math.unit(7, "feet"),
  26506. default: true
  26507. },
  26508. {
  26509. name: "XL",
  26510. height: math.unit(70, "feet")
  26511. },
  26512. ]
  26513. ))
  26514. characterMakers.push(() => makeCharacter(
  26515. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26516. {
  26517. front: {
  26518. height: math.unit(2.1, "meters"),
  26519. weight: math.unit(150, "lb"),
  26520. name: "Front",
  26521. image: {
  26522. source: "./media/characters/tharquench-sizestealer/front.svg",
  26523. extra: 1605/1470,
  26524. bottom: 36/1641
  26525. }
  26526. },
  26527. frontAlt: {
  26528. height: math.unit(2.1, "meters"),
  26529. weight: math.unit(150, "lb"),
  26530. name: "Front (Alt)",
  26531. image: {
  26532. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26533. extra: 2318 / 2063,
  26534. bottom: 93.4 / 2410
  26535. }
  26536. },
  26537. },
  26538. [
  26539. {
  26540. name: "Nano",
  26541. height: math.unit(1, "mm")
  26542. },
  26543. {
  26544. name: "Micro",
  26545. height: math.unit(1, "cm")
  26546. },
  26547. {
  26548. name: "Normal",
  26549. height: math.unit(2.1, "meters"),
  26550. default: true
  26551. },
  26552. ]
  26553. ))
  26554. characterMakers.push(() => makeCharacter(
  26555. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26556. {
  26557. front: {
  26558. height: math.unit(7 + 5 / 12, "feet"),
  26559. weight: math.unit(357, "lb"),
  26560. name: "Front",
  26561. image: {
  26562. source: "./media/characters/solex-draconov/front.svg",
  26563. extra: 1993 / 1865,
  26564. bottom: 117 / 2111
  26565. }
  26566. },
  26567. },
  26568. [
  26569. {
  26570. name: "Natural Height",
  26571. height: math.unit(7 + 5 / 12, "feet"),
  26572. default: true
  26573. },
  26574. {
  26575. name: "Macro",
  26576. height: math.unit(350, "feet")
  26577. },
  26578. {
  26579. name: "Macro+",
  26580. height: math.unit(1000, "feet")
  26581. },
  26582. {
  26583. name: "Megamacro",
  26584. height: math.unit(20, "km")
  26585. },
  26586. {
  26587. name: "Megamacro+",
  26588. height: math.unit(1000, "km")
  26589. },
  26590. {
  26591. name: "Gigamacro",
  26592. height: math.unit(2.5, "Gm")
  26593. },
  26594. {
  26595. name: "Teramacro",
  26596. height: math.unit(15, "Tm")
  26597. },
  26598. {
  26599. name: "Galactic",
  26600. height: math.unit(30, "Zm")
  26601. },
  26602. {
  26603. name: "Universal",
  26604. height: math.unit(21000, "Ym")
  26605. },
  26606. {
  26607. name: "Omniversal",
  26608. height: math.unit(9.861e50, "Ym")
  26609. },
  26610. {
  26611. name: "Existential",
  26612. height: math.unit(1e300, "meters")
  26613. },
  26614. ]
  26615. ))
  26616. characterMakers.push(() => makeCharacter(
  26617. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26618. {
  26619. side: {
  26620. height: math.unit(25, "feet"),
  26621. weight: math.unit(90000, "lb"),
  26622. name: "Side",
  26623. image: {
  26624. source: "./media/characters/mandarax/side.svg",
  26625. extra: 614 / 332,
  26626. bottom: 55 / 630
  26627. }
  26628. },
  26629. lounging: {
  26630. height: math.unit(15.4, "feet"),
  26631. weight: math.unit(90000, "lb"),
  26632. name: "Lounging",
  26633. image: {
  26634. source: "./media/characters/mandarax/lounging.svg",
  26635. extra: 817/609,
  26636. bottom: 685/1502
  26637. }
  26638. },
  26639. head: {
  26640. height: math.unit(11.4, "feet"),
  26641. name: "Head",
  26642. image: {
  26643. source: "./media/characters/mandarax/head.svg"
  26644. }
  26645. },
  26646. belly: {
  26647. height: math.unit(33, "feet"),
  26648. name: "Belly",
  26649. preyCapacity: math.unit(500, "people"),
  26650. image: {
  26651. source: "./media/characters/mandarax/belly.svg"
  26652. }
  26653. },
  26654. dick: {
  26655. height: math.unit(8.46, "feet"),
  26656. name: "Dick",
  26657. image: {
  26658. source: "./media/characters/mandarax/dick.svg"
  26659. }
  26660. },
  26661. top: {
  26662. height: math.unit(28, "meters"),
  26663. name: "Top",
  26664. image: {
  26665. source: "./media/characters/mandarax/top.svg"
  26666. }
  26667. },
  26668. },
  26669. [
  26670. {
  26671. name: "Normal",
  26672. height: math.unit(25, "feet"),
  26673. default: true
  26674. },
  26675. ]
  26676. ))
  26677. characterMakers.push(() => makeCharacter(
  26678. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26679. {
  26680. front: {
  26681. height: math.unit(5, "feet"),
  26682. weight: math.unit(90, "lb"),
  26683. name: "Front",
  26684. image: {
  26685. source: "./media/characters/pixil/front.svg",
  26686. extra: 2000 / 1618,
  26687. bottom: 12.3 / 2011
  26688. }
  26689. },
  26690. },
  26691. [
  26692. {
  26693. name: "Normal",
  26694. height: math.unit(5, "feet"),
  26695. default: true
  26696. },
  26697. {
  26698. name: "Megamacro",
  26699. height: math.unit(10, "miles"),
  26700. },
  26701. ]
  26702. ))
  26703. characterMakers.push(() => makeCharacter(
  26704. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26705. {
  26706. front: {
  26707. height: math.unit(7 + 2 / 12, "feet"),
  26708. weight: math.unit(200, "lb"),
  26709. name: "Front",
  26710. image: {
  26711. source: "./media/characters/angel/front.svg",
  26712. extra: 1830 / 1737,
  26713. bottom: 22.6 / 1854,
  26714. }
  26715. },
  26716. },
  26717. [
  26718. {
  26719. name: "Normal",
  26720. height: math.unit(7 + 2 / 12, "feet"),
  26721. default: true
  26722. },
  26723. {
  26724. name: "Macro",
  26725. height: math.unit(1000, "feet")
  26726. },
  26727. {
  26728. name: "Megamacro",
  26729. height: math.unit(2, "miles")
  26730. },
  26731. {
  26732. name: "Gigamacro",
  26733. height: math.unit(20, "earths")
  26734. },
  26735. ]
  26736. ))
  26737. characterMakers.push(() => makeCharacter(
  26738. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26739. {
  26740. front: {
  26741. height: math.unit(5, "feet"),
  26742. weight: math.unit(180, "lb"),
  26743. name: "Front",
  26744. image: {
  26745. source: "./media/characters/mekana/front.svg",
  26746. extra: 1671 / 1605,
  26747. bottom: 3.5 / 1691
  26748. }
  26749. },
  26750. side: {
  26751. height: math.unit(5, "feet"),
  26752. weight: math.unit(180, "lb"),
  26753. name: "Side",
  26754. image: {
  26755. source: "./media/characters/mekana/side.svg",
  26756. extra: 1671 / 1605,
  26757. bottom: 3.5 / 1691
  26758. }
  26759. },
  26760. back: {
  26761. height: math.unit(5, "feet"),
  26762. weight: math.unit(180, "lb"),
  26763. name: "Back",
  26764. image: {
  26765. source: "./media/characters/mekana/back.svg",
  26766. extra: 1671 / 1605,
  26767. bottom: 3.5 / 1691
  26768. }
  26769. },
  26770. },
  26771. [
  26772. {
  26773. name: "Normal",
  26774. height: math.unit(5, "feet"),
  26775. default: true
  26776. },
  26777. ]
  26778. ))
  26779. characterMakers.push(() => makeCharacter(
  26780. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26781. {
  26782. front: {
  26783. height: math.unit(4 + 6 / 12, "feet"),
  26784. weight: math.unit(80, "lb"),
  26785. name: "Front",
  26786. image: {
  26787. source: "./media/characters/pixie/front.svg",
  26788. extra: 1924 / 1825,
  26789. bottom: 22.4 / 1946
  26790. }
  26791. },
  26792. },
  26793. [
  26794. {
  26795. name: "Normal",
  26796. height: math.unit(4 + 6 / 12, "feet"),
  26797. default: true
  26798. },
  26799. {
  26800. name: "Macro",
  26801. height: math.unit(40, "feet")
  26802. },
  26803. ]
  26804. ))
  26805. characterMakers.push(() => makeCharacter(
  26806. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26807. {
  26808. front: {
  26809. height: math.unit(2.1, "meters"),
  26810. weight: math.unit(200, "lb"),
  26811. name: "Front",
  26812. image: {
  26813. source: "./media/characters/the-lascivious/front.svg",
  26814. extra: 1 / 0.893,
  26815. bottom: 3.5 / 573.7
  26816. }
  26817. },
  26818. },
  26819. [
  26820. {
  26821. name: "Human Scale",
  26822. height: math.unit(2.1, "meters")
  26823. },
  26824. {
  26825. name: "Wolxi Scale",
  26826. height: math.unit(46.2, "m"),
  26827. default: true
  26828. },
  26829. {
  26830. name: "Boinker of Buildings",
  26831. height: math.unit(10, "km")
  26832. },
  26833. {
  26834. name: "Shagger of Skyscrapers",
  26835. height: math.unit(40, "km")
  26836. },
  26837. {
  26838. name: "Banger of Boroughs",
  26839. height: math.unit(4000, "km")
  26840. },
  26841. {
  26842. name: "Screwer of States",
  26843. height: math.unit(100000, "km")
  26844. },
  26845. {
  26846. name: "Pounder of Planets",
  26847. height: math.unit(2000000, "km")
  26848. },
  26849. ]
  26850. ))
  26851. characterMakers.push(() => makeCharacter(
  26852. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26853. {
  26854. front: {
  26855. height: math.unit(6, "feet"),
  26856. weight: math.unit(150, "lb"),
  26857. name: "Front",
  26858. image: {
  26859. source: "./media/characters/aj/front.svg",
  26860. extra: 2039 / 1562,
  26861. bottom: 40 / 2079
  26862. }
  26863. },
  26864. },
  26865. [
  26866. {
  26867. name: "Normal",
  26868. height: math.unit(11 + 6 / 12, "feet"),
  26869. default: true
  26870. },
  26871. {
  26872. name: "Megamacro",
  26873. height: math.unit(60, "megameters")
  26874. },
  26875. ]
  26876. ))
  26877. characterMakers.push(() => makeCharacter(
  26878. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26879. {
  26880. side: {
  26881. height: math.unit(31 + 8 / 12, "feet"),
  26882. weight: math.unit(75000, "kg"),
  26883. name: "Side",
  26884. image: {
  26885. source: "./media/characters/koros/side.svg",
  26886. extra: 1442 / 1297,
  26887. bottom: 122.7 / 1562
  26888. }
  26889. },
  26890. dicksKingsCrown: {
  26891. height: math.unit(6, "feet"),
  26892. name: "Dicks (King's Crown)",
  26893. image: {
  26894. source: "./media/characters/koros/dicks-kings-crown.svg"
  26895. }
  26896. },
  26897. dicksTailSet: {
  26898. height: math.unit(3, "feet"),
  26899. name: "Dicks (Tail Set)",
  26900. image: {
  26901. source: "./media/characters/koros/dicks-tail-set.svg"
  26902. }
  26903. },
  26904. dickCumming: {
  26905. height: math.unit(7.98, "feet"),
  26906. name: "Dick (Cumming)",
  26907. image: {
  26908. source: "./media/characters/koros/dick-cumming.svg"
  26909. }
  26910. },
  26911. dicksBack: {
  26912. height: math.unit(5.9, "feet"),
  26913. name: "Dicks (Back)",
  26914. image: {
  26915. source: "./media/characters/koros/dicks-back.svg"
  26916. }
  26917. },
  26918. dicksFront: {
  26919. height: math.unit(3.72, "feet"),
  26920. name: "Dicks (Front)",
  26921. image: {
  26922. source: "./media/characters/koros/dicks-front.svg"
  26923. }
  26924. },
  26925. dicksPeeking: {
  26926. height: math.unit(3.0, "feet"),
  26927. name: "Dicks (Peeking)",
  26928. image: {
  26929. source: "./media/characters/koros/dicks-peeking.svg"
  26930. }
  26931. },
  26932. eye: {
  26933. height: math.unit(1.7, "feet"),
  26934. name: "Eye",
  26935. image: {
  26936. source: "./media/characters/koros/eye.svg"
  26937. }
  26938. },
  26939. headFront: {
  26940. height: math.unit(11.69, "feet"),
  26941. name: "Head (Front)",
  26942. image: {
  26943. source: "./media/characters/koros/head-front.svg"
  26944. }
  26945. },
  26946. headSide: {
  26947. height: math.unit(14, "feet"),
  26948. name: "Head (Side)",
  26949. image: {
  26950. source: "./media/characters/koros/head-side.svg"
  26951. }
  26952. },
  26953. leg: {
  26954. height: math.unit(17, "feet"),
  26955. name: "Leg",
  26956. image: {
  26957. source: "./media/characters/koros/leg.svg"
  26958. }
  26959. },
  26960. mawSide: {
  26961. height: math.unit(12.8, "feet"),
  26962. name: "Maw (Side)",
  26963. image: {
  26964. source: "./media/characters/koros/maw-side.svg"
  26965. }
  26966. },
  26967. mawSpitting: {
  26968. height: math.unit(17, "feet"),
  26969. name: "Maw (Spitting)",
  26970. image: {
  26971. source: "./media/characters/koros/maw-spitting.svg"
  26972. }
  26973. },
  26974. slit: {
  26975. height: math.unit(2.8, "feet"),
  26976. name: "Slit",
  26977. image: {
  26978. source: "./media/characters/koros/slit.svg"
  26979. }
  26980. },
  26981. stomach: {
  26982. height: math.unit(6.8, "feet"),
  26983. preyCapacity: math.unit(20, "people"),
  26984. name: "Stomach",
  26985. image: {
  26986. source: "./media/characters/koros/stomach.svg"
  26987. }
  26988. },
  26989. wingspanBottom: {
  26990. height: math.unit(114, "feet"),
  26991. name: "Wingspan (Bottom)",
  26992. image: {
  26993. source: "./media/characters/koros/wingspan-bottom.svg"
  26994. }
  26995. },
  26996. wingspanTop: {
  26997. height: math.unit(104, "feet"),
  26998. name: "Wingspan (Top)",
  26999. image: {
  27000. source: "./media/characters/koros/wingspan-top.svg"
  27001. }
  27002. },
  27003. },
  27004. [
  27005. {
  27006. name: "Normal",
  27007. height: math.unit(31 + 8 / 12, "feet"),
  27008. default: true
  27009. },
  27010. ]
  27011. ))
  27012. characterMakers.push(() => makeCharacter(
  27013. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27014. {
  27015. front: {
  27016. height: math.unit(18 + 5 / 12, "feet"),
  27017. weight: math.unit(3750, "kg"),
  27018. name: "Front",
  27019. image: {
  27020. source: "./media/characters/vexx/front.svg",
  27021. extra: 426 / 396,
  27022. bottom: 31.5 / 458
  27023. }
  27024. },
  27025. maw: {
  27026. height: math.unit(6, "feet"),
  27027. name: "Maw",
  27028. image: {
  27029. source: "./media/characters/vexx/maw.svg"
  27030. }
  27031. },
  27032. },
  27033. [
  27034. {
  27035. name: "Normal",
  27036. height: math.unit(18 + 5 / 12, "feet"),
  27037. default: true
  27038. },
  27039. ]
  27040. ))
  27041. characterMakers.push(() => makeCharacter(
  27042. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27043. {
  27044. front: {
  27045. height: math.unit(17 + 6 / 12, "feet"),
  27046. weight: math.unit(150, "lb"),
  27047. name: "Front",
  27048. image: {
  27049. source: "./media/characters/baadra/front.svg",
  27050. extra: 1694/1553,
  27051. bottom: 179/1873
  27052. }
  27053. },
  27054. frontAlt: {
  27055. height: math.unit(17 + 6 / 12, "feet"),
  27056. weight: math.unit(150, "lb"),
  27057. name: "Front (Alt)",
  27058. image: {
  27059. source: "./media/characters/baadra/front-alt.svg",
  27060. extra: 3137 / 2890,
  27061. bottom: 168.4 / 3305
  27062. }
  27063. },
  27064. back: {
  27065. height: math.unit(17 + 6 / 12, "feet"),
  27066. weight: math.unit(150, "lb"),
  27067. name: "Back",
  27068. image: {
  27069. source: "./media/characters/baadra/back.svg",
  27070. extra: 3142 / 2890,
  27071. bottom: 220 / 3371
  27072. }
  27073. },
  27074. head: {
  27075. height: math.unit(5.45, "feet"),
  27076. name: "Head",
  27077. image: {
  27078. source: "./media/characters/baadra/head.svg"
  27079. }
  27080. },
  27081. headAngry: {
  27082. height: math.unit(4.95, "feet"),
  27083. name: "Head (Angry)",
  27084. image: {
  27085. source: "./media/characters/baadra/head-angry.svg"
  27086. }
  27087. },
  27088. headOpen: {
  27089. height: math.unit(6, "feet"),
  27090. name: "Head (Open)",
  27091. image: {
  27092. source: "./media/characters/baadra/head-open.svg"
  27093. }
  27094. },
  27095. },
  27096. [
  27097. {
  27098. name: "Normal",
  27099. height: math.unit(17 + 6 / 12, "feet"),
  27100. default: true
  27101. },
  27102. ]
  27103. ))
  27104. characterMakers.push(() => makeCharacter(
  27105. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27106. {
  27107. front: {
  27108. height: math.unit(7 + 3 / 12, "feet"),
  27109. weight: math.unit(180, "lb"),
  27110. name: "Front",
  27111. image: {
  27112. source: "./media/characters/juri/front.svg",
  27113. extra: 1401 / 1237,
  27114. bottom: 18.5 / 1418
  27115. }
  27116. },
  27117. side: {
  27118. height: math.unit(7 + 3 / 12, "feet"),
  27119. weight: math.unit(180, "lb"),
  27120. name: "Side",
  27121. image: {
  27122. source: "./media/characters/juri/side.svg",
  27123. extra: 1424 / 1242,
  27124. bottom: 18.5 / 1447
  27125. }
  27126. },
  27127. sitting: {
  27128. height: math.unit(6, "feet"),
  27129. weight: math.unit(180, "lb"),
  27130. name: "Sitting",
  27131. image: {
  27132. source: "./media/characters/juri/sitting.svg",
  27133. extra: 1270 / 1143,
  27134. bottom: 100 / 1343
  27135. }
  27136. },
  27137. back: {
  27138. height: math.unit(7 + 3 / 12, "feet"),
  27139. weight: math.unit(180, "lb"),
  27140. name: "Back",
  27141. image: {
  27142. source: "./media/characters/juri/back.svg",
  27143. extra: 1377 / 1240,
  27144. bottom: 23.7 / 1405
  27145. }
  27146. },
  27147. maw: {
  27148. height: math.unit(2.8, "feet"),
  27149. name: "Maw",
  27150. image: {
  27151. source: "./media/characters/juri/maw.svg"
  27152. }
  27153. },
  27154. stomach: {
  27155. height: math.unit(0.89, "feet"),
  27156. preyCapacity: math.unit(4, "liters"),
  27157. name: "Stomach",
  27158. image: {
  27159. source: "./media/characters/juri/stomach.svg"
  27160. }
  27161. },
  27162. },
  27163. [
  27164. {
  27165. name: "Normal",
  27166. height: math.unit(7 + 3 / 12, "feet"),
  27167. default: true
  27168. },
  27169. ]
  27170. ))
  27171. characterMakers.push(() => makeCharacter(
  27172. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27173. {
  27174. fox: {
  27175. height: math.unit(5 + 6 / 12, "feet"),
  27176. weight: math.unit(140, "lb"),
  27177. name: "Fox",
  27178. image: {
  27179. source: "./media/characters/maxene-sita/fox.svg",
  27180. extra: 146 / 138,
  27181. bottom: 2.1 / 148.19
  27182. }
  27183. },
  27184. foxLaying: {
  27185. height: math.unit(1.70, "feet"),
  27186. weight: math.unit(140, "lb"),
  27187. name: "Fox (Laying)",
  27188. image: {
  27189. source: "./media/characters/maxene-sita/fox-laying.svg",
  27190. extra: 910 / 572,
  27191. bottom: 71 / 981
  27192. }
  27193. },
  27194. kitsune: {
  27195. height: math.unit(10, "feet"),
  27196. weight: math.unit(800, "lb"),
  27197. name: "Kitsune",
  27198. image: {
  27199. source: "./media/characters/maxene-sita/kitsune.svg",
  27200. extra: 185 / 176,
  27201. bottom: 4.7 / 189.9
  27202. }
  27203. },
  27204. hellhound: {
  27205. height: math.unit(10, "feet"),
  27206. weight: math.unit(700, "lb"),
  27207. name: "Hellhound",
  27208. image: {
  27209. source: "./media/characters/maxene-sita/hellhound.svg",
  27210. extra: 1600 / 1545,
  27211. bottom: 81 / 1681
  27212. }
  27213. },
  27214. },
  27215. [
  27216. {
  27217. name: "Normal",
  27218. height: math.unit(5 + 6 / 12, "feet"),
  27219. default: true
  27220. },
  27221. ]
  27222. ))
  27223. characterMakers.push(() => makeCharacter(
  27224. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27225. {
  27226. front: {
  27227. height: math.unit(3 + 4 / 12, "feet"),
  27228. weight: math.unit(70, "lb"),
  27229. name: "Front",
  27230. image: {
  27231. source: "./media/characters/maia/front.svg",
  27232. extra: 227 / 219.5,
  27233. bottom: 40 / 267
  27234. }
  27235. },
  27236. back: {
  27237. height: math.unit(3 + 4 / 12, "feet"),
  27238. weight: math.unit(70, "lb"),
  27239. name: "Back",
  27240. image: {
  27241. source: "./media/characters/maia/back.svg",
  27242. extra: 237 / 225
  27243. }
  27244. },
  27245. },
  27246. [
  27247. {
  27248. name: "Normal",
  27249. height: math.unit(3 + 4 / 12, "feet"),
  27250. default: true
  27251. },
  27252. ]
  27253. ))
  27254. characterMakers.push(() => makeCharacter(
  27255. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27256. {
  27257. front: {
  27258. height: math.unit(5 + 10 / 12, "feet"),
  27259. weight: math.unit(197, "lb"),
  27260. name: "Front",
  27261. image: {
  27262. source: "./media/characters/jabaro/front.svg",
  27263. extra: 225 / 216,
  27264. bottom: 5.06 / 230
  27265. }
  27266. },
  27267. back: {
  27268. height: math.unit(5 + 10 / 12, "feet"),
  27269. weight: math.unit(197, "lb"),
  27270. name: "Back",
  27271. image: {
  27272. source: "./media/characters/jabaro/back.svg",
  27273. extra: 225 / 219,
  27274. bottom: 1.9 / 227
  27275. }
  27276. },
  27277. },
  27278. [
  27279. {
  27280. name: "Normal",
  27281. height: math.unit(5 + 10 / 12, "feet"),
  27282. default: true
  27283. },
  27284. ]
  27285. ))
  27286. characterMakers.push(() => makeCharacter(
  27287. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27288. {
  27289. front: {
  27290. height: math.unit(5 + 8 / 12, "feet"),
  27291. weight: math.unit(139, "lb"),
  27292. name: "Front",
  27293. image: {
  27294. source: "./media/characters/risa/front.svg",
  27295. extra: 270 / 260,
  27296. bottom: 11.2 / 282
  27297. }
  27298. },
  27299. back: {
  27300. height: math.unit(5 + 8 / 12, "feet"),
  27301. weight: math.unit(139, "lb"),
  27302. name: "Back",
  27303. image: {
  27304. source: "./media/characters/risa/back.svg",
  27305. extra: 264 / 255,
  27306. bottom: 4 / 268
  27307. }
  27308. },
  27309. },
  27310. [
  27311. {
  27312. name: "Normal",
  27313. height: math.unit(5 + 8 / 12, "feet"),
  27314. default: true
  27315. },
  27316. ]
  27317. ))
  27318. characterMakers.push(() => makeCharacter(
  27319. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27320. {
  27321. front: {
  27322. height: math.unit(2 + 11 / 12, "feet"),
  27323. weight: math.unit(30, "lb"),
  27324. name: "Front",
  27325. image: {
  27326. source: "./media/characters/weatley/front.svg",
  27327. bottom: 10.7 / 414,
  27328. extra: 403.5 / 362
  27329. }
  27330. },
  27331. back: {
  27332. height: math.unit(2 + 11 / 12, "feet"),
  27333. weight: math.unit(30, "lb"),
  27334. name: "Back",
  27335. image: {
  27336. source: "./media/characters/weatley/back.svg",
  27337. bottom: 10.7 / 414,
  27338. extra: 403.5 / 362
  27339. }
  27340. },
  27341. },
  27342. [
  27343. {
  27344. name: "Normal",
  27345. height: math.unit(2 + 11 / 12, "feet"),
  27346. default: true
  27347. },
  27348. ]
  27349. ))
  27350. characterMakers.push(() => makeCharacter(
  27351. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27352. {
  27353. front: {
  27354. height: math.unit(5 + 2 / 12, "feet"),
  27355. weight: math.unit(50, "kg"),
  27356. name: "Front",
  27357. image: {
  27358. source: "./media/characters/mercury-crescent/front.svg",
  27359. extra: 1088 / 1033,
  27360. bottom: 18.9 / 1109
  27361. }
  27362. },
  27363. },
  27364. [
  27365. {
  27366. name: "Normal",
  27367. height: math.unit(5 + 2 / 12, "feet"),
  27368. default: true
  27369. },
  27370. ]
  27371. ))
  27372. characterMakers.push(() => makeCharacter(
  27373. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27374. {
  27375. front: {
  27376. height: math.unit(2, "feet"),
  27377. weight: math.unit(15, "kg"),
  27378. name: "Front",
  27379. image: {
  27380. source: "./media/characters/diamond-jones/front.svg",
  27381. extra: 727/723,
  27382. bottom: 46/773
  27383. }
  27384. },
  27385. },
  27386. [
  27387. {
  27388. name: "Normal",
  27389. height: math.unit(2, "feet"),
  27390. default: true
  27391. },
  27392. ]
  27393. ))
  27394. characterMakers.push(() => makeCharacter(
  27395. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27396. {
  27397. front: {
  27398. height: math.unit(3, "feet"),
  27399. weight: math.unit(30, "kg"),
  27400. name: "Front",
  27401. image: {
  27402. source: "./media/characters/sweet-bit/front.svg",
  27403. extra: 675 / 567,
  27404. bottom: 27.7 / 703
  27405. }
  27406. },
  27407. },
  27408. [
  27409. {
  27410. name: "Normal",
  27411. height: math.unit(3, "feet"),
  27412. default: true
  27413. },
  27414. ]
  27415. ))
  27416. characterMakers.push(() => makeCharacter(
  27417. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27418. {
  27419. side: {
  27420. height: math.unit(9.178, "feet"),
  27421. weight: math.unit(500, "lb"),
  27422. name: "Side",
  27423. image: {
  27424. source: "./media/characters/umbrazen/side.svg",
  27425. extra: 1730 / 1473,
  27426. bottom: 34.6 / 1765
  27427. }
  27428. },
  27429. },
  27430. [
  27431. {
  27432. name: "Normal",
  27433. height: math.unit(9.178, "feet"),
  27434. default: true
  27435. },
  27436. ]
  27437. ))
  27438. characterMakers.push(() => makeCharacter(
  27439. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27440. {
  27441. front: {
  27442. height: math.unit(10, "feet"),
  27443. weight: math.unit(750, "lb"),
  27444. name: "Front",
  27445. image: {
  27446. source: "./media/characters/arlist/front.svg",
  27447. extra: 961 / 778,
  27448. bottom: 6.2 / 986
  27449. }
  27450. },
  27451. },
  27452. [
  27453. {
  27454. name: "Normal",
  27455. height: math.unit(10, "feet"),
  27456. default: true
  27457. },
  27458. ]
  27459. ))
  27460. characterMakers.push(() => makeCharacter(
  27461. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27462. {
  27463. front: {
  27464. height: math.unit(5 + 1 / 12, "feet"),
  27465. weight: math.unit(110, "lb"),
  27466. name: "Front",
  27467. image: {
  27468. source: "./media/characters/aradel/front.svg",
  27469. extra: 324 / 303,
  27470. bottom: 3.6 / 329.4
  27471. }
  27472. },
  27473. },
  27474. [
  27475. {
  27476. name: "Normal",
  27477. height: math.unit(5 + 1 / 12, "feet"),
  27478. default: true
  27479. },
  27480. ]
  27481. ))
  27482. characterMakers.push(() => makeCharacter(
  27483. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27484. {
  27485. dressed: {
  27486. height: math.unit(3 + 8 / 12, "feet"),
  27487. weight: math.unit(50, "lb"),
  27488. name: "Dressed",
  27489. image: {
  27490. source: "./media/characters/serryn/dressed.svg",
  27491. extra: 1792 / 1656,
  27492. bottom: 43.5 / 1840
  27493. }
  27494. },
  27495. nude: {
  27496. height: math.unit(3 + 8 / 12, "feet"),
  27497. weight: math.unit(50, "lb"),
  27498. name: "Nude",
  27499. image: {
  27500. source: "./media/characters/serryn/nude.svg",
  27501. extra: 1792 / 1656,
  27502. bottom: 43.5 / 1840
  27503. }
  27504. },
  27505. },
  27506. [
  27507. {
  27508. name: "Normal",
  27509. height: math.unit(3 + 8 / 12, "feet"),
  27510. default: true
  27511. },
  27512. ]
  27513. ))
  27514. characterMakers.push(() => makeCharacter(
  27515. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27516. {
  27517. front: {
  27518. height: math.unit(7 + 10 / 12, "feet"),
  27519. weight: math.unit(255, "lb"),
  27520. name: "Front",
  27521. image: {
  27522. source: "./media/characters/xavier-thyme/front.svg",
  27523. extra: 3733 / 3642,
  27524. bottom: 131 / 3869
  27525. }
  27526. },
  27527. frontRaven: {
  27528. height: math.unit(7 + 10 / 12, "feet"),
  27529. weight: math.unit(255, "lb"),
  27530. name: "Front (Raven)",
  27531. image: {
  27532. source: "./media/characters/xavier-thyme/front-raven.svg",
  27533. extra: 4385 / 3642,
  27534. bottom: 131 / 4517
  27535. }
  27536. },
  27537. },
  27538. [
  27539. {
  27540. name: "Normal",
  27541. height: math.unit(7 + 10 / 12, "feet"),
  27542. default: true
  27543. },
  27544. ]
  27545. ))
  27546. characterMakers.push(() => makeCharacter(
  27547. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27548. {
  27549. front: {
  27550. height: math.unit(1.6, "m"),
  27551. weight: math.unit(50, "kg"),
  27552. name: "Front",
  27553. image: {
  27554. source: "./media/characters/kiki/front.svg",
  27555. extra: 4682 / 3610,
  27556. bottom: 115 / 4777
  27557. }
  27558. },
  27559. },
  27560. [
  27561. {
  27562. name: "Normal",
  27563. height: math.unit(1.6, "meters"),
  27564. default: true
  27565. },
  27566. ]
  27567. ))
  27568. characterMakers.push(() => makeCharacter(
  27569. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27570. {
  27571. front: {
  27572. height: math.unit(50, "m"),
  27573. weight: math.unit(500, "tonnes"),
  27574. name: "Front",
  27575. image: {
  27576. source: "./media/characters/ryoko/front.svg",
  27577. extra: 4632 / 3926,
  27578. bottom: 193 / 4823
  27579. }
  27580. },
  27581. },
  27582. [
  27583. {
  27584. name: "Normal",
  27585. height: math.unit(50, "meters"),
  27586. default: true
  27587. },
  27588. ]
  27589. ))
  27590. characterMakers.push(() => makeCharacter(
  27591. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27592. {
  27593. front: {
  27594. height: math.unit(30, "m"),
  27595. weight: math.unit(22, "tonnes"),
  27596. name: "Front",
  27597. image: {
  27598. source: "./media/characters/elio/front.svg",
  27599. extra: 4582 / 3720,
  27600. bottom: 236 / 4828
  27601. }
  27602. },
  27603. },
  27604. [
  27605. {
  27606. name: "Normal",
  27607. height: math.unit(30, "meters"),
  27608. default: true
  27609. },
  27610. ]
  27611. ))
  27612. characterMakers.push(() => makeCharacter(
  27613. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27614. {
  27615. front: {
  27616. height: math.unit(6 + 3 / 12, "feet"),
  27617. weight: math.unit(120, "lb"),
  27618. name: "Front",
  27619. image: {
  27620. source: "./media/characters/azura/front.svg",
  27621. extra: 1149 / 1135,
  27622. bottom: 45 / 1194
  27623. }
  27624. },
  27625. frontClothed: {
  27626. height: math.unit(6 + 3 / 12, "feet"),
  27627. weight: math.unit(120, "lb"),
  27628. name: "Front (Clothed)",
  27629. image: {
  27630. source: "./media/characters/azura/front-clothed.svg",
  27631. extra: 1149 / 1135,
  27632. bottom: 45 / 1194
  27633. }
  27634. },
  27635. },
  27636. [
  27637. {
  27638. name: "Normal",
  27639. height: math.unit(6 + 3 / 12, "feet"),
  27640. default: true
  27641. },
  27642. {
  27643. name: "Macro",
  27644. height: math.unit(20 + 6 / 12, "feet")
  27645. },
  27646. {
  27647. name: "Megamacro",
  27648. height: math.unit(12, "miles")
  27649. },
  27650. {
  27651. name: "Gigamacro",
  27652. height: math.unit(10000, "miles")
  27653. },
  27654. {
  27655. name: "Teramacro",
  27656. height: math.unit(900000, "miles")
  27657. },
  27658. ]
  27659. ))
  27660. characterMakers.push(() => makeCharacter(
  27661. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27662. {
  27663. front: {
  27664. height: math.unit(12, "feet"),
  27665. weight: math.unit(1, "ton"),
  27666. capacity: math.unit(660000, "gallons"),
  27667. name: "Front",
  27668. image: {
  27669. source: "./media/characters/zeus/front.svg",
  27670. extra: 5005 / 4717,
  27671. bottom: 363 / 5388
  27672. }
  27673. },
  27674. },
  27675. [
  27676. {
  27677. name: "Normal",
  27678. height: math.unit(12, "feet")
  27679. },
  27680. {
  27681. name: "Preferred Size",
  27682. height: math.unit(0.5, "miles"),
  27683. default: true
  27684. },
  27685. {
  27686. name: "Giga Horse",
  27687. height: math.unit(300, "miles")
  27688. },
  27689. {
  27690. name: "Riding Planets",
  27691. height: math.unit(30, "megameters")
  27692. },
  27693. {
  27694. name: "Cosmic Giant",
  27695. height: math.unit(3, "zettameters")
  27696. },
  27697. {
  27698. name: "Breeding God",
  27699. height: math.unit(9.92e22, "yottameters")
  27700. },
  27701. ]
  27702. ))
  27703. characterMakers.push(() => makeCharacter(
  27704. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27705. {
  27706. side: {
  27707. height: math.unit(9, "feet"),
  27708. weight: math.unit(1500, "kg"),
  27709. name: "Side",
  27710. image: {
  27711. source: "./media/characters/fang/side.svg",
  27712. extra: 924 / 866,
  27713. bottom: 47.5 / 972.3
  27714. }
  27715. },
  27716. },
  27717. [
  27718. {
  27719. name: "Normal",
  27720. height: math.unit(9, "feet"),
  27721. default: true
  27722. },
  27723. {
  27724. name: "Macro",
  27725. height: math.unit(75 + 6 / 12, "feet")
  27726. },
  27727. {
  27728. name: "Teramacro",
  27729. height: math.unit(50000, "miles")
  27730. },
  27731. ]
  27732. ))
  27733. characterMakers.push(() => makeCharacter(
  27734. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27735. {
  27736. front: {
  27737. height: math.unit(10, "feet"),
  27738. weight: math.unit(2, "tons"),
  27739. name: "Front",
  27740. image: {
  27741. source: "./media/characters/rekhit/front.svg",
  27742. extra: 2796 / 2590,
  27743. bottom: 225 / 3022
  27744. }
  27745. },
  27746. },
  27747. [
  27748. {
  27749. name: "Normal",
  27750. height: math.unit(10, "feet"),
  27751. default: true
  27752. },
  27753. {
  27754. name: "Macro",
  27755. height: math.unit(500, "feet")
  27756. },
  27757. ]
  27758. ))
  27759. characterMakers.push(() => makeCharacter(
  27760. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27761. {
  27762. front: {
  27763. height: math.unit(7 + 6.451 / 12, "feet"),
  27764. weight: math.unit(310, "lb"),
  27765. name: "Front",
  27766. image: {
  27767. source: "./media/characters/dahlia-verrick/front.svg",
  27768. extra: 1488 / 1365,
  27769. bottom: 6.2 / 1495
  27770. }
  27771. },
  27772. back: {
  27773. height: math.unit(7 + 6.451 / 12, "feet"),
  27774. weight: math.unit(310, "lb"),
  27775. name: "Back",
  27776. image: {
  27777. source: "./media/characters/dahlia-verrick/back.svg",
  27778. extra: 1472 / 1351,
  27779. bottom: 5.28 / 1477
  27780. }
  27781. },
  27782. frontBusiness: {
  27783. height: math.unit(7 + 6.451 / 12, "feet"),
  27784. weight: math.unit(200, "lb"),
  27785. name: "Front (Business)",
  27786. image: {
  27787. source: "./media/characters/dahlia-verrick/front-business.svg",
  27788. extra: 1478 / 1381,
  27789. bottom: 5.5 / 1484
  27790. }
  27791. },
  27792. frontCasual: {
  27793. height: math.unit(7 + 6.451 / 12, "feet"),
  27794. weight: math.unit(200, "lb"),
  27795. name: "Front (Casual)",
  27796. image: {
  27797. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27798. extra: 1478 / 1381,
  27799. bottom: 5.5 / 1484
  27800. }
  27801. },
  27802. },
  27803. [
  27804. {
  27805. name: "Travel-Sized",
  27806. height: math.unit(7.45, "inches")
  27807. },
  27808. {
  27809. name: "Normal",
  27810. height: math.unit(7 + 6.451 / 12, "feet"),
  27811. default: true
  27812. },
  27813. {
  27814. name: "Hitting the Town",
  27815. height: math.unit(37 + 8 / 12, "feet")
  27816. },
  27817. {
  27818. name: "Stomp in the Suburbs",
  27819. height: math.unit(964 + 9.728 / 12, "feet")
  27820. },
  27821. {
  27822. name: "Sit on the City",
  27823. height: math.unit(61747 + 10.592 / 12, "feet")
  27824. },
  27825. {
  27826. name: "Glomp the Globe",
  27827. height: math.unit(252919327 + 4.832 / 12, "feet")
  27828. },
  27829. ]
  27830. ))
  27831. characterMakers.push(() => makeCharacter(
  27832. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27833. {
  27834. front: {
  27835. height: math.unit(6 + 4 / 12, "feet"),
  27836. weight: math.unit(320, "lb"),
  27837. name: "Front",
  27838. image: {
  27839. source: "./media/characters/balina-mahigan/front.svg",
  27840. extra: 447 / 428,
  27841. bottom: 18 / 466
  27842. }
  27843. },
  27844. back: {
  27845. height: math.unit(6 + 4 / 12, "feet"),
  27846. weight: math.unit(320, "lb"),
  27847. name: "Back",
  27848. image: {
  27849. source: "./media/characters/balina-mahigan/back.svg",
  27850. extra: 445 / 428,
  27851. bottom: 4.07 / 448
  27852. }
  27853. },
  27854. arm: {
  27855. height: math.unit(1.88, "feet"),
  27856. name: "Arm",
  27857. image: {
  27858. source: "./media/characters/balina-mahigan/arm.svg"
  27859. }
  27860. },
  27861. backPort: {
  27862. height: math.unit(0.685, "feet"),
  27863. name: "Back Port",
  27864. image: {
  27865. source: "./media/characters/balina-mahigan/back-port.svg"
  27866. }
  27867. },
  27868. hoofpaw: {
  27869. height: math.unit(1.41, "feet"),
  27870. name: "Hoofpaw",
  27871. image: {
  27872. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27873. }
  27874. },
  27875. leftHandBack: {
  27876. height: math.unit(0.938, "feet"),
  27877. name: "Left Hand (Back)",
  27878. image: {
  27879. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27880. }
  27881. },
  27882. leftHandFront: {
  27883. height: math.unit(0.938, "feet"),
  27884. name: "Left Hand (Front)",
  27885. image: {
  27886. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27887. }
  27888. },
  27889. rightHandBack: {
  27890. height: math.unit(0.95, "feet"),
  27891. name: "Right Hand (Back)",
  27892. image: {
  27893. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27894. }
  27895. },
  27896. rightHandFront: {
  27897. height: math.unit(0.95, "feet"),
  27898. name: "Right Hand (Front)",
  27899. image: {
  27900. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27901. }
  27902. },
  27903. },
  27904. [
  27905. {
  27906. name: "Normal",
  27907. height: math.unit(6 + 4 / 12, "feet"),
  27908. default: true
  27909. },
  27910. ]
  27911. ))
  27912. characterMakers.push(() => makeCharacter(
  27913. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27914. {
  27915. front: {
  27916. height: math.unit(6, "feet"),
  27917. weight: math.unit(320, "lb"),
  27918. name: "Front",
  27919. image: {
  27920. source: "./media/characters/balina-mejeri/front.svg",
  27921. extra: 517 / 488,
  27922. bottom: 44.2 / 561
  27923. }
  27924. },
  27925. },
  27926. [
  27927. {
  27928. name: "Normal",
  27929. height: math.unit(6 + 4 / 12, "feet")
  27930. },
  27931. {
  27932. name: "Business",
  27933. height: math.unit(155, "feet"),
  27934. default: true
  27935. },
  27936. ]
  27937. ))
  27938. characterMakers.push(() => makeCharacter(
  27939. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27940. {
  27941. kneeling: {
  27942. height: math.unit(6 + 4 / 12, "feet"),
  27943. weight: math.unit(300 * 20, "lb"),
  27944. name: "Kneeling",
  27945. image: {
  27946. source: "./media/characters/balbarian/kneeling.svg",
  27947. extra: 922 / 862,
  27948. bottom: 42.4 / 965
  27949. }
  27950. },
  27951. },
  27952. [
  27953. {
  27954. name: "Normal",
  27955. height: math.unit(6 + 4 / 12, "feet")
  27956. },
  27957. {
  27958. name: "Treasured",
  27959. height: math.unit(18 + 9 / 12, "feet"),
  27960. default: true
  27961. },
  27962. {
  27963. name: "Macro",
  27964. height: math.unit(900, "feet")
  27965. },
  27966. ]
  27967. ))
  27968. characterMakers.push(() => makeCharacter(
  27969. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27970. {
  27971. front: {
  27972. height: math.unit(6 + 4 / 12, "feet"),
  27973. weight: math.unit(325, "lb"),
  27974. name: "Front",
  27975. image: {
  27976. source: "./media/characters/balina-amarini/front.svg",
  27977. extra: 415 / 403,
  27978. bottom: 19 / 433.4
  27979. }
  27980. },
  27981. back: {
  27982. height: math.unit(6 + 4 / 12, "feet"),
  27983. weight: math.unit(325, "lb"),
  27984. name: "Back",
  27985. image: {
  27986. source: "./media/characters/balina-amarini/back.svg",
  27987. extra: 415 / 403,
  27988. bottom: 13.5 / 432
  27989. }
  27990. },
  27991. overdrive: {
  27992. height: math.unit(6 + 4 / 12, "feet"),
  27993. weight: math.unit(400, "lb"),
  27994. name: "Overdrive",
  27995. image: {
  27996. source: "./media/characters/balina-amarini/overdrive.svg",
  27997. extra: 269 / 259,
  27998. bottom: 12 / 282
  27999. }
  28000. },
  28001. },
  28002. [
  28003. {
  28004. name: "Boom",
  28005. height: math.unit(9 + 10 / 12, "feet"),
  28006. default: true
  28007. },
  28008. {
  28009. name: "Macro",
  28010. height: math.unit(280, "feet")
  28011. },
  28012. ]
  28013. ))
  28014. characterMakers.push(() => makeCharacter(
  28015. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28016. {
  28017. goddess: {
  28018. height: math.unit(600, "feet"),
  28019. weight: math.unit(2000000, "tons"),
  28020. name: "Goddess",
  28021. image: {
  28022. source: "./media/characters/lady-kubwa/goddess.svg",
  28023. extra: 1240.5 / 1223,
  28024. bottom: 22 / 1263
  28025. }
  28026. },
  28027. goddesser: {
  28028. height: math.unit(900, "feet"),
  28029. weight: math.unit(20000000, "lb"),
  28030. name: "Goddess-er",
  28031. image: {
  28032. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28033. extra: 899 / 888,
  28034. bottom: 12.6 / 912
  28035. }
  28036. },
  28037. },
  28038. [
  28039. {
  28040. name: "Macro",
  28041. height: math.unit(600, "feet"),
  28042. default: true
  28043. },
  28044. {
  28045. name: "Megamacro",
  28046. height: math.unit(250, "miles")
  28047. },
  28048. ]
  28049. ))
  28050. characterMakers.push(() => makeCharacter(
  28051. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28052. {
  28053. front: {
  28054. height: math.unit(7 + 7 / 12, "feet"),
  28055. weight: math.unit(250, "lb"),
  28056. name: "Front",
  28057. image: {
  28058. source: "./media/characters/tala-grovehorn/front.svg",
  28059. extra: 2636 / 2525,
  28060. bottom: 147 / 2781
  28061. }
  28062. },
  28063. back: {
  28064. height: math.unit(7 + 7 / 12, "feet"),
  28065. weight: math.unit(250, "lb"),
  28066. name: "Back",
  28067. image: {
  28068. source: "./media/characters/tala-grovehorn/back.svg",
  28069. extra: 2635 / 2539,
  28070. bottom: 100 / 2732.8
  28071. }
  28072. },
  28073. mouth: {
  28074. height: math.unit(1.15, "feet"),
  28075. name: "Mouth",
  28076. image: {
  28077. source: "./media/characters/tala-grovehorn/mouth.svg"
  28078. }
  28079. },
  28080. dick: {
  28081. height: math.unit(2.36, "feet"),
  28082. name: "Dick",
  28083. image: {
  28084. source: "./media/characters/tala-grovehorn/dick.svg"
  28085. }
  28086. },
  28087. slit: {
  28088. height: math.unit(0.61, "feet"),
  28089. name: "Slit",
  28090. image: {
  28091. source: "./media/characters/tala-grovehorn/slit.svg"
  28092. }
  28093. },
  28094. },
  28095. [
  28096. ]
  28097. ))
  28098. characterMakers.push(() => makeCharacter(
  28099. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28100. {
  28101. front: {
  28102. height: math.unit(7 + 7 / 12, "feet"),
  28103. weight: math.unit(225, "lb"),
  28104. name: "Front",
  28105. image: {
  28106. source: "./media/characters/epona/front.svg",
  28107. extra: 2445 / 2290,
  28108. bottom: 251 / 2696
  28109. }
  28110. },
  28111. back: {
  28112. height: math.unit(7 + 7 / 12, "feet"),
  28113. weight: math.unit(225, "lb"),
  28114. name: "Back",
  28115. image: {
  28116. source: "./media/characters/epona/back.svg",
  28117. extra: 2546 / 2408,
  28118. bottom: 44 / 2589
  28119. }
  28120. },
  28121. genitals: {
  28122. height: math.unit(1.5, "feet"),
  28123. name: "Genitals",
  28124. image: {
  28125. source: "./media/characters/epona/genitals.svg"
  28126. }
  28127. },
  28128. },
  28129. [
  28130. {
  28131. name: "Normal",
  28132. height: math.unit(7 + 7 / 12, "feet"),
  28133. default: true
  28134. },
  28135. ]
  28136. ))
  28137. characterMakers.push(() => makeCharacter(
  28138. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28139. {
  28140. front: {
  28141. height: math.unit(7, "feet"),
  28142. weight: math.unit(518, "lb"),
  28143. name: "Front",
  28144. image: {
  28145. source: "./media/characters/avia-bloodbourn/front.svg",
  28146. extra: 1466 / 1350,
  28147. bottom: 65 / 1527
  28148. }
  28149. },
  28150. },
  28151. [
  28152. ]
  28153. ))
  28154. characterMakers.push(() => makeCharacter(
  28155. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28156. {
  28157. front: {
  28158. height: math.unit(9.35, "feet"),
  28159. weight: math.unit(600, "lb"),
  28160. name: "Front",
  28161. image: {
  28162. source: "./media/characters/amera/front.svg",
  28163. extra: 891 / 818,
  28164. bottom: 30 / 922.7
  28165. }
  28166. },
  28167. back: {
  28168. height: math.unit(9.35, "feet"),
  28169. weight: math.unit(600, "lb"),
  28170. name: "Back",
  28171. image: {
  28172. source: "./media/characters/amera/back.svg",
  28173. extra: 876 / 824,
  28174. bottom: 6.8 / 884
  28175. }
  28176. },
  28177. dick: {
  28178. height: math.unit(2.14, "feet"),
  28179. name: "Dick",
  28180. image: {
  28181. source: "./media/characters/amera/dick.svg"
  28182. }
  28183. },
  28184. },
  28185. [
  28186. {
  28187. name: "Normal",
  28188. height: math.unit(9.35, "feet"),
  28189. default: true
  28190. },
  28191. ]
  28192. ))
  28193. characterMakers.push(() => makeCharacter(
  28194. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28195. {
  28196. kneeling: {
  28197. height: math.unit(3 + 4 / 12, "feet"),
  28198. weight: math.unit(90, "lb"),
  28199. name: "Kneeling",
  28200. image: {
  28201. source: "./media/characters/rosewen/kneeling.svg",
  28202. extra: 1835 / 1571,
  28203. bottom: 27.7 / 1862
  28204. }
  28205. },
  28206. },
  28207. [
  28208. {
  28209. name: "Normal",
  28210. height: math.unit(3 + 4 / 12, "feet"),
  28211. default: true
  28212. },
  28213. ]
  28214. ))
  28215. characterMakers.push(() => makeCharacter(
  28216. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28217. {
  28218. front: {
  28219. height: math.unit(5 + 10 / 12, "feet"),
  28220. weight: math.unit(200, "lb"),
  28221. name: "Front",
  28222. image: {
  28223. source: "./media/characters/sabah/front.svg",
  28224. extra: 849 / 763,
  28225. bottom: 33.9 / 881
  28226. }
  28227. },
  28228. },
  28229. [
  28230. {
  28231. name: "Normal",
  28232. height: math.unit(5 + 10 / 12, "feet"),
  28233. default: true
  28234. },
  28235. ]
  28236. ))
  28237. characterMakers.push(() => makeCharacter(
  28238. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28239. {
  28240. front: {
  28241. height: math.unit(3 + 5 / 12, "feet"),
  28242. weight: math.unit(40, "kg"),
  28243. name: "Front",
  28244. image: {
  28245. source: "./media/characters/purple-flame/front.svg",
  28246. extra: 1577 / 1412,
  28247. bottom: 97 / 1694
  28248. }
  28249. },
  28250. frontDressed: {
  28251. height: math.unit(3 + 5 / 12, "feet"),
  28252. weight: math.unit(40, "kg"),
  28253. name: "Front (Dressed)",
  28254. image: {
  28255. source: "./media/characters/purple-flame/front-dressed.svg",
  28256. extra: 1577 / 1412,
  28257. bottom: 97 / 1694
  28258. }
  28259. },
  28260. headphones: {
  28261. height: math.unit(0.85, "feet"),
  28262. name: "Headphones",
  28263. image: {
  28264. source: "./media/characters/purple-flame/headphones.svg"
  28265. }
  28266. },
  28267. },
  28268. [
  28269. {
  28270. name: "Really Small",
  28271. height: math.unit(5, "cm")
  28272. },
  28273. {
  28274. name: "Micro",
  28275. height: math.unit(1 + 5 / 12, "feet")
  28276. },
  28277. {
  28278. name: "Normal",
  28279. height: math.unit(3 + 5 / 12, "feet"),
  28280. default: true
  28281. },
  28282. {
  28283. name: "Minimacro",
  28284. height: math.unit(125, "feet")
  28285. },
  28286. {
  28287. name: "Macro",
  28288. height: math.unit(0.5, "miles")
  28289. },
  28290. {
  28291. name: "Megamacro",
  28292. height: math.unit(50, "miles")
  28293. },
  28294. {
  28295. name: "Gigantic",
  28296. height: math.unit(750, "miles")
  28297. },
  28298. {
  28299. name: "Planetary",
  28300. height: math.unit(15000, "miles")
  28301. },
  28302. ]
  28303. ))
  28304. characterMakers.push(() => makeCharacter(
  28305. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28306. {
  28307. front: {
  28308. height: math.unit(14, "feet"),
  28309. weight: math.unit(959, "lb"),
  28310. name: "Front",
  28311. image: {
  28312. source: "./media/characters/arsenal/front.svg",
  28313. extra: 2357 / 2157,
  28314. bottom: 93 / 2458
  28315. }
  28316. },
  28317. },
  28318. [
  28319. {
  28320. name: "Normal",
  28321. height: math.unit(14, "feet"),
  28322. default: true
  28323. },
  28324. ]
  28325. ))
  28326. characterMakers.push(() => makeCharacter(
  28327. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28328. {
  28329. front: {
  28330. height: math.unit(6, "feet"),
  28331. weight: math.unit(150, "lb"),
  28332. name: "Front",
  28333. image: {
  28334. source: "./media/characters/adira/front.svg",
  28335. extra: 1078 / 1029,
  28336. bottom: 87 / 1166
  28337. }
  28338. },
  28339. },
  28340. [
  28341. {
  28342. name: "Micro",
  28343. height: math.unit(4, "inches"),
  28344. default: true
  28345. },
  28346. {
  28347. name: "Macro",
  28348. height: math.unit(50, "feet")
  28349. },
  28350. ]
  28351. ))
  28352. characterMakers.push(() => makeCharacter(
  28353. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28354. {
  28355. front: {
  28356. height: math.unit(16, "feet"),
  28357. weight: math.unit(1000, "lb"),
  28358. name: "Front",
  28359. image: {
  28360. source: "./media/characters/grim/front.svg",
  28361. extra: 622 / 614,
  28362. bottom: 18.1 / 642
  28363. }
  28364. },
  28365. back: {
  28366. height: math.unit(16, "feet"),
  28367. weight: math.unit(1000, "lb"),
  28368. name: "Back",
  28369. image: {
  28370. source: "./media/characters/grim/back.svg",
  28371. extra: 610.6 / 602,
  28372. bottom: 40.8 / 652
  28373. }
  28374. },
  28375. hunched: {
  28376. height: math.unit(9.75, "feet"),
  28377. weight: math.unit(1000, "lb"),
  28378. name: "Hunched",
  28379. image: {
  28380. source: "./media/characters/grim/hunched.svg",
  28381. extra: 304 / 297,
  28382. bottom: 35.4 / 394
  28383. }
  28384. },
  28385. },
  28386. [
  28387. {
  28388. name: "Normal",
  28389. height: math.unit(16, "feet"),
  28390. default: true
  28391. },
  28392. ]
  28393. ))
  28394. characterMakers.push(() => makeCharacter(
  28395. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28396. {
  28397. front: {
  28398. height: math.unit(2.3, "meters"),
  28399. weight: math.unit(300, "lb"),
  28400. name: "Front",
  28401. image: {
  28402. source: "./media/characters/sinja/front-sfw.svg",
  28403. extra: 1393 / 1294,
  28404. bottom: 70 / 1463
  28405. }
  28406. },
  28407. frontNsfw: {
  28408. height: math.unit(2.3, "meters"),
  28409. weight: math.unit(300, "lb"),
  28410. name: "Front (NSFW)",
  28411. image: {
  28412. source: "./media/characters/sinja/front-nsfw.svg",
  28413. extra: 1393 / 1294,
  28414. bottom: 70 / 1463
  28415. }
  28416. },
  28417. back: {
  28418. height: math.unit(2.3, "meters"),
  28419. weight: math.unit(300, "lb"),
  28420. name: "Back",
  28421. image: {
  28422. source: "./media/characters/sinja/back.svg",
  28423. extra: 1393 / 1294,
  28424. bottom: 70 / 1463
  28425. }
  28426. },
  28427. head: {
  28428. height: math.unit(1.771, "feet"),
  28429. name: "Head",
  28430. image: {
  28431. source: "./media/characters/sinja/head.svg"
  28432. }
  28433. },
  28434. slit: {
  28435. height: math.unit(0.8, "feet"),
  28436. name: "Slit",
  28437. image: {
  28438. source: "./media/characters/sinja/slit.svg"
  28439. }
  28440. },
  28441. },
  28442. [
  28443. {
  28444. name: "Normal",
  28445. height: math.unit(2.3, "meters")
  28446. },
  28447. {
  28448. name: "Macro",
  28449. height: math.unit(91, "meters"),
  28450. default: true
  28451. },
  28452. {
  28453. name: "Megamacro",
  28454. height: math.unit(91440, "meters")
  28455. },
  28456. {
  28457. name: "Gigamacro",
  28458. height: math.unit(60960000, "meters")
  28459. },
  28460. {
  28461. name: "Teramacro",
  28462. height: math.unit(9144000000, "meters")
  28463. },
  28464. ]
  28465. ))
  28466. characterMakers.push(() => makeCharacter(
  28467. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28468. {
  28469. front: {
  28470. height: math.unit(1.7, "meters"),
  28471. weight: math.unit(130, "lb"),
  28472. name: "Front",
  28473. image: {
  28474. source: "./media/characters/kyu/front.svg",
  28475. extra: 415 / 395,
  28476. bottom: 5 / 420
  28477. }
  28478. },
  28479. head: {
  28480. height: math.unit(1.75, "feet"),
  28481. name: "Head",
  28482. image: {
  28483. source: "./media/characters/kyu/head.svg"
  28484. }
  28485. },
  28486. foot: {
  28487. height: math.unit(0.81, "feet"),
  28488. name: "Foot",
  28489. image: {
  28490. source: "./media/characters/kyu/foot.svg"
  28491. }
  28492. },
  28493. },
  28494. [
  28495. {
  28496. name: "Normal",
  28497. height: math.unit(1.7, "meters")
  28498. },
  28499. {
  28500. name: "Macro",
  28501. height: math.unit(131, "feet"),
  28502. default: true
  28503. },
  28504. {
  28505. name: "Megamacro",
  28506. height: math.unit(91440, "meters")
  28507. },
  28508. {
  28509. name: "Gigamacro",
  28510. height: math.unit(60960000, "meters")
  28511. },
  28512. {
  28513. name: "Teramacro",
  28514. height: math.unit(9144000000, "meters")
  28515. },
  28516. ]
  28517. ))
  28518. characterMakers.push(() => makeCharacter(
  28519. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28520. {
  28521. front: {
  28522. height: math.unit(7 + 1 / 12, "feet"),
  28523. weight: math.unit(250, "lb"),
  28524. name: "Front",
  28525. image: {
  28526. source: "./media/characters/joey/front.svg",
  28527. extra: 1791 / 1537,
  28528. bottom: 28 / 1816
  28529. }
  28530. },
  28531. },
  28532. [
  28533. {
  28534. name: "Micro",
  28535. height: math.unit(3, "inches")
  28536. },
  28537. {
  28538. name: "Normal",
  28539. height: math.unit(7 + 1 / 12, "feet"),
  28540. default: true
  28541. },
  28542. ]
  28543. ))
  28544. characterMakers.push(() => makeCharacter(
  28545. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28546. {
  28547. front: {
  28548. height: math.unit(165, "cm"),
  28549. weight: math.unit(140, "lb"),
  28550. name: "Front",
  28551. image: {
  28552. source: "./media/characters/sam-evans/front.svg",
  28553. extra: 3417 / 3230,
  28554. bottom: 41.3 / 3417
  28555. }
  28556. },
  28557. frontSixTails: {
  28558. height: math.unit(165, "cm"),
  28559. weight: math.unit(140, "lb"),
  28560. name: "Front-six-tails",
  28561. image: {
  28562. source: "./media/characters/sam-evans/front-six-tails.svg",
  28563. extra: 3417 / 3230,
  28564. bottom: 41.3 / 3417
  28565. }
  28566. },
  28567. back: {
  28568. height: math.unit(165, "cm"),
  28569. weight: math.unit(140, "lb"),
  28570. name: "Back",
  28571. image: {
  28572. source: "./media/characters/sam-evans/back.svg",
  28573. extra: 3227 / 3032,
  28574. bottom: 6.8 / 3234
  28575. }
  28576. },
  28577. face: {
  28578. height: math.unit(0.68, "feet"),
  28579. name: "Face",
  28580. image: {
  28581. source: "./media/characters/sam-evans/face.svg"
  28582. }
  28583. },
  28584. },
  28585. [
  28586. {
  28587. name: "Normal",
  28588. height: math.unit(165, "cm"),
  28589. default: true
  28590. },
  28591. {
  28592. name: "Macro",
  28593. height: math.unit(100, "meters")
  28594. },
  28595. {
  28596. name: "Macro+",
  28597. height: math.unit(800, "meters")
  28598. },
  28599. {
  28600. name: "Macro++",
  28601. height: math.unit(3, "km")
  28602. },
  28603. {
  28604. name: "Macro+++",
  28605. height: math.unit(30, "km")
  28606. },
  28607. ]
  28608. ))
  28609. characterMakers.push(() => makeCharacter(
  28610. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28611. {
  28612. front: {
  28613. height: math.unit(10, "feet"),
  28614. weight: math.unit(750, "lb"),
  28615. name: "Front",
  28616. image: {
  28617. source: "./media/characters/juliet-a/front.svg",
  28618. extra: 1766 / 1720,
  28619. bottom: 43 / 1809
  28620. }
  28621. },
  28622. back: {
  28623. height: math.unit(10, "feet"),
  28624. weight: math.unit(750, "lb"),
  28625. name: "Back",
  28626. image: {
  28627. source: "./media/characters/juliet-a/back.svg",
  28628. extra: 1781 / 1734,
  28629. bottom: 35 / 1810,
  28630. }
  28631. },
  28632. },
  28633. [
  28634. {
  28635. name: "Normal",
  28636. height: math.unit(10, "feet"),
  28637. default: true
  28638. },
  28639. {
  28640. name: "Dragon Form",
  28641. height: math.unit(250, "feet")
  28642. },
  28643. {
  28644. name: "Macro",
  28645. height: math.unit(1000, "feet")
  28646. },
  28647. {
  28648. name: "Megamacro",
  28649. height: math.unit(10000, "feet")
  28650. }
  28651. ]
  28652. ))
  28653. characterMakers.push(() => makeCharacter(
  28654. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28655. {
  28656. regular: {
  28657. height: math.unit(7 + 3 / 12, "feet"),
  28658. weight: math.unit(260, "lb"),
  28659. name: "Regular",
  28660. image: {
  28661. source: "./media/characters/wild/regular.svg",
  28662. extra: 97.45 / 92,
  28663. bottom: 6.8 / 104.3
  28664. }
  28665. },
  28666. biggums: {
  28667. height: math.unit(8 + 6 / 12, "feet"),
  28668. weight: math.unit(425, "lb"),
  28669. name: "Biggums",
  28670. image: {
  28671. source: "./media/characters/wild/biggums.svg",
  28672. extra: 97.45 / 92,
  28673. bottom: 7.5 / 132.34
  28674. }
  28675. },
  28676. mawRegular: {
  28677. height: math.unit(1.24, "feet"),
  28678. name: "Maw (Regular)",
  28679. image: {
  28680. source: "./media/characters/wild/maw.svg"
  28681. }
  28682. },
  28683. mawBiggums: {
  28684. height: math.unit(1.47, "feet"),
  28685. name: "Maw (Biggums)",
  28686. image: {
  28687. source: "./media/characters/wild/maw.svg"
  28688. }
  28689. },
  28690. },
  28691. [
  28692. {
  28693. name: "Normal",
  28694. height: math.unit(7 + 3 / 12, "feet"),
  28695. default: true
  28696. },
  28697. ]
  28698. ))
  28699. characterMakers.push(() => makeCharacter(
  28700. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28701. {
  28702. front: {
  28703. height: math.unit(2.5, "meters"),
  28704. weight: math.unit(200, "kg"),
  28705. name: "Front",
  28706. image: {
  28707. source: "./media/characters/vidar/front.svg",
  28708. extra: 2994 / 2795,
  28709. bottom: 56 / 3061
  28710. }
  28711. },
  28712. back: {
  28713. height: math.unit(2.5, "meters"),
  28714. weight: math.unit(200, "kg"),
  28715. name: "Back",
  28716. image: {
  28717. source: "./media/characters/vidar/back.svg",
  28718. extra: 3131 / 2928,
  28719. bottom: 13.5 / 3141.5
  28720. }
  28721. },
  28722. feral: {
  28723. height: math.unit(2.5, "meters"),
  28724. weight: math.unit(2000, "kg"),
  28725. name: "Feral",
  28726. image: {
  28727. source: "./media/characters/vidar/feral.svg",
  28728. extra: 2790 / 1765,
  28729. bottom: 6 / 2796
  28730. }
  28731. },
  28732. },
  28733. [
  28734. {
  28735. name: "Normal",
  28736. height: math.unit(2.5, "meters"),
  28737. default: true
  28738. },
  28739. {
  28740. name: "Macro",
  28741. height: math.unit(100, "meters")
  28742. },
  28743. ]
  28744. ))
  28745. characterMakers.push(() => makeCharacter(
  28746. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28747. {
  28748. front: {
  28749. height: math.unit(5 + 9 / 12, "feet"),
  28750. weight: math.unit(120, "lb"),
  28751. name: "Front",
  28752. image: {
  28753. source: "./media/characters/ash/front.svg",
  28754. extra: 2189 / 1961,
  28755. bottom: 5.2 / 2194
  28756. }
  28757. },
  28758. },
  28759. [
  28760. {
  28761. name: "Normal",
  28762. height: math.unit(5 + 9 / 12, "feet"),
  28763. default: true
  28764. },
  28765. ]
  28766. ))
  28767. characterMakers.push(() => makeCharacter(
  28768. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28769. {
  28770. front: {
  28771. height: math.unit(9, "feet"),
  28772. weight: math.unit(10000, "lb"),
  28773. name: "Front",
  28774. image: {
  28775. source: "./media/characters/gygabite/front.svg",
  28776. bottom: 31.7 / 537.8,
  28777. extra: 505 / 370
  28778. }
  28779. },
  28780. },
  28781. [
  28782. {
  28783. name: "Normal",
  28784. height: math.unit(9, "feet"),
  28785. default: true
  28786. },
  28787. ]
  28788. ))
  28789. characterMakers.push(() => makeCharacter(
  28790. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28791. {
  28792. front: {
  28793. height: math.unit(12, "feet"),
  28794. weight: math.unit(4000, "lb"),
  28795. name: "Front",
  28796. image: {
  28797. source: "./media/characters/p0tat0/front.svg",
  28798. extra: 1065 / 921,
  28799. bottom: 55.7 / 1121.25
  28800. }
  28801. },
  28802. },
  28803. [
  28804. {
  28805. name: "Normal",
  28806. height: math.unit(12, "feet"),
  28807. default: true
  28808. },
  28809. ]
  28810. ))
  28811. characterMakers.push(() => makeCharacter(
  28812. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28813. {
  28814. side: {
  28815. height: math.unit(6.5, "feet"),
  28816. weight: math.unit(800, "lb"),
  28817. name: "Side",
  28818. image: {
  28819. source: "./media/characters/dusk/side.svg",
  28820. extra: 615 / 373,
  28821. bottom: 53 / 664
  28822. }
  28823. },
  28824. sitting: {
  28825. height: math.unit(7, "feet"),
  28826. weight: math.unit(800, "lb"),
  28827. name: "Sitting",
  28828. image: {
  28829. source: "./media/characters/dusk/sitting.svg",
  28830. extra: 753 / 425,
  28831. bottom: 33 / 774
  28832. }
  28833. },
  28834. head: {
  28835. height: math.unit(6.1, "feet"),
  28836. name: "Head",
  28837. image: {
  28838. source: "./media/characters/dusk/head.svg"
  28839. }
  28840. },
  28841. },
  28842. [
  28843. {
  28844. name: "Normal",
  28845. height: math.unit(7, "feet"),
  28846. default: true
  28847. },
  28848. ]
  28849. ))
  28850. characterMakers.push(() => makeCharacter(
  28851. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28852. {
  28853. front: {
  28854. height: math.unit(15, "feet"),
  28855. weight: math.unit(7000, "lb"),
  28856. name: "Front",
  28857. image: {
  28858. source: "./media/characters/jay-direwolf/front.svg",
  28859. extra: 1810 / 1732,
  28860. bottom: 66 / 1892
  28861. }
  28862. },
  28863. },
  28864. [
  28865. {
  28866. name: "Normal",
  28867. height: math.unit(15, "feet"),
  28868. default: true
  28869. },
  28870. ]
  28871. ))
  28872. characterMakers.push(() => makeCharacter(
  28873. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28874. {
  28875. front: {
  28876. height: math.unit(4 + 9 / 12, "feet"),
  28877. weight: math.unit(130, "lb"),
  28878. name: "Front",
  28879. image: {
  28880. source: "./media/characters/anchovie/front.svg",
  28881. extra: 382 / 350,
  28882. bottom: 25 / 409
  28883. }
  28884. },
  28885. back: {
  28886. height: math.unit(4 + 9 / 12, "feet"),
  28887. weight: math.unit(130, "lb"),
  28888. name: "Back",
  28889. image: {
  28890. source: "./media/characters/anchovie/back.svg",
  28891. extra: 385 / 352,
  28892. bottom: 16.6 / 402
  28893. }
  28894. },
  28895. frontDressed: {
  28896. height: math.unit(4 + 9 / 12, "feet"),
  28897. weight: math.unit(130, "lb"),
  28898. name: "Front (Dressed)",
  28899. image: {
  28900. source: "./media/characters/anchovie/front-dressed.svg",
  28901. extra: 382 / 350,
  28902. bottom: 25 / 409
  28903. }
  28904. },
  28905. backDressed: {
  28906. height: math.unit(4 + 9 / 12, "feet"),
  28907. weight: math.unit(130, "lb"),
  28908. name: "Back (Dressed)",
  28909. image: {
  28910. source: "./media/characters/anchovie/back-dressed.svg",
  28911. extra: 385 / 352,
  28912. bottom: 16.6 / 402
  28913. }
  28914. },
  28915. },
  28916. [
  28917. {
  28918. name: "Micro",
  28919. height: math.unit(6.4, "inches")
  28920. },
  28921. {
  28922. name: "Normal",
  28923. height: math.unit(4 + 9 / 12, "feet"),
  28924. default: true
  28925. },
  28926. ]
  28927. ))
  28928. characterMakers.push(() => makeCharacter(
  28929. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28930. {
  28931. front: {
  28932. height: math.unit(2, "meters"),
  28933. weight: math.unit(180, "lb"),
  28934. name: "Front",
  28935. image: {
  28936. source: "./media/characters/acidrenamon/front.svg",
  28937. extra: 987 / 890,
  28938. bottom: 22.8 / 1009
  28939. }
  28940. },
  28941. back: {
  28942. height: math.unit(2, "meters"),
  28943. weight: math.unit(180, "lb"),
  28944. name: "Back",
  28945. image: {
  28946. source: "./media/characters/acidrenamon/back.svg",
  28947. extra: 983 / 891,
  28948. bottom: 8.4 / 992
  28949. }
  28950. },
  28951. head: {
  28952. height: math.unit(1.92, "feet"),
  28953. name: "Head",
  28954. image: {
  28955. source: "./media/characters/acidrenamon/head.svg"
  28956. }
  28957. },
  28958. rump: {
  28959. height: math.unit(1.72, "feet"),
  28960. name: "Rump",
  28961. image: {
  28962. source: "./media/characters/acidrenamon/rump.svg"
  28963. }
  28964. },
  28965. tail: {
  28966. height: math.unit(4.2, "feet"),
  28967. name: "Tail",
  28968. image: {
  28969. source: "./media/characters/acidrenamon/tail.svg"
  28970. }
  28971. },
  28972. },
  28973. [
  28974. {
  28975. name: "Normal",
  28976. height: math.unit(2, "meters"),
  28977. default: true
  28978. },
  28979. {
  28980. name: "Minimacro",
  28981. height: math.unit(7, "meters")
  28982. },
  28983. {
  28984. name: "Macro",
  28985. height: math.unit(200, "meters")
  28986. },
  28987. {
  28988. name: "Gigamacro",
  28989. height: math.unit(0.2, "earths")
  28990. },
  28991. ]
  28992. ))
  28993. characterMakers.push(() => makeCharacter(
  28994. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28995. {
  28996. front: {
  28997. height: math.unit(152, "feet"),
  28998. name: "Front",
  28999. image: {
  29000. source: "./media/characters/kenzie-lee/front.svg",
  29001. extra: 1869/1774,
  29002. bottom: 128/1997
  29003. }
  29004. },
  29005. side: {
  29006. height: math.unit(86, "feet"),
  29007. name: "Side",
  29008. image: {
  29009. source: "./media/characters/kenzie-lee/side.svg",
  29010. extra: 930/815,
  29011. bottom: 177/1107
  29012. }
  29013. },
  29014. paw: {
  29015. height: math.unit(15, "feet"),
  29016. name: "Paw",
  29017. image: {
  29018. source: "./media/characters/kenzie-lee/paw.svg"
  29019. }
  29020. },
  29021. },
  29022. [
  29023. {
  29024. name: "Kenzie Flea",
  29025. height: math.unit(2, "mm"),
  29026. default: true
  29027. },
  29028. {
  29029. name: "Micro",
  29030. height: math.unit(2, "inches")
  29031. },
  29032. {
  29033. name: "Normal",
  29034. height: math.unit(152, "feet")
  29035. },
  29036. {
  29037. name: "Megamacro",
  29038. height: math.unit(7, "miles")
  29039. },
  29040. {
  29041. name: "Gigamacro",
  29042. height: math.unit(8000, "miles")
  29043. },
  29044. ]
  29045. ))
  29046. characterMakers.push(() => makeCharacter(
  29047. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29048. {
  29049. front: {
  29050. height: math.unit(6, "feet"),
  29051. name: "Front",
  29052. image: {
  29053. source: "./media/characters/withers/front.svg",
  29054. extra: 1935/1760,
  29055. bottom: 72/2007
  29056. }
  29057. },
  29058. back: {
  29059. height: math.unit(6, "feet"),
  29060. name: "Back",
  29061. image: {
  29062. source: "./media/characters/withers/back.svg",
  29063. extra: 1944/1792,
  29064. bottom: 12/1956
  29065. }
  29066. },
  29067. dressed: {
  29068. height: math.unit(6, "feet"),
  29069. name: "Dressed",
  29070. image: {
  29071. source: "./media/characters/withers/dressed.svg",
  29072. extra: 1937/1765,
  29073. bottom: 73/2010
  29074. }
  29075. },
  29076. phase1: {
  29077. height: math.unit(1.1, "feet"),
  29078. name: "Phase 1",
  29079. image: {
  29080. source: "./media/characters/withers/phase-1.svg",
  29081. extra: 1885/1232,
  29082. bottom: 0/1885
  29083. }
  29084. },
  29085. phase2: {
  29086. height: math.unit(1.05, "feet"),
  29087. name: "Phase 2",
  29088. image: {
  29089. source: "./media/characters/withers/phase-2.svg",
  29090. extra: 1792/1090,
  29091. bottom: 0/1792
  29092. }
  29093. },
  29094. partyWipe: {
  29095. height: math.unit(1.1, "feet"),
  29096. name: "Party Wipe",
  29097. image: {
  29098. source: "./media/characters/withers/party-wipe.svg",
  29099. extra: 1864/1207,
  29100. bottom: 0/1864
  29101. }
  29102. },
  29103. },
  29104. [
  29105. {
  29106. name: "Macro",
  29107. height: math.unit(167, "feet"),
  29108. default: true
  29109. },
  29110. {
  29111. name: "Megamacro",
  29112. height: math.unit(15, "miles")
  29113. }
  29114. ]
  29115. ))
  29116. characterMakers.push(() => makeCharacter(
  29117. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29118. {
  29119. front: {
  29120. height: math.unit(6 + 7 / 12, "feet"),
  29121. weight: math.unit(250, "lb"),
  29122. name: "Front",
  29123. image: {
  29124. source: "./media/characters/nemoskii/front.svg",
  29125. extra: 2270 / 1734,
  29126. bottom: 86 / 2354
  29127. }
  29128. },
  29129. back: {
  29130. height: math.unit(6 + 7 / 12, "feet"),
  29131. weight: math.unit(250, "lb"),
  29132. name: "Back",
  29133. image: {
  29134. source: "./media/characters/nemoskii/back.svg",
  29135. extra: 1845 / 1788,
  29136. bottom: 10.5 / 1852
  29137. }
  29138. },
  29139. head: {
  29140. height: math.unit(1.31, "feet"),
  29141. name: "Head",
  29142. image: {
  29143. source: "./media/characters/nemoskii/head.svg"
  29144. }
  29145. },
  29146. },
  29147. [
  29148. {
  29149. name: "Micro",
  29150. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29151. },
  29152. {
  29153. name: "Normal",
  29154. height: math.unit(6 + 7 / 12, "feet"),
  29155. default: true
  29156. },
  29157. {
  29158. name: "Macro",
  29159. height: math.unit((6 + 7 / 12) * 150, "feet")
  29160. },
  29161. {
  29162. name: "Macro+",
  29163. height: math.unit((6 + 7 / 12) * 500, "feet")
  29164. },
  29165. {
  29166. name: "Megamacro",
  29167. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29168. },
  29169. ]
  29170. ))
  29171. characterMakers.push(() => makeCharacter(
  29172. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29173. {
  29174. front: {
  29175. height: math.unit(1, "mile"),
  29176. weight: math.unit(265261.9, "lb"),
  29177. name: "Front",
  29178. image: {
  29179. source: "./media/characters/shui/front.svg",
  29180. extra: 1633 / 1564,
  29181. bottom: 91.5 / 1726
  29182. }
  29183. },
  29184. },
  29185. [
  29186. {
  29187. name: "Macro",
  29188. height: math.unit(1, "mile"),
  29189. default: true
  29190. },
  29191. ]
  29192. ))
  29193. characterMakers.push(() => makeCharacter(
  29194. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29195. {
  29196. front: {
  29197. height: math.unit(12 + 6 / 12, "feet"),
  29198. weight: math.unit(1342, "lb"),
  29199. name: "Front",
  29200. image: {
  29201. source: "./media/characters/arokh-takakura/front.svg",
  29202. extra: 1089 / 1043,
  29203. bottom: 77.4 / 1176.7
  29204. }
  29205. },
  29206. back: {
  29207. height: math.unit(12 + 6 / 12, "feet"),
  29208. weight: math.unit(1342, "lb"),
  29209. name: "Back",
  29210. image: {
  29211. source: "./media/characters/arokh-takakura/back.svg",
  29212. extra: 1046 / 1019,
  29213. bottom: 102 / 1150
  29214. }
  29215. },
  29216. },
  29217. [
  29218. {
  29219. name: "Big",
  29220. height: math.unit(12 + 6 / 12, "feet"),
  29221. default: true
  29222. },
  29223. ]
  29224. ))
  29225. characterMakers.push(() => makeCharacter(
  29226. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29227. {
  29228. front: {
  29229. height: math.unit(5 + 6 / 12, "feet"),
  29230. weight: math.unit(150, "lb"),
  29231. name: "Front",
  29232. image: {
  29233. source: "./media/characters/theo/front.svg",
  29234. extra: 1184 / 1131,
  29235. bottom: 7.4 / 1191
  29236. }
  29237. },
  29238. },
  29239. [
  29240. {
  29241. name: "Micro",
  29242. height: math.unit(5, "inches")
  29243. },
  29244. {
  29245. name: "Normal",
  29246. height: math.unit(5 + 6 / 12, "feet"),
  29247. default: true
  29248. },
  29249. ]
  29250. ))
  29251. characterMakers.push(() => makeCharacter(
  29252. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29253. {
  29254. front: {
  29255. height: math.unit(5 + 9 / 12, "feet"),
  29256. weight: math.unit(130, "lb"),
  29257. name: "Front",
  29258. image: {
  29259. source: "./media/characters/cecelia-swift/front.svg",
  29260. extra: 502 / 484,
  29261. bottom: 23 / 523
  29262. }
  29263. },
  29264. back: {
  29265. height: math.unit(5 + 9 / 12, "feet"),
  29266. weight: math.unit(130, "lb"),
  29267. name: "Back",
  29268. image: {
  29269. source: "./media/characters/cecelia-swift/back.svg",
  29270. extra: 499 / 485,
  29271. bottom: 12 / 511
  29272. }
  29273. },
  29274. head: {
  29275. height: math.unit(0.90, "feet"),
  29276. name: "Head",
  29277. image: {
  29278. source: "./media/characters/cecelia-swift/head.svg"
  29279. }
  29280. },
  29281. rump: {
  29282. height: math.unit(1.75, "feet"),
  29283. name: "Rump",
  29284. image: {
  29285. source: "./media/characters/cecelia-swift/rump.svg"
  29286. }
  29287. },
  29288. },
  29289. [
  29290. {
  29291. name: "Normal",
  29292. height: math.unit(5 + 9 / 12, "feet"),
  29293. default: true
  29294. },
  29295. {
  29296. name: "Big",
  29297. height: math.unit(50, "feet")
  29298. },
  29299. {
  29300. name: "Macro",
  29301. height: math.unit(100, "feet")
  29302. },
  29303. {
  29304. name: "Macro+",
  29305. height: math.unit(500, "feet")
  29306. },
  29307. {
  29308. name: "Macro++",
  29309. height: math.unit(1000, "feet")
  29310. },
  29311. ]
  29312. ))
  29313. characterMakers.push(() => makeCharacter(
  29314. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29315. {
  29316. front: {
  29317. height: math.unit(6, "feet"),
  29318. weight: math.unit(150, "lb"),
  29319. name: "Front",
  29320. image: {
  29321. source: "./media/characters/kaunan/front.svg",
  29322. extra: 2890 / 2523,
  29323. bottom: 49 / 2939
  29324. }
  29325. },
  29326. },
  29327. [
  29328. {
  29329. name: "Macro",
  29330. height: math.unit(150, "feet"),
  29331. default: true
  29332. },
  29333. ]
  29334. ))
  29335. characterMakers.push(() => makeCharacter(
  29336. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29337. {
  29338. dressed: {
  29339. height: math.unit(175, "cm"),
  29340. weight: math.unit(60, "kg"),
  29341. name: "Dressed",
  29342. image: {
  29343. source: "./media/characters/fei/dressed.svg",
  29344. extra: 1402/1278,
  29345. bottom: 27/1429
  29346. }
  29347. },
  29348. nude: {
  29349. height: math.unit(175, "cm"),
  29350. weight: math.unit(60, "kg"),
  29351. name: "Nude",
  29352. image: {
  29353. source: "./media/characters/fei/nude.svg",
  29354. extra: 1402/1278,
  29355. bottom: 27/1429
  29356. }
  29357. },
  29358. heels: {
  29359. height: math.unit(0.466, "feet"),
  29360. name: "Heels",
  29361. image: {
  29362. source: "./media/characters/fei/heels.svg",
  29363. extra: 156/152,
  29364. bottom: 28/184
  29365. }
  29366. },
  29367. },
  29368. [
  29369. {
  29370. name: "Mortal",
  29371. height: math.unit(175, "cm")
  29372. },
  29373. {
  29374. name: "Normal",
  29375. height: math.unit(3500, "m")
  29376. },
  29377. {
  29378. name: "Stroll",
  29379. height: math.unit(18.4, "km"),
  29380. default: true
  29381. },
  29382. {
  29383. name: "Showoff",
  29384. height: math.unit(175, "km")
  29385. },
  29386. ]
  29387. ))
  29388. characterMakers.push(() => makeCharacter(
  29389. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29390. {
  29391. front: {
  29392. height: math.unit(7, "feet"),
  29393. weight: math.unit(1000, "kg"),
  29394. name: "Front",
  29395. image: {
  29396. source: "./media/characters/edrax/front.svg",
  29397. extra: 2838 / 2550,
  29398. bottom: 130 / 2968
  29399. }
  29400. },
  29401. },
  29402. [
  29403. {
  29404. name: "Small",
  29405. height: math.unit(7, "feet")
  29406. },
  29407. {
  29408. name: "Normal",
  29409. height: math.unit(1500, "meters")
  29410. },
  29411. {
  29412. name: "Mega",
  29413. height: math.unit(12000000, "km"),
  29414. default: true
  29415. },
  29416. {
  29417. name: "Megamacro",
  29418. height: math.unit(10600000, "lightyears")
  29419. },
  29420. {
  29421. name: "Hypermacro",
  29422. height: math.unit(256, "yottameters")
  29423. },
  29424. ]
  29425. ))
  29426. characterMakers.push(() => makeCharacter(
  29427. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29428. {
  29429. front: {
  29430. height: math.unit(10, "feet"),
  29431. weight: math.unit(750, "lb"),
  29432. name: "Front",
  29433. image: {
  29434. source: "./media/characters/clove/front.svg",
  29435. extra: 1918/1751,
  29436. bottom: 52/1970
  29437. }
  29438. },
  29439. back: {
  29440. height: math.unit(10, "feet"),
  29441. weight: math.unit(750, "lb"),
  29442. name: "Back",
  29443. image: {
  29444. source: "./media/characters/clove/back.svg",
  29445. extra: 1912/1747,
  29446. bottom: 50/1962
  29447. }
  29448. },
  29449. },
  29450. [
  29451. {
  29452. name: "Normal",
  29453. height: math.unit(10, "feet"),
  29454. default: true
  29455. },
  29456. ]
  29457. ))
  29458. characterMakers.push(() => makeCharacter(
  29459. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29460. {
  29461. front: {
  29462. height: math.unit(4, "feet"),
  29463. weight: math.unit(50, "lb"),
  29464. name: "Front",
  29465. image: {
  29466. source: "./media/characters/alex-rabbit/front.svg",
  29467. extra: 507 / 458,
  29468. bottom: 18.5 / 527
  29469. }
  29470. },
  29471. back: {
  29472. height: math.unit(4, "feet"),
  29473. weight: math.unit(50, "lb"),
  29474. name: "Back",
  29475. image: {
  29476. source: "./media/characters/alex-rabbit/back.svg",
  29477. extra: 502 / 460,
  29478. bottom: 18.9 / 521
  29479. }
  29480. },
  29481. },
  29482. [
  29483. {
  29484. name: "Normal",
  29485. height: math.unit(4, "feet"),
  29486. default: true
  29487. },
  29488. ]
  29489. ))
  29490. characterMakers.push(() => makeCharacter(
  29491. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29492. {
  29493. front: {
  29494. height: math.unit(1 + 3 / 12, "feet"),
  29495. weight: math.unit(80, "lb"),
  29496. name: "Front",
  29497. image: {
  29498. source: "./media/characters/zander-rose/front.svg",
  29499. extra: 916 / 797,
  29500. bottom: 17 / 933
  29501. }
  29502. },
  29503. back: {
  29504. height: math.unit(1 + 3 / 12, "feet"),
  29505. weight: math.unit(80, "lb"),
  29506. name: "Back",
  29507. image: {
  29508. source: "./media/characters/zander-rose/back.svg",
  29509. extra: 903 / 779,
  29510. bottom: 31 / 934
  29511. }
  29512. },
  29513. },
  29514. [
  29515. {
  29516. name: "Normal",
  29517. height: math.unit(1 + 3 / 12, "feet"),
  29518. default: true
  29519. },
  29520. ]
  29521. ))
  29522. characterMakers.push(() => makeCharacter(
  29523. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29524. {
  29525. anthro: {
  29526. height: math.unit(6, "feet"),
  29527. weight: math.unit(150, "lb"),
  29528. name: "Anthro",
  29529. image: {
  29530. source: "./media/characters/razz/anthro.svg",
  29531. extra: 1437 / 1343,
  29532. bottom: 48 / 1485
  29533. }
  29534. },
  29535. feral: {
  29536. height: math.unit(6, "feet"),
  29537. weight: math.unit(150, "lb"),
  29538. name: "Feral",
  29539. image: {
  29540. source: "./media/characters/razz/feral.svg",
  29541. extra: 2569 / 1385,
  29542. bottom: 95 / 2664
  29543. }
  29544. },
  29545. },
  29546. [
  29547. {
  29548. name: "Normal",
  29549. height: math.unit(6, "feet"),
  29550. default: true
  29551. },
  29552. ]
  29553. ))
  29554. characterMakers.push(() => makeCharacter(
  29555. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29556. {
  29557. front: {
  29558. height: math.unit(9 + 4 / 12, "feet"),
  29559. weight: math.unit(500, "lb"),
  29560. name: "Front",
  29561. image: {
  29562. source: "./media/characters/morrigan/front.svg",
  29563. extra: 2707 / 2579,
  29564. bottom: 156 / 2863
  29565. }
  29566. },
  29567. },
  29568. [
  29569. {
  29570. name: "Normal",
  29571. height: math.unit(9 + 4 / 12, "feet"),
  29572. default: true
  29573. },
  29574. ]
  29575. ))
  29576. characterMakers.push(() => makeCharacter(
  29577. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29578. {
  29579. front: {
  29580. height: math.unit(5, "stories"),
  29581. weight: math.unit(4000, "lb"),
  29582. name: "Front",
  29583. image: {
  29584. source: "./media/characters/jenene/front.svg",
  29585. extra: 1780 / 1710,
  29586. bottom: 57 / 1837
  29587. }
  29588. },
  29589. },
  29590. [
  29591. {
  29592. name: "Normal",
  29593. height: math.unit(5, "stories"),
  29594. default: true
  29595. },
  29596. ]
  29597. ))
  29598. characterMakers.push(() => makeCharacter(
  29599. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29600. {
  29601. taurSfw: {
  29602. height: math.unit(10, "meters"),
  29603. weight: math.unit(17500, "kg"),
  29604. name: "Taur",
  29605. image: {
  29606. source: "./media/characters/faey/taur-sfw.svg",
  29607. extra: 1200 / 968,
  29608. bottom: 41 / 1241
  29609. }
  29610. },
  29611. chestmaw: {
  29612. height: math.unit(2.01, "meters"),
  29613. name: "Chestmaw",
  29614. image: {
  29615. source: "./media/characters/faey/chestmaw.svg"
  29616. }
  29617. },
  29618. foot: {
  29619. height: math.unit(2.43, "meters"),
  29620. name: "Foot",
  29621. image: {
  29622. source: "./media/characters/faey/foot.svg"
  29623. }
  29624. },
  29625. jaws: {
  29626. height: math.unit(1.66, "meters"),
  29627. name: "Jaws",
  29628. image: {
  29629. source: "./media/characters/faey/jaws.svg"
  29630. }
  29631. },
  29632. tongues: {
  29633. height: math.unit(2.01, "meters"),
  29634. name: "Tongues",
  29635. image: {
  29636. source: "./media/characters/faey/tongues.svg"
  29637. }
  29638. },
  29639. },
  29640. [
  29641. {
  29642. name: "Small",
  29643. height: math.unit(10, "meters"),
  29644. default: true
  29645. },
  29646. {
  29647. name: "Big",
  29648. height: math.unit(500000, "km")
  29649. },
  29650. ]
  29651. ))
  29652. characterMakers.push(() => makeCharacter(
  29653. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29654. {
  29655. front: {
  29656. height: math.unit(7, "feet"),
  29657. weight: math.unit(275, "lb"),
  29658. name: "Front",
  29659. image: {
  29660. source: "./media/characters/roku/front.svg",
  29661. extra: 903 / 878,
  29662. bottom: 37 / 940
  29663. }
  29664. },
  29665. },
  29666. [
  29667. {
  29668. name: "Normal",
  29669. height: math.unit(7, "feet"),
  29670. default: true
  29671. },
  29672. {
  29673. name: "Macro",
  29674. height: math.unit(500, "feet")
  29675. },
  29676. {
  29677. name: "Megamacro",
  29678. height: math.unit(200, "miles")
  29679. },
  29680. ]
  29681. ))
  29682. characterMakers.push(() => makeCharacter(
  29683. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29684. {
  29685. front: {
  29686. height: math.unit(6 + 2 / 12, "feet"),
  29687. weight: math.unit(150, "lb"),
  29688. name: "Front",
  29689. image: {
  29690. source: "./media/characters/lira/front.svg",
  29691. extra: 1727 / 1605,
  29692. bottom: 26 / 1753
  29693. }
  29694. },
  29695. back: {
  29696. height: math.unit(6 + 2 / 12, "feet"),
  29697. weight: math.unit(150, "lb"),
  29698. name: "Back",
  29699. image: {
  29700. source: "./media/characters/lira/back.svg",
  29701. extra: 1713/1621,
  29702. bottom: 20/1733
  29703. }
  29704. },
  29705. hand: {
  29706. height: math.unit(0.75, "feet"),
  29707. name: "Hand",
  29708. image: {
  29709. source: "./media/characters/lira/hand.svg"
  29710. }
  29711. },
  29712. maw: {
  29713. height: math.unit(0.65, "feet"),
  29714. name: "Maw",
  29715. image: {
  29716. source: "./media/characters/lira/maw.svg"
  29717. }
  29718. },
  29719. pawDigi: {
  29720. height: math.unit(1.6, "feet"),
  29721. name: "Paw Digi",
  29722. image: {
  29723. source: "./media/characters/lira/paw-digi.svg"
  29724. }
  29725. },
  29726. pawPlanti: {
  29727. height: math.unit(1.4, "feet"),
  29728. name: "Paw Planti",
  29729. image: {
  29730. source: "./media/characters/lira/paw-planti.svg"
  29731. }
  29732. },
  29733. },
  29734. [
  29735. {
  29736. name: "Normal",
  29737. height: math.unit(6 + 2 / 12, "feet"),
  29738. default: true
  29739. },
  29740. {
  29741. name: "Macro",
  29742. height: math.unit(100, "feet")
  29743. },
  29744. {
  29745. name: "Macro²",
  29746. height: math.unit(1600, "feet")
  29747. },
  29748. {
  29749. name: "Planetary",
  29750. height: math.unit(20, "earths")
  29751. },
  29752. ]
  29753. ))
  29754. characterMakers.push(() => makeCharacter(
  29755. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29756. {
  29757. front: {
  29758. height: math.unit(6, "feet"),
  29759. weight: math.unit(150, "lb"),
  29760. name: "Front",
  29761. image: {
  29762. source: "./media/characters/hadjet/front.svg",
  29763. extra: 1480 / 1346,
  29764. bottom: 26 / 1506
  29765. }
  29766. },
  29767. frontNsfw: {
  29768. height: math.unit(6, "feet"),
  29769. weight: math.unit(150, "lb"),
  29770. name: "Front (NSFW)",
  29771. image: {
  29772. source: "./media/characters/hadjet/front-nsfw.svg",
  29773. extra: 1440 / 1358,
  29774. bottom: 52 / 1492
  29775. }
  29776. },
  29777. },
  29778. [
  29779. {
  29780. name: "Macro",
  29781. height: math.unit(10, "stories"),
  29782. default: true
  29783. },
  29784. {
  29785. name: "Megamacro",
  29786. height: math.unit(1.5, "miles")
  29787. },
  29788. {
  29789. name: "Megamacro+",
  29790. height: math.unit(5, "miles")
  29791. },
  29792. ]
  29793. ))
  29794. characterMakers.push(() => makeCharacter(
  29795. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29796. {
  29797. side: {
  29798. height: math.unit(106, "feet"),
  29799. weight: math.unit(500, "tonnes"),
  29800. name: "Side",
  29801. image: {
  29802. source: "./media/characters/kodran/side.svg",
  29803. extra: 553 / 480,
  29804. bottom: 33 / 586
  29805. }
  29806. },
  29807. front: {
  29808. height: math.unit(132, "feet"),
  29809. weight: math.unit(500, "tonnes"),
  29810. name: "Front",
  29811. image: {
  29812. source: "./media/characters/kodran/front.svg",
  29813. extra: 667 / 643,
  29814. bottom: 42 / 709
  29815. }
  29816. },
  29817. flying: {
  29818. height: math.unit(350, "feet"),
  29819. weight: math.unit(500, "tonnes"),
  29820. name: "Flying",
  29821. image: {
  29822. source: "./media/characters/kodran/flying.svg"
  29823. }
  29824. },
  29825. foot: {
  29826. height: math.unit(33, "feet"),
  29827. name: "Foot",
  29828. image: {
  29829. source: "./media/characters/kodran/foot.svg"
  29830. }
  29831. },
  29832. footFront: {
  29833. height: math.unit(19, "feet"),
  29834. name: "Foot (Front)",
  29835. image: {
  29836. source: "./media/characters/kodran/foot-front.svg",
  29837. extra: 261 / 261,
  29838. bottom: 91 / 352
  29839. }
  29840. },
  29841. headFront: {
  29842. height: math.unit(53, "feet"),
  29843. name: "Head (Front)",
  29844. image: {
  29845. source: "./media/characters/kodran/head-front.svg"
  29846. }
  29847. },
  29848. headSide: {
  29849. height: math.unit(65, "feet"),
  29850. name: "Head (Side)",
  29851. image: {
  29852. source: "./media/characters/kodran/head-side.svg"
  29853. }
  29854. },
  29855. throat: {
  29856. height: math.unit(79, "feet"),
  29857. name: "Throat",
  29858. image: {
  29859. source: "./media/characters/kodran/throat.svg"
  29860. }
  29861. },
  29862. },
  29863. [
  29864. {
  29865. name: "Large",
  29866. height: math.unit(106, "feet"),
  29867. default: true
  29868. },
  29869. ]
  29870. ))
  29871. characterMakers.push(() => makeCharacter(
  29872. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29873. {
  29874. side: {
  29875. height: math.unit(11, "feet"),
  29876. weight: math.unit(150, "lb"),
  29877. name: "Side",
  29878. image: {
  29879. source: "./media/characters/pyxaron/side.svg",
  29880. extra: 305 / 195,
  29881. bottom: 17 / 322
  29882. }
  29883. },
  29884. },
  29885. [
  29886. {
  29887. name: "Normal",
  29888. height: math.unit(11, "feet"),
  29889. default: true
  29890. },
  29891. ]
  29892. ))
  29893. characterMakers.push(() => makeCharacter(
  29894. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29895. {
  29896. front: {
  29897. height: math.unit(6, "feet"),
  29898. weight: math.unit(150, "lb"),
  29899. name: "Front",
  29900. image: {
  29901. source: "./media/characters/meep/front.svg",
  29902. extra: 88 / 80,
  29903. bottom: 6 / 94
  29904. }
  29905. },
  29906. },
  29907. [
  29908. {
  29909. name: "Fun Sized",
  29910. height: math.unit(2, "inches"),
  29911. default: true
  29912. },
  29913. {
  29914. name: "Friend Sized",
  29915. height: math.unit(8, "inches")
  29916. },
  29917. ]
  29918. ))
  29919. characterMakers.push(() => makeCharacter(
  29920. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29921. {
  29922. front: {
  29923. height: math.unit(15, "feet"),
  29924. weight: math.unit(2500, "lb"),
  29925. name: "Front",
  29926. image: {
  29927. source: "./media/characters/holly-rabbit/front.svg",
  29928. extra: 1433 / 1233,
  29929. bottom: 125 / 1558
  29930. }
  29931. },
  29932. dick: {
  29933. height: math.unit(4.6, "feet"),
  29934. name: "Dick",
  29935. image: {
  29936. source: "./media/characters/holly-rabbit/dick.svg"
  29937. }
  29938. },
  29939. },
  29940. [
  29941. {
  29942. name: "Normal",
  29943. height: math.unit(15, "feet"),
  29944. default: true
  29945. },
  29946. {
  29947. name: "Macro",
  29948. height: math.unit(250, "feet")
  29949. },
  29950. {
  29951. name: "Macro+",
  29952. height: math.unit(2500, "feet")
  29953. },
  29954. ]
  29955. ))
  29956. characterMakers.push(() => makeCharacter(
  29957. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29958. {
  29959. front: {
  29960. height: math.unit(3.02, "meters"),
  29961. weight: math.unit(500, "kg"),
  29962. name: "Front",
  29963. image: {
  29964. source: "./media/characters/drena/front.svg",
  29965. extra: 282 / 243,
  29966. bottom: 8 / 290
  29967. }
  29968. },
  29969. side: {
  29970. height: math.unit(3.02, "meters"),
  29971. weight: math.unit(500, "kg"),
  29972. name: "Side",
  29973. image: {
  29974. source: "./media/characters/drena/side.svg",
  29975. extra: 280 / 245,
  29976. bottom: 10 / 290
  29977. }
  29978. },
  29979. back: {
  29980. height: math.unit(3.02, "meters"),
  29981. weight: math.unit(500, "kg"),
  29982. name: "Back",
  29983. image: {
  29984. source: "./media/characters/drena/back.svg",
  29985. extra: 278 / 243,
  29986. bottom: 2 / 280
  29987. }
  29988. },
  29989. foot: {
  29990. height: math.unit(0.75, "meters"),
  29991. name: "Foot",
  29992. image: {
  29993. source: "./media/characters/drena/foot.svg"
  29994. }
  29995. },
  29996. maw: {
  29997. height: math.unit(0.82, "meters"),
  29998. name: "Maw",
  29999. image: {
  30000. source: "./media/characters/drena/maw.svg"
  30001. }
  30002. },
  30003. eating: {
  30004. height: math.unit(0.75, "meters"),
  30005. name: "Eating",
  30006. image: {
  30007. source: "./media/characters/drena/eating.svg"
  30008. }
  30009. },
  30010. rump: {
  30011. height: math.unit(0.93, "meters"),
  30012. name: "Rump",
  30013. image: {
  30014. source: "./media/characters/drena/rump.svg"
  30015. }
  30016. },
  30017. },
  30018. [
  30019. {
  30020. name: "Normal",
  30021. height: math.unit(3.02, "meters"),
  30022. default: true
  30023. },
  30024. ]
  30025. ))
  30026. characterMakers.push(() => makeCharacter(
  30027. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30028. {
  30029. front: {
  30030. height: math.unit(6 + 4 / 12, "feet"),
  30031. weight: math.unit(250, "lb"),
  30032. name: "Front",
  30033. image: {
  30034. source: "./media/characters/remmyzilla/front.svg",
  30035. extra: 4033 / 3588,
  30036. bottom: 123 / 4156
  30037. }
  30038. },
  30039. back: {
  30040. height: math.unit(6 + 4 / 12, "feet"),
  30041. weight: math.unit(250, "lb"),
  30042. name: "Back",
  30043. image: {
  30044. source: "./media/characters/remmyzilla/back.svg",
  30045. extra: 2687 / 2555,
  30046. bottom: 48 / 2735
  30047. }
  30048. },
  30049. paw: {
  30050. height: math.unit(1.73, "feet"),
  30051. name: "Paw",
  30052. image: {
  30053. source: "./media/characters/remmyzilla/paw.svg"
  30054. },
  30055. extraAttributes: {
  30056. "toeSize": {
  30057. name: "Toe Size",
  30058. power: 2,
  30059. type: "area",
  30060. base: math.unit(0.0035, "m^2")
  30061. },
  30062. "padSize": {
  30063. name: "Pad Size",
  30064. power: 2,
  30065. type: "area",
  30066. base: math.unit(0.015, "m^2")
  30067. },
  30068. "pawsize": {
  30069. name: "Paw Size",
  30070. power: 2,
  30071. type: "area",
  30072. base: math.unit(0.072, "m^2")
  30073. },
  30074. }
  30075. },
  30076. maw: {
  30077. height: math.unit(1.73, "feet"),
  30078. name: "Maw",
  30079. image: {
  30080. source: "./media/characters/remmyzilla/maw.svg"
  30081. }
  30082. },
  30083. },
  30084. [
  30085. {
  30086. name: "Normal",
  30087. height: math.unit(6 + 4 / 12, "feet")
  30088. },
  30089. {
  30090. name: "Minimacro",
  30091. height: math.unit(12 + 8 / 12, "feet")
  30092. },
  30093. {
  30094. name: "Normal",
  30095. height: math.unit(640, "feet"),
  30096. default: true
  30097. },
  30098. {
  30099. name: "Megamacro",
  30100. height: math.unit(6400, "feet")
  30101. },
  30102. {
  30103. name: "Gigamacro",
  30104. height: math.unit(64000, "miles")
  30105. },
  30106. ]
  30107. ))
  30108. characterMakers.push(() => makeCharacter(
  30109. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30110. {
  30111. front: {
  30112. height: math.unit(2.5, "meters"),
  30113. weight: math.unit(300, "lb"),
  30114. name: "Front",
  30115. image: {
  30116. source: "./media/characters/lawrence/front.svg",
  30117. extra: 357 / 335,
  30118. bottom: 30 / 387
  30119. }
  30120. },
  30121. back: {
  30122. height: math.unit(2.5, "meters"),
  30123. weight: math.unit(300, "lb"),
  30124. name: "Back",
  30125. image: {
  30126. source: "./media/characters/lawrence/back.svg",
  30127. extra: 357 / 338,
  30128. bottom: 16 / 373
  30129. }
  30130. },
  30131. head: {
  30132. height: math.unit(0.9, "meter"),
  30133. name: "Head",
  30134. image: {
  30135. source: "./media/characters/lawrence/head.svg"
  30136. }
  30137. },
  30138. maw: {
  30139. height: math.unit(0.7, "meter"),
  30140. name: "Maw",
  30141. image: {
  30142. source: "./media/characters/lawrence/maw.svg"
  30143. }
  30144. },
  30145. footBottom: {
  30146. height: math.unit(0.5, "meter"),
  30147. name: "Foot (Bottom)",
  30148. image: {
  30149. source: "./media/characters/lawrence/foot-bottom.svg"
  30150. }
  30151. },
  30152. footTop: {
  30153. height: math.unit(0.5, "meter"),
  30154. name: "Foot (Top)",
  30155. image: {
  30156. source: "./media/characters/lawrence/foot-top.svg"
  30157. }
  30158. },
  30159. },
  30160. [
  30161. {
  30162. name: "Normal",
  30163. height: math.unit(2.5, "meters"),
  30164. default: true
  30165. },
  30166. {
  30167. name: "Macro",
  30168. height: math.unit(95, "meters")
  30169. },
  30170. {
  30171. name: "Megamacro",
  30172. height: math.unit(150, "km")
  30173. },
  30174. ]
  30175. ))
  30176. characterMakers.push(() => makeCharacter(
  30177. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30178. {
  30179. front: {
  30180. height: math.unit(4.2, "meters"),
  30181. name: "Front",
  30182. image: {
  30183. source: "./media/characters/sydney/front.svg",
  30184. extra: 1323 / 1277,
  30185. bottom: 111 / 1434
  30186. }
  30187. },
  30188. },
  30189. [
  30190. {
  30191. name: "Normal",
  30192. height: math.unit(4.2, "meters"),
  30193. default: true
  30194. },
  30195. ]
  30196. ))
  30197. characterMakers.push(() => makeCharacter(
  30198. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30199. {
  30200. back: {
  30201. height: math.unit(201, "feet"),
  30202. name: "Back",
  30203. image: {
  30204. source: "./media/characters/jessica/back.svg",
  30205. extra: 273 / 259,
  30206. bottom: 7 / 280
  30207. }
  30208. },
  30209. },
  30210. [
  30211. {
  30212. name: "Normal",
  30213. height: math.unit(201, "feet"),
  30214. default: true
  30215. },
  30216. {
  30217. name: "Megamacro",
  30218. height: math.unit(8, "miles")
  30219. },
  30220. ]
  30221. ))
  30222. characterMakers.push(() => makeCharacter(
  30223. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30224. {
  30225. side: {
  30226. height: math.unit(5.6, "m"),
  30227. weight: math.unit(8000, "kg"),
  30228. name: "Side",
  30229. image: {
  30230. source: "./media/characters/victoria/side.svg",
  30231. extra: 1542/1229,
  30232. bottom: 124/1666
  30233. }
  30234. },
  30235. maw: {
  30236. height: math.unit(7.14, "feet"),
  30237. name: "Maw",
  30238. image: {
  30239. source: "./media/characters/victoria/maw.svg"
  30240. }
  30241. },
  30242. },
  30243. [
  30244. {
  30245. name: "Normal",
  30246. height: math.unit(5.6, "m"),
  30247. default: true
  30248. },
  30249. ]
  30250. ))
  30251. characterMakers.push(() => makeCharacter(
  30252. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30253. {
  30254. front: {
  30255. height: math.unit(5 + 6 / 12, "feet"),
  30256. name: "Front",
  30257. image: {
  30258. source: "./media/characters/cat/front.svg",
  30259. extra: 1449/1295,
  30260. bottom: 34/1483
  30261. },
  30262. form: "cat",
  30263. default: true
  30264. },
  30265. back: {
  30266. height: math.unit(5 + 6 / 12, "feet"),
  30267. name: "Back",
  30268. image: {
  30269. source: "./media/characters/cat/back.svg",
  30270. extra: 1466/1301,
  30271. bottom: 19/1485
  30272. },
  30273. form: "cat"
  30274. },
  30275. taur: {
  30276. height: math.unit(7, "feet"),
  30277. name: "Taur",
  30278. image: {
  30279. source: "./media/characters/cat/taur.svg",
  30280. extra: 1389/1233,
  30281. bottom: 83/1472
  30282. },
  30283. form: "taur",
  30284. default: true
  30285. },
  30286. lucarioFront: {
  30287. height: math.unit(4, "feet"),
  30288. name: "Lucario (Front)",
  30289. image: {
  30290. source: "./media/characters/cat/lucario-front.svg",
  30291. extra: 1149/1019,
  30292. bottom: 84/1233
  30293. },
  30294. form: "lucario",
  30295. default: true
  30296. },
  30297. lucarioBack: {
  30298. height: math.unit(4, "feet"),
  30299. name: "Lucario (Back)",
  30300. image: {
  30301. source: "./media/characters/cat/lucario-back.svg",
  30302. extra: 1190/1059,
  30303. bottom: 33/1223
  30304. },
  30305. form: "lucario"
  30306. },
  30307. megaLucario: {
  30308. height: math.unit(4, "feet"),
  30309. name: "Mega Lucario",
  30310. image: {
  30311. source: "./media/characters/cat/mega-lucario.svg",
  30312. extra: 1515 / 1319,
  30313. bottom: 63 / 1578
  30314. },
  30315. form: "lucario"
  30316. },
  30317. nickit: {
  30318. height: math.unit(2, "feet"),
  30319. name: "Nickit",
  30320. image: {
  30321. source: "./media/characters/cat/nickit.svg",
  30322. extra: 1980 / 1585,
  30323. bottom: 102 / 2082
  30324. },
  30325. form: "nickit",
  30326. default: true
  30327. },
  30328. lopunnyFront: {
  30329. height: math.unit(5, "feet"),
  30330. name: "Lopunny (Front)",
  30331. image: {
  30332. source: "./media/characters/cat/lopunny-front.svg",
  30333. extra: 1782 / 1469,
  30334. bottom: 38 / 1820
  30335. },
  30336. form: "lopunny",
  30337. default: true
  30338. },
  30339. lopunnyBack: {
  30340. height: math.unit(5, "feet"),
  30341. name: "Lopunny (Back)",
  30342. image: {
  30343. source: "./media/characters/cat/lopunny-back.svg",
  30344. extra: 1660 / 1490,
  30345. bottom: 25 / 1685
  30346. },
  30347. form: "lopunny"
  30348. },
  30349. },
  30350. [
  30351. {
  30352. name: "Really small",
  30353. height: math.unit(1, "nm")
  30354. },
  30355. {
  30356. name: "Micro",
  30357. height: math.unit(5, "inches")
  30358. },
  30359. {
  30360. name: "Normal",
  30361. height: math.unit(5 + 6 / 12, "feet"),
  30362. default: true
  30363. },
  30364. {
  30365. name: "Macro",
  30366. height: math.unit(50, "feet")
  30367. },
  30368. {
  30369. name: "Macro+",
  30370. height: math.unit(150, "feet")
  30371. },
  30372. {
  30373. name: "Megamacro",
  30374. height: math.unit(100, "miles")
  30375. },
  30376. ]
  30377. ))
  30378. characterMakers.push(() => makeCharacter(
  30379. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30380. {
  30381. front: {
  30382. height: math.unit(63.4, "meters"),
  30383. weight: math.unit(3.28349e+6, "kilograms"),
  30384. name: "Front",
  30385. image: {
  30386. source: "./media/characters/kirina-violet/front.svg",
  30387. extra: 2812 / 2725,
  30388. bottom: 0 / 2812
  30389. }
  30390. },
  30391. back: {
  30392. height: math.unit(63.4, "meters"),
  30393. weight: math.unit(3.28349e+6, "kilograms"),
  30394. name: "Back",
  30395. image: {
  30396. source: "./media/characters/kirina-violet/back.svg",
  30397. extra: 2812 / 2725,
  30398. bottom: 0 / 2812
  30399. }
  30400. },
  30401. mouth: {
  30402. height: math.unit(4.35, "meters"),
  30403. name: "Mouth",
  30404. image: {
  30405. source: "./media/characters/kirina-violet/mouth.svg"
  30406. }
  30407. },
  30408. paw: {
  30409. height: math.unit(5.6, "meters"),
  30410. name: "Paw",
  30411. image: {
  30412. source: "./media/characters/kirina-violet/paw.svg"
  30413. }
  30414. },
  30415. tail: {
  30416. height: math.unit(18, "meters"),
  30417. name: "Tail",
  30418. image: {
  30419. source: "./media/characters/kirina-violet/tail.svg"
  30420. }
  30421. },
  30422. },
  30423. [
  30424. {
  30425. name: "Macro",
  30426. height: math.unit(63.4, "meters"),
  30427. default: true
  30428. },
  30429. ]
  30430. ))
  30431. characterMakers.push(() => makeCharacter(
  30432. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30433. {
  30434. front: {
  30435. height: math.unit(75, "feet"),
  30436. name: "Front",
  30437. image: {
  30438. source: "./media/characters/cat-gigachu/front.svg",
  30439. extra: 1239/1027,
  30440. bottom: 32/1271
  30441. }
  30442. },
  30443. back: {
  30444. height: math.unit(75, "feet"),
  30445. name: "Back",
  30446. image: {
  30447. source: "./media/characters/cat-gigachu/back.svg",
  30448. extra: 1229/1030,
  30449. bottom: 9/1238
  30450. }
  30451. },
  30452. },
  30453. [
  30454. {
  30455. name: "Dynamax",
  30456. height: math.unit(75, "feet"),
  30457. default: true
  30458. },
  30459. ]
  30460. ))
  30461. characterMakers.push(() => makeCharacter(
  30462. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30463. {
  30464. front: {
  30465. height: math.unit(6, "feet"),
  30466. weight: math.unit(150, "lb"),
  30467. name: "Front",
  30468. image: {
  30469. source: "./media/characters/sfaiyan/front.svg",
  30470. extra: 999 / 978,
  30471. bottom: 5 / 1004
  30472. }
  30473. },
  30474. },
  30475. [
  30476. {
  30477. name: "Normal",
  30478. height: math.unit(1.82, "meters")
  30479. },
  30480. {
  30481. name: "Giant",
  30482. height: math.unit(2.27, "km"),
  30483. default: true
  30484. },
  30485. ]
  30486. ))
  30487. characterMakers.push(() => makeCharacter(
  30488. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30489. {
  30490. front: {
  30491. height: math.unit(179, "cm"),
  30492. weight: math.unit(100, "kg"),
  30493. name: "Front",
  30494. image: {
  30495. source: "./media/characters/raunehkeli/front.svg",
  30496. extra: 1934 / 1926,
  30497. bottom: 0 / 1934
  30498. }
  30499. },
  30500. },
  30501. [
  30502. {
  30503. name: "Normal",
  30504. height: math.unit(179, "cm")
  30505. },
  30506. {
  30507. name: "Maximum",
  30508. height: math.unit(575, "meters"),
  30509. default: true
  30510. },
  30511. ]
  30512. ))
  30513. characterMakers.push(() => makeCharacter(
  30514. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30515. {
  30516. front: {
  30517. height: math.unit(6, "feet"),
  30518. weight: math.unit(150, "lb"),
  30519. name: "Front",
  30520. image: {
  30521. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30522. extra: 2625 / 2518,
  30523. bottom: 60 / 2685
  30524. }
  30525. },
  30526. },
  30527. [
  30528. {
  30529. name: "Normal",
  30530. height: math.unit(6 + 2 / 12, "feet")
  30531. },
  30532. {
  30533. name: "Macro",
  30534. height: math.unit(1180, "feet"),
  30535. default: true
  30536. },
  30537. ]
  30538. ))
  30539. characterMakers.push(() => makeCharacter(
  30540. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30541. {
  30542. front: {
  30543. height: math.unit(5 + 6 / 12, "feet"),
  30544. weight: math.unit(108, "lb"),
  30545. name: "Front",
  30546. image: {
  30547. source: "./media/characters/lilith-zott/front.svg",
  30548. extra: 2510 / 2238,
  30549. bottom: 100 / 2610
  30550. }
  30551. },
  30552. frontDressed: {
  30553. height: math.unit(5 + 6 / 12, "feet"),
  30554. weight: math.unit(108, "lb"),
  30555. name: "Front (Dressed)",
  30556. image: {
  30557. source: "./media/characters/lilith-zott/front-dressed.svg",
  30558. extra: 2510 / 2238,
  30559. bottom: 100 / 2610
  30560. }
  30561. },
  30562. },
  30563. [
  30564. {
  30565. name: "Normal",
  30566. height: math.unit(5 + 6 / 12, "feet")
  30567. },
  30568. {
  30569. name: "Macro",
  30570. height: math.unit(1030, "feet"),
  30571. default: true
  30572. },
  30573. ]
  30574. ))
  30575. characterMakers.push(() => makeCharacter(
  30576. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30577. {
  30578. front: {
  30579. height: math.unit(6, "feet"),
  30580. weight: math.unit(150, "lb"),
  30581. name: "Front",
  30582. image: {
  30583. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30584. extra: 2567 / 2435,
  30585. bottom: 39 / 2606
  30586. }
  30587. },
  30588. frontSuper: {
  30589. height: math.unit(6, "feet"),
  30590. name: "Front (Super)",
  30591. image: {
  30592. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30593. extra: 2567 / 2435,
  30594. bottom: 39 / 2606
  30595. }
  30596. },
  30597. },
  30598. [
  30599. {
  30600. name: "Normal",
  30601. height: math.unit(5 + 10 / 12, "feet")
  30602. },
  30603. {
  30604. name: "Macro",
  30605. height: math.unit(1100, "feet"),
  30606. default: true
  30607. },
  30608. ]
  30609. ))
  30610. characterMakers.push(() => makeCharacter(
  30611. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30612. {
  30613. front: {
  30614. height: math.unit(100, "miles"),
  30615. name: "Front",
  30616. image: {
  30617. source: "./media/characters/sona/front.svg",
  30618. extra: 2433 / 2201,
  30619. bottom: 53 / 2486
  30620. }
  30621. },
  30622. foot: {
  30623. height: math.unit(16.1, "miles"),
  30624. name: "Foot",
  30625. image: {
  30626. source: "./media/characters/sona/foot.svg"
  30627. }
  30628. },
  30629. },
  30630. [
  30631. {
  30632. name: "Macro",
  30633. height: math.unit(100, "miles"),
  30634. default: true
  30635. },
  30636. ]
  30637. ))
  30638. characterMakers.push(() => makeCharacter(
  30639. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30640. {
  30641. front: {
  30642. height: math.unit(6, "feet"),
  30643. weight: math.unit(150, "lb"),
  30644. name: "Front",
  30645. image: {
  30646. source: "./media/characters/bailey/front.svg",
  30647. extra: 1778 / 1724,
  30648. bottom: 30 / 1808
  30649. }
  30650. },
  30651. },
  30652. [
  30653. {
  30654. name: "Micro",
  30655. height: math.unit(4, "inches")
  30656. },
  30657. {
  30658. name: "Normal",
  30659. height: math.unit(5 + 5 / 12, "feet"),
  30660. default: true
  30661. },
  30662. {
  30663. name: "Macro",
  30664. height: math.unit(250, "feet")
  30665. },
  30666. {
  30667. name: "Megamacro",
  30668. height: math.unit(100, "miles")
  30669. },
  30670. ]
  30671. ))
  30672. characterMakers.push(() => makeCharacter(
  30673. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30674. {
  30675. front: {
  30676. height: math.unit(5 + 2 / 12, "feet"),
  30677. weight: math.unit(120, "lb"),
  30678. name: "Front",
  30679. image: {
  30680. source: "./media/characters/snaps/front.svg",
  30681. extra: 2370 / 2177,
  30682. bottom: 48 / 2418
  30683. }
  30684. },
  30685. back: {
  30686. height: math.unit(5 + 2 / 12, "feet"),
  30687. weight: math.unit(120, "lb"),
  30688. name: "Back",
  30689. image: {
  30690. source: "./media/characters/snaps/back.svg",
  30691. extra: 2408 / 2258,
  30692. bottom: 15 / 2423
  30693. }
  30694. },
  30695. },
  30696. [
  30697. {
  30698. name: "Micro",
  30699. height: math.unit(9, "inches")
  30700. },
  30701. {
  30702. name: "Normal",
  30703. height: math.unit(5 + 2 / 12, "feet"),
  30704. default: true
  30705. },
  30706. {
  30707. name: "Mini Macro",
  30708. height: math.unit(10, "feet")
  30709. },
  30710. ]
  30711. ))
  30712. characterMakers.push(() => makeCharacter(
  30713. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30714. {
  30715. front: {
  30716. height: math.unit(1.8, "meters"),
  30717. weight: math.unit(85, "kg"),
  30718. name: "Front",
  30719. image: {
  30720. source: "./media/characters/azteck/front.svg",
  30721. extra: 2815 / 2625,
  30722. bottom: 89 / 2904
  30723. }
  30724. },
  30725. back: {
  30726. height: math.unit(1.8, "meters"),
  30727. weight: math.unit(85, "kg"),
  30728. name: "Back",
  30729. image: {
  30730. source: "./media/characters/azteck/back.svg",
  30731. extra: 2856 / 2648,
  30732. bottom: 85 / 2941
  30733. }
  30734. },
  30735. frontDressed: {
  30736. height: math.unit(1.8, "meters"),
  30737. weight: math.unit(85, "kg"),
  30738. name: "Front (Dressed)",
  30739. image: {
  30740. source: "./media/characters/azteck/front-dressed.svg",
  30741. extra: 2147 / 2003,
  30742. bottom: 68 / 2215
  30743. }
  30744. },
  30745. head: {
  30746. height: math.unit(0.47, "meters"),
  30747. weight: math.unit(85, "kg"),
  30748. name: "Head",
  30749. image: {
  30750. source: "./media/characters/azteck/head.svg"
  30751. }
  30752. },
  30753. },
  30754. [
  30755. {
  30756. name: "Bite sized",
  30757. height: math.unit(16, "cm")
  30758. },
  30759. {
  30760. name: "Normal",
  30761. height: math.unit(1.8, "meters"),
  30762. default: true
  30763. },
  30764. ]
  30765. ))
  30766. characterMakers.push(() => makeCharacter(
  30767. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30768. {
  30769. front: {
  30770. height: math.unit(6, "feet"),
  30771. weight: math.unit(150, "lb"),
  30772. name: "Front",
  30773. image: {
  30774. source: "./media/characters/pidge/front.svg",
  30775. extra: 1936/1820,
  30776. bottom: 0/1936
  30777. }
  30778. },
  30779. back: {
  30780. height: math.unit(6, "feet"),
  30781. weight: math.unit(150, "lb"),
  30782. name: "Back",
  30783. image: {
  30784. source: "./media/characters/pidge/back.svg",
  30785. extra: 1938/1843,
  30786. bottom: 0/1938
  30787. }
  30788. },
  30789. casual: {
  30790. height: math.unit(6, "feet"),
  30791. weight: math.unit(150, "lb"),
  30792. name: "Casual",
  30793. image: {
  30794. source: "./media/characters/pidge/casual.svg",
  30795. extra: 1936/1820,
  30796. bottom: 0/1936
  30797. }
  30798. },
  30799. tech: {
  30800. height: math.unit(6, "feet"),
  30801. weight: math.unit(150, "lb"),
  30802. name: "Tech",
  30803. image: {
  30804. source: "./media/characters/pidge/tech.svg",
  30805. extra: 1802/1682,
  30806. bottom: 0/1802
  30807. }
  30808. },
  30809. head: {
  30810. height: math.unit(1.61, "feet"),
  30811. name: "Head",
  30812. image: {
  30813. source: "./media/characters/pidge/head.svg"
  30814. }
  30815. },
  30816. collar: {
  30817. height: math.unit(0.82, "feet"),
  30818. name: "Collar",
  30819. image: {
  30820. source: "./media/characters/pidge/collar.svg"
  30821. }
  30822. },
  30823. },
  30824. [
  30825. {
  30826. name: "Macro",
  30827. height: math.unit(2, "mile"),
  30828. default: true
  30829. },
  30830. {
  30831. name: "PUPPY",
  30832. height: math.unit(20, "miles")
  30833. },
  30834. ]
  30835. ))
  30836. characterMakers.push(() => makeCharacter(
  30837. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30838. {
  30839. front: {
  30840. height: math.unit(6, "feet"),
  30841. weight: math.unit(150, "lb"),
  30842. name: "Front",
  30843. image: {
  30844. source: "./media/characters/en/front.svg",
  30845. extra: 1697 / 1563,
  30846. bottom: 103 / 1800
  30847. }
  30848. },
  30849. back: {
  30850. height: math.unit(6, "feet"),
  30851. weight: math.unit(150, "lb"),
  30852. name: "Back",
  30853. image: {
  30854. source: "./media/characters/en/back.svg",
  30855. extra: 1700 / 1570,
  30856. bottom: 51 / 1751
  30857. }
  30858. },
  30859. frontDressed: {
  30860. height: math.unit(6, "feet"),
  30861. weight: math.unit(150, "lb"),
  30862. name: "Front (Dressed)",
  30863. image: {
  30864. source: "./media/characters/en/front-dressed.svg",
  30865. extra: 1697 / 1563,
  30866. bottom: 103 / 1800
  30867. }
  30868. },
  30869. backDressed: {
  30870. height: math.unit(6, "feet"),
  30871. weight: math.unit(150, "lb"),
  30872. name: "Back (Dressed)",
  30873. image: {
  30874. source: "./media/characters/en/back-dressed.svg",
  30875. extra: 1700 / 1570,
  30876. bottom: 51 / 1751
  30877. }
  30878. },
  30879. },
  30880. [
  30881. {
  30882. name: "Macro",
  30883. height: math.unit(210, "feet"),
  30884. default: true
  30885. },
  30886. ]
  30887. ))
  30888. characterMakers.push(() => makeCharacter(
  30889. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30890. {
  30891. front: {
  30892. height: math.unit(6, "feet"),
  30893. weight: math.unit(150, "lb"),
  30894. name: "Front",
  30895. image: {
  30896. source: "./media/characters/haze-orris/front.svg",
  30897. extra: 3975 / 3525,
  30898. bottom: 137 / 4112
  30899. }
  30900. },
  30901. },
  30902. [
  30903. {
  30904. name: "Micro",
  30905. height: math.unit(150, "mm"),
  30906. default: true
  30907. },
  30908. ]
  30909. ))
  30910. characterMakers.push(() => makeCharacter(
  30911. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30912. {
  30913. front: {
  30914. height: math.unit(6, "feet"),
  30915. weight: math.unit(150, "lb"),
  30916. name: "Front",
  30917. image: {
  30918. source: "./media/characters/casselene-yaro/front.svg",
  30919. extra: 4721 / 4541,
  30920. bottom: 82 / 4803
  30921. }
  30922. },
  30923. back: {
  30924. height: math.unit(6, "feet"),
  30925. weight: math.unit(150, "lb"),
  30926. name: "Back",
  30927. image: {
  30928. source: "./media/characters/casselene-yaro/back.svg",
  30929. extra: 4569 / 4377,
  30930. bottom: 69 / 4638
  30931. }
  30932. },
  30933. dressed: {
  30934. height: math.unit(6, "feet"),
  30935. weight: math.unit(150, "lb"),
  30936. name: "Dressed",
  30937. image: {
  30938. source: "./media/characters/casselene-yaro/dressed.svg",
  30939. extra: 4721 / 4541,
  30940. bottom: 82 / 4803
  30941. }
  30942. },
  30943. maw: {
  30944. height: math.unit(1, "feet"),
  30945. name: "Maw",
  30946. image: {
  30947. source: "./media/characters/casselene-yaro/maw.svg"
  30948. }
  30949. },
  30950. },
  30951. [
  30952. {
  30953. name: "Macro",
  30954. height: math.unit(190, "feet"),
  30955. default: true
  30956. },
  30957. ]
  30958. ))
  30959. characterMakers.push(() => makeCharacter(
  30960. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30961. {
  30962. front: {
  30963. height: math.unit(10, "feet"),
  30964. weight: math.unit(15015, "lb"),
  30965. name: "Front",
  30966. image: {
  30967. source: "./media/characters/platine/front.svg",
  30968. extra: 1741/1650,
  30969. bottom: 84/1825
  30970. }
  30971. },
  30972. side: {
  30973. height: math.unit(10, "feet"),
  30974. weight: math.unit(15015, "lb"),
  30975. name: "Side",
  30976. image: {
  30977. source: "./media/characters/platine/side.svg",
  30978. extra: 1790/1705,
  30979. bottom: 29/1819
  30980. }
  30981. },
  30982. },
  30983. [
  30984. {
  30985. name: "Normal",
  30986. height: math.unit(10, "feet"),
  30987. default: true
  30988. },
  30989. {
  30990. name: "Macro",
  30991. height: math.unit(100, "feet")
  30992. },
  30993. {
  30994. name: "Megamacro",
  30995. height: math.unit(1000, "feet")
  30996. },
  30997. ]
  30998. ))
  30999. characterMakers.push(() => makeCharacter(
  31000. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31001. {
  31002. front: {
  31003. height: math.unit(15 + 5 / 12, "feet"),
  31004. weight: math.unit(4600, "lb"),
  31005. name: "Front",
  31006. image: {
  31007. source: "./media/characters/neapolitan-ananassa/front.svg",
  31008. extra: 2903 / 2736,
  31009. bottom: 0 / 2903
  31010. }
  31011. },
  31012. side: {
  31013. height: math.unit(15 + 5 / 12, "feet"),
  31014. weight: math.unit(4600, "lb"),
  31015. name: "Side",
  31016. image: {
  31017. source: "./media/characters/neapolitan-ananassa/side.svg",
  31018. extra: 2925 / 2719,
  31019. bottom: 0 / 2925
  31020. }
  31021. },
  31022. back: {
  31023. height: math.unit(15 + 5 / 12, "feet"),
  31024. weight: math.unit(4600, "lb"),
  31025. name: "Back",
  31026. image: {
  31027. source: "./media/characters/neapolitan-ananassa/back.svg",
  31028. extra: 2903 / 2736,
  31029. bottom: 0 / 2903
  31030. }
  31031. },
  31032. },
  31033. [
  31034. {
  31035. name: "Normal",
  31036. height: math.unit(15 + 5 / 12, "feet"),
  31037. default: true
  31038. },
  31039. {
  31040. name: "Post-Millenium",
  31041. height: math.unit(35 + 5 / 12, "feet")
  31042. },
  31043. {
  31044. name: "Post-Era",
  31045. height: math.unit(450 + 5 / 12, "feet")
  31046. },
  31047. ]
  31048. ))
  31049. characterMakers.push(() => makeCharacter(
  31050. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31051. {
  31052. front: {
  31053. height: math.unit(300, "meters"),
  31054. weight: math.unit(125000, "tonnes"),
  31055. name: "Front",
  31056. image: {
  31057. source: "./media/characters/pazuzu/front.svg",
  31058. extra: 877 / 794,
  31059. bottom: 47 / 924
  31060. }
  31061. },
  31062. },
  31063. [
  31064. {
  31065. name: "Macro",
  31066. height: math.unit(300, "meters"),
  31067. default: true
  31068. },
  31069. ]
  31070. ))
  31071. characterMakers.push(() => makeCharacter(
  31072. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31073. {
  31074. side: {
  31075. height: math.unit(10 + 7 / 12, "feet"),
  31076. weight: math.unit(2.5, "tons"),
  31077. name: "Side",
  31078. image: {
  31079. source: "./media/characters/aasha/side.svg",
  31080. extra: 1345 / 1245,
  31081. bottom: 111 / 1456
  31082. }
  31083. },
  31084. back: {
  31085. height: math.unit(10 + 7 / 12, "feet"),
  31086. weight: math.unit(2.5, "tons"),
  31087. name: "Back",
  31088. image: {
  31089. source: "./media/characters/aasha/back.svg",
  31090. extra: 1133 / 1057,
  31091. bottom: 257 / 1390
  31092. }
  31093. },
  31094. },
  31095. [
  31096. {
  31097. name: "Normal",
  31098. height: math.unit(10 + 7 / 12, "feet"),
  31099. default: true
  31100. },
  31101. ]
  31102. ))
  31103. characterMakers.push(() => makeCharacter(
  31104. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31105. {
  31106. front: {
  31107. height: math.unit(6 + 3 / 12, "feet"),
  31108. name: "Front",
  31109. image: {
  31110. source: "./media/characters/nevan/front.svg",
  31111. extra: 704 / 704,
  31112. bottom: 28 / 732
  31113. }
  31114. },
  31115. back: {
  31116. height: math.unit(6 + 3 / 12, "feet"),
  31117. name: "Back",
  31118. image: {
  31119. source: "./media/characters/nevan/back.svg",
  31120. extra: 714 / 714,
  31121. bottom: 21 / 735
  31122. }
  31123. },
  31124. frontFlaccid: {
  31125. height: math.unit(6 + 3 / 12, "feet"),
  31126. name: "Front (Flaccid)",
  31127. image: {
  31128. source: "./media/characters/nevan/front-flaccid.svg",
  31129. extra: 704 / 704,
  31130. bottom: 28 / 732
  31131. }
  31132. },
  31133. frontErect: {
  31134. height: math.unit(6 + 3 / 12, "feet"),
  31135. name: "Front (Erect)",
  31136. image: {
  31137. source: "./media/characters/nevan/front-erect.svg",
  31138. extra: 704 / 704,
  31139. bottom: 28 / 732
  31140. }
  31141. },
  31142. backFlaccid: {
  31143. height: math.unit(6 + 3 / 12, "feet"),
  31144. name: "Back (Flaccid)",
  31145. image: {
  31146. source: "./media/characters/nevan/back-flaccid.svg",
  31147. extra: 714 / 714,
  31148. bottom: 21 / 735
  31149. }
  31150. },
  31151. },
  31152. [
  31153. {
  31154. name: "Normal",
  31155. height: math.unit(6 + 3 / 12, "feet"),
  31156. default: true
  31157. },
  31158. ]
  31159. ))
  31160. characterMakers.push(() => makeCharacter(
  31161. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31162. {
  31163. front: {
  31164. height: math.unit(4, "feet"),
  31165. name: "Front",
  31166. image: {
  31167. source: "./media/characters/arhan/front.svg",
  31168. extra: 3368 / 3133,
  31169. bottom: 0 / 3368
  31170. }
  31171. },
  31172. side: {
  31173. height: math.unit(4, "feet"),
  31174. name: "Side",
  31175. image: {
  31176. source: "./media/characters/arhan/side.svg",
  31177. extra: 3347 / 3105,
  31178. bottom: 0 / 3347
  31179. }
  31180. },
  31181. tongue: {
  31182. height: math.unit(1.42, "feet"),
  31183. name: "Tongue",
  31184. image: {
  31185. source: "./media/characters/arhan/tongue.svg"
  31186. }
  31187. },
  31188. head: {
  31189. height: math.unit(0.85, "feet"),
  31190. name: "Head",
  31191. image: {
  31192. source: "./media/characters/arhan/head.svg"
  31193. }
  31194. },
  31195. },
  31196. [
  31197. {
  31198. name: "Normal",
  31199. height: math.unit(4, "feet"),
  31200. default: true
  31201. },
  31202. ]
  31203. ))
  31204. characterMakers.push(() => makeCharacter(
  31205. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31206. {
  31207. front: {
  31208. height: math.unit(5 + 7.5 / 12, "feet"),
  31209. weight: math.unit(120, "lb"),
  31210. name: "Front",
  31211. image: {
  31212. source: "./media/characters/digi-duncan/front.svg",
  31213. extra: 330 / 326,
  31214. bottom: 16 / 346
  31215. }
  31216. },
  31217. side: {
  31218. height: math.unit(5 + 7.5 / 12, "feet"),
  31219. weight: math.unit(120, "lb"),
  31220. name: "Side",
  31221. image: {
  31222. source: "./media/characters/digi-duncan/side.svg",
  31223. extra: 341 / 337,
  31224. bottom: 1 / 342
  31225. }
  31226. },
  31227. back: {
  31228. height: math.unit(5 + 7.5 / 12, "feet"),
  31229. weight: math.unit(120, "lb"),
  31230. name: "Back",
  31231. image: {
  31232. source: "./media/characters/digi-duncan/back.svg",
  31233. extra: 330 / 326,
  31234. bottom: 12 / 342
  31235. }
  31236. },
  31237. },
  31238. [
  31239. {
  31240. name: "Speck",
  31241. height: math.unit(0.25, "mm")
  31242. },
  31243. {
  31244. name: "Micro",
  31245. height: math.unit(5, "mm")
  31246. },
  31247. {
  31248. name: "Tiny",
  31249. height: math.unit(0.5, "inches"),
  31250. default: true
  31251. },
  31252. {
  31253. name: "Human",
  31254. height: math.unit(5 + 7.5 / 12, "feet")
  31255. },
  31256. {
  31257. name: "Minigiant",
  31258. height: math.unit(8 + 5.25, "feet")
  31259. },
  31260. {
  31261. name: "Giant",
  31262. height: math.unit(2000, "feet")
  31263. },
  31264. {
  31265. name: "Mega",
  31266. height: math.unit(371.1, "miles")
  31267. },
  31268. ]
  31269. ))
  31270. characterMakers.push(() => makeCharacter(
  31271. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31272. {
  31273. front: {
  31274. height: math.unit(2, "meters"),
  31275. weight: math.unit(350, "kg"),
  31276. name: "Front",
  31277. image: {
  31278. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31279. extra: 898 / 838,
  31280. bottom: 9 / 907
  31281. }
  31282. },
  31283. },
  31284. [
  31285. {
  31286. name: "Micro",
  31287. height: math.unit(8, "meters")
  31288. },
  31289. {
  31290. name: "Normal",
  31291. height: math.unit(50, "meters"),
  31292. default: true
  31293. },
  31294. {
  31295. name: "Macro",
  31296. height: math.unit(500, "meters")
  31297. },
  31298. ]
  31299. ))
  31300. characterMakers.push(() => makeCharacter(
  31301. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31302. {
  31303. front: {
  31304. height: math.unit(6 + 6 / 12, "feet"),
  31305. name: "Front",
  31306. image: {
  31307. source: "./media/characters/khardesh/front.svg",
  31308. extra: 1788/1596,
  31309. bottom: 66/1854
  31310. }
  31311. },
  31312. back: {
  31313. height: math.unit(6 + 6 / 12, "feet"),
  31314. name: "Back",
  31315. image: {
  31316. source: "./media/characters/khardesh/back.svg",
  31317. extra: 1781/1584,
  31318. bottom: 68/1849
  31319. }
  31320. },
  31321. },
  31322. [
  31323. {
  31324. name: "Normal",
  31325. height: math.unit(6 + 6 / 12, "feet"),
  31326. default: true
  31327. },
  31328. {
  31329. name: "Normal+",
  31330. height: math.unit(4, "meters")
  31331. },
  31332. {
  31333. name: "Macro",
  31334. height: math.unit(50, "meters")
  31335. },
  31336. {
  31337. name: "Macro+",
  31338. height: math.unit(100, "meters")
  31339. },
  31340. {
  31341. name: "Megamacro",
  31342. height: math.unit(20, "km")
  31343. },
  31344. ]
  31345. ))
  31346. characterMakers.push(() => makeCharacter(
  31347. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31348. {
  31349. front: {
  31350. height: math.unit(6, "feet"),
  31351. weight: math.unit(150, "lb"),
  31352. name: "Front",
  31353. image: {
  31354. source: "./media/characters/kosho/front.svg",
  31355. extra: 1847 / 1847,
  31356. bottom: 86 / 1933
  31357. }
  31358. },
  31359. },
  31360. [
  31361. {
  31362. name: "Second-stage micro",
  31363. height: math.unit(0.5, "inches")
  31364. },
  31365. {
  31366. name: "First-stage micro",
  31367. height: math.unit(6, "inches")
  31368. },
  31369. {
  31370. name: "Normal",
  31371. height: math.unit(6, "feet"),
  31372. default: true
  31373. },
  31374. {
  31375. name: "First-stage macro",
  31376. height: math.unit(72, "feet")
  31377. },
  31378. {
  31379. name: "Second-stage macro",
  31380. height: math.unit(864, "feet")
  31381. },
  31382. ]
  31383. ))
  31384. characterMakers.push(() => makeCharacter(
  31385. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31386. {
  31387. normal: {
  31388. height: math.unit(4 + 6 / 12, "feet"),
  31389. name: "Normal",
  31390. image: {
  31391. source: "./media/characters/hydra/normal.svg",
  31392. extra: 2833 / 2634,
  31393. bottom: 68 / 2901
  31394. }
  31395. },
  31396. smol: {
  31397. height: math.unit(0.705, "inches"),
  31398. name: "Smol",
  31399. image: {
  31400. source: "./media/characters/hydra/smol.svg",
  31401. extra: 2715 / 2540,
  31402. bottom: 0 / 2715
  31403. }
  31404. },
  31405. },
  31406. [
  31407. {
  31408. name: "Normal",
  31409. height: math.unit(4 + 6 / 12, "feet"),
  31410. default: true
  31411. }
  31412. ]
  31413. ))
  31414. characterMakers.push(() => makeCharacter(
  31415. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31416. {
  31417. front: {
  31418. height: math.unit(0.6, "cm"),
  31419. name: "Front",
  31420. image: {
  31421. source: "./media/characters/daz/front.svg",
  31422. extra: 1682 / 1164,
  31423. bottom: 42 / 1724
  31424. }
  31425. },
  31426. },
  31427. [
  31428. {
  31429. name: "Normal",
  31430. height: math.unit(0.6, "cm"),
  31431. default: true
  31432. },
  31433. ]
  31434. ))
  31435. characterMakers.push(() => makeCharacter(
  31436. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31437. {
  31438. front: {
  31439. height: math.unit(6, "feet"),
  31440. weight: math.unit(235, "lb"),
  31441. name: "Front",
  31442. image: {
  31443. source: "./media/characters/theo-pangolin/front.svg",
  31444. extra: 1996 / 1969,
  31445. bottom: 115 / 2111
  31446. }
  31447. },
  31448. back: {
  31449. height: math.unit(6, "feet"),
  31450. weight: math.unit(235, "lb"),
  31451. name: "Back",
  31452. image: {
  31453. source: "./media/characters/theo-pangolin/back.svg",
  31454. extra: 1979 / 1979,
  31455. bottom: 40 / 2019
  31456. }
  31457. },
  31458. feral: {
  31459. height: math.unit(2, "feet"),
  31460. weight: math.unit(30, "lb"),
  31461. name: "Feral",
  31462. image: {
  31463. source: "./media/characters/theo-pangolin/feral.svg",
  31464. extra: 803 / 791,
  31465. bottom: 181 / 984
  31466. }
  31467. },
  31468. footFive: {
  31469. height: math.unit(1.43, "feet"),
  31470. name: "Foot (Five Toes)",
  31471. image: {
  31472. source: "./media/characters/theo-pangolin/foot-five.svg"
  31473. }
  31474. },
  31475. footFour: {
  31476. height: math.unit(1.43, "feet"),
  31477. name: "Foot (Four Toes)",
  31478. image: {
  31479. source: "./media/characters/theo-pangolin/foot-four.svg"
  31480. }
  31481. },
  31482. handFour: {
  31483. height: math.unit(0.81, "feet"),
  31484. name: "Hand (Four Fingers)",
  31485. image: {
  31486. source: "./media/characters/theo-pangolin/hand-four.svg"
  31487. }
  31488. },
  31489. handThree: {
  31490. height: math.unit(0.81, "feet"),
  31491. name: "Hand (Three Fingers)",
  31492. image: {
  31493. source: "./media/characters/theo-pangolin/hand-three.svg"
  31494. }
  31495. },
  31496. headFront: {
  31497. height: math.unit(1.37, "feet"),
  31498. name: "Head (Front)",
  31499. image: {
  31500. source: "./media/characters/theo-pangolin/head-front.svg"
  31501. }
  31502. },
  31503. headSide: {
  31504. height: math.unit(1.43, "feet"),
  31505. name: "Head (Side)",
  31506. image: {
  31507. source: "./media/characters/theo-pangolin/head-side.svg"
  31508. }
  31509. },
  31510. tongue: {
  31511. height: math.unit(2.29, "feet"),
  31512. name: "Tongue",
  31513. image: {
  31514. source: "./media/characters/theo-pangolin/tongue.svg"
  31515. }
  31516. },
  31517. },
  31518. [
  31519. {
  31520. name: "Normal",
  31521. height: math.unit(6, "feet")
  31522. },
  31523. {
  31524. name: "Macro",
  31525. height: math.unit(400, "feet"),
  31526. default: true
  31527. },
  31528. ]
  31529. ))
  31530. characterMakers.push(() => makeCharacter(
  31531. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31532. {
  31533. front: {
  31534. height: math.unit(6, "inches"),
  31535. weight: math.unit(0.036, "kg"),
  31536. name: "Front",
  31537. image: {
  31538. source: "./media/characters/renée/front.svg",
  31539. extra: 900 / 886,
  31540. bottom: 8 / 908
  31541. }
  31542. },
  31543. },
  31544. [
  31545. {
  31546. name: "Nano",
  31547. height: math.unit(1, "nm")
  31548. },
  31549. {
  31550. name: "Micro",
  31551. height: math.unit(1, "mm")
  31552. },
  31553. {
  31554. name: "Normal",
  31555. height: math.unit(6, "inches")
  31556. },
  31557. {
  31558. name: "Macro",
  31559. height: math.unit(2000, "feet"),
  31560. default: true
  31561. },
  31562. {
  31563. name: "Megamacro",
  31564. height: math.unit(2, "km")
  31565. },
  31566. {
  31567. name: "Gigamacro",
  31568. height: math.unit(2000, "km")
  31569. },
  31570. {
  31571. name: "Teramacro",
  31572. height: math.unit(250000, "km")
  31573. },
  31574. ]
  31575. ))
  31576. characterMakers.push(() => makeCharacter(
  31577. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31578. {
  31579. front: {
  31580. height: math.unit(4, "meters"),
  31581. weight: math.unit(150, "kg"),
  31582. name: "Front",
  31583. image: {
  31584. source: "./media/characters/caledvwlch/front.svg",
  31585. extra: 1760 / 1551,
  31586. bottom: 28 / 1788
  31587. }
  31588. },
  31589. side: {
  31590. height: math.unit(4, "meters"),
  31591. weight: math.unit(150, "kg"),
  31592. name: "Side",
  31593. image: {
  31594. source: "./media/characters/caledvwlch/side.svg",
  31595. extra: 1605 / 1536,
  31596. bottom: 31 / 1636
  31597. }
  31598. },
  31599. back: {
  31600. height: math.unit(4, "meters"),
  31601. weight: math.unit(150, "kg"),
  31602. name: "Back",
  31603. image: {
  31604. source: "./media/characters/caledvwlch/back.svg",
  31605. extra: 1635 / 1565,
  31606. bottom: 27 / 1662
  31607. }
  31608. },
  31609. },
  31610. [
  31611. {
  31612. name: "\"Incognito\"",
  31613. height: math.unit(4, "meters")
  31614. },
  31615. {
  31616. name: "Small rampage",
  31617. height: math.unit(600, "meters")
  31618. },
  31619. {
  31620. name: "Mega",
  31621. height: math.unit(30, "km")
  31622. },
  31623. {
  31624. name: "Home-size",
  31625. height: math.unit(50, "km"),
  31626. default: true
  31627. },
  31628. {
  31629. name: "Giga",
  31630. height: math.unit(300, "km")
  31631. },
  31632. {
  31633. name: "Lounging",
  31634. height: math.unit(11000, "km")
  31635. },
  31636. {
  31637. name: "Planet snacking",
  31638. height: math.unit(2000000, "km")
  31639. },
  31640. ]
  31641. ))
  31642. characterMakers.push(() => makeCharacter(
  31643. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31644. {
  31645. front: {
  31646. height: math.unit(6, "feet"),
  31647. weight: math.unit(215, "lb"),
  31648. name: "Front",
  31649. image: {
  31650. source: "./media/characters/sapphire-svell/front.svg",
  31651. extra: 495 / 455,
  31652. bottom: 20 / 515
  31653. }
  31654. },
  31655. back: {
  31656. height: math.unit(6, "feet"),
  31657. weight: math.unit(216, "lb"),
  31658. name: "Back",
  31659. image: {
  31660. source: "./media/characters/sapphire-svell/back.svg",
  31661. extra: 497 / 477,
  31662. bottom: 7 / 504
  31663. }
  31664. },
  31665. maw: {
  31666. height: math.unit(1.57, "feet"),
  31667. name: "Maw",
  31668. image: {
  31669. source: "./media/characters/sapphire-svell/maw.svg"
  31670. }
  31671. },
  31672. foot: {
  31673. height: math.unit(1.07, "feet"),
  31674. name: "Foot",
  31675. image: {
  31676. source: "./media/characters/sapphire-svell/foot.svg"
  31677. }
  31678. },
  31679. toering: {
  31680. height: math.unit(1.7, "inch"),
  31681. name: "Toering",
  31682. image: {
  31683. source: "./media/characters/sapphire-svell/toering.svg"
  31684. }
  31685. },
  31686. },
  31687. [
  31688. {
  31689. name: "Normal",
  31690. height: math.unit(300, "feet"),
  31691. default: true
  31692. },
  31693. {
  31694. name: "Augmented",
  31695. height: math.unit(1250, "feet")
  31696. },
  31697. {
  31698. name: "Unleashed",
  31699. height: math.unit(3000, "feet")
  31700. },
  31701. ]
  31702. ))
  31703. characterMakers.push(() => makeCharacter(
  31704. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31705. {
  31706. side: {
  31707. height: math.unit(2 + 3 / 12, "feet"),
  31708. weight: math.unit(110, "lb"),
  31709. name: "Side",
  31710. image: {
  31711. source: "./media/characters/glitch-flux/side.svg",
  31712. extra: 997 / 805,
  31713. bottom: 20 / 1017
  31714. }
  31715. },
  31716. },
  31717. [
  31718. {
  31719. name: "Normal",
  31720. height: math.unit(2 + 3 / 12, "feet"),
  31721. default: true
  31722. },
  31723. ]
  31724. ))
  31725. characterMakers.push(() => makeCharacter(
  31726. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31727. {
  31728. front: {
  31729. height: math.unit(4, "meters"),
  31730. name: "Front",
  31731. image: {
  31732. source: "./media/characters/mid/front.svg",
  31733. extra: 507 / 476,
  31734. bottom: 17 / 524
  31735. }
  31736. },
  31737. back: {
  31738. height: math.unit(4, "meters"),
  31739. name: "Back",
  31740. image: {
  31741. source: "./media/characters/mid/back.svg",
  31742. extra: 519 / 487,
  31743. bottom: 7 / 526
  31744. }
  31745. },
  31746. stuck: {
  31747. height: math.unit(2.2, "meters"),
  31748. name: "Stuck",
  31749. image: {
  31750. source: "./media/characters/mid/stuck.svg",
  31751. extra: 1951 / 1869,
  31752. bottom: 88 / 2039
  31753. }
  31754. }
  31755. },
  31756. [
  31757. {
  31758. name: "Normal",
  31759. height: math.unit(4, "meters"),
  31760. default: true
  31761. },
  31762. {
  31763. name: "Big",
  31764. height: math.unit(10, "meters")
  31765. },
  31766. {
  31767. name: "Macro",
  31768. height: math.unit(800, "meters")
  31769. },
  31770. {
  31771. name: "Megamacro",
  31772. height: math.unit(100, "km")
  31773. },
  31774. {
  31775. name: "Overgrown",
  31776. height: math.unit(1, "parsec")
  31777. },
  31778. ]
  31779. ))
  31780. characterMakers.push(() => makeCharacter(
  31781. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31782. {
  31783. front: {
  31784. height: math.unit(2.5, "meters"),
  31785. weight: math.unit(225, "kg"),
  31786. name: "Front",
  31787. image: {
  31788. source: "./media/characters/iris/front.svg",
  31789. extra: 3348 / 3251,
  31790. bottom: 205 / 3553
  31791. }
  31792. },
  31793. maw: {
  31794. height: math.unit(0.56, "meter"),
  31795. name: "Maw",
  31796. image: {
  31797. source: "./media/characters/iris/maw.svg"
  31798. }
  31799. },
  31800. },
  31801. [
  31802. {
  31803. name: "Mewter cat",
  31804. height: math.unit(1.2, "meters")
  31805. },
  31806. {
  31807. name: "Normal",
  31808. height: math.unit(2.5, "meters"),
  31809. default: true
  31810. },
  31811. {
  31812. name: "Minimacro",
  31813. height: math.unit(18, "feet")
  31814. },
  31815. {
  31816. name: "Macro",
  31817. height: math.unit(140, "feet")
  31818. },
  31819. {
  31820. name: "Macro+",
  31821. height: math.unit(180, "meters")
  31822. },
  31823. {
  31824. name: "Megamacro",
  31825. height: math.unit(2746, "meters")
  31826. },
  31827. ]
  31828. ))
  31829. characterMakers.push(() => makeCharacter(
  31830. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31831. {
  31832. front: {
  31833. height: math.unit(6, "feet"),
  31834. weight: math.unit(135, "lb"),
  31835. name: "Front",
  31836. image: {
  31837. source: "./media/characters/axel/front.svg",
  31838. extra: 908 / 908,
  31839. bottom: 58 / 966
  31840. }
  31841. },
  31842. side: {
  31843. height: math.unit(6, "feet"),
  31844. weight: math.unit(135, "lb"),
  31845. name: "Side",
  31846. image: {
  31847. source: "./media/characters/axel/side.svg",
  31848. extra: 958 / 958,
  31849. bottom: 11 / 969
  31850. }
  31851. },
  31852. back: {
  31853. height: math.unit(6, "feet"),
  31854. weight: math.unit(135, "lb"),
  31855. name: "Back",
  31856. image: {
  31857. source: "./media/characters/axel/back.svg",
  31858. extra: 887 / 887,
  31859. bottom: 34 / 921
  31860. }
  31861. },
  31862. head: {
  31863. height: math.unit(1.07, "feet"),
  31864. name: "Head",
  31865. image: {
  31866. source: "./media/characters/axel/head.svg"
  31867. }
  31868. },
  31869. beak: {
  31870. height: math.unit(1.4, "feet"),
  31871. name: "Beak",
  31872. image: {
  31873. source: "./media/characters/axel/beak.svg"
  31874. }
  31875. },
  31876. beakSide: {
  31877. height: math.unit(1.4, "feet"),
  31878. name: "Beak Side",
  31879. image: {
  31880. source: "./media/characters/axel/beak-side.svg"
  31881. }
  31882. },
  31883. sheath: {
  31884. height: math.unit(0.5, "feet"),
  31885. name: "Sheath",
  31886. image: {
  31887. source: "./media/characters/axel/sheath.svg"
  31888. }
  31889. },
  31890. dick: {
  31891. height: math.unit(0.98, "feet"),
  31892. name: "Dick",
  31893. image: {
  31894. source: "./media/characters/axel/dick.svg"
  31895. }
  31896. },
  31897. },
  31898. [
  31899. {
  31900. name: "Macro",
  31901. height: math.unit(68, "meters"),
  31902. default: true
  31903. },
  31904. ]
  31905. ))
  31906. characterMakers.push(() => makeCharacter(
  31907. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31908. {
  31909. front: {
  31910. height: math.unit(3.5, "meters"),
  31911. weight: math.unit(1200, "kg"),
  31912. name: "Front",
  31913. image: {
  31914. source: "./media/characters/joanna/front.svg",
  31915. extra: 1596 / 1488,
  31916. bottom: 29 / 1625
  31917. }
  31918. },
  31919. back: {
  31920. height: math.unit(3.5, "meters"),
  31921. weight: math.unit(1200, "kg"),
  31922. name: "Back",
  31923. image: {
  31924. source: "./media/characters/joanna/back.svg",
  31925. extra: 1594 / 1495,
  31926. bottom: 26 / 1620
  31927. }
  31928. },
  31929. frontShorts: {
  31930. height: math.unit(3.5, "meters"),
  31931. weight: math.unit(1200, "kg"),
  31932. name: "Front (Shorts)",
  31933. image: {
  31934. source: "./media/characters/joanna/front-shorts.svg",
  31935. extra: 1596 / 1488,
  31936. bottom: 29 / 1625
  31937. }
  31938. },
  31939. frontBiker: {
  31940. height: math.unit(3.5, "meters"),
  31941. weight: math.unit(1200, "kg"),
  31942. name: "Front (Biker)",
  31943. image: {
  31944. source: "./media/characters/joanna/front-biker.svg",
  31945. extra: 1596 / 1488,
  31946. bottom: 29 / 1625
  31947. }
  31948. },
  31949. backBiker: {
  31950. height: math.unit(3.5, "meters"),
  31951. weight: math.unit(1200, "kg"),
  31952. name: "Back (Biker)",
  31953. image: {
  31954. source: "./media/characters/joanna/back-biker.svg",
  31955. extra: 1594 / 1495,
  31956. bottom: 88 / 1682
  31957. }
  31958. },
  31959. bikeLeft: {
  31960. height: math.unit(2.4, "meters"),
  31961. weight: math.unit(1600, "kg"),
  31962. name: "Bike (Left)",
  31963. image: {
  31964. source: "./media/characters/joanna/bike-left.svg",
  31965. extra: 720 / 720,
  31966. bottom: 8 / 728
  31967. }
  31968. },
  31969. bikeRight: {
  31970. height: math.unit(2.4, "meters"),
  31971. weight: math.unit(1600, "kg"),
  31972. name: "Bike (Right)",
  31973. image: {
  31974. source: "./media/characters/joanna/bike-right.svg",
  31975. extra: 720 / 720,
  31976. bottom: 8 / 728
  31977. }
  31978. },
  31979. },
  31980. [
  31981. {
  31982. name: "Incognito",
  31983. height: math.unit(3.5, "meters")
  31984. },
  31985. {
  31986. name: "Casual Big",
  31987. height: math.unit(200, "meters")
  31988. },
  31989. {
  31990. name: "Macro",
  31991. height: math.unit(600, "meters")
  31992. },
  31993. {
  31994. name: "Original",
  31995. height: math.unit(20, "km"),
  31996. default: true
  31997. },
  31998. {
  31999. name: "Giga",
  32000. height: math.unit(400, "km")
  32001. },
  32002. {
  32003. name: "Lounging",
  32004. height: math.unit(1500, "km")
  32005. },
  32006. {
  32007. name: "Planetary",
  32008. height: math.unit(200000, "km")
  32009. },
  32010. ]
  32011. ))
  32012. characterMakers.push(() => makeCharacter(
  32013. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32014. {
  32015. front: {
  32016. height: math.unit(6, "feet"),
  32017. weight: math.unit(150, "lb"),
  32018. name: "Front",
  32019. image: {
  32020. source: "./media/characters/hugo-sigil/front.svg",
  32021. extra: 522 / 500,
  32022. bottom: 2 / 524
  32023. }
  32024. },
  32025. back: {
  32026. height: math.unit(6, "feet"),
  32027. weight: math.unit(150, "lb"),
  32028. name: "Back",
  32029. image: {
  32030. source: "./media/characters/hugo-sigil/back.svg",
  32031. extra: 519 / 495,
  32032. bottom: 5 / 524
  32033. }
  32034. },
  32035. maw: {
  32036. height: math.unit(1.4, "feet"),
  32037. weight: math.unit(150, "lb"),
  32038. name: "Maw",
  32039. image: {
  32040. source: "./media/characters/hugo-sigil/maw.svg"
  32041. }
  32042. },
  32043. feet: {
  32044. height: math.unit(1.56, "feet"),
  32045. weight: math.unit(150, "lb"),
  32046. name: "Feet",
  32047. image: {
  32048. source: "./media/characters/hugo-sigil/feet.svg",
  32049. extra: 177 / 177,
  32050. bottom: 12 / 189
  32051. }
  32052. },
  32053. },
  32054. [
  32055. {
  32056. name: "Normal",
  32057. height: math.unit(6, "feet")
  32058. },
  32059. {
  32060. name: "Macro",
  32061. height: math.unit(200, "feet"),
  32062. default: true
  32063. },
  32064. ]
  32065. ))
  32066. characterMakers.push(() => makeCharacter(
  32067. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32068. {
  32069. front: {
  32070. height: math.unit(6, "feet"),
  32071. weight: math.unit(150, "lb"),
  32072. name: "Front",
  32073. image: {
  32074. source: "./media/characters/peri/front.svg",
  32075. extra: 2354 / 2233,
  32076. bottom: 49 / 2403
  32077. }
  32078. },
  32079. },
  32080. [
  32081. {
  32082. name: "Really Small",
  32083. height: math.unit(1, "nm")
  32084. },
  32085. {
  32086. name: "Micro",
  32087. height: math.unit(4, "inches")
  32088. },
  32089. {
  32090. name: "Normal",
  32091. height: math.unit(7, "inches"),
  32092. default: true
  32093. },
  32094. {
  32095. name: "Macro",
  32096. height: math.unit(400, "feet")
  32097. },
  32098. {
  32099. name: "Megamacro",
  32100. height: math.unit(100, "miles")
  32101. },
  32102. ]
  32103. ))
  32104. characterMakers.push(() => makeCharacter(
  32105. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32106. {
  32107. frontSlim: {
  32108. height: math.unit(7, "feet"),
  32109. name: "Front (Slim)",
  32110. image: {
  32111. source: "./media/characters/issilora/front-slim.svg",
  32112. extra: 529 / 449,
  32113. bottom: 53 / 582
  32114. }
  32115. },
  32116. sideSlim: {
  32117. height: math.unit(7, "feet"),
  32118. name: "Side (Slim)",
  32119. image: {
  32120. source: "./media/characters/issilora/side-slim.svg",
  32121. extra: 570 / 480,
  32122. bottom: 30 / 600
  32123. }
  32124. },
  32125. backSlim: {
  32126. height: math.unit(7, "feet"),
  32127. name: "Back (Slim)",
  32128. image: {
  32129. source: "./media/characters/issilora/back-slim.svg",
  32130. extra: 537 / 455,
  32131. bottom: 46 / 583
  32132. }
  32133. },
  32134. frontBuff: {
  32135. height: math.unit(7, "feet"),
  32136. name: "Front (Buff)",
  32137. image: {
  32138. source: "./media/characters/issilora/front-buff.svg",
  32139. extra: 2310 / 2035,
  32140. bottom: 335 / 2645
  32141. }
  32142. },
  32143. head: {
  32144. height: math.unit(1.94, "feet"),
  32145. name: "Head",
  32146. image: {
  32147. source: "./media/characters/issilora/head.svg"
  32148. }
  32149. },
  32150. },
  32151. [
  32152. {
  32153. name: "Minimum",
  32154. height: math.unit(7, "feet")
  32155. },
  32156. {
  32157. name: "Comfortable",
  32158. height: math.unit(17, "feet")
  32159. },
  32160. {
  32161. name: "Fun Size",
  32162. height: math.unit(47, "feet")
  32163. },
  32164. {
  32165. name: "Natural Macro",
  32166. height: math.unit(137, "feet"),
  32167. default: true
  32168. },
  32169. {
  32170. name: "Maximum Kaiju",
  32171. height: math.unit(397, "feet")
  32172. },
  32173. ]
  32174. ))
  32175. characterMakers.push(() => makeCharacter(
  32176. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32177. {
  32178. front: {
  32179. height: math.unit(50 + 9/12, "feet"),
  32180. weight: math.unit(32.8, "tons"),
  32181. name: "Front",
  32182. image: {
  32183. source: "./media/characters/irb'iiritaahn/front.svg",
  32184. extra: 1878/1826,
  32185. bottom: 326/2204
  32186. }
  32187. },
  32188. back: {
  32189. height: math.unit(50 + 9/12, "feet"),
  32190. weight: math.unit(32.8, "tons"),
  32191. name: "Back",
  32192. image: {
  32193. source: "./media/characters/irb'iiritaahn/back.svg",
  32194. extra: 2052/2018,
  32195. bottom: 152/2204
  32196. }
  32197. },
  32198. head: {
  32199. height: math.unit(12.86, "feet"),
  32200. name: "Head",
  32201. image: {
  32202. source: "./media/characters/irb'iiritaahn/head.svg"
  32203. }
  32204. },
  32205. maw: {
  32206. height: math.unit(9.66, "feet"),
  32207. name: "Maw",
  32208. image: {
  32209. source: "./media/characters/irb'iiritaahn/maw.svg"
  32210. }
  32211. },
  32212. frontDick: {
  32213. height: math.unit(8.78461, "feet"),
  32214. name: "Front Dick",
  32215. image: {
  32216. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32217. }
  32218. },
  32219. rearDick: {
  32220. height: math.unit(8.78461, "feet"),
  32221. name: "Rear Dick",
  32222. image: {
  32223. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32224. }
  32225. },
  32226. rearDickUnfolded: {
  32227. height: math.unit(8.78, "feet"),
  32228. name: "Rear Dick (Unfolded)",
  32229. image: {
  32230. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32231. }
  32232. },
  32233. wings: {
  32234. height: math.unit(43, "feet"),
  32235. name: "Wings",
  32236. image: {
  32237. source: "./media/characters/irb'iiritaahn/wings.svg"
  32238. }
  32239. },
  32240. },
  32241. [
  32242. {
  32243. name: "Macro",
  32244. height: math.unit(50 + 9/12, "feet"),
  32245. default: true
  32246. },
  32247. ]
  32248. ))
  32249. characterMakers.push(() => makeCharacter(
  32250. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32251. {
  32252. front: {
  32253. height: math.unit(205, "cm"),
  32254. weight: math.unit(102, "kg"),
  32255. name: "Front",
  32256. image: {
  32257. source: "./media/characters/irbisgreif/front.svg",
  32258. extra: 785/706,
  32259. bottom: 13/798
  32260. }
  32261. },
  32262. back: {
  32263. height: math.unit(205, "cm"),
  32264. weight: math.unit(102, "kg"),
  32265. name: "Back",
  32266. image: {
  32267. source: "./media/characters/irbisgreif/back.svg",
  32268. extra: 713/701,
  32269. bottom: 26/739
  32270. }
  32271. },
  32272. frontDressed: {
  32273. height: math.unit(216, "cm"),
  32274. weight: math.unit(102, "kg"),
  32275. name: "Front-dressed",
  32276. image: {
  32277. source: "./media/characters/irbisgreif/front-dressed.svg",
  32278. extra: 902/776,
  32279. bottom: 14/916
  32280. }
  32281. },
  32282. sideDressed: {
  32283. height: math.unit(195, "cm"),
  32284. weight: math.unit(102, "kg"),
  32285. name: "Side-dressed",
  32286. image: {
  32287. source: "./media/characters/irbisgreif/side-dressed.svg",
  32288. extra: 788/688,
  32289. bottom: 21/809
  32290. }
  32291. },
  32292. backDressed: {
  32293. height: math.unit(216, "cm"),
  32294. weight: math.unit(102, "kg"),
  32295. name: "Back-dressed",
  32296. image: {
  32297. source: "./media/characters/irbisgreif/back-dressed.svg",
  32298. extra: 901/783,
  32299. bottom: 10/911
  32300. }
  32301. },
  32302. dick: {
  32303. height: math.unit(0.49, "feet"),
  32304. name: "Dick",
  32305. image: {
  32306. source: "./media/characters/irbisgreif/dick.svg"
  32307. }
  32308. },
  32309. wingTop: {
  32310. height: math.unit(1.93 , "feet"),
  32311. name: "Wing-top",
  32312. image: {
  32313. source: "./media/characters/irbisgreif/wing-top.svg"
  32314. }
  32315. },
  32316. wingBottom: {
  32317. height: math.unit(1.93 , "feet"),
  32318. name: "Wing-bottom",
  32319. image: {
  32320. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32321. }
  32322. },
  32323. },
  32324. [
  32325. {
  32326. name: "Normal",
  32327. height: math.unit(216, "cm"),
  32328. default: true
  32329. },
  32330. ]
  32331. ))
  32332. characterMakers.push(() => makeCharacter(
  32333. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32334. {
  32335. front: {
  32336. height: math.unit(6, "feet"),
  32337. weight: math.unit(150, "lb"),
  32338. name: "Front",
  32339. image: {
  32340. source: "./media/characters/pride/front.svg",
  32341. extra: 1299/1230,
  32342. bottom: 18/1317
  32343. }
  32344. },
  32345. },
  32346. [
  32347. {
  32348. name: "Normal",
  32349. height: math.unit(7, "feet")
  32350. },
  32351. {
  32352. name: "Mini-macro",
  32353. height: math.unit(11, "feet")
  32354. },
  32355. {
  32356. name: "Macro",
  32357. height: math.unit(15, "meters"),
  32358. default: true
  32359. },
  32360. {
  32361. name: "Macro+",
  32362. height: math.unit(40, "meters")
  32363. },
  32364. ]
  32365. ))
  32366. characterMakers.push(() => makeCharacter(
  32367. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32368. {
  32369. front: {
  32370. height: math.unit(4 + 2 / 12, "feet"),
  32371. weight: math.unit(95, "lb"),
  32372. name: "Front",
  32373. image: {
  32374. source: "./media/characters/vaelophis-nyx/front.svg",
  32375. extra: 2532/2330,
  32376. bottom: 0/2532
  32377. }
  32378. },
  32379. back: {
  32380. height: math.unit(4 + 2 / 12, "feet"),
  32381. weight: math.unit(95, "lb"),
  32382. name: "Back",
  32383. image: {
  32384. source: "./media/characters/vaelophis-nyx/back.svg",
  32385. extra: 2484/2361,
  32386. bottom: 0/2484
  32387. }
  32388. },
  32389. feralSide: {
  32390. height: math.unit(2 + 1/12, "feet"),
  32391. weight: math.unit(20, "lb"),
  32392. name: "Feral (Side)",
  32393. image: {
  32394. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32395. extra: 1721/1581,
  32396. bottom: 70/1791
  32397. }
  32398. },
  32399. feralLazing: {
  32400. height: math.unit(1.08, "feet"),
  32401. weight: math.unit(20, "lb"),
  32402. name: "Feral (Lazing)",
  32403. image: {
  32404. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32405. extra: 822/822,
  32406. bottom: 248/1070
  32407. }
  32408. },
  32409. ear: {
  32410. height: math.unit(0.416, "feet"),
  32411. name: "Ear",
  32412. image: {
  32413. source: "./media/characters/vaelophis-nyx/ear.svg"
  32414. }
  32415. },
  32416. eye: {
  32417. height: math.unit(0.0748, "feet"),
  32418. name: "Eye",
  32419. image: {
  32420. source: "./media/characters/vaelophis-nyx/eye.svg"
  32421. }
  32422. },
  32423. mouth: {
  32424. height: math.unit(0.378, "feet"),
  32425. name: "Mouth",
  32426. image: {
  32427. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32428. }
  32429. },
  32430. spade: {
  32431. height: math.unit(0.55, "feet"),
  32432. name: "Spade",
  32433. image: {
  32434. source: "./media/characters/vaelophis-nyx/spade.svg"
  32435. }
  32436. },
  32437. },
  32438. [
  32439. {
  32440. name: "Normal",
  32441. height: math.unit(4 + 2/12, "feet"),
  32442. default: true
  32443. },
  32444. ]
  32445. ))
  32446. characterMakers.push(() => makeCharacter(
  32447. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32448. {
  32449. front: {
  32450. height: math.unit(7, "feet"),
  32451. weight: math.unit(231, "lb"),
  32452. name: "Front",
  32453. image: {
  32454. source: "./media/characters/flux/front.svg",
  32455. extra: 919/871,
  32456. bottom: 0/919
  32457. }
  32458. },
  32459. back: {
  32460. height: math.unit(7, "feet"),
  32461. weight: math.unit(231, "lb"),
  32462. name: "Back",
  32463. image: {
  32464. source: "./media/characters/flux/back.svg",
  32465. extra: 1040/992,
  32466. bottom: 0/1040
  32467. }
  32468. },
  32469. frontDressed: {
  32470. height: math.unit(7, "feet"),
  32471. weight: math.unit(231, "lb"),
  32472. name: "Front (Dressed)",
  32473. image: {
  32474. source: "./media/characters/flux/front-dressed.svg",
  32475. extra: 919/871,
  32476. bottom: 0/919
  32477. }
  32478. },
  32479. feralSide: {
  32480. height: math.unit(5, "feet"),
  32481. weight: math.unit(150, "lb"),
  32482. name: "Feral (Side)",
  32483. image: {
  32484. source: "./media/characters/flux/feral-side.svg",
  32485. extra: 598/528,
  32486. bottom: 28/626
  32487. }
  32488. },
  32489. head: {
  32490. height: math.unit(1.585, "feet"),
  32491. name: "Head",
  32492. image: {
  32493. source: "./media/characters/flux/head.svg"
  32494. }
  32495. },
  32496. headSide: {
  32497. height: math.unit(1.74, "feet"),
  32498. name: "Head (Side)",
  32499. image: {
  32500. source: "./media/characters/flux/head-side.svg"
  32501. }
  32502. },
  32503. headSideFire: {
  32504. height: math.unit(1.76, "feet"),
  32505. name: "Head (Side, Fire)",
  32506. image: {
  32507. source: "./media/characters/flux/head-side-fire.svg"
  32508. }
  32509. },
  32510. },
  32511. [
  32512. {
  32513. name: "Normal",
  32514. height: math.unit(7, "feet"),
  32515. default: true
  32516. },
  32517. ]
  32518. ))
  32519. characterMakers.push(() => makeCharacter(
  32520. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32521. {
  32522. front: {
  32523. height: math.unit(9, "feet"),
  32524. weight: math.unit(1012, "lb"),
  32525. name: "Front",
  32526. image: {
  32527. source: "./media/characters/ulfra-lupae/front.svg",
  32528. extra: 1083/1011,
  32529. bottom: 67/1150
  32530. }
  32531. },
  32532. },
  32533. [
  32534. {
  32535. name: "Micro",
  32536. height: math.unit(6, "inches")
  32537. },
  32538. {
  32539. name: "Socializing",
  32540. height: math.unit(6 + 5/12, "feet")
  32541. },
  32542. {
  32543. name: "Normal",
  32544. height: math.unit(9, "feet"),
  32545. default: true
  32546. },
  32547. {
  32548. name: "Macro",
  32549. height: math.unit(150, "feet")
  32550. },
  32551. ]
  32552. ))
  32553. characterMakers.push(() => makeCharacter(
  32554. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32555. {
  32556. front: {
  32557. height: math.unit(5 + 2/12, "feet"),
  32558. weight: math.unit(120, "lb"),
  32559. name: "Front",
  32560. image: {
  32561. source: "./media/characters/timber/front.svg",
  32562. extra: 2814/2705,
  32563. bottom: 181/2995
  32564. }
  32565. },
  32566. },
  32567. [
  32568. {
  32569. name: "Normal",
  32570. height: math.unit(5 + 2/12, "feet"),
  32571. default: true
  32572. },
  32573. ]
  32574. ))
  32575. characterMakers.push(() => makeCharacter(
  32576. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32577. {
  32578. front: {
  32579. height: math.unit(9, "feet"),
  32580. name: "Front",
  32581. image: {
  32582. source: "./media/characters/nicki/front.svg",
  32583. extra: 1240/990,
  32584. bottom: 45/1285
  32585. },
  32586. form: "anthro",
  32587. default: true
  32588. },
  32589. side: {
  32590. height: math.unit(9, "feet"),
  32591. name: "Side",
  32592. image: {
  32593. source: "./media/characters/nicki/side.svg",
  32594. extra: 1047/973,
  32595. bottom: 61/1108
  32596. },
  32597. form: "anthro"
  32598. },
  32599. back: {
  32600. height: math.unit(9, "feet"),
  32601. name: "Back",
  32602. image: {
  32603. source: "./media/characters/nicki/back.svg",
  32604. extra: 1006/965,
  32605. bottom: 39/1045
  32606. },
  32607. form: "anthro"
  32608. },
  32609. taur: {
  32610. height: math.unit(15, "feet"),
  32611. name: "Taur",
  32612. image: {
  32613. source: "./media/characters/nicki/taur.svg",
  32614. extra: 1592/1347,
  32615. bottom: 0/1592
  32616. },
  32617. form: "taur",
  32618. default: true
  32619. },
  32620. },
  32621. [
  32622. {
  32623. name: "Normal",
  32624. height: math.unit(9, "feet"),
  32625. form: "anthro",
  32626. default: true
  32627. },
  32628. {
  32629. name: "Normal",
  32630. height: math.unit(15, "feet"),
  32631. form: "taur",
  32632. default: true
  32633. }
  32634. ],
  32635. {
  32636. "anthro": {
  32637. name: "Anthro",
  32638. default: true
  32639. },
  32640. "taur": {
  32641. name: "Taur"
  32642. }
  32643. }
  32644. ))
  32645. characterMakers.push(() => makeCharacter(
  32646. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32647. {
  32648. front: {
  32649. height: math.unit(7 + 10/12, "feet"),
  32650. weight: math.unit(3.5, "tons"),
  32651. name: "Front",
  32652. image: {
  32653. source: "./media/characters/lee/front.svg",
  32654. extra: 1773/1615,
  32655. bottom: 86/1859
  32656. }
  32657. },
  32658. hand: {
  32659. height: math.unit(1.78, "feet"),
  32660. name: "Hand",
  32661. image: {
  32662. source: "./media/characters/lee/hand.svg"
  32663. }
  32664. },
  32665. maw: {
  32666. height: math.unit(1.18, "feet"),
  32667. name: "Maw",
  32668. image: {
  32669. source: "./media/characters/lee/maw.svg"
  32670. }
  32671. },
  32672. },
  32673. [
  32674. {
  32675. name: "Normal",
  32676. height: math.unit(7 + 10/12, "feet"),
  32677. default: true
  32678. },
  32679. ]
  32680. ))
  32681. characterMakers.push(() => makeCharacter(
  32682. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32683. {
  32684. front: {
  32685. height: math.unit(9, "feet"),
  32686. name: "Front",
  32687. image: {
  32688. source: "./media/characters/guti/front.svg",
  32689. extra: 4551/4355,
  32690. bottom: 123/4674
  32691. }
  32692. },
  32693. tongue: {
  32694. height: math.unit(1, "feet"),
  32695. name: "Tongue",
  32696. image: {
  32697. source: "./media/characters/guti/tongue.svg"
  32698. }
  32699. },
  32700. paw: {
  32701. height: math.unit(1.18, "feet"),
  32702. name: "Paw",
  32703. image: {
  32704. source: "./media/characters/guti/paw.svg"
  32705. }
  32706. },
  32707. },
  32708. [
  32709. {
  32710. name: "Normal",
  32711. height: math.unit(9, "feet"),
  32712. default: true
  32713. },
  32714. ]
  32715. ))
  32716. characterMakers.push(() => makeCharacter(
  32717. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32718. {
  32719. side: {
  32720. height: math.unit(5, "meters"),
  32721. name: "Side",
  32722. image: {
  32723. source: "./media/characters/vesper/side.svg",
  32724. extra: 1605/1518,
  32725. bottom: 0/1605
  32726. }
  32727. },
  32728. },
  32729. [
  32730. {
  32731. name: "Small",
  32732. height: math.unit(5, "meters")
  32733. },
  32734. {
  32735. name: "Sage",
  32736. height: math.unit(100, "meters"),
  32737. default: true
  32738. },
  32739. {
  32740. name: "Fun Size",
  32741. height: math.unit(600, "meters")
  32742. },
  32743. {
  32744. name: "Goddess",
  32745. height: math.unit(20000, "km")
  32746. },
  32747. {
  32748. name: "Maximum",
  32749. height: math.unit(5, "galaxies")
  32750. },
  32751. ]
  32752. ))
  32753. characterMakers.push(() => makeCharacter(
  32754. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32755. {
  32756. front: {
  32757. height: math.unit(6 + 3/12, "feet"),
  32758. weight: math.unit(190, "lb"),
  32759. name: "Front",
  32760. image: {
  32761. source: "./media/characters/gawain/front.svg",
  32762. extra: 2222/2139,
  32763. bottom: 90/2312
  32764. }
  32765. },
  32766. back: {
  32767. height: math.unit(6 + 3/12, "feet"),
  32768. weight: math.unit(190, "lb"),
  32769. name: "Back",
  32770. image: {
  32771. source: "./media/characters/gawain/back.svg",
  32772. extra: 2199/2111,
  32773. bottom: 73/2272
  32774. }
  32775. },
  32776. },
  32777. [
  32778. {
  32779. name: "Normal",
  32780. height: math.unit(6 + 3/12, "feet"),
  32781. default: true
  32782. },
  32783. ]
  32784. ))
  32785. characterMakers.push(() => makeCharacter(
  32786. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32787. {
  32788. side: {
  32789. height: math.unit(3.5, "meters"),
  32790. weight: math.unit(16000, "lb"),
  32791. name: "Side",
  32792. image: {
  32793. source: "./media/characters/dascalti/side.svg",
  32794. extra: 392/273,
  32795. bottom: 47/439
  32796. }
  32797. },
  32798. breath: {
  32799. height: math.unit(7.4, "feet"),
  32800. name: "Breath",
  32801. image: {
  32802. source: "./media/characters/dascalti/breath.svg"
  32803. }
  32804. },
  32805. fed: {
  32806. height: math.unit(3.6, "meters"),
  32807. weight: math.unit(16000, "lb"),
  32808. name: "Fed",
  32809. image: {
  32810. source: "./media/characters/dascalti/fed.svg",
  32811. extra: 1419/820,
  32812. bottom: 95/1514
  32813. }
  32814. },
  32815. },
  32816. [
  32817. {
  32818. name: "Normal",
  32819. height: math.unit(3.5, "meters"),
  32820. default: true
  32821. },
  32822. ]
  32823. ))
  32824. characterMakers.push(() => makeCharacter(
  32825. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32826. {
  32827. front: {
  32828. height: math.unit(3 + 5/12, "feet"),
  32829. name: "Front",
  32830. image: {
  32831. source: "./media/characters/mauve/front.svg",
  32832. extra: 1126/1033,
  32833. bottom: 65/1191
  32834. }
  32835. },
  32836. side: {
  32837. height: math.unit(3 + 5/12, "feet"),
  32838. name: "Side",
  32839. image: {
  32840. source: "./media/characters/mauve/side.svg",
  32841. extra: 1089/1001,
  32842. bottom: 29/1118
  32843. }
  32844. },
  32845. back: {
  32846. height: math.unit(3 + 5/12, "feet"),
  32847. name: "Back",
  32848. image: {
  32849. source: "./media/characters/mauve/back.svg",
  32850. extra: 1173/1053,
  32851. bottom: 109/1282
  32852. }
  32853. },
  32854. },
  32855. [
  32856. {
  32857. name: "Normal",
  32858. height: math.unit(3 + 5/12, "feet"),
  32859. default: true
  32860. },
  32861. ]
  32862. ))
  32863. characterMakers.push(() => makeCharacter(
  32864. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32865. {
  32866. front: {
  32867. height: math.unit(6 + 3/12, "feet"),
  32868. weight: math.unit(430, "lb"),
  32869. name: "Front",
  32870. image: {
  32871. source: "./media/characters/carlos/front.svg",
  32872. extra: 1964/1913,
  32873. bottom: 70/2034
  32874. }
  32875. },
  32876. },
  32877. [
  32878. {
  32879. name: "Normal",
  32880. height: math.unit(6 + 3/12, "feet"),
  32881. default: true
  32882. },
  32883. ]
  32884. ))
  32885. characterMakers.push(() => makeCharacter(
  32886. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32887. {
  32888. back: {
  32889. height: math.unit(5 + 10/12, "feet"),
  32890. weight: math.unit(200, "lb"),
  32891. name: "Back",
  32892. image: {
  32893. source: "./media/characters/jax/back.svg",
  32894. extra: 764/739,
  32895. bottom: 25/789
  32896. }
  32897. },
  32898. },
  32899. [
  32900. {
  32901. name: "Normal",
  32902. height: math.unit(5 + 10/12, "feet"),
  32903. default: true
  32904. },
  32905. ]
  32906. ))
  32907. characterMakers.push(() => makeCharacter(
  32908. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32909. {
  32910. front: {
  32911. height: math.unit(8, "feet"),
  32912. weight: math.unit(250, "lb"),
  32913. name: "Front",
  32914. image: {
  32915. source: "./media/characters/eikthynir/front.svg",
  32916. extra: 1332/1166,
  32917. bottom: 82/1414
  32918. }
  32919. },
  32920. back: {
  32921. height: math.unit(8, "feet"),
  32922. weight: math.unit(250, "lb"),
  32923. name: "Back",
  32924. image: {
  32925. source: "./media/characters/eikthynir/back.svg",
  32926. extra: 1342/1190,
  32927. bottom: 19/1361
  32928. }
  32929. },
  32930. dick: {
  32931. height: math.unit(2.35, "feet"),
  32932. name: "Dick",
  32933. image: {
  32934. source: "./media/characters/eikthynir/dick.svg"
  32935. }
  32936. },
  32937. },
  32938. [
  32939. {
  32940. name: "Normal",
  32941. height: math.unit(8, "feet"),
  32942. default: true
  32943. },
  32944. ]
  32945. ))
  32946. characterMakers.push(() => makeCharacter(
  32947. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32948. {
  32949. front: {
  32950. height: math.unit(99, "meters"),
  32951. weight: math.unit(13000, "tons"),
  32952. name: "Front",
  32953. image: {
  32954. source: "./media/characters/zlmos/front.svg",
  32955. extra: 2202/1992,
  32956. bottom: 315/2517
  32957. }
  32958. },
  32959. },
  32960. [
  32961. {
  32962. name: "Macro",
  32963. height: math.unit(99, "meters"),
  32964. default: true
  32965. },
  32966. ]
  32967. ))
  32968. characterMakers.push(() => makeCharacter(
  32969. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32970. {
  32971. front: {
  32972. height: math.unit(6 + 5/12, "feet"),
  32973. name: "Front",
  32974. image: {
  32975. source: "./media/characters/purri/front.svg",
  32976. extra: 1698/1610,
  32977. bottom: 32/1730
  32978. }
  32979. },
  32980. frontAlt: {
  32981. height: math.unit(6 + 5/12, "feet"),
  32982. name: "Front (Alt)",
  32983. image: {
  32984. source: "./media/characters/purri/front-alt.svg",
  32985. extra: 450/420,
  32986. bottom: 26/476
  32987. }
  32988. },
  32989. boots: {
  32990. height: math.unit(5.5, "feet"),
  32991. name: "Boots",
  32992. image: {
  32993. source: "./media/characters/purri/boots.svg",
  32994. extra: 905/853,
  32995. bottom: 18/923
  32996. }
  32997. },
  32998. lying: {
  32999. height: math.unit(2, "feet"),
  33000. name: "Lying",
  33001. image: {
  33002. source: "./media/characters/purri/lying.svg",
  33003. extra: 940/843,
  33004. bottom: 146/1086
  33005. }
  33006. },
  33007. devious: {
  33008. height: math.unit(1.77, "feet"),
  33009. name: "Devious",
  33010. image: {
  33011. source: "./media/characters/purri/devious.svg",
  33012. extra: 1440/1155,
  33013. bottom: 147/1587
  33014. }
  33015. },
  33016. bean: {
  33017. height: math.unit(1.94, "feet"),
  33018. name: "Bean",
  33019. image: {
  33020. source: "./media/characters/purri/bean.svg"
  33021. }
  33022. },
  33023. },
  33024. [
  33025. {
  33026. name: "Micro",
  33027. height: math.unit(1, "mm")
  33028. },
  33029. {
  33030. name: "Normal",
  33031. height: math.unit(6 + 5/12, "feet"),
  33032. default: true
  33033. },
  33034. {
  33035. name: "Macro :3c",
  33036. height: math.unit(2, "miles")
  33037. },
  33038. ]
  33039. ))
  33040. characterMakers.push(() => makeCharacter(
  33041. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33042. {
  33043. front: {
  33044. height: math.unit(6 + 2/12, "feet"),
  33045. weight: math.unit(250, "lb"),
  33046. name: "Front",
  33047. image: {
  33048. source: "./media/characters/moonlight/front.svg",
  33049. extra: 1044/908,
  33050. bottom: 56/1100
  33051. }
  33052. },
  33053. feral: {
  33054. height: math.unit(3 + 1/12, "feet"),
  33055. weight: math.unit(50, "kg"),
  33056. name: "Feral",
  33057. image: {
  33058. source: "./media/characters/moonlight/feral.svg",
  33059. extra: 3705/2791,
  33060. bottom: 145/3850
  33061. }
  33062. },
  33063. paw: {
  33064. height: math.unit(1, "feet"),
  33065. name: "Paw",
  33066. image: {
  33067. source: "./media/characters/moonlight/paw.svg"
  33068. }
  33069. },
  33070. paws: {
  33071. height: math.unit(0.98, "feet"),
  33072. name: "Paws",
  33073. image: {
  33074. source: "./media/characters/moonlight/paws.svg",
  33075. extra: 939/939,
  33076. bottom: 50/989
  33077. }
  33078. },
  33079. mouth: {
  33080. height: math.unit(0.48, "feet"),
  33081. name: "Mouth",
  33082. image: {
  33083. source: "./media/characters/moonlight/mouth.svg"
  33084. }
  33085. },
  33086. dick: {
  33087. height: math.unit(1.46, "feet"),
  33088. name: "Dick",
  33089. image: {
  33090. source: "./media/characters/moonlight/dick.svg"
  33091. }
  33092. },
  33093. },
  33094. [
  33095. {
  33096. name: "Normal",
  33097. height: math.unit(6 + 2/12, "feet"),
  33098. default: true
  33099. },
  33100. {
  33101. name: "Macro",
  33102. height: math.unit(300, "feet")
  33103. },
  33104. {
  33105. name: "Macro+",
  33106. height: math.unit(1, "mile")
  33107. },
  33108. {
  33109. name: "Mt. Moon",
  33110. height: math.unit(5, "miles")
  33111. },
  33112. {
  33113. name: "Megamacro",
  33114. height: math.unit(15, "miles")
  33115. },
  33116. ]
  33117. ))
  33118. characterMakers.push(() => makeCharacter(
  33119. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33120. {
  33121. back: {
  33122. height: math.unit(6, "feet"),
  33123. weight: math.unit(150, "lb"),
  33124. name: "Back",
  33125. image: {
  33126. source: "./media/characters/sylen/back.svg",
  33127. extra: 1335/1273,
  33128. bottom: 107/1442
  33129. }
  33130. },
  33131. },
  33132. [
  33133. {
  33134. name: "Normal",
  33135. height: math.unit(5 + 5/12, "feet")
  33136. },
  33137. {
  33138. name: "Megamacro",
  33139. height: math.unit(3, "miles"),
  33140. default: true
  33141. },
  33142. ]
  33143. ))
  33144. characterMakers.push(() => makeCharacter(
  33145. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33146. {
  33147. front: {
  33148. height: math.unit(6, "feet"),
  33149. weight: math.unit(190, "lb"),
  33150. name: "Front",
  33151. image: {
  33152. source: "./media/characters/huttser/front.svg",
  33153. extra: 1152/1058,
  33154. bottom: 23/1175
  33155. }
  33156. },
  33157. side: {
  33158. height: math.unit(6, "feet"),
  33159. weight: math.unit(190, "lb"),
  33160. name: "Side",
  33161. image: {
  33162. source: "./media/characters/huttser/side.svg",
  33163. extra: 1174/1065,
  33164. bottom: 18/1192
  33165. }
  33166. },
  33167. back: {
  33168. height: math.unit(6, "feet"),
  33169. weight: math.unit(190, "lb"),
  33170. name: "Back",
  33171. image: {
  33172. source: "./media/characters/huttser/back.svg",
  33173. extra: 1158/1056,
  33174. bottom: 12/1170
  33175. }
  33176. },
  33177. },
  33178. [
  33179. ]
  33180. ))
  33181. characterMakers.push(() => makeCharacter(
  33182. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33183. {
  33184. side: {
  33185. height: math.unit(12 + 9/12, "feet"),
  33186. weight: math.unit(15000, "lb"),
  33187. name: "Side",
  33188. image: {
  33189. source: "./media/characters/faan/side.svg",
  33190. extra: 2747/2697,
  33191. bottom: 0/2747
  33192. }
  33193. },
  33194. front: {
  33195. height: math.unit(12 + 9/12, "feet"),
  33196. weight: math.unit(15000, "lb"),
  33197. name: "Front",
  33198. image: {
  33199. source: "./media/characters/faan/front.svg",
  33200. extra: 607/571,
  33201. bottom: 24/631
  33202. }
  33203. },
  33204. head: {
  33205. height: math.unit(2.85, "feet"),
  33206. name: "Head",
  33207. image: {
  33208. source: "./media/characters/faan/head.svg"
  33209. }
  33210. },
  33211. headAlt: {
  33212. height: math.unit(3.13, "feet"),
  33213. name: "Head-alt",
  33214. image: {
  33215. source: "./media/characters/faan/head-alt.svg"
  33216. }
  33217. },
  33218. },
  33219. [
  33220. {
  33221. name: "Normal",
  33222. height: math.unit(12 + 9/12, "feet"),
  33223. default: true
  33224. },
  33225. ]
  33226. ))
  33227. characterMakers.push(() => makeCharacter(
  33228. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33229. {
  33230. front: {
  33231. height: math.unit(6, "feet"),
  33232. weight: math.unit(300, "lb"),
  33233. name: "Front",
  33234. image: {
  33235. source: "./media/characters/tanio/front.svg",
  33236. extra: 711/673,
  33237. bottom: 25/736
  33238. }
  33239. },
  33240. },
  33241. [
  33242. {
  33243. name: "Normal",
  33244. height: math.unit(6, "feet"),
  33245. default: true
  33246. },
  33247. ]
  33248. ))
  33249. characterMakers.push(() => makeCharacter(
  33250. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33251. {
  33252. front: {
  33253. height: math.unit(3, "inches"),
  33254. name: "Front",
  33255. image: {
  33256. source: "./media/characters/noboru/front.svg",
  33257. extra: 1039/932,
  33258. bottom: 18/1057
  33259. }
  33260. },
  33261. },
  33262. [
  33263. {
  33264. name: "Micro",
  33265. height: math.unit(3, "inches"),
  33266. default: true
  33267. },
  33268. ]
  33269. ))
  33270. characterMakers.push(() => makeCharacter(
  33271. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33272. {
  33273. front: {
  33274. height: math.unit(1.85, "meters"),
  33275. weight: math.unit(80, "kg"),
  33276. name: "Front",
  33277. image: {
  33278. source: "./media/characters/daniel-barrett/front.svg",
  33279. extra: 355/337,
  33280. bottom: 9/364
  33281. }
  33282. },
  33283. },
  33284. [
  33285. {
  33286. name: "Pico",
  33287. height: math.unit(0.0433, "mm")
  33288. },
  33289. {
  33290. name: "Nano",
  33291. height: math.unit(1.5, "mm")
  33292. },
  33293. {
  33294. name: "Micro",
  33295. height: math.unit(5.3, "cm"),
  33296. default: true
  33297. },
  33298. {
  33299. name: "Normal",
  33300. height: math.unit(1.85, "meters")
  33301. },
  33302. {
  33303. name: "Macro",
  33304. height: math.unit(64.7, "meters")
  33305. },
  33306. {
  33307. name: "Megamacro",
  33308. height: math.unit(2.26, "km")
  33309. },
  33310. {
  33311. name: "Gigamacro",
  33312. height: math.unit(79, "km")
  33313. },
  33314. {
  33315. name: "Teramacro",
  33316. height: math.unit(2765, "km")
  33317. },
  33318. {
  33319. name: "Petamacro",
  33320. height: math.unit(96678, "km")
  33321. },
  33322. ]
  33323. ))
  33324. characterMakers.push(() => makeCharacter(
  33325. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33326. {
  33327. front: {
  33328. height: math.unit(30, "meters"),
  33329. weight: math.unit(400, "tons"),
  33330. name: "Front",
  33331. image: {
  33332. source: "./media/characters/zeel/front.svg",
  33333. extra: 2599/2599,
  33334. bottom: 226/2825
  33335. }
  33336. },
  33337. },
  33338. [
  33339. {
  33340. name: "Macro",
  33341. height: math.unit(30, "meters"),
  33342. default: true
  33343. },
  33344. ]
  33345. ))
  33346. characterMakers.push(() => makeCharacter(
  33347. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33348. {
  33349. front: {
  33350. height: math.unit(6 + 7/12, "feet"),
  33351. weight: math.unit(210, "lb"),
  33352. name: "Front",
  33353. image: {
  33354. source: "./media/characters/tarn/front.svg",
  33355. extra: 3517/3220,
  33356. bottom: 91/3608
  33357. }
  33358. },
  33359. back: {
  33360. height: math.unit(6 + 7/12, "feet"),
  33361. weight: math.unit(210, "lb"),
  33362. name: "Back",
  33363. image: {
  33364. source: "./media/characters/tarn/back.svg",
  33365. extra: 3566/3241,
  33366. bottom: 34/3600
  33367. }
  33368. },
  33369. dick: {
  33370. height: math.unit(1.65, "feet"),
  33371. name: "Dick",
  33372. image: {
  33373. source: "./media/characters/tarn/dick.svg"
  33374. }
  33375. },
  33376. paw: {
  33377. height: math.unit(1.80, "feet"),
  33378. name: "Paw",
  33379. image: {
  33380. source: "./media/characters/tarn/paw.svg"
  33381. }
  33382. },
  33383. tongue: {
  33384. height: math.unit(0.97, "feet"),
  33385. name: "Tongue",
  33386. image: {
  33387. source: "./media/characters/tarn/tongue.svg"
  33388. }
  33389. },
  33390. },
  33391. [
  33392. {
  33393. name: "Micro",
  33394. height: math.unit(4, "inches")
  33395. },
  33396. {
  33397. name: "Normal",
  33398. height: math.unit(6 + 7/12, "feet"),
  33399. default: true
  33400. },
  33401. {
  33402. name: "Macro",
  33403. height: math.unit(300, "feet")
  33404. },
  33405. ]
  33406. ))
  33407. characterMakers.push(() => makeCharacter(
  33408. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33409. {
  33410. front: {
  33411. height: math.unit(5 + 7/12, "feet"),
  33412. weight: math.unit(80, "kg"),
  33413. name: "Front",
  33414. image: {
  33415. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33416. extra: 3023/2865,
  33417. bottom: 33/3056
  33418. }
  33419. },
  33420. back: {
  33421. height: math.unit(5 + 7/12, "feet"),
  33422. weight: math.unit(80, "kg"),
  33423. name: "Back",
  33424. image: {
  33425. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33426. extra: 3020/2886,
  33427. bottom: 30/3050
  33428. }
  33429. },
  33430. dick: {
  33431. height: math.unit(0.98, "feet"),
  33432. name: "Dick",
  33433. image: {
  33434. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33435. }
  33436. },
  33437. anatomy: {
  33438. height: math.unit(2.86, "feet"),
  33439. name: "Anatomy",
  33440. image: {
  33441. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33442. }
  33443. },
  33444. },
  33445. [
  33446. {
  33447. name: "Really Small",
  33448. height: math.unit(2, "inches")
  33449. },
  33450. {
  33451. name: "Micro",
  33452. height: math.unit(5.583, "inches")
  33453. },
  33454. {
  33455. name: "Normal",
  33456. height: math.unit(5 + 7/12, "feet"),
  33457. default: true
  33458. },
  33459. {
  33460. name: "Macro",
  33461. height: math.unit(67, "feet")
  33462. },
  33463. {
  33464. name: "Megamacro",
  33465. height: math.unit(134, "feet")
  33466. },
  33467. ]
  33468. ))
  33469. characterMakers.push(() => makeCharacter(
  33470. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33471. {
  33472. front: {
  33473. height: math.unit(9, "feet"),
  33474. weight: math.unit(120, "lb"),
  33475. name: "Front",
  33476. image: {
  33477. source: "./media/characters/sally/front.svg",
  33478. extra: 1506/1349,
  33479. bottom: 66/1572
  33480. }
  33481. },
  33482. },
  33483. [
  33484. {
  33485. name: "Normal",
  33486. height: math.unit(9, "feet"),
  33487. default: true
  33488. },
  33489. ]
  33490. ))
  33491. characterMakers.push(() => makeCharacter(
  33492. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33493. {
  33494. front: {
  33495. height: math.unit(8, "feet"),
  33496. weight: math.unit(900, "lb"),
  33497. name: "Front",
  33498. image: {
  33499. source: "./media/characters/owen/front.svg",
  33500. extra: 1761/1657,
  33501. bottom: 74/1835
  33502. }
  33503. },
  33504. side: {
  33505. height: math.unit(8, "feet"),
  33506. weight: math.unit(900, "lb"),
  33507. name: "Side",
  33508. image: {
  33509. source: "./media/characters/owen/side.svg",
  33510. extra: 1797/1734,
  33511. bottom: 30/1827
  33512. }
  33513. },
  33514. back: {
  33515. height: math.unit(8, "feet"),
  33516. weight: math.unit(900, "lb"),
  33517. name: "Back",
  33518. image: {
  33519. source: "./media/characters/owen/back.svg",
  33520. extra: 1796/1706,
  33521. bottom: 59/1855
  33522. }
  33523. },
  33524. maw: {
  33525. height: math.unit(1.76, "feet"),
  33526. name: "Maw",
  33527. image: {
  33528. source: "./media/characters/owen/maw.svg"
  33529. }
  33530. },
  33531. },
  33532. [
  33533. {
  33534. name: "Normal",
  33535. height: math.unit(8, "feet"),
  33536. default: true
  33537. },
  33538. ]
  33539. ))
  33540. characterMakers.push(() => makeCharacter(
  33541. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33542. {
  33543. front: {
  33544. height: math.unit(4, "feet"),
  33545. weight: math.unit(400, "lb"),
  33546. name: "Front",
  33547. image: {
  33548. source: "./media/characters/ryth/front.svg",
  33549. extra: 1920/1748,
  33550. bottom: 42/1962
  33551. }
  33552. },
  33553. back: {
  33554. height: math.unit(4, "feet"),
  33555. weight: math.unit(400, "lb"),
  33556. name: "Back",
  33557. image: {
  33558. source: "./media/characters/ryth/back.svg",
  33559. extra: 1897/1690,
  33560. bottom: 89/1986
  33561. }
  33562. },
  33563. mouth: {
  33564. height: math.unit(1.39, "feet"),
  33565. name: "Mouth",
  33566. image: {
  33567. source: "./media/characters/ryth/mouth.svg"
  33568. }
  33569. },
  33570. tailmaw: {
  33571. height: math.unit(1.23, "feet"),
  33572. name: "Tailmaw",
  33573. image: {
  33574. source: "./media/characters/ryth/tailmaw.svg"
  33575. }
  33576. },
  33577. goia: {
  33578. height: math.unit(4, "meters"),
  33579. weight: math.unit(10800, "lb"),
  33580. name: "Goia",
  33581. image: {
  33582. source: "./media/characters/ryth/goia.svg",
  33583. extra: 745/640,
  33584. bottom: 107/852
  33585. }
  33586. },
  33587. goiaFront: {
  33588. height: math.unit(4, "meters"),
  33589. weight: math.unit(10800, "lb"),
  33590. name: "Goia (Front)",
  33591. image: {
  33592. source: "./media/characters/ryth/goia-front.svg",
  33593. extra: 750/586,
  33594. bottom: 114/864
  33595. }
  33596. },
  33597. goiaMaw: {
  33598. height: math.unit(5.55, "feet"),
  33599. name: "Goia Maw",
  33600. image: {
  33601. source: "./media/characters/ryth/goia-maw.svg"
  33602. }
  33603. },
  33604. goiaForepaw: {
  33605. height: math.unit(3.5, "feet"),
  33606. name: "Goia Forepaw",
  33607. image: {
  33608. source: "./media/characters/ryth/goia-forepaw.svg"
  33609. }
  33610. },
  33611. goiaHindpaw: {
  33612. height: math.unit(5.55, "feet"),
  33613. name: "Goia Hindpaw",
  33614. image: {
  33615. source: "./media/characters/ryth/goia-hindpaw.svg"
  33616. }
  33617. },
  33618. },
  33619. [
  33620. {
  33621. name: "Normal",
  33622. height: math.unit(4, "feet"),
  33623. default: true
  33624. },
  33625. ]
  33626. ))
  33627. characterMakers.push(() => makeCharacter(
  33628. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33629. {
  33630. front: {
  33631. height: math.unit(7, "feet"),
  33632. weight: math.unit(180, "lb"),
  33633. name: "Front",
  33634. image: {
  33635. source: "./media/characters/necrolance/front.svg",
  33636. extra: 1062/947,
  33637. bottom: 41/1103
  33638. }
  33639. },
  33640. back: {
  33641. height: math.unit(7, "feet"),
  33642. weight: math.unit(180, "lb"),
  33643. name: "Back",
  33644. image: {
  33645. source: "./media/characters/necrolance/back.svg",
  33646. extra: 1045/984,
  33647. bottom: 14/1059
  33648. }
  33649. },
  33650. wing: {
  33651. height: math.unit(2.67, "feet"),
  33652. name: "Wing",
  33653. image: {
  33654. source: "./media/characters/necrolance/wing.svg"
  33655. }
  33656. },
  33657. },
  33658. [
  33659. {
  33660. name: "Normal",
  33661. height: math.unit(7, "feet"),
  33662. default: true
  33663. },
  33664. ]
  33665. ))
  33666. characterMakers.push(() => makeCharacter(
  33667. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33668. {
  33669. front: {
  33670. height: math.unit(76, "meters"),
  33671. weight: math.unit(30000, "tons"),
  33672. name: "Front",
  33673. image: {
  33674. source: "./media/characters/tyler/front.svg",
  33675. extra: 1640/1640,
  33676. bottom: 114/1754
  33677. }
  33678. },
  33679. },
  33680. [
  33681. {
  33682. name: "Macro",
  33683. height: math.unit(76, "meters"),
  33684. default: true
  33685. },
  33686. ]
  33687. ))
  33688. characterMakers.push(() => makeCharacter(
  33689. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33690. {
  33691. front: {
  33692. height: math.unit(4 + 11/12, "feet"),
  33693. weight: math.unit(132, "lb"),
  33694. name: "Front",
  33695. image: {
  33696. source: "./media/characters/icey/front.svg",
  33697. extra: 2750/2550,
  33698. bottom: 33/2783
  33699. }
  33700. },
  33701. back: {
  33702. height: math.unit(4 + 11/12, "feet"),
  33703. weight: math.unit(132, "lb"),
  33704. name: "Back",
  33705. image: {
  33706. source: "./media/characters/icey/back.svg",
  33707. extra: 2624/2481,
  33708. bottom: 35/2659
  33709. }
  33710. },
  33711. },
  33712. [
  33713. {
  33714. name: "Normal",
  33715. height: math.unit(4 + 11/12, "feet"),
  33716. default: true
  33717. },
  33718. ]
  33719. ))
  33720. characterMakers.push(() => makeCharacter(
  33721. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33722. {
  33723. front: {
  33724. height: math.unit(100, "feet"),
  33725. weight: math.unit(0, "lb"),
  33726. name: "Front",
  33727. image: {
  33728. source: "./media/characters/smile/front.svg",
  33729. extra: 2983/2912,
  33730. bottom: 162/3145
  33731. }
  33732. },
  33733. back: {
  33734. height: math.unit(100, "feet"),
  33735. weight: math.unit(0, "lb"),
  33736. name: "Back",
  33737. image: {
  33738. source: "./media/characters/smile/back.svg",
  33739. extra: 3143/3031,
  33740. bottom: 91/3234
  33741. }
  33742. },
  33743. head: {
  33744. height: math.unit(26.3, "feet"),
  33745. weight: math.unit(0, "lb"),
  33746. name: "Head",
  33747. image: {
  33748. source: "./media/characters/smile/head.svg"
  33749. }
  33750. },
  33751. collar: {
  33752. height: math.unit(5.3, "feet"),
  33753. weight: math.unit(0, "lb"),
  33754. name: "Collar",
  33755. image: {
  33756. source: "./media/characters/smile/collar.svg"
  33757. }
  33758. },
  33759. },
  33760. [
  33761. {
  33762. name: "Macro",
  33763. height: math.unit(100, "feet"),
  33764. default: true
  33765. },
  33766. ]
  33767. ))
  33768. characterMakers.push(() => makeCharacter(
  33769. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33770. {
  33771. dragon: {
  33772. height: math.unit(26, "feet"),
  33773. weight: math.unit(36, "tons"),
  33774. name: "Dragon",
  33775. image: {
  33776. source: "./media/characters/arimphae/dragon.svg",
  33777. extra: 1574/983,
  33778. bottom: 357/1931
  33779. }
  33780. },
  33781. drake: {
  33782. height: math.unit(9, "feet"),
  33783. weight: math.unit(1.5, "tons"),
  33784. name: "Drake",
  33785. image: {
  33786. source: "./media/characters/arimphae/drake.svg",
  33787. extra: 1120/925,
  33788. bottom: 435/1555
  33789. }
  33790. },
  33791. },
  33792. [
  33793. {
  33794. name: "Small",
  33795. height: math.unit(26*5/9, "feet")
  33796. },
  33797. {
  33798. name: "Normal",
  33799. height: math.unit(26, "feet"),
  33800. default: true
  33801. },
  33802. ]
  33803. ))
  33804. characterMakers.push(() => makeCharacter(
  33805. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33806. {
  33807. front: {
  33808. height: math.unit(8 + 9/12, "feet"),
  33809. name: "Front",
  33810. image: {
  33811. source: "./media/characters/xander/front.svg",
  33812. extra: 1237/974,
  33813. bottom: 94/1331
  33814. }
  33815. },
  33816. },
  33817. [
  33818. {
  33819. name: "Normal",
  33820. height: math.unit(8 + 9/12, "feet"),
  33821. default: true
  33822. },
  33823. {
  33824. name: "Gaze Grabber",
  33825. height: math.unit(13 + 8/12, "feet")
  33826. },
  33827. {
  33828. name: "Jaw Dropper",
  33829. height: math.unit(27, "feet")
  33830. },
  33831. {
  33832. name: "Show Stopper",
  33833. height: math.unit(136, "feet")
  33834. },
  33835. {
  33836. name: "Superstar",
  33837. height: math.unit(1.9e6, "miles")
  33838. },
  33839. ]
  33840. ))
  33841. characterMakers.push(() => makeCharacter(
  33842. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33843. {
  33844. side: {
  33845. height: math.unit(2100, "feet"),
  33846. name: "Side",
  33847. image: {
  33848. source: "./media/characters/osiris/side.svg",
  33849. extra: 1105/939,
  33850. bottom: 167/1272
  33851. }
  33852. },
  33853. },
  33854. [
  33855. {
  33856. name: "Macro",
  33857. height: math.unit(2100, "feet"),
  33858. default: true
  33859. },
  33860. ]
  33861. ))
  33862. characterMakers.push(() => makeCharacter(
  33863. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33864. {
  33865. front: {
  33866. height: math.unit(6 + 8/12, "feet"),
  33867. weight: math.unit(225, "lb"),
  33868. name: "Front",
  33869. image: {
  33870. source: "./media/characters/rhys-londe/front.svg",
  33871. extra: 2258/2141,
  33872. bottom: 188/2446
  33873. }
  33874. },
  33875. back: {
  33876. height: math.unit(6 + 8/12, "feet"),
  33877. weight: math.unit(225, "lb"),
  33878. name: "Back",
  33879. image: {
  33880. source: "./media/characters/rhys-londe/back.svg",
  33881. extra: 2237/2137,
  33882. bottom: 63/2300
  33883. }
  33884. },
  33885. frontNsfw: {
  33886. height: math.unit(6 + 8/12, "feet"),
  33887. weight: math.unit(225, "lb"),
  33888. name: "Front (NSFW)",
  33889. image: {
  33890. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33891. extra: 2258/2141,
  33892. bottom: 188/2446
  33893. }
  33894. },
  33895. backNsfw: {
  33896. height: math.unit(6 + 8/12, "feet"),
  33897. weight: math.unit(225, "lb"),
  33898. name: "Back (NSFW)",
  33899. image: {
  33900. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33901. extra: 2237/2137,
  33902. bottom: 63/2300
  33903. }
  33904. },
  33905. dick: {
  33906. height: math.unit(30, "inches"),
  33907. name: "Dick",
  33908. image: {
  33909. source: "./media/characters/rhys-londe/dick.svg"
  33910. }
  33911. },
  33912. maw: {
  33913. height: math.unit(1.6, "feet"),
  33914. name: "Maw",
  33915. image: {
  33916. source: "./media/characters/rhys-londe/maw.svg"
  33917. }
  33918. },
  33919. },
  33920. [
  33921. {
  33922. name: "Normal",
  33923. height: math.unit(6 + 8/12, "feet"),
  33924. default: true
  33925. },
  33926. ]
  33927. ))
  33928. characterMakers.push(() => makeCharacter(
  33929. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33930. {
  33931. front: {
  33932. height: math.unit(3 + 10/12, "feet"),
  33933. weight: math.unit(90, "lb"),
  33934. name: "Front",
  33935. image: {
  33936. source: "./media/characters/taivas-ensim/front.svg",
  33937. extra: 1327/1216,
  33938. bottom: 96/1423
  33939. }
  33940. },
  33941. back: {
  33942. height: math.unit(3 + 10/12, "feet"),
  33943. weight: math.unit(90, "lb"),
  33944. name: "Back",
  33945. image: {
  33946. source: "./media/characters/taivas-ensim/back.svg",
  33947. extra: 1355/1247,
  33948. bottom: 11/1366
  33949. }
  33950. },
  33951. frontNsfw: {
  33952. height: math.unit(3 + 10/12, "feet"),
  33953. weight: math.unit(90, "lb"),
  33954. name: "Front (NSFW)",
  33955. image: {
  33956. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33957. extra: 1327/1216,
  33958. bottom: 96/1423
  33959. }
  33960. },
  33961. backNsfw: {
  33962. height: math.unit(3 + 10/12, "feet"),
  33963. weight: math.unit(90, "lb"),
  33964. name: "Back (NSFW)",
  33965. image: {
  33966. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33967. extra: 1355/1247,
  33968. bottom: 11/1366
  33969. }
  33970. },
  33971. },
  33972. [
  33973. {
  33974. name: "Normal",
  33975. height: math.unit(3 + 10/12, "feet"),
  33976. default: true
  33977. },
  33978. ]
  33979. ))
  33980. characterMakers.push(() => makeCharacter(
  33981. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33982. {
  33983. front: {
  33984. height: math.unit(9 + 6/12, "feet"),
  33985. weight: math.unit(940, "lb"),
  33986. name: "Front",
  33987. image: {
  33988. source: "./media/characters/byliss/front.svg",
  33989. extra: 1327/1290,
  33990. bottom: 82/1409
  33991. }
  33992. },
  33993. back: {
  33994. height: math.unit(9 + 6/12, "feet"),
  33995. weight: math.unit(940, "lb"),
  33996. name: "Back",
  33997. image: {
  33998. source: "./media/characters/byliss/back.svg",
  33999. extra: 1376/1349,
  34000. bottom: 9/1385
  34001. }
  34002. },
  34003. frontNsfw: {
  34004. height: math.unit(9 + 6/12, "feet"),
  34005. weight: math.unit(940, "lb"),
  34006. name: "Front (NSFW)",
  34007. image: {
  34008. source: "./media/characters/byliss/front-nsfw.svg",
  34009. extra: 1327/1290,
  34010. bottom: 82/1409
  34011. }
  34012. },
  34013. backNsfw: {
  34014. height: math.unit(9 + 6/12, "feet"),
  34015. weight: math.unit(940, "lb"),
  34016. name: "Back (NSFW)",
  34017. image: {
  34018. source: "./media/characters/byliss/back-nsfw.svg",
  34019. extra: 1376/1349,
  34020. bottom: 9/1385
  34021. }
  34022. },
  34023. },
  34024. [
  34025. {
  34026. name: "Normal",
  34027. height: math.unit(9 + 6/12, "feet"),
  34028. default: true
  34029. },
  34030. ]
  34031. ))
  34032. characterMakers.push(() => makeCharacter(
  34033. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34034. {
  34035. front: {
  34036. height: math.unit(5 + 2/12, "feet"),
  34037. weight: math.unit(200, "lb"),
  34038. name: "Front",
  34039. image: {
  34040. source: "./media/characters/noraly/front.svg",
  34041. extra: 4985/4773,
  34042. bottom: 150/5135
  34043. }
  34044. },
  34045. full: {
  34046. height: math.unit(5 + 2/12, "feet"),
  34047. weight: math.unit(164, "lb"),
  34048. name: "Full",
  34049. image: {
  34050. source: "./media/characters/noraly/full.svg",
  34051. extra: 1114/1059,
  34052. bottom: 35/1149
  34053. }
  34054. },
  34055. fuller: {
  34056. height: math.unit(5 + 2/12, "feet"),
  34057. weight: math.unit(230, "lb"),
  34058. name: "Fuller",
  34059. image: {
  34060. source: "./media/characters/noraly/fuller.svg",
  34061. extra: 1114/1059,
  34062. bottom: 35/1149
  34063. }
  34064. },
  34065. fullest: {
  34066. height: math.unit(5 + 2/12, "feet"),
  34067. weight: math.unit(300, "lb"),
  34068. name: "Fullest",
  34069. image: {
  34070. source: "./media/characters/noraly/fullest.svg",
  34071. extra: 1114/1059,
  34072. bottom: 35/1149
  34073. }
  34074. },
  34075. },
  34076. [
  34077. {
  34078. name: "Normal",
  34079. height: math.unit(5 + 2/12, "feet"),
  34080. default: true
  34081. },
  34082. ]
  34083. ))
  34084. characterMakers.push(() => makeCharacter(
  34085. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34086. {
  34087. front: {
  34088. height: math.unit(5 + 2/12, "feet"),
  34089. weight: math.unit(210, "lb"),
  34090. name: "Front",
  34091. image: {
  34092. source: "./media/characters/pera/front.svg",
  34093. extra: 1560/1531,
  34094. bottom: 165/1725
  34095. }
  34096. },
  34097. back: {
  34098. height: math.unit(5 + 2/12, "feet"),
  34099. weight: math.unit(210, "lb"),
  34100. name: "Back",
  34101. image: {
  34102. source: "./media/characters/pera/back.svg",
  34103. extra: 1523/1493,
  34104. bottom: 152/1675
  34105. }
  34106. },
  34107. dick: {
  34108. height: math.unit(2.4, "feet"),
  34109. name: "Dick",
  34110. image: {
  34111. source: "./media/characters/pera/dick.svg"
  34112. }
  34113. },
  34114. },
  34115. [
  34116. {
  34117. name: "Normal",
  34118. height: math.unit(5 + 2/12, "feet"),
  34119. default: true
  34120. },
  34121. ]
  34122. ))
  34123. characterMakers.push(() => makeCharacter(
  34124. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34125. {
  34126. front: {
  34127. height: math.unit(12, "feet"),
  34128. weight: math.unit(3200, "lb"),
  34129. name: "Front",
  34130. image: {
  34131. source: "./media/characters/julian/front.svg",
  34132. extra: 2962/2701,
  34133. bottom: 184/3146
  34134. }
  34135. },
  34136. maw: {
  34137. height: math.unit(5.35, "feet"),
  34138. name: "Maw",
  34139. image: {
  34140. source: "./media/characters/julian/maw.svg"
  34141. }
  34142. },
  34143. paw: {
  34144. height: math.unit(3.07, "feet"),
  34145. name: "Paw",
  34146. image: {
  34147. source: "./media/characters/julian/paw.svg"
  34148. }
  34149. },
  34150. },
  34151. [
  34152. {
  34153. name: "Default",
  34154. height: math.unit(12, "feet"),
  34155. default: true
  34156. },
  34157. {
  34158. name: "Big",
  34159. height: math.unit(50, "feet")
  34160. },
  34161. {
  34162. name: "Really Big",
  34163. height: math.unit(1, "mile")
  34164. },
  34165. {
  34166. name: "Extremely Big",
  34167. height: math.unit(100, "miles")
  34168. },
  34169. {
  34170. name: "Planet Hugger",
  34171. height: math.unit(200, "megameters")
  34172. },
  34173. {
  34174. name: "Unreasonably Big",
  34175. height: math.unit(1e300, "meters")
  34176. },
  34177. ]
  34178. ))
  34179. characterMakers.push(() => makeCharacter(
  34180. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34181. {
  34182. solgooleo: {
  34183. height: math.unit(4, "meters"),
  34184. weight: math.unit(6000*1.5, "kg"),
  34185. volume: math.unit(6000, "liters"),
  34186. name: "Solgooleo",
  34187. image: {
  34188. source: "./media/characters/pi/solgooleo.svg",
  34189. extra: 388/331,
  34190. bottom: 29/417
  34191. }
  34192. },
  34193. },
  34194. [
  34195. {
  34196. name: "Normal",
  34197. height: math.unit(4, "meters"),
  34198. default: true
  34199. },
  34200. ]
  34201. ))
  34202. characterMakers.push(() => makeCharacter(
  34203. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34204. {
  34205. front: {
  34206. height: math.unit(8, "feet"),
  34207. weight: math.unit(4, "tons"),
  34208. name: "Front",
  34209. image: {
  34210. source: "./media/characters/shaun/front.svg",
  34211. extra: 503/495,
  34212. bottom: 20/523
  34213. }
  34214. },
  34215. back: {
  34216. height: math.unit(8, "feet"),
  34217. weight: math.unit(4, "tons"),
  34218. name: "Back",
  34219. image: {
  34220. source: "./media/characters/shaun/back.svg",
  34221. extra: 487/480,
  34222. bottom: 20/507
  34223. }
  34224. },
  34225. },
  34226. [
  34227. {
  34228. name: "Lorg",
  34229. height: math.unit(8, "feet"),
  34230. default: true
  34231. },
  34232. ]
  34233. ))
  34234. characterMakers.push(() => makeCharacter(
  34235. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34236. {
  34237. frontAnthro: {
  34238. height: math.unit(7, "feet"),
  34239. name: "Front",
  34240. image: {
  34241. source: "./media/characters/sini/front-anthro.svg",
  34242. extra: 726/678,
  34243. bottom: 35/761
  34244. },
  34245. form: "anthro",
  34246. default: true
  34247. },
  34248. backAnthro: {
  34249. height: math.unit(7, "feet"),
  34250. name: "Back",
  34251. image: {
  34252. source: "./media/characters/sini/back-anthro.svg",
  34253. extra: 743/701,
  34254. bottom: 12/755
  34255. },
  34256. form: "anthro",
  34257. },
  34258. frontAnthroNsfw: {
  34259. height: math.unit(7, "feet"),
  34260. name: "Front (NSFW)",
  34261. image: {
  34262. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34263. extra: 726/678,
  34264. bottom: 35/761
  34265. },
  34266. form: "anthro"
  34267. },
  34268. backAnthroNsfw: {
  34269. height: math.unit(7, "feet"),
  34270. name: "Back (NSFW)",
  34271. image: {
  34272. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34273. extra: 743/701,
  34274. bottom: 12/755
  34275. },
  34276. form: "anthro",
  34277. },
  34278. mawAnthro: {
  34279. height: math.unit(2.14, "feet"),
  34280. name: "Maw",
  34281. image: {
  34282. source: "./media/characters/sini/maw-anthro.svg"
  34283. },
  34284. form: "anthro"
  34285. },
  34286. dick: {
  34287. height: math.unit(1.45, "feet"),
  34288. name: "Dick",
  34289. image: {
  34290. source: "./media/characters/sini/dick-anthro.svg"
  34291. },
  34292. form: "anthro"
  34293. },
  34294. feral: {
  34295. height: math.unit(16, "feet"),
  34296. name: "Feral",
  34297. image: {
  34298. source: "./media/characters/sini/feral.svg",
  34299. extra: 814/605,
  34300. bottom: 11/825
  34301. },
  34302. form: "feral",
  34303. default: true
  34304. },
  34305. feralNsfw: {
  34306. height: math.unit(16, "feet"),
  34307. name: "Feral (NSFW)",
  34308. image: {
  34309. source: "./media/characters/sini/feral-nsfw.svg",
  34310. extra: 814/605,
  34311. bottom: 11/825
  34312. },
  34313. form: "feral"
  34314. },
  34315. mawFeral: {
  34316. height: math.unit(5.66, "feet"),
  34317. name: "Maw",
  34318. image: {
  34319. source: "./media/characters/sini/maw-feral.svg"
  34320. },
  34321. form: "feral",
  34322. },
  34323. pawFeral: {
  34324. height: math.unit(5.17, "feet"),
  34325. name: "Paw",
  34326. image: {
  34327. source: "./media/characters/sini/paw-feral.svg"
  34328. },
  34329. form: "feral",
  34330. },
  34331. rumpFeral: {
  34332. height: math.unit(13.11, "feet"),
  34333. name: "Rump",
  34334. image: {
  34335. source: "./media/characters/sini/rump-feral.svg"
  34336. },
  34337. form: "feral",
  34338. },
  34339. dickFeral: {
  34340. height: math.unit(1, "feet"),
  34341. name: "Dick",
  34342. image: {
  34343. source: "./media/characters/sini/dick-feral.svg"
  34344. },
  34345. form: "feral",
  34346. },
  34347. eyeFeral: {
  34348. height: math.unit(1.23, "feet"),
  34349. name: "Eye",
  34350. image: {
  34351. source: "./media/characters/sini/eye-feral.svg"
  34352. },
  34353. form: "feral",
  34354. },
  34355. },
  34356. [
  34357. {
  34358. name: "Normal",
  34359. height: math.unit(7, "feet"),
  34360. default: true,
  34361. form: "anthro"
  34362. },
  34363. {
  34364. name: "Normal",
  34365. height: math.unit(16, "feet"),
  34366. default: true,
  34367. form: "feral"
  34368. },
  34369. ],
  34370. {
  34371. "anthro": {
  34372. name: "Anthro",
  34373. default: true
  34374. },
  34375. "feral": {
  34376. name: "Feral",
  34377. }
  34378. }
  34379. ))
  34380. characterMakers.push(() => makeCharacter(
  34381. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34382. {
  34383. side: {
  34384. height: math.unit(47.2, "meters"),
  34385. weight: math.unit(10000, "tons"),
  34386. name: "Side",
  34387. image: {
  34388. source: "./media/characters/raylldo/side.svg",
  34389. extra: 2363/642,
  34390. bottom: 221/2584
  34391. }
  34392. },
  34393. top: {
  34394. height: math.unit(240, "meters"),
  34395. weight: math.unit(10000, "tons"),
  34396. name: "Top",
  34397. image: {
  34398. source: "./media/characters/raylldo/top.svg"
  34399. }
  34400. },
  34401. bottom: {
  34402. height: math.unit(240, "meters"),
  34403. weight: math.unit(10000, "tons"),
  34404. name: "Bottom",
  34405. image: {
  34406. source: "./media/characters/raylldo/bottom.svg"
  34407. }
  34408. },
  34409. head: {
  34410. height: math.unit(38.6, "meters"),
  34411. name: "Head",
  34412. image: {
  34413. source: "./media/characters/raylldo/head.svg",
  34414. extra: 1335/1112,
  34415. bottom: 0/1335
  34416. }
  34417. },
  34418. maw: {
  34419. height: math.unit(16.37, "meters"),
  34420. name: "Maw",
  34421. image: {
  34422. source: "./media/characters/raylldo/maw.svg",
  34423. extra: 883/660,
  34424. bottom: 0/883
  34425. },
  34426. extraAttributes: {
  34427. preyCapacity: {
  34428. name: "Capacity",
  34429. power: 3,
  34430. type: "volume",
  34431. base: math.unit(1000, "people")
  34432. },
  34433. tongueSize: {
  34434. name: "Tongue Size",
  34435. power: 2,
  34436. type: "area",
  34437. base: math.unit(21, "m^2")
  34438. }
  34439. }
  34440. },
  34441. forepaw: {
  34442. height: math.unit(18, "meters"),
  34443. name: "Forepaw",
  34444. image: {
  34445. source: "./media/characters/raylldo/forepaw.svg"
  34446. }
  34447. },
  34448. hindpaw: {
  34449. height: math.unit(23, "meters"),
  34450. name: "Hindpaw",
  34451. image: {
  34452. source: "./media/characters/raylldo/hindpaw.svg"
  34453. }
  34454. },
  34455. genitals: {
  34456. height: math.unit(42, "meters"),
  34457. name: "Genitals",
  34458. image: {
  34459. source: "./media/characters/raylldo/genitals.svg"
  34460. }
  34461. },
  34462. },
  34463. [
  34464. {
  34465. name: "Normal",
  34466. height: math.unit(47.2, "meters"),
  34467. default: true
  34468. },
  34469. ]
  34470. ))
  34471. characterMakers.push(() => makeCharacter(
  34472. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34473. {
  34474. anthroFront: {
  34475. height: math.unit(9, "feet"),
  34476. weight: math.unit(600, "lb"),
  34477. name: "Anthro (Front)",
  34478. image: {
  34479. source: "./media/characters/glint/anthro-front.svg",
  34480. extra: 1097/1018,
  34481. bottom: 28/1125
  34482. }
  34483. },
  34484. anthroBack: {
  34485. height: math.unit(9, "feet"),
  34486. weight: math.unit(600, "lb"),
  34487. name: "Anthro (Back)",
  34488. image: {
  34489. source: "./media/characters/glint/anthro-back.svg",
  34490. extra: 1154/997,
  34491. bottom: 36/1190
  34492. }
  34493. },
  34494. feral: {
  34495. height: math.unit(11, "feet"),
  34496. weight: math.unit(50000, "lb"),
  34497. name: "Feral",
  34498. image: {
  34499. source: "./media/characters/glint/feral.svg",
  34500. extra: 3035/1585,
  34501. bottom: 1169/4204
  34502. }
  34503. },
  34504. dickAnthro: {
  34505. height: math.unit(0.7, "meters"),
  34506. name: "Dick (Anthro)",
  34507. image: {
  34508. source: "./media/characters/glint/dick-anthro.svg"
  34509. }
  34510. },
  34511. dickFeral: {
  34512. height: math.unit(2.65, "meters"),
  34513. name: "Dick (Feral)",
  34514. image: {
  34515. source: "./media/characters/glint/dick-feral.svg"
  34516. }
  34517. },
  34518. slitHidden: {
  34519. height: math.unit(5.85, "meters"),
  34520. name: "Slit (Hidden)",
  34521. image: {
  34522. source: "./media/characters/glint/slit-hidden.svg"
  34523. }
  34524. },
  34525. slitErect: {
  34526. height: math.unit(5.85, "meters"),
  34527. name: "Slit (Erect)",
  34528. image: {
  34529. source: "./media/characters/glint/slit-erect.svg"
  34530. }
  34531. },
  34532. mawAnthro: {
  34533. height: math.unit(0.63, "meters"),
  34534. name: "Maw (Anthro)",
  34535. image: {
  34536. source: "./media/characters/glint/maw.svg"
  34537. }
  34538. },
  34539. mawFeral: {
  34540. height: math.unit(2.89, "meters"),
  34541. name: "Maw (Feral)",
  34542. image: {
  34543. source: "./media/characters/glint/maw.svg"
  34544. }
  34545. },
  34546. },
  34547. [
  34548. {
  34549. name: "Normal",
  34550. height: math.unit(9, "feet"),
  34551. default: true
  34552. },
  34553. ]
  34554. ))
  34555. characterMakers.push(() => makeCharacter(
  34556. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34557. {
  34558. side: {
  34559. height: math.unit(15, "feet"),
  34560. weight: math.unit(5000, "kg"),
  34561. name: "Side",
  34562. image: {
  34563. source: "./media/characters/kairne/side.svg",
  34564. extra: 979/811,
  34565. bottom: 13/992
  34566. }
  34567. },
  34568. front: {
  34569. height: math.unit(15, "feet"),
  34570. weight: math.unit(5000, "kg"),
  34571. name: "Front",
  34572. image: {
  34573. source: "./media/characters/kairne/front.svg",
  34574. extra: 908/814,
  34575. bottom: 26/934
  34576. }
  34577. },
  34578. sideNsfw: {
  34579. height: math.unit(15, "feet"),
  34580. weight: math.unit(5000, "kg"),
  34581. name: "Side (NSFW)",
  34582. image: {
  34583. source: "./media/characters/kairne/side-nsfw.svg",
  34584. extra: 979/811,
  34585. bottom: 13/992
  34586. }
  34587. },
  34588. frontNsfw: {
  34589. height: math.unit(15, "feet"),
  34590. weight: math.unit(5000, "kg"),
  34591. name: "Front (NSFW)",
  34592. image: {
  34593. source: "./media/characters/kairne/front-nsfw.svg",
  34594. extra: 908/814,
  34595. bottom: 26/934
  34596. }
  34597. },
  34598. dickCaged: {
  34599. height: math.unit(0.65, "meters"),
  34600. name: "Dick-caged",
  34601. image: {
  34602. source: "./media/characters/kairne/dick-caged.svg"
  34603. }
  34604. },
  34605. dick: {
  34606. height: math.unit(0.79, "meters"),
  34607. name: "Dick",
  34608. image: {
  34609. source: "./media/characters/kairne/dick.svg"
  34610. }
  34611. },
  34612. genitals: {
  34613. height: math.unit(1.29, "meters"),
  34614. name: "Genitals",
  34615. image: {
  34616. source: "./media/characters/kairne/genitals.svg"
  34617. }
  34618. },
  34619. maw: {
  34620. height: math.unit(1.73, "meters"),
  34621. name: "Maw",
  34622. image: {
  34623. source: "./media/characters/kairne/maw.svg"
  34624. }
  34625. },
  34626. },
  34627. [
  34628. {
  34629. name: "Normal",
  34630. height: math.unit(15, "feet"),
  34631. default: true
  34632. },
  34633. ]
  34634. ))
  34635. characterMakers.push(() => makeCharacter(
  34636. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34637. {
  34638. front: {
  34639. height: math.unit(5 + 8/12, "feet"),
  34640. weight: math.unit(139, "lb"),
  34641. name: "Front",
  34642. image: {
  34643. source: "./media/characters/biscuit-jackal/front.svg",
  34644. extra: 2106/1961,
  34645. bottom: 58/2164
  34646. }
  34647. },
  34648. back: {
  34649. height: math.unit(5 + 8/12, "feet"),
  34650. weight: math.unit(139, "lb"),
  34651. name: "Back",
  34652. image: {
  34653. source: "./media/characters/biscuit-jackal/back.svg",
  34654. extra: 2132/1976,
  34655. bottom: 57/2189
  34656. }
  34657. },
  34658. werejackal: {
  34659. height: math.unit(6 + 3/12, "feet"),
  34660. weight: math.unit(188, "lb"),
  34661. name: "Werejackal",
  34662. image: {
  34663. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34664. extra: 2373/2178,
  34665. bottom: 53/2426
  34666. }
  34667. },
  34668. },
  34669. [
  34670. {
  34671. name: "Normal",
  34672. height: math.unit(5 + 8/12, "feet"),
  34673. default: true
  34674. },
  34675. ]
  34676. ))
  34677. characterMakers.push(() => makeCharacter(
  34678. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34679. {
  34680. front: {
  34681. height: math.unit(140, "cm"),
  34682. weight: math.unit(45, "kg"),
  34683. name: "Front",
  34684. image: {
  34685. source: "./media/characters/tayra-white/front.svg",
  34686. extra: 2229/2192,
  34687. bottom: 75/2304
  34688. }
  34689. },
  34690. },
  34691. [
  34692. {
  34693. name: "Normal",
  34694. height: math.unit(140, "cm"),
  34695. default: true
  34696. },
  34697. ]
  34698. ))
  34699. characterMakers.push(() => makeCharacter(
  34700. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34701. {
  34702. front: {
  34703. height: math.unit(4 + 5/12, "feet"),
  34704. name: "Front",
  34705. image: {
  34706. source: "./media/characters/scoop/front.svg",
  34707. extra: 1257/1136,
  34708. bottom: 69/1326
  34709. }
  34710. },
  34711. back: {
  34712. height: math.unit(4 + 5/12, "feet"),
  34713. name: "Back",
  34714. image: {
  34715. source: "./media/characters/scoop/back.svg",
  34716. extra: 1321/1152,
  34717. bottom: 32/1353
  34718. }
  34719. },
  34720. maw: {
  34721. height: math.unit(0.68, "feet"),
  34722. name: "Maw",
  34723. image: {
  34724. source: "./media/characters/scoop/maw.svg"
  34725. }
  34726. },
  34727. },
  34728. [
  34729. {
  34730. name: "Really Small",
  34731. height: math.unit(1, "mm")
  34732. },
  34733. {
  34734. name: "Micro",
  34735. height: math.unit(1, "inch")
  34736. },
  34737. {
  34738. name: "Normal",
  34739. height: math.unit(4 + 5/12, "feet"),
  34740. default: true
  34741. },
  34742. {
  34743. name: "Macro",
  34744. height: math.unit(200, "feet")
  34745. },
  34746. {
  34747. name: "Megamacro",
  34748. height: math.unit(3240, "feet")
  34749. },
  34750. {
  34751. name: "Teramacro",
  34752. height: math.unit(2500, "miles")
  34753. },
  34754. ]
  34755. ))
  34756. characterMakers.push(() => makeCharacter(
  34757. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34758. {
  34759. front: {
  34760. height: math.unit(15 + 7/12, "feet"),
  34761. weight: math.unit(1150, "tons"),
  34762. name: "Front",
  34763. image: {
  34764. source: "./media/characters/saphinara/front.svg",
  34765. extra: 1837/1643,
  34766. bottom: 84/1921
  34767. },
  34768. form: "normal",
  34769. default: true
  34770. },
  34771. side: {
  34772. height: math.unit(15 + 7/12, "feet"),
  34773. weight: math.unit(1150, "tons"),
  34774. name: "Side",
  34775. image: {
  34776. source: "./media/characters/saphinara/side.svg",
  34777. extra: 605/547,
  34778. bottom: 6/611
  34779. },
  34780. form: "normal"
  34781. },
  34782. back: {
  34783. height: math.unit(15 + 7/12, "feet"),
  34784. weight: math.unit(1150, "tons"),
  34785. name: "Back",
  34786. image: {
  34787. source: "./media/characters/saphinara/back.svg",
  34788. extra: 591/531,
  34789. bottom: 13/604
  34790. },
  34791. form: "normal"
  34792. },
  34793. frontTail: {
  34794. height: math.unit(15 + 7/12, "feet"),
  34795. weight: math.unit(1150, "tons"),
  34796. name: "Front (Full Tail)",
  34797. image: {
  34798. source: "./media/characters/saphinara/front-tail.svg",
  34799. extra: 2256/1630,
  34800. bottom: 261/2517
  34801. },
  34802. form: "normal"
  34803. },
  34804. insides: {
  34805. height: math.unit(11.92, "feet"),
  34806. name: "Insides",
  34807. image: {
  34808. source: "./media/characters/saphinara/insides.svg"
  34809. },
  34810. form: "normal"
  34811. },
  34812. head: {
  34813. height: math.unit(4.17, "feet"),
  34814. name: "Head",
  34815. image: {
  34816. source: "./media/characters/saphinara/head.svg"
  34817. },
  34818. form: "normal"
  34819. },
  34820. tongue: {
  34821. height: math.unit(4.60, "feet"),
  34822. name: "Tongue",
  34823. image: {
  34824. source: "./media/characters/saphinara/tongue.svg"
  34825. },
  34826. form: "normal"
  34827. },
  34828. headEnraged: {
  34829. height: math.unit(5.55, "feet"),
  34830. name: "Head (Enraged)",
  34831. image: {
  34832. source: "./media/characters/saphinara/head-enraged.svg"
  34833. },
  34834. form: "normal"
  34835. },
  34836. wings: {
  34837. height: math.unit(11.95, "feet"),
  34838. name: "Wings",
  34839. image: {
  34840. source: "./media/characters/saphinara/wings.svg"
  34841. },
  34842. form: "normal"
  34843. },
  34844. feathers: {
  34845. height: math.unit(8.92, "feet"),
  34846. name: "Feathers",
  34847. image: {
  34848. source: "./media/characters/saphinara/feathers.svg"
  34849. },
  34850. form: "normal"
  34851. },
  34852. shackles: {
  34853. height: math.unit(2, "feet"),
  34854. name: "Shackles",
  34855. image: {
  34856. source: "./media/characters/saphinara/shackles.svg"
  34857. },
  34858. form: "normal"
  34859. },
  34860. eyes: {
  34861. height: math.unit(1.331, "feet"),
  34862. name: "Eyes",
  34863. image: {
  34864. source: "./media/characters/saphinara/eyes.svg"
  34865. },
  34866. form: "normal"
  34867. },
  34868. eyesEnraged: {
  34869. height: math.unit(1.331, "feet"),
  34870. name: "Eyes (Enraged)",
  34871. image: {
  34872. source: "./media/characters/saphinara/eyes-enraged.svg"
  34873. },
  34874. form: "normal"
  34875. },
  34876. trueFormSide: {
  34877. height: math.unit(200, "feet"),
  34878. weight: math.unit(1e7, "tons"),
  34879. name: "Side",
  34880. image: {
  34881. source: "./media/characters/saphinara/true-form-side.svg",
  34882. extra: 1399/770,
  34883. bottom: 97/1496
  34884. },
  34885. form: "true-form",
  34886. default: true
  34887. },
  34888. trueFormMaw: {
  34889. height: math.unit(71.5, "feet"),
  34890. name: "Maw",
  34891. image: {
  34892. source: "./media/characters/saphinara/true-form-maw.svg",
  34893. extra: 2302/1453,
  34894. bottom: 0/2302
  34895. },
  34896. form: "true-form"
  34897. },
  34898. meowberusSide: {
  34899. height: math.unit(75, "feet"),
  34900. weight: math.unit(180000, "kg"),
  34901. preyCapacity: math.unit(50000, "people"),
  34902. name: "Side",
  34903. image: {
  34904. source: "./media/characters/saphinara/meowberus-side.svg",
  34905. extra: 1400/711,
  34906. bottom: 126/1526
  34907. },
  34908. form: "meowberus",
  34909. extraAttributes: {
  34910. "pawArea": {
  34911. name: "Paw Size",
  34912. power: 2,
  34913. type: "area",
  34914. base: math.unit(35, "m^2")
  34915. }
  34916. }
  34917. },
  34918. },
  34919. [
  34920. {
  34921. name: "Normal",
  34922. height: math.unit(15 + 7/12, "feet"),
  34923. default: true,
  34924. form: "normal"
  34925. },
  34926. {
  34927. name: "Angry",
  34928. height: math.unit(30 + 6/12, "feet"),
  34929. form: "normal"
  34930. },
  34931. {
  34932. name: "Enraged",
  34933. height: math.unit(102 + 1/12, "feet"),
  34934. form: "normal"
  34935. },
  34936. {
  34937. name: "True",
  34938. height: math.unit(200, "feet"),
  34939. default: true,
  34940. form: "true-form"
  34941. },
  34942. {
  34943. name: "Normal",
  34944. height: math.unit(75, "feet"),
  34945. default: true,
  34946. form: "meowberus"
  34947. },
  34948. ],
  34949. {
  34950. "normal": {
  34951. name: "Normal",
  34952. default: true
  34953. },
  34954. "true-form": {
  34955. name: "True Form"
  34956. },
  34957. "meowberus": {
  34958. name: "Meowberus",
  34959. },
  34960. }
  34961. ))
  34962. characterMakers.push(() => makeCharacter(
  34963. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34964. {
  34965. front: {
  34966. height: math.unit(6 + 8/12, "feet"),
  34967. weight: math.unit(300, "lb"),
  34968. name: "Front",
  34969. image: {
  34970. source: "./media/characters/jrain/front.svg",
  34971. extra: 3039/2865,
  34972. bottom: 399/3438
  34973. }
  34974. },
  34975. back: {
  34976. height: math.unit(6 + 8/12, "feet"),
  34977. weight: math.unit(300, "lb"),
  34978. name: "Back",
  34979. image: {
  34980. source: "./media/characters/jrain/back.svg",
  34981. extra: 3089/2938,
  34982. bottom: 172/3261
  34983. }
  34984. },
  34985. head: {
  34986. height: math.unit(2.14, "feet"),
  34987. name: "Head",
  34988. image: {
  34989. source: "./media/characters/jrain/head.svg"
  34990. }
  34991. },
  34992. maw: {
  34993. height: math.unit(1.77, "feet"),
  34994. name: "Maw",
  34995. image: {
  34996. source: "./media/characters/jrain/maw.svg"
  34997. }
  34998. },
  34999. leftHand: {
  35000. height: math.unit(1.1, "feet"),
  35001. name: "Left Hand",
  35002. image: {
  35003. source: "./media/characters/jrain/left-hand.svg"
  35004. }
  35005. },
  35006. rightHand: {
  35007. height: math.unit(1.1, "feet"),
  35008. name: "Right Hand",
  35009. image: {
  35010. source: "./media/characters/jrain/right-hand.svg"
  35011. }
  35012. },
  35013. eye: {
  35014. height: math.unit(0.35, "feet"),
  35015. name: "Eye",
  35016. image: {
  35017. source: "./media/characters/jrain/eye.svg"
  35018. }
  35019. },
  35020. },
  35021. [
  35022. {
  35023. name: "Normal",
  35024. height: math.unit(6 + 8/12, "feet"),
  35025. default: true
  35026. },
  35027. {
  35028. name: "Casually Large",
  35029. height: math.unit(25, "feet")
  35030. },
  35031. {
  35032. name: "Giant",
  35033. height: math.unit(100, "feet")
  35034. },
  35035. {
  35036. name: "Kaiju",
  35037. height: math.unit(300, "feet")
  35038. },
  35039. ]
  35040. ))
  35041. characterMakers.push(() => makeCharacter(
  35042. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35043. {
  35044. dragon: {
  35045. height: math.unit(5, "meters"),
  35046. name: "Dragon",
  35047. image: {
  35048. source: "./media/characters/sabrina/dragon.svg",
  35049. extra: 3670 / 2365,
  35050. bottom: 333 / 4003
  35051. }
  35052. },
  35053. gryphon: {
  35054. height: math.unit(3, "meters"),
  35055. name: "Gryphon",
  35056. image: {
  35057. source: "./media/characters/sabrina/gryphon.svg",
  35058. extra: 1576 / 945,
  35059. bottom: 71 / 1647
  35060. }
  35061. },
  35062. snake: {
  35063. height: math.unit(12, "meters"),
  35064. name: "Snake",
  35065. image: {
  35066. source: "./media/characters/sabrina/snake.svg",
  35067. extra: 1758 / 1320,
  35068. bottom: 186 / 1944
  35069. }
  35070. },
  35071. collar: {
  35072. height: math.unit(1.86, "meters"),
  35073. name: "Collar",
  35074. image: {
  35075. source: "./media/characters/sabrina/collar.svg"
  35076. }
  35077. },
  35078. eye: {
  35079. height: math.unit(0.53, "meters"),
  35080. name: "Eye",
  35081. image: {
  35082. source: "./media/characters/sabrina/eye.svg"
  35083. }
  35084. },
  35085. foot: {
  35086. height: math.unit(1.86, "meters"),
  35087. name: "Foot",
  35088. image: {
  35089. source: "./media/characters/sabrina/foot.svg"
  35090. }
  35091. },
  35092. hand: {
  35093. height: math.unit(1.32, "meters"),
  35094. name: "Hand",
  35095. image: {
  35096. source: "./media/characters/sabrina/hand.svg"
  35097. }
  35098. },
  35099. head: {
  35100. height: math.unit(2.44, "meters"),
  35101. name: "Head",
  35102. image: {
  35103. source: "./media/characters/sabrina/head.svg"
  35104. }
  35105. },
  35106. headAngry: {
  35107. height: math.unit(2.44, "meters"),
  35108. name: "Head (Angry))",
  35109. image: {
  35110. source: "./media/characters/sabrina/head-angry.svg"
  35111. }
  35112. },
  35113. maw: {
  35114. height: math.unit(1.65, "meters"),
  35115. name: "Maw",
  35116. image: {
  35117. source: "./media/characters/sabrina/maw.svg"
  35118. }
  35119. },
  35120. spikes: {
  35121. height: math.unit(1.69, "meters"),
  35122. name: "Spikes",
  35123. image: {
  35124. source: "./media/characters/sabrina/spikes.svg"
  35125. }
  35126. },
  35127. stomach: {
  35128. height: math.unit(1.15, "meters"),
  35129. name: "Stomach",
  35130. image: {
  35131. source: "./media/characters/sabrina/stomach.svg"
  35132. }
  35133. },
  35134. tongue: {
  35135. height: math.unit(1.27, "meters"),
  35136. name: "Tongue",
  35137. image: {
  35138. source: "./media/characters/sabrina/tongue.svg"
  35139. }
  35140. },
  35141. wingDorsal: {
  35142. height: math.unit(4.85, "meters"),
  35143. name: "Wing (Dorsal)",
  35144. image: {
  35145. source: "./media/characters/sabrina/wing-dorsal.svg"
  35146. }
  35147. },
  35148. wingVentral: {
  35149. height: math.unit(4.85, "meters"),
  35150. name: "Wing (Ventral)",
  35151. image: {
  35152. source: "./media/characters/sabrina/wing-ventral.svg"
  35153. }
  35154. },
  35155. },
  35156. [
  35157. {
  35158. name: "Normal",
  35159. height: math.unit(5, "meters"),
  35160. default: true
  35161. },
  35162. ]
  35163. ))
  35164. characterMakers.push(() => makeCharacter(
  35165. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35166. {
  35167. frontMaid: {
  35168. height: math.unit(5 + 5/12, "feet"),
  35169. weight: math.unit(130, "lb"),
  35170. name: "Front (Maid)",
  35171. image: {
  35172. source: "./media/characters/midnight-tales/front-maid.svg",
  35173. extra: 489/454,
  35174. bottom: 61/550
  35175. }
  35176. },
  35177. frontFormal: {
  35178. height: math.unit(5 + 5/12, "feet"),
  35179. weight: math.unit(130, "lb"),
  35180. name: "Front (Formal)",
  35181. image: {
  35182. source: "./media/characters/midnight-tales/front-formal.svg",
  35183. extra: 489/454,
  35184. bottom: 61/550
  35185. }
  35186. },
  35187. back: {
  35188. height: math.unit(5 + 5/12, "feet"),
  35189. weight: math.unit(130, "lb"),
  35190. name: "Back",
  35191. image: {
  35192. source: "./media/characters/midnight-tales/back.svg",
  35193. extra: 498/456,
  35194. bottom: 33/531
  35195. }
  35196. },
  35197. frontBeast: {
  35198. height: math.unit(40, "feet"),
  35199. weight: math.unit(64000, "lb"),
  35200. name: "Front (Beast)",
  35201. image: {
  35202. source: "./media/characters/midnight-tales/front-beast.svg",
  35203. extra: 927/860,
  35204. bottom: 53/980
  35205. }
  35206. },
  35207. backBeast: {
  35208. height: math.unit(40, "feet"),
  35209. weight: math.unit(64000, "lb"),
  35210. name: "Back (Beast)",
  35211. image: {
  35212. source: "./media/characters/midnight-tales/back-beast.svg",
  35213. extra: 929/855,
  35214. bottom: 16/945
  35215. }
  35216. },
  35217. footBeast: {
  35218. height: math.unit(6.7, "feet"),
  35219. name: "Foot (Beast)",
  35220. image: {
  35221. source: "./media/characters/midnight-tales/foot-beast.svg"
  35222. }
  35223. },
  35224. headBeast: {
  35225. height: math.unit(8, "feet"),
  35226. name: "Head (Beast)",
  35227. image: {
  35228. source: "./media/characters/midnight-tales/head-beast.svg"
  35229. }
  35230. },
  35231. },
  35232. [
  35233. {
  35234. name: "Normal",
  35235. height: math.unit(5 + 5 / 12, "feet"),
  35236. default: true
  35237. },
  35238. {
  35239. name: "Macro",
  35240. height: math.unit(25, "feet")
  35241. },
  35242. ]
  35243. ))
  35244. characterMakers.push(() => makeCharacter(
  35245. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35246. {
  35247. front: {
  35248. height: math.unit(5 + 10/12, "feet"),
  35249. name: "Front",
  35250. image: {
  35251. source: "./media/characters/argon/front.svg",
  35252. extra: 2009/1935,
  35253. bottom: 118/2127
  35254. }
  35255. },
  35256. back: {
  35257. height: math.unit(5 + 10/12, "feet"),
  35258. name: "Back",
  35259. image: {
  35260. source: "./media/characters/argon/back.svg",
  35261. extra: 2047/1992,
  35262. bottom: 20/2067
  35263. }
  35264. },
  35265. frontDressed: {
  35266. height: math.unit(5 + 10/12, "feet"),
  35267. name: "Front (Dressed)",
  35268. image: {
  35269. source: "./media/characters/argon/front-dressed.svg",
  35270. extra: 2009/1935,
  35271. bottom: 118/2127
  35272. }
  35273. },
  35274. },
  35275. [
  35276. {
  35277. name: "Normal",
  35278. height: math.unit(5 + 10/12, "feet"),
  35279. default: true
  35280. },
  35281. ]
  35282. ))
  35283. characterMakers.push(() => makeCharacter(
  35284. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35285. {
  35286. front: {
  35287. height: math.unit(8 + 6/12, "feet"),
  35288. weight: math.unit(1150, "lb"),
  35289. name: "Front",
  35290. image: {
  35291. source: "./media/characters/kichi/front.svg",
  35292. extra: 1267/1164,
  35293. bottom: 61/1328
  35294. }
  35295. },
  35296. back: {
  35297. height: math.unit(8 + 6/12, "feet"),
  35298. weight: math.unit(1150, "lb"),
  35299. name: "Back",
  35300. image: {
  35301. source: "./media/characters/kichi/back.svg",
  35302. extra: 1273/1166,
  35303. bottom: 33/1306
  35304. }
  35305. },
  35306. },
  35307. [
  35308. {
  35309. name: "Normal",
  35310. height: math.unit(8 + 6/12, "feet"),
  35311. default: true
  35312. },
  35313. ]
  35314. ))
  35315. characterMakers.push(() => makeCharacter(
  35316. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35317. {
  35318. front: {
  35319. height: math.unit(6, "feet"),
  35320. weight: math.unit(210, "lb"),
  35321. name: "Front",
  35322. image: {
  35323. source: "./media/characters/manetel-greyscale/front.svg",
  35324. extra: 350/312,
  35325. bottom: 8/358
  35326. }
  35327. },
  35328. },
  35329. [
  35330. {
  35331. name: "Micro",
  35332. height: math.unit(2, "inches")
  35333. },
  35334. {
  35335. name: "Normal",
  35336. height: math.unit(6, "feet"),
  35337. default: true
  35338. },
  35339. {
  35340. name: "Minimacro",
  35341. height: math.unit(17, "feet")
  35342. },
  35343. {
  35344. name: "Macro",
  35345. height: math.unit(117, "feet")
  35346. },
  35347. ]
  35348. ))
  35349. characterMakers.push(() => makeCharacter(
  35350. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35351. {
  35352. side: {
  35353. height: math.unit(5 + 1/12, "feet"),
  35354. weight: math.unit(418, "lb"),
  35355. name: "Side",
  35356. image: {
  35357. source: "./media/characters/softpurr/side.svg",
  35358. extra: 1993/1945,
  35359. bottom: 134/2127
  35360. }
  35361. },
  35362. front: {
  35363. height: math.unit(5 + 1/12, "feet"),
  35364. weight: math.unit(418, "lb"),
  35365. name: "Front",
  35366. image: {
  35367. source: "./media/characters/softpurr/front.svg",
  35368. extra: 1950/1856,
  35369. bottom: 174/2124
  35370. }
  35371. },
  35372. paw: {
  35373. height: math.unit(1, "feet"),
  35374. name: "Paw",
  35375. image: {
  35376. source: "./media/characters/softpurr/paw.svg"
  35377. }
  35378. },
  35379. },
  35380. [
  35381. {
  35382. name: "Normal",
  35383. height: math.unit(5 + 1/12, "feet"),
  35384. default: true
  35385. },
  35386. ]
  35387. ))
  35388. characterMakers.push(() => makeCharacter(
  35389. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35390. {
  35391. front: {
  35392. height: math.unit(260, "meters"),
  35393. name: "Front",
  35394. image: {
  35395. source: "./media/characters/anahita/front.svg",
  35396. extra: 665/635,
  35397. bottom: 89/754
  35398. }
  35399. },
  35400. },
  35401. [
  35402. {
  35403. name: "Macro",
  35404. height: math.unit(260, "meters"),
  35405. default: true
  35406. },
  35407. ]
  35408. ))
  35409. characterMakers.push(() => makeCharacter(
  35410. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35411. {
  35412. front: {
  35413. height: math.unit(4 + 10/12, "feet"),
  35414. weight: math.unit(160, "lb"),
  35415. name: "Front",
  35416. image: {
  35417. source: "./media/characters/chip-mouse/front.svg",
  35418. extra: 3528/3408,
  35419. bottom: 0/3528
  35420. }
  35421. },
  35422. frontNsfw: {
  35423. height: math.unit(4 + 10/12, "feet"),
  35424. weight: math.unit(160, "lb"),
  35425. name: "Front (NSFW)",
  35426. image: {
  35427. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35428. extra: 3528/3408,
  35429. bottom: 0/3528
  35430. }
  35431. },
  35432. },
  35433. [
  35434. {
  35435. name: "Normal",
  35436. height: math.unit(4 + 10/12, "feet"),
  35437. default: true
  35438. },
  35439. ]
  35440. ))
  35441. characterMakers.push(() => makeCharacter(
  35442. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35443. {
  35444. side: {
  35445. height: math.unit(10, "feet"),
  35446. weight: math.unit(14000, "lb"),
  35447. name: "Side",
  35448. image: {
  35449. source: "./media/characters/kremm/side.svg",
  35450. extra: 1390/1053,
  35451. bottom: 90/1480
  35452. }
  35453. },
  35454. gut: {
  35455. height: math.unit(5.8, "feet"),
  35456. name: "Gut",
  35457. image: {
  35458. source: "./media/characters/kremm/gut.svg"
  35459. }
  35460. },
  35461. ass: {
  35462. height: math.unit(6.1, "feet"),
  35463. name: "Ass",
  35464. image: {
  35465. source: "./media/characters/kremm/ass.svg"
  35466. }
  35467. },
  35468. jaws: {
  35469. height: math.unit(2.2, "feet"),
  35470. name: "Jaws",
  35471. image: {
  35472. source: "./media/characters/kremm/jaws.svg"
  35473. }
  35474. },
  35475. dick: {
  35476. height: math.unit(4.26, "feet"),
  35477. name: "Dick",
  35478. image: {
  35479. source: "./media/characters/kremm/dick.svg"
  35480. }
  35481. },
  35482. },
  35483. [
  35484. {
  35485. name: "Normal",
  35486. height: math.unit(10, "feet"),
  35487. default: true
  35488. },
  35489. ]
  35490. ))
  35491. characterMakers.push(() => makeCharacter(
  35492. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35493. {
  35494. front: {
  35495. height: math.unit(30, "stories"),
  35496. name: "Front",
  35497. image: {
  35498. source: "./media/characters/kai/front.svg",
  35499. extra: 1892/1718,
  35500. bottom: 162/2054
  35501. }
  35502. },
  35503. },
  35504. [
  35505. {
  35506. name: "Macro",
  35507. height: math.unit(30, "stories"),
  35508. default: true
  35509. },
  35510. ]
  35511. ))
  35512. characterMakers.push(() => makeCharacter(
  35513. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35514. {
  35515. front: {
  35516. height: math.unit(6 + 4/12, "feet"),
  35517. weight: math.unit(145, "lb"),
  35518. name: "Front",
  35519. image: {
  35520. source: "./media/characters/sykes/front.svg",
  35521. extra: 1321 / 1187,
  35522. bottom: 66 / 1387
  35523. }
  35524. },
  35525. back: {
  35526. height: math.unit(6 + 4/12, "feet"),
  35527. weight: math.unit(145, "lb"),
  35528. name: "Back",
  35529. image: {
  35530. source: "./media/characters/sykes/back.svg",
  35531. extra: 1326/1181,
  35532. bottom: 31/1357
  35533. }
  35534. },
  35535. traditionalOutfit: {
  35536. height: math.unit(6 + 4/12, "feet"),
  35537. weight: math.unit(145, "lb"),
  35538. name: "Traditional Outfit",
  35539. image: {
  35540. source: "./media/characters/sykes/traditional-outfit.svg",
  35541. extra: 1321 / 1187,
  35542. bottom: 66 / 1387
  35543. }
  35544. },
  35545. adventureOutfit: {
  35546. height: math.unit(6 + 4/12, "feet"),
  35547. weight: math.unit(145, "lb"),
  35548. name: "Adventure Outfit",
  35549. image: {
  35550. source: "./media/characters/sykes/adventure-outfit.svg",
  35551. extra: 1321 / 1187,
  35552. bottom: 66 / 1387
  35553. }
  35554. },
  35555. handLeft: {
  35556. height: math.unit(0.9, "feet"),
  35557. name: "Hand (Left)",
  35558. image: {
  35559. source: "./media/characters/sykes/hand-left.svg"
  35560. }
  35561. },
  35562. handRight: {
  35563. height: math.unit(0.839, "feet"),
  35564. name: "Hand (Right)",
  35565. image: {
  35566. source: "./media/characters/sykes/hand-right.svg"
  35567. }
  35568. },
  35569. leftFoot: {
  35570. height: math.unit(1.2, "feet"),
  35571. name: "Foot (Left)",
  35572. image: {
  35573. source: "./media/characters/sykes/foot-left.svg"
  35574. }
  35575. },
  35576. rightFoot: {
  35577. height: math.unit(1.2, "feet"),
  35578. name: "Foot (Right)",
  35579. image: {
  35580. source: "./media/characters/sykes/foot-right.svg"
  35581. }
  35582. },
  35583. maw: {
  35584. height: math.unit(1.93, "feet"),
  35585. name: "Maw",
  35586. image: {
  35587. source: "./media/characters/sykes/maw.svg"
  35588. }
  35589. },
  35590. teeth: {
  35591. height: math.unit(0.51, "feet"),
  35592. name: "Teeth",
  35593. image: {
  35594. source: "./media/characters/sykes/teeth.svg"
  35595. }
  35596. },
  35597. tongue: {
  35598. height: math.unit(2.13, "feet"),
  35599. name: "Tongue",
  35600. image: {
  35601. source: "./media/characters/sykes/tongue.svg"
  35602. }
  35603. },
  35604. uvula: {
  35605. height: math.unit(0.16, "feet"),
  35606. name: "Uvula",
  35607. image: {
  35608. source: "./media/characters/sykes/uvula.svg"
  35609. }
  35610. },
  35611. collar: {
  35612. height: math.unit(0.287, "feet"),
  35613. name: "Collar",
  35614. image: {
  35615. source: "./media/characters/sykes/collar.svg"
  35616. }
  35617. },
  35618. tail: {
  35619. height: math.unit(3.8, "feet"),
  35620. name: "Tail",
  35621. image: {
  35622. source: "./media/characters/sykes/tail.svg"
  35623. }
  35624. },
  35625. },
  35626. [
  35627. {
  35628. name: "Shrunken",
  35629. height: math.unit(5, "inches")
  35630. },
  35631. {
  35632. name: "Normal",
  35633. height: math.unit(6 + 4 / 12, "feet"),
  35634. default: true
  35635. },
  35636. {
  35637. name: "Big",
  35638. height: math.unit(15, "feet")
  35639. },
  35640. ]
  35641. ))
  35642. characterMakers.push(() => makeCharacter(
  35643. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35644. {
  35645. front: {
  35646. height: math.unit(5 + 8/12, "feet"),
  35647. weight: math.unit(190, "lb"),
  35648. name: "Front",
  35649. image: {
  35650. source: "./media/characters/oven-otter/front.svg",
  35651. extra: 1809/1740,
  35652. bottom: 181/1990
  35653. }
  35654. },
  35655. back: {
  35656. height: math.unit(5 + 8/12, "feet"),
  35657. weight: math.unit(190, "lb"),
  35658. name: "Back",
  35659. image: {
  35660. source: "./media/characters/oven-otter/back.svg",
  35661. extra: 1709/1635,
  35662. bottom: 118/1827
  35663. }
  35664. },
  35665. hand: {
  35666. height: math.unit(1.07, "feet"),
  35667. name: "Hand",
  35668. image: {
  35669. source: "./media/characters/oven-otter/hand.svg"
  35670. }
  35671. },
  35672. beans: {
  35673. height: math.unit(1.74, "feet"),
  35674. name: "Beans",
  35675. image: {
  35676. source: "./media/characters/oven-otter/beans.svg"
  35677. }
  35678. },
  35679. },
  35680. [
  35681. {
  35682. name: "Micro",
  35683. height: math.unit(0.5, "inches")
  35684. },
  35685. {
  35686. name: "Normal",
  35687. height: math.unit(5 + 8/12, "feet"),
  35688. default: true
  35689. },
  35690. {
  35691. name: "Macro",
  35692. height: math.unit(250, "feet")
  35693. },
  35694. {
  35695. name: "Really High",
  35696. height: math.unit(420, "feet")
  35697. },
  35698. ]
  35699. ))
  35700. characterMakers.push(() => makeCharacter(
  35701. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35702. {
  35703. front: {
  35704. height: math.unit(5, "meters"),
  35705. weight: math.unit(292000000000000, "kg"),
  35706. name: "Front",
  35707. image: {
  35708. source: "./media/characters/devourer/front.svg",
  35709. extra: 1800/1733,
  35710. bottom: 211/2011
  35711. }
  35712. },
  35713. maw: {
  35714. height: math.unit(1.1, "meter"),
  35715. name: "Maw",
  35716. image: {
  35717. source: "./media/characters/devourer/maw.svg"
  35718. }
  35719. },
  35720. },
  35721. [
  35722. {
  35723. name: "Small",
  35724. height: math.unit(3, "meters")
  35725. },
  35726. {
  35727. name: "Large",
  35728. height: math.unit(5, "meters"),
  35729. default: true
  35730. },
  35731. ]
  35732. ))
  35733. characterMakers.push(() => makeCharacter(
  35734. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35735. {
  35736. front: {
  35737. height: math.unit(6, "feet"),
  35738. weight: math.unit(400, "lb"),
  35739. name: "Front",
  35740. image: {
  35741. source: "./media/characters/ellarby/front.svg",
  35742. extra: 1909/1763,
  35743. bottom: 80/1989
  35744. }
  35745. },
  35746. back: {
  35747. height: math.unit(6, "feet"),
  35748. weight: math.unit(400, "lb"),
  35749. name: "Back",
  35750. image: {
  35751. source: "./media/characters/ellarby/back.svg",
  35752. extra: 1914/1784,
  35753. bottom: 172/2086
  35754. }
  35755. },
  35756. },
  35757. [
  35758. {
  35759. name: "Mischief",
  35760. height: math.unit(18, "inches")
  35761. },
  35762. {
  35763. name: "Trouble",
  35764. height: math.unit(12, "feet")
  35765. },
  35766. {
  35767. name: "Havoc",
  35768. height: math.unit(200, "feet"),
  35769. default: true
  35770. },
  35771. {
  35772. name: "Pandemonium",
  35773. height: math.unit(1, "mile")
  35774. },
  35775. {
  35776. name: "Catastrophe",
  35777. height: math.unit(100, "miles")
  35778. },
  35779. ]
  35780. ))
  35781. characterMakers.push(() => makeCharacter(
  35782. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35783. {
  35784. front: {
  35785. height: math.unit(4.7, "meters"),
  35786. weight: math.unit(6500, "kg"),
  35787. name: "Front",
  35788. image: {
  35789. source: "./media/characters/vex/front.svg",
  35790. extra: 1288/1140,
  35791. bottom: 100/1388
  35792. }
  35793. },
  35794. },
  35795. [
  35796. {
  35797. name: "Normal",
  35798. height: math.unit(4.7, "meters"),
  35799. default: true
  35800. },
  35801. ]
  35802. ))
  35803. characterMakers.push(() => makeCharacter(
  35804. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35805. {
  35806. normal: {
  35807. height: math.unit(6, "feet"),
  35808. weight: math.unit(350, "lb"),
  35809. name: "Normal",
  35810. image: {
  35811. source: "./media/characters/teshy/normal.svg",
  35812. extra: 1795/1735,
  35813. bottom: 16/1811
  35814. }
  35815. },
  35816. monsterFront: {
  35817. height: math.unit(12, "feet"),
  35818. weight: math.unit(4700, "lb"),
  35819. name: "Monster (Front)",
  35820. image: {
  35821. source: "./media/characters/teshy/monster-front.svg",
  35822. extra: 2042/2034,
  35823. bottom: 128/2170
  35824. }
  35825. },
  35826. monsterSide: {
  35827. height: math.unit(12, "feet"),
  35828. weight: math.unit(4700, "lb"),
  35829. name: "Monster (Side)",
  35830. image: {
  35831. source: "./media/characters/teshy/monster-side.svg",
  35832. extra: 2067/2056,
  35833. bottom: 70/2137
  35834. }
  35835. },
  35836. monsterBack: {
  35837. height: math.unit(12, "feet"),
  35838. weight: math.unit(4700, "lb"),
  35839. name: "Monster (Back)",
  35840. image: {
  35841. source: "./media/characters/teshy/monster-back.svg",
  35842. extra: 1921/1914,
  35843. bottom: 171/2092
  35844. }
  35845. },
  35846. },
  35847. [
  35848. {
  35849. name: "Normal",
  35850. height: math.unit(6, "feet"),
  35851. default: true
  35852. },
  35853. ]
  35854. ))
  35855. characterMakers.push(() => makeCharacter(
  35856. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35857. {
  35858. front: {
  35859. height: math.unit(6, "feet"),
  35860. name: "Front",
  35861. image: {
  35862. source: "./media/characters/ramey/front.svg",
  35863. extra: 790/787,
  35864. bottom: 27/817
  35865. }
  35866. },
  35867. },
  35868. [
  35869. {
  35870. name: "Normal",
  35871. height: math.unit(6, "feet"),
  35872. default: true
  35873. },
  35874. ]
  35875. ))
  35876. characterMakers.push(() => makeCharacter(
  35877. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35878. {
  35879. front: {
  35880. height: math.unit(5 + 5/12, "feet"),
  35881. weight: math.unit(120, "lb"),
  35882. name: "Front",
  35883. image: {
  35884. source: "./media/characters/phirae/front.svg",
  35885. extra: 2491/2436,
  35886. bottom: 38/2529
  35887. }
  35888. },
  35889. },
  35890. [
  35891. {
  35892. name: "Normal",
  35893. height: math.unit(5 + 5/12, "feet"),
  35894. default: true
  35895. },
  35896. ]
  35897. ))
  35898. characterMakers.push(() => makeCharacter(
  35899. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35900. {
  35901. front: {
  35902. height: math.unit(5 + 3/12, "feet"),
  35903. name: "Front",
  35904. image: {
  35905. source: "./media/characters/stagglas/front.svg",
  35906. extra: 962/882,
  35907. bottom: 53/1015
  35908. }
  35909. },
  35910. feral: {
  35911. height: math.unit(335, "cm"),
  35912. name: "Feral",
  35913. image: {
  35914. source: "./media/characters/stagglas/feral.svg",
  35915. extra: 1732/1090,
  35916. bottom: 48/1780
  35917. }
  35918. },
  35919. },
  35920. [
  35921. {
  35922. name: "Normal",
  35923. height: math.unit(5 + 3/12, "feet"),
  35924. default: true
  35925. },
  35926. ]
  35927. ))
  35928. characterMakers.push(() => makeCharacter(
  35929. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35930. {
  35931. front: {
  35932. height: math.unit(5 + 4/12, "feet"),
  35933. weight: math.unit(145, "lb"),
  35934. name: "Front",
  35935. image: {
  35936. source: "./media/characters/starra/front.svg",
  35937. extra: 1790/1691,
  35938. bottom: 91/1881
  35939. }
  35940. },
  35941. },
  35942. [
  35943. {
  35944. name: "Normal",
  35945. height: math.unit(5 + 4/12, "feet"),
  35946. default: true
  35947. },
  35948. ]
  35949. ))
  35950. characterMakers.push(() => makeCharacter(
  35951. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35952. {
  35953. front: {
  35954. height: math.unit(2.2, "meters"),
  35955. name: "Front",
  35956. image: {
  35957. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35958. extra: 1248/972,
  35959. bottom: 38/1286
  35960. }
  35961. },
  35962. },
  35963. [
  35964. {
  35965. name: "Normal",
  35966. height: math.unit(2.2, "meters"),
  35967. default: true
  35968. },
  35969. ]
  35970. ))
  35971. characterMakers.push(() => makeCharacter(
  35972. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35973. {
  35974. side: {
  35975. height: math.unit(8 + 2/12, "feet"),
  35976. weight: math.unit(1240, "lb"),
  35977. name: "Side",
  35978. image: {
  35979. source: "./media/characters/mika-valentine/side.svg",
  35980. extra: 2670/2501,
  35981. bottom: 250/2920
  35982. }
  35983. },
  35984. },
  35985. [
  35986. {
  35987. name: "Normal",
  35988. height: math.unit(8 + 2/12, "feet"),
  35989. default: true
  35990. },
  35991. ]
  35992. ))
  35993. characterMakers.push(() => makeCharacter(
  35994. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35995. {
  35996. front: {
  35997. height: math.unit(7 + 2/12, "feet"),
  35998. name: "Front",
  35999. image: {
  36000. source: "./media/characters/xoltol/front.svg",
  36001. extra: 2212/2124,
  36002. bottom: 84/2296
  36003. }
  36004. },
  36005. side: {
  36006. height: math.unit(7 + 2/12, "feet"),
  36007. name: "Side",
  36008. image: {
  36009. source: "./media/characters/xoltol/side.svg",
  36010. extra: 2273/2197,
  36011. bottom: 26/2299
  36012. }
  36013. },
  36014. hand: {
  36015. height: math.unit(2.5, "feet"),
  36016. name: "Hand",
  36017. image: {
  36018. source: "./media/characters/xoltol/hand.svg"
  36019. }
  36020. },
  36021. },
  36022. [
  36023. {
  36024. name: "Small-ish",
  36025. height: math.unit(5 + 11/12, "feet")
  36026. },
  36027. {
  36028. name: "Normal",
  36029. height: math.unit(7 + 2/12, "feet")
  36030. },
  36031. {
  36032. name: "\"Macro\"",
  36033. height: math.unit(14 + 9/12, "feet"),
  36034. default: true
  36035. },
  36036. {
  36037. name: "Alternate Height",
  36038. height: math.unit(20, "feet")
  36039. },
  36040. {
  36041. name: "Actually Macro",
  36042. height: math.unit(100, "feet")
  36043. },
  36044. ]
  36045. ))
  36046. characterMakers.push(() => makeCharacter(
  36047. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36048. {
  36049. front: {
  36050. height: math.unit(5 + 2/12, "feet"),
  36051. name: "Front",
  36052. image: {
  36053. source: "./media/characters/kotetsu-redwood/front.svg",
  36054. extra: 1053/942,
  36055. bottom: 60/1113
  36056. }
  36057. },
  36058. },
  36059. [
  36060. {
  36061. name: "Normal",
  36062. height: math.unit(5 + 2/12, "feet"),
  36063. default: true
  36064. },
  36065. ]
  36066. ))
  36067. characterMakers.push(() => makeCharacter(
  36068. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36069. {
  36070. front: {
  36071. height: math.unit(2.4, "meters"),
  36072. weight: math.unit(125, "kg"),
  36073. name: "Front",
  36074. image: {
  36075. source: "./media/characters/lilith/front.svg",
  36076. extra: 1590/1513,
  36077. bottom: 203/1793
  36078. }
  36079. },
  36080. },
  36081. [
  36082. {
  36083. name: "Humanoid",
  36084. height: math.unit(2.4, "meters")
  36085. },
  36086. {
  36087. name: "Normal",
  36088. height: math.unit(6, "meters"),
  36089. default: true
  36090. },
  36091. {
  36092. name: "Largest",
  36093. height: math.unit(55, "meters")
  36094. },
  36095. ]
  36096. ))
  36097. characterMakers.push(() => makeCharacter(
  36098. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36099. {
  36100. front: {
  36101. height: math.unit(8 + 4/12, "feet"),
  36102. weight: math.unit(535, "lb"),
  36103. name: "Front",
  36104. image: {
  36105. source: "./media/characters/beh'kah-bolger/front.svg",
  36106. extra: 1660/1603,
  36107. bottom: 37/1697
  36108. }
  36109. },
  36110. },
  36111. [
  36112. {
  36113. name: "Normal",
  36114. height: math.unit(8 + 4/12, "feet"),
  36115. default: true
  36116. },
  36117. {
  36118. name: "Kaiju",
  36119. height: math.unit(250, "feet")
  36120. },
  36121. {
  36122. name: "Still Growing",
  36123. height: math.unit(10, "miles")
  36124. },
  36125. {
  36126. name: "Continental",
  36127. height: math.unit(5000, "miles")
  36128. },
  36129. {
  36130. name: "Final Form",
  36131. height: math.unit(2500000, "miles")
  36132. },
  36133. ]
  36134. ))
  36135. characterMakers.push(() => makeCharacter(
  36136. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36137. {
  36138. front: {
  36139. height: math.unit(7 + 2/12, "feet"),
  36140. weight: math.unit(230, "kg"),
  36141. name: "Front",
  36142. image: {
  36143. source: "./media/characters/tatyana-milewska/front.svg",
  36144. extra: 1199/1150,
  36145. bottom: 86/1285
  36146. }
  36147. },
  36148. },
  36149. [
  36150. {
  36151. name: "Normal",
  36152. height: math.unit(7 + 2/12, "feet"),
  36153. default: true
  36154. },
  36155. {
  36156. name: "Big",
  36157. height: math.unit(12, "feet")
  36158. },
  36159. {
  36160. name: "Minimacro",
  36161. height: math.unit(20, "feet")
  36162. },
  36163. {
  36164. name: "Macro",
  36165. height: math.unit(120, "feet")
  36166. },
  36167. ]
  36168. ))
  36169. characterMakers.push(() => makeCharacter(
  36170. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36171. {
  36172. front: {
  36173. height: math.unit(7 + 8/12, "feet"),
  36174. weight: math.unit(152, "kg"),
  36175. name: "Front",
  36176. image: {
  36177. source: "./media/characters/helen-arri/front.svg",
  36178. extra: 440/423,
  36179. bottom: 14/454
  36180. }
  36181. },
  36182. back: {
  36183. height: math.unit(7 + 8/12, "feet"),
  36184. weight: math.unit(152, "kg"),
  36185. name: "Back",
  36186. image: {
  36187. source: "./media/characters/helen-arri/back.svg",
  36188. extra: 443/426,
  36189. bottom: 8/451
  36190. }
  36191. },
  36192. },
  36193. [
  36194. {
  36195. name: "Normal",
  36196. height: math.unit(7 + 8/12, "feet"),
  36197. default: true
  36198. },
  36199. {
  36200. name: "Big",
  36201. height: math.unit(14, "feet")
  36202. },
  36203. {
  36204. name: "Minimacro",
  36205. height: math.unit(24, "feet")
  36206. },
  36207. {
  36208. name: "Macro",
  36209. height: math.unit(140, "feet")
  36210. },
  36211. ]
  36212. ))
  36213. characterMakers.push(() => makeCharacter(
  36214. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36215. {
  36216. front: {
  36217. height: math.unit(6, "meters"),
  36218. name: "Front",
  36219. image: {
  36220. source: "./media/characters/ehanu-rehu/front.svg",
  36221. extra: 1800/1800,
  36222. bottom: 59/1859
  36223. }
  36224. },
  36225. },
  36226. [
  36227. {
  36228. name: "Normal",
  36229. height: math.unit(6, "meters"),
  36230. default: true
  36231. },
  36232. ]
  36233. ))
  36234. characterMakers.push(() => makeCharacter(
  36235. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36236. {
  36237. front: {
  36238. height: math.unit(7 + 3/12, "feet"),
  36239. name: "Front",
  36240. image: {
  36241. source: "./media/characters/renholder/front.svg",
  36242. extra: 3096/2960,
  36243. bottom: 250/3346
  36244. }
  36245. },
  36246. },
  36247. [
  36248. {
  36249. name: "Normal Bat",
  36250. height: math.unit(7 + 3/12, "feet"),
  36251. default: true
  36252. },
  36253. {
  36254. name: "Slightly Tall Bat",
  36255. height: math.unit(100, "feet")
  36256. },
  36257. {
  36258. name: "Big Bat",
  36259. height: math.unit(1000, "feet")
  36260. },
  36261. {
  36262. name: "City-Sized Bat",
  36263. height: math.unit(200000, "feet")
  36264. },
  36265. {
  36266. name: "Bigger Bat",
  36267. height: math.unit(10000, "miles")
  36268. },
  36269. {
  36270. name: "Solar Sized Bat",
  36271. height: math.unit(100, "AU")
  36272. },
  36273. {
  36274. name: "Galactic Bat",
  36275. height: math.unit(200000, "lightyears")
  36276. },
  36277. {
  36278. name: "Universally Known Bat",
  36279. height: math.unit(1, "universe")
  36280. },
  36281. ]
  36282. ))
  36283. characterMakers.push(() => makeCharacter(
  36284. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36285. {
  36286. front: {
  36287. height: math.unit(6 + 11/12, "feet"),
  36288. weight: math.unit(250, "lb"),
  36289. name: "Front",
  36290. image: {
  36291. source: "./media/characters/cookiecat/front.svg",
  36292. extra: 893/827,
  36293. bottom: 14/907
  36294. }
  36295. },
  36296. },
  36297. [
  36298. {
  36299. name: "Micro",
  36300. height: math.unit(3, "inches")
  36301. },
  36302. {
  36303. name: "Normal",
  36304. height: math.unit(6 + 11/12, "feet"),
  36305. default: true
  36306. },
  36307. {
  36308. name: "Macro",
  36309. height: math.unit(100, "feet")
  36310. },
  36311. {
  36312. name: "Macro+",
  36313. height: math.unit(404, "feet")
  36314. },
  36315. {
  36316. name: "Megamacro",
  36317. height: math.unit(165, "miles")
  36318. },
  36319. {
  36320. name: "Planetary",
  36321. height: math.unit(4600, "miles")
  36322. },
  36323. ]
  36324. ))
  36325. characterMakers.push(() => makeCharacter(
  36326. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36327. {
  36328. front: {
  36329. height: math.unit(10 + 3/12, "feet"),
  36330. weight: math.unit(1500, "lb"),
  36331. name: "Front",
  36332. image: {
  36333. source: "./media/characters/tux-kusanagi/front.svg",
  36334. extra: 944/840,
  36335. bottom: 39/983
  36336. }
  36337. },
  36338. back: {
  36339. height: math.unit(10 + 3/12, "feet"),
  36340. weight: math.unit(1500, "lb"),
  36341. name: "Back",
  36342. image: {
  36343. source: "./media/characters/tux-kusanagi/back.svg",
  36344. extra: 941/842,
  36345. bottom: 28/969
  36346. }
  36347. },
  36348. rump: {
  36349. height: math.unit(5.25, "feet"),
  36350. name: "Rump",
  36351. image: {
  36352. source: "./media/characters/tux-kusanagi/rump.svg"
  36353. }
  36354. },
  36355. beak: {
  36356. height: math.unit(1.54, "feet"),
  36357. name: "Beak",
  36358. image: {
  36359. source: "./media/characters/tux-kusanagi/beak.svg"
  36360. }
  36361. },
  36362. },
  36363. [
  36364. {
  36365. name: "Normal",
  36366. height: math.unit(10 + 3/12, "feet"),
  36367. default: true
  36368. },
  36369. ]
  36370. ))
  36371. characterMakers.push(() => makeCharacter(
  36372. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36373. {
  36374. front: {
  36375. height: math.unit(58, "feet"),
  36376. weight: math.unit(200, "tons"),
  36377. name: "Front",
  36378. image: {
  36379. source: "./media/characters/uzarmazari/front.svg",
  36380. extra: 1575/1455,
  36381. bottom: 152/1727
  36382. }
  36383. },
  36384. back: {
  36385. height: math.unit(58, "feet"),
  36386. weight: math.unit(200, "tons"),
  36387. name: "Back",
  36388. image: {
  36389. source: "./media/characters/uzarmazari/back.svg",
  36390. extra: 1585/1510,
  36391. bottom: 157/1742
  36392. }
  36393. },
  36394. head: {
  36395. height: math.unit(26, "feet"),
  36396. name: "Head",
  36397. image: {
  36398. source: "./media/characters/uzarmazari/head.svg"
  36399. }
  36400. },
  36401. },
  36402. [
  36403. {
  36404. name: "Normal",
  36405. height: math.unit(58, "feet"),
  36406. default: true
  36407. },
  36408. ]
  36409. ))
  36410. characterMakers.push(() => makeCharacter(
  36411. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36412. {
  36413. side: {
  36414. height: math.unit(15, "feet"),
  36415. name: "Side",
  36416. image: {
  36417. source: "./media/characters/akitu/side.svg",
  36418. extra: 1421/1321,
  36419. bottom: 157/1578
  36420. }
  36421. },
  36422. front: {
  36423. height: math.unit(15, "feet"),
  36424. name: "Front",
  36425. image: {
  36426. source: "./media/characters/akitu/front.svg",
  36427. extra: 1435/1326,
  36428. bottom: 232/1667
  36429. }
  36430. },
  36431. },
  36432. [
  36433. {
  36434. name: "Normal",
  36435. height: math.unit(15, "feet"),
  36436. default: true
  36437. },
  36438. ]
  36439. ))
  36440. characterMakers.push(() => makeCharacter(
  36441. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36442. {
  36443. front: {
  36444. height: math.unit(10 + 8/12, "feet"),
  36445. name: "Front",
  36446. image: {
  36447. source: "./media/characters/azalie-croixland/front.svg",
  36448. extra: 1972/1856,
  36449. bottom: 31/2003
  36450. }
  36451. },
  36452. },
  36453. [
  36454. {
  36455. name: "Original Height",
  36456. height: math.unit(5 + 4/12, "feet")
  36457. },
  36458. {
  36459. name: "Normal Height",
  36460. height: math.unit(10 + 8/12, "feet"),
  36461. default: true
  36462. },
  36463. ]
  36464. ))
  36465. characterMakers.push(() => makeCharacter(
  36466. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36467. {
  36468. side: {
  36469. height: math.unit(7 + 1/12, "feet"),
  36470. weight: math.unit(245, "lb"),
  36471. name: "Side",
  36472. image: {
  36473. source: "./media/characters/kavus-kazian/side.svg",
  36474. extra: 349/342,
  36475. bottom: 15/364
  36476. }
  36477. },
  36478. },
  36479. [
  36480. {
  36481. name: "Normal",
  36482. height: math.unit(7 + 1/12, "feet"),
  36483. default: true
  36484. },
  36485. ]
  36486. ))
  36487. characterMakers.push(() => makeCharacter(
  36488. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36489. {
  36490. normalFront: {
  36491. height: math.unit(5 + 11/12, "feet"),
  36492. name: "Front",
  36493. image: {
  36494. source: "./media/characters/moonlight-rose/normal-front.svg",
  36495. extra: 1980/1825,
  36496. bottom: 18/1998
  36497. },
  36498. form: "normal",
  36499. default: true
  36500. },
  36501. normalBack: {
  36502. height: math.unit(5 + 11/12, "feet"),
  36503. name: "Back",
  36504. image: {
  36505. source: "./media/characters/moonlight-rose/normal-back.svg",
  36506. extra: 2010/1839,
  36507. bottom: 10/2020
  36508. },
  36509. form: "normal"
  36510. },
  36511. demonFront: {
  36512. height: math.unit(1.5, "earths"),
  36513. name: "Front",
  36514. image: {
  36515. source: "./media/characters/moonlight-rose/demon.svg",
  36516. extra: 1400/1294,
  36517. bottom: 45/1445
  36518. },
  36519. form: "demon",
  36520. default: true
  36521. },
  36522. terraFront: {
  36523. height: math.unit(1.5, "earths"),
  36524. name: "Front",
  36525. image: {
  36526. source: "./media/characters/moonlight-rose/terra.svg"
  36527. },
  36528. form: "terra",
  36529. default: true
  36530. },
  36531. jupiterFront: {
  36532. height: math.unit(69911*2, "km"),
  36533. name: "Front",
  36534. image: {
  36535. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36536. extra: 1367/1286,
  36537. bottom: 55/1422
  36538. },
  36539. form: "jupiter",
  36540. default: true
  36541. },
  36542. neptuneFront: {
  36543. height: math.unit(24622*2, "feet"),
  36544. name: "Front",
  36545. image: {
  36546. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36547. extra: 1851/1712,
  36548. bottom: 0/1851
  36549. },
  36550. form: "neptune",
  36551. default: true
  36552. },
  36553. },
  36554. [
  36555. {
  36556. name: "\"Natural\" Height",
  36557. height: math.unit(5 + 11/12, "feet"),
  36558. form: "normal"
  36559. },
  36560. {
  36561. name: "Smallest comfortable size",
  36562. height: math.unit(40, "meters"),
  36563. form: "normal"
  36564. },
  36565. {
  36566. name: "Common size",
  36567. height: math.unit(50, "km"),
  36568. form: "normal",
  36569. default: true
  36570. },
  36571. {
  36572. name: "Normal",
  36573. height: math.unit(1.5, "earths"),
  36574. form: "demon",
  36575. default: true
  36576. },
  36577. {
  36578. name: "Universal",
  36579. height: math.unit(15, "universes"),
  36580. form: "demon"
  36581. },
  36582. {
  36583. name: "Earth",
  36584. height: math.unit(1.5, "earths"),
  36585. form: "terra",
  36586. default: true
  36587. },
  36588. {
  36589. name: "Super Earth",
  36590. height: math.unit(67.5, "earths"),
  36591. form: "terra"
  36592. },
  36593. {
  36594. name: "Doesn't fit in a solar system...",
  36595. height: math.unit(1, "galaxy"),
  36596. form: "terra"
  36597. },
  36598. {
  36599. name: "Saturn",
  36600. height: math.unit(58232*2, "km"),
  36601. form: "jupiter"
  36602. },
  36603. {
  36604. name: "Jupiter",
  36605. height: math.unit(69911*2, "km"),
  36606. form: "jupiter",
  36607. default: true
  36608. },
  36609. {
  36610. name: "HD 100546 b",
  36611. height: math.unit(482938, "km"),
  36612. form: "jupiter"
  36613. },
  36614. {
  36615. name: "Enceladus",
  36616. height: math.unit(513*2, "km"),
  36617. form: "neptune"
  36618. },
  36619. {
  36620. name: "Europe",
  36621. height: math.unit(1560*2, "km"),
  36622. form: "neptune"
  36623. },
  36624. {
  36625. name: "Neptune",
  36626. height: math.unit(24622*2, "km"),
  36627. form: "neptune",
  36628. default: true
  36629. },
  36630. {
  36631. name: "CoRoT-9b",
  36632. height: math.unit(75067*2, "km"),
  36633. form: "neptune"
  36634. },
  36635. ],
  36636. {
  36637. "normal": {
  36638. name: "Normal",
  36639. default: true
  36640. },
  36641. "demon": {
  36642. name: "Demon"
  36643. },
  36644. "terra": {
  36645. name: "Terra"
  36646. },
  36647. "jupiter": {
  36648. name: "Jupiter"
  36649. },
  36650. "neptune": {
  36651. name: "Neptune"
  36652. }
  36653. }
  36654. ))
  36655. characterMakers.push(() => makeCharacter(
  36656. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36657. {
  36658. front: {
  36659. height: math.unit(16, "feet"),
  36660. weight: math.unit(610, "kg"),
  36661. name: "Front",
  36662. image: {
  36663. source: "./media/characters/huckle/front.svg",
  36664. extra: 1731/1625,
  36665. bottom: 33/1764
  36666. }
  36667. },
  36668. back: {
  36669. height: math.unit(16, "feet"),
  36670. weight: math.unit(610, "kg"),
  36671. name: "Back",
  36672. image: {
  36673. source: "./media/characters/huckle/back.svg",
  36674. extra: 1738/1651,
  36675. bottom: 37/1775
  36676. }
  36677. },
  36678. laughing: {
  36679. height: math.unit(3.75, "feet"),
  36680. name: "Laughing",
  36681. image: {
  36682. source: "./media/characters/huckle/laughing.svg"
  36683. }
  36684. },
  36685. angry: {
  36686. height: math.unit(4.15, "feet"),
  36687. name: "Angry",
  36688. image: {
  36689. source: "./media/characters/huckle/angry.svg"
  36690. }
  36691. },
  36692. },
  36693. [
  36694. {
  36695. name: "Normal",
  36696. height: math.unit(16, "feet"),
  36697. default: true
  36698. },
  36699. {
  36700. name: "Mini Macro",
  36701. height: math.unit(463, "feet")
  36702. },
  36703. {
  36704. name: "Macro",
  36705. height: math.unit(1680, "meters")
  36706. },
  36707. {
  36708. name: "Mega Macro",
  36709. height: math.unit(175, "km")
  36710. },
  36711. {
  36712. name: "Terra Macro",
  36713. height: math.unit(32, "gigameters")
  36714. },
  36715. {
  36716. name: "Multiverse+",
  36717. height: math.unit(2.56e23, "yottameters")
  36718. },
  36719. ]
  36720. ))
  36721. characterMakers.push(() => makeCharacter(
  36722. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36723. {
  36724. front: {
  36725. height: math.unit(6 + 9/12, "feet"),
  36726. weight: math.unit(280, "lb"),
  36727. name: "Front",
  36728. image: {
  36729. source: "./media/characters/candy/front.svg",
  36730. extra: 234/217,
  36731. bottom: 11/245
  36732. }
  36733. },
  36734. },
  36735. [
  36736. {
  36737. name: "Really Small",
  36738. height: math.unit(0.1, "nm")
  36739. },
  36740. {
  36741. name: "Micro",
  36742. height: math.unit(2, "inches")
  36743. },
  36744. {
  36745. name: "Normal",
  36746. height: math.unit(6 + 9/12, "feet"),
  36747. default: true
  36748. },
  36749. {
  36750. name: "Small Macro",
  36751. height: math.unit(69, "feet")
  36752. },
  36753. {
  36754. name: "Macro",
  36755. height: math.unit(160, "feet")
  36756. },
  36757. {
  36758. name: "Megamacro",
  36759. height: math.unit(22000, "miles")
  36760. },
  36761. {
  36762. name: "Gigamacro",
  36763. height: math.unit(50000, "miles")
  36764. },
  36765. ]
  36766. ))
  36767. characterMakers.push(() => makeCharacter(
  36768. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36769. {
  36770. front: {
  36771. height: math.unit(4, "feet"),
  36772. weight: math.unit(90, "lb"),
  36773. name: "Front",
  36774. image: {
  36775. source: "./media/characters/joey-mcdonald/front.svg",
  36776. extra: 1059/852,
  36777. bottom: 33/1092
  36778. }
  36779. },
  36780. back: {
  36781. height: math.unit(4, "feet"),
  36782. weight: math.unit(90, "lb"),
  36783. name: "Back",
  36784. image: {
  36785. source: "./media/characters/joey-mcdonald/back.svg",
  36786. extra: 1077/879,
  36787. bottom: 5/1082
  36788. }
  36789. },
  36790. frontKobold: {
  36791. height: math.unit(4, "feet"),
  36792. weight: math.unit(100, "lb"),
  36793. name: "Front-kobold",
  36794. image: {
  36795. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36796. extra: 1480/1367,
  36797. bottom: 0/1480
  36798. }
  36799. },
  36800. backKobold: {
  36801. height: math.unit(4, "feet"),
  36802. weight: math.unit(100, "lb"),
  36803. name: "Back-kobold",
  36804. image: {
  36805. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36806. extra: 1449/1361,
  36807. bottom: 0/1449
  36808. }
  36809. },
  36810. },
  36811. [
  36812. {
  36813. name: "Normal",
  36814. height: math.unit(4, "feet"),
  36815. default: true
  36816. },
  36817. ]
  36818. ))
  36819. characterMakers.push(() => makeCharacter(
  36820. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36821. {
  36822. front: {
  36823. height: math.unit(12 + 6/12, "feet"),
  36824. name: "Front",
  36825. image: {
  36826. source: "./media/characters/kass-lockheed/front.svg",
  36827. extra: 354/343,
  36828. bottom: 9/363
  36829. }
  36830. },
  36831. back: {
  36832. height: math.unit(12 + 6/12, "feet"),
  36833. name: "Back",
  36834. image: {
  36835. source: "./media/characters/kass-lockheed/back.svg",
  36836. extra: 364/352,
  36837. bottom: 3/367
  36838. }
  36839. },
  36840. dick: {
  36841. height: math.unit(3.12, "feet"),
  36842. name: "Dick",
  36843. image: {
  36844. source: "./media/characters/kass-lockheed/dick.svg"
  36845. }
  36846. },
  36847. head: {
  36848. height: math.unit(2.6, "feet"),
  36849. name: "Head",
  36850. image: {
  36851. source: "./media/characters/kass-lockheed/head.svg"
  36852. }
  36853. },
  36854. bleh: {
  36855. height: math.unit(2.85, "feet"),
  36856. name: "Bleh",
  36857. image: {
  36858. source: "./media/characters/kass-lockheed/bleh.svg"
  36859. }
  36860. },
  36861. smug: {
  36862. height: math.unit(2.85, "feet"),
  36863. name: "Smug",
  36864. image: {
  36865. source: "./media/characters/kass-lockheed/smug.svg"
  36866. }
  36867. },
  36868. },
  36869. [
  36870. {
  36871. name: "Normal",
  36872. height: math.unit(12 + 6/12, "feet"),
  36873. default: true
  36874. },
  36875. ]
  36876. ))
  36877. characterMakers.push(() => makeCharacter(
  36878. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36879. {
  36880. front: {
  36881. height: math.unit(6 + 2/12, "feet"),
  36882. name: "Front",
  36883. image: {
  36884. source: "./media/characters/taylor/front.svg",
  36885. extra: 639/495,
  36886. bottom: 12/651
  36887. }
  36888. },
  36889. },
  36890. [
  36891. {
  36892. name: "Normal",
  36893. height: math.unit(6 + 2/12, "feet"),
  36894. default: true
  36895. },
  36896. {
  36897. name: "Big",
  36898. height: math.unit(15, "feet")
  36899. },
  36900. {
  36901. name: "Lorg",
  36902. height: math.unit(80, "feet")
  36903. },
  36904. {
  36905. name: "Too Lorg",
  36906. height: math.unit(120, "feet")
  36907. },
  36908. ]
  36909. ))
  36910. characterMakers.push(() => makeCharacter(
  36911. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36912. {
  36913. front: {
  36914. height: math.unit(15, "feet"),
  36915. name: "Front",
  36916. image: {
  36917. source: "./media/characters/kaizer/front.svg",
  36918. extra: 1612/1436,
  36919. bottom: 43/1655
  36920. }
  36921. },
  36922. },
  36923. [
  36924. {
  36925. name: "Normal",
  36926. height: math.unit(15, "feet"),
  36927. default: true
  36928. },
  36929. ]
  36930. ))
  36931. characterMakers.push(() => makeCharacter(
  36932. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36933. {
  36934. front: {
  36935. height: math.unit(2, "feet"),
  36936. weight: math.unit(30, "lb"),
  36937. name: "Front",
  36938. image: {
  36939. source: "./media/characters/sandy/front.svg",
  36940. extra: 1439/1307,
  36941. bottom: 194/1633
  36942. }
  36943. },
  36944. },
  36945. [
  36946. {
  36947. name: "Normal",
  36948. height: math.unit(2, "feet"),
  36949. default: true
  36950. },
  36951. ]
  36952. ))
  36953. characterMakers.push(() => makeCharacter(
  36954. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36955. {
  36956. front: {
  36957. height: math.unit(3, "feet"),
  36958. name: "Front",
  36959. image: {
  36960. source: "./media/characters/mellvi/front.svg",
  36961. extra: 1831/1630,
  36962. bottom: 58/1889
  36963. }
  36964. },
  36965. },
  36966. [
  36967. {
  36968. name: "Normal",
  36969. height: math.unit(3, "feet"),
  36970. default: true
  36971. },
  36972. ]
  36973. ))
  36974. characterMakers.push(() => makeCharacter(
  36975. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36976. {
  36977. front: {
  36978. height: math.unit(5 + 11/12, "feet"),
  36979. weight: math.unit(200, "lb"),
  36980. name: "Front",
  36981. image: {
  36982. source: "./media/characters/shirou/front.svg",
  36983. extra: 2491/2383,
  36984. bottom: 189/2680
  36985. }
  36986. },
  36987. back: {
  36988. height: math.unit(5 + 11/12, "feet"),
  36989. weight: math.unit(200, "lb"),
  36990. name: "Back",
  36991. image: {
  36992. source: "./media/characters/shirou/back.svg",
  36993. extra: 2554/2450,
  36994. bottom: 76/2630
  36995. }
  36996. },
  36997. },
  36998. [
  36999. {
  37000. name: "Normal",
  37001. height: math.unit(5 + 11/12, "feet"),
  37002. default: true
  37003. },
  37004. ]
  37005. ))
  37006. characterMakers.push(() => makeCharacter(
  37007. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37008. {
  37009. front: {
  37010. height: math.unit(6 + 3/12, "feet"),
  37011. weight: math.unit(177, "lb"),
  37012. name: "Front",
  37013. image: {
  37014. source: "./media/characters/noryu/front.svg",
  37015. extra: 973/885,
  37016. bottom: 10/983
  37017. }
  37018. },
  37019. },
  37020. [
  37021. {
  37022. name: "Normal",
  37023. height: math.unit(6 + 3/12, "feet"),
  37024. default: true
  37025. },
  37026. ]
  37027. ))
  37028. characterMakers.push(() => makeCharacter(
  37029. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37030. {
  37031. front: {
  37032. height: math.unit(5 + 6/12, "feet"),
  37033. weight: math.unit(170, "lb"),
  37034. name: "Front",
  37035. image: {
  37036. source: "./media/characters/mevolas-rubenido/front.svg",
  37037. extra: 2109/1901,
  37038. bottom: 96/2205
  37039. }
  37040. },
  37041. },
  37042. [
  37043. {
  37044. name: "Normal",
  37045. height: math.unit(5 + 6/12, "feet"),
  37046. default: true
  37047. },
  37048. ]
  37049. ))
  37050. characterMakers.push(() => makeCharacter(
  37051. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37052. {
  37053. front: {
  37054. height: math.unit(100, "feet"),
  37055. name: "Front",
  37056. image: {
  37057. source: "./media/characters/dee/front.svg",
  37058. extra: 2153/2036,
  37059. bottom: 59/2212
  37060. }
  37061. },
  37062. back: {
  37063. height: math.unit(100, "feet"),
  37064. name: "Back",
  37065. image: {
  37066. source: "./media/characters/dee/back.svg",
  37067. extra: 2183/2058,
  37068. bottom: 75/2258
  37069. }
  37070. },
  37071. foot: {
  37072. height: math.unit(19.43, "feet"),
  37073. name: "Foot",
  37074. image: {
  37075. source: "./media/characters/dee/foot.svg"
  37076. }
  37077. },
  37078. hoof: {
  37079. height: math.unit(20.6, "feet"),
  37080. name: "Hoof",
  37081. image: {
  37082. source: "./media/characters/dee/hoof.svg"
  37083. }
  37084. },
  37085. },
  37086. [
  37087. {
  37088. name: "Macro",
  37089. height: math.unit(100, "feet"),
  37090. default: true
  37091. },
  37092. ]
  37093. ))
  37094. characterMakers.push(() => makeCharacter(
  37095. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37096. {
  37097. front: {
  37098. height: math.unit(5 + 6/12, "feet"),
  37099. name: "Front",
  37100. image: {
  37101. source: "./media/characters/teh/front.svg",
  37102. extra: 1002/847,
  37103. bottom: 62/1064
  37104. }
  37105. },
  37106. },
  37107. [
  37108. {
  37109. name: "Normal",
  37110. height: math.unit(5 + 6/12, "feet"),
  37111. default: true
  37112. },
  37113. ]
  37114. ))
  37115. characterMakers.push(() => makeCharacter(
  37116. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37117. {
  37118. side: {
  37119. height: math.unit(6 + 1/12, "feet"),
  37120. weight: math.unit(204, "lb"),
  37121. name: "Side",
  37122. image: {
  37123. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37124. extra: 974/775,
  37125. bottom: 169/1143
  37126. }
  37127. },
  37128. sitting: {
  37129. height: math.unit(6 + 2/12, "feet"),
  37130. weight: math.unit(204, "lb"),
  37131. name: "Sitting",
  37132. image: {
  37133. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37134. extra: 1175/964,
  37135. bottom: 378/1553
  37136. }
  37137. },
  37138. },
  37139. [
  37140. {
  37141. name: "Normal",
  37142. height: math.unit(6 + 1/12, "feet"),
  37143. default: true
  37144. },
  37145. ]
  37146. ))
  37147. characterMakers.push(() => makeCharacter(
  37148. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37149. {
  37150. front: {
  37151. height: math.unit(6, "inches"),
  37152. name: "Front",
  37153. image: {
  37154. source: "./media/characters/tululi/front.svg",
  37155. extra: 1997/1876,
  37156. bottom: 20/2017
  37157. }
  37158. },
  37159. },
  37160. [
  37161. {
  37162. name: "Normal",
  37163. height: math.unit(6, "inches"),
  37164. default: true
  37165. },
  37166. ]
  37167. ))
  37168. characterMakers.push(() => makeCharacter(
  37169. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37170. {
  37171. front: {
  37172. height: math.unit(4 + 1/12, "feet"),
  37173. name: "Front",
  37174. image: {
  37175. source: "./media/characters/star/front.svg",
  37176. extra: 1493/1189,
  37177. bottom: 48/1541
  37178. }
  37179. },
  37180. },
  37181. [
  37182. {
  37183. name: "Normal",
  37184. height: math.unit(4 + 1/12, "feet"),
  37185. default: true
  37186. },
  37187. ]
  37188. ))
  37189. characterMakers.push(() => makeCharacter(
  37190. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37191. {
  37192. front: {
  37193. height: math.unit(6 + 3/12, "feet"),
  37194. name: "Front",
  37195. image: {
  37196. source: "./media/characters/comet/front.svg",
  37197. extra: 1681/1462,
  37198. bottom: 26/1707
  37199. }
  37200. },
  37201. },
  37202. [
  37203. {
  37204. name: "Normal",
  37205. height: math.unit(6 + 3/12, "feet"),
  37206. default: true
  37207. },
  37208. ]
  37209. ))
  37210. characterMakers.push(() => makeCharacter(
  37211. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37212. {
  37213. front: {
  37214. height: math.unit(950, "feet"),
  37215. name: "Front",
  37216. image: {
  37217. source: "./media/characters/vortex/front.svg",
  37218. extra: 1497/1434,
  37219. bottom: 56/1553
  37220. }
  37221. },
  37222. maw: {
  37223. height: math.unit(285, "feet"),
  37224. name: "Maw",
  37225. image: {
  37226. source: "./media/characters/vortex/maw.svg"
  37227. }
  37228. },
  37229. },
  37230. [
  37231. {
  37232. name: "Macro",
  37233. height: math.unit(950, "feet"),
  37234. default: true
  37235. },
  37236. ]
  37237. ))
  37238. characterMakers.push(() => makeCharacter(
  37239. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37240. {
  37241. front: {
  37242. height: math.unit(600, "feet"),
  37243. weight: math.unit(0.02, "grams"),
  37244. name: "Front",
  37245. image: {
  37246. source: "./media/characters/doodle/front.svg",
  37247. extra: 1578/1413,
  37248. bottom: 37/1615
  37249. }
  37250. },
  37251. },
  37252. [
  37253. {
  37254. name: "Macro",
  37255. height: math.unit(600, "feet"),
  37256. default: true
  37257. },
  37258. ]
  37259. ))
  37260. characterMakers.push(() => makeCharacter(
  37261. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37262. {
  37263. front: {
  37264. height: math.unit(6 + 6/12, "feet"),
  37265. name: "Front",
  37266. image: {
  37267. source: "./media/characters/jai/front.svg",
  37268. extra: 1645/1534,
  37269. bottom: 115/1760
  37270. }
  37271. },
  37272. },
  37273. [
  37274. {
  37275. name: "Normal",
  37276. height: math.unit(6 + 6/12, "feet"),
  37277. default: true
  37278. },
  37279. ]
  37280. ))
  37281. characterMakers.push(() => makeCharacter(
  37282. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37283. {
  37284. front: {
  37285. height: math.unit(6 + 8/12, "feet"),
  37286. name: "Front",
  37287. image: {
  37288. source: "./media/characters/pixel/front.svg",
  37289. extra: 1900/1735,
  37290. bottom: 63/1963
  37291. }
  37292. },
  37293. },
  37294. [
  37295. {
  37296. name: "Normal",
  37297. height: math.unit(6 + 8/12, "feet"),
  37298. default: true
  37299. },
  37300. ]
  37301. ))
  37302. characterMakers.push(() => makeCharacter(
  37303. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37304. {
  37305. back: {
  37306. height: math.unit(4 + 1/12, "feet"),
  37307. weight: math.unit(75, "lb"),
  37308. name: "Back",
  37309. image: {
  37310. source: "./media/characters/rhett/back.svg",
  37311. extra: 930/878,
  37312. bottom: 25/955
  37313. }
  37314. },
  37315. front: {
  37316. height: math.unit(4 + 1/12, "feet"),
  37317. weight: math.unit(75, "lb"),
  37318. name: "Front",
  37319. image: {
  37320. source: "./media/characters/rhett/front.svg",
  37321. extra: 1682/1586,
  37322. bottom: 92/1774
  37323. }
  37324. },
  37325. },
  37326. [
  37327. {
  37328. name: "Micro",
  37329. height: math.unit(8, "inches")
  37330. },
  37331. {
  37332. name: "Tiny",
  37333. height: math.unit(2, "feet")
  37334. },
  37335. {
  37336. name: "Normal",
  37337. height: math.unit(4 + 1/12, "feet"),
  37338. default: true
  37339. },
  37340. ]
  37341. ))
  37342. characterMakers.push(() => makeCharacter(
  37343. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37344. {
  37345. front: {
  37346. height: math.unit(3 + 3/12, "feet"),
  37347. name: "Front",
  37348. image: {
  37349. source: "./media/characters/penny/front.svg",
  37350. extra: 1406/1311,
  37351. bottom: 26/1432
  37352. }
  37353. },
  37354. },
  37355. [
  37356. {
  37357. name: "Normal",
  37358. height: math.unit(3 + 3/12, "feet"),
  37359. default: true
  37360. },
  37361. ]
  37362. ))
  37363. characterMakers.push(() => makeCharacter(
  37364. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37365. {
  37366. front: {
  37367. height: math.unit(4 + 11/12, "feet"),
  37368. name: "Front",
  37369. image: {
  37370. source: "./media/characters/monty/front.svg",
  37371. extra: 1479/1209,
  37372. bottom: 0/1479
  37373. }
  37374. },
  37375. },
  37376. [
  37377. {
  37378. name: "Normal",
  37379. height: math.unit(4 + 11/12, "feet"),
  37380. default: true
  37381. },
  37382. ]
  37383. ))
  37384. characterMakers.push(() => makeCharacter(
  37385. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37386. {
  37387. front: {
  37388. height: math.unit(8 + 4/12, "feet"),
  37389. name: "Front",
  37390. image: {
  37391. source: "./media/characters/sterling/front.svg",
  37392. extra: 1420/1236,
  37393. bottom: 27/1447
  37394. }
  37395. },
  37396. },
  37397. [
  37398. {
  37399. name: "Normal",
  37400. height: math.unit(8 + 4/12, "feet"),
  37401. default: true
  37402. },
  37403. ]
  37404. ))
  37405. characterMakers.push(() => makeCharacter(
  37406. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37407. {
  37408. front: {
  37409. height: math.unit(15, "feet"),
  37410. name: "Front",
  37411. image: {
  37412. source: "./media/characters/marble/front.svg",
  37413. extra: 973/937,
  37414. bottom: 32/1005
  37415. }
  37416. },
  37417. },
  37418. [
  37419. {
  37420. name: "Normal",
  37421. height: math.unit(15, "feet"),
  37422. default: true
  37423. },
  37424. ]
  37425. ))
  37426. characterMakers.push(() => makeCharacter(
  37427. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37428. {
  37429. front: {
  37430. height: math.unit(3, "inches"),
  37431. name: "Front",
  37432. image: {
  37433. source: "./media/characters/powder/front.svg",
  37434. extra: 1504/1334,
  37435. bottom: 518/2022
  37436. }
  37437. },
  37438. },
  37439. [
  37440. {
  37441. name: "Normal",
  37442. height: math.unit(3, "inches"),
  37443. default: true
  37444. },
  37445. ]
  37446. ))
  37447. characterMakers.push(() => makeCharacter(
  37448. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37449. {
  37450. front: {
  37451. height: math.unit(4 + 5/12, "feet"),
  37452. name: "Front",
  37453. image: {
  37454. source: "./media/characters/joey-raccoon/front.svg",
  37455. extra: 1273/1197,
  37456. bottom: 0/1273
  37457. }
  37458. },
  37459. },
  37460. [
  37461. {
  37462. name: "Normal",
  37463. height: math.unit(4 + 5/12, "feet"),
  37464. default: true
  37465. },
  37466. ]
  37467. ))
  37468. characterMakers.push(() => makeCharacter(
  37469. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37470. {
  37471. front: {
  37472. height: math.unit(8 + 4/12, "feet"),
  37473. name: "Front",
  37474. image: {
  37475. source: "./media/characters/vick/front.svg",
  37476. extra: 2187/2118,
  37477. bottom: 47/2234
  37478. }
  37479. },
  37480. },
  37481. [
  37482. {
  37483. name: "Normal",
  37484. height: math.unit(8 + 4/12, "feet"),
  37485. default: true
  37486. },
  37487. ]
  37488. ))
  37489. characterMakers.push(() => makeCharacter(
  37490. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37491. {
  37492. front: {
  37493. height: math.unit(5 + 5/12, "feet"),
  37494. name: "Front",
  37495. image: {
  37496. source: "./media/characters/mitsy/front.svg",
  37497. extra: 1842/1695,
  37498. bottom: 0/1842
  37499. }
  37500. },
  37501. },
  37502. [
  37503. {
  37504. name: "Normal",
  37505. height: math.unit(5 + 5/12, "feet"),
  37506. default: true
  37507. },
  37508. ]
  37509. ))
  37510. characterMakers.push(() => makeCharacter(
  37511. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37512. {
  37513. front: {
  37514. height: math.unit(6 + 3/12, "feet"),
  37515. name: "Front",
  37516. image: {
  37517. source: "./media/characters/silvy/front.svg",
  37518. extra: 1995/1836,
  37519. bottom: 225/2220
  37520. }
  37521. },
  37522. },
  37523. [
  37524. {
  37525. name: "Normal",
  37526. height: math.unit(6 + 3/12, "feet"),
  37527. default: true
  37528. },
  37529. ]
  37530. ))
  37531. characterMakers.push(() => makeCharacter(
  37532. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37533. {
  37534. front: {
  37535. height: math.unit(3 + 8/12, "feet"),
  37536. name: "Front",
  37537. image: {
  37538. source: "./media/characters/rodney/front.svg",
  37539. extra: 1956/1747,
  37540. bottom: 31/1987
  37541. }
  37542. },
  37543. frontDressed: {
  37544. height: math.unit(2.9, "feet"),
  37545. name: "Front (Dressed)",
  37546. image: {
  37547. source: "./media/characters/rodney/front-dressed.svg",
  37548. extra: 1382/1241,
  37549. bottom: 385/1767
  37550. }
  37551. },
  37552. },
  37553. [
  37554. {
  37555. name: "Normal",
  37556. height: math.unit(3 + 8/12, "feet"),
  37557. default: true
  37558. },
  37559. ]
  37560. ))
  37561. characterMakers.push(() => makeCharacter(
  37562. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37563. {
  37564. front: {
  37565. height: math.unit(5 + 9/12, "feet"),
  37566. weight: math.unit(194, "lbs"),
  37567. name: "Front",
  37568. image: {
  37569. source: "./media/characters/zakail-sudekai/front.svg",
  37570. extra: 2696/2533,
  37571. bottom: 248/2944
  37572. }
  37573. },
  37574. maw: {
  37575. height: math.unit(1.35, "feet"),
  37576. name: "Maw",
  37577. image: {
  37578. source: "./media/characters/zakail-sudekai/maw.svg"
  37579. }
  37580. },
  37581. },
  37582. [
  37583. {
  37584. name: "Normal",
  37585. height: math.unit(5 + 9/12, "feet"),
  37586. default: true
  37587. },
  37588. ]
  37589. ))
  37590. characterMakers.push(() => makeCharacter(
  37591. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37592. {
  37593. front: {
  37594. height: math.unit(8 + 4/12, "feet"),
  37595. weight: math.unit(1200, "lb"),
  37596. name: "Front",
  37597. image: {
  37598. source: "./media/characters/eleanor/front.svg",
  37599. extra: 1226/1192,
  37600. bottom: 52/1278
  37601. }
  37602. },
  37603. back: {
  37604. height: math.unit(8 + 4/12, "feet"),
  37605. weight: math.unit(1200, "lb"),
  37606. name: "Back",
  37607. image: {
  37608. source: "./media/characters/eleanor/back.svg",
  37609. extra: 1242/1184,
  37610. bottom: 60/1302
  37611. }
  37612. },
  37613. head: {
  37614. height: math.unit(2.62, "feet"),
  37615. name: "Head",
  37616. image: {
  37617. source: "./media/characters/eleanor/head.svg"
  37618. }
  37619. },
  37620. },
  37621. [
  37622. {
  37623. name: "Normal",
  37624. height: math.unit(8 + 4/12, "feet"),
  37625. default: true
  37626. },
  37627. ]
  37628. ))
  37629. characterMakers.push(() => makeCharacter(
  37630. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37631. {
  37632. front: {
  37633. height: math.unit(8 + 4/12, "feet"),
  37634. weight: math.unit(750, "lb"),
  37635. name: "Front",
  37636. image: {
  37637. source: "./media/characters/tanya/front.svg",
  37638. extra: 1749/1615,
  37639. bottom: 33/1782
  37640. }
  37641. },
  37642. },
  37643. [
  37644. {
  37645. name: "Normal",
  37646. height: math.unit(8 + 4/12, "feet"),
  37647. default: true
  37648. },
  37649. ]
  37650. ))
  37651. characterMakers.push(() => makeCharacter(
  37652. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37653. {
  37654. front: {
  37655. height: math.unit(5, "feet"),
  37656. weight: math.unit(225, "lb"),
  37657. name: "Front",
  37658. image: {
  37659. source: "./media/characters/cindy/front.svg",
  37660. extra: 1320/1250,
  37661. bottom: 42/1362
  37662. }
  37663. },
  37664. frontDressed: {
  37665. height: math.unit(5, "feet"),
  37666. weight: math.unit(225, "lb"),
  37667. name: "Front (Dressed)",
  37668. image: {
  37669. source: "./media/characters/cindy/front-dressed.svg",
  37670. extra: 1320/1250,
  37671. bottom: 42/1362
  37672. }
  37673. },
  37674. back: {
  37675. height: math.unit(5, "feet"),
  37676. weight: math.unit(225, "lb"),
  37677. name: "Back",
  37678. image: {
  37679. source: "./media/characters/cindy/back.svg",
  37680. extra: 1384/1346,
  37681. bottom: 14/1398
  37682. }
  37683. },
  37684. },
  37685. [
  37686. {
  37687. name: "Normal",
  37688. height: math.unit(5, "feet"),
  37689. default: true
  37690. },
  37691. ]
  37692. ))
  37693. characterMakers.push(() => makeCharacter(
  37694. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37695. {
  37696. front: {
  37697. height: math.unit(6 + 9/12, "feet"),
  37698. weight: math.unit(440, "lb"),
  37699. name: "Front",
  37700. image: {
  37701. source: "./media/characters/wilbur-owen/front.svg",
  37702. extra: 1575/1448,
  37703. bottom: 72/1647
  37704. }
  37705. },
  37706. back: {
  37707. height: math.unit(6 + 9/12, "feet"),
  37708. weight: math.unit(440, "lb"),
  37709. name: "Back",
  37710. image: {
  37711. source: "./media/characters/wilbur-owen/back.svg",
  37712. extra: 1578/1445,
  37713. bottom: 36/1614
  37714. }
  37715. },
  37716. },
  37717. [
  37718. {
  37719. name: "Normal",
  37720. height: math.unit(6 + 9/12, "feet"),
  37721. default: true
  37722. },
  37723. ]
  37724. ))
  37725. characterMakers.push(() => makeCharacter(
  37726. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37727. {
  37728. front: {
  37729. height: math.unit(6 + 5/12, "feet"),
  37730. weight: math.unit(650, "lb"),
  37731. name: "Front",
  37732. image: {
  37733. source: "./media/characters/keegan/front.svg",
  37734. extra: 2387/2198,
  37735. bottom: 33/2420
  37736. }
  37737. },
  37738. side: {
  37739. height: math.unit(6 + 5/12, "feet"),
  37740. weight: math.unit(650, "lb"),
  37741. name: "Side",
  37742. image: {
  37743. source: "./media/characters/keegan/side.svg",
  37744. extra: 2390/2202,
  37745. bottom: 47/2437
  37746. }
  37747. },
  37748. back: {
  37749. height: math.unit(6 + 5/12, "feet"),
  37750. weight: math.unit(650, "lb"),
  37751. name: "Back",
  37752. image: {
  37753. source: "./media/characters/keegan/back.svg",
  37754. extra: 2418/2268,
  37755. bottom: 15/2433
  37756. }
  37757. },
  37758. frontSfw: {
  37759. height: math.unit(6 + 5/12, "feet"),
  37760. weight: math.unit(650, "lb"),
  37761. name: "Front (SFW)",
  37762. image: {
  37763. source: "./media/characters/keegan/front-sfw.svg",
  37764. extra: 2387/2198,
  37765. bottom: 33/2420
  37766. }
  37767. },
  37768. beans: {
  37769. height: math.unit(1.85, "feet"),
  37770. name: "Beans",
  37771. image: {
  37772. source: "./media/characters/keegan/beans.svg"
  37773. }
  37774. },
  37775. },
  37776. [
  37777. {
  37778. name: "Normal",
  37779. height: math.unit(6 + 5/12, "feet"),
  37780. default: true
  37781. },
  37782. ]
  37783. ))
  37784. characterMakers.push(() => makeCharacter(
  37785. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37786. {
  37787. front: {
  37788. height: math.unit(9, "feet"),
  37789. name: "Front",
  37790. image: {
  37791. source: "./media/characters/colton/front.svg",
  37792. extra: 1589/1326,
  37793. bottom: 139/1728
  37794. }
  37795. },
  37796. },
  37797. [
  37798. {
  37799. name: "Normal",
  37800. height: math.unit(9, "feet"),
  37801. default: true
  37802. },
  37803. ]
  37804. ))
  37805. characterMakers.push(() => makeCharacter(
  37806. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37807. {
  37808. front: {
  37809. height: math.unit(2 + 9/12, "feet"),
  37810. name: "Front",
  37811. image: {
  37812. source: "./media/characters/bora/front.svg",
  37813. extra: 1265/1250,
  37814. bottom: 24/1289
  37815. }
  37816. },
  37817. },
  37818. [
  37819. {
  37820. name: "Normal",
  37821. height: math.unit(2 + 9/12, "feet"),
  37822. default: true
  37823. },
  37824. ]
  37825. ))
  37826. characterMakers.push(() => makeCharacter(
  37827. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37828. {
  37829. front: {
  37830. height: math.unit(8, "feet"),
  37831. name: "Front",
  37832. image: {
  37833. source: "./media/characters/myu-myu/front.svg",
  37834. extra: 1949/1857,
  37835. bottom: 90/2039
  37836. }
  37837. },
  37838. },
  37839. [
  37840. {
  37841. name: "Normal",
  37842. height: math.unit(8, "feet"),
  37843. default: true
  37844. },
  37845. {
  37846. name: "Big",
  37847. height: math.unit(15, "feet")
  37848. },
  37849. {
  37850. name: "BIG",
  37851. height: math.unit(25, "feet")
  37852. },
  37853. ]
  37854. ))
  37855. characterMakers.push(() => makeCharacter(
  37856. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37857. {
  37858. side: {
  37859. height: math.unit(7 + 5/12, "feet"),
  37860. weight: math.unit(2800, "lb"),
  37861. name: "Side",
  37862. image: {
  37863. source: "./media/characters/haloren/side.svg",
  37864. extra: 1793/409,
  37865. bottom: 59/1852
  37866. }
  37867. },
  37868. frontPaw: {
  37869. height: math.unit(2.36, "feet"),
  37870. name: "Front paw",
  37871. image: {
  37872. source: "./media/characters/haloren/front-paw.svg"
  37873. }
  37874. },
  37875. hindPaw: {
  37876. height: math.unit(3.18, "feet"),
  37877. name: "Hind paw",
  37878. image: {
  37879. source: "./media/characters/haloren/hind-paw.svg"
  37880. }
  37881. },
  37882. maw: {
  37883. height: math.unit(5.05, "feet"),
  37884. name: "Maw",
  37885. image: {
  37886. source: "./media/characters/haloren/maw.svg"
  37887. }
  37888. },
  37889. dick: {
  37890. height: math.unit(2.90, "feet"),
  37891. name: "Dick",
  37892. image: {
  37893. source: "./media/characters/haloren/dick.svg"
  37894. }
  37895. },
  37896. },
  37897. [
  37898. {
  37899. name: "Normal",
  37900. height: math.unit(7 + 5/12, "feet"),
  37901. default: true
  37902. },
  37903. {
  37904. name: "Enhanced",
  37905. height: math.unit(14 + 3/12, "feet")
  37906. },
  37907. ]
  37908. ))
  37909. characterMakers.push(() => makeCharacter(
  37910. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37911. {
  37912. front: {
  37913. height: math.unit(171, "cm"),
  37914. name: "Front",
  37915. image: {
  37916. source: "./media/characters/kimmy/front.svg",
  37917. extra: 1491/1435,
  37918. bottom: 53/1544
  37919. }
  37920. },
  37921. },
  37922. [
  37923. {
  37924. name: "Small",
  37925. height: math.unit(9, "cm")
  37926. },
  37927. {
  37928. name: "Normal",
  37929. height: math.unit(171, "cm"),
  37930. default: true
  37931. },
  37932. ]
  37933. ))
  37934. characterMakers.push(() => makeCharacter(
  37935. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37936. {
  37937. front: {
  37938. height: math.unit(8, "feet"),
  37939. weight: math.unit(300, "lb"),
  37940. name: "Front",
  37941. image: {
  37942. source: "./media/characters/galeboomer/front.svg",
  37943. extra: 4651/4415,
  37944. bottom: 162/4813
  37945. }
  37946. },
  37947. back: {
  37948. height: math.unit(8, "feet"),
  37949. weight: math.unit(300, "lb"),
  37950. name: "Back",
  37951. image: {
  37952. source: "./media/characters/galeboomer/back.svg",
  37953. extra: 4544/4314,
  37954. bottom: 16/4560
  37955. }
  37956. },
  37957. frontAlt: {
  37958. height: math.unit(8, "feet"),
  37959. weight: math.unit(300, "lb"),
  37960. name: "Front (Alt)",
  37961. image: {
  37962. source: "./media/characters/galeboomer/front-alt.svg",
  37963. extra: 4458/4228,
  37964. bottom: 68/4526
  37965. }
  37966. },
  37967. maw: {
  37968. height: math.unit(1.2, "feet"),
  37969. name: "Maw",
  37970. image: {
  37971. source: "./media/characters/galeboomer/maw.svg"
  37972. }
  37973. },
  37974. },
  37975. [
  37976. {
  37977. name: "Normal",
  37978. height: math.unit(8, "feet"),
  37979. default: true
  37980. },
  37981. ]
  37982. ))
  37983. characterMakers.push(() => makeCharacter(
  37984. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37985. {
  37986. front: {
  37987. height: math.unit(5 + 9/12, "feet"),
  37988. weight: math.unit(120, "lb"),
  37989. name: "Front",
  37990. image: {
  37991. source: "./media/characters/chyr/front.svg",
  37992. extra: 1323/1254,
  37993. bottom: 63/1386
  37994. }
  37995. },
  37996. back: {
  37997. height: math.unit(5 + 9/12, "feet"),
  37998. weight: math.unit(120, "lb"),
  37999. name: "Back",
  38000. image: {
  38001. source: "./media/characters/chyr/back.svg",
  38002. extra: 1323/1252,
  38003. bottom: 48/1371
  38004. }
  38005. },
  38006. },
  38007. [
  38008. {
  38009. name: "Normal",
  38010. height: math.unit(5 + 9/12, "feet"),
  38011. default: true
  38012. },
  38013. ]
  38014. ))
  38015. characterMakers.push(() => makeCharacter(
  38016. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38017. {
  38018. front: {
  38019. height: math.unit(7, "feet"),
  38020. weight: math.unit(310, "lb"),
  38021. name: "Front",
  38022. image: {
  38023. source: "./media/characters/solarus/front.svg",
  38024. extra: 2415/2021,
  38025. bottom: 103/2518
  38026. }
  38027. },
  38028. back: {
  38029. height: math.unit(7, "feet"),
  38030. weight: math.unit(310, "lb"),
  38031. name: "Back",
  38032. image: {
  38033. source: "./media/characters/solarus/back.svg",
  38034. extra: 2463/2089,
  38035. bottom: 79/2542
  38036. }
  38037. },
  38038. },
  38039. [
  38040. {
  38041. name: "Normal",
  38042. height: math.unit(7, "feet"),
  38043. default: true
  38044. },
  38045. ]
  38046. ))
  38047. characterMakers.push(() => makeCharacter(
  38048. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38049. {
  38050. front: {
  38051. height: math.unit(16, "feet"),
  38052. name: "Front",
  38053. image: {
  38054. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38055. extra: 1844/1780,
  38056. bottom: 58/1902
  38057. }
  38058. },
  38059. winterCoat: {
  38060. height: math.unit(16, "feet"),
  38061. name: "Winter Coat",
  38062. image: {
  38063. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38064. extra: 1807/1775,
  38065. bottom: 69/1876
  38066. }
  38067. },
  38068. },
  38069. [
  38070. {
  38071. name: "Normal",
  38072. height: math.unit(16, "feet"),
  38073. default: true
  38074. },
  38075. {
  38076. name: "Chicago Size",
  38077. height: math.unit(560, "feet")
  38078. },
  38079. ]
  38080. ))
  38081. characterMakers.push(() => makeCharacter(
  38082. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38083. {
  38084. front: {
  38085. height: math.unit(11 + 6/12, "feet"),
  38086. weight: math.unit(1366, "lb"),
  38087. name: "Front",
  38088. image: {
  38089. source: "./media/characters/lexor/front.svg",
  38090. extra: 1560/1481,
  38091. bottom: 211/1771
  38092. }
  38093. },
  38094. back: {
  38095. height: math.unit(11 + 6/12, "feet"),
  38096. weight: math.unit(1366, "lb"),
  38097. name: "Back",
  38098. image: {
  38099. source: "./media/characters/lexor/back.svg",
  38100. extra: 1614/1533,
  38101. bottom: 76/1690
  38102. }
  38103. },
  38104. maw: {
  38105. height: math.unit(3, "feet"),
  38106. name: "Maw",
  38107. image: {
  38108. source: "./media/characters/lexor/maw.svg"
  38109. }
  38110. },
  38111. dick: {
  38112. height: math.unit(2.59, "feet"),
  38113. name: "Dick",
  38114. image: {
  38115. source: "./media/characters/lexor/dick.svg"
  38116. }
  38117. },
  38118. },
  38119. [
  38120. {
  38121. name: "Normal",
  38122. height: math.unit(11 + 6/12, "feet"),
  38123. default: true
  38124. },
  38125. ]
  38126. ))
  38127. characterMakers.push(() => makeCharacter(
  38128. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38129. {
  38130. front: {
  38131. height: math.unit(5 + 8/12, "feet"),
  38132. name: "Front",
  38133. image: {
  38134. source: "./media/characters/magnum/front.svg",
  38135. extra: 942/855,
  38136. bottom: 26/968
  38137. }
  38138. },
  38139. },
  38140. [
  38141. {
  38142. name: "Normal",
  38143. height: math.unit(5 + 8/12, "feet"),
  38144. default: true
  38145. },
  38146. ]
  38147. ))
  38148. characterMakers.push(() => makeCharacter(
  38149. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38150. {
  38151. front: {
  38152. height: math.unit(18 + 4/12, "feet"),
  38153. weight: math.unit(1500, "kg"),
  38154. name: "Front",
  38155. image: {
  38156. source: "./media/characters/solas-sharpsman/front.svg",
  38157. extra: 1698/1589,
  38158. bottom: 0/1698
  38159. }
  38160. },
  38161. },
  38162. [
  38163. {
  38164. name: "Normal",
  38165. height: math.unit(18 + 4/12, "feet"),
  38166. default: true
  38167. },
  38168. ]
  38169. ))
  38170. characterMakers.push(() => makeCharacter(
  38171. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38172. {
  38173. front: {
  38174. height: math.unit(5 + 5/12, "feet"),
  38175. weight: math.unit(180, "lb"),
  38176. name: "Front",
  38177. image: {
  38178. source: "./media/characters/october/front.svg",
  38179. extra: 1800/1650,
  38180. bottom: 0/1800
  38181. }
  38182. },
  38183. frontNsfw: {
  38184. height: math.unit(5 + 5/12, "feet"),
  38185. weight: math.unit(180, "lb"),
  38186. name: "Front (NSFW)",
  38187. image: {
  38188. source: "./media/characters/october/front-nsfw.svg",
  38189. extra: 1392/1307,
  38190. bottom: 42/1434
  38191. }
  38192. },
  38193. },
  38194. [
  38195. {
  38196. name: "Normal",
  38197. height: math.unit(5 + 5/12, "feet"),
  38198. default: true
  38199. },
  38200. ]
  38201. ))
  38202. characterMakers.push(() => makeCharacter(
  38203. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38204. {
  38205. front: {
  38206. height: math.unit(8 + 6/12, "feet"),
  38207. name: "Front",
  38208. image: {
  38209. source: "./media/characters/essynkardi/front.svg",
  38210. extra: 1914/1846,
  38211. bottom: 22/1936
  38212. }
  38213. },
  38214. },
  38215. [
  38216. {
  38217. name: "Normal",
  38218. height: math.unit(8 + 6/12, "feet"),
  38219. default: true
  38220. },
  38221. ]
  38222. ))
  38223. characterMakers.push(() => makeCharacter(
  38224. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38225. {
  38226. front: {
  38227. height: math.unit(6 + 6/12, "feet"),
  38228. weight: math.unit(7, "lb"),
  38229. name: "Front",
  38230. image: {
  38231. source: "./media/characters/icky/front.svg",
  38232. extra: 813/782,
  38233. bottom: 66/879
  38234. }
  38235. },
  38236. back: {
  38237. height: math.unit(6 + 6/12, "feet"),
  38238. weight: math.unit(7, "lb"),
  38239. name: "Back",
  38240. image: {
  38241. source: "./media/characters/icky/back.svg",
  38242. extra: 754/735,
  38243. bottom: 56/810
  38244. }
  38245. },
  38246. },
  38247. [
  38248. {
  38249. name: "Normal",
  38250. height: math.unit(6 + 6/12, "feet"),
  38251. default: true
  38252. },
  38253. ]
  38254. ))
  38255. characterMakers.push(() => makeCharacter(
  38256. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38257. {
  38258. front: {
  38259. height: math.unit(15, "feet"),
  38260. name: "Front",
  38261. image: {
  38262. source: "./media/characters/rojas/front.svg",
  38263. extra: 1462/1408,
  38264. bottom: 95/1557
  38265. }
  38266. },
  38267. back: {
  38268. height: math.unit(15, "feet"),
  38269. name: "Back",
  38270. image: {
  38271. source: "./media/characters/rojas/back.svg",
  38272. extra: 1023/954,
  38273. bottom: 28/1051
  38274. }
  38275. },
  38276. },
  38277. [
  38278. {
  38279. name: "Normal",
  38280. height: math.unit(15, "feet"),
  38281. default: true
  38282. },
  38283. ]
  38284. ))
  38285. characterMakers.push(() => makeCharacter(
  38286. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38287. {
  38288. frontHuman: {
  38289. height: math.unit(5 + 7/12, "feet"),
  38290. name: "Front (Human)",
  38291. image: {
  38292. source: "./media/characters/alek-dryagan/front-human.svg",
  38293. extra: 1687/1667,
  38294. bottom: 69/1756
  38295. }
  38296. },
  38297. backHuman: {
  38298. height: math.unit(5 + 7/12, "feet"),
  38299. name: "Back (Human)",
  38300. image: {
  38301. source: "./media/characters/alek-dryagan/back-human.svg",
  38302. extra: 1670/1649,
  38303. bottom: 65/1735
  38304. }
  38305. },
  38306. frontDemi: {
  38307. height: math.unit(65, "feet"),
  38308. name: "Front (Demi)",
  38309. image: {
  38310. source: "./media/characters/alek-dryagan/front-demi.svg",
  38311. extra: 1669/1642,
  38312. bottom: 49/1718
  38313. }
  38314. },
  38315. backDemi: {
  38316. height: math.unit(65, "feet"),
  38317. name: "Back (Demi)",
  38318. image: {
  38319. source: "./media/characters/alek-dryagan/back-demi.svg",
  38320. extra: 1658/1637,
  38321. bottom: 40/1698
  38322. }
  38323. },
  38324. mawHuman: {
  38325. height: math.unit(0.3, "feet"),
  38326. name: "Maw (Human)",
  38327. image: {
  38328. source: "./media/characters/alek-dryagan/maw-human.svg"
  38329. }
  38330. },
  38331. mawDemi: {
  38332. height: math.unit(3.8, "feet"),
  38333. name: "Maw (Demi)",
  38334. image: {
  38335. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38336. }
  38337. },
  38338. },
  38339. [
  38340. {
  38341. name: "Normal",
  38342. height: math.unit(5 + 7/12, "feet"),
  38343. default: true
  38344. },
  38345. ]
  38346. ))
  38347. characterMakers.push(() => makeCharacter(
  38348. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38349. {
  38350. frontHuman: {
  38351. height: math.unit(5 + 2/12, "feet"),
  38352. name: "Front (Human)",
  38353. image: {
  38354. source: "./media/characters/gen/front-human.svg",
  38355. extra: 1627/1538,
  38356. bottom: 71/1698
  38357. }
  38358. },
  38359. backHuman: {
  38360. height: math.unit(5 + 2/12, "feet"),
  38361. name: "Back (Human)",
  38362. image: {
  38363. source: "./media/characters/gen/back-human.svg",
  38364. extra: 1638/1548,
  38365. bottom: 69/1707
  38366. }
  38367. },
  38368. frontDemi: {
  38369. height: math.unit(5 + 2/12, "feet"),
  38370. name: "Front (Demi)",
  38371. image: {
  38372. source: "./media/characters/gen/front-demi.svg",
  38373. extra: 1627/1538,
  38374. bottom: 71/1698
  38375. }
  38376. },
  38377. backDemi: {
  38378. height: math.unit(5 + 2/12, "feet"),
  38379. name: "Back (Demi)",
  38380. image: {
  38381. source: "./media/characters/gen/back-demi.svg",
  38382. extra: 1638/1548,
  38383. bottom: 69/1707
  38384. }
  38385. },
  38386. },
  38387. [
  38388. {
  38389. name: "Normal",
  38390. height: math.unit(5 + 2/12, "feet"),
  38391. default: true
  38392. },
  38393. ]
  38394. ))
  38395. characterMakers.push(() => makeCharacter(
  38396. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38397. {
  38398. frontImp: {
  38399. height: math.unit(1 + 11/12, "feet"),
  38400. name: "Front (Imp)",
  38401. image: {
  38402. source: "./media/characters/max-kobold/front-imp.svg",
  38403. extra: 1238/1134,
  38404. bottom: 81/1319
  38405. }
  38406. },
  38407. backImp: {
  38408. height: math.unit(1 + 11/12, "feet"),
  38409. name: "Back (Imp)",
  38410. image: {
  38411. source: "./media/characters/max-kobold/back-imp.svg",
  38412. extra: 1334/1175,
  38413. bottom: 34/1368
  38414. }
  38415. },
  38416. frontDemi: {
  38417. height: math.unit(5 + 9/12, "feet"),
  38418. name: "Front (Demi)",
  38419. image: {
  38420. source: "./media/characters/max-kobold/front-demi.svg",
  38421. extra: 1715/1685,
  38422. bottom: 54/1769
  38423. }
  38424. },
  38425. backDemi: {
  38426. height: math.unit(5 + 9/12, "feet"),
  38427. name: "Back (Demi)",
  38428. image: {
  38429. source: "./media/characters/max-kobold/back-demi.svg",
  38430. extra: 1752/1729,
  38431. bottom: 41/1793
  38432. }
  38433. },
  38434. handImp: {
  38435. height: math.unit(0.45, "feet"),
  38436. name: "Hand (Imp)",
  38437. image: {
  38438. source: "./media/characters/max-kobold/hand.svg"
  38439. }
  38440. },
  38441. pawImp: {
  38442. height: math.unit(0.46, "feet"),
  38443. name: "Paw (Imp)",
  38444. image: {
  38445. source: "./media/characters/max-kobold/paw.svg"
  38446. }
  38447. },
  38448. handDemi: {
  38449. height: math.unit(0.80, "feet"),
  38450. name: "Hand (Demi)",
  38451. image: {
  38452. source: "./media/characters/max-kobold/hand.svg"
  38453. }
  38454. },
  38455. pawDemi: {
  38456. height: math.unit(1.1, "feet"),
  38457. name: "Paw (Demi)",
  38458. image: {
  38459. source: "./media/characters/max-kobold/paw.svg"
  38460. }
  38461. },
  38462. headImp: {
  38463. height: math.unit(1.33, "feet"),
  38464. name: "Head (Imp)",
  38465. image: {
  38466. source: "./media/characters/max-kobold/head-imp.svg"
  38467. }
  38468. },
  38469. mawImp: {
  38470. height: math.unit(0.75, "feet"),
  38471. name: "Maw (Imp)",
  38472. image: {
  38473. source: "./media/characters/max-kobold/maw-imp.svg"
  38474. }
  38475. },
  38476. mawDemi: {
  38477. height: math.unit(0.42, "feet"),
  38478. name: "Maw (Demi)",
  38479. image: {
  38480. source: "./media/characters/max-kobold/maw-demi.svg"
  38481. }
  38482. },
  38483. },
  38484. [
  38485. {
  38486. name: "Normal",
  38487. height: math.unit(1 + 11/12, "feet"),
  38488. default: true
  38489. },
  38490. ]
  38491. ))
  38492. characterMakers.push(() => makeCharacter(
  38493. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38494. {
  38495. front: {
  38496. height: math.unit(7 + 5/12, "feet"),
  38497. name: "Front",
  38498. image: {
  38499. source: "./media/characters/carbon/front.svg",
  38500. extra: 1754/1689,
  38501. bottom: 65/1819
  38502. }
  38503. },
  38504. back: {
  38505. height: math.unit(7 + 5/12, "feet"),
  38506. name: "Back",
  38507. image: {
  38508. source: "./media/characters/carbon/back.svg",
  38509. extra: 1762/1695,
  38510. bottom: 24/1786
  38511. }
  38512. },
  38513. frontGigantamax: {
  38514. height: math.unit(150, "feet"),
  38515. name: "Front (Gigantamax)",
  38516. image: {
  38517. source: "./media/characters/carbon/front-gigantamax.svg",
  38518. extra: 1826/1669,
  38519. bottom: 59/1885
  38520. }
  38521. },
  38522. backGigantamax: {
  38523. height: math.unit(150, "feet"),
  38524. name: "Back (Gigantamax)",
  38525. image: {
  38526. source: "./media/characters/carbon/back-gigantamax.svg",
  38527. extra: 1796/1653,
  38528. bottom: 53/1849
  38529. }
  38530. },
  38531. maw: {
  38532. height: math.unit(0.48, "feet"),
  38533. name: "Maw",
  38534. image: {
  38535. source: "./media/characters/carbon/maw.svg"
  38536. }
  38537. },
  38538. mawGigantamax: {
  38539. height: math.unit(7.5, "feet"),
  38540. name: "Maw (Gigantamax)",
  38541. image: {
  38542. source: "./media/characters/carbon/maw-gigantamax.svg"
  38543. }
  38544. },
  38545. },
  38546. [
  38547. {
  38548. name: "Normal",
  38549. height: math.unit(7 + 5/12, "feet"),
  38550. default: true
  38551. },
  38552. ]
  38553. ))
  38554. characterMakers.push(() => makeCharacter(
  38555. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38556. {
  38557. front: {
  38558. height: math.unit(6, "feet"),
  38559. name: "Front",
  38560. image: {
  38561. source: "./media/characters/maverick/front.svg",
  38562. extra: 1672/1661,
  38563. bottom: 85/1757
  38564. }
  38565. },
  38566. back: {
  38567. height: math.unit(6, "feet"),
  38568. name: "Back",
  38569. image: {
  38570. source: "./media/characters/maverick/back.svg",
  38571. extra: 1642/1631,
  38572. bottom: 38/1680
  38573. }
  38574. },
  38575. },
  38576. [
  38577. {
  38578. name: "Normal",
  38579. height: math.unit(6, "feet"),
  38580. default: true
  38581. },
  38582. ]
  38583. ))
  38584. characterMakers.push(() => makeCharacter(
  38585. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38586. {
  38587. front: {
  38588. height: math.unit(15, "feet"),
  38589. weight: math.unit(615, "lb"),
  38590. name: "Front",
  38591. image: {
  38592. source: "./media/characters/grockle/front.svg",
  38593. extra: 1535/1427,
  38594. bottom: 56/1591
  38595. }
  38596. },
  38597. },
  38598. [
  38599. {
  38600. name: "Normal",
  38601. height: math.unit(15, "feet"),
  38602. default: true
  38603. },
  38604. {
  38605. name: "Large",
  38606. height: math.unit(150, "feet")
  38607. },
  38608. {
  38609. name: "Macro",
  38610. height: math.unit(1876, "feet")
  38611. },
  38612. {
  38613. name: "Mega Macro",
  38614. height: math.unit(121940, "feet")
  38615. },
  38616. {
  38617. name: "Giga Macro",
  38618. height: math.unit(750, "km")
  38619. },
  38620. {
  38621. name: "Tera Macro",
  38622. height: math.unit(750000, "km")
  38623. },
  38624. {
  38625. name: "Galactic",
  38626. height: math.unit(1.4e5, "km")
  38627. },
  38628. {
  38629. name: "Godlike",
  38630. height: math.unit(9.8e280, "galaxies")
  38631. },
  38632. ]
  38633. ))
  38634. characterMakers.push(() => makeCharacter(
  38635. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38636. {
  38637. front: {
  38638. height: math.unit(11, "meters"),
  38639. weight: math.unit(20, "tonnes"),
  38640. name: "Front",
  38641. image: {
  38642. source: "./media/characters/alistair/front.svg",
  38643. extra: 1265/1009,
  38644. bottom: 93/1358
  38645. }
  38646. },
  38647. },
  38648. [
  38649. {
  38650. name: "Normal",
  38651. height: math.unit(11, "meters"),
  38652. default: true
  38653. },
  38654. ]
  38655. ))
  38656. characterMakers.push(() => makeCharacter(
  38657. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38658. {
  38659. front: {
  38660. height: math.unit(5 + 8/12, "feet"),
  38661. name: "Front",
  38662. image: {
  38663. source: "./media/characters/haruka/front.svg",
  38664. extra: 2012/1952,
  38665. bottom: 0/2012
  38666. }
  38667. },
  38668. },
  38669. [
  38670. {
  38671. name: "Normal",
  38672. height: math.unit(5 + 8/12, "feet"),
  38673. default: true
  38674. },
  38675. ]
  38676. ))
  38677. characterMakers.push(() => makeCharacter(
  38678. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38679. {
  38680. back: {
  38681. height: math.unit(9, "feet"),
  38682. name: "Back",
  38683. image: {
  38684. source: "./media/characters/vivian-sylveon/back.svg",
  38685. extra: 1853/1714,
  38686. bottom: 0/1853
  38687. }
  38688. },
  38689. },
  38690. [
  38691. {
  38692. name: "Normal",
  38693. height: math.unit(9, "feet"),
  38694. default: true
  38695. },
  38696. {
  38697. name: "Macro",
  38698. height: math.unit(500, "feet")
  38699. },
  38700. {
  38701. name: "Megamacro",
  38702. height: math.unit(600, "miles")
  38703. },
  38704. {
  38705. name: "Gigamacro",
  38706. height: math.unit(30000, "miles")
  38707. },
  38708. ]
  38709. ))
  38710. characterMakers.push(() => makeCharacter(
  38711. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38712. {
  38713. anthro: {
  38714. height: math.unit(5 + 10/12, "feet"),
  38715. weight: math.unit(100, "lb"),
  38716. name: "Anthro",
  38717. image: {
  38718. source: "./media/characters/daiki/anthro.svg",
  38719. extra: 1115/1027,
  38720. bottom: 69/1184
  38721. }
  38722. },
  38723. feral: {
  38724. height: math.unit(200, "feet"),
  38725. name: "Feral",
  38726. image: {
  38727. source: "./media/characters/daiki/feral.svg",
  38728. extra: 1256/313,
  38729. bottom: 39/1295
  38730. }
  38731. },
  38732. feralHead: {
  38733. height: math.unit(171, "feet"),
  38734. name: "Feral Head",
  38735. image: {
  38736. source: "./media/characters/daiki/feral-head.svg"
  38737. }
  38738. },
  38739. manaDragon: {
  38740. height: math.unit(170, "meters"),
  38741. name: "Mana-dragon",
  38742. image: {
  38743. source: "./media/characters/daiki/mana-dragon.svg",
  38744. extra: 763/420,
  38745. bottom: 97/860
  38746. }
  38747. },
  38748. },
  38749. [
  38750. {
  38751. name: "Normal",
  38752. height: math.unit(5 + 10/12, "feet"),
  38753. default: true
  38754. },
  38755. ]
  38756. ))
  38757. characterMakers.push(() => makeCharacter(
  38758. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38759. {
  38760. fullyEquippedFront: {
  38761. height: math.unit(3 + 1/12, "feet"),
  38762. weight: math.unit(24, "lb"),
  38763. name: "Fully Equipped (Front)",
  38764. image: {
  38765. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38766. extra: 687/605,
  38767. bottom: 18/705
  38768. }
  38769. },
  38770. fullyEquippedBack: {
  38771. height: math.unit(3 + 1/12, "feet"),
  38772. weight: math.unit(24, "lb"),
  38773. name: "Fully Equipped (Back)",
  38774. image: {
  38775. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38776. extra: 689/590,
  38777. bottom: 18/707
  38778. }
  38779. },
  38780. dailyWear: {
  38781. height: math.unit(3 + 1/12, "feet"),
  38782. weight: math.unit(24, "lb"),
  38783. name: "Daily Wear",
  38784. image: {
  38785. source: "./media/characters/tea-spot/daily-wear.svg",
  38786. extra: 701/620,
  38787. bottom: 21/722
  38788. }
  38789. },
  38790. maidWork: {
  38791. height: math.unit(3 + 1/12, "feet"),
  38792. weight: math.unit(24, "lb"),
  38793. name: "Maid Work",
  38794. image: {
  38795. source: "./media/characters/tea-spot/maid-work.svg",
  38796. extra: 693/609,
  38797. bottom: 15/708
  38798. }
  38799. },
  38800. },
  38801. [
  38802. {
  38803. name: "Normal",
  38804. height: math.unit(3 + 1/12, "feet"),
  38805. default: true
  38806. },
  38807. ]
  38808. ))
  38809. characterMakers.push(() => makeCharacter(
  38810. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38811. {
  38812. front: {
  38813. height: math.unit(175, "cm"),
  38814. weight: math.unit(75, "kg"),
  38815. name: "Front",
  38816. image: {
  38817. source: "./media/characters/chee/front.svg",
  38818. extra: 1796/1740,
  38819. bottom: 40/1836
  38820. }
  38821. },
  38822. },
  38823. [
  38824. {
  38825. name: "Micro-Micro",
  38826. height: math.unit(1, "nm")
  38827. },
  38828. {
  38829. name: "Micro-erst",
  38830. height: math.unit(1, "micrometer")
  38831. },
  38832. {
  38833. name: "Micro-er",
  38834. height: math.unit(1, "cm")
  38835. },
  38836. {
  38837. name: "Normal",
  38838. height: math.unit(175, "cm"),
  38839. default: true
  38840. },
  38841. {
  38842. name: "Macro",
  38843. height: math.unit(100, "m")
  38844. },
  38845. {
  38846. name: "Macro-er",
  38847. height: math.unit(1, "km")
  38848. },
  38849. {
  38850. name: "Macro-erst",
  38851. height: math.unit(10, "km")
  38852. },
  38853. {
  38854. name: "Macro-Macro",
  38855. height: math.unit(100, "km")
  38856. },
  38857. ]
  38858. ))
  38859. characterMakers.push(() => makeCharacter(
  38860. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38861. {
  38862. front: {
  38863. height: math.unit(11 + 9/12, "feet"),
  38864. weight: math.unit(935, "lb"),
  38865. name: "Front",
  38866. image: {
  38867. source: "./media/characters/kingsley/front.svg",
  38868. extra: 1803/1674,
  38869. bottom: 127/1930
  38870. }
  38871. },
  38872. frontNude: {
  38873. height: math.unit(11 + 9/12, "feet"),
  38874. weight: math.unit(935, "lb"),
  38875. name: "Front (Nude)",
  38876. image: {
  38877. source: "./media/characters/kingsley/front-nude.svg",
  38878. extra: 1803/1674,
  38879. bottom: 127/1930
  38880. }
  38881. },
  38882. },
  38883. [
  38884. {
  38885. name: "Normal",
  38886. height: math.unit(11 + 9/12, "feet"),
  38887. default: true
  38888. },
  38889. ]
  38890. ))
  38891. characterMakers.push(() => makeCharacter(
  38892. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38893. {
  38894. side: {
  38895. height: math.unit(9, "feet"),
  38896. name: "Side",
  38897. image: {
  38898. source: "./media/characters/rymel/side.svg",
  38899. extra: 792/469,
  38900. bottom: 121/913
  38901. }
  38902. },
  38903. maw: {
  38904. height: math.unit(2.4, "meters"),
  38905. name: "Maw",
  38906. image: {
  38907. source: "./media/characters/rymel/maw.svg"
  38908. }
  38909. },
  38910. },
  38911. [
  38912. {
  38913. name: "House Drake",
  38914. height: math.unit(2, "feet")
  38915. },
  38916. {
  38917. name: "Reduced",
  38918. height: math.unit(4.5, "feet")
  38919. },
  38920. {
  38921. name: "Normal",
  38922. height: math.unit(9, "feet"),
  38923. default: true
  38924. },
  38925. ]
  38926. ))
  38927. characterMakers.push(() => makeCharacter(
  38928. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38929. {
  38930. front: {
  38931. height: math.unit(1.74, "meters"),
  38932. weight: math.unit(55, "kg"),
  38933. name: "Front",
  38934. image: {
  38935. source: "./media/characters/rubus/front.svg",
  38936. extra: 1894/1742,
  38937. bottom: 44/1938
  38938. }
  38939. },
  38940. },
  38941. [
  38942. {
  38943. name: "Normal",
  38944. height: math.unit(1.74, "meters"),
  38945. default: true
  38946. },
  38947. ]
  38948. ))
  38949. characterMakers.push(() => makeCharacter(
  38950. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38951. {
  38952. front: {
  38953. height: math.unit(5 + 2/12, "feet"),
  38954. weight: math.unit(112, "lb"),
  38955. name: "Front",
  38956. image: {
  38957. source: "./media/characters/cassie-kingston/front.svg",
  38958. extra: 1438/1390,
  38959. bottom: 47/1485
  38960. }
  38961. },
  38962. },
  38963. [
  38964. {
  38965. name: "Normal",
  38966. height: math.unit(5 + 2/12, "feet"),
  38967. default: true
  38968. },
  38969. {
  38970. name: "Macro",
  38971. height: math.unit(128, "feet")
  38972. },
  38973. {
  38974. name: "Megamacro",
  38975. height: math.unit(2.56, "miles")
  38976. },
  38977. ]
  38978. ))
  38979. characterMakers.push(() => makeCharacter(
  38980. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38981. {
  38982. front: {
  38983. height: math.unit(7, "feet"),
  38984. name: "Front",
  38985. image: {
  38986. source: "./media/characters/fox/front.svg",
  38987. extra: 1798/1703,
  38988. bottom: 55/1853
  38989. }
  38990. },
  38991. back: {
  38992. height: math.unit(7, "feet"),
  38993. name: "Back",
  38994. image: {
  38995. source: "./media/characters/fox/back.svg",
  38996. extra: 1748/1649,
  38997. bottom: 32/1780
  38998. }
  38999. },
  39000. head: {
  39001. height: math.unit(1.95, "feet"),
  39002. name: "Head",
  39003. image: {
  39004. source: "./media/characters/fox/head.svg"
  39005. }
  39006. },
  39007. dick: {
  39008. height: math.unit(1.33, "feet"),
  39009. name: "Dick",
  39010. image: {
  39011. source: "./media/characters/fox/dick.svg"
  39012. }
  39013. },
  39014. foot: {
  39015. height: math.unit(1, "feet"),
  39016. name: "Foot",
  39017. image: {
  39018. source: "./media/characters/fox/foot.svg"
  39019. }
  39020. },
  39021. paw: {
  39022. height: math.unit(0.92, "feet"),
  39023. name: "Paw",
  39024. image: {
  39025. source: "./media/characters/fox/paw.svg"
  39026. }
  39027. },
  39028. },
  39029. [
  39030. {
  39031. name: "Small",
  39032. height: math.unit(3, "inches")
  39033. },
  39034. {
  39035. name: "\"Realistic\"",
  39036. height: math.unit(7, "feet")
  39037. },
  39038. {
  39039. name: "Normal",
  39040. height: math.unit(150, "feet"),
  39041. default: true
  39042. },
  39043. {
  39044. name: "BIG",
  39045. height: math.unit(1200, "feet")
  39046. },
  39047. {
  39048. name: "👀",
  39049. height: math.unit(5, "miles")
  39050. },
  39051. {
  39052. name: "👀👀👀",
  39053. height: math.unit(64, "miles")
  39054. },
  39055. ]
  39056. ))
  39057. characterMakers.push(() => makeCharacter(
  39058. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39059. {
  39060. front: {
  39061. height: math.unit(625, "feet"),
  39062. name: "Front",
  39063. image: {
  39064. source: "./media/characters/asonja-rossa/front.svg",
  39065. extra: 1833/1686,
  39066. bottom: 24/1857
  39067. }
  39068. },
  39069. back: {
  39070. height: math.unit(625, "feet"),
  39071. name: "Back",
  39072. image: {
  39073. source: "./media/characters/asonja-rossa/back.svg",
  39074. extra: 1852/1753,
  39075. bottom: 26/1878
  39076. }
  39077. },
  39078. },
  39079. [
  39080. {
  39081. name: "Macro",
  39082. height: math.unit(625, "feet"),
  39083. default: true
  39084. },
  39085. ]
  39086. ))
  39087. characterMakers.push(() => makeCharacter(
  39088. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39089. {
  39090. side: {
  39091. height: math.unit(8, "feet"),
  39092. name: "Side",
  39093. image: {
  39094. source: "./media/characters/rezukii/side.svg",
  39095. extra: 979/542,
  39096. bottom: 87/1066
  39097. }
  39098. },
  39099. sitting: {
  39100. height: math.unit(14.6, "feet"),
  39101. name: "Sitting",
  39102. image: {
  39103. source: "./media/characters/rezukii/sitting.svg",
  39104. extra: 1023/813,
  39105. bottom: 45/1068
  39106. }
  39107. },
  39108. },
  39109. [
  39110. {
  39111. name: "Tiny",
  39112. height: math.unit(2, "feet")
  39113. },
  39114. {
  39115. name: "Smol",
  39116. height: math.unit(4, "feet")
  39117. },
  39118. {
  39119. name: "Normal",
  39120. height: math.unit(8, "feet"),
  39121. default: true
  39122. },
  39123. {
  39124. name: "Big",
  39125. height: math.unit(12, "feet")
  39126. },
  39127. {
  39128. name: "Macro",
  39129. height: math.unit(30, "feet")
  39130. },
  39131. ]
  39132. ))
  39133. characterMakers.push(() => makeCharacter(
  39134. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39135. {
  39136. front: {
  39137. height: math.unit(14, "feet"),
  39138. weight: math.unit(9.5, "tonnes"),
  39139. name: "Front",
  39140. image: {
  39141. source: "./media/characters/dawnheart/front.svg",
  39142. extra: 2792/2675,
  39143. bottom: 64/2856
  39144. }
  39145. },
  39146. },
  39147. [
  39148. {
  39149. name: "Normal",
  39150. height: math.unit(14, "feet"),
  39151. default: true
  39152. },
  39153. ]
  39154. ))
  39155. characterMakers.push(() => makeCharacter(
  39156. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39157. {
  39158. front: {
  39159. height: math.unit(1.7, "m"),
  39160. name: "Front",
  39161. image: {
  39162. source: "./media/characters/gladi/front.svg",
  39163. extra: 1460/1362,
  39164. bottom: 19/1479
  39165. }
  39166. },
  39167. back: {
  39168. height: math.unit(1.7, "m"),
  39169. name: "Back",
  39170. image: {
  39171. source: "./media/characters/gladi/back.svg",
  39172. extra: 1459/1357,
  39173. bottom: 12/1471
  39174. }
  39175. },
  39176. feral: {
  39177. height: math.unit(2.05, "m"),
  39178. name: "Feral",
  39179. image: {
  39180. source: "./media/characters/gladi/feral.svg",
  39181. extra: 821/557,
  39182. bottom: 91/912
  39183. }
  39184. },
  39185. },
  39186. [
  39187. {
  39188. name: "Shortest",
  39189. height: math.unit(70, "cm")
  39190. },
  39191. {
  39192. name: "Normal",
  39193. height: math.unit(1.7, "m")
  39194. },
  39195. {
  39196. name: "Macro",
  39197. height: math.unit(10, "m"),
  39198. default: true
  39199. },
  39200. {
  39201. name: "Tallest",
  39202. height: math.unit(200, "m")
  39203. },
  39204. ]
  39205. ))
  39206. characterMakers.push(() => makeCharacter(
  39207. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39208. {
  39209. front: {
  39210. height: math.unit(5 + 7/12, "feet"),
  39211. weight: math.unit(2, "tons"),
  39212. name: "Front",
  39213. image: {
  39214. source: "./media/characters/erdno/front.svg",
  39215. extra: 1234/1129,
  39216. bottom: 35/1269
  39217. }
  39218. },
  39219. angled: {
  39220. height: math.unit(5 + 7/12, "feet"),
  39221. weight: math.unit(2, "tons"),
  39222. name: "Angled",
  39223. image: {
  39224. source: "./media/characters/erdno/angled.svg",
  39225. extra: 1185/1139,
  39226. bottom: 36/1221
  39227. }
  39228. },
  39229. side: {
  39230. height: math.unit(5 + 7/12, "feet"),
  39231. weight: math.unit(2, "tons"),
  39232. name: "Side",
  39233. image: {
  39234. source: "./media/characters/erdno/side.svg",
  39235. extra: 1191/1144,
  39236. bottom: 40/1231
  39237. }
  39238. },
  39239. back: {
  39240. height: math.unit(5 + 7/12, "feet"),
  39241. weight: math.unit(2, "tons"),
  39242. name: "Back",
  39243. image: {
  39244. source: "./media/characters/erdno/back.svg",
  39245. extra: 1202/1146,
  39246. bottom: 17/1219
  39247. }
  39248. },
  39249. frontNsfw: {
  39250. height: math.unit(5 + 7/12, "feet"),
  39251. weight: math.unit(2, "tons"),
  39252. name: "Front (NSFW)",
  39253. image: {
  39254. source: "./media/characters/erdno/front-nsfw.svg",
  39255. extra: 1234/1129,
  39256. bottom: 35/1269
  39257. }
  39258. },
  39259. angledNsfw: {
  39260. height: math.unit(5 + 7/12, "feet"),
  39261. weight: math.unit(2, "tons"),
  39262. name: "Angled (NSFW)",
  39263. image: {
  39264. source: "./media/characters/erdno/angled-nsfw.svg",
  39265. extra: 1185/1139,
  39266. bottom: 36/1221
  39267. }
  39268. },
  39269. sideNsfw: {
  39270. height: math.unit(5 + 7/12, "feet"),
  39271. weight: math.unit(2, "tons"),
  39272. name: "Side (NSFW)",
  39273. image: {
  39274. source: "./media/characters/erdno/side-nsfw.svg",
  39275. extra: 1191/1144,
  39276. bottom: 40/1231
  39277. }
  39278. },
  39279. backNsfw: {
  39280. height: math.unit(5 + 7/12, "feet"),
  39281. weight: math.unit(2, "tons"),
  39282. name: "Back (NSFW)",
  39283. image: {
  39284. source: "./media/characters/erdno/back-nsfw.svg",
  39285. extra: 1202/1146,
  39286. bottom: 17/1219
  39287. }
  39288. },
  39289. frontHyper: {
  39290. height: math.unit(5 + 7/12, "feet"),
  39291. weight: math.unit(2, "tons"),
  39292. name: "Front (Hyper)",
  39293. image: {
  39294. source: "./media/characters/erdno/front-hyper.svg",
  39295. extra: 1298/1136,
  39296. bottom: 35/1333
  39297. }
  39298. },
  39299. },
  39300. [
  39301. {
  39302. name: "Normal",
  39303. height: math.unit(5 + 7/12, "feet"),
  39304. default: true
  39305. },
  39306. {
  39307. name: "Big",
  39308. height: math.unit(5.7, "meters")
  39309. },
  39310. {
  39311. name: "Macro",
  39312. height: math.unit(5.7, "kilometers")
  39313. },
  39314. {
  39315. name: "Megamacro",
  39316. height: math.unit(5.7, "earths")
  39317. },
  39318. ]
  39319. ))
  39320. characterMakers.push(() => makeCharacter(
  39321. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39322. {
  39323. front: {
  39324. height: math.unit(5 + 10/12, "feet"),
  39325. weight: math.unit(150, "lb"),
  39326. name: "Front",
  39327. image: {
  39328. source: "./media/characters/jamie/front.svg",
  39329. extra: 1908/1768,
  39330. bottom: 19/1927
  39331. }
  39332. },
  39333. },
  39334. [
  39335. {
  39336. name: "Minimum",
  39337. height: math.unit(2, "cm")
  39338. },
  39339. {
  39340. name: "Micro",
  39341. height: math.unit(3, "inches")
  39342. },
  39343. {
  39344. name: "Normal",
  39345. height: math.unit(5 + 10/12, "feet"),
  39346. default: true
  39347. },
  39348. {
  39349. name: "Macro",
  39350. height: math.unit(150, "feet")
  39351. },
  39352. {
  39353. name: "Megamacro",
  39354. height: math.unit(10000, "m")
  39355. },
  39356. ]
  39357. ))
  39358. characterMakers.push(() => makeCharacter(
  39359. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39360. {
  39361. front: {
  39362. height: math.unit(2, "meters"),
  39363. weight: math.unit(100, "kg"),
  39364. name: "Front",
  39365. image: {
  39366. source: "./media/characters/shiron/front.svg",
  39367. extra: 2103/1985,
  39368. bottom: 98/2201
  39369. }
  39370. },
  39371. back: {
  39372. height: math.unit(2, "meters"),
  39373. weight: math.unit(100, "kg"),
  39374. name: "Back",
  39375. image: {
  39376. source: "./media/characters/shiron/back.svg",
  39377. extra: 2110/2015,
  39378. bottom: 89/2199
  39379. }
  39380. },
  39381. hand: {
  39382. height: math.unit(0.96, "feet"),
  39383. name: "Hand",
  39384. image: {
  39385. source: "./media/characters/shiron/hand.svg"
  39386. }
  39387. },
  39388. foot: {
  39389. height: math.unit(1.464, "feet"),
  39390. name: "Foot",
  39391. image: {
  39392. source: "./media/characters/shiron/foot.svg"
  39393. }
  39394. },
  39395. },
  39396. [
  39397. {
  39398. name: "Normal",
  39399. height: math.unit(2, "meters")
  39400. },
  39401. {
  39402. name: "Macro",
  39403. height: math.unit(500, "meters"),
  39404. default: true
  39405. },
  39406. {
  39407. name: "Megamacro",
  39408. height: math.unit(20, "km")
  39409. },
  39410. ]
  39411. ))
  39412. characterMakers.push(() => makeCharacter(
  39413. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39414. {
  39415. front: {
  39416. height: math.unit(6, "feet"),
  39417. name: "Front",
  39418. image: {
  39419. source: "./media/characters/sam/front.svg",
  39420. extra: 849/826,
  39421. bottom: 19/868
  39422. }
  39423. },
  39424. },
  39425. [
  39426. {
  39427. name: "Normal",
  39428. height: math.unit(6, "feet"),
  39429. default: true
  39430. },
  39431. ]
  39432. ))
  39433. characterMakers.push(() => makeCharacter(
  39434. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39435. {
  39436. front: {
  39437. height: math.unit(8 + 4/12, "feet"),
  39438. weight: math.unit(122, "kg"),
  39439. name: "Front",
  39440. image: {
  39441. source: "./media/characters/namori-kurogawa/front.svg",
  39442. extra: 1894/1576,
  39443. bottom: 34/1928
  39444. }
  39445. },
  39446. },
  39447. [
  39448. {
  39449. name: "Normal",
  39450. height: math.unit(8 + 4/12, "feet"),
  39451. default: true
  39452. },
  39453. ]
  39454. ))
  39455. characterMakers.push(() => makeCharacter(
  39456. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39457. {
  39458. front: {
  39459. height: math.unit(9, "feet"),
  39460. weight: math.unit(621, "lb"),
  39461. name: "Front",
  39462. image: {
  39463. source: "./media/characters/unmru/front.svg",
  39464. extra: 1853/1747,
  39465. bottom: 73/1926
  39466. }
  39467. },
  39468. side: {
  39469. height: math.unit(9, "feet"),
  39470. weight: math.unit(621, "lb"),
  39471. name: "Side",
  39472. image: {
  39473. source: "./media/characters/unmru/side.svg",
  39474. extra: 1781/1671,
  39475. bottom: 127/1908
  39476. }
  39477. },
  39478. back: {
  39479. height: math.unit(9, "feet"),
  39480. weight: math.unit(621, "lb"),
  39481. name: "Back",
  39482. image: {
  39483. source: "./media/characters/unmru/back.svg",
  39484. extra: 1894/1765,
  39485. bottom: 75/1969
  39486. }
  39487. },
  39488. dick: {
  39489. height: math.unit(3, "feet"),
  39490. weight: math.unit(35, "lb"),
  39491. name: "Dick",
  39492. image: {
  39493. source: "./media/characters/unmru/dick.svg"
  39494. }
  39495. },
  39496. },
  39497. [
  39498. {
  39499. name: "Normal",
  39500. height: math.unit(9, "feet")
  39501. },
  39502. {
  39503. name: "Natural",
  39504. height: math.unit(27, "feet"),
  39505. default: true
  39506. },
  39507. {
  39508. name: "Giant",
  39509. height: math.unit(90, "feet")
  39510. },
  39511. {
  39512. name: "Kaiju",
  39513. height: math.unit(270, "feet")
  39514. },
  39515. {
  39516. name: "Macro",
  39517. height: math.unit(900, "feet")
  39518. },
  39519. {
  39520. name: "Macro+",
  39521. height: math.unit(2700, "feet")
  39522. },
  39523. {
  39524. name: "Megamacro",
  39525. height: math.unit(9000, "feet")
  39526. },
  39527. {
  39528. name: "City-Crushing",
  39529. height: math.unit(27000, "feet")
  39530. },
  39531. {
  39532. name: "Mountain-Mashing",
  39533. height: math.unit(90000, "feet")
  39534. },
  39535. {
  39536. name: "Earth-Eclipsing",
  39537. height: math.unit(2.7e8, "feet")
  39538. },
  39539. {
  39540. name: "Sol-Swallowing",
  39541. height: math.unit(9e10, "feet")
  39542. },
  39543. {
  39544. name: "Majoris-Munching",
  39545. height: math.unit(2.7e13, "feet")
  39546. },
  39547. ]
  39548. ))
  39549. characterMakers.push(() => makeCharacter(
  39550. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39551. {
  39552. front: {
  39553. height: math.unit(1, "inch"),
  39554. name: "Front",
  39555. image: {
  39556. source: "./media/characters/squeaks-mouse/front.svg",
  39557. extra: 352/308,
  39558. bottom: 25/377
  39559. }
  39560. },
  39561. },
  39562. [
  39563. {
  39564. name: "Micro",
  39565. height: math.unit(1, "inch"),
  39566. default: true
  39567. },
  39568. ]
  39569. ))
  39570. characterMakers.push(() => makeCharacter(
  39571. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39572. {
  39573. side: {
  39574. height: math.unit(35, "feet"),
  39575. name: "Side",
  39576. image: {
  39577. source: "./media/characters/sayko/side.svg",
  39578. extra: 1697/1021,
  39579. bottom: 82/1779
  39580. }
  39581. },
  39582. head: {
  39583. height: math.unit(16, "feet"),
  39584. name: "Head",
  39585. image: {
  39586. source: "./media/characters/sayko/head.svg"
  39587. }
  39588. },
  39589. forepaw: {
  39590. height: math.unit(7.85, "feet"),
  39591. name: "Forepaw",
  39592. image: {
  39593. source: "./media/characters/sayko/forepaw.svg"
  39594. }
  39595. },
  39596. hindpaw: {
  39597. height: math.unit(8.8, "feet"),
  39598. name: "Hindpaw",
  39599. image: {
  39600. source: "./media/characters/sayko/hindpaw.svg"
  39601. }
  39602. },
  39603. },
  39604. [
  39605. {
  39606. name: "Normal",
  39607. height: math.unit(35, "feet"),
  39608. default: true
  39609. },
  39610. {
  39611. name: "Colossus",
  39612. height: math.unit(100, "meters")
  39613. },
  39614. {
  39615. name: "\"Small\" Deity",
  39616. height: math.unit(1, "km")
  39617. },
  39618. {
  39619. name: "\"Large\" Deity",
  39620. height: math.unit(15, "km")
  39621. },
  39622. ]
  39623. ))
  39624. characterMakers.push(() => makeCharacter(
  39625. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39626. {
  39627. front: {
  39628. height: math.unit(6, "feet"),
  39629. weight: math.unit(250, "lb"),
  39630. name: "Front",
  39631. image: {
  39632. source: "./media/characters/mukiro/front.svg",
  39633. extra: 1368/1310,
  39634. bottom: 34/1402
  39635. }
  39636. },
  39637. },
  39638. [
  39639. {
  39640. name: "Normal",
  39641. height: math.unit(6, "feet"),
  39642. default: true
  39643. },
  39644. ]
  39645. ))
  39646. characterMakers.push(() => makeCharacter(
  39647. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39648. {
  39649. front: {
  39650. height: math.unit(12 + 4/12, "feet"),
  39651. name: "Front",
  39652. image: {
  39653. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39654. extra: 1346/1311,
  39655. bottom: 65/1411
  39656. }
  39657. },
  39658. },
  39659. [
  39660. {
  39661. name: "Base",
  39662. height: math.unit(12 + 4/12, "feet"),
  39663. default: true
  39664. },
  39665. {
  39666. name: "Macro",
  39667. height: math.unit(150, "feet")
  39668. },
  39669. {
  39670. name: "Mega",
  39671. height: math.unit(2, "miles")
  39672. },
  39673. {
  39674. name: "Demi God",
  39675. height: math.unit(4, "AU")
  39676. },
  39677. {
  39678. name: "God Size",
  39679. height: math.unit(1, "universe")
  39680. },
  39681. ]
  39682. ))
  39683. characterMakers.push(() => makeCharacter(
  39684. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39685. {
  39686. front: {
  39687. height: math.unit(3 + 3/12, "feet"),
  39688. weight: math.unit(88, "lb"),
  39689. name: "Front",
  39690. image: {
  39691. source: "./media/characters/trey/front.svg",
  39692. extra: 1815/1509,
  39693. bottom: 60/1875
  39694. }
  39695. },
  39696. },
  39697. [
  39698. {
  39699. name: "Normal",
  39700. height: math.unit(3 + 3/12, "feet"),
  39701. default: true
  39702. },
  39703. ]
  39704. ))
  39705. characterMakers.push(() => makeCharacter(
  39706. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39707. {
  39708. front: {
  39709. height: math.unit(4, "meters"),
  39710. name: "Front",
  39711. image: {
  39712. source: "./media/characters/adelonda/front.svg",
  39713. extra: 1077/982,
  39714. bottom: 39/1116
  39715. }
  39716. },
  39717. back: {
  39718. height: math.unit(4, "meters"),
  39719. name: "Back",
  39720. image: {
  39721. source: "./media/characters/adelonda/back.svg",
  39722. extra: 1105/1003,
  39723. bottom: 25/1130
  39724. }
  39725. },
  39726. feral: {
  39727. height: math.unit(40/1.5, "meters"),
  39728. name: "Feral",
  39729. image: {
  39730. source: "./media/characters/adelonda/feral.svg",
  39731. extra: 597/271,
  39732. bottom: 387/984
  39733. }
  39734. },
  39735. },
  39736. [
  39737. {
  39738. name: "Normal",
  39739. height: math.unit(4, "meters"),
  39740. default: true
  39741. },
  39742. ]
  39743. ))
  39744. characterMakers.push(() => makeCharacter(
  39745. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39746. {
  39747. front: {
  39748. height: math.unit(8 + 4/12, "feet"),
  39749. weight: math.unit(670, "lb"),
  39750. name: "Front",
  39751. image: {
  39752. source: "./media/characters/acadiel/front.svg",
  39753. extra: 1901/1595,
  39754. bottom: 142/2043
  39755. }
  39756. },
  39757. },
  39758. [
  39759. {
  39760. name: "Normal",
  39761. height: math.unit(8 + 4/12, "feet"),
  39762. default: true
  39763. },
  39764. {
  39765. name: "Macro",
  39766. height: math.unit(200, "feet")
  39767. },
  39768. ]
  39769. ))
  39770. characterMakers.push(() => makeCharacter(
  39771. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39772. {
  39773. front: {
  39774. height: math.unit(6 + 2/12, "feet"),
  39775. weight: math.unit(185, "lb"),
  39776. name: "Front",
  39777. image: {
  39778. source: "./media/characters/kayne-ein/front.svg",
  39779. extra: 1780/1560,
  39780. bottom: 81/1861
  39781. }
  39782. },
  39783. },
  39784. [
  39785. {
  39786. name: "Normal",
  39787. height: math.unit(6 + 2/12, "feet"),
  39788. default: true
  39789. },
  39790. {
  39791. name: "Transformation Stage",
  39792. height: math.unit(15, "feet")
  39793. },
  39794. {
  39795. name: "Macro",
  39796. height: math.unit(150, "feet")
  39797. },
  39798. {
  39799. name: "Earth's Shadow",
  39800. height: math.unit(6200, "miles")
  39801. },
  39802. {
  39803. name: "Universal Demon",
  39804. height: math.unit(28e9, "parsecs")
  39805. },
  39806. {
  39807. name: "Multiverse God",
  39808. height: math.unit(3, "multiverses")
  39809. },
  39810. ]
  39811. ))
  39812. characterMakers.push(() => makeCharacter(
  39813. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39814. {
  39815. front: {
  39816. height: math.unit(5 + 5/12, "feet"),
  39817. name: "Front",
  39818. image: {
  39819. source: "./media/characters/fawn/front.svg",
  39820. extra: 1873/1731,
  39821. bottom: 95/1968
  39822. }
  39823. },
  39824. back: {
  39825. height: math.unit(5 + 5/12, "feet"),
  39826. name: "Back",
  39827. image: {
  39828. source: "./media/characters/fawn/back.svg",
  39829. extra: 1813/1700,
  39830. bottom: 14/1827
  39831. }
  39832. },
  39833. hoof: {
  39834. height: math.unit(1.45, "feet"),
  39835. name: "Hoof",
  39836. image: {
  39837. source: "./media/characters/fawn/hoof.svg"
  39838. }
  39839. },
  39840. },
  39841. [
  39842. {
  39843. name: "Normal",
  39844. height: math.unit(5 + 5/12, "feet"),
  39845. default: true
  39846. },
  39847. ]
  39848. ))
  39849. characterMakers.push(() => makeCharacter(
  39850. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39851. {
  39852. front: {
  39853. height: math.unit(2 + 5/12, "feet"),
  39854. name: "Front",
  39855. image: {
  39856. source: "./media/characters/orion/front.svg",
  39857. extra: 1366/1304,
  39858. bottom: 43/1409
  39859. }
  39860. },
  39861. paw: {
  39862. height: math.unit(0.52, "feet"),
  39863. name: "Paw",
  39864. image: {
  39865. source: "./media/characters/orion/paw.svg"
  39866. }
  39867. },
  39868. },
  39869. [
  39870. {
  39871. name: "Normal",
  39872. height: math.unit(2 + 5/12, "feet"),
  39873. default: true
  39874. },
  39875. ]
  39876. ))
  39877. characterMakers.push(() => makeCharacter(
  39878. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39879. {
  39880. front: {
  39881. height: math.unit(5 + 10/12, "feet"),
  39882. name: "Front",
  39883. image: {
  39884. source: "./media/characters/vera/front.svg",
  39885. extra: 1680/1575,
  39886. bottom: 49/1729
  39887. }
  39888. },
  39889. back: {
  39890. height: math.unit(5 + 10/12, "feet"),
  39891. name: "Back",
  39892. image: {
  39893. source: "./media/characters/vera/back.svg",
  39894. extra: 1700/1588,
  39895. bottom: 18/1718
  39896. }
  39897. },
  39898. arcanine: {
  39899. height: math.unit(6 + 8/12, "feet"),
  39900. name: "Arcanine",
  39901. image: {
  39902. source: "./media/characters/vera/arcanine.svg",
  39903. extra: 1590/1511,
  39904. bottom: 71/1661
  39905. }
  39906. },
  39907. maw: {
  39908. height: math.unit(0.82, "feet"),
  39909. name: "Maw",
  39910. image: {
  39911. source: "./media/characters/vera/maw.svg"
  39912. }
  39913. },
  39914. mawArcanine: {
  39915. height: math.unit(0.97, "feet"),
  39916. name: "Maw (Arcanine)",
  39917. image: {
  39918. source: "./media/characters/vera/maw-arcanine.svg"
  39919. }
  39920. },
  39921. paw: {
  39922. height: math.unit(0.75, "feet"),
  39923. name: "Paw",
  39924. image: {
  39925. source: "./media/characters/vera/paw.svg"
  39926. }
  39927. },
  39928. pawprint: {
  39929. height: math.unit(0.52, "feet"),
  39930. name: "Pawprint",
  39931. image: {
  39932. source: "./media/characters/vera/pawprint.svg"
  39933. }
  39934. },
  39935. },
  39936. [
  39937. {
  39938. name: "Normal",
  39939. height: math.unit(5 + 10/12, "feet"),
  39940. default: true
  39941. },
  39942. {
  39943. name: "Macro",
  39944. height: math.unit(75, "feet")
  39945. },
  39946. ]
  39947. ))
  39948. characterMakers.push(() => makeCharacter(
  39949. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39950. {
  39951. front: {
  39952. height: math.unit(4, "feet"),
  39953. weight: math.unit(40, "lb"),
  39954. name: "Front",
  39955. image: {
  39956. source: "./media/characters/orvan-rabbit/front.svg",
  39957. extra: 1896/1642,
  39958. bottom: 29/1925
  39959. }
  39960. },
  39961. },
  39962. [
  39963. {
  39964. name: "Normal",
  39965. height: math.unit(4, "feet"),
  39966. default: true
  39967. },
  39968. ]
  39969. ))
  39970. characterMakers.push(() => makeCharacter(
  39971. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39972. {
  39973. front: {
  39974. height: math.unit(6, "feet"),
  39975. weight: math.unit(168, "lb"),
  39976. name: "Front",
  39977. image: {
  39978. source: "./media/characters/lisa/front.svg",
  39979. extra: 2065/1867,
  39980. bottom: 46/2111
  39981. }
  39982. },
  39983. back: {
  39984. height: math.unit(6, "feet"),
  39985. weight: math.unit(168, "lb"),
  39986. name: "Back",
  39987. image: {
  39988. source: "./media/characters/lisa/back.svg",
  39989. extra: 1982/1838,
  39990. bottom: 29/2011
  39991. }
  39992. },
  39993. maw: {
  39994. height: math.unit(0.81, "feet"),
  39995. name: "Maw",
  39996. image: {
  39997. source: "./media/characters/lisa/maw.svg"
  39998. }
  39999. },
  40000. paw: {
  40001. height: math.unit(0.9, "feet"),
  40002. name: "Paw",
  40003. image: {
  40004. source: "./media/characters/lisa/paw.svg"
  40005. }
  40006. },
  40007. caribousune: {
  40008. height: math.unit(7 + 2/12, "feet"),
  40009. weight: math.unit(268, "lb"),
  40010. name: "Caribousune",
  40011. image: {
  40012. source: "./media/characters/lisa/caribousune.svg",
  40013. extra: 1843/1633,
  40014. bottom: 29/1872
  40015. }
  40016. },
  40017. frontCaribousune: {
  40018. height: math.unit(7 + 2/12, "feet"),
  40019. weight: math.unit(268, "lb"),
  40020. name: "Front (Caribousune)",
  40021. image: {
  40022. source: "./media/characters/lisa/front-caribousune.svg",
  40023. extra: 1818/1638,
  40024. bottom: 52/1870
  40025. }
  40026. },
  40027. sideCaribousune: {
  40028. height: math.unit(7 + 2/12, "feet"),
  40029. weight: math.unit(268, "lb"),
  40030. name: "Side (Caribousune)",
  40031. image: {
  40032. source: "./media/characters/lisa/side-caribousune.svg",
  40033. extra: 1851/1635,
  40034. bottom: 16/1867
  40035. }
  40036. },
  40037. backCaribousune: {
  40038. height: math.unit(7 + 2/12, "feet"),
  40039. weight: math.unit(268, "lb"),
  40040. name: "Back (Caribousune)",
  40041. image: {
  40042. source: "./media/characters/lisa/back-caribousune.svg",
  40043. extra: 1801/1604,
  40044. bottom: 44/1845
  40045. }
  40046. },
  40047. caribou: {
  40048. height: math.unit(7 + 2/12, "feet"),
  40049. weight: math.unit(268, "lb"),
  40050. name: "Caribou",
  40051. image: {
  40052. source: "./media/characters/lisa/caribou.svg",
  40053. extra: 1843/1633,
  40054. bottom: 29/1872
  40055. }
  40056. },
  40057. frontCaribou: {
  40058. height: math.unit(7 + 2/12, "feet"),
  40059. weight: math.unit(268, "lb"),
  40060. name: "Front (Caribou)",
  40061. image: {
  40062. source: "./media/characters/lisa/front-caribou.svg",
  40063. extra: 1818/1638,
  40064. bottom: 52/1870
  40065. }
  40066. },
  40067. sideCaribou: {
  40068. height: math.unit(7 + 2/12, "feet"),
  40069. weight: math.unit(268, "lb"),
  40070. name: "Side (Caribou)",
  40071. image: {
  40072. source: "./media/characters/lisa/side-caribou.svg",
  40073. extra: 1851/1635,
  40074. bottom: 16/1867
  40075. }
  40076. },
  40077. backCaribou: {
  40078. height: math.unit(7 + 2/12, "feet"),
  40079. weight: math.unit(268, "lb"),
  40080. name: "Back (Caribou)",
  40081. image: {
  40082. source: "./media/characters/lisa/back-caribou.svg",
  40083. extra: 1801/1604,
  40084. bottom: 44/1845
  40085. }
  40086. },
  40087. mawCaribou: {
  40088. height: math.unit(1.45, "feet"),
  40089. name: "Maw (Caribou)",
  40090. image: {
  40091. source: "./media/characters/lisa/maw-caribou.svg"
  40092. }
  40093. },
  40094. mawCaribousune: {
  40095. height: math.unit(1.45, "feet"),
  40096. name: "Maw (Caribousune)",
  40097. image: {
  40098. source: "./media/characters/lisa/maw-caribousune.svg"
  40099. }
  40100. },
  40101. pawCaribousune: {
  40102. height: math.unit(1.61, "feet"),
  40103. name: "Paw (Caribou)",
  40104. image: {
  40105. source: "./media/characters/lisa/paw-caribousune.svg"
  40106. }
  40107. },
  40108. },
  40109. [
  40110. {
  40111. name: "Normal",
  40112. height: math.unit(6, "feet")
  40113. },
  40114. {
  40115. name: "God Size",
  40116. height: math.unit(72, "feet"),
  40117. default: true
  40118. },
  40119. {
  40120. name: "Towering",
  40121. height: math.unit(288, "feet")
  40122. },
  40123. {
  40124. name: "City Size",
  40125. height: math.unit(48384, "feet")
  40126. },
  40127. {
  40128. name: "Continental",
  40129. height: math.unit(4200, "miles")
  40130. },
  40131. {
  40132. name: "Planet Eater",
  40133. height: math.unit(42, "earths")
  40134. },
  40135. {
  40136. name: "Star Swallower",
  40137. height: math.unit(42, "solarradii")
  40138. },
  40139. {
  40140. name: "System Swallower",
  40141. height: math.unit(84000, "AU")
  40142. },
  40143. {
  40144. name: "Galaxy Gobbler",
  40145. height: math.unit(42, "galaxies")
  40146. },
  40147. {
  40148. name: "Universe Devourer",
  40149. height: math.unit(42, "universes")
  40150. },
  40151. {
  40152. name: "Multiverse Muncher",
  40153. height: math.unit(42, "multiverses")
  40154. },
  40155. ]
  40156. ))
  40157. characterMakers.push(() => makeCharacter(
  40158. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40159. {
  40160. front: {
  40161. height: math.unit(36, "feet"),
  40162. name: "Front",
  40163. image: {
  40164. source: "./media/characters/shadow-rat/front.svg",
  40165. extra: 1845/1758,
  40166. bottom: 83/1928
  40167. }
  40168. },
  40169. },
  40170. [
  40171. {
  40172. name: "Macro",
  40173. height: math.unit(36, "feet"),
  40174. default: true
  40175. },
  40176. ]
  40177. ))
  40178. characterMakers.push(() => makeCharacter(
  40179. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40180. {
  40181. side: {
  40182. height: math.unit(8, "feet"),
  40183. weight: math.unit(2630, "lb"),
  40184. name: "Side",
  40185. image: {
  40186. source: "./media/characters/torallia/side.svg",
  40187. extra: 2164/2021,
  40188. bottom: 371/2535
  40189. }
  40190. },
  40191. },
  40192. [
  40193. {
  40194. name: "Mortal Interaction",
  40195. height: math.unit(8, "feet")
  40196. },
  40197. {
  40198. name: "Natural",
  40199. height: math.unit(24, "feet"),
  40200. default: true
  40201. },
  40202. {
  40203. name: "Giant",
  40204. height: math.unit(80, "feet")
  40205. },
  40206. {
  40207. name: "Kaiju",
  40208. height: math.unit(240, "feet")
  40209. },
  40210. {
  40211. name: "Macro",
  40212. height: math.unit(800, "feet")
  40213. },
  40214. {
  40215. name: "Macro+",
  40216. height: math.unit(2400, "feet")
  40217. },
  40218. {
  40219. name: "Macro++",
  40220. height: math.unit(8000, "feet")
  40221. },
  40222. {
  40223. name: "City-Crushing",
  40224. height: math.unit(24000, "feet")
  40225. },
  40226. {
  40227. name: "Mountain-Mashing",
  40228. height: math.unit(80000, "feet")
  40229. },
  40230. {
  40231. name: "District Demolisher",
  40232. height: math.unit(240000, "feet")
  40233. },
  40234. {
  40235. name: "Tri-County Terror",
  40236. height: math.unit(800000, "feet")
  40237. },
  40238. {
  40239. name: "State Smasher",
  40240. height: math.unit(2.4e6, "feet")
  40241. },
  40242. {
  40243. name: "Nation Nemesis",
  40244. height: math.unit(8e6, "feet")
  40245. },
  40246. {
  40247. name: "Continent Cracker",
  40248. height: math.unit(2.4e7, "feet")
  40249. },
  40250. {
  40251. name: "Planet-Pillaging",
  40252. height: math.unit(8e7, "feet")
  40253. },
  40254. {
  40255. name: "Earth-Eclipsing",
  40256. height: math.unit(2.4e8, "feet")
  40257. },
  40258. {
  40259. name: "Jovian-Jostling",
  40260. height: math.unit(8e8, "feet")
  40261. },
  40262. {
  40263. name: "Gas Giant Gulper",
  40264. height: math.unit(2.4e9, "feet")
  40265. },
  40266. {
  40267. name: "Astral Annihilator",
  40268. height: math.unit(8e9, "feet")
  40269. },
  40270. {
  40271. name: "Celestial Conqueror",
  40272. height: math.unit(2.4e10, "feet")
  40273. },
  40274. {
  40275. name: "Sol-Swallowing",
  40276. height: math.unit(8e10, "feet")
  40277. },
  40278. {
  40279. name: "Hunter of the Heavens",
  40280. height: math.unit(2.4e13, "feet")
  40281. },
  40282. ]
  40283. ))
  40284. characterMakers.push(() => makeCharacter(
  40285. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40286. {
  40287. front: {
  40288. height: math.unit(6 + 8/12, "feet"),
  40289. weight: math.unit(250, "kilograms"),
  40290. volume: math.unit(28, "liters"),
  40291. name: "Front",
  40292. image: {
  40293. source: "./media/characters/rebecca-pawlson/front.svg",
  40294. extra: 1737/1596,
  40295. bottom: 107/1844
  40296. }
  40297. },
  40298. back: {
  40299. height: math.unit(6 + 8/12, "feet"),
  40300. weight: math.unit(250, "kilograms"),
  40301. volume: math.unit(28, "liters"),
  40302. name: "Back",
  40303. image: {
  40304. source: "./media/characters/rebecca-pawlson/back.svg",
  40305. extra: 1702/1523,
  40306. bottom: 86/1788
  40307. }
  40308. },
  40309. },
  40310. [
  40311. {
  40312. name: "Normal",
  40313. height: math.unit(6 + 8/12, "feet")
  40314. },
  40315. {
  40316. name: "Mini Macro",
  40317. height: math.unit(10, "feet"),
  40318. default: true
  40319. },
  40320. {
  40321. name: "Macro",
  40322. height: math.unit(100, "feet")
  40323. },
  40324. {
  40325. name: "Mega Macro",
  40326. height: math.unit(2500, "feet")
  40327. },
  40328. {
  40329. name: "Giga Macro",
  40330. height: math.unit(50, "miles")
  40331. },
  40332. ]
  40333. ))
  40334. characterMakers.push(() => makeCharacter(
  40335. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40336. {
  40337. front: {
  40338. height: math.unit(7 + 6/12, "feet"),
  40339. weight: math.unit(600, "lb"),
  40340. name: "Front",
  40341. image: {
  40342. source: "./media/characters/moxie-nova/front.svg",
  40343. extra: 1734/1652,
  40344. bottom: 41/1775
  40345. }
  40346. },
  40347. },
  40348. [
  40349. {
  40350. name: "Normal",
  40351. height: math.unit(7 + 6/12, "feet"),
  40352. default: true
  40353. },
  40354. ]
  40355. ))
  40356. characterMakers.push(() => makeCharacter(
  40357. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40358. {
  40359. goat: {
  40360. height: math.unit(4, "feet"),
  40361. weight: math.unit(180, "lb"),
  40362. name: "Goat",
  40363. image: {
  40364. source: "./media/characters/tiffany/goat.svg",
  40365. extra: 1845/1595,
  40366. bottom: 106/1951
  40367. }
  40368. },
  40369. front: {
  40370. height: math.unit(5, "feet"),
  40371. weight: math.unit(150, "lb"),
  40372. name: "Foxcoon",
  40373. image: {
  40374. source: "./media/characters/tiffany/foxcoon.svg",
  40375. extra: 1941/1845,
  40376. bottom: 58/1999
  40377. }
  40378. },
  40379. },
  40380. [
  40381. {
  40382. name: "Normal",
  40383. height: math.unit(5, "feet"),
  40384. default: true
  40385. },
  40386. ]
  40387. ))
  40388. characterMakers.push(() => makeCharacter(
  40389. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40390. {
  40391. front: {
  40392. height: math.unit(8, "feet"),
  40393. weight: math.unit(300, "lb"),
  40394. name: "Front",
  40395. image: {
  40396. source: "./media/characters/raxinath/front.svg",
  40397. extra: 1407/1309,
  40398. bottom: 39/1446
  40399. }
  40400. },
  40401. back: {
  40402. height: math.unit(8, "feet"),
  40403. weight: math.unit(300, "lb"),
  40404. name: "Back",
  40405. image: {
  40406. source: "./media/characters/raxinath/back.svg",
  40407. extra: 1405/1315,
  40408. bottom: 9/1414
  40409. }
  40410. },
  40411. },
  40412. [
  40413. {
  40414. name: "Speck",
  40415. height: math.unit(0.5, "nm")
  40416. },
  40417. {
  40418. name: "Micro",
  40419. height: math.unit(3, "inches")
  40420. },
  40421. {
  40422. name: "Kobold",
  40423. height: math.unit(3, "feet")
  40424. },
  40425. {
  40426. name: "Normal",
  40427. height: math.unit(8, "feet"),
  40428. default: true
  40429. },
  40430. {
  40431. name: "Giant",
  40432. height: math.unit(50, "feet")
  40433. },
  40434. {
  40435. name: "Macro",
  40436. height: math.unit(1000, "feet")
  40437. },
  40438. {
  40439. name: "Megamacro",
  40440. height: math.unit(1, "mile")
  40441. },
  40442. ]
  40443. ))
  40444. characterMakers.push(() => makeCharacter(
  40445. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40446. {
  40447. front: {
  40448. height: math.unit(10, "feet"),
  40449. weight: math.unit(1442, "lb"),
  40450. name: "Front",
  40451. image: {
  40452. source: "./media/characters/mal-dragon/front.svg",
  40453. extra: 1515/1444,
  40454. bottom: 113/1628
  40455. }
  40456. },
  40457. back: {
  40458. height: math.unit(10, "feet"),
  40459. weight: math.unit(1442, "lb"),
  40460. name: "Back",
  40461. image: {
  40462. source: "./media/characters/mal-dragon/back.svg",
  40463. extra: 1527/1434,
  40464. bottom: 25/1552
  40465. }
  40466. },
  40467. },
  40468. [
  40469. {
  40470. name: "Mortal Interaction",
  40471. height: math.unit(10, "feet"),
  40472. default: true
  40473. },
  40474. {
  40475. name: "Large",
  40476. height: math.unit(30, "feet")
  40477. },
  40478. {
  40479. name: "Kaiju",
  40480. height: math.unit(300, "feet")
  40481. },
  40482. {
  40483. name: "Megamacro",
  40484. height: math.unit(10000, "feet")
  40485. },
  40486. {
  40487. name: "Continent Cracker",
  40488. height: math.unit(30000000, "feet")
  40489. },
  40490. {
  40491. name: "Sol-Swallowing",
  40492. height: math.unit(1e11, "feet")
  40493. },
  40494. {
  40495. name: "Light Universal",
  40496. height: math.unit(5, "universes")
  40497. },
  40498. {
  40499. name: "Universe Atoms",
  40500. height: math.unit(1.829e9, "universes")
  40501. },
  40502. {
  40503. name: "Light Multiversal",
  40504. height: math.unit(5, "multiverses")
  40505. },
  40506. {
  40507. name: "Multiverse Atoms",
  40508. height: math.unit(1.829e9, "multiverses")
  40509. },
  40510. {
  40511. name: "Fabric of Time",
  40512. height: math.unit(1e262, "multiverses")
  40513. },
  40514. ]
  40515. ))
  40516. characterMakers.push(() => makeCharacter(
  40517. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40518. {
  40519. front: {
  40520. height: math.unit(9, "feet"),
  40521. weight: math.unit(1050, "lb"),
  40522. name: "Front",
  40523. image: {
  40524. source: "./media/characters/tabitha/front.svg",
  40525. extra: 2083/1994,
  40526. bottom: 68/2151
  40527. }
  40528. },
  40529. },
  40530. [
  40531. {
  40532. name: "Baseline",
  40533. height: math.unit(9, "feet"),
  40534. default: true
  40535. },
  40536. {
  40537. name: "Giant",
  40538. height: math.unit(90, "feet")
  40539. },
  40540. {
  40541. name: "Macro",
  40542. height: math.unit(900, "feet")
  40543. },
  40544. {
  40545. name: "Megamacro",
  40546. height: math.unit(9000, "feet")
  40547. },
  40548. {
  40549. name: "City-Crushing",
  40550. height: math.unit(27000, "feet")
  40551. },
  40552. {
  40553. name: "Mountain-Mashing",
  40554. height: math.unit(90000, "feet")
  40555. },
  40556. {
  40557. name: "Nation Nemesis",
  40558. height: math.unit(9e6, "feet")
  40559. },
  40560. {
  40561. name: "Continent Cracker",
  40562. height: math.unit(27e6, "feet")
  40563. },
  40564. {
  40565. name: "Earth-Eclipsing",
  40566. height: math.unit(2.7e8, "feet")
  40567. },
  40568. {
  40569. name: "Gas Giant Gulper",
  40570. height: math.unit(2.7e9, "feet")
  40571. },
  40572. {
  40573. name: "Sol-Swallowing",
  40574. height: math.unit(9e10, "feet")
  40575. },
  40576. {
  40577. name: "Galaxy Gulper",
  40578. height: math.unit(9, "galaxies")
  40579. },
  40580. {
  40581. name: "Cosmos Churner",
  40582. height: math.unit(9, "universes")
  40583. },
  40584. ]
  40585. ))
  40586. characterMakers.push(() => makeCharacter(
  40587. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40588. {
  40589. front: {
  40590. height: math.unit(160, "cm"),
  40591. weight: math.unit(55, "kg"),
  40592. name: "Front",
  40593. image: {
  40594. source: "./media/characters/tow/front.svg",
  40595. extra: 1751/1722,
  40596. bottom: 74/1825
  40597. }
  40598. },
  40599. },
  40600. [
  40601. {
  40602. name: "Norm",
  40603. height: math.unit(160, "cm")
  40604. },
  40605. {
  40606. name: "Casual",
  40607. height: math.unit(3200, "m"),
  40608. default: true
  40609. },
  40610. {
  40611. name: "Show-Off",
  40612. height: math.unit(160, "km")
  40613. },
  40614. ]
  40615. ))
  40616. characterMakers.push(() => makeCharacter(
  40617. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40618. {
  40619. front: {
  40620. height: math.unit(7 + 11/12, "feet"),
  40621. weight: math.unit(342.8, "lb"),
  40622. name: "Front",
  40623. image: {
  40624. source: "./media/characters/vivian-orca-dragon/front.svg",
  40625. extra: 1890/1865,
  40626. bottom: 28/1918
  40627. }
  40628. },
  40629. },
  40630. [
  40631. {
  40632. name: "Micro",
  40633. height: math.unit(5, "inches")
  40634. },
  40635. {
  40636. name: "Normal",
  40637. height: math.unit(7 + 11/12, "feet"),
  40638. default: true
  40639. },
  40640. {
  40641. name: "Macro",
  40642. height: math.unit(395 + 7/12, "feet")
  40643. },
  40644. ]
  40645. ))
  40646. characterMakers.push(() => makeCharacter(
  40647. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40648. {
  40649. side: {
  40650. height: math.unit(10, "feet"),
  40651. weight: math.unit(1442, "lb"),
  40652. name: "Side",
  40653. image: {
  40654. source: "./media/characters/lotherakon/side.svg",
  40655. extra: 1604/1497,
  40656. bottom: 89/1693
  40657. }
  40658. },
  40659. },
  40660. [
  40661. {
  40662. name: "Mortal Interaction",
  40663. height: math.unit(10, "feet")
  40664. },
  40665. {
  40666. name: "Large",
  40667. height: math.unit(30, "feet"),
  40668. default: true
  40669. },
  40670. {
  40671. name: "Giant",
  40672. height: math.unit(100, "feet")
  40673. },
  40674. {
  40675. name: "Kaiju",
  40676. height: math.unit(300, "feet")
  40677. },
  40678. {
  40679. name: "Macro",
  40680. height: math.unit(1000, "feet")
  40681. },
  40682. {
  40683. name: "Macro+",
  40684. height: math.unit(3000, "feet")
  40685. },
  40686. {
  40687. name: "Megamacro",
  40688. height: math.unit(10000, "feet")
  40689. },
  40690. {
  40691. name: "City-Crushing",
  40692. height: math.unit(30000, "feet")
  40693. },
  40694. {
  40695. name: "Continent Cracker",
  40696. height: math.unit(30e6, "feet")
  40697. },
  40698. {
  40699. name: "Earth Eclipsing",
  40700. height: math.unit(3e8, "feet")
  40701. },
  40702. {
  40703. name: "Gas Giant Gulper",
  40704. height: math.unit(3e9, "feet")
  40705. },
  40706. {
  40707. name: "Sol-Swallowing",
  40708. height: math.unit(1e11, "feet")
  40709. },
  40710. {
  40711. name: "System Swallower",
  40712. height: math.unit(3e14, "feet")
  40713. },
  40714. {
  40715. name: "Galaxy Gulper",
  40716. height: math.unit(10, "galaxies")
  40717. },
  40718. {
  40719. name: "Light Universal",
  40720. height: math.unit(5, "universes")
  40721. },
  40722. {
  40723. name: "Universe Palm",
  40724. height: math.unit(20, "universes")
  40725. },
  40726. {
  40727. name: "Light Multiversal",
  40728. height: math.unit(5, "multiverses")
  40729. },
  40730. {
  40731. name: "Multiverse Palm",
  40732. height: math.unit(20, "multiverses")
  40733. },
  40734. {
  40735. name: "Inferno Incarnate",
  40736. height: math.unit(1e7, "multiverses")
  40737. },
  40738. ]
  40739. ))
  40740. characterMakers.push(() => makeCharacter(
  40741. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40742. {
  40743. front: {
  40744. height: math.unit(8, "feet"),
  40745. weight: math.unit(1200, "lb"),
  40746. name: "Front",
  40747. image: {
  40748. source: "./media/characters/malithee/front.svg",
  40749. extra: 1675/1640,
  40750. bottom: 162/1837
  40751. }
  40752. },
  40753. },
  40754. [
  40755. {
  40756. name: "Mortal Interaction",
  40757. height: math.unit(8, "feet"),
  40758. default: true
  40759. },
  40760. {
  40761. name: "Large",
  40762. height: math.unit(24, "feet")
  40763. },
  40764. {
  40765. name: "Kaiju",
  40766. height: math.unit(240, "feet")
  40767. },
  40768. {
  40769. name: "Megamacro",
  40770. height: math.unit(8000, "feet")
  40771. },
  40772. {
  40773. name: "Continent Cracker",
  40774. height: math.unit(24e6, "feet")
  40775. },
  40776. {
  40777. name: "Earth-Eclipsing",
  40778. height: math.unit(2.4e8, "feet")
  40779. },
  40780. {
  40781. name: "Sol-Swallowing",
  40782. height: math.unit(8e10, "feet")
  40783. },
  40784. {
  40785. name: "Galaxy Gulper",
  40786. height: math.unit(8, "galaxies")
  40787. },
  40788. {
  40789. name: "Light Universal",
  40790. height: math.unit(4, "universes")
  40791. },
  40792. {
  40793. name: "Universe Atoms",
  40794. height: math.unit(1.829e9, "universes")
  40795. },
  40796. {
  40797. name: "Light Multiversal",
  40798. height: math.unit(4, "multiverses")
  40799. },
  40800. {
  40801. name: "Multiverse Atoms",
  40802. height: math.unit(1.829e9, "multiverses")
  40803. },
  40804. {
  40805. name: "Nigh-Omnipresence",
  40806. height: math.unit(8e261, "multiverses")
  40807. },
  40808. ]
  40809. ))
  40810. characterMakers.push(() => makeCharacter(
  40811. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40812. {
  40813. front: {
  40814. height: math.unit(10, "feet"),
  40815. weight: math.unit(1500, "lb"),
  40816. name: "Front",
  40817. image: {
  40818. source: "./media/characters/miles-thestia/front.svg",
  40819. extra: 1812/1727,
  40820. bottom: 86/1898
  40821. }
  40822. },
  40823. back: {
  40824. height: math.unit(10, "feet"),
  40825. weight: math.unit(1500, "lb"),
  40826. name: "Back",
  40827. image: {
  40828. source: "./media/characters/miles-thestia/back.svg",
  40829. extra: 1799/1690,
  40830. bottom: 47/1846
  40831. }
  40832. },
  40833. frontNsfw: {
  40834. height: math.unit(10, "feet"),
  40835. weight: math.unit(1500, "lb"),
  40836. name: "Front (NSFW)",
  40837. image: {
  40838. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40839. extra: 1812/1727,
  40840. bottom: 86/1898
  40841. }
  40842. },
  40843. },
  40844. [
  40845. {
  40846. name: "Mini-Macro",
  40847. height: math.unit(10, "feet"),
  40848. default: true
  40849. },
  40850. ]
  40851. ))
  40852. characterMakers.push(() => makeCharacter(
  40853. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40854. {
  40855. front: {
  40856. height: math.unit(25, "feet"),
  40857. name: "Front",
  40858. image: {
  40859. source: "./media/characters/titan-s-wulf/front.svg",
  40860. extra: 1560/1484,
  40861. bottom: 76/1636
  40862. }
  40863. },
  40864. },
  40865. [
  40866. {
  40867. name: "Smallest",
  40868. height: math.unit(25, "feet"),
  40869. default: true
  40870. },
  40871. {
  40872. name: "Normal",
  40873. height: math.unit(200, "feet")
  40874. },
  40875. {
  40876. name: "Macro",
  40877. height: math.unit(200000, "feet")
  40878. },
  40879. {
  40880. name: "Multiversal Original",
  40881. height: math.unit(10000, "multiverses")
  40882. },
  40883. ]
  40884. ))
  40885. characterMakers.push(() => makeCharacter(
  40886. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40887. {
  40888. front: {
  40889. height: math.unit(8, "feet"),
  40890. weight: math.unit(553, "lb"),
  40891. name: "Front",
  40892. image: {
  40893. source: "./media/characters/tawendeh/front.svg",
  40894. extra: 2365/2268,
  40895. bottom: 83/2448
  40896. }
  40897. },
  40898. frontClothed: {
  40899. height: math.unit(8, "feet"),
  40900. weight: math.unit(553, "lb"),
  40901. name: "Front (Clothed)",
  40902. image: {
  40903. source: "./media/characters/tawendeh/front-clothed.svg",
  40904. extra: 2365/2268,
  40905. bottom: 83/2448
  40906. }
  40907. },
  40908. back: {
  40909. height: math.unit(8, "feet"),
  40910. weight: math.unit(553, "lb"),
  40911. name: "Back",
  40912. image: {
  40913. source: "./media/characters/tawendeh/back.svg",
  40914. extra: 2397/2294,
  40915. bottom: 42/2439
  40916. }
  40917. },
  40918. },
  40919. [
  40920. {
  40921. name: "Mortal Interaction",
  40922. height: math.unit(8, "feet"),
  40923. default: true
  40924. },
  40925. {
  40926. name: "Giant",
  40927. height: math.unit(80, "feet")
  40928. },
  40929. {
  40930. name: "Macro",
  40931. height: math.unit(800, "feet")
  40932. },
  40933. {
  40934. name: "Megamacro",
  40935. height: math.unit(8000, "feet")
  40936. },
  40937. {
  40938. name: "City-Crushing",
  40939. height: math.unit(24000, "feet")
  40940. },
  40941. {
  40942. name: "Mountain-Mashing",
  40943. height: math.unit(80000, "feet")
  40944. },
  40945. {
  40946. name: "Nation Nemesis",
  40947. height: math.unit(8e6, "feet")
  40948. },
  40949. {
  40950. name: "Continent Cracker",
  40951. height: math.unit(24e6, "feet")
  40952. },
  40953. {
  40954. name: "Earth-Eclipsing",
  40955. height: math.unit(2.4e8, "feet")
  40956. },
  40957. {
  40958. name: "Gas Giant Gulper",
  40959. height: math.unit(2.4e9, "feet")
  40960. },
  40961. {
  40962. name: "Sol-Swallowing",
  40963. height: math.unit(8e10, "feet")
  40964. },
  40965. {
  40966. name: "Galaxy Gulper",
  40967. height: math.unit(8, "galaxies")
  40968. },
  40969. {
  40970. name: "Cosmos Churner",
  40971. height: math.unit(8, "universes")
  40972. },
  40973. {
  40974. name: "Omnipotent Otter",
  40975. height: math.unit(80, "universes")
  40976. },
  40977. ]
  40978. ))
  40979. characterMakers.push(() => makeCharacter(
  40980. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40981. {
  40982. front: {
  40983. height: math.unit(2.6, "meters"),
  40984. weight: math.unit(900, "kg"),
  40985. name: "Front",
  40986. image: {
  40987. source: "./media/characters/neesha/front.svg",
  40988. extra: 1803/1653,
  40989. bottom: 128/1931
  40990. }
  40991. },
  40992. },
  40993. [
  40994. {
  40995. name: "Normal",
  40996. height: math.unit(2.6, "meters"),
  40997. default: true
  40998. },
  40999. {
  41000. name: "Macro",
  41001. height: math.unit(50, "meters")
  41002. },
  41003. ]
  41004. ))
  41005. characterMakers.push(() => makeCharacter(
  41006. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41007. {
  41008. front: {
  41009. height: math.unit(5, "feet"),
  41010. weight: math.unit(185, "lb"),
  41011. name: "Front",
  41012. image: {
  41013. source: "./media/characters/kyera/front.svg",
  41014. extra: 1875/1790,
  41015. bottom: 96/1971
  41016. }
  41017. },
  41018. },
  41019. [
  41020. {
  41021. name: "Normal",
  41022. height: math.unit(5, "feet"),
  41023. default: true
  41024. },
  41025. ]
  41026. ))
  41027. characterMakers.push(() => makeCharacter(
  41028. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41029. {
  41030. front: {
  41031. height: math.unit(7 + 6/12, "feet"),
  41032. weight: math.unit(540, "lb"),
  41033. name: "Front",
  41034. image: {
  41035. source: "./media/characters/yuko/front.svg",
  41036. extra: 1282/1222,
  41037. bottom: 101/1383
  41038. }
  41039. },
  41040. frontClothed: {
  41041. height: math.unit(7 + 6/12, "feet"),
  41042. weight: math.unit(540, "lb"),
  41043. name: "Front (Clothed)",
  41044. image: {
  41045. source: "./media/characters/yuko/front-clothed.svg",
  41046. extra: 1282/1222,
  41047. bottom: 101/1383
  41048. }
  41049. },
  41050. },
  41051. [
  41052. {
  41053. name: "Normal",
  41054. height: math.unit(7 + 6/12, "feet"),
  41055. default: true
  41056. },
  41057. {
  41058. name: "Macro",
  41059. height: math.unit(26 + 9/12, "feet")
  41060. },
  41061. {
  41062. name: "Megamacro",
  41063. height: math.unit(300, "feet")
  41064. },
  41065. {
  41066. name: "Gigamacro",
  41067. height: math.unit(5000, "feet")
  41068. },
  41069. {
  41070. name: "Planetary",
  41071. height: math.unit(10000, "miles")
  41072. },
  41073. ]
  41074. ))
  41075. characterMakers.push(() => makeCharacter(
  41076. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41077. {
  41078. front: {
  41079. height: math.unit(8 + 2/12, "feet"),
  41080. weight: math.unit(600, "lb"),
  41081. name: "Front",
  41082. image: {
  41083. source: "./media/characters/deam-nitrel/front.svg",
  41084. extra: 1308/1234,
  41085. bottom: 125/1433
  41086. }
  41087. },
  41088. },
  41089. [
  41090. {
  41091. name: "Normal",
  41092. height: math.unit(8 + 2/12, "feet"),
  41093. default: true
  41094. },
  41095. ]
  41096. ))
  41097. characterMakers.push(() => makeCharacter(
  41098. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41099. {
  41100. front: {
  41101. height: math.unit(6.1, "feet"),
  41102. weight: math.unit(180, "lb"),
  41103. name: "Front",
  41104. image: {
  41105. source: "./media/characters/skyress/front.svg",
  41106. extra: 1045/915,
  41107. bottom: 28/1073
  41108. }
  41109. },
  41110. maw: {
  41111. height: math.unit(1, "feet"),
  41112. name: "Maw",
  41113. image: {
  41114. source: "./media/characters/skyress/maw.svg"
  41115. }
  41116. },
  41117. },
  41118. [
  41119. {
  41120. name: "Normal",
  41121. height: math.unit(6.1, "feet"),
  41122. default: true
  41123. },
  41124. {
  41125. name: "Macro",
  41126. height: math.unit(200, "feet")
  41127. },
  41128. ]
  41129. ))
  41130. characterMakers.push(() => makeCharacter(
  41131. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41132. {
  41133. front: {
  41134. height: math.unit(4 + 2/12, "feet"),
  41135. weight: math.unit(40, "kg"),
  41136. name: "Front",
  41137. image: {
  41138. source: "./media/characters/amethyst-jones/front.svg",
  41139. extra: 1220/1150,
  41140. bottom: 101/1321
  41141. }
  41142. },
  41143. },
  41144. [
  41145. {
  41146. name: "Normal",
  41147. height: math.unit(4 + 2/12, "feet"),
  41148. default: true
  41149. },
  41150. ]
  41151. ))
  41152. characterMakers.push(() => makeCharacter(
  41153. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41154. {
  41155. front: {
  41156. height: math.unit(1.7, "m"),
  41157. weight: math.unit(135, "lb"),
  41158. name: "Front",
  41159. image: {
  41160. source: "./media/characters/jade/front.svg",
  41161. extra: 1818/1767,
  41162. bottom: 32/1850
  41163. }
  41164. },
  41165. back: {
  41166. height: math.unit(1.7, "m"),
  41167. weight: math.unit(135, "lb"),
  41168. name: "Back",
  41169. image: {
  41170. source: "./media/characters/jade/back.svg",
  41171. extra: 1869/1809,
  41172. bottom: 35/1904
  41173. }
  41174. },
  41175. hand: {
  41176. height: math.unit(0.24, "m"),
  41177. name: "Hand",
  41178. image: {
  41179. source: "./media/characters/jade/hand.svg"
  41180. }
  41181. },
  41182. foot: {
  41183. height: math.unit(0.263, "m"),
  41184. name: "Foot",
  41185. image: {
  41186. source: "./media/characters/jade/foot.svg"
  41187. }
  41188. },
  41189. dick: {
  41190. height: math.unit(0.47, "m"),
  41191. name: "Dick",
  41192. image: {
  41193. source: "./media/characters/jade/dick.svg"
  41194. }
  41195. },
  41196. },
  41197. [
  41198. {
  41199. name: "Micro",
  41200. height: math.unit(22, "cm")
  41201. },
  41202. {
  41203. name: "Normal",
  41204. height: math.unit(1.7, "m"),
  41205. default: true
  41206. },
  41207. {
  41208. name: "Macro",
  41209. height: math.unit(152, "m")
  41210. },
  41211. ]
  41212. ))
  41213. characterMakers.push(() => makeCharacter(
  41214. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41215. {
  41216. front: {
  41217. height: math.unit(100, "miles"),
  41218. weight: math.unit(20000, "tons"),
  41219. name: "Front",
  41220. image: {
  41221. source: "./media/characters/cookie/front.svg",
  41222. extra: 1125/1070,
  41223. bottom: 30/1155
  41224. }
  41225. },
  41226. },
  41227. [
  41228. {
  41229. name: "Big",
  41230. height: math.unit(50, "feet")
  41231. },
  41232. {
  41233. name: "Macro",
  41234. height: math.unit(100, "miles"),
  41235. default: true
  41236. },
  41237. {
  41238. name: "Megamacro",
  41239. height: math.unit(90000, "miles")
  41240. },
  41241. ]
  41242. ))
  41243. characterMakers.push(() => makeCharacter(
  41244. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41245. {
  41246. front: {
  41247. height: math.unit(6, "feet"),
  41248. weight: math.unit(145, "lb"),
  41249. name: "Front",
  41250. image: {
  41251. source: "./media/characters/farzian/front.svg",
  41252. extra: 1902/1693,
  41253. bottom: 108/2010
  41254. }
  41255. },
  41256. },
  41257. [
  41258. {
  41259. name: "Macro",
  41260. height: math.unit(500, "feet"),
  41261. default: true
  41262. },
  41263. ]
  41264. ))
  41265. characterMakers.push(() => makeCharacter(
  41266. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41267. {
  41268. front: {
  41269. height: math.unit(3 + 6/12, "feet"),
  41270. weight: math.unit(50, "lb"),
  41271. name: "Front",
  41272. image: {
  41273. source: "./media/characters/kimberly-tilson/front.svg",
  41274. extra: 1400/1322,
  41275. bottom: 36/1436
  41276. }
  41277. },
  41278. back: {
  41279. height: math.unit(3 + 6/12, "feet"),
  41280. weight: math.unit(50, "lb"),
  41281. name: "Back",
  41282. image: {
  41283. source: "./media/characters/kimberly-tilson/back.svg",
  41284. extra: 1370/1307,
  41285. bottom: 20/1390
  41286. }
  41287. },
  41288. },
  41289. [
  41290. {
  41291. name: "Normal",
  41292. height: math.unit(3 + 6/12, "feet"),
  41293. default: true
  41294. },
  41295. ]
  41296. ))
  41297. characterMakers.push(() => makeCharacter(
  41298. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41299. {
  41300. front: {
  41301. height: math.unit(1148, "feet"),
  41302. weight: math.unit(34057, "lb"),
  41303. name: "Front",
  41304. image: {
  41305. source: "./media/characters/harthos/front.svg",
  41306. extra: 1391/1339,
  41307. bottom: 13/1404
  41308. }
  41309. },
  41310. },
  41311. [
  41312. {
  41313. name: "Macro",
  41314. height: math.unit(1148, "feet"),
  41315. default: true
  41316. },
  41317. ]
  41318. ))
  41319. characterMakers.push(() => makeCharacter(
  41320. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41321. {
  41322. front: {
  41323. height: math.unit(15, "feet"),
  41324. name: "Front",
  41325. image: {
  41326. source: "./media/characters/hypatia/front.svg",
  41327. extra: 1653/1591,
  41328. bottom: 79/1732
  41329. }
  41330. },
  41331. },
  41332. [
  41333. {
  41334. name: "Normal",
  41335. height: math.unit(15, "feet")
  41336. },
  41337. {
  41338. name: "Small",
  41339. height: math.unit(300, "feet")
  41340. },
  41341. {
  41342. name: "Macro",
  41343. height: math.unit(2500, "feet"),
  41344. default: true
  41345. },
  41346. {
  41347. name: "Mega Macro",
  41348. height: math.unit(1500, "miles")
  41349. },
  41350. {
  41351. name: "Giga Macro",
  41352. height: math.unit(1.5e6, "miles")
  41353. },
  41354. ]
  41355. ))
  41356. characterMakers.push(() => makeCharacter(
  41357. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41358. {
  41359. front: {
  41360. height: math.unit(6, "feet"),
  41361. weight: math.unit(200, "lb"),
  41362. name: "Front",
  41363. image: {
  41364. source: "./media/characters/wulver/front.svg",
  41365. extra: 1724/1632,
  41366. bottom: 130/1854
  41367. }
  41368. },
  41369. frontNsfw: {
  41370. height: math.unit(6, "feet"),
  41371. weight: math.unit(200, "lb"),
  41372. name: "Front (NSFW)",
  41373. image: {
  41374. source: "./media/characters/wulver/front-nsfw.svg",
  41375. extra: 1724/1632,
  41376. bottom: 130/1854
  41377. }
  41378. },
  41379. },
  41380. [
  41381. {
  41382. name: "Human-Sized",
  41383. height: math.unit(6, "feet")
  41384. },
  41385. {
  41386. name: "Normal",
  41387. height: math.unit(4, "meters"),
  41388. default: true
  41389. },
  41390. {
  41391. name: "Large",
  41392. height: math.unit(6, "m")
  41393. },
  41394. ]
  41395. ))
  41396. characterMakers.push(() => makeCharacter(
  41397. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41398. {
  41399. front: {
  41400. height: math.unit(7, "feet"),
  41401. name: "Front",
  41402. image: {
  41403. source: "./media/characters/maru/front.svg",
  41404. extra: 1595/1570,
  41405. bottom: 0/1595
  41406. }
  41407. },
  41408. },
  41409. [
  41410. {
  41411. name: "Normal",
  41412. height: math.unit(7, "feet"),
  41413. default: true
  41414. },
  41415. {
  41416. name: "Macro",
  41417. height: math.unit(700, "feet")
  41418. },
  41419. {
  41420. name: "Mega Macro",
  41421. height: math.unit(25, "miles")
  41422. },
  41423. ]
  41424. ))
  41425. characterMakers.push(() => makeCharacter(
  41426. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41427. {
  41428. front: {
  41429. height: math.unit(6, "feet"),
  41430. weight: math.unit(170, "lb"),
  41431. name: "Front",
  41432. image: {
  41433. source: "./media/characters/xenon/front.svg",
  41434. extra: 1376/1305,
  41435. bottom: 56/1432
  41436. }
  41437. },
  41438. back: {
  41439. height: math.unit(6, "feet"),
  41440. weight: math.unit(170, "lb"),
  41441. name: "Back",
  41442. image: {
  41443. source: "./media/characters/xenon/back.svg",
  41444. extra: 1328/1259,
  41445. bottom: 95/1423
  41446. }
  41447. },
  41448. maw: {
  41449. height: math.unit(0.52, "feet"),
  41450. name: "Maw",
  41451. image: {
  41452. source: "./media/characters/xenon/maw.svg"
  41453. }
  41454. },
  41455. handLeft: {
  41456. height: math.unit(0.82 * 169 / 153, "feet"),
  41457. name: "Hand (Left)",
  41458. image: {
  41459. source: "./media/characters/xenon/hand-left.svg"
  41460. }
  41461. },
  41462. handRight: {
  41463. height: math.unit(0.82, "feet"),
  41464. name: "Hand (Right)",
  41465. image: {
  41466. source: "./media/characters/xenon/hand-right.svg"
  41467. }
  41468. },
  41469. footLeft: {
  41470. height: math.unit(1.13, "feet"),
  41471. name: "Foot (Left)",
  41472. image: {
  41473. source: "./media/characters/xenon/foot-left.svg"
  41474. }
  41475. },
  41476. footRight: {
  41477. height: math.unit(1.13 * 194 / 196, "feet"),
  41478. name: "Foot (Right)",
  41479. image: {
  41480. source: "./media/characters/xenon/foot-right.svg"
  41481. }
  41482. },
  41483. },
  41484. [
  41485. {
  41486. name: "Micro",
  41487. height: math.unit(0.8, "inches")
  41488. },
  41489. {
  41490. name: "Normal",
  41491. height: math.unit(6, "feet")
  41492. },
  41493. {
  41494. name: "Macro",
  41495. height: math.unit(50, "feet"),
  41496. default: true
  41497. },
  41498. {
  41499. name: "Macro+",
  41500. height: math.unit(250, "feet")
  41501. },
  41502. {
  41503. name: "Megamacro",
  41504. height: math.unit(1500, "feet")
  41505. },
  41506. ]
  41507. ))
  41508. characterMakers.push(() => makeCharacter(
  41509. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41510. {
  41511. front: {
  41512. height: math.unit(7 + 5/12, "feet"),
  41513. name: "Front",
  41514. image: {
  41515. source: "./media/characters/zane/front.svg",
  41516. extra: 1260/1203,
  41517. bottom: 94/1354
  41518. }
  41519. },
  41520. back: {
  41521. height: math.unit(5.05, "feet"),
  41522. name: "Back",
  41523. image: {
  41524. source: "./media/characters/zane/back.svg",
  41525. extra: 893/829,
  41526. bottom: 30/923
  41527. }
  41528. },
  41529. werewolf: {
  41530. height: math.unit(11, "feet"),
  41531. name: "Werewolf",
  41532. image: {
  41533. source: "./media/characters/zane/werewolf.svg",
  41534. extra: 1383/1323,
  41535. bottom: 89/1472
  41536. }
  41537. },
  41538. foot: {
  41539. height: math.unit(1.46, "feet"),
  41540. name: "Foot",
  41541. image: {
  41542. source: "./media/characters/zane/foot.svg"
  41543. }
  41544. },
  41545. footFront: {
  41546. height: math.unit(0.784, "feet"),
  41547. name: "Foot (Front)",
  41548. image: {
  41549. source: "./media/characters/zane/foot-front.svg"
  41550. }
  41551. },
  41552. dick: {
  41553. height: math.unit(1.95, "feet"),
  41554. name: "Dick",
  41555. image: {
  41556. source: "./media/characters/zane/dick.svg"
  41557. }
  41558. },
  41559. dickWerewolf: {
  41560. height: math.unit(3.77, "feet"),
  41561. name: "Dick (Werewolf)",
  41562. image: {
  41563. source: "./media/characters/zane/dick.svg"
  41564. }
  41565. },
  41566. },
  41567. [
  41568. {
  41569. name: "Normal",
  41570. height: math.unit(7 + 5/12, "feet"),
  41571. default: true
  41572. },
  41573. ]
  41574. ))
  41575. characterMakers.push(() => makeCharacter(
  41576. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41577. {
  41578. front: {
  41579. height: math.unit(6 + 2/12, "feet"),
  41580. weight: math.unit(284, "lb"),
  41581. name: "Front",
  41582. image: {
  41583. source: "./media/characters/benni-desparque/front.svg",
  41584. extra: 1353/1126,
  41585. bottom: 69/1422
  41586. }
  41587. },
  41588. },
  41589. [
  41590. {
  41591. name: "Civilian",
  41592. height: math.unit(6 + 2/12, "feet")
  41593. },
  41594. {
  41595. name: "Normal",
  41596. height: math.unit(98, "feet"),
  41597. default: true
  41598. },
  41599. {
  41600. name: "Kaiju Fighter",
  41601. height: math.unit(268, "feet")
  41602. },
  41603. ]
  41604. ))
  41605. characterMakers.push(() => makeCharacter(
  41606. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41607. {
  41608. front: {
  41609. height: math.unit(5, "feet"),
  41610. weight: math.unit(105, "lb"),
  41611. name: "Front",
  41612. image: {
  41613. source: "./media/characters/maxine/front.svg",
  41614. extra: 1386/1250,
  41615. bottom: 71/1457
  41616. }
  41617. },
  41618. },
  41619. [
  41620. {
  41621. name: "Normal",
  41622. height: math.unit(5, "feet"),
  41623. default: true
  41624. },
  41625. ]
  41626. ))
  41627. characterMakers.push(() => makeCharacter(
  41628. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41629. {
  41630. front: {
  41631. height: math.unit(11 + 7/12, "feet"),
  41632. weight: math.unit(9576, "lb"),
  41633. name: "Front",
  41634. image: {
  41635. source: "./media/characters/scaly/front.svg",
  41636. extra: 888/867,
  41637. bottom: 36/924
  41638. }
  41639. },
  41640. },
  41641. [
  41642. {
  41643. name: "Normal",
  41644. height: math.unit(11 + 7/12, "feet"),
  41645. default: true
  41646. },
  41647. ]
  41648. ))
  41649. characterMakers.push(() => makeCharacter(
  41650. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41651. {
  41652. front: {
  41653. height: math.unit(6 + 3/12, "feet"),
  41654. name: "Front",
  41655. image: {
  41656. source: "./media/characters/saelria/front.svg",
  41657. extra: 1243/1138,
  41658. bottom: 46/1289
  41659. }
  41660. },
  41661. },
  41662. [
  41663. {
  41664. name: "Micro",
  41665. height: math.unit(6, "inches"),
  41666. },
  41667. {
  41668. name: "Normal",
  41669. height: math.unit(6 + 3/12, "feet"),
  41670. default: true
  41671. },
  41672. {
  41673. name: "Macro",
  41674. height: math.unit(25, "feet")
  41675. },
  41676. ]
  41677. ))
  41678. characterMakers.push(() => makeCharacter(
  41679. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41680. {
  41681. front: {
  41682. height: math.unit(80, "meters"),
  41683. weight: math.unit(7000, "tonnes"),
  41684. name: "Front",
  41685. image: {
  41686. source: "./media/characters/tef/front.svg",
  41687. extra: 2036/1991,
  41688. bottom: 54/2090
  41689. }
  41690. },
  41691. back: {
  41692. height: math.unit(80, "meters"),
  41693. weight: math.unit(7000, "tonnes"),
  41694. name: "Back",
  41695. image: {
  41696. source: "./media/characters/tef/back.svg",
  41697. extra: 2036/1991,
  41698. bottom: 54/2090
  41699. }
  41700. },
  41701. },
  41702. [
  41703. {
  41704. name: "Macro",
  41705. height: math.unit(80, "meters"),
  41706. default: true
  41707. },
  41708. ]
  41709. ))
  41710. characterMakers.push(() => makeCharacter(
  41711. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41712. {
  41713. front: {
  41714. height: math.unit(13, "feet"),
  41715. weight: math.unit(6, "tons"),
  41716. name: "Front",
  41717. image: {
  41718. source: "./media/characters/rover/front.svg",
  41719. extra: 1233/1156,
  41720. bottom: 50/1283
  41721. }
  41722. },
  41723. back: {
  41724. height: math.unit(13, "feet"),
  41725. weight: math.unit(6, "tons"),
  41726. name: "Back",
  41727. image: {
  41728. source: "./media/characters/rover/back.svg",
  41729. extra: 1327/1258,
  41730. bottom: 39/1366
  41731. }
  41732. },
  41733. },
  41734. [
  41735. {
  41736. name: "Normal",
  41737. height: math.unit(13, "feet"),
  41738. default: true
  41739. },
  41740. {
  41741. name: "Macro",
  41742. height: math.unit(1300, "feet")
  41743. },
  41744. {
  41745. name: "Megamacro",
  41746. height: math.unit(1300, "miles")
  41747. },
  41748. {
  41749. name: "Gigamacro",
  41750. height: math.unit(1300000, "miles")
  41751. },
  41752. ]
  41753. ))
  41754. characterMakers.push(() => makeCharacter(
  41755. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41756. {
  41757. front: {
  41758. height: math.unit(6, "feet"),
  41759. weight: math.unit(150, "lb"),
  41760. name: "Front",
  41761. image: {
  41762. source: "./media/characters/ariz/front.svg",
  41763. extra: 1401/1346,
  41764. bottom: 5/1406
  41765. }
  41766. },
  41767. },
  41768. [
  41769. {
  41770. name: "Normal",
  41771. height: math.unit(10, "feet"),
  41772. default: true
  41773. },
  41774. ]
  41775. ))
  41776. characterMakers.push(() => makeCharacter(
  41777. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41778. {
  41779. front: {
  41780. height: math.unit(6, "feet"),
  41781. weight: math.unit(140, "lb"),
  41782. name: "Front",
  41783. image: {
  41784. source: "./media/characters/sigrun/front.svg",
  41785. extra: 1418/1359,
  41786. bottom: 27/1445
  41787. }
  41788. },
  41789. },
  41790. [
  41791. {
  41792. name: "Macro",
  41793. height: math.unit(35, "feet"),
  41794. default: true
  41795. },
  41796. ]
  41797. ))
  41798. characterMakers.push(() => makeCharacter(
  41799. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41800. {
  41801. front: {
  41802. height: math.unit(6, "feet"),
  41803. weight: math.unit(150, "lb"),
  41804. name: "Front",
  41805. image: {
  41806. source: "./media/characters/numin/front.svg",
  41807. extra: 1433/1388,
  41808. bottom: 12/1445
  41809. }
  41810. },
  41811. },
  41812. [
  41813. {
  41814. name: "Macro",
  41815. height: math.unit(21.5, "km"),
  41816. default: true
  41817. },
  41818. ]
  41819. ))
  41820. characterMakers.push(() => makeCharacter(
  41821. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41822. {
  41823. front: {
  41824. height: math.unit(6, "feet"),
  41825. weight: math.unit(463, "lb"),
  41826. name: "Front",
  41827. image: {
  41828. source: "./media/characters/melwa/front.svg",
  41829. extra: 1307/1248,
  41830. bottom: 93/1400
  41831. }
  41832. },
  41833. },
  41834. [
  41835. {
  41836. name: "Macro",
  41837. height: math.unit(50, "meters"),
  41838. default: true
  41839. },
  41840. ]
  41841. ))
  41842. characterMakers.push(() => makeCharacter(
  41843. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41844. {
  41845. front: {
  41846. height: math.unit(325, "feet"),
  41847. name: "Front",
  41848. image: {
  41849. source: "./media/characters/zorkaiju/front.svg",
  41850. extra: 1955/1814,
  41851. bottom: 40/1995
  41852. }
  41853. },
  41854. frontExtended: {
  41855. height: math.unit(325, "feet"),
  41856. name: "Front (Extended)",
  41857. image: {
  41858. source: "./media/characters/zorkaiju/front-extended.svg",
  41859. extra: 1955/1814,
  41860. bottom: 40/1995
  41861. }
  41862. },
  41863. side: {
  41864. height: math.unit(325, "feet"),
  41865. name: "Side",
  41866. image: {
  41867. source: "./media/characters/zorkaiju/side.svg",
  41868. extra: 1495/1396,
  41869. bottom: 17/1512
  41870. }
  41871. },
  41872. sideExtended: {
  41873. height: math.unit(325, "feet"),
  41874. name: "Side (Extended)",
  41875. image: {
  41876. source: "./media/characters/zorkaiju/side-extended.svg",
  41877. extra: 1495/1396,
  41878. bottom: 17/1512
  41879. }
  41880. },
  41881. back: {
  41882. height: math.unit(325, "feet"),
  41883. name: "Back",
  41884. image: {
  41885. source: "./media/characters/zorkaiju/back.svg",
  41886. extra: 1959/1821,
  41887. bottom: 31/1990
  41888. }
  41889. },
  41890. backExtended: {
  41891. height: math.unit(325, "feet"),
  41892. name: "Back (Extended)",
  41893. image: {
  41894. source: "./media/characters/zorkaiju/back-extended.svg",
  41895. extra: 1959/1821,
  41896. bottom: 31/1990
  41897. }
  41898. },
  41899. hand: {
  41900. height: math.unit(58.4, "feet"),
  41901. name: "Hand",
  41902. image: {
  41903. source: "./media/characters/zorkaiju/hand.svg"
  41904. }
  41905. },
  41906. handExtended: {
  41907. height: math.unit(61.4, "feet"),
  41908. name: "Hand (Extended)",
  41909. image: {
  41910. source: "./media/characters/zorkaiju/hand-extended.svg"
  41911. }
  41912. },
  41913. foot: {
  41914. height: math.unit(95, "feet"),
  41915. name: "Foot",
  41916. image: {
  41917. source: "./media/characters/zorkaiju/foot.svg"
  41918. }
  41919. },
  41920. leftArm: {
  41921. height: math.unit(59, "feet"),
  41922. name: "Left Arm",
  41923. image: {
  41924. source: "./media/characters/zorkaiju/left-arm.svg"
  41925. }
  41926. },
  41927. rightArm: {
  41928. height: math.unit(59, "feet"),
  41929. name: "Right Arm",
  41930. image: {
  41931. source: "./media/characters/zorkaiju/right-arm.svg"
  41932. }
  41933. },
  41934. leftArmExtended: {
  41935. height: math.unit(59 * 1.033546, "feet"),
  41936. name: "Left Arm (Extended)",
  41937. image: {
  41938. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41939. }
  41940. },
  41941. rightArmExtended: {
  41942. height: math.unit(59 * 1.0496, "feet"),
  41943. name: "Right Arm (Extended)",
  41944. image: {
  41945. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41946. }
  41947. },
  41948. tail: {
  41949. height: math.unit(104, "feet"),
  41950. name: "Tail",
  41951. image: {
  41952. source: "./media/characters/zorkaiju/tail.svg"
  41953. }
  41954. },
  41955. tailExtended: {
  41956. height: math.unit(104, "feet"),
  41957. name: "Tail (Extended)",
  41958. image: {
  41959. source: "./media/characters/zorkaiju/tail-extended.svg"
  41960. }
  41961. },
  41962. tailBottom: {
  41963. height: math.unit(104, "feet"),
  41964. name: "Tail Bottom",
  41965. image: {
  41966. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41967. }
  41968. },
  41969. crystal: {
  41970. height: math.unit(27.54, "feet"),
  41971. name: "Crystal",
  41972. image: {
  41973. source: "./media/characters/zorkaiju/crystal.svg"
  41974. }
  41975. },
  41976. },
  41977. [
  41978. {
  41979. name: "Kaiju",
  41980. height: math.unit(325, "feet"),
  41981. default: true
  41982. },
  41983. ]
  41984. ))
  41985. characterMakers.push(() => makeCharacter(
  41986. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41987. {
  41988. front: {
  41989. height: math.unit(6 + 1/12, "feet"),
  41990. weight: math.unit(115, "lb"),
  41991. name: "Front",
  41992. image: {
  41993. source: "./media/characters/bailey-belfry/front.svg",
  41994. extra: 1240/1121,
  41995. bottom: 101/1341
  41996. }
  41997. },
  41998. },
  41999. [
  42000. {
  42001. name: "Normal",
  42002. height: math.unit(6 + 1/12, "feet"),
  42003. default: true
  42004. },
  42005. ]
  42006. ))
  42007. characterMakers.push(() => makeCharacter(
  42008. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42009. {
  42010. side: {
  42011. height: math.unit(4, "meters"),
  42012. weight: math.unit(250, "kg"),
  42013. name: "Side",
  42014. image: {
  42015. source: "./media/characters/blacky/side.svg",
  42016. extra: 1027/919,
  42017. bottom: 43/1070
  42018. }
  42019. },
  42020. maw: {
  42021. height: math.unit(1, "meters"),
  42022. name: "Maw",
  42023. image: {
  42024. source: "./media/characters/blacky/maw.svg"
  42025. }
  42026. },
  42027. paw: {
  42028. height: math.unit(1, "meters"),
  42029. name: "Paw",
  42030. image: {
  42031. source: "./media/characters/blacky/paw.svg"
  42032. }
  42033. },
  42034. },
  42035. [
  42036. {
  42037. name: "Normal",
  42038. height: math.unit(4, "meters"),
  42039. default: true
  42040. },
  42041. ]
  42042. ))
  42043. characterMakers.push(() => makeCharacter(
  42044. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42045. {
  42046. front: {
  42047. height: math.unit(170, "cm"),
  42048. weight: math.unit(66, "kg"),
  42049. name: "Front",
  42050. image: {
  42051. source: "./media/characters/thux-ei/front.svg",
  42052. extra: 1109/1011,
  42053. bottom: 8/1117
  42054. }
  42055. },
  42056. },
  42057. [
  42058. {
  42059. name: "Normal",
  42060. height: math.unit(170, "cm"),
  42061. default: true
  42062. },
  42063. ]
  42064. ))
  42065. characterMakers.push(() => makeCharacter(
  42066. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42067. {
  42068. front: {
  42069. height: math.unit(5, "feet"),
  42070. weight: math.unit(120, "lb"),
  42071. name: "Front",
  42072. image: {
  42073. source: "./media/characters/roxanne-voltaire/front.svg",
  42074. extra: 1901/1779,
  42075. bottom: 53/1954
  42076. }
  42077. },
  42078. },
  42079. [
  42080. {
  42081. name: "Normal",
  42082. height: math.unit(5, "feet"),
  42083. default: true
  42084. },
  42085. {
  42086. name: "Giant",
  42087. height: math.unit(50, "feet")
  42088. },
  42089. {
  42090. name: "Titan",
  42091. height: math.unit(500, "feet")
  42092. },
  42093. {
  42094. name: "Macro",
  42095. height: math.unit(5000, "feet")
  42096. },
  42097. {
  42098. name: "Megamacro",
  42099. height: math.unit(50000, "feet")
  42100. },
  42101. {
  42102. name: "Gigamacro",
  42103. height: math.unit(500000, "feet")
  42104. },
  42105. {
  42106. name: "Teramacro",
  42107. height: math.unit(5e6, "feet")
  42108. },
  42109. ]
  42110. ))
  42111. characterMakers.push(() => makeCharacter(
  42112. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42113. {
  42114. front: {
  42115. height: math.unit(6 + 2/12, "feet"),
  42116. name: "Front",
  42117. image: {
  42118. source: "./media/characters/squeaks/front.svg",
  42119. extra: 1823/1768,
  42120. bottom: 138/1961
  42121. }
  42122. },
  42123. },
  42124. [
  42125. {
  42126. name: "Micro",
  42127. height: math.unit(0.5, "inches")
  42128. },
  42129. {
  42130. name: "Normal",
  42131. height: math.unit(6 + 2/12, "feet"),
  42132. default: true
  42133. },
  42134. {
  42135. name: "Macro",
  42136. height: math.unit(600, "feet")
  42137. },
  42138. ]
  42139. ))
  42140. characterMakers.push(() => makeCharacter(
  42141. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42142. {
  42143. front: {
  42144. height: math.unit(1.72, "meters"),
  42145. name: "Front",
  42146. image: {
  42147. source: "./media/characters/archinger/front.svg",
  42148. extra: 1861/1675,
  42149. bottom: 125/1986
  42150. }
  42151. },
  42152. back: {
  42153. height: math.unit(1.72, "meters"),
  42154. name: "Back",
  42155. image: {
  42156. source: "./media/characters/archinger/back.svg",
  42157. extra: 1844/1701,
  42158. bottom: 104/1948
  42159. }
  42160. },
  42161. cock: {
  42162. height: math.unit(0.59, "feet"),
  42163. name: "Cock",
  42164. image: {
  42165. source: "./media/characters/archinger/cock.svg"
  42166. }
  42167. },
  42168. },
  42169. [
  42170. {
  42171. name: "Normal",
  42172. height: math.unit(1.72, "meters"),
  42173. default: true
  42174. },
  42175. {
  42176. name: "Macro",
  42177. height: math.unit(84, "meters")
  42178. },
  42179. {
  42180. name: "Macro+",
  42181. height: math.unit(112, "meters")
  42182. },
  42183. {
  42184. name: "Macro++",
  42185. height: math.unit(960, "meters")
  42186. },
  42187. {
  42188. name: "Macro+++",
  42189. height: math.unit(4, "km")
  42190. },
  42191. {
  42192. name: "Macro++++",
  42193. height: math.unit(48, "km")
  42194. },
  42195. {
  42196. name: "Macro+++++",
  42197. height: math.unit(4500, "km")
  42198. },
  42199. ]
  42200. ))
  42201. characterMakers.push(() => makeCharacter(
  42202. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42203. {
  42204. front: {
  42205. height: math.unit(5 + 5/12, "feet"),
  42206. name: "Front",
  42207. image: {
  42208. source: "./media/characters/alsnapz/front.svg",
  42209. extra: 1157/1065,
  42210. bottom: 42/1199
  42211. }
  42212. },
  42213. },
  42214. [
  42215. {
  42216. name: "Normal",
  42217. height: math.unit(5 + 5/12, "feet"),
  42218. default: true
  42219. },
  42220. ]
  42221. ))
  42222. characterMakers.push(() => makeCharacter(
  42223. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42224. {
  42225. side: {
  42226. height: math.unit(3.2, "earths"),
  42227. name: "Side",
  42228. image: {
  42229. source: "./media/characters/mag/side.svg",
  42230. extra: 1331/1008,
  42231. bottom: 52/1383
  42232. }
  42233. },
  42234. wing: {
  42235. height: math.unit(1.94, "earths"),
  42236. name: "Wing",
  42237. image: {
  42238. source: "./media/characters/mag/wing.svg"
  42239. }
  42240. },
  42241. dick: {
  42242. height: math.unit(1.8, "earths"),
  42243. name: "Dick",
  42244. image: {
  42245. source: "./media/characters/mag/dick.svg"
  42246. }
  42247. },
  42248. ass: {
  42249. height: math.unit(1.33, "earths"),
  42250. name: "Ass",
  42251. image: {
  42252. source: "./media/characters/mag/ass.svg"
  42253. }
  42254. },
  42255. head: {
  42256. height: math.unit(1.1, "earths"),
  42257. name: "Head",
  42258. image: {
  42259. source: "./media/characters/mag/head.svg"
  42260. }
  42261. },
  42262. maw: {
  42263. height: math.unit(1.62, "earths"),
  42264. name: "Maw",
  42265. image: {
  42266. source: "./media/characters/mag/maw.svg"
  42267. }
  42268. },
  42269. },
  42270. [
  42271. {
  42272. name: "Small",
  42273. height: math.unit(162, "feet")
  42274. },
  42275. {
  42276. name: "Normal",
  42277. height: math.unit(3.2, "earths"),
  42278. default: true
  42279. },
  42280. ]
  42281. ))
  42282. characterMakers.push(() => makeCharacter(
  42283. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42284. {
  42285. front: {
  42286. height: math.unit(512, "feet"),
  42287. weight: math.unit(63509, "tonnes"),
  42288. name: "Front",
  42289. image: {
  42290. source: "./media/characters/vorrel-harroc/front.svg",
  42291. extra: 1075/1063,
  42292. bottom: 62/1137
  42293. }
  42294. },
  42295. },
  42296. [
  42297. {
  42298. name: "Normal",
  42299. height: math.unit(10, "feet")
  42300. },
  42301. {
  42302. name: "Macro",
  42303. height: math.unit(512, "feet"),
  42304. default: true
  42305. },
  42306. {
  42307. name: "Megamacro",
  42308. height: math.unit(256, "miles")
  42309. },
  42310. {
  42311. name: "Gigamacro",
  42312. height: math.unit(4096, "miles")
  42313. },
  42314. ]
  42315. ))
  42316. characterMakers.push(() => makeCharacter(
  42317. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42318. {
  42319. side: {
  42320. height: math.unit(50, "feet"),
  42321. name: "Side",
  42322. image: {
  42323. source: "./media/characters/froimar/side.svg",
  42324. extra: 855/638,
  42325. bottom: 99/954
  42326. }
  42327. },
  42328. },
  42329. [
  42330. {
  42331. name: "Macro",
  42332. height: math.unit(50, "feet"),
  42333. default: true
  42334. },
  42335. ]
  42336. ))
  42337. characterMakers.push(() => makeCharacter(
  42338. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42339. {
  42340. front: {
  42341. height: math.unit(210, "miles"),
  42342. name: "Front",
  42343. image: {
  42344. source: "./media/characters/timothy/front.svg",
  42345. extra: 1007/943,
  42346. bottom: 62/1069
  42347. }
  42348. },
  42349. frontSkirt: {
  42350. height: math.unit(210, "miles"),
  42351. name: "Front (Skirt)",
  42352. image: {
  42353. source: "./media/characters/timothy/front-skirt.svg",
  42354. extra: 1007/943,
  42355. bottom: 62/1069
  42356. }
  42357. },
  42358. frontCoat: {
  42359. height: math.unit(210, "miles"),
  42360. name: "Front (Coat)",
  42361. image: {
  42362. source: "./media/characters/timothy/front-coat.svg",
  42363. extra: 1007/943,
  42364. bottom: 62/1069
  42365. }
  42366. },
  42367. },
  42368. [
  42369. {
  42370. name: "Macro",
  42371. height: math.unit(210, "miles"),
  42372. default: true
  42373. },
  42374. {
  42375. name: "Megamacro",
  42376. height: math.unit(210000, "miles")
  42377. },
  42378. ]
  42379. ))
  42380. characterMakers.push(() => makeCharacter(
  42381. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42382. {
  42383. front: {
  42384. height: math.unit(188, "feet"),
  42385. name: "Front",
  42386. image: {
  42387. source: "./media/characters/pyotr/front.svg",
  42388. extra: 1912/1826,
  42389. bottom: 18/1930
  42390. }
  42391. },
  42392. },
  42393. [
  42394. {
  42395. name: "Macro",
  42396. height: math.unit(188, "feet"),
  42397. default: true
  42398. },
  42399. {
  42400. name: "Megamacro",
  42401. height: math.unit(8, "miles")
  42402. },
  42403. ]
  42404. ))
  42405. characterMakers.push(() => makeCharacter(
  42406. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42407. {
  42408. side: {
  42409. height: math.unit(10, "feet"),
  42410. weight: math.unit(4500, "lb"),
  42411. name: "Side",
  42412. image: {
  42413. source: "./media/characters/ackart/side.svg",
  42414. extra: 1776/1668,
  42415. bottom: 116/1892
  42416. }
  42417. },
  42418. },
  42419. [
  42420. {
  42421. name: "Normal",
  42422. height: math.unit(10, "feet"),
  42423. default: true
  42424. },
  42425. ]
  42426. ))
  42427. characterMakers.push(() => makeCharacter(
  42428. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42429. {
  42430. side: {
  42431. height: math.unit(21, "feet"),
  42432. name: "Side",
  42433. image: {
  42434. source: "./media/characters/nolow/side.svg",
  42435. extra: 1484/1434,
  42436. bottom: 85/1569
  42437. }
  42438. },
  42439. sideErect: {
  42440. height: math.unit(21, "feet"),
  42441. name: "Side-erect",
  42442. image: {
  42443. source: "./media/characters/nolow/side-erect.svg",
  42444. extra: 1484/1434,
  42445. bottom: 85/1569
  42446. }
  42447. },
  42448. },
  42449. [
  42450. {
  42451. name: "Regular",
  42452. height: math.unit(12, "feet")
  42453. },
  42454. {
  42455. name: "Big Chee",
  42456. height: math.unit(21, "feet"),
  42457. default: true
  42458. },
  42459. ]
  42460. ))
  42461. characterMakers.push(() => makeCharacter(
  42462. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42463. {
  42464. front: {
  42465. height: math.unit(7, "feet"),
  42466. weight: math.unit(250, "lb"),
  42467. name: "Front",
  42468. image: {
  42469. source: "./media/characters/nines/front.svg",
  42470. extra: 1741/1607,
  42471. bottom: 41/1782
  42472. }
  42473. },
  42474. side: {
  42475. height: math.unit(7, "feet"),
  42476. weight: math.unit(250, "lb"),
  42477. name: "Side",
  42478. image: {
  42479. source: "./media/characters/nines/side.svg",
  42480. extra: 1854/1735,
  42481. bottom: 93/1947
  42482. }
  42483. },
  42484. back: {
  42485. height: math.unit(7, "feet"),
  42486. weight: math.unit(250, "lb"),
  42487. name: "Back",
  42488. image: {
  42489. source: "./media/characters/nines/back.svg",
  42490. extra: 1748/1615,
  42491. bottom: 20/1768
  42492. }
  42493. },
  42494. },
  42495. [
  42496. {
  42497. name: "Megamacro",
  42498. height: math.unit(99, "km"),
  42499. default: true
  42500. },
  42501. ]
  42502. ))
  42503. characterMakers.push(() => makeCharacter(
  42504. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42505. {
  42506. front: {
  42507. height: math.unit(5 + 10/12, "feet"),
  42508. weight: math.unit(210, "lb"),
  42509. name: "Front",
  42510. image: {
  42511. source: "./media/characters/zenith/front.svg",
  42512. extra: 1531/1452,
  42513. bottom: 198/1729
  42514. }
  42515. },
  42516. back: {
  42517. height: math.unit(5 + 10/12, "feet"),
  42518. weight: math.unit(210, "lb"),
  42519. name: "Back",
  42520. image: {
  42521. source: "./media/characters/zenith/back.svg",
  42522. extra: 1571/1487,
  42523. bottom: 75/1646
  42524. }
  42525. },
  42526. },
  42527. [
  42528. {
  42529. name: "Normal",
  42530. height: math.unit(5 + 10/12, "feet"),
  42531. default: true
  42532. }
  42533. ]
  42534. ))
  42535. characterMakers.push(() => makeCharacter(
  42536. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42537. {
  42538. front: {
  42539. height: math.unit(4, "feet"),
  42540. weight: math.unit(60, "lb"),
  42541. name: "Front",
  42542. image: {
  42543. source: "./media/characters/jasper/front.svg",
  42544. extra: 1450/1379,
  42545. bottom: 19/1469
  42546. }
  42547. },
  42548. },
  42549. [
  42550. {
  42551. name: "Normal",
  42552. height: math.unit(4, "feet"),
  42553. default: true
  42554. },
  42555. ]
  42556. ))
  42557. characterMakers.push(() => makeCharacter(
  42558. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42559. {
  42560. front: {
  42561. height: math.unit(6 + 5/12, "feet"),
  42562. weight: math.unit(290, "lb"),
  42563. name: "Front",
  42564. image: {
  42565. source: "./media/characters/tiberius-thyben/front.svg",
  42566. extra: 757/739,
  42567. bottom: 39/796
  42568. }
  42569. },
  42570. },
  42571. [
  42572. {
  42573. name: "Micro",
  42574. height: math.unit(1.5, "inches")
  42575. },
  42576. {
  42577. name: "Normal",
  42578. height: math.unit(6 + 5/12, "feet"),
  42579. default: true
  42580. },
  42581. {
  42582. name: "Macro",
  42583. height: math.unit(300, "feet")
  42584. },
  42585. ]
  42586. ))
  42587. characterMakers.push(() => makeCharacter(
  42588. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42589. {
  42590. front: {
  42591. height: math.unit(5 + 6/12, "feet"),
  42592. weight: math.unit(60, "kg"),
  42593. name: "Front",
  42594. image: {
  42595. source: "./media/characters/sabre/front.svg",
  42596. extra: 738/671,
  42597. bottom: 27/765
  42598. }
  42599. },
  42600. },
  42601. [
  42602. {
  42603. name: "Teeny",
  42604. height: math.unit(2, "inches")
  42605. },
  42606. {
  42607. name: "Smol",
  42608. height: math.unit(8, "inches")
  42609. },
  42610. {
  42611. name: "Normal",
  42612. height: math.unit(5 + 6/12, "feet"),
  42613. default: true
  42614. },
  42615. {
  42616. name: "Mini-Macro",
  42617. height: math.unit(15, "feet")
  42618. },
  42619. {
  42620. name: "Macro",
  42621. height: math.unit(50, "feet")
  42622. },
  42623. ]
  42624. ))
  42625. characterMakers.push(() => makeCharacter(
  42626. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42627. {
  42628. front: {
  42629. height: math.unit(6 + 4/12, "feet"),
  42630. weight: math.unit(170, "lb"),
  42631. name: "Front",
  42632. image: {
  42633. source: "./media/characters/charlie/front.svg",
  42634. extra: 1348/1228,
  42635. bottom: 15/1363
  42636. }
  42637. },
  42638. },
  42639. [
  42640. {
  42641. name: "Macro",
  42642. height: math.unit(1700, "meters"),
  42643. default: true
  42644. },
  42645. {
  42646. name: "MegaMacro",
  42647. height: math.unit(20400, "meters")
  42648. },
  42649. ]
  42650. ))
  42651. characterMakers.push(() => makeCharacter(
  42652. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42653. {
  42654. front: {
  42655. height: math.unit(6 + 3/12, "feet"),
  42656. weight: math.unit(185, "lb"),
  42657. name: "Front",
  42658. image: {
  42659. source: "./media/characters/susan-grant/front.svg",
  42660. extra: 1351/1327,
  42661. bottom: 26/1377
  42662. }
  42663. },
  42664. },
  42665. [
  42666. {
  42667. name: "Normal",
  42668. height: math.unit(6 + 3/12, "feet"),
  42669. default: true
  42670. },
  42671. {
  42672. name: "Macro",
  42673. height: math.unit(225, "feet")
  42674. },
  42675. {
  42676. name: "Macro+",
  42677. height: math.unit(900, "feet")
  42678. },
  42679. {
  42680. name: "MegaMacro",
  42681. height: math.unit(14400, "feet")
  42682. },
  42683. ]
  42684. ))
  42685. characterMakers.push(() => makeCharacter(
  42686. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42687. {
  42688. front: {
  42689. height: math.unit(5 + 4/12, "feet"),
  42690. weight: math.unit(110, "lb"),
  42691. name: "Front",
  42692. image: {
  42693. source: "./media/characters/axel-isanov/front.svg",
  42694. extra: 1096/1065,
  42695. bottom: 13/1109
  42696. }
  42697. },
  42698. },
  42699. [
  42700. {
  42701. name: "Normal",
  42702. height: math.unit(5 + 4/12, "feet"),
  42703. default: true
  42704. },
  42705. ]
  42706. ))
  42707. characterMakers.push(() => makeCharacter(
  42708. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42709. {
  42710. front: {
  42711. height: math.unit(9, "feet"),
  42712. weight: math.unit(467, "lb"),
  42713. name: "Front",
  42714. image: {
  42715. source: "./media/characters/necahual/front.svg",
  42716. extra: 920/873,
  42717. bottom: 26/946
  42718. }
  42719. },
  42720. back: {
  42721. height: math.unit(9, "feet"),
  42722. weight: math.unit(467, "lb"),
  42723. name: "Back",
  42724. image: {
  42725. source: "./media/characters/necahual/back.svg",
  42726. extra: 930/884,
  42727. bottom: 16/946
  42728. }
  42729. },
  42730. frontUnderwear: {
  42731. height: math.unit(9, "feet"),
  42732. weight: math.unit(467, "lb"),
  42733. name: "Front (Underwear)",
  42734. image: {
  42735. source: "./media/characters/necahual/front-underwear.svg",
  42736. extra: 920/873,
  42737. bottom: 26/946
  42738. }
  42739. },
  42740. frontDressed: {
  42741. height: math.unit(9, "feet"),
  42742. weight: math.unit(467, "lb"),
  42743. name: "Front (Dressed)",
  42744. image: {
  42745. source: "./media/characters/necahual/front-dressed.svg",
  42746. extra: 920/873,
  42747. bottom: 26/946
  42748. }
  42749. },
  42750. },
  42751. [
  42752. {
  42753. name: "Comprsesed",
  42754. height: math.unit(9, "feet")
  42755. },
  42756. {
  42757. name: "Natural",
  42758. height: math.unit(15, "feet"),
  42759. default: true
  42760. },
  42761. {
  42762. name: "Boosted",
  42763. height: math.unit(50, "feet")
  42764. },
  42765. {
  42766. name: "Boosted+",
  42767. height: math.unit(150, "feet")
  42768. },
  42769. {
  42770. name: "Max",
  42771. height: math.unit(500, "feet")
  42772. },
  42773. ]
  42774. ))
  42775. characterMakers.push(() => makeCharacter(
  42776. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42777. {
  42778. front: {
  42779. height: math.unit(22 + 1/12, "feet"),
  42780. weight: math.unit(3200, "lb"),
  42781. name: "Front",
  42782. image: {
  42783. source: "./media/characters/theo-acacia/front.svg",
  42784. extra: 1796/1741,
  42785. bottom: 83/1879
  42786. }
  42787. },
  42788. frontUnderwear: {
  42789. height: math.unit(22 + 1/12, "feet"),
  42790. weight: math.unit(3200, "lb"),
  42791. name: "Front (Underwear)",
  42792. image: {
  42793. source: "./media/characters/theo-acacia/front-underwear.svg",
  42794. extra: 1796/1741,
  42795. bottom: 83/1879
  42796. }
  42797. },
  42798. frontNude: {
  42799. height: math.unit(22 + 1/12, "feet"),
  42800. weight: math.unit(3200, "lb"),
  42801. name: "Front (Nude)",
  42802. image: {
  42803. source: "./media/characters/theo-acacia/front-nude.svg",
  42804. extra: 1796/1741,
  42805. bottom: 83/1879
  42806. }
  42807. },
  42808. },
  42809. [
  42810. {
  42811. name: "Normal",
  42812. height: math.unit(22 + 1/12, "feet"),
  42813. default: true
  42814. },
  42815. ]
  42816. ))
  42817. characterMakers.push(() => makeCharacter(
  42818. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42819. {
  42820. front: {
  42821. height: math.unit(20, "feet"),
  42822. name: "Front",
  42823. image: {
  42824. source: "./media/characters/astra/front.svg",
  42825. extra: 1850/1714,
  42826. bottom: 106/1956
  42827. }
  42828. },
  42829. frontUndressed: {
  42830. height: math.unit(20, "feet"),
  42831. name: "Front (Undressed)",
  42832. image: {
  42833. source: "./media/characters/astra/front-undressed.svg",
  42834. extra: 1926/1749,
  42835. bottom: 0/1926
  42836. }
  42837. },
  42838. hand: {
  42839. height: math.unit(1.53, "feet"),
  42840. name: "Hand",
  42841. image: {
  42842. source: "./media/characters/astra/hand.svg"
  42843. }
  42844. },
  42845. paw: {
  42846. height: math.unit(1.53, "feet"),
  42847. name: "Paw",
  42848. image: {
  42849. source: "./media/characters/astra/paw.svg"
  42850. }
  42851. },
  42852. },
  42853. [
  42854. {
  42855. name: "Smallest",
  42856. height: math.unit(20, "feet")
  42857. },
  42858. {
  42859. name: "Normal",
  42860. height: math.unit(1e9, "miles"),
  42861. default: true
  42862. },
  42863. {
  42864. name: "Larger",
  42865. height: math.unit(5, "multiverses")
  42866. },
  42867. {
  42868. name: "Largest",
  42869. height: math.unit(1e9, "multiverses")
  42870. },
  42871. ]
  42872. ))
  42873. characterMakers.push(() => makeCharacter(
  42874. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42875. {
  42876. front: {
  42877. height: math.unit(8, "feet"),
  42878. name: "Front",
  42879. image: {
  42880. source: "./media/characters/breanna/front.svg",
  42881. extra: 1912/1632,
  42882. bottom: 33/1945
  42883. }
  42884. },
  42885. },
  42886. [
  42887. {
  42888. name: "Smallest",
  42889. height: math.unit(8, "feet")
  42890. },
  42891. {
  42892. name: "Normal",
  42893. height: math.unit(1, "mile"),
  42894. default: true
  42895. },
  42896. {
  42897. name: "Maximum",
  42898. height: math.unit(1500000000000, "lightyears")
  42899. },
  42900. ]
  42901. ))
  42902. characterMakers.push(() => makeCharacter(
  42903. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42904. {
  42905. front: {
  42906. height: math.unit(5 + 11/12, "feet"),
  42907. weight: math.unit(155, "lb"),
  42908. name: "Front",
  42909. image: {
  42910. source: "./media/characters/cai/front.svg",
  42911. extra: 1823/1702,
  42912. bottom: 32/1855
  42913. }
  42914. },
  42915. back: {
  42916. height: math.unit(5 + 11/12, "feet"),
  42917. weight: math.unit(155, "lb"),
  42918. name: "Back",
  42919. image: {
  42920. source: "./media/characters/cai/back.svg",
  42921. extra: 1809/1708,
  42922. bottom: 31/1840
  42923. }
  42924. },
  42925. },
  42926. [
  42927. {
  42928. name: "Normal",
  42929. height: math.unit(5 + 11/12, "feet"),
  42930. default: true
  42931. },
  42932. {
  42933. name: "Big",
  42934. height: math.unit(15, "feet")
  42935. },
  42936. {
  42937. name: "Macro",
  42938. height: math.unit(200, "feet")
  42939. },
  42940. ]
  42941. ))
  42942. characterMakers.push(() => makeCharacter(
  42943. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42944. {
  42945. front: {
  42946. height: math.unit(5 + 6/12, "feet"),
  42947. weight: math.unit(160, "lb"),
  42948. name: "Front",
  42949. image: {
  42950. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42951. extra: 1227/1174,
  42952. bottom: 37/1264
  42953. }
  42954. },
  42955. },
  42956. [
  42957. {
  42958. name: "Macro",
  42959. height: math.unit(444, "meters"),
  42960. default: true
  42961. },
  42962. ]
  42963. ))
  42964. characterMakers.push(() => makeCharacter(
  42965. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42966. {
  42967. front: {
  42968. height: math.unit(18 + 7/12, "feet"),
  42969. name: "Front",
  42970. image: {
  42971. source: "./media/characters/rex/front.svg",
  42972. extra: 1941/1807,
  42973. bottom: 66/2007
  42974. }
  42975. },
  42976. back: {
  42977. height: math.unit(18 + 7/12, "feet"),
  42978. name: "Back",
  42979. image: {
  42980. source: "./media/characters/rex/back.svg",
  42981. extra: 1937/1822,
  42982. bottom: 42/1979
  42983. }
  42984. },
  42985. boot: {
  42986. height: math.unit(3.45, "feet"),
  42987. name: "Boot",
  42988. image: {
  42989. source: "./media/characters/rex/boot.svg"
  42990. }
  42991. },
  42992. paw: {
  42993. height: math.unit(4.17, "feet"),
  42994. name: "Paw",
  42995. image: {
  42996. source: "./media/characters/rex/paw.svg"
  42997. }
  42998. },
  42999. head: {
  43000. height: math.unit(6.728, "feet"),
  43001. name: "Head",
  43002. image: {
  43003. source: "./media/characters/rex/head.svg"
  43004. }
  43005. },
  43006. },
  43007. [
  43008. {
  43009. name: "Nano",
  43010. height: math.unit(18 + 7/12, "feet")
  43011. },
  43012. {
  43013. name: "Micro",
  43014. height: math.unit(1.5, "megameters")
  43015. },
  43016. {
  43017. name: "Normal",
  43018. height: math.unit(440, "megameters"),
  43019. default: true
  43020. },
  43021. {
  43022. name: "Macro",
  43023. height: math.unit(2.5, "gigameters")
  43024. },
  43025. {
  43026. name: "Gigamacro",
  43027. height: math.unit(2, "galaxies")
  43028. },
  43029. ]
  43030. ))
  43031. characterMakers.push(() => makeCharacter(
  43032. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43033. {
  43034. side: {
  43035. height: math.unit(32, "feet"),
  43036. weight: math.unit(250000, "lb"),
  43037. name: "Side",
  43038. image: {
  43039. source: "./media/characters/silverwing/side.svg",
  43040. extra: 1100/1019,
  43041. bottom: 204/1304
  43042. }
  43043. },
  43044. },
  43045. [
  43046. {
  43047. name: "Normal",
  43048. height: math.unit(32, "feet"),
  43049. default: true
  43050. },
  43051. ]
  43052. ))
  43053. characterMakers.push(() => makeCharacter(
  43054. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43055. {
  43056. front: {
  43057. height: math.unit(6 + 6/12, "feet"),
  43058. weight: math.unit(350, "lb"),
  43059. name: "Front",
  43060. image: {
  43061. source: "./media/characters/tristan-hawthorne/front.svg",
  43062. extra: 1159/1124,
  43063. bottom: 37/1196
  43064. },
  43065. form: "labrador",
  43066. default: true
  43067. },
  43068. skunkFront: {
  43069. height: math.unit(4 + 6/12, "feet"),
  43070. weight: math.unit(120, "lb"),
  43071. name: "Front",
  43072. image: {
  43073. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43074. extra: 1609/1551,
  43075. bottom: 169/1778
  43076. },
  43077. form: "skunk",
  43078. default: true
  43079. },
  43080. },
  43081. [
  43082. {
  43083. name: "Normal",
  43084. height: math.unit(6 + 6/12, "feet"),
  43085. form: "labrador",
  43086. default: true
  43087. },
  43088. {
  43089. name: "Normal",
  43090. height: math.unit(4 + 6/12, "feet"),
  43091. form: "skunk",
  43092. default: true
  43093. },
  43094. ],
  43095. {
  43096. "labrador": {
  43097. name: "Labrador",
  43098. default: true
  43099. },
  43100. "skunk": {
  43101. name: "Skunk"
  43102. }
  43103. }
  43104. ))
  43105. characterMakers.push(() => makeCharacter(
  43106. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43107. {
  43108. front: {
  43109. height: math.unit(5 + 11/12, "feet"),
  43110. weight: math.unit(190, "lb"),
  43111. name: "Front",
  43112. image: {
  43113. source: "./media/characters/mizu/front.svg",
  43114. extra: 1988/1788,
  43115. bottom: 14/2002
  43116. }
  43117. },
  43118. },
  43119. [
  43120. {
  43121. name: "Normal",
  43122. height: math.unit(5 + 11/12, "feet"),
  43123. default: true
  43124. },
  43125. ]
  43126. ))
  43127. characterMakers.push(() => makeCharacter(
  43128. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43129. {
  43130. front: {
  43131. height: math.unit(1.7, "feet"),
  43132. weight: math.unit(50, "lb"),
  43133. name: "Front",
  43134. image: {
  43135. source: "./media/characters/dechroma/front.svg",
  43136. extra: 1095/859,
  43137. bottom: 64/1159
  43138. }
  43139. },
  43140. },
  43141. [
  43142. {
  43143. name: "Normal",
  43144. height: math.unit(1.7, "feet"),
  43145. default: true
  43146. },
  43147. ]
  43148. ))
  43149. characterMakers.push(() => makeCharacter(
  43150. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43151. {
  43152. side: {
  43153. height: math.unit(30, "feet"),
  43154. name: "Side",
  43155. image: {
  43156. source: "./media/characters/veluren-thanazel/side.svg",
  43157. extra: 1611/633,
  43158. bottom: 118/1729
  43159. }
  43160. },
  43161. front: {
  43162. height: math.unit(30, "feet"),
  43163. name: "Front",
  43164. image: {
  43165. source: "./media/characters/veluren-thanazel/front.svg",
  43166. extra: 1486/636,
  43167. bottom: 238/1724
  43168. }
  43169. },
  43170. head: {
  43171. height: math.unit(21.4, "feet"),
  43172. name: "Head",
  43173. image: {
  43174. source: "./media/characters/veluren-thanazel/head.svg"
  43175. }
  43176. },
  43177. genitals: {
  43178. height: math.unit(19.4, "feet"),
  43179. name: "Genitals",
  43180. image: {
  43181. source: "./media/characters/veluren-thanazel/genitals.svg"
  43182. }
  43183. },
  43184. },
  43185. [
  43186. {
  43187. name: "Social",
  43188. height: math.unit(6, "feet")
  43189. },
  43190. {
  43191. name: "Play",
  43192. height: math.unit(12, "feet")
  43193. },
  43194. {
  43195. name: "True",
  43196. height: math.unit(30, "feet"),
  43197. default: true
  43198. },
  43199. ]
  43200. ))
  43201. characterMakers.push(() => makeCharacter(
  43202. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43203. {
  43204. front: {
  43205. height: math.unit(7 + 6/12, "feet"),
  43206. weight: math.unit(500, "kg"),
  43207. name: "Front",
  43208. image: {
  43209. source: "./media/characters/arcturas/front.svg",
  43210. extra: 1700/1500,
  43211. bottom: 145/1845
  43212. }
  43213. },
  43214. },
  43215. [
  43216. {
  43217. name: "Normal",
  43218. height: math.unit(7 + 6/12, "feet"),
  43219. default: true
  43220. },
  43221. ]
  43222. ))
  43223. characterMakers.push(() => makeCharacter(
  43224. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43225. {
  43226. side: {
  43227. height: math.unit(6, "feet"),
  43228. weight: math.unit(2, "tons"),
  43229. name: "Side",
  43230. image: {
  43231. source: "./media/characters/vitaen/side.svg",
  43232. extra: 1157/617,
  43233. bottom: 122/1279
  43234. }
  43235. },
  43236. },
  43237. [
  43238. {
  43239. name: "Normal",
  43240. height: math.unit(6, "feet"),
  43241. default: true
  43242. },
  43243. ]
  43244. ))
  43245. characterMakers.push(() => makeCharacter(
  43246. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43247. {
  43248. front: {
  43249. height: math.unit(19, "feet"),
  43250. name: "Front",
  43251. image: {
  43252. source: "./media/characters/fia-dreamweaver/front.svg",
  43253. extra: 1630/1504,
  43254. bottom: 25/1655
  43255. }
  43256. },
  43257. },
  43258. [
  43259. {
  43260. name: "Normal",
  43261. height: math.unit(19, "feet"),
  43262. default: true
  43263. },
  43264. ]
  43265. ))
  43266. characterMakers.push(() => makeCharacter(
  43267. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43268. {
  43269. front: {
  43270. height: math.unit(5 + 4/12, "feet"),
  43271. name: "Front",
  43272. image: {
  43273. source: "./media/characters/artan/front.svg",
  43274. extra: 1618/1535,
  43275. bottom: 46/1664
  43276. }
  43277. },
  43278. back: {
  43279. height: math.unit(5 + 4/12, "feet"),
  43280. name: "Back",
  43281. image: {
  43282. source: "./media/characters/artan/back.svg",
  43283. extra: 1618/1543,
  43284. bottom: 31/1649
  43285. }
  43286. },
  43287. },
  43288. [
  43289. {
  43290. name: "Normal",
  43291. height: math.unit(5 + 4/12, "feet"),
  43292. default: true
  43293. },
  43294. ]
  43295. ))
  43296. characterMakers.push(() => makeCharacter(
  43297. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43298. {
  43299. side: {
  43300. height: math.unit(182, "cm"),
  43301. weight: math.unit(1000, "lb"),
  43302. name: "Side",
  43303. image: {
  43304. source: "./media/characters/silver-dragon/side.svg",
  43305. extra: 710/287,
  43306. bottom: 88/798
  43307. }
  43308. },
  43309. },
  43310. [
  43311. {
  43312. name: "Normal",
  43313. height: math.unit(182, "cm"),
  43314. default: true
  43315. },
  43316. ]
  43317. ))
  43318. characterMakers.push(() => makeCharacter(
  43319. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43320. {
  43321. side: {
  43322. height: math.unit(6 + 6/12, "feet"),
  43323. weight: math.unit(1.5, "tons"),
  43324. name: "Side",
  43325. image: {
  43326. source: "./media/characters/zephyr/side.svg",
  43327. extra: 1433/586,
  43328. bottom: 109/1542
  43329. }
  43330. },
  43331. },
  43332. [
  43333. {
  43334. name: "Normal",
  43335. height: math.unit(6 + 6/12, "feet"),
  43336. default: true
  43337. },
  43338. ]
  43339. ))
  43340. characterMakers.push(() => makeCharacter(
  43341. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43342. {
  43343. side: {
  43344. height: math.unit(1, "feet"),
  43345. name: "Side",
  43346. image: {
  43347. source: "./media/characters/vixye/side.svg",
  43348. extra: 632/541,
  43349. bottom: 0/632
  43350. }
  43351. },
  43352. },
  43353. [
  43354. {
  43355. name: "Normal",
  43356. height: math.unit(1, "feet"),
  43357. default: true
  43358. },
  43359. {
  43360. name: "True",
  43361. height: math.unit(1e15, "multiverses")
  43362. },
  43363. ]
  43364. ))
  43365. characterMakers.push(() => makeCharacter(
  43366. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43367. {
  43368. front: {
  43369. height: math.unit(8 + 2/12, "feet"),
  43370. weight: math.unit(650, "lb"),
  43371. name: "Front",
  43372. image: {
  43373. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43374. extra: 1174/1137,
  43375. bottom: 82/1256
  43376. }
  43377. },
  43378. back: {
  43379. height: math.unit(8 + 2/12, "feet"),
  43380. weight: math.unit(650, "lb"),
  43381. name: "Back",
  43382. image: {
  43383. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43384. extra: 1204/1157,
  43385. bottom: 46/1250
  43386. }
  43387. },
  43388. },
  43389. [
  43390. {
  43391. name: "Wildform",
  43392. height: math.unit(8 + 2/12, "feet"),
  43393. default: true
  43394. },
  43395. ]
  43396. ))
  43397. characterMakers.push(() => makeCharacter(
  43398. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43399. {
  43400. front: {
  43401. height: math.unit(18, "feet"),
  43402. name: "Front",
  43403. image: {
  43404. source: "./media/characters/cyphin/front.svg",
  43405. extra: 970/886,
  43406. bottom: 42/1012
  43407. }
  43408. },
  43409. back: {
  43410. height: math.unit(18, "feet"),
  43411. name: "Back",
  43412. image: {
  43413. source: "./media/characters/cyphin/back.svg",
  43414. extra: 1009/894,
  43415. bottom: 24/1033
  43416. }
  43417. },
  43418. head: {
  43419. height: math.unit(5.05, "feet"),
  43420. name: "Head",
  43421. image: {
  43422. source: "./media/characters/cyphin/head.svg"
  43423. }
  43424. },
  43425. tailbud: {
  43426. height: math.unit(5, "feet"),
  43427. name: "Tailbud",
  43428. image: {
  43429. source: "./media/characters/cyphin/tailbud.svg"
  43430. }
  43431. },
  43432. },
  43433. [
  43434. ]
  43435. ))
  43436. characterMakers.push(() => makeCharacter(
  43437. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43438. {
  43439. side: {
  43440. height: math.unit(10, "feet"),
  43441. weight: math.unit(6, "tons"),
  43442. name: "Side",
  43443. image: {
  43444. source: "./media/characters/raijin/side.svg",
  43445. extra: 1529/613,
  43446. bottom: 337/1866
  43447. }
  43448. },
  43449. },
  43450. [
  43451. {
  43452. name: "Normal",
  43453. height: math.unit(10, "feet"),
  43454. default: true
  43455. },
  43456. ]
  43457. ))
  43458. characterMakers.push(() => makeCharacter(
  43459. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43460. {
  43461. side: {
  43462. height: math.unit(9, "feet"),
  43463. name: "Side",
  43464. image: {
  43465. source: "./media/characters/nilghais/side.svg",
  43466. extra: 1047/744,
  43467. bottom: 91/1138
  43468. }
  43469. },
  43470. head: {
  43471. height: math.unit(3.14, "feet"),
  43472. name: "Head",
  43473. image: {
  43474. source: "./media/characters/nilghais/head.svg"
  43475. }
  43476. },
  43477. mouth: {
  43478. height: math.unit(4.6, "feet"),
  43479. name: "Mouth",
  43480. image: {
  43481. source: "./media/characters/nilghais/mouth.svg"
  43482. }
  43483. },
  43484. wings: {
  43485. height: math.unit(24, "feet"),
  43486. name: "Wings",
  43487. image: {
  43488. source: "./media/characters/nilghais/wings.svg"
  43489. }
  43490. },
  43491. ass: {
  43492. height: math.unit(6.12, "feet"),
  43493. name: "Ass",
  43494. image: {
  43495. source: "./media/characters/nilghais/ass.svg"
  43496. }
  43497. },
  43498. },
  43499. [
  43500. {
  43501. name: "Normal",
  43502. height: math.unit(9, "feet"),
  43503. default: true
  43504. },
  43505. ]
  43506. ))
  43507. characterMakers.push(() => makeCharacter(
  43508. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43509. {
  43510. regular: {
  43511. height: math.unit(16 + 2/12, "feet"),
  43512. weight: math.unit(2300, "lb"),
  43513. name: "Regular",
  43514. image: {
  43515. source: "./media/characters/zolgar/regular.svg",
  43516. extra: 1246/1004,
  43517. bottom: 124/1370
  43518. }
  43519. },
  43520. boxers: {
  43521. height: math.unit(16 + 2/12, "feet"),
  43522. weight: math.unit(2300, "lb"),
  43523. name: "Boxers",
  43524. image: {
  43525. source: "./media/characters/zolgar/boxers.svg",
  43526. extra: 1246/1004,
  43527. bottom: 124/1370
  43528. }
  43529. },
  43530. armored: {
  43531. height: math.unit(16 + 2/12, "feet"),
  43532. weight: math.unit(2300, "lb"),
  43533. name: "Armored",
  43534. image: {
  43535. source: "./media/characters/zolgar/armored.svg",
  43536. extra: 1246/1004,
  43537. bottom: 124/1370
  43538. }
  43539. },
  43540. goth: {
  43541. height: math.unit(16 + 2/12, "feet"),
  43542. weight: math.unit(2300, "lb"),
  43543. name: "Goth",
  43544. image: {
  43545. source: "./media/characters/zolgar/goth.svg",
  43546. extra: 1246/1004,
  43547. bottom: 124/1370
  43548. }
  43549. },
  43550. },
  43551. [
  43552. {
  43553. name: "Shrunken Down",
  43554. height: math.unit(9 + 2/12, "feet")
  43555. },
  43556. {
  43557. name: "Normal",
  43558. height: math.unit(16 + 2/12, "feet"),
  43559. default: true
  43560. },
  43561. ]
  43562. ))
  43563. characterMakers.push(() => makeCharacter(
  43564. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43565. {
  43566. front: {
  43567. height: math.unit(6, "feet"),
  43568. weight: math.unit(168, "lb"),
  43569. name: "Front",
  43570. image: {
  43571. source: "./media/characters/luca/front.svg",
  43572. extra: 841/667,
  43573. bottom: 102/943
  43574. }
  43575. },
  43576. },
  43577. [
  43578. {
  43579. name: "Normal",
  43580. height: math.unit(6, "feet"),
  43581. default: true
  43582. },
  43583. ]
  43584. ))
  43585. characterMakers.push(() => makeCharacter(
  43586. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43587. {
  43588. side: {
  43589. height: math.unit(7 + 3/12, "feet"),
  43590. weight: math.unit(312, "lb"),
  43591. name: "Side",
  43592. image: {
  43593. source: "./media/characters/zezo/side.svg",
  43594. extra: 1192/1067,
  43595. bottom: 63/1255
  43596. }
  43597. },
  43598. },
  43599. [
  43600. {
  43601. name: "Normal",
  43602. height: math.unit(7 + 3/12, "feet"),
  43603. default: true
  43604. },
  43605. ]
  43606. ))
  43607. characterMakers.push(() => makeCharacter(
  43608. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43609. {
  43610. front: {
  43611. height: math.unit(5 + 5/12, "feet"),
  43612. weight: math.unit(170, "lb"),
  43613. name: "Front",
  43614. image: {
  43615. source: "./media/characters/mayso/front.svg",
  43616. extra: 1215/1108,
  43617. bottom: 16/1231
  43618. }
  43619. },
  43620. },
  43621. [
  43622. {
  43623. name: "Normal",
  43624. height: math.unit(5 + 5/12, "feet"),
  43625. default: true
  43626. },
  43627. ]
  43628. ))
  43629. characterMakers.push(() => makeCharacter(
  43630. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43631. {
  43632. front: {
  43633. height: math.unit(4 + 3/12, "feet"),
  43634. weight: math.unit(80, "lb"),
  43635. name: "Front",
  43636. image: {
  43637. source: "./media/characters/hess/front.svg",
  43638. extra: 1200/1123,
  43639. bottom: 16/1216
  43640. }
  43641. },
  43642. },
  43643. [
  43644. {
  43645. name: "Normal",
  43646. height: math.unit(4 + 3/12, "feet"),
  43647. default: true
  43648. },
  43649. ]
  43650. ))
  43651. characterMakers.push(() => makeCharacter(
  43652. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43653. {
  43654. front: {
  43655. height: math.unit(1.9, "meters"),
  43656. name: "Front",
  43657. image: {
  43658. source: "./media/characters/ashgar/front.svg",
  43659. extra: 1177/1146,
  43660. bottom: 99/1276
  43661. }
  43662. },
  43663. back: {
  43664. height: math.unit(1.9, "meters"),
  43665. name: "Back",
  43666. image: {
  43667. source: "./media/characters/ashgar/back.svg",
  43668. extra: 1201/1183,
  43669. bottom: 53/1254
  43670. }
  43671. },
  43672. feral: {
  43673. height: math.unit(1.4, "meters"),
  43674. name: "Feral",
  43675. image: {
  43676. source: "./media/characters/ashgar/feral.svg",
  43677. extra: 370/345,
  43678. bottom: 45/415
  43679. }
  43680. },
  43681. },
  43682. [
  43683. {
  43684. name: "Normal",
  43685. height: math.unit(1.9, "meters"),
  43686. default: true
  43687. },
  43688. ]
  43689. ))
  43690. characterMakers.push(() => makeCharacter(
  43691. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43692. {
  43693. regular: {
  43694. height: math.unit(6, "feet"),
  43695. weight: math.unit(220, "lb"),
  43696. name: "Regular",
  43697. image: {
  43698. source: "./media/characters/phillip/regular.svg",
  43699. extra: 1373/1277,
  43700. bottom: 75/1448
  43701. }
  43702. },
  43703. dressed: {
  43704. height: math.unit(6, "feet"),
  43705. weight: math.unit(220, "lb"),
  43706. name: "Dressed",
  43707. image: {
  43708. source: "./media/characters/phillip/dressed.svg",
  43709. extra: 1373/1277,
  43710. bottom: 75/1448
  43711. }
  43712. },
  43713. paw: {
  43714. height: math.unit(1.44, "feet"),
  43715. name: "Paw",
  43716. image: {
  43717. source: "./media/characters/phillip/paw.svg"
  43718. }
  43719. },
  43720. },
  43721. [
  43722. {
  43723. name: "Normal",
  43724. height: math.unit(6, "feet"),
  43725. default: true
  43726. },
  43727. ]
  43728. ))
  43729. characterMakers.push(() => makeCharacter(
  43730. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43731. {
  43732. side: {
  43733. height: math.unit(42, "feet"),
  43734. name: "Side",
  43735. image: {
  43736. source: "./media/characters/uvula/side.svg",
  43737. extra: 683/586,
  43738. bottom: 60/743
  43739. }
  43740. },
  43741. front: {
  43742. height: math.unit(42, "feet"),
  43743. name: "Front",
  43744. image: {
  43745. source: "./media/characters/uvula/front.svg",
  43746. extra: 705/613,
  43747. bottom: 54/759
  43748. }
  43749. },
  43750. maw: {
  43751. height: math.unit(23.5, "feet"),
  43752. name: "Maw",
  43753. image: {
  43754. source: "./media/characters/uvula/maw.svg"
  43755. }
  43756. },
  43757. },
  43758. [
  43759. {
  43760. name: "Original Size",
  43761. height: math.unit(14, "inches")
  43762. },
  43763. {
  43764. name: "Human Size",
  43765. height: math.unit(6, "feet")
  43766. },
  43767. {
  43768. name: "Big",
  43769. height: math.unit(42, "feet"),
  43770. default: true
  43771. },
  43772. {
  43773. name: "Bigger",
  43774. height: math.unit(100, "feet")
  43775. },
  43776. ]
  43777. ))
  43778. characterMakers.push(() => makeCharacter(
  43779. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43780. {
  43781. front: {
  43782. height: math.unit(5 + 11/12, "feet"),
  43783. name: "Front",
  43784. image: {
  43785. source: "./media/characters/lannah/front.svg",
  43786. extra: 1208/1113,
  43787. bottom: 97/1305
  43788. }
  43789. },
  43790. },
  43791. [
  43792. {
  43793. name: "Normal",
  43794. height: math.unit(5 + 11/12, "feet"),
  43795. default: true
  43796. },
  43797. ]
  43798. ))
  43799. characterMakers.push(() => makeCharacter(
  43800. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43801. {
  43802. front: {
  43803. height: math.unit(6 + 3/12, "feet"),
  43804. weight: math.unit(3.5, "tons"),
  43805. name: "Front",
  43806. image: {
  43807. source: "./media/characters/emberflame/front.svg",
  43808. extra: 1198/672,
  43809. bottom: 82/1280
  43810. }
  43811. },
  43812. side: {
  43813. height: math.unit(6 + 3/12, "feet"),
  43814. weight: math.unit(3.5, "tons"),
  43815. name: "Side",
  43816. image: {
  43817. source: "./media/characters/emberflame/side.svg",
  43818. extra: 938/527,
  43819. bottom: 56/994
  43820. }
  43821. },
  43822. },
  43823. [
  43824. {
  43825. name: "Normal",
  43826. height: math.unit(6 + 3/12, "feet"),
  43827. default: true
  43828. },
  43829. ]
  43830. ))
  43831. characterMakers.push(() => makeCharacter(
  43832. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43833. {
  43834. side: {
  43835. height: math.unit(17.5, "feet"),
  43836. weight: math.unit(35, "tons"),
  43837. name: "Side",
  43838. image: {
  43839. source: "./media/characters/sophie-ambrose/side.svg",
  43840. extra: 1573/1242,
  43841. bottom: 71/1644
  43842. }
  43843. },
  43844. maw: {
  43845. height: math.unit(7.4, "feet"),
  43846. name: "Maw",
  43847. image: {
  43848. source: "./media/characters/sophie-ambrose/maw.svg"
  43849. }
  43850. },
  43851. },
  43852. [
  43853. {
  43854. name: "Normal",
  43855. height: math.unit(17.5, "feet"),
  43856. default: true
  43857. },
  43858. ]
  43859. ))
  43860. characterMakers.push(() => makeCharacter(
  43861. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43862. {
  43863. front: {
  43864. height: math.unit(280, "feet"),
  43865. weight: math.unit(550, "tons"),
  43866. name: "Front",
  43867. image: {
  43868. source: "./media/characters/king-mugi/front.svg",
  43869. extra: 1102/947,
  43870. bottom: 104/1206
  43871. }
  43872. },
  43873. },
  43874. [
  43875. {
  43876. name: "King Mugi",
  43877. height: math.unit(280, "feet"),
  43878. default: true
  43879. },
  43880. ]
  43881. ))
  43882. characterMakers.push(() => makeCharacter(
  43883. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43884. {
  43885. front: {
  43886. height: math.unit(64, "meters"),
  43887. name: "Front",
  43888. image: {
  43889. source: "./media/characters/nova-fox/front.svg",
  43890. extra: 1310/1246,
  43891. bottom: 65/1375
  43892. }
  43893. },
  43894. },
  43895. [
  43896. {
  43897. name: "Macro",
  43898. height: math.unit(64, "meters"),
  43899. default: true
  43900. },
  43901. ]
  43902. ))
  43903. characterMakers.push(() => makeCharacter(
  43904. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43905. {
  43906. front: {
  43907. height: math.unit(6 + 3/12, "feet"),
  43908. weight: math.unit(170, "lb"),
  43909. name: "Front",
  43910. image: {
  43911. source: "./media/characters/sam-bat/front.svg",
  43912. extra: 1601/1411,
  43913. bottom: 125/1726
  43914. }
  43915. },
  43916. back: {
  43917. height: math.unit(6 + 3/12, "feet"),
  43918. weight: math.unit(170, "lb"),
  43919. name: "Back",
  43920. image: {
  43921. source: "./media/characters/sam-bat/back.svg",
  43922. extra: 1577/1405,
  43923. bottom: 58/1635
  43924. }
  43925. },
  43926. },
  43927. [
  43928. {
  43929. name: "Normal",
  43930. height: math.unit(6 + 3/12, "feet"),
  43931. default: true
  43932. },
  43933. ]
  43934. ))
  43935. characterMakers.push(() => makeCharacter(
  43936. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43937. {
  43938. front: {
  43939. height: math.unit(59, "feet"),
  43940. weight: math.unit(40000, "lb"),
  43941. name: "Front",
  43942. image: {
  43943. source: "./media/characters/inari/front.svg",
  43944. extra: 1884/1350,
  43945. bottom: 95/1979
  43946. }
  43947. },
  43948. },
  43949. [
  43950. {
  43951. name: "Gigantamax",
  43952. height: math.unit(59, "feet"),
  43953. default: true
  43954. },
  43955. ]
  43956. ))
  43957. characterMakers.push(() => makeCharacter(
  43958. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43959. {
  43960. front: {
  43961. height: math.unit(5 + 8/12, "feet"),
  43962. name: "Front",
  43963. image: {
  43964. source: "./media/characters/elizabeth/front.svg",
  43965. extra: 1395/1298,
  43966. bottom: 54/1449
  43967. }
  43968. },
  43969. mouth: {
  43970. height: math.unit(1.97, "feet"),
  43971. name: "Mouth",
  43972. image: {
  43973. source: "./media/characters/elizabeth/mouth.svg"
  43974. }
  43975. },
  43976. foot: {
  43977. height: math.unit(1.17, "feet"),
  43978. name: "Foot",
  43979. image: {
  43980. source: "./media/characters/elizabeth/foot.svg"
  43981. }
  43982. },
  43983. },
  43984. [
  43985. {
  43986. name: "Normal",
  43987. height: math.unit(5 + 8/12, "feet"),
  43988. default: true
  43989. },
  43990. {
  43991. name: "Minimacro",
  43992. height: math.unit(18, "feet")
  43993. },
  43994. {
  43995. name: "Macro",
  43996. height: math.unit(180, "feet")
  43997. },
  43998. ]
  43999. ))
  44000. characterMakers.push(() => makeCharacter(
  44001. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44002. {
  44003. front: {
  44004. height: math.unit(5 + 2/12, "feet"),
  44005. name: "Front",
  44006. image: {
  44007. source: "./media/characters/october-gossamer/front.svg",
  44008. extra: 505/454,
  44009. bottom: 7/512
  44010. }
  44011. },
  44012. back: {
  44013. height: math.unit(5 + 2/12, "feet"),
  44014. name: "Back",
  44015. image: {
  44016. source: "./media/characters/october-gossamer/back.svg",
  44017. extra: 501/454,
  44018. bottom: 11/512
  44019. }
  44020. },
  44021. },
  44022. [
  44023. {
  44024. name: "Normal",
  44025. height: math.unit(5 + 2/12, "feet"),
  44026. default: true
  44027. },
  44028. ]
  44029. ))
  44030. characterMakers.push(() => makeCharacter(
  44031. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44032. {
  44033. front: {
  44034. height: math.unit(5, "feet"),
  44035. name: "Front",
  44036. image: {
  44037. source: "./media/characters/epiglottis/front.svg",
  44038. extra: 923/849,
  44039. bottom: 17/940
  44040. }
  44041. },
  44042. },
  44043. [
  44044. {
  44045. name: "Original Size",
  44046. height: math.unit(10, "inches")
  44047. },
  44048. {
  44049. name: "Human Size",
  44050. height: math.unit(5, "feet"),
  44051. default: true
  44052. },
  44053. {
  44054. name: "Big",
  44055. height: math.unit(25, "feet")
  44056. },
  44057. {
  44058. name: "Bigger",
  44059. height: math.unit(50, "feet")
  44060. },
  44061. {
  44062. name: "oh lawd",
  44063. height: math.unit(75, "feet")
  44064. },
  44065. ]
  44066. ))
  44067. characterMakers.push(() => makeCharacter(
  44068. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44069. {
  44070. front: {
  44071. height: math.unit(2 + 4/12, "feet"),
  44072. weight: math.unit(60, "lb"),
  44073. name: "Front",
  44074. image: {
  44075. source: "./media/characters/lerm/front.svg",
  44076. extra: 796/790,
  44077. bottom: 79/875
  44078. }
  44079. },
  44080. },
  44081. [
  44082. {
  44083. name: "Normal",
  44084. height: math.unit(2 + 4/12, "feet"),
  44085. default: true
  44086. },
  44087. ]
  44088. ))
  44089. characterMakers.push(() => makeCharacter(
  44090. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44091. {
  44092. front: {
  44093. height: math.unit(5.5, "feet"),
  44094. weight: math.unit(130, "lb"),
  44095. name: "Front",
  44096. image: {
  44097. source: "./media/characters/xena-nebadon/front.svg",
  44098. extra: 1828/1730,
  44099. bottom: 79/1907
  44100. }
  44101. },
  44102. },
  44103. [
  44104. {
  44105. name: "Tiny Puppy",
  44106. height: math.unit(3, "inches")
  44107. },
  44108. {
  44109. name: "Normal",
  44110. height: math.unit(5.5, "feet"),
  44111. default: true
  44112. },
  44113. {
  44114. name: "Lotta Lady",
  44115. height: math.unit(12, "feet")
  44116. },
  44117. {
  44118. name: "Pretty Big",
  44119. height: math.unit(100, "feet")
  44120. },
  44121. {
  44122. name: "Big",
  44123. height: math.unit(500, "feet")
  44124. },
  44125. {
  44126. name: "Skyscraper Toys",
  44127. height: math.unit(2500, "feet")
  44128. },
  44129. {
  44130. name: "Plane Catcher",
  44131. height: math.unit(8, "miles")
  44132. },
  44133. {
  44134. name: "Planet Toys",
  44135. height: math.unit(15, "earths")
  44136. },
  44137. {
  44138. name: "Stardust",
  44139. height: math.unit(0.25, "galaxies")
  44140. },
  44141. {
  44142. name: "Snacks",
  44143. height: math.unit(70, "universes")
  44144. },
  44145. ]
  44146. ))
  44147. characterMakers.push(() => makeCharacter(
  44148. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44149. {
  44150. front: {
  44151. height: math.unit(1.6, "meters"),
  44152. weight: math.unit(60, "kg"),
  44153. name: "Front",
  44154. image: {
  44155. source: "./media/characters/bounty/front.svg",
  44156. extra: 1426/1308,
  44157. bottom: 15/1441
  44158. }
  44159. },
  44160. back: {
  44161. height: math.unit(1.6, "meters"),
  44162. weight: math.unit(60, "kg"),
  44163. name: "Back",
  44164. image: {
  44165. source: "./media/characters/bounty/back.svg",
  44166. extra: 1417/1307,
  44167. bottom: 8/1425
  44168. }
  44169. },
  44170. },
  44171. [
  44172. {
  44173. name: "Normal",
  44174. height: math.unit(1.6, "meters"),
  44175. default: true
  44176. },
  44177. {
  44178. name: "Macro",
  44179. height: math.unit(300, "meters")
  44180. },
  44181. ]
  44182. ))
  44183. characterMakers.push(() => makeCharacter(
  44184. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44185. {
  44186. front: {
  44187. height: math.unit(2 + 8/12, "feet"),
  44188. weight: math.unit(15, "lb"),
  44189. name: "Front",
  44190. image: {
  44191. source: "./media/characters/mochi/front.svg",
  44192. extra: 1022/852,
  44193. bottom: 435/1457
  44194. }
  44195. },
  44196. back: {
  44197. height: math.unit(2 + 8/12, "feet"),
  44198. weight: math.unit(15, "lb"),
  44199. name: "Back",
  44200. image: {
  44201. source: "./media/characters/mochi/back.svg",
  44202. extra: 1335/1119,
  44203. bottom: 39/1374
  44204. }
  44205. },
  44206. bird: {
  44207. height: math.unit(2 + 8/12, "feet"),
  44208. weight: math.unit(15, "lb"),
  44209. name: "Bird",
  44210. image: {
  44211. source: "./media/characters/mochi/bird.svg",
  44212. extra: 1251/1113,
  44213. bottom: 178/1429
  44214. }
  44215. },
  44216. kaiju: {
  44217. height: math.unit(154, "feet"),
  44218. weight: math.unit(1e7, "lb"),
  44219. name: "Kaiju",
  44220. image: {
  44221. source: "./media/characters/mochi/kaiju.svg",
  44222. extra: 460/324,
  44223. bottom: 40/500
  44224. }
  44225. },
  44226. head: {
  44227. height: math.unit(1.21, "feet"),
  44228. name: "Head",
  44229. image: {
  44230. source: "./media/characters/mochi/head.svg"
  44231. }
  44232. },
  44233. alternateTail: {
  44234. height: math.unit(2 + 8/12, "feet"),
  44235. weight: math.unit(45, "lb"),
  44236. name: "Alternate Tail",
  44237. image: {
  44238. source: "./media/characters/mochi/alternate-tail.svg",
  44239. extra: 139/76,
  44240. bottom: 45/184
  44241. }
  44242. },
  44243. },
  44244. [
  44245. {
  44246. name: "Micro",
  44247. height: math.unit(2, "inches")
  44248. },
  44249. {
  44250. name: "Normal",
  44251. height: math.unit(2 + 8/12, "feet"),
  44252. default: true
  44253. },
  44254. {
  44255. name: "Macro",
  44256. height: math.unit(106, "feet")
  44257. },
  44258. ]
  44259. ))
  44260. characterMakers.push(() => makeCharacter(
  44261. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44262. {
  44263. front: {
  44264. height: math.unit(5.67, "feet"),
  44265. weight: math.unit(135, "lb"),
  44266. name: "Front",
  44267. image: {
  44268. source: "./media/characters/sarel/front.svg",
  44269. extra: 865/788,
  44270. bottom: 97/962
  44271. }
  44272. },
  44273. back: {
  44274. height: math.unit(5.67, "feet"),
  44275. weight: math.unit(135, "lb"),
  44276. name: "Back",
  44277. image: {
  44278. source: "./media/characters/sarel/back.svg",
  44279. extra: 857/777,
  44280. bottom: 32/889
  44281. }
  44282. },
  44283. chozoan: {
  44284. height: math.unit(5.67, "feet"),
  44285. weight: math.unit(135, "lb"),
  44286. name: "Chozoan",
  44287. image: {
  44288. source: "./media/characters/sarel/chozoan.svg",
  44289. extra: 865/788,
  44290. bottom: 97/962
  44291. }
  44292. },
  44293. current: {
  44294. height: math.unit(5.67, "feet"),
  44295. weight: math.unit(135, "lb"),
  44296. name: "Current",
  44297. image: {
  44298. source: "./media/characters/sarel/current.svg",
  44299. extra: 865/788,
  44300. bottom: 97/962
  44301. }
  44302. },
  44303. head: {
  44304. height: math.unit(1.77, "feet"),
  44305. name: "Head",
  44306. image: {
  44307. source: "./media/characters/sarel/head.svg"
  44308. }
  44309. },
  44310. claws: {
  44311. height: math.unit(1.8, "feet"),
  44312. name: "Claws",
  44313. image: {
  44314. source: "./media/characters/sarel/claws.svg"
  44315. }
  44316. },
  44317. clawsAlt: {
  44318. height: math.unit(1.8, "feet"),
  44319. name: "Claws-alt",
  44320. image: {
  44321. source: "./media/characters/sarel/claws-alt.svg"
  44322. }
  44323. },
  44324. },
  44325. [
  44326. {
  44327. name: "Normal",
  44328. height: math.unit(5.67, "feet"),
  44329. default: true
  44330. },
  44331. ]
  44332. ))
  44333. characterMakers.push(() => makeCharacter(
  44334. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44335. {
  44336. front: {
  44337. height: math.unit(5500, "feet"),
  44338. name: "Front",
  44339. image: {
  44340. source: "./media/characters/alyonia/front.svg",
  44341. extra: 1200/1135,
  44342. bottom: 29/1229
  44343. }
  44344. },
  44345. back: {
  44346. height: math.unit(5500, "feet"),
  44347. name: "Back",
  44348. image: {
  44349. source: "./media/characters/alyonia/back.svg",
  44350. extra: 1205/1138,
  44351. bottom: 10/1215
  44352. }
  44353. },
  44354. },
  44355. [
  44356. {
  44357. name: "Small",
  44358. height: math.unit(10, "feet")
  44359. },
  44360. {
  44361. name: "Macro",
  44362. height: math.unit(500, "feet")
  44363. },
  44364. {
  44365. name: "Mega Macro",
  44366. height: math.unit(5500, "feet"),
  44367. default: true
  44368. },
  44369. {
  44370. name: "Mega Macro+",
  44371. height: math.unit(500000, "feet")
  44372. },
  44373. {
  44374. name: "Giga Macro",
  44375. height: math.unit(3000, "miles")
  44376. },
  44377. {
  44378. name: "Tera Macro",
  44379. height: math.unit(2.8e6, "miles")
  44380. },
  44381. {
  44382. name: "Galactic",
  44383. height: math.unit(120000, "lightyears")
  44384. },
  44385. ]
  44386. ))
  44387. characterMakers.push(() => makeCharacter(
  44388. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44389. {
  44390. werewolf: {
  44391. height: math.unit(8, "feet"),
  44392. weight: math.unit(425, "lb"),
  44393. name: "Werewolf",
  44394. image: {
  44395. source: "./media/characters/autumn/werewolf.svg",
  44396. extra: 2154/2031,
  44397. bottom: 160/2314
  44398. }
  44399. },
  44400. human: {
  44401. height: math.unit(5 + 8/12, "feet"),
  44402. weight: math.unit(150, "lb"),
  44403. name: "Human",
  44404. image: {
  44405. source: "./media/characters/autumn/human.svg",
  44406. extra: 1200/1149,
  44407. bottom: 30/1230
  44408. }
  44409. },
  44410. },
  44411. [
  44412. {
  44413. name: "Normal",
  44414. height: math.unit(8, "feet"),
  44415. default: true
  44416. },
  44417. ]
  44418. ))
  44419. characterMakers.push(() => makeCharacter(
  44420. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44421. {
  44422. front: {
  44423. height: math.unit(8 + 5/12, "feet"),
  44424. weight: math.unit(825, "lb"),
  44425. name: "Front",
  44426. image: {
  44427. source: "./media/characters/cobalt-charizard/front.svg",
  44428. extra: 1268/1155,
  44429. bottom: 122/1390
  44430. }
  44431. },
  44432. side: {
  44433. height: math.unit(8 + 5/12, "feet"),
  44434. weight: math.unit(825, "lb"),
  44435. name: "Side",
  44436. image: {
  44437. source: "./media/characters/cobalt-charizard/side.svg",
  44438. extra: 1348/1257,
  44439. bottom: 58/1406
  44440. }
  44441. },
  44442. gMax: {
  44443. height: math.unit(134 + 11/12, "feet"),
  44444. name: "G-Max",
  44445. image: {
  44446. source: "./media/characters/cobalt-charizard/g-max.svg",
  44447. extra: 1835/1541,
  44448. bottom: 151/1986
  44449. }
  44450. },
  44451. },
  44452. [
  44453. {
  44454. name: "Normal",
  44455. height: math.unit(8 + 5/12, "feet"),
  44456. default: true
  44457. },
  44458. ]
  44459. ))
  44460. characterMakers.push(() => makeCharacter(
  44461. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44462. {
  44463. front: {
  44464. height: math.unit(6 + 3/12, "feet"),
  44465. weight: math.unit(210, "lb"),
  44466. name: "Front",
  44467. image: {
  44468. source: "./media/characters/stella/front.svg",
  44469. extra: 3549/3335,
  44470. bottom: 51/3600
  44471. }
  44472. },
  44473. },
  44474. [
  44475. {
  44476. name: "Normal",
  44477. height: math.unit(6 + 3/12, "feet"),
  44478. default: true
  44479. },
  44480. ]
  44481. ))
  44482. characterMakers.push(() => makeCharacter(
  44483. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44484. {
  44485. front: {
  44486. height: math.unit(5, "feet"),
  44487. weight: math.unit(90, "lb"),
  44488. name: "Front",
  44489. image: {
  44490. source: "./media/characters/riley-bishop/front.svg",
  44491. extra: 1450/1428,
  44492. bottom: 152/1602
  44493. }
  44494. },
  44495. },
  44496. [
  44497. {
  44498. name: "Normal",
  44499. height: math.unit(5, "feet"),
  44500. default: true
  44501. },
  44502. ]
  44503. ))
  44504. characterMakers.push(() => makeCharacter(
  44505. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44506. {
  44507. side: {
  44508. height: math.unit(8 + 2/12, "feet"),
  44509. weight: math.unit(500, "kg"),
  44510. name: "Side",
  44511. image: {
  44512. source: "./media/characters/theo-arcanine/side.svg",
  44513. extra: 1342/1074,
  44514. bottom: 111/1453
  44515. }
  44516. },
  44517. },
  44518. [
  44519. {
  44520. name: "Normal",
  44521. height: math.unit(8 + 2/12, "feet"),
  44522. default: true
  44523. },
  44524. ]
  44525. ))
  44526. characterMakers.push(() => makeCharacter(
  44527. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44528. {
  44529. front: {
  44530. height: math.unit(4, "feet"),
  44531. name: "Front",
  44532. image: {
  44533. source: "./media/characters/kali/front.svg",
  44534. extra: 1921/1357,
  44535. bottom: 70/1991
  44536. }
  44537. },
  44538. },
  44539. [
  44540. {
  44541. name: "Normal",
  44542. height: math.unit(4, "feet"),
  44543. default: true
  44544. },
  44545. {
  44546. name: "Macro",
  44547. height: math.unit(32, "meters")
  44548. },
  44549. {
  44550. name: "Macro+",
  44551. height: math.unit(150, "meters")
  44552. },
  44553. {
  44554. name: "Megamacro",
  44555. height: math.unit(7500, "meters")
  44556. },
  44557. {
  44558. name: "Megamacro+",
  44559. height: math.unit(80, "kilometers")
  44560. },
  44561. ]
  44562. ))
  44563. characterMakers.push(() => makeCharacter(
  44564. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44565. {
  44566. side: {
  44567. height: math.unit(5 + 11/12, "feet"),
  44568. weight: math.unit(236, "lb"),
  44569. name: "Side",
  44570. image: {
  44571. source: "./media/characters/gapp/side.svg",
  44572. extra: 775/340,
  44573. bottom: 58/833
  44574. }
  44575. },
  44576. mouth: {
  44577. height: math.unit(2.98, "feet"),
  44578. name: "Mouth",
  44579. image: {
  44580. source: "./media/characters/gapp/mouth.svg"
  44581. }
  44582. },
  44583. },
  44584. [
  44585. {
  44586. name: "Normal",
  44587. height: math.unit(5 + 1/12, "feet"),
  44588. default: true
  44589. },
  44590. ]
  44591. ))
  44592. characterMakers.push(() => makeCharacter(
  44593. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44594. {
  44595. front: {
  44596. height: math.unit(6, "feet"),
  44597. name: "Front",
  44598. image: {
  44599. source: "./media/characters/persephone/front.svg",
  44600. extra: 1895/1717,
  44601. bottom: 96/1991
  44602. }
  44603. },
  44604. back: {
  44605. height: math.unit(6, "feet"),
  44606. name: "Back",
  44607. image: {
  44608. source: "./media/characters/persephone/back.svg",
  44609. extra: 1868/1679,
  44610. bottom: 26/1894
  44611. }
  44612. },
  44613. casual: {
  44614. height: math.unit(6, "feet"),
  44615. name: "Casual",
  44616. image: {
  44617. source: "./media/characters/persephone/casual.svg",
  44618. extra: 1713/1541,
  44619. bottom: 76/1789
  44620. }
  44621. },
  44622. },
  44623. [
  44624. {
  44625. name: "Human Size",
  44626. height: math.unit(6, "feet")
  44627. },
  44628. {
  44629. name: "Big Steppy",
  44630. height: math.unit(600, "meters"),
  44631. default: true
  44632. },
  44633. {
  44634. name: "Galaxy Brain",
  44635. height: math.unit(1, "zettameter")
  44636. },
  44637. ]
  44638. ))
  44639. characterMakers.push(() => makeCharacter(
  44640. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44641. {
  44642. front: {
  44643. height: math.unit(1.85, "meters"),
  44644. name: "Front",
  44645. image: {
  44646. source: "./media/characters/riley-foxthing/front.svg",
  44647. extra: 1495/1354,
  44648. bottom: 122/1617
  44649. }
  44650. },
  44651. frontAlt: {
  44652. height: math.unit(1.85, "meters"),
  44653. name: "Front (Alt)",
  44654. image: {
  44655. source: "./media/characters/riley-foxthing/front-alt.svg",
  44656. extra: 1572/1389,
  44657. bottom: 116/1688
  44658. }
  44659. },
  44660. },
  44661. [
  44662. {
  44663. name: "Normal Sized",
  44664. height: math.unit(1.85, "meters"),
  44665. default: true
  44666. },
  44667. {
  44668. name: "Quite Sizable",
  44669. height: math.unit(5, "meters")
  44670. },
  44671. {
  44672. name: "Rather Large",
  44673. height: math.unit(20, "meters")
  44674. },
  44675. {
  44676. name: "Macro",
  44677. height: math.unit(450, "meters")
  44678. },
  44679. {
  44680. name: "Giga",
  44681. height: math.unit(5, "km")
  44682. },
  44683. ]
  44684. ))
  44685. characterMakers.push(() => makeCharacter(
  44686. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44687. {
  44688. front: {
  44689. height: math.unit(6, "feet"),
  44690. weight: math.unit(200, "lb"),
  44691. name: "Front",
  44692. image: {
  44693. source: "./media/characters/blizzard/front.svg",
  44694. extra: 1136/990,
  44695. bottom: 136/1272
  44696. }
  44697. },
  44698. back: {
  44699. height: math.unit(6, "feet"),
  44700. weight: math.unit(200, "lb"),
  44701. name: "Back",
  44702. image: {
  44703. source: "./media/characters/blizzard/back.svg",
  44704. extra: 1175/1034,
  44705. bottom: 97/1272
  44706. }
  44707. },
  44708. sitting: {
  44709. height: math.unit(3.725, "feet"),
  44710. weight: math.unit(200, "lb"),
  44711. name: "Sitting",
  44712. image: {
  44713. source: "./media/characters/blizzard/sitting.svg",
  44714. extra: 581/485,
  44715. bottom: 90/671
  44716. }
  44717. },
  44718. frontWizard: {
  44719. height: math.unit(7.9, "feet"),
  44720. weight: math.unit(200, "lb"),
  44721. name: "Front (Wizard)",
  44722. image: {
  44723. source: "./media/characters/blizzard/front-wizard.svg"
  44724. }
  44725. },
  44726. backWizard: {
  44727. height: math.unit(7.9, "feet"),
  44728. weight: math.unit(200, "lb"),
  44729. name: "Back (Wizard)",
  44730. image: {
  44731. source: "./media/characters/blizzard/back-wizard.svg"
  44732. }
  44733. },
  44734. frontNsfw: {
  44735. height: math.unit(6, "feet"),
  44736. weight: math.unit(200, "lb"),
  44737. name: "Front (NSFW)",
  44738. image: {
  44739. source: "./media/characters/blizzard/front-nsfw.svg",
  44740. extra: 1136/990,
  44741. bottom: 136/1272
  44742. }
  44743. },
  44744. backNsfw: {
  44745. height: math.unit(6, "feet"),
  44746. weight: math.unit(200, "lb"),
  44747. name: "Back (NSFW)",
  44748. image: {
  44749. source: "./media/characters/blizzard/back-nsfw.svg",
  44750. extra: 1175/1034,
  44751. bottom: 97/1272
  44752. }
  44753. },
  44754. sittingNsfw: {
  44755. height: math.unit(3.725, "feet"),
  44756. weight: math.unit(200, "lb"),
  44757. name: "Sitting (NSFW)",
  44758. image: {
  44759. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44760. extra: 581/485,
  44761. bottom: 90/671
  44762. }
  44763. },
  44764. wizardFrontNsfw: {
  44765. height: math.unit(7.9, "feet"),
  44766. weight: math.unit(200, "lb"),
  44767. name: "Wizard (Front, NSFW)",
  44768. image: {
  44769. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44770. }
  44771. },
  44772. },
  44773. [
  44774. {
  44775. name: "Normal",
  44776. height: math.unit(6, "feet"),
  44777. default: true
  44778. },
  44779. ]
  44780. ))
  44781. characterMakers.push(() => makeCharacter(
  44782. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44783. {
  44784. front: {
  44785. height: math.unit(5 + 2/12, "feet"),
  44786. name: "Front",
  44787. image: {
  44788. source: "./media/characters/lumi/front.svg",
  44789. extra: 1328/1268,
  44790. bottom: 103/1431
  44791. }
  44792. },
  44793. back: {
  44794. height: math.unit(5 + 2/12, "feet"),
  44795. name: "Back",
  44796. image: {
  44797. source: "./media/characters/lumi/back.svg",
  44798. extra: 1381/1327,
  44799. bottom: 43/1424
  44800. }
  44801. },
  44802. },
  44803. [
  44804. {
  44805. name: "Normal",
  44806. height: math.unit(5 + 2/12, "feet"),
  44807. default: true
  44808. },
  44809. ]
  44810. ))
  44811. characterMakers.push(() => makeCharacter(
  44812. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44813. {
  44814. front: {
  44815. height: math.unit(5 + 9/12, "feet"),
  44816. name: "Front",
  44817. image: {
  44818. source: "./media/characters/aliya-cotton/front.svg",
  44819. extra: 577/564,
  44820. bottom: 29/606
  44821. }
  44822. },
  44823. },
  44824. [
  44825. {
  44826. name: "Normal",
  44827. height: math.unit(5 + 9/12, "feet"),
  44828. default: true
  44829. },
  44830. ]
  44831. ))
  44832. characterMakers.push(() => makeCharacter(
  44833. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44834. {
  44835. front: {
  44836. height: math.unit(2.7, "meters"),
  44837. weight: math.unit(25000, "lb"),
  44838. name: "Front",
  44839. image: {
  44840. source: "./media/characters/noah-luxray/front.svg",
  44841. extra: 1644/825,
  44842. bottom: 339/1983
  44843. }
  44844. },
  44845. side: {
  44846. height: math.unit(2.97, "meters"),
  44847. weight: math.unit(25000, "lb"),
  44848. name: "Side",
  44849. image: {
  44850. source: "./media/characters/noah-luxray/side.svg",
  44851. extra: 1319/650,
  44852. bottom: 163/1482
  44853. }
  44854. },
  44855. dick: {
  44856. height: math.unit(7.4, "feet"),
  44857. weight: math.unit(2500, "lb"),
  44858. name: "Dick",
  44859. image: {
  44860. source: "./media/characters/noah-luxray/dick.svg"
  44861. }
  44862. },
  44863. dickAlt: {
  44864. height: math.unit(10.83, "feet"),
  44865. weight: math.unit(2500, "lb"),
  44866. name: "Dick-alt",
  44867. image: {
  44868. source: "./media/characters/noah-luxray/dick-alt.svg"
  44869. }
  44870. },
  44871. },
  44872. [
  44873. {
  44874. name: "BIG",
  44875. height: math.unit(2.7, "meters"),
  44876. default: true
  44877. },
  44878. ]
  44879. ))
  44880. characterMakers.push(() => makeCharacter(
  44881. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44882. {
  44883. standing: {
  44884. height: math.unit(183, "cm"),
  44885. weight: math.unit(68, "kg"),
  44886. name: "Standing",
  44887. image: {
  44888. source: "./media/characters/arion/standing.svg",
  44889. extra: 1869/1807,
  44890. bottom: 93/1962
  44891. }
  44892. },
  44893. reclining: {
  44894. height: math.unit(70.5, "cm"),
  44895. weight: math.unit(68, "lb"),
  44896. name: "Reclining",
  44897. image: {
  44898. source: "./media/characters/arion/reclining.svg",
  44899. extra: 937/870,
  44900. bottom: 63/1000
  44901. }
  44902. },
  44903. },
  44904. [
  44905. {
  44906. name: "Colossus Size, Low",
  44907. height: math.unit(33, "meters"),
  44908. default: true
  44909. },
  44910. {
  44911. name: "Colossus Size, Mid",
  44912. height: math.unit(52, "meters")
  44913. },
  44914. {
  44915. name: "Colossus Size, High",
  44916. height: math.unit(60, "meters")
  44917. },
  44918. {
  44919. name: "Titan Size, Low",
  44920. height: math.unit(91, "meters"),
  44921. },
  44922. {
  44923. name: "Titan Size, Mid",
  44924. height: math.unit(122, "meters")
  44925. },
  44926. {
  44927. name: "Titan Size, High",
  44928. height: math.unit(162, "meters")
  44929. },
  44930. ]
  44931. ))
  44932. characterMakers.push(() => makeCharacter(
  44933. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44934. {
  44935. front: {
  44936. height: math.unit(53, "meters"),
  44937. name: "Front",
  44938. image: {
  44939. source: "./media/characters/stellar-marbey/front.svg",
  44940. extra: 1913/1805,
  44941. bottom: 92/2005
  44942. }
  44943. },
  44944. back: {
  44945. height: math.unit(53, "meters"),
  44946. name: "Back",
  44947. image: {
  44948. source: "./media/characters/stellar-marbey/back.svg",
  44949. extra: 1960/1851,
  44950. bottom: 28/1988
  44951. }
  44952. },
  44953. mouth: {
  44954. height: math.unit(3.5, "meters"),
  44955. name: "Mouth",
  44956. image: {
  44957. source: "./media/characters/stellar-marbey/mouth.svg"
  44958. }
  44959. },
  44960. },
  44961. [
  44962. {
  44963. name: "Macro",
  44964. height: math.unit(53, "meters"),
  44965. default: true
  44966. },
  44967. ]
  44968. ))
  44969. characterMakers.push(() => makeCharacter(
  44970. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44971. {
  44972. front: {
  44973. height: math.unit(8 + 1/12, "feet"),
  44974. weight: math.unit(233, "lb"),
  44975. name: "Front",
  44976. image: {
  44977. source: "./media/characters/matsu/front.svg",
  44978. extra: 832/772,
  44979. bottom: 40/872
  44980. }
  44981. },
  44982. back: {
  44983. height: math.unit(8 + 1/12, "feet"),
  44984. weight: math.unit(233, "lb"),
  44985. name: "Back",
  44986. image: {
  44987. source: "./media/characters/matsu/back.svg",
  44988. extra: 839/780,
  44989. bottom: 47/886
  44990. }
  44991. },
  44992. },
  44993. [
  44994. {
  44995. name: "Normal",
  44996. height: math.unit(8 + 1/12, "feet"),
  44997. default: true
  44998. },
  44999. ]
  45000. ))
  45001. characterMakers.push(() => makeCharacter(
  45002. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45003. {
  45004. front: {
  45005. height: math.unit(4, "feet"),
  45006. weight: math.unit(148, "lb"),
  45007. name: "Front",
  45008. image: {
  45009. source: "./media/characters/thiz/front.svg",
  45010. extra: 1913/1748,
  45011. bottom: 62/1975
  45012. }
  45013. },
  45014. },
  45015. [
  45016. {
  45017. name: "Normal",
  45018. height: math.unit(4, "feet"),
  45019. default: true
  45020. },
  45021. ]
  45022. ))
  45023. characterMakers.push(() => makeCharacter(
  45024. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45025. {
  45026. front: {
  45027. height: math.unit(7 + 6/12, "feet"),
  45028. weight: math.unit(267, "lb"),
  45029. name: "Front",
  45030. image: {
  45031. source: "./media/characters/marcel/front.svg",
  45032. extra: 1221/1096,
  45033. bottom: 76/1297
  45034. }
  45035. },
  45036. },
  45037. [
  45038. {
  45039. name: "Normal",
  45040. height: math.unit(7 + 6/12, "feet"),
  45041. default: true
  45042. },
  45043. ]
  45044. ))
  45045. characterMakers.push(() => makeCharacter(
  45046. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45047. {
  45048. side: {
  45049. height: math.unit(42, "meters"),
  45050. name: "Side",
  45051. image: {
  45052. source: "./media/characters/flake/side.svg",
  45053. extra: 1525/1306,
  45054. bottom: 209/1734
  45055. }
  45056. },
  45057. },
  45058. [
  45059. {
  45060. name: "Normal",
  45061. height: math.unit(42, "meters"),
  45062. default: true
  45063. },
  45064. ]
  45065. ))
  45066. characterMakers.push(() => makeCharacter(
  45067. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45068. {
  45069. dressed: {
  45070. height: math.unit(6 + 4/12, "feet"),
  45071. weight: math.unit(520, "lb"),
  45072. name: "Dressed",
  45073. image: {
  45074. source: "./media/characters/someonne/dressed.svg",
  45075. extra: 1020/1010,
  45076. bottom: 178/1198
  45077. }
  45078. },
  45079. undressed: {
  45080. height: math.unit(6 + 4/12, "feet"),
  45081. weight: math.unit(520, "lb"),
  45082. name: "Undressed",
  45083. image: {
  45084. source: "./media/characters/someonne/undressed.svg",
  45085. extra: 1019/1014,
  45086. bottom: 169/1188
  45087. }
  45088. },
  45089. },
  45090. [
  45091. {
  45092. name: "Normal",
  45093. height: math.unit(6 + 4/12, "feet"),
  45094. default: true
  45095. },
  45096. ]
  45097. ))
  45098. characterMakers.push(() => makeCharacter(
  45099. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45100. {
  45101. front: {
  45102. height: math.unit(3, "feet"),
  45103. weight: math.unit(30, "lb"),
  45104. name: "Front",
  45105. image: {
  45106. source: "./media/characters/till/front.svg",
  45107. extra: 892/823,
  45108. bottom: 55/947
  45109. }
  45110. },
  45111. },
  45112. [
  45113. {
  45114. name: "Normal",
  45115. height: math.unit(3, "feet"),
  45116. default: true
  45117. },
  45118. ]
  45119. ))
  45120. characterMakers.push(() => makeCharacter(
  45121. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45122. {
  45123. front: {
  45124. height: math.unit(9 + 8/12, "feet"),
  45125. weight: math.unit(800, "lb"),
  45126. name: "Front",
  45127. image: {
  45128. source: "./media/characters/sydney-heki/front.svg",
  45129. extra: 1360/1300,
  45130. bottom: 22/1382
  45131. }
  45132. },
  45133. back: {
  45134. height: math.unit(9 + 8/12, "feet"),
  45135. weight: math.unit(800, "lb"),
  45136. name: "Back",
  45137. image: {
  45138. source: "./media/characters/sydney-heki/back.svg",
  45139. extra: 1356/1293,
  45140. bottom: 12/1368
  45141. }
  45142. },
  45143. frontDressed: {
  45144. height: math.unit(9 + 8/12, "feet"),
  45145. weight: math.unit(800, "lb"),
  45146. name: "Front-dressed",
  45147. image: {
  45148. source: "./media/characters/sydney-heki/front-dressed.svg",
  45149. extra: 1360/1300,
  45150. bottom: 22/1382
  45151. }
  45152. },
  45153. },
  45154. [
  45155. {
  45156. name: "Normal",
  45157. height: math.unit(9 + 8/12, "feet"),
  45158. default: true
  45159. },
  45160. {
  45161. name: "Macro",
  45162. height: math.unit(500, "feet")
  45163. },
  45164. {
  45165. name: "Megamacro",
  45166. height: math.unit(3.6, "miles")
  45167. },
  45168. ]
  45169. ))
  45170. characterMakers.push(() => makeCharacter(
  45171. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45172. {
  45173. front: {
  45174. height: math.unit(200, "cm"),
  45175. weight: math.unit(250, "lb"),
  45176. name: "Front",
  45177. image: {
  45178. source: "./media/characters/fowler-karlsson/front.svg",
  45179. extra: 897/845,
  45180. bottom: 123/1020
  45181. }
  45182. },
  45183. back: {
  45184. height: math.unit(200, "cm"),
  45185. weight: math.unit(250, "lb"),
  45186. name: "Back",
  45187. image: {
  45188. source: "./media/characters/fowler-karlsson/back.svg",
  45189. extra: 999/944,
  45190. bottom: 26/1025
  45191. }
  45192. },
  45193. dick: {
  45194. height: math.unit(1.92, "feet"),
  45195. weight: math.unit(150, "lb"),
  45196. name: "Dick",
  45197. image: {
  45198. source: "./media/characters/fowler-karlsson/dick.svg"
  45199. }
  45200. },
  45201. },
  45202. [
  45203. {
  45204. name: "Normal",
  45205. height: math.unit(200, "cm"),
  45206. default: true
  45207. },
  45208. {
  45209. name: "Smaller Macro",
  45210. height: math.unit(90, "m")
  45211. },
  45212. {
  45213. name: "Macro",
  45214. height: math.unit(150, "m")
  45215. },
  45216. {
  45217. name: "Bigger Macro",
  45218. height: math.unit(300, "m")
  45219. },
  45220. ]
  45221. ))
  45222. characterMakers.push(() => makeCharacter(
  45223. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45224. {
  45225. side: {
  45226. height: math.unit(8 + 2/12, "feet"),
  45227. weight: math.unit(1, "tonne"),
  45228. name: "Side",
  45229. image: {
  45230. source: "./media/characters/rylide/side.svg",
  45231. extra: 1318/1034,
  45232. bottom: 106/1424
  45233. }
  45234. },
  45235. sitting: {
  45236. height: math.unit(303, "cm"),
  45237. weight: math.unit(1, "tonne"),
  45238. name: "Sitting",
  45239. image: {
  45240. source: "./media/characters/rylide/sitting.svg",
  45241. extra: 1303/1103,
  45242. bottom: 36/1339
  45243. }
  45244. },
  45245. },
  45246. [
  45247. {
  45248. name: "Normal",
  45249. height: math.unit(8 + 2/12, "feet"),
  45250. default: true
  45251. },
  45252. ]
  45253. ))
  45254. characterMakers.push(() => makeCharacter(
  45255. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45256. {
  45257. front: {
  45258. height: math.unit(5 + 10/12, "feet"),
  45259. weight: math.unit(160, "lb"),
  45260. name: "Front",
  45261. image: {
  45262. source: "./media/characters/pudask/front.svg",
  45263. extra: 1616/1590,
  45264. bottom: 161/1777
  45265. }
  45266. },
  45267. },
  45268. [
  45269. {
  45270. name: "Ferret Height",
  45271. height: math.unit(2 + 5/12, "feet")
  45272. },
  45273. {
  45274. name: "Canon Height",
  45275. height: math.unit(5 + 10/12, "feet"),
  45276. default: true
  45277. },
  45278. ]
  45279. ))
  45280. characterMakers.push(() => makeCharacter(
  45281. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45282. {
  45283. front: {
  45284. height: math.unit(3 + 6/12, "feet"),
  45285. weight: math.unit(60, "lb"),
  45286. name: "Front",
  45287. image: {
  45288. source: "./media/characters/ramita/front.svg",
  45289. extra: 1402/1232,
  45290. bottom: 62/1464
  45291. }
  45292. },
  45293. dressed: {
  45294. height: math.unit(3 + 6/12, "feet"),
  45295. weight: math.unit(60, "lb"),
  45296. name: "Dressed",
  45297. image: {
  45298. source: "./media/characters/ramita/dressed.svg",
  45299. extra: 1534/1249,
  45300. bottom: 50/1584
  45301. }
  45302. },
  45303. },
  45304. [
  45305. {
  45306. name: "Normal",
  45307. height: math.unit(3 + 6/12, "feet"),
  45308. default: true
  45309. },
  45310. ]
  45311. ))
  45312. characterMakers.push(() => makeCharacter(
  45313. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45314. {
  45315. front: {
  45316. height: math.unit(8, "feet"),
  45317. name: "Front",
  45318. image: {
  45319. source: "./media/characters/ark/front.svg",
  45320. extra: 772/693,
  45321. bottom: 45/817
  45322. }
  45323. },
  45324. },
  45325. [
  45326. {
  45327. name: "Normal",
  45328. height: math.unit(8, "feet"),
  45329. default: true
  45330. },
  45331. ]
  45332. ))
  45333. characterMakers.push(() => makeCharacter(
  45334. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45335. {
  45336. front: {
  45337. height: math.unit(6, "feet"),
  45338. weight: math.unit(250, "lb"),
  45339. volume: math.unit(5/8, "gallons"),
  45340. name: "Front",
  45341. image: {
  45342. source: "./media/characters/ludwig-horn/front.svg",
  45343. extra: 1782/1635,
  45344. bottom: 96/1878
  45345. }
  45346. },
  45347. back: {
  45348. height: math.unit(6, "feet"),
  45349. weight: math.unit(250, "lb"),
  45350. volume: math.unit(5/8, "gallons"),
  45351. name: "Back",
  45352. image: {
  45353. source: "./media/characters/ludwig-horn/back.svg",
  45354. extra: 1874/1729,
  45355. bottom: 27/1901
  45356. }
  45357. },
  45358. dick: {
  45359. height: math.unit(1.05, "feet"),
  45360. weight: math.unit(15, "lb"),
  45361. volume: math.unit(5/8, "gallons"),
  45362. name: "Dick",
  45363. image: {
  45364. source: "./media/characters/ludwig-horn/dick.svg"
  45365. }
  45366. },
  45367. },
  45368. [
  45369. {
  45370. name: "Small",
  45371. height: math.unit(6, "feet")
  45372. },
  45373. {
  45374. name: "Typical",
  45375. height: math.unit(12, "feet"),
  45376. default: true
  45377. },
  45378. {
  45379. name: "Building",
  45380. height: math.unit(80, "feet")
  45381. },
  45382. {
  45383. name: "Town",
  45384. height: math.unit(800, "feet")
  45385. },
  45386. {
  45387. name: "Kingdom",
  45388. height: math.unit(80000, "feet")
  45389. },
  45390. {
  45391. name: "Planet",
  45392. height: math.unit(8000000, "feet")
  45393. },
  45394. {
  45395. name: "Universe",
  45396. height: math.unit(8000000000, "feet")
  45397. },
  45398. {
  45399. name: "Transcended",
  45400. height: math.unit(8e27, "feet")
  45401. },
  45402. ]
  45403. ))
  45404. characterMakers.push(() => makeCharacter(
  45405. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45406. {
  45407. front: {
  45408. height: math.unit(5, "feet"),
  45409. weight: math.unit(50, "kg"),
  45410. name: "Front",
  45411. image: {
  45412. source: "./media/characters/biot-avery/front.svg",
  45413. extra: 1295/1232,
  45414. bottom: 86/1381
  45415. }
  45416. },
  45417. },
  45418. [
  45419. {
  45420. name: "Normal",
  45421. height: math.unit(5, "feet"),
  45422. default: true
  45423. },
  45424. ]
  45425. ))
  45426. characterMakers.push(() => makeCharacter(
  45427. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45428. {
  45429. front: {
  45430. height: math.unit(6, "feet"),
  45431. name: "Front",
  45432. image: {
  45433. source: "./media/characters/kitsune-kiro/front.svg",
  45434. extra: 1270/1158,
  45435. bottom: 42/1312
  45436. }
  45437. },
  45438. frontAlt: {
  45439. height: math.unit(6, "feet"),
  45440. name: "Front-alt",
  45441. image: {
  45442. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45443. extra: 1130/1081,
  45444. bottom: 36/1166
  45445. }
  45446. },
  45447. },
  45448. [
  45449. {
  45450. name: "Smol",
  45451. height: math.unit(3, "feet")
  45452. },
  45453. {
  45454. name: "Normal",
  45455. height: math.unit(6, "feet"),
  45456. default: true
  45457. },
  45458. ]
  45459. ))
  45460. characterMakers.push(() => makeCharacter(
  45461. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45462. {
  45463. front: {
  45464. height: math.unit(6, "feet"),
  45465. weight: math.unit(125, "lb"),
  45466. name: "Front",
  45467. image: {
  45468. source: "./media/characters/jack-thatcher/front.svg",
  45469. extra: 1474/1370,
  45470. bottom: 26/1500
  45471. }
  45472. },
  45473. back: {
  45474. height: math.unit(6, "feet"),
  45475. weight: math.unit(125, "lb"),
  45476. name: "Back",
  45477. image: {
  45478. source: "./media/characters/jack-thatcher/back.svg",
  45479. extra: 1489/1384,
  45480. bottom: 18/1507
  45481. }
  45482. },
  45483. },
  45484. [
  45485. {
  45486. name: "Normal",
  45487. height: math.unit(6, "feet"),
  45488. default: true
  45489. },
  45490. {
  45491. name: "Macro",
  45492. height: math.unit(75, "feet")
  45493. },
  45494. {
  45495. name: "Macro-er",
  45496. height: math.unit(250, "feet")
  45497. },
  45498. ]
  45499. ))
  45500. characterMakers.push(() => makeCharacter(
  45501. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45502. {
  45503. front: {
  45504. height: math.unit(7, "feet"),
  45505. weight: math.unit(110, "kg"),
  45506. name: "Front",
  45507. image: {
  45508. source: "./media/characters/max-hyper/front.svg",
  45509. extra: 1969/1881,
  45510. bottom: 49/2018
  45511. }
  45512. },
  45513. },
  45514. [
  45515. {
  45516. name: "Normal",
  45517. height: math.unit(7, "feet"),
  45518. default: true
  45519. },
  45520. ]
  45521. ))
  45522. characterMakers.push(() => makeCharacter(
  45523. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45524. {
  45525. front: {
  45526. height: math.unit(5 + 5/12, "feet"),
  45527. weight: math.unit(160, "lb"),
  45528. name: "Front",
  45529. image: {
  45530. source: "./media/characters/spook/front.svg",
  45531. extra: 794/791,
  45532. bottom: 54/848
  45533. }
  45534. },
  45535. back: {
  45536. height: math.unit(5 + 5/12, "feet"),
  45537. weight: math.unit(160, "lb"),
  45538. name: "Back",
  45539. image: {
  45540. source: "./media/characters/spook/back.svg",
  45541. extra: 812/798,
  45542. bottom: 32/844
  45543. }
  45544. },
  45545. },
  45546. [
  45547. {
  45548. name: "Normal",
  45549. height: math.unit(5 + 5/12, "feet"),
  45550. default: true
  45551. },
  45552. ]
  45553. ))
  45554. characterMakers.push(() => makeCharacter(
  45555. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45556. {
  45557. front: {
  45558. height: math.unit(18, "feet"),
  45559. name: "Front",
  45560. image: {
  45561. source: "./media/characters/xeaduulix/front.svg",
  45562. extra: 1380/1166,
  45563. bottom: 110/1490
  45564. }
  45565. },
  45566. back: {
  45567. height: math.unit(18, "feet"),
  45568. name: "Back",
  45569. image: {
  45570. source: "./media/characters/xeaduulix/back.svg",
  45571. extra: 1592/1170,
  45572. bottom: 128/1720
  45573. }
  45574. },
  45575. frontNsfw: {
  45576. height: math.unit(18, "feet"),
  45577. name: "Front (NSFW)",
  45578. image: {
  45579. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45580. extra: 1380/1166,
  45581. bottom: 110/1490
  45582. }
  45583. },
  45584. backNsfw: {
  45585. height: math.unit(18, "feet"),
  45586. name: "Back (NSFW)",
  45587. image: {
  45588. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45589. extra: 1592/1170,
  45590. bottom: 128/1720
  45591. }
  45592. },
  45593. },
  45594. [
  45595. {
  45596. name: "Normal",
  45597. height: math.unit(18, "feet"),
  45598. default: true
  45599. },
  45600. ]
  45601. ))
  45602. characterMakers.push(() => makeCharacter(
  45603. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45604. {
  45605. spreadWings: {
  45606. height: math.unit(20, "feet"),
  45607. name: "Spread Wings",
  45608. image: {
  45609. source: "./media/characters/fledge/spread-wings.svg",
  45610. extra: 693/635,
  45611. bottom: 26/719
  45612. }
  45613. },
  45614. front: {
  45615. height: math.unit(20, "feet"),
  45616. name: "Front",
  45617. image: {
  45618. source: "./media/characters/fledge/front.svg",
  45619. extra: 684/637,
  45620. bottom: 18/702
  45621. }
  45622. },
  45623. frontAlt: {
  45624. height: math.unit(20, "feet"),
  45625. name: "Front (Alt)",
  45626. image: {
  45627. source: "./media/characters/fledge/front-alt.svg",
  45628. extra: 708/664,
  45629. bottom: 13/721
  45630. }
  45631. },
  45632. back: {
  45633. height: math.unit(20, "feet"),
  45634. name: "Back",
  45635. image: {
  45636. source: "./media/characters/fledge/back.svg",
  45637. extra: 718/634,
  45638. bottom: 22/740
  45639. }
  45640. },
  45641. head: {
  45642. height: math.unit(5.55, "feet"),
  45643. name: "Head",
  45644. image: {
  45645. source: "./media/characters/fledge/head.svg"
  45646. }
  45647. },
  45648. headAlt: {
  45649. height: math.unit(5.1, "feet"),
  45650. name: "Head (Alt)",
  45651. image: {
  45652. source: "./media/characters/fledge/head-alt.svg"
  45653. }
  45654. },
  45655. },
  45656. [
  45657. {
  45658. name: "Small",
  45659. height: math.unit(6 + 2/12, "feet")
  45660. },
  45661. {
  45662. name: "Big",
  45663. height: math.unit(20, "feet"),
  45664. default: true
  45665. },
  45666. {
  45667. name: "Giant",
  45668. height: math.unit(100, "feet")
  45669. },
  45670. {
  45671. name: "Macro",
  45672. height: math.unit(200, "feet")
  45673. },
  45674. ]
  45675. ))
  45676. characterMakers.push(() => makeCharacter(
  45677. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45678. {
  45679. front: {
  45680. height: math.unit(1, "meter"),
  45681. name: "Front",
  45682. image: {
  45683. source: "./media/characters/atlas-morenai/front.svg",
  45684. extra: 1275/1043,
  45685. bottom: 19/1294
  45686. }
  45687. },
  45688. back: {
  45689. height: math.unit(1, "meter"),
  45690. name: "Back",
  45691. image: {
  45692. source: "./media/characters/atlas-morenai/back.svg",
  45693. extra: 1141/1001,
  45694. bottom: 25/1166
  45695. }
  45696. },
  45697. },
  45698. [
  45699. {
  45700. name: "Normal",
  45701. height: math.unit(1, "meter"),
  45702. default: true
  45703. },
  45704. {
  45705. name: "Magic-Infused",
  45706. height: math.unit(5, "meters")
  45707. },
  45708. ]
  45709. ))
  45710. characterMakers.push(() => makeCharacter(
  45711. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45712. {
  45713. front: {
  45714. height: math.unit(5, "meters"),
  45715. name: "Front",
  45716. image: {
  45717. source: "./media/characters/cintia/front.svg",
  45718. extra: 1312/1228,
  45719. bottom: 38/1350
  45720. }
  45721. },
  45722. back: {
  45723. height: math.unit(5, "meters"),
  45724. name: "Back",
  45725. image: {
  45726. source: "./media/characters/cintia/back.svg",
  45727. extra: 1260/1166,
  45728. bottom: 98/1358
  45729. }
  45730. },
  45731. frontDick: {
  45732. height: math.unit(5, "meters"),
  45733. name: "Front (Dick)",
  45734. image: {
  45735. source: "./media/characters/cintia/front-dick.svg",
  45736. extra: 1312/1228,
  45737. bottom: 38/1350
  45738. }
  45739. },
  45740. backDick: {
  45741. height: math.unit(5, "meters"),
  45742. name: "Back (Dick)",
  45743. image: {
  45744. source: "./media/characters/cintia/back-dick.svg",
  45745. extra: 1260/1166,
  45746. bottom: 98/1358
  45747. }
  45748. },
  45749. bust: {
  45750. height: math.unit(1.97, "meters"),
  45751. name: "Bust",
  45752. image: {
  45753. source: "./media/characters/cintia/bust.svg",
  45754. extra: 617/565,
  45755. bottom: 0/617
  45756. }
  45757. },
  45758. },
  45759. [
  45760. {
  45761. name: "Normal",
  45762. height: math.unit(5, "meters"),
  45763. default: true
  45764. },
  45765. ]
  45766. ))
  45767. characterMakers.push(() => makeCharacter(
  45768. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45769. {
  45770. side: {
  45771. height: math.unit(100, "feet"),
  45772. name: "Side",
  45773. image: {
  45774. source: "./media/characters/denora/side.svg",
  45775. extra: 875/803,
  45776. bottom: 9/884
  45777. }
  45778. },
  45779. },
  45780. [
  45781. {
  45782. name: "Standard",
  45783. height: math.unit(100, "feet"),
  45784. default: true
  45785. },
  45786. {
  45787. name: "Grand",
  45788. height: math.unit(1000, "feet")
  45789. },
  45790. {
  45791. name: "Conquering",
  45792. height: math.unit(10000, "feet")
  45793. },
  45794. ]
  45795. ))
  45796. characterMakers.push(() => makeCharacter(
  45797. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45798. {
  45799. dressed: {
  45800. height: math.unit(8 + 5/12, "feet"),
  45801. weight: math.unit(700, "lb"),
  45802. name: "Dressed",
  45803. image: {
  45804. source: "./media/characters/kiva/dressed.svg",
  45805. extra: 1102/1055,
  45806. bottom: 60/1162
  45807. }
  45808. },
  45809. nude: {
  45810. height: math.unit(8 + 5/12, "feet"),
  45811. weight: math.unit(700, "lb"),
  45812. name: "Nude",
  45813. image: {
  45814. source: "./media/characters/kiva/nude.svg",
  45815. extra: 1102/1055,
  45816. bottom: 60/1162
  45817. }
  45818. },
  45819. },
  45820. [
  45821. {
  45822. name: "Base Height",
  45823. height: math.unit(8 + 5/12, "feet"),
  45824. default: true
  45825. },
  45826. {
  45827. name: "Macro",
  45828. height: math.unit(100, "feet")
  45829. },
  45830. {
  45831. name: "Max",
  45832. height: math.unit(3280, "feet")
  45833. },
  45834. ]
  45835. ))
  45836. characterMakers.push(() => makeCharacter(
  45837. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45838. {
  45839. front: {
  45840. height: math.unit(6 + 8/12, "feet"),
  45841. weight: math.unit(250, "lb"),
  45842. name: "Front",
  45843. image: {
  45844. source: "./media/characters/ztragon/front.svg",
  45845. extra: 1825/1684,
  45846. bottom: 98/1923
  45847. }
  45848. },
  45849. },
  45850. [
  45851. {
  45852. name: "Normal",
  45853. height: math.unit(6 + 8/12, "feet"),
  45854. default: true
  45855. },
  45856. {
  45857. name: "Macro",
  45858. height: math.unit(80, "feet")
  45859. },
  45860. ]
  45861. ))
  45862. characterMakers.push(() => makeCharacter(
  45863. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45864. {
  45865. front: {
  45866. height: math.unit(10.4, "feet"),
  45867. weight: math.unit(2, "tons"),
  45868. name: "Front",
  45869. image: {
  45870. source: "./media/characters/yesenia/front.svg",
  45871. extra: 1479/1474,
  45872. bottom: 233/1712
  45873. }
  45874. },
  45875. },
  45876. [
  45877. {
  45878. name: "Normal",
  45879. height: math.unit(10.4, "feet"),
  45880. default: true
  45881. },
  45882. ]
  45883. ))
  45884. characterMakers.push(() => makeCharacter(
  45885. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45886. {
  45887. normal: {
  45888. height: math.unit(6 + 1/12, "feet"),
  45889. weight: math.unit(180, "lb"),
  45890. name: "Normal",
  45891. image: {
  45892. source: "./media/characters/leanne-lycheborne/normal.svg",
  45893. extra: 1748/1660,
  45894. bottom: 98/1846
  45895. }
  45896. },
  45897. were: {
  45898. height: math.unit(12, "feet"),
  45899. weight: math.unit(1600, "lb"),
  45900. name: "Were",
  45901. image: {
  45902. source: "./media/characters/leanne-lycheborne/were.svg",
  45903. extra: 1485/1432,
  45904. bottom: 66/1551
  45905. }
  45906. },
  45907. },
  45908. [
  45909. {
  45910. name: "Normal",
  45911. height: math.unit(6 + 1/12, "feet"),
  45912. default: true
  45913. },
  45914. ]
  45915. ))
  45916. characterMakers.push(() => makeCharacter(
  45917. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45918. {
  45919. side: {
  45920. height: math.unit(13, "feet"),
  45921. name: "Side",
  45922. image: {
  45923. source: "./media/characters/kira-tyler/side.svg",
  45924. extra: 693/393,
  45925. bottom: 58/751
  45926. }
  45927. },
  45928. },
  45929. [
  45930. {
  45931. name: "Normal",
  45932. height: math.unit(13, "feet"),
  45933. default: true
  45934. },
  45935. ]
  45936. ))
  45937. characterMakers.push(() => makeCharacter(
  45938. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45939. {
  45940. front: {
  45941. height: math.unit(10.3, "feet"),
  45942. weight: math.unit(150, "lb"),
  45943. name: "Front",
  45944. image: {
  45945. source: "./media/characters/blaze/front.svg",
  45946. extra: 1378/1286,
  45947. bottom: 172/1550
  45948. }
  45949. },
  45950. },
  45951. [
  45952. {
  45953. name: "Normal",
  45954. height: math.unit(10.3, "feet"),
  45955. default: true
  45956. },
  45957. ]
  45958. ))
  45959. characterMakers.push(() => makeCharacter(
  45960. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45961. {
  45962. side: {
  45963. height: math.unit(2, "meters"),
  45964. weight: math.unit(400, "kg"),
  45965. name: "Side",
  45966. image: {
  45967. source: "./media/characters/anu/side.svg",
  45968. extra: 506/394,
  45969. bottom: 18/524
  45970. }
  45971. },
  45972. },
  45973. [
  45974. {
  45975. name: "Humanoid",
  45976. height: math.unit(2, "meters")
  45977. },
  45978. {
  45979. name: "Normal",
  45980. height: math.unit(5, "meters"),
  45981. default: true
  45982. },
  45983. ]
  45984. ))
  45985. characterMakers.push(() => makeCharacter(
  45986. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45987. {
  45988. front: {
  45989. height: math.unit(5 + 5/12, "feet"),
  45990. weight: math.unit(170, "lb"),
  45991. name: "Front",
  45992. image: {
  45993. source: "./media/characters/synx-the-lynx/front.svg",
  45994. extra: 1893/1745,
  45995. bottom: 17/1910
  45996. }
  45997. },
  45998. side: {
  45999. height: math.unit(5 + 5/12, "feet"),
  46000. weight: math.unit(170, "lb"),
  46001. name: "Side",
  46002. image: {
  46003. source: "./media/characters/synx-the-lynx/side.svg",
  46004. extra: 1884/1740,
  46005. bottom: 39/1923
  46006. }
  46007. },
  46008. back: {
  46009. height: math.unit(5 + 5/12, "feet"),
  46010. weight: math.unit(170, "lb"),
  46011. name: "Back",
  46012. image: {
  46013. source: "./media/characters/synx-the-lynx/back.svg",
  46014. extra: 1903/1755,
  46015. bottom: 14/1917
  46016. }
  46017. },
  46018. },
  46019. [
  46020. {
  46021. name: "Normal",
  46022. height: math.unit(5 + 5/12, "feet"),
  46023. default: true
  46024. },
  46025. ]
  46026. ))
  46027. characterMakers.push(() => makeCharacter(
  46028. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46029. {
  46030. back: {
  46031. height: math.unit(15, "feet"),
  46032. name: "Back",
  46033. image: {
  46034. source: "./media/characters/nadezda-fex/back.svg",
  46035. extra: 1695/1481,
  46036. bottom: 25/1720
  46037. }
  46038. },
  46039. },
  46040. [
  46041. {
  46042. name: "Normal",
  46043. height: math.unit(15, "feet"),
  46044. default: true
  46045. },
  46046. {
  46047. name: "Macro",
  46048. height: math.unit(2.5, "miles")
  46049. },
  46050. {
  46051. name: "Goddess",
  46052. height: math.unit(2, "multiverses")
  46053. },
  46054. ]
  46055. ))
  46056. characterMakers.push(() => makeCharacter(
  46057. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46058. {
  46059. front: {
  46060. height: math.unit(216, "cm"),
  46061. name: "Front",
  46062. image: {
  46063. source: "./media/characters/lev/front.svg",
  46064. extra: 1728/1670,
  46065. bottom: 82/1810
  46066. }
  46067. },
  46068. back: {
  46069. height: math.unit(216, "cm"),
  46070. name: "Back",
  46071. image: {
  46072. source: "./media/characters/lev/back.svg",
  46073. extra: 1738/1675,
  46074. bottom: 24/1762
  46075. }
  46076. },
  46077. dressed: {
  46078. height: math.unit(216, "cm"),
  46079. name: "Dressed",
  46080. image: {
  46081. source: "./media/characters/lev/dressed.svg",
  46082. extra: 1397/1351,
  46083. bottom: 73/1470
  46084. }
  46085. },
  46086. head: {
  46087. height: math.unit(0.51, "meter"),
  46088. name: "Head",
  46089. image: {
  46090. source: "./media/characters/lev/head.svg"
  46091. }
  46092. },
  46093. },
  46094. [
  46095. {
  46096. name: "Normal",
  46097. height: math.unit(216, "cm"),
  46098. default: true
  46099. },
  46100. {
  46101. name: "Relatively Macro",
  46102. height: math.unit(80, "meters")
  46103. },
  46104. {
  46105. name: "Megamacro",
  46106. height: math.unit(21600, "meters")
  46107. },
  46108. {
  46109. name: "Megamacro+",
  46110. height: math.unit(64800, "meters")
  46111. },
  46112. ]
  46113. ))
  46114. characterMakers.push(() => makeCharacter(
  46115. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46116. {
  46117. front: {
  46118. height: math.unit(2, "meters"),
  46119. weight: math.unit(80, "kg"),
  46120. name: "Front",
  46121. image: {
  46122. source: "./media/characters/moka/front.svg",
  46123. extra: 1337/1255,
  46124. bottom: 58/1395
  46125. }
  46126. },
  46127. },
  46128. [
  46129. {
  46130. name: "Micro",
  46131. height: math.unit(15, "cm")
  46132. },
  46133. {
  46134. name: "Normal",
  46135. height: math.unit(2, "meters"),
  46136. default: true
  46137. },
  46138. {
  46139. name: "Macro",
  46140. height: math.unit(20, "meters"),
  46141. },
  46142. ]
  46143. ))
  46144. characterMakers.push(() => makeCharacter(
  46145. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46146. {
  46147. front: {
  46148. height: math.unit(9, "feet"),
  46149. weight: math.unit(240, "lb"),
  46150. name: "Front",
  46151. image: {
  46152. source: "./media/characters/kuzco/front.svg",
  46153. extra: 1593/1487,
  46154. bottom: 32/1625
  46155. }
  46156. },
  46157. side: {
  46158. height: math.unit(9, "feet"),
  46159. weight: math.unit(240, "lb"),
  46160. name: "Side",
  46161. image: {
  46162. source: "./media/characters/kuzco/side.svg",
  46163. extra: 1575/1485,
  46164. bottom: 30/1605
  46165. }
  46166. },
  46167. back: {
  46168. height: math.unit(9, "feet"),
  46169. weight: math.unit(240, "lb"),
  46170. name: "Back",
  46171. image: {
  46172. source: "./media/characters/kuzco/back.svg",
  46173. extra: 1603/1514,
  46174. bottom: 14/1617
  46175. }
  46176. },
  46177. },
  46178. [
  46179. {
  46180. name: "Normal",
  46181. height: math.unit(9, "feet"),
  46182. default: true
  46183. },
  46184. ]
  46185. ))
  46186. characterMakers.push(() => makeCharacter(
  46187. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46188. {
  46189. side: {
  46190. height: math.unit(2, "meters"),
  46191. weight: math.unit(300, "kg"),
  46192. name: "Side",
  46193. image: {
  46194. source: "./media/characters/ceruleus/side.svg",
  46195. extra: 1068/974,
  46196. bottom: 126/1194
  46197. }
  46198. },
  46199. },
  46200. [
  46201. {
  46202. name: "Normal",
  46203. height: math.unit(16, "meters"),
  46204. default: true
  46205. },
  46206. ]
  46207. ))
  46208. characterMakers.push(() => makeCharacter(
  46209. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46210. {
  46211. front: {
  46212. height: math.unit(9, "feet"),
  46213. weight: math.unit(500, "kg"),
  46214. name: "Front",
  46215. image: {
  46216. source: "./media/characters/acouya/front.svg",
  46217. extra: 1660/1473,
  46218. bottom: 28/1688
  46219. }
  46220. },
  46221. },
  46222. [
  46223. {
  46224. name: "Normal",
  46225. height: math.unit(9, "feet"),
  46226. default: true
  46227. },
  46228. ]
  46229. ))
  46230. characterMakers.push(() => makeCharacter(
  46231. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46232. {
  46233. front: {
  46234. height: math.unit(5 + 6/12, "feet"),
  46235. weight: math.unit(195, "lb"),
  46236. name: "Front",
  46237. image: {
  46238. source: "./media/characters/vant/front.svg",
  46239. extra: 1396/1320,
  46240. bottom: 20/1416
  46241. }
  46242. },
  46243. back: {
  46244. height: math.unit(5 + 6/12, "feet"),
  46245. weight: math.unit(195, "lb"),
  46246. name: "Back",
  46247. image: {
  46248. source: "./media/characters/vant/back.svg",
  46249. extra: 1396/1320,
  46250. bottom: 20/1416
  46251. }
  46252. },
  46253. maw: {
  46254. height: math.unit(0.75, "feet"),
  46255. name: "Maw",
  46256. image: {
  46257. source: "./media/characters/vant/maw.svg"
  46258. }
  46259. },
  46260. paw: {
  46261. height: math.unit(1.07, "feet"),
  46262. name: "Paw",
  46263. image: {
  46264. source: "./media/characters/vant/paw.svg"
  46265. }
  46266. },
  46267. },
  46268. [
  46269. {
  46270. name: "Micro",
  46271. height: math.unit(0.25, "inches")
  46272. },
  46273. {
  46274. name: "Normal",
  46275. height: math.unit(5 + 6/12, "feet"),
  46276. default: true
  46277. },
  46278. {
  46279. name: "Macro",
  46280. height: math.unit(75, "feet")
  46281. },
  46282. ]
  46283. ))
  46284. characterMakers.push(() => makeCharacter(
  46285. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46286. {
  46287. front: {
  46288. height: math.unit(30, "meters"),
  46289. weight: math.unit(363, "tons"),
  46290. name: "Front",
  46291. image: {
  46292. source: "./media/characters/ahra/front.svg",
  46293. extra: 1914/1814,
  46294. bottom: 46/1960
  46295. }
  46296. },
  46297. },
  46298. [
  46299. {
  46300. name: "Macro",
  46301. height: math.unit(30, "meters"),
  46302. default: true
  46303. },
  46304. ]
  46305. ))
  46306. characterMakers.push(() => makeCharacter(
  46307. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46308. {
  46309. undressed: {
  46310. height: math.unit(2, "m"),
  46311. weight: math.unit(250, "kg"),
  46312. name: "Undressed",
  46313. image: {
  46314. source: "./media/characters/coriander/undressed.svg",
  46315. extra: 1757/1606,
  46316. bottom: 107/1864
  46317. }
  46318. },
  46319. dressed: {
  46320. height: math.unit(2, "m"),
  46321. weight: math.unit(250, "kg"),
  46322. name: "Dressed",
  46323. image: {
  46324. source: "./media/characters/coriander/dressed.svg",
  46325. extra: 1757/1606,
  46326. bottom: 107/1864
  46327. }
  46328. },
  46329. },
  46330. [
  46331. {
  46332. name: "Normal",
  46333. height: math.unit(4, "meters"),
  46334. default: true
  46335. },
  46336. {
  46337. name: "XL",
  46338. height: math.unit(6, "meters")
  46339. },
  46340. {
  46341. name: "XXL",
  46342. height: math.unit(8, "meters")
  46343. },
  46344. ]
  46345. ))
  46346. characterMakers.push(() => makeCharacter(
  46347. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46348. {
  46349. front: {
  46350. height: math.unit(6, "feet"),
  46351. name: "Front",
  46352. image: {
  46353. source: "./media/characters/syrinx/front.svg",
  46354. extra: 1557/1259,
  46355. bottom: 171/1728
  46356. }
  46357. },
  46358. },
  46359. [
  46360. {
  46361. name: "Normal",
  46362. height: math.unit(6 + 3/12, "feet"),
  46363. default: true
  46364. },
  46365. ]
  46366. ))
  46367. characterMakers.push(() => makeCharacter(
  46368. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46369. {
  46370. front: {
  46371. height: math.unit(11 + 6/12, "feet"),
  46372. weight: math.unit(1.5, "tons"),
  46373. name: "Front",
  46374. image: {
  46375. source: "./media/characters/bor/front.svg",
  46376. extra: 1189/1109,
  46377. bottom: 170/1359
  46378. }
  46379. },
  46380. },
  46381. [
  46382. {
  46383. name: "Normal",
  46384. height: math.unit(11 + 6/12, "feet"),
  46385. default: true
  46386. },
  46387. {
  46388. name: "Macro",
  46389. height: math.unit(32 + 9/12, "feet")
  46390. },
  46391. ]
  46392. ))
  46393. characterMakers.push(() => makeCharacter(
  46394. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46395. {
  46396. anthro: {
  46397. height: math.unit(9, "feet"),
  46398. weight: math.unit(2076, "lb"),
  46399. name: "Anthro",
  46400. image: {
  46401. source: "./media/characters/abacus/anthro.svg",
  46402. extra: 1540/1494,
  46403. bottom: 233/1773
  46404. }
  46405. },
  46406. pigeon: {
  46407. height: math.unit(1, "feet"),
  46408. name: "Pigeon",
  46409. image: {
  46410. source: "./media/characters/abacus/pigeon.svg",
  46411. extra: 528/525,
  46412. bottom: 46/574
  46413. }
  46414. },
  46415. },
  46416. [
  46417. {
  46418. name: "Normal",
  46419. height: math.unit(9, "feet"),
  46420. default: true
  46421. },
  46422. ]
  46423. ))
  46424. characterMakers.push(() => makeCharacter(
  46425. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46426. {
  46427. side: {
  46428. height: math.unit(6, "feet"),
  46429. name: "Side",
  46430. image: {
  46431. source: "./media/characters/delkhan/side.svg",
  46432. extra: 1884/1786,
  46433. bottom: 308/2192
  46434. }
  46435. },
  46436. head: {
  46437. height: math.unit(3.38, "feet"),
  46438. name: "Head",
  46439. image: {
  46440. source: "./media/characters/delkhan/head.svg"
  46441. }
  46442. },
  46443. },
  46444. [
  46445. {
  46446. name: "Normal",
  46447. height: math.unit(72, "feet"),
  46448. default: true
  46449. },
  46450. {
  46451. name: "Giant",
  46452. height: math.unit(172, "feet")
  46453. },
  46454. ]
  46455. ))
  46456. characterMakers.push(() => makeCharacter(
  46457. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46458. {
  46459. standing: {
  46460. height: math.unit(6, "feet"),
  46461. name: "Standing",
  46462. image: {
  46463. source: "./media/characters/euchidat/standing.svg",
  46464. extra: 1612/1553,
  46465. bottom: 116/1728
  46466. }
  46467. },
  46468. leaning: {
  46469. height: math.unit(6, "feet"),
  46470. name: "Leaning",
  46471. image: {
  46472. source: "./media/characters/euchidat/leaning.svg",
  46473. extra: 1719/1674,
  46474. bottom: 27/1746
  46475. }
  46476. },
  46477. },
  46478. [
  46479. {
  46480. name: "Normal",
  46481. height: math.unit(175, "feet"),
  46482. default: true
  46483. },
  46484. {
  46485. name: "Megamacro",
  46486. height: math.unit(190, "miles")
  46487. },
  46488. {
  46489. name: "Gigamacro",
  46490. height: math.unit(190000, "miles")
  46491. },
  46492. ]
  46493. ))
  46494. characterMakers.push(() => makeCharacter(
  46495. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46496. {
  46497. front: {
  46498. height: math.unit(6, "feet"),
  46499. weight: math.unit(150, "lb"),
  46500. name: "Front",
  46501. image: {
  46502. source: "./media/characters/rebecca-stack/front.svg",
  46503. extra: 1256/1201,
  46504. bottom: 18/1274
  46505. }
  46506. },
  46507. },
  46508. [
  46509. {
  46510. name: "Normal",
  46511. height: math.unit(5 + 8/12, "feet"),
  46512. default: true
  46513. },
  46514. {
  46515. name: "Demolitionist",
  46516. height: math.unit(200, "feet")
  46517. },
  46518. {
  46519. name: "Out of Control",
  46520. height: math.unit(2, "miles")
  46521. },
  46522. {
  46523. name: "Giga",
  46524. height: math.unit(7200, "miles")
  46525. },
  46526. ]
  46527. ))
  46528. characterMakers.push(() => makeCharacter(
  46529. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46530. {
  46531. front: {
  46532. height: math.unit(6, "feet"),
  46533. weight: math.unit(150, "lb"),
  46534. name: "Front",
  46535. image: {
  46536. source: "./media/characters/jenny-cartwright/front.svg",
  46537. extra: 1384/1376,
  46538. bottom: 58/1442
  46539. }
  46540. },
  46541. },
  46542. [
  46543. {
  46544. name: "Normal",
  46545. height: math.unit(6 + 7/12, "feet"),
  46546. default: true
  46547. },
  46548. {
  46549. name: "Librarian",
  46550. height: math.unit(55, "feet")
  46551. },
  46552. {
  46553. name: "Sightseer",
  46554. height: math.unit(50, "miles")
  46555. },
  46556. {
  46557. name: "Giga",
  46558. height: math.unit(30000, "miles")
  46559. },
  46560. ]
  46561. ))
  46562. characterMakers.push(() => makeCharacter(
  46563. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46564. {
  46565. nude: {
  46566. height: math.unit(8, "feet"),
  46567. weight: math.unit(225, "lb"),
  46568. name: "Nude",
  46569. image: {
  46570. source: "./media/characters/marvy/nude.svg",
  46571. extra: 1900/1683,
  46572. bottom: 89/1989
  46573. }
  46574. },
  46575. dressed: {
  46576. height: math.unit(8, "feet"),
  46577. weight: math.unit(225, "lb"),
  46578. name: "Dressed",
  46579. image: {
  46580. source: "./media/characters/marvy/dressed.svg",
  46581. extra: 1900/1683,
  46582. bottom: 89/1989
  46583. }
  46584. },
  46585. head: {
  46586. height: math.unit(2.85, "feet"),
  46587. name: "Head",
  46588. image: {
  46589. source: "./media/characters/marvy/head.svg"
  46590. }
  46591. },
  46592. },
  46593. [
  46594. {
  46595. name: "Normal",
  46596. height: math.unit(8, "feet"),
  46597. default: true
  46598. },
  46599. ]
  46600. ))
  46601. characterMakers.push(() => makeCharacter(
  46602. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46603. {
  46604. front: {
  46605. height: math.unit(8, "feet"),
  46606. weight: math.unit(250, "lb"),
  46607. name: "Front",
  46608. image: {
  46609. source: "./media/characters/leah/front.svg",
  46610. extra: 1257/1149,
  46611. bottom: 109/1366
  46612. }
  46613. },
  46614. },
  46615. [
  46616. {
  46617. name: "Normal",
  46618. height: math.unit(8, "feet"),
  46619. default: true
  46620. },
  46621. {
  46622. name: "Minimacro",
  46623. height: math.unit(40, "feet")
  46624. },
  46625. {
  46626. name: "Macro",
  46627. height: math.unit(124, "feet")
  46628. },
  46629. {
  46630. name: "Megamacro",
  46631. height: math.unit(850, "feet")
  46632. },
  46633. ]
  46634. ))
  46635. characterMakers.push(() => makeCharacter(
  46636. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46637. {
  46638. side: {
  46639. height: math.unit(13 + 6/12, "feet"),
  46640. weight: math.unit(3200, "lb"),
  46641. name: "Side",
  46642. image: {
  46643. source: "./media/characters/alvir/side.svg",
  46644. extra: 896/589,
  46645. bottom: 26/922
  46646. }
  46647. },
  46648. },
  46649. [
  46650. {
  46651. name: "Normal",
  46652. height: math.unit(13 + 6/12, "feet"),
  46653. default: true
  46654. },
  46655. ]
  46656. ))
  46657. characterMakers.push(() => makeCharacter(
  46658. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46659. {
  46660. front: {
  46661. height: math.unit(5 + 4/12, "feet"),
  46662. weight: math.unit(236, "lb"),
  46663. name: "Front",
  46664. image: {
  46665. source: "./media/characters/zaina-khalil/front.svg",
  46666. extra: 1533/1485,
  46667. bottom: 94/1627
  46668. }
  46669. },
  46670. side: {
  46671. height: math.unit(5 + 4/12, "feet"),
  46672. weight: math.unit(236, "lb"),
  46673. name: "Side",
  46674. image: {
  46675. source: "./media/characters/zaina-khalil/side.svg",
  46676. extra: 1537/1498,
  46677. bottom: 66/1603
  46678. }
  46679. },
  46680. back: {
  46681. height: math.unit(5 + 4/12, "feet"),
  46682. weight: math.unit(236, "lb"),
  46683. name: "Back",
  46684. image: {
  46685. source: "./media/characters/zaina-khalil/back.svg",
  46686. extra: 1546/1494,
  46687. bottom: 89/1635
  46688. }
  46689. },
  46690. },
  46691. [
  46692. {
  46693. name: "Normal",
  46694. height: math.unit(5 + 4/12, "feet"),
  46695. default: true
  46696. },
  46697. ]
  46698. ))
  46699. characterMakers.push(() => makeCharacter(
  46700. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46701. {
  46702. side: {
  46703. height: math.unit(12, "feet"),
  46704. weight: math.unit(4000, "lb"),
  46705. name: "Side",
  46706. image: {
  46707. source: "./media/characters/terry/side.svg",
  46708. extra: 1518/1439,
  46709. bottom: 149/1667
  46710. }
  46711. },
  46712. },
  46713. [
  46714. {
  46715. name: "Normal",
  46716. height: math.unit(12, "feet"),
  46717. default: true
  46718. },
  46719. ]
  46720. ))
  46721. characterMakers.push(() => makeCharacter(
  46722. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46723. {
  46724. front: {
  46725. height: math.unit(12, "feet"),
  46726. weight: math.unit(1500, "lb"),
  46727. name: "Front",
  46728. image: {
  46729. source: "./media/characters/kahea/front.svg",
  46730. extra: 1722/1617,
  46731. bottom: 179/1901
  46732. }
  46733. },
  46734. },
  46735. [
  46736. {
  46737. name: "Normal",
  46738. height: math.unit(12, "feet"),
  46739. default: true
  46740. },
  46741. ]
  46742. ))
  46743. characterMakers.push(() => makeCharacter(
  46744. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46745. {
  46746. demonFront: {
  46747. height: math.unit(36, "feet"),
  46748. name: "Front",
  46749. image: {
  46750. source: "./media/characters/alex-xuria/demon-front.svg",
  46751. extra: 1705/1673,
  46752. bottom: 198/1903
  46753. },
  46754. form: "demon",
  46755. default: true
  46756. },
  46757. demonBack: {
  46758. height: math.unit(36, "feet"),
  46759. name: "Back",
  46760. image: {
  46761. source: "./media/characters/alex-xuria/demon-back.svg",
  46762. extra: 1725/1693,
  46763. bottom: 70/1795
  46764. },
  46765. form: "demon"
  46766. },
  46767. demonHead: {
  46768. height: math.unit(2.14, "meters"),
  46769. name: "Head",
  46770. image: {
  46771. source: "./media/characters/alex-xuria/demon-head.svg"
  46772. },
  46773. form: "demon"
  46774. },
  46775. demonHand: {
  46776. height: math.unit(1.61, "meters"),
  46777. name: "Hand",
  46778. image: {
  46779. source: "./media/characters/alex-xuria/demon-hand.svg"
  46780. },
  46781. form: "demon"
  46782. },
  46783. demonPaw: {
  46784. height: math.unit(1.35, "meters"),
  46785. name: "Paw",
  46786. image: {
  46787. source: "./media/characters/alex-xuria/demon-paw.svg"
  46788. },
  46789. form: "demon"
  46790. },
  46791. demonFoot: {
  46792. height: math.unit(2.2, "meters"),
  46793. name: "Foot",
  46794. image: {
  46795. source: "./media/characters/alex-xuria/demon-foot.svg"
  46796. },
  46797. form: "demon"
  46798. },
  46799. demonCock: {
  46800. height: math.unit(1.74, "meters"),
  46801. name: "Cock",
  46802. image: {
  46803. source: "./media/characters/alex-xuria/demon-cock.svg"
  46804. },
  46805. form: "demon"
  46806. },
  46807. demonTailClosed: {
  46808. height: math.unit(1.47, "meters"),
  46809. name: "Tail (Closed)",
  46810. image: {
  46811. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46812. },
  46813. form: "demon"
  46814. },
  46815. demonTailOpen: {
  46816. height: math.unit(2.85, "meters"),
  46817. name: "Tail (Open)",
  46818. image: {
  46819. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46820. },
  46821. form: "demon"
  46822. },
  46823. incubusFront: {
  46824. height: math.unit(12, "feet"),
  46825. name: "Front",
  46826. image: {
  46827. source: "./media/characters/alex-xuria/incubus-front.svg",
  46828. extra: 1754/1677,
  46829. bottom: 125/1879
  46830. },
  46831. form: "incubus",
  46832. default: true
  46833. },
  46834. incubusBack: {
  46835. height: math.unit(12, "feet"),
  46836. name: "Back",
  46837. image: {
  46838. source: "./media/characters/alex-xuria/incubus-back.svg",
  46839. extra: 1702/1647,
  46840. bottom: 30/1732
  46841. },
  46842. form: "incubus"
  46843. },
  46844. incubusHead: {
  46845. height: math.unit(3.45, "feet"),
  46846. name: "Head",
  46847. image: {
  46848. source: "./media/characters/alex-xuria/incubus-head.svg"
  46849. },
  46850. form: "incubus"
  46851. },
  46852. rabbitFront: {
  46853. height: math.unit(6, "feet"),
  46854. name: "Front",
  46855. image: {
  46856. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46857. extra: 1369/1349,
  46858. bottom: 45/1414
  46859. },
  46860. form: "rabbit",
  46861. default: true
  46862. },
  46863. rabbitSide: {
  46864. height: math.unit(6, "feet"),
  46865. name: "Side",
  46866. image: {
  46867. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46868. extra: 1370/1356,
  46869. bottom: 37/1407
  46870. },
  46871. form: "rabbit"
  46872. },
  46873. rabbitBack: {
  46874. height: math.unit(6, "feet"),
  46875. name: "Back",
  46876. image: {
  46877. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46878. extra: 1375/1358,
  46879. bottom: 43/1418
  46880. },
  46881. form: "rabbit"
  46882. },
  46883. },
  46884. [
  46885. {
  46886. name: "Normal",
  46887. height: math.unit(6, "feet"),
  46888. default: true,
  46889. form: "rabbit"
  46890. },
  46891. {
  46892. name: "Incubus",
  46893. height: math.unit(12, "feet"),
  46894. default: true,
  46895. form: "incubus"
  46896. },
  46897. {
  46898. name: "Demon",
  46899. height: math.unit(36, "feet"),
  46900. default: true,
  46901. form: "demon"
  46902. }
  46903. ],
  46904. {
  46905. "demon": {
  46906. name: "Demon",
  46907. default: true
  46908. },
  46909. "incubus": {
  46910. name: "Incubus",
  46911. },
  46912. "rabbit": {
  46913. name: "Rabbit"
  46914. }
  46915. }
  46916. ))
  46917. characterMakers.push(() => makeCharacter(
  46918. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46919. {
  46920. front: {
  46921. height: math.unit(7 + 5/12, "feet"),
  46922. weight: math.unit(510, "lb"),
  46923. name: "Front",
  46924. image: {
  46925. source: "./media/characters/syrup/front.svg",
  46926. extra: 932/916,
  46927. bottom: 26/958
  46928. }
  46929. },
  46930. },
  46931. [
  46932. {
  46933. name: "Normal",
  46934. height: math.unit(7 + 5/12, "feet"),
  46935. default: true
  46936. },
  46937. {
  46938. name: "Big",
  46939. height: math.unit(50, "feet")
  46940. },
  46941. {
  46942. name: "Macro",
  46943. height: math.unit(300, "feet")
  46944. },
  46945. {
  46946. name: "Megamacro",
  46947. height: math.unit(1, "mile")
  46948. },
  46949. ]
  46950. ))
  46951. characterMakers.push(() => makeCharacter(
  46952. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46953. {
  46954. front: {
  46955. height: math.unit(6 + 9/12, "feet"),
  46956. name: "Front",
  46957. image: {
  46958. source: "./media/characters/zeimne/front.svg",
  46959. extra: 1969/1806,
  46960. bottom: 53/2022
  46961. }
  46962. },
  46963. },
  46964. [
  46965. {
  46966. name: "Normal",
  46967. height: math.unit(6 + 9/12, "feet"),
  46968. default: true
  46969. },
  46970. {
  46971. name: "Giant",
  46972. height: math.unit(550, "feet")
  46973. },
  46974. {
  46975. name: "Mega",
  46976. height: math.unit(3, "miles")
  46977. },
  46978. {
  46979. name: "Giga",
  46980. height: math.unit(250, "miles")
  46981. },
  46982. {
  46983. name: "Tera",
  46984. height: math.unit(1, "AU")
  46985. },
  46986. ]
  46987. ))
  46988. characterMakers.push(() => makeCharacter(
  46989. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46990. {
  46991. front: {
  46992. height: math.unit(5 + 2/12, "feet"),
  46993. name: "Front",
  46994. image: {
  46995. source: "./media/characters/grar/front.svg",
  46996. extra: 1331/1119,
  46997. bottom: 60/1391
  46998. }
  46999. },
  47000. back: {
  47001. height: math.unit(5 + 2/12, "feet"),
  47002. name: "Back",
  47003. image: {
  47004. source: "./media/characters/grar/back.svg",
  47005. extra: 1385/1169,
  47006. bottom: 23/1408
  47007. }
  47008. },
  47009. },
  47010. [
  47011. {
  47012. name: "Normal",
  47013. height: math.unit(5 + 2/12, "feet"),
  47014. default: true
  47015. },
  47016. ]
  47017. ))
  47018. characterMakers.push(() => makeCharacter(
  47019. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47020. {
  47021. front: {
  47022. height: math.unit(13 + 7/12, "feet"),
  47023. weight: math.unit(2200, "lb"),
  47024. name: "Front",
  47025. image: {
  47026. source: "./media/characters/endraya/front.svg",
  47027. extra: 1289/1215,
  47028. bottom: 50/1339
  47029. }
  47030. },
  47031. nude: {
  47032. height: math.unit(13 + 7/12, "feet"),
  47033. weight: math.unit(2200, "lb"),
  47034. name: "Nude",
  47035. image: {
  47036. source: "./media/characters/endraya/nude.svg",
  47037. extra: 1247/1171,
  47038. bottom: 40/1287
  47039. }
  47040. },
  47041. head: {
  47042. height: math.unit(2.6, "feet"),
  47043. name: "Head",
  47044. image: {
  47045. source: "./media/characters/endraya/head.svg"
  47046. }
  47047. },
  47048. slit: {
  47049. height: math.unit(3.4, "feet"),
  47050. name: "Slit",
  47051. image: {
  47052. source: "./media/characters/endraya/slit.svg"
  47053. }
  47054. },
  47055. },
  47056. [
  47057. {
  47058. name: "Normal",
  47059. height: math.unit(13 + 7/12, "feet"),
  47060. default: true
  47061. },
  47062. {
  47063. name: "Macro",
  47064. height: math.unit(200, "feet")
  47065. },
  47066. ]
  47067. ))
  47068. characterMakers.push(() => makeCharacter(
  47069. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47070. {
  47071. front: {
  47072. height: math.unit(1.81, "meters"),
  47073. weight: math.unit(69, "kg"),
  47074. name: "Front",
  47075. image: {
  47076. source: "./media/characters/rodryana/front.svg",
  47077. extra: 2002/1921,
  47078. bottom: 53/2055
  47079. }
  47080. },
  47081. back: {
  47082. height: math.unit(1.81, "meters"),
  47083. weight: math.unit(69, "kg"),
  47084. name: "Back",
  47085. image: {
  47086. source: "./media/characters/rodryana/back.svg",
  47087. extra: 1993/1926,
  47088. bottom: 48/2041
  47089. }
  47090. },
  47091. maw: {
  47092. height: math.unit(0.19769417475, "meters"),
  47093. name: "Maw",
  47094. image: {
  47095. source: "./media/characters/rodryana/maw.svg"
  47096. }
  47097. },
  47098. slit: {
  47099. height: math.unit(0.31631067961, "meters"),
  47100. name: "Slit",
  47101. image: {
  47102. source: "./media/characters/rodryana/slit.svg"
  47103. }
  47104. },
  47105. },
  47106. [
  47107. {
  47108. name: "Normal",
  47109. height: math.unit(1.81, "meters")
  47110. },
  47111. {
  47112. name: "Mini Macro",
  47113. height: math.unit(181, "meters")
  47114. },
  47115. {
  47116. name: "Macro",
  47117. height: math.unit(452, "meters"),
  47118. default: true
  47119. },
  47120. {
  47121. name: "Mega Macro",
  47122. height: math.unit(1.375, "km")
  47123. },
  47124. {
  47125. name: "Giga Macro",
  47126. height: math.unit(13.575, "km")
  47127. },
  47128. ]
  47129. ))
  47130. characterMakers.push(() => makeCharacter(
  47131. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47132. {
  47133. front: {
  47134. height: math.unit(6, "feet"),
  47135. weight: math.unit(1000, "lb"),
  47136. name: "Front",
  47137. image: {
  47138. source: "./media/characters/asaya/front.svg",
  47139. extra: 1460/1200,
  47140. bottom: 71/1531
  47141. }
  47142. },
  47143. },
  47144. [
  47145. {
  47146. name: "Normal",
  47147. height: math.unit(8, "km"),
  47148. default: true
  47149. },
  47150. ]
  47151. ))
  47152. characterMakers.push(() => makeCharacter(
  47153. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47154. {
  47155. front: {
  47156. height: math.unit(3.5, "meters"),
  47157. name: "Front",
  47158. image: {
  47159. source: "./media/characters/sarzu-and-israz/front.svg",
  47160. extra: 1570/1558,
  47161. bottom: 150/1720
  47162. },
  47163. },
  47164. back: {
  47165. height: math.unit(3.5, "meters"),
  47166. name: "Back",
  47167. image: {
  47168. source: "./media/characters/sarzu-and-israz/back.svg",
  47169. extra: 1523/1509,
  47170. bottom: 132/1655
  47171. },
  47172. },
  47173. frontFemale: {
  47174. height: math.unit(3.5, "meters"),
  47175. name: "Front (Female)",
  47176. image: {
  47177. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47178. extra: 1570/1558,
  47179. bottom: 150/1720
  47180. },
  47181. },
  47182. frontHerm: {
  47183. height: math.unit(3.5, "meters"),
  47184. name: "Front (Herm)",
  47185. image: {
  47186. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47187. extra: 1570/1558,
  47188. bottom: 150/1720
  47189. },
  47190. },
  47191. },
  47192. [
  47193. {
  47194. name: "Normal",
  47195. height: math.unit(3.5, "meters"),
  47196. default: true,
  47197. },
  47198. {
  47199. name: "Macro",
  47200. height: math.unit(65.5, "meters"),
  47201. },
  47202. ],
  47203. ))
  47204. characterMakers.push(() => makeCharacter(
  47205. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47206. {
  47207. front: {
  47208. height: math.unit(6, "feet"),
  47209. weight: math.unit(250, "lb"),
  47210. name: "Front",
  47211. image: {
  47212. source: "./media/characters/zenimma/front.svg",
  47213. extra: 1346/1320,
  47214. bottom: 58/1404
  47215. }
  47216. },
  47217. back: {
  47218. height: math.unit(6, "feet"),
  47219. weight: math.unit(250, "lb"),
  47220. name: "Back",
  47221. image: {
  47222. source: "./media/characters/zenimma/back.svg",
  47223. extra: 1324/1308,
  47224. bottom: 44/1368
  47225. }
  47226. },
  47227. dick: {
  47228. height: math.unit(1.44, "feet"),
  47229. name: "Dick",
  47230. image: {
  47231. source: "./media/characters/zenimma/dick.svg"
  47232. }
  47233. },
  47234. },
  47235. [
  47236. {
  47237. name: "Canon Height",
  47238. height: math.unit(66, "miles"),
  47239. default: true
  47240. },
  47241. ]
  47242. ))
  47243. characterMakers.push(() => makeCharacter(
  47244. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47245. {
  47246. nude: {
  47247. height: math.unit(6, "feet"),
  47248. weight: math.unit(150, "lb"),
  47249. name: "Nude",
  47250. image: {
  47251. source: "./media/characters/shavon/nude.svg",
  47252. extra: 1242/1096,
  47253. bottom: 98/1340
  47254. }
  47255. },
  47256. dressed: {
  47257. height: math.unit(6, "feet"),
  47258. weight: math.unit(150, "lb"),
  47259. name: "Dressed",
  47260. image: {
  47261. source: "./media/characters/shavon/dressed.svg",
  47262. extra: 1242/1096,
  47263. bottom: 98/1340
  47264. }
  47265. },
  47266. },
  47267. [
  47268. {
  47269. name: "Macro",
  47270. height: math.unit(255, "feet"),
  47271. default: true
  47272. },
  47273. ]
  47274. ))
  47275. characterMakers.push(() => makeCharacter(
  47276. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47277. {
  47278. front: {
  47279. height: math.unit(6, "feet"),
  47280. name: "Front",
  47281. image: {
  47282. source: "./media/characters/steph/front.svg",
  47283. extra: 1430/1330,
  47284. bottom: 54/1484
  47285. }
  47286. },
  47287. },
  47288. [
  47289. {
  47290. name: "Normal",
  47291. height: math.unit(6, "feet"),
  47292. default: true
  47293. },
  47294. ]
  47295. ))
  47296. characterMakers.push(() => makeCharacter(
  47297. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47298. {
  47299. front: {
  47300. height: math.unit(9, "feet"),
  47301. weight: math.unit(400, "lb"),
  47302. name: "Front",
  47303. image: {
  47304. source: "./media/characters/kil'aman/front.svg",
  47305. extra: 1210/1159,
  47306. bottom: 109/1319
  47307. }
  47308. },
  47309. head: {
  47310. height: math.unit(2.14, "feet"),
  47311. name: "Head",
  47312. image: {
  47313. source: "./media/characters/kil'aman/head.svg"
  47314. }
  47315. },
  47316. maw: {
  47317. height: math.unit(1.21, "feet"),
  47318. name: "Maw",
  47319. image: {
  47320. source: "./media/characters/kil'aman/maw.svg"
  47321. }
  47322. },
  47323. foot: {
  47324. height: math.unit(1.7, "feet"),
  47325. name: "Foot",
  47326. image: {
  47327. source: "./media/characters/kil'aman/foot.svg"
  47328. }
  47329. },
  47330. dick: {
  47331. height: math.unit(2.1, "feet"),
  47332. name: "Dick",
  47333. image: {
  47334. source: "./media/characters/kil'aman/dick.svg"
  47335. }
  47336. },
  47337. },
  47338. [
  47339. {
  47340. name: "Normal",
  47341. height: math.unit(9, "feet")
  47342. },
  47343. {
  47344. name: "Canon Height",
  47345. height: math.unit(10, "miles"),
  47346. default: true
  47347. },
  47348. {
  47349. name: "Maximum",
  47350. height: math.unit(6e9, "miles")
  47351. },
  47352. ]
  47353. ))
  47354. characterMakers.push(() => makeCharacter(
  47355. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47356. {
  47357. front: {
  47358. height: math.unit(90, "feet"),
  47359. weight: math.unit(675000, "lb"),
  47360. name: "Front",
  47361. image: {
  47362. source: "./media/characters/qadan/front.svg",
  47363. extra: 1012/1004,
  47364. bottom: 78/1090
  47365. }
  47366. },
  47367. back: {
  47368. height: math.unit(90, "feet"),
  47369. weight: math.unit(675000, "lb"),
  47370. name: "Back",
  47371. image: {
  47372. source: "./media/characters/qadan/back.svg",
  47373. extra: 1042/1031,
  47374. bottom: 55/1097
  47375. }
  47376. },
  47377. armored: {
  47378. height: math.unit(90, "feet"),
  47379. weight: math.unit(675000, "lb"),
  47380. name: "Armored",
  47381. image: {
  47382. source: "./media/characters/qadan/armored.svg",
  47383. extra: 1047/1037,
  47384. bottom: 48/1095
  47385. }
  47386. },
  47387. },
  47388. [
  47389. {
  47390. name: "Normal",
  47391. height: math.unit(90, "feet"),
  47392. default: true
  47393. },
  47394. ]
  47395. ))
  47396. characterMakers.push(() => makeCharacter(
  47397. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47398. {
  47399. front: {
  47400. height: math.unit(6, "feet"),
  47401. weight: math.unit(225, "lb"),
  47402. name: "Front",
  47403. image: {
  47404. source: "./media/characters/brooke/front.svg",
  47405. extra: 1050/1010,
  47406. bottom: 66/1116
  47407. }
  47408. },
  47409. back: {
  47410. height: math.unit(6, "feet"),
  47411. weight: math.unit(225, "lb"),
  47412. name: "Back",
  47413. image: {
  47414. source: "./media/characters/brooke/back.svg",
  47415. extra: 1053/1013,
  47416. bottom: 41/1094
  47417. }
  47418. },
  47419. dressed: {
  47420. height: math.unit(6, "feet"),
  47421. weight: math.unit(225, "lb"),
  47422. name: "Dressed",
  47423. image: {
  47424. source: "./media/characters/brooke/dressed.svg",
  47425. extra: 1050/1010,
  47426. bottom: 66/1116
  47427. }
  47428. },
  47429. },
  47430. [
  47431. {
  47432. name: "Canon Height",
  47433. height: math.unit(500, "miles"),
  47434. default: true
  47435. },
  47436. ]
  47437. ))
  47438. characterMakers.push(() => makeCharacter(
  47439. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47440. {
  47441. front: {
  47442. height: math.unit(6 + 2/12, "feet"),
  47443. weight: math.unit(210, "lb"),
  47444. name: "Front",
  47445. image: {
  47446. source: "./media/characters/wubs/front.svg",
  47447. extra: 1345/1325,
  47448. bottom: 70/1415
  47449. }
  47450. },
  47451. back: {
  47452. height: math.unit(6 + 2/12, "feet"),
  47453. weight: math.unit(210, "lb"),
  47454. name: "Back",
  47455. image: {
  47456. source: "./media/characters/wubs/back.svg",
  47457. extra: 1296/1275,
  47458. bottom: 58/1354
  47459. }
  47460. },
  47461. },
  47462. [
  47463. {
  47464. name: "Normal",
  47465. height: math.unit(6 + 2/12, "feet"),
  47466. default: true
  47467. },
  47468. {
  47469. name: "Macro",
  47470. height: math.unit(1000, "feet")
  47471. },
  47472. {
  47473. name: "Megamacro",
  47474. height: math.unit(1, "mile")
  47475. },
  47476. ]
  47477. ))
  47478. characterMakers.push(() => makeCharacter(
  47479. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47480. {
  47481. front: {
  47482. height: math.unit(4, "feet"),
  47483. weight: math.unit(120, "lb"),
  47484. name: "Front",
  47485. image: {
  47486. source: "./media/characters/blue/front.svg",
  47487. extra: 1636/1525,
  47488. bottom: 43/1679
  47489. }
  47490. },
  47491. back: {
  47492. height: math.unit(4, "feet"),
  47493. weight: math.unit(120, "lb"),
  47494. name: "Back",
  47495. image: {
  47496. source: "./media/characters/blue/back.svg",
  47497. extra: 1660/1560,
  47498. bottom: 57/1717
  47499. }
  47500. },
  47501. paws: {
  47502. height: math.unit(0.826, "feet"),
  47503. name: "Paws",
  47504. image: {
  47505. source: "./media/characters/blue/paws.svg"
  47506. }
  47507. },
  47508. },
  47509. [
  47510. {
  47511. name: "Micro",
  47512. height: math.unit(3, "inches")
  47513. },
  47514. {
  47515. name: "Normal",
  47516. height: math.unit(4, "feet"),
  47517. default: true
  47518. },
  47519. {
  47520. name: "Femenine Form",
  47521. height: math.unit(14, "feet")
  47522. },
  47523. {
  47524. name: "Werebat Form",
  47525. height: math.unit(18, "feet")
  47526. },
  47527. ]
  47528. ))
  47529. characterMakers.push(() => makeCharacter(
  47530. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47531. {
  47532. female: {
  47533. height: math.unit(7 + 4/12, "feet"),
  47534. weight: math.unit(243, "lb"),
  47535. name: "Female",
  47536. image: {
  47537. source: "./media/characters/kaya/female.svg",
  47538. extra: 975/898,
  47539. bottom: 34/1009
  47540. }
  47541. },
  47542. herm: {
  47543. height: math.unit(7 + 4/12, "feet"),
  47544. weight: math.unit(243, "lb"),
  47545. name: "Herm",
  47546. image: {
  47547. source: "./media/characters/kaya/herm.svg",
  47548. extra: 975/898,
  47549. bottom: 34/1009
  47550. }
  47551. },
  47552. },
  47553. [
  47554. {
  47555. name: "Normal",
  47556. height: math.unit(7 + 4/12, "feet"),
  47557. default: true
  47558. },
  47559. ]
  47560. ))
  47561. characterMakers.push(() => makeCharacter(
  47562. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47563. {
  47564. female: {
  47565. height: math.unit(9 + 4/12, "feet"),
  47566. weight: math.unit(398, "lb"),
  47567. name: "Female",
  47568. image: {
  47569. source: "./media/characters/kassandra/female.svg",
  47570. extra: 908/839,
  47571. bottom: 61/969
  47572. }
  47573. },
  47574. intersex: {
  47575. height: math.unit(9 + 4/12, "feet"),
  47576. weight: math.unit(398, "lb"),
  47577. name: "Intersex",
  47578. image: {
  47579. source: "./media/characters/kassandra/intersex.svg",
  47580. extra: 908/839,
  47581. bottom: 61/969
  47582. }
  47583. },
  47584. },
  47585. [
  47586. {
  47587. name: "Normal",
  47588. height: math.unit(9 + 4/12, "feet"),
  47589. default: true
  47590. },
  47591. ]
  47592. ))
  47593. characterMakers.push(() => makeCharacter(
  47594. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47595. {
  47596. front: {
  47597. height: math.unit(3, "meters"),
  47598. name: "Front",
  47599. image: {
  47600. source: "./media/characters/amy/front.svg",
  47601. extra: 1380/1343,
  47602. bottom: 70/1450
  47603. }
  47604. },
  47605. back: {
  47606. height: math.unit(3, "meters"),
  47607. name: "Back",
  47608. image: {
  47609. source: "./media/characters/amy/back.svg",
  47610. extra: 1380/1347,
  47611. bottom: 66/1446
  47612. }
  47613. },
  47614. },
  47615. [
  47616. {
  47617. name: "Normal",
  47618. height: math.unit(3, "meters"),
  47619. default: true
  47620. },
  47621. ]
  47622. ))
  47623. characterMakers.push(() => makeCharacter(
  47624. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47625. {
  47626. side: {
  47627. height: math.unit(47, "cm"),
  47628. weight: math.unit(10.8, "kg"),
  47629. name: "Side",
  47630. image: {
  47631. source: "./media/characters/alphaschakal/side.svg",
  47632. extra: 1058/568,
  47633. bottom: 62/1120
  47634. }
  47635. },
  47636. back: {
  47637. height: math.unit(78, "cm"),
  47638. weight: math.unit(10.8, "kg"),
  47639. name: "Back",
  47640. image: {
  47641. source: "./media/characters/alphaschakal/back.svg",
  47642. extra: 1102/942,
  47643. bottom: 185/1287
  47644. }
  47645. },
  47646. head: {
  47647. height: math.unit(28, "cm"),
  47648. name: "Head",
  47649. image: {
  47650. source: "./media/characters/alphaschakal/head.svg",
  47651. extra: 696/508,
  47652. bottom: 0/696
  47653. }
  47654. },
  47655. paw: {
  47656. height: math.unit(16, "cm"),
  47657. name: "Paw",
  47658. image: {
  47659. source: "./media/characters/alphaschakal/paw.svg"
  47660. }
  47661. },
  47662. },
  47663. [
  47664. {
  47665. name: "Normal",
  47666. height: math.unit(47, "cm"),
  47667. default: true
  47668. },
  47669. {
  47670. name: "Macro",
  47671. height: math.unit(340, "cm")
  47672. },
  47673. ]
  47674. ))
  47675. characterMakers.push(() => makeCharacter(
  47676. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47677. {
  47678. front: {
  47679. height: math.unit(36, "earths"),
  47680. name: "Front",
  47681. image: {
  47682. source: "./media/characters/ecobyss/front.svg",
  47683. extra: 1282/1215,
  47684. bottom: 11/1293
  47685. }
  47686. },
  47687. back: {
  47688. height: math.unit(36, "earths"),
  47689. name: "Back",
  47690. image: {
  47691. source: "./media/characters/ecobyss/back.svg",
  47692. extra: 1291/1222,
  47693. bottom: 8/1299
  47694. }
  47695. },
  47696. },
  47697. [
  47698. {
  47699. name: "Normal",
  47700. height: math.unit(36, "earths"),
  47701. default: true
  47702. },
  47703. ]
  47704. ))
  47705. characterMakers.push(() => makeCharacter(
  47706. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47707. {
  47708. front: {
  47709. height: math.unit(12, "feet"),
  47710. name: "Front",
  47711. image: {
  47712. source: "./media/characters/vasuk/front.svg",
  47713. extra: 1326/1207,
  47714. bottom: 64/1390
  47715. }
  47716. },
  47717. },
  47718. [
  47719. {
  47720. name: "Normal",
  47721. height: math.unit(12, "feet"),
  47722. default: true
  47723. },
  47724. ]
  47725. ))
  47726. characterMakers.push(() => makeCharacter(
  47727. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47728. {
  47729. side: {
  47730. height: math.unit(100, "feet"),
  47731. name: "Side",
  47732. image: {
  47733. source: "./media/characters/linneaus/side.svg",
  47734. extra: 987/807,
  47735. bottom: 47/1034
  47736. }
  47737. },
  47738. },
  47739. [
  47740. {
  47741. name: "Macro",
  47742. height: math.unit(100, "feet"),
  47743. default: true
  47744. },
  47745. ]
  47746. ))
  47747. characterMakers.push(() => makeCharacter(
  47748. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47749. {
  47750. front: {
  47751. height: math.unit(8, "feet"),
  47752. weight: math.unit(1200, "lb"),
  47753. name: "Front",
  47754. image: {
  47755. source: "./media/characters/nyterious-daligdig/front.svg",
  47756. extra: 1284/1094,
  47757. bottom: 84/1368
  47758. }
  47759. },
  47760. back: {
  47761. height: math.unit(8, "feet"),
  47762. weight: math.unit(1200, "lb"),
  47763. name: "Back",
  47764. image: {
  47765. source: "./media/characters/nyterious-daligdig/back.svg",
  47766. extra: 1301/1121,
  47767. bottom: 129/1430
  47768. }
  47769. },
  47770. mouth: {
  47771. height: math.unit(1.464, "feet"),
  47772. name: "Mouth",
  47773. image: {
  47774. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47775. }
  47776. },
  47777. },
  47778. [
  47779. {
  47780. name: "Small",
  47781. height: math.unit(8, "feet"),
  47782. default: true
  47783. },
  47784. {
  47785. name: "Normal",
  47786. height: math.unit(15, "feet")
  47787. },
  47788. {
  47789. name: "Macro",
  47790. height: math.unit(90, "feet")
  47791. },
  47792. ]
  47793. ))
  47794. characterMakers.push(() => makeCharacter(
  47795. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47796. {
  47797. front: {
  47798. height: math.unit(7 + 4/12, "feet"),
  47799. weight: math.unit(252, "lb"),
  47800. name: "Front",
  47801. image: {
  47802. source: "./media/characters/bandel/front.svg",
  47803. extra: 1946/1775,
  47804. bottom: 26/1972
  47805. }
  47806. },
  47807. back: {
  47808. height: math.unit(7 + 4/12, "feet"),
  47809. weight: math.unit(252, "lb"),
  47810. name: "Back",
  47811. image: {
  47812. source: "./media/characters/bandel/back.svg",
  47813. extra: 1940/1770,
  47814. bottom: 25/1965
  47815. }
  47816. },
  47817. maw: {
  47818. height: math.unit(2.15, "feet"),
  47819. name: "Maw",
  47820. image: {
  47821. source: "./media/characters/bandel/maw.svg"
  47822. }
  47823. },
  47824. stomach: {
  47825. height: math.unit(1.95, "feet"),
  47826. name: "Stomach",
  47827. image: {
  47828. source: "./media/characters/bandel/stomach.svg"
  47829. }
  47830. },
  47831. },
  47832. [
  47833. {
  47834. name: "Normal",
  47835. height: math.unit(7 + 4/12, "feet"),
  47836. default: true
  47837. },
  47838. ]
  47839. ))
  47840. characterMakers.push(() => makeCharacter(
  47841. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47842. {
  47843. front: {
  47844. height: math.unit(10 + 5/12, "feet"),
  47845. weight: math.unit(773.5, "kg"),
  47846. name: "Front",
  47847. image: {
  47848. source: "./media/characters/zed/front.svg",
  47849. extra: 987/941,
  47850. bottom: 52/1039
  47851. }
  47852. },
  47853. },
  47854. [
  47855. {
  47856. name: "Short",
  47857. height: math.unit(5 + 4/12, "feet")
  47858. },
  47859. {
  47860. name: "Average",
  47861. height: math.unit(10 + 5/12, "feet"),
  47862. default: true
  47863. },
  47864. {
  47865. name: "Mini-Macro",
  47866. height: math.unit(24 + 9/12, "feet")
  47867. },
  47868. {
  47869. name: "Macro",
  47870. height: math.unit(249, "feet")
  47871. },
  47872. {
  47873. name: "Mega-Macro",
  47874. height: math.unit(12490, "feet")
  47875. },
  47876. {
  47877. name: "Giga-Macro",
  47878. height: math.unit(24.9, "miles")
  47879. },
  47880. {
  47881. name: "Tera-Macro",
  47882. height: math.unit(24900, "miles")
  47883. },
  47884. {
  47885. name: "Cosmic Scale",
  47886. height: math.unit(38.9, "lightyears")
  47887. },
  47888. {
  47889. name: "Universal Scale",
  47890. height: math.unit(138e12, "lightyears")
  47891. },
  47892. ]
  47893. ))
  47894. characterMakers.push(() => makeCharacter(
  47895. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47896. {
  47897. front: {
  47898. height: math.unit(1561, "inches"),
  47899. name: "Front",
  47900. image: {
  47901. source: "./media/characters/ivan/front.svg",
  47902. extra: 1126/1071,
  47903. bottom: 26/1152
  47904. }
  47905. },
  47906. back: {
  47907. height: math.unit(1561, "inches"),
  47908. name: "Back",
  47909. image: {
  47910. source: "./media/characters/ivan/back.svg",
  47911. extra: 1134/1079,
  47912. bottom: 30/1164
  47913. }
  47914. },
  47915. },
  47916. [
  47917. {
  47918. name: "Normal",
  47919. height: math.unit(1561, "inches"),
  47920. default: true
  47921. },
  47922. ]
  47923. ))
  47924. characterMakers.push(() => makeCharacter(
  47925. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47926. {
  47927. front: {
  47928. height: math.unit(5 + 7/12, "feet"),
  47929. weight: math.unit(150, "lb"),
  47930. name: "Front",
  47931. image: {
  47932. source: "./media/characters/robin-arctic-hare/front.svg",
  47933. extra: 1148/974,
  47934. bottom: 20/1168
  47935. }
  47936. },
  47937. },
  47938. [
  47939. {
  47940. name: "Normal",
  47941. height: math.unit(5 + 7/12, "feet"),
  47942. default: true
  47943. },
  47944. ]
  47945. ))
  47946. characterMakers.push(() => makeCharacter(
  47947. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47948. {
  47949. side: {
  47950. height: math.unit(5, "feet"),
  47951. name: "Side",
  47952. image: {
  47953. source: "./media/characters/birch/side.svg",
  47954. extra: 985/796,
  47955. bottom: 111/1096
  47956. }
  47957. },
  47958. },
  47959. [
  47960. {
  47961. name: "Normal",
  47962. height: math.unit(5, "feet"),
  47963. default: true
  47964. },
  47965. ]
  47966. ))
  47967. characterMakers.push(() => makeCharacter(
  47968. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47969. {
  47970. front: {
  47971. height: math.unit(4, "feet"),
  47972. name: "Front",
  47973. image: {
  47974. source: "./media/characters/rasp/front.svg",
  47975. extra: 561/478,
  47976. bottom: 74/635
  47977. }
  47978. },
  47979. },
  47980. [
  47981. {
  47982. name: "Normal",
  47983. height: math.unit(4, "feet"),
  47984. default: true
  47985. },
  47986. ]
  47987. ))
  47988. characterMakers.push(() => makeCharacter(
  47989. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47990. {
  47991. front: {
  47992. height: math.unit(4 + 6/12, "feet"),
  47993. name: "Front",
  47994. image: {
  47995. source: "./media/characters/agatha/front.svg",
  47996. extra: 947/933,
  47997. bottom: 42/989
  47998. }
  47999. },
  48000. back: {
  48001. height: math.unit(4 + 6/12, "feet"),
  48002. name: "Back",
  48003. image: {
  48004. source: "./media/characters/agatha/back.svg",
  48005. extra: 935/922,
  48006. bottom: 48/983
  48007. }
  48008. },
  48009. },
  48010. [
  48011. {
  48012. name: "Normal",
  48013. height: math.unit(4 + 6 /12, "feet"),
  48014. default: true
  48015. },
  48016. {
  48017. name: "Max Size",
  48018. height: math.unit(500, "feet")
  48019. },
  48020. ]
  48021. ))
  48022. characterMakers.push(() => makeCharacter(
  48023. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48024. {
  48025. side: {
  48026. height: math.unit(30, "feet"),
  48027. name: "Side",
  48028. image: {
  48029. source: "./media/characters/roggy/side.svg",
  48030. extra: 909/643,
  48031. bottom: 63/972
  48032. }
  48033. },
  48034. lounging: {
  48035. height: math.unit(20, "feet"),
  48036. name: "Lounging",
  48037. image: {
  48038. source: "./media/characters/roggy/lounging.svg",
  48039. extra: 643/479,
  48040. bottom: 145/788
  48041. }
  48042. },
  48043. handpaw: {
  48044. height: math.unit(13.1, "feet"),
  48045. name: "Handpaw",
  48046. image: {
  48047. source: "./media/characters/roggy/handpaw.svg"
  48048. }
  48049. },
  48050. footpaw: {
  48051. height: math.unit(15.8, "feet"),
  48052. name: "Footpaw",
  48053. image: {
  48054. source: "./media/characters/roggy/footpaw.svg"
  48055. }
  48056. },
  48057. },
  48058. [
  48059. {
  48060. name: "Menacing",
  48061. height: math.unit(30, "feet"),
  48062. default: true
  48063. },
  48064. ]
  48065. ))
  48066. characterMakers.push(() => makeCharacter(
  48067. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48068. {
  48069. front: {
  48070. height: math.unit(5 + 7/12, "feet"),
  48071. weight: math.unit(135, "lb"),
  48072. name: "Front",
  48073. image: {
  48074. source: "./media/characters/naomi/front.svg",
  48075. extra: 1209/1154,
  48076. bottom: 129/1338
  48077. }
  48078. },
  48079. back: {
  48080. height: math.unit(5 + 7/12, "feet"),
  48081. weight: math.unit(135, "lb"),
  48082. name: "Back",
  48083. image: {
  48084. source: "./media/characters/naomi/back.svg",
  48085. extra: 1252/1190,
  48086. bottom: 23/1275
  48087. }
  48088. },
  48089. },
  48090. [
  48091. {
  48092. name: "Normal",
  48093. height: math.unit(5 + 7 /12, "feet"),
  48094. default: true
  48095. },
  48096. ]
  48097. ))
  48098. characterMakers.push(() => makeCharacter(
  48099. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48100. {
  48101. side: {
  48102. height: math.unit(35, "meters"),
  48103. name: "Side",
  48104. image: {
  48105. source: "./media/characters/kimpi/side.svg",
  48106. extra: 419/382,
  48107. bottom: 63/482
  48108. }
  48109. },
  48110. hand: {
  48111. height: math.unit(8.96, "meters"),
  48112. name: "Hand",
  48113. image: {
  48114. source: "./media/characters/kimpi/hand.svg"
  48115. }
  48116. },
  48117. },
  48118. [
  48119. {
  48120. name: "Normal",
  48121. height: math.unit(35, "meters"),
  48122. default: true
  48123. },
  48124. ]
  48125. ))
  48126. characterMakers.push(() => makeCharacter(
  48127. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48128. {
  48129. front: {
  48130. height: math.unit(4 + 4/12, "feet"),
  48131. name: "Front",
  48132. image: {
  48133. source: "./media/characters/pepper-purrloin/front.svg",
  48134. extra: 1141/1024,
  48135. bottom: 21/1162
  48136. }
  48137. },
  48138. },
  48139. [
  48140. {
  48141. name: "Normal",
  48142. height: math.unit(4 + 4/12, "feet"),
  48143. default: true
  48144. },
  48145. ]
  48146. ))
  48147. characterMakers.push(() => makeCharacter(
  48148. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48149. {
  48150. front: {
  48151. height: math.unit(6 + 2/12, "feet"),
  48152. name: "Front",
  48153. image: {
  48154. source: "./media/characters/raphael/front.svg",
  48155. extra: 1101/962,
  48156. bottom: 59/1160
  48157. }
  48158. },
  48159. },
  48160. [
  48161. {
  48162. name: "Normal",
  48163. height: math.unit(6 + 2/12, "feet"),
  48164. default: true
  48165. },
  48166. ]
  48167. ))
  48168. characterMakers.push(() => makeCharacter(
  48169. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48170. {
  48171. front: {
  48172. height: math.unit(6, "feet"),
  48173. weight: math.unit(150, "lb"),
  48174. name: "Front",
  48175. image: {
  48176. source: "./media/characters/victor-williams/front.svg",
  48177. extra: 1894/1825,
  48178. bottom: 67/1961
  48179. }
  48180. },
  48181. },
  48182. [
  48183. {
  48184. name: "Normal",
  48185. height: math.unit(6, "feet"),
  48186. default: true
  48187. },
  48188. ]
  48189. ))
  48190. characterMakers.push(() => makeCharacter(
  48191. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48192. {
  48193. front: {
  48194. height: math.unit(5 + 8/12, "feet"),
  48195. weight: math.unit(150, "lb"),
  48196. name: "Front",
  48197. image: {
  48198. source: "./media/characters/rachel/front.svg",
  48199. extra: 1902/1787,
  48200. bottom: 46/1948
  48201. }
  48202. },
  48203. },
  48204. [
  48205. {
  48206. name: "Base Height",
  48207. height: math.unit(5 + 8/12, "feet"),
  48208. default: true
  48209. },
  48210. {
  48211. name: "Macro",
  48212. height: math.unit(200, "feet")
  48213. },
  48214. {
  48215. name: "Mega Macro",
  48216. height: math.unit(1, "mile")
  48217. },
  48218. {
  48219. name: "Giga Macro",
  48220. height: math.unit(1500, "miles")
  48221. },
  48222. {
  48223. name: "Tera Macro",
  48224. height: math.unit(8000, "miles")
  48225. },
  48226. {
  48227. name: "Tera Macro+",
  48228. height: math.unit(2e5, "miles")
  48229. },
  48230. ]
  48231. ))
  48232. characterMakers.push(() => makeCharacter(
  48233. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48234. {
  48235. front: {
  48236. height: math.unit(6.5, "feet"),
  48237. name: "Front",
  48238. image: {
  48239. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48240. extra: 860/819,
  48241. bottom: 307/1167
  48242. }
  48243. },
  48244. back: {
  48245. height: math.unit(6.5, "feet"),
  48246. name: "Back",
  48247. image: {
  48248. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48249. extra: 880/837,
  48250. bottom: 395/1275
  48251. }
  48252. },
  48253. sleeping: {
  48254. height: math.unit(2.79, "feet"),
  48255. name: "Sleeping",
  48256. image: {
  48257. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48258. extra: 465/383,
  48259. bottom: 263/728
  48260. }
  48261. },
  48262. maw: {
  48263. height: math.unit(2.52, "feet"),
  48264. name: "Maw",
  48265. image: {
  48266. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48267. }
  48268. },
  48269. },
  48270. [
  48271. {
  48272. name: "Normal",
  48273. height: math.unit(6.5, "feet"),
  48274. default: true
  48275. },
  48276. ]
  48277. ))
  48278. characterMakers.push(() => makeCharacter(
  48279. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48280. {
  48281. front: {
  48282. height: math.unit(5, "feet"),
  48283. name: "Front",
  48284. image: {
  48285. source: "./media/characters/nova-nerium/front.svg",
  48286. extra: 1548/1392,
  48287. bottom: 374/1922
  48288. }
  48289. },
  48290. back: {
  48291. height: math.unit(5, "feet"),
  48292. name: "Back",
  48293. image: {
  48294. source: "./media/characters/nova-nerium/back.svg",
  48295. extra: 1658/1468,
  48296. bottom: 257/1915
  48297. }
  48298. },
  48299. },
  48300. [
  48301. {
  48302. name: "Normal",
  48303. height: math.unit(5, "feet"),
  48304. default: true
  48305. },
  48306. ]
  48307. ))
  48308. characterMakers.push(() => makeCharacter(
  48309. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48310. {
  48311. front: {
  48312. height: math.unit(5 + 4/12, "feet"),
  48313. name: "Front",
  48314. image: {
  48315. source: "./media/characters/ashe-pyriph/front.svg",
  48316. extra: 1935/1747,
  48317. bottom: 60/1995
  48318. }
  48319. },
  48320. },
  48321. [
  48322. {
  48323. name: "Normal",
  48324. height: math.unit(5 + 4/12, "feet"),
  48325. default: true
  48326. },
  48327. ]
  48328. ))
  48329. characterMakers.push(() => makeCharacter(
  48330. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48331. {
  48332. front: {
  48333. height: math.unit(8.7, "feet"),
  48334. name: "Front",
  48335. image: {
  48336. source: "./media/characters/flicker-wisp/front.svg",
  48337. extra: 1835/1613,
  48338. bottom: 449/2284
  48339. }
  48340. },
  48341. side: {
  48342. height: math.unit(8.7, "feet"),
  48343. name: "Side",
  48344. image: {
  48345. source: "./media/characters/flicker-wisp/side.svg",
  48346. extra: 1841/1642,
  48347. bottom: 336/2177
  48348. },
  48349. default: true
  48350. },
  48351. maw: {
  48352. height: math.unit(3.35, "feet"),
  48353. name: "Maw",
  48354. image: {
  48355. source: "./media/characters/flicker-wisp/maw.svg",
  48356. extra: 2338/1506,
  48357. bottom: 0/2338
  48358. }
  48359. },
  48360. ovipositor: {
  48361. height: math.unit(4.95, "feet"),
  48362. name: "Ovipositor",
  48363. image: {
  48364. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48365. }
  48366. },
  48367. egg: {
  48368. height: math.unit(0.385, "feet"),
  48369. weight: math.unit(2, "lb"),
  48370. name: "Egg",
  48371. image: {
  48372. source: "./media/characters/flicker-wisp/egg.svg"
  48373. }
  48374. },
  48375. },
  48376. [
  48377. {
  48378. name: "Normal",
  48379. height: math.unit(8.7, "feet"),
  48380. default: true
  48381. },
  48382. ]
  48383. ))
  48384. characterMakers.push(() => makeCharacter(
  48385. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48386. {
  48387. side: {
  48388. height: math.unit(11, "feet"),
  48389. name: "Side",
  48390. image: {
  48391. source: "./media/characters/faefnul/side.svg",
  48392. extra: 1100/1007,
  48393. bottom: 0/1100
  48394. }
  48395. },
  48396. },
  48397. [
  48398. {
  48399. name: "Normal",
  48400. height: math.unit(11, "feet"),
  48401. default: true
  48402. },
  48403. ]
  48404. ))
  48405. characterMakers.push(() => makeCharacter(
  48406. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48407. {
  48408. front: {
  48409. height: math.unit(6 + 2/12, "feet"),
  48410. name: "Front",
  48411. image: {
  48412. source: "./media/characters/shady/front.svg",
  48413. extra: 502/461,
  48414. bottom: 9/511
  48415. }
  48416. },
  48417. kneeling: {
  48418. height: math.unit(4.6, "feet"),
  48419. name: "Kneeling",
  48420. image: {
  48421. source: "./media/characters/shady/kneeling.svg",
  48422. extra: 1328/1219,
  48423. bottom: 117/1445
  48424. }
  48425. },
  48426. maw: {
  48427. height: math.unit(2, "feet"),
  48428. name: "Maw",
  48429. image: {
  48430. source: "./media/characters/shady/maw.svg"
  48431. }
  48432. },
  48433. },
  48434. [
  48435. {
  48436. name: "Nano",
  48437. height: math.unit(1, "mm")
  48438. },
  48439. {
  48440. name: "Micro",
  48441. height: math.unit(12, "mm")
  48442. },
  48443. {
  48444. name: "Tiny",
  48445. height: math.unit(3, "inches")
  48446. },
  48447. {
  48448. name: "Normal",
  48449. height: math.unit(6 + 2/12, "feet"),
  48450. default: true
  48451. },
  48452. {
  48453. name: "Big",
  48454. height: math.unit(15, "feet")
  48455. },
  48456. {
  48457. name: "Macro",
  48458. height: math.unit(150, "feet")
  48459. },
  48460. {
  48461. name: "Titanic",
  48462. height: math.unit(500, "feet")
  48463. },
  48464. ]
  48465. ))
  48466. characterMakers.push(() => makeCharacter(
  48467. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48468. {
  48469. front: {
  48470. height: math.unit(12, "feet"),
  48471. name: "Front",
  48472. image: {
  48473. source: "./media/characters/fenrir/front.svg",
  48474. extra: 968/875,
  48475. bottom: 22/990
  48476. }
  48477. },
  48478. },
  48479. [
  48480. {
  48481. name: "Big",
  48482. height: math.unit(12, "feet"),
  48483. default: true
  48484. },
  48485. ]
  48486. ))
  48487. characterMakers.push(() => makeCharacter(
  48488. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48489. {
  48490. front: {
  48491. height: math.unit(5 + 4/12, "feet"),
  48492. name: "Front",
  48493. image: {
  48494. source: "./media/characters/makar/front.svg",
  48495. extra: 1181/1112,
  48496. bottom: 78/1259
  48497. }
  48498. },
  48499. },
  48500. [
  48501. {
  48502. name: "Normal",
  48503. height: math.unit(5 + 4/12, "feet"),
  48504. default: true
  48505. },
  48506. ]
  48507. ))
  48508. characterMakers.push(() => makeCharacter(
  48509. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48510. {
  48511. front: {
  48512. height: math.unit(5 + 7/12, "feet"),
  48513. name: "Front",
  48514. image: {
  48515. source: "./media/characters/callow/front.svg",
  48516. extra: 1482/1304,
  48517. bottom: 23/1505
  48518. }
  48519. },
  48520. back: {
  48521. height: math.unit(5 + 7/12, "feet"),
  48522. name: "Back",
  48523. image: {
  48524. source: "./media/characters/callow/back.svg",
  48525. extra: 1484/1296,
  48526. bottom: 25/1509
  48527. }
  48528. },
  48529. },
  48530. [
  48531. {
  48532. name: "Micro",
  48533. height: math.unit(3, "inches"),
  48534. default: true
  48535. },
  48536. {
  48537. name: "Normal",
  48538. height: math.unit(5 + 7/12, "feet")
  48539. },
  48540. ]
  48541. ))
  48542. characterMakers.push(() => makeCharacter(
  48543. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48544. {
  48545. front: {
  48546. height: math.unit(6 + 2/12, "feet"),
  48547. name: "Front",
  48548. image: {
  48549. source: "./media/characters/natel/front.svg",
  48550. extra: 1833/1692,
  48551. bottom: 166/1999
  48552. }
  48553. },
  48554. },
  48555. [
  48556. {
  48557. name: "Normal",
  48558. height: math.unit(6 + 2/12, "feet"),
  48559. default: true
  48560. },
  48561. ]
  48562. ))
  48563. characterMakers.push(() => makeCharacter(
  48564. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48565. {
  48566. front: {
  48567. height: math.unit(1.75, "meters"),
  48568. name: "Front",
  48569. image: {
  48570. source: "./media/characters/misu/front.svg",
  48571. extra: 1690/1558,
  48572. bottom: 234/1924
  48573. }
  48574. },
  48575. back: {
  48576. height: math.unit(1.75, "meters"),
  48577. name: "Back",
  48578. image: {
  48579. source: "./media/characters/misu/back.svg",
  48580. extra: 1762/1618,
  48581. bottom: 146/1908
  48582. }
  48583. },
  48584. frontNude: {
  48585. height: math.unit(1.75, "meters"),
  48586. name: "Front (Nude)",
  48587. image: {
  48588. source: "./media/characters/misu/front-nude.svg",
  48589. extra: 1690/1558,
  48590. bottom: 234/1924
  48591. }
  48592. },
  48593. backNude: {
  48594. height: math.unit(1.75, "meters"),
  48595. name: "Back (Nude)",
  48596. image: {
  48597. source: "./media/characters/misu/back-nude.svg",
  48598. extra: 1762/1618,
  48599. bottom: 146/1908
  48600. }
  48601. },
  48602. frontErect: {
  48603. height: math.unit(1.75, "meters"),
  48604. name: "Front (Erect)",
  48605. image: {
  48606. source: "./media/characters/misu/front-erect.svg",
  48607. extra: 1690/1558,
  48608. bottom: 234/1924
  48609. }
  48610. },
  48611. maw: {
  48612. height: math.unit(0.47, "meters"),
  48613. name: "Maw",
  48614. image: {
  48615. source: "./media/characters/misu/maw.svg"
  48616. }
  48617. },
  48618. head: {
  48619. height: math.unit(0.35, "meters"),
  48620. name: "Head",
  48621. image: {
  48622. source: "./media/characters/misu/head.svg"
  48623. }
  48624. },
  48625. rear: {
  48626. height: math.unit(0.47, "meters"),
  48627. name: "Rear",
  48628. image: {
  48629. source: "./media/characters/misu/rear.svg"
  48630. }
  48631. },
  48632. },
  48633. [
  48634. {
  48635. name: "Normal",
  48636. height: math.unit(1.75, "meters")
  48637. },
  48638. {
  48639. name: "Not good for the people",
  48640. height: math.unit(42, "meters")
  48641. },
  48642. {
  48643. name: "Not good for the neighborhood",
  48644. height: math.unit(135, "meters")
  48645. },
  48646. {
  48647. name: "Bit bigger problem",
  48648. height: math.unit(380, "meters"),
  48649. default: true
  48650. },
  48651. {
  48652. name: "Not good for the city",
  48653. height: math.unit(1.5, "km")
  48654. },
  48655. {
  48656. name: "Not good for the county",
  48657. height: math.unit(5.5, "km")
  48658. },
  48659. {
  48660. name: "Not good for the state",
  48661. height: math.unit(25, "km")
  48662. },
  48663. {
  48664. name: "Not good for the country",
  48665. height: math.unit(125, "km")
  48666. },
  48667. {
  48668. name: "Not good for the continent",
  48669. height: math.unit(2100, "km")
  48670. },
  48671. {
  48672. name: "Not good for the planet",
  48673. height: math.unit(35000, "km")
  48674. },
  48675. {
  48676. name: "Just no",
  48677. height: math.unit(8.5e18, "km")
  48678. },
  48679. ]
  48680. ))
  48681. characterMakers.push(() => makeCharacter(
  48682. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48683. {
  48684. front: {
  48685. height: math.unit(6.5, "feet"),
  48686. name: "Front",
  48687. image: {
  48688. source: "./media/characters/poppy/front.svg",
  48689. extra: 1878/1812,
  48690. bottom: 43/1921
  48691. }
  48692. },
  48693. feet: {
  48694. height: math.unit(1.06, "feet"),
  48695. name: "Feet",
  48696. image: {
  48697. source: "./media/characters/poppy/feet.svg",
  48698. extra: 1083/1083,
  48699. bottom: 87/1170
  48700. }
  48701. },
  48702. },
  48703. [
  48704. {
  48705. name: "Human",
  48706. height: math.unit(6.5, "feet")
  48707. },
  48708. {
  48709. name: "Default",
  48710. height: math.unit(300, "feet"),
  48711. default: true
  48712. },
  48713. {
  48714. name: "Huge",
  48715. height: math.unit(850, "feet")
  48716. },
  48717. {
  48718. name: "Mega",
  48719. height: math.unit(8000, "feet")
  48720. },
  48721. {
  48722. name: "Giga",
  48723. height: math.unit(300, "miles")
  48724. },
  48725. ]
  48726. ))
  48727. characterMakers.push(() => makeCharacter(
  48728. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48729. {
  48730. bipedal: {
  48731. height: math.unit(7, "feet"),
  48732. name: "Bipedal",
  48733. image: {
  48734. source: "./media/characters/zener/bipedal.svg",
  48735. extra: 874/805,
  48736. bottom: 109/983
  48737. }
  48738. },
  48739. quadrupedal: {
  48740. height: math.unit(4.64, "feet"),
  48741. name: "Quadrupedal",
  48742. image: {
  48743. source: "./media/characters/zener/quadrupedal.svg",
  48744. extra: 638/507,
  48745. bottom: 190/828
  48746. }
  48747. },
  48748. cock: {
  48749. height: math.unit(18, "inches"),
  48750. name: "Cock",
  48751. image: {
  48752. source: "./media/characters/zener/cock.svg"
  48753. }
  48754. },
  48755. },
  48756. [
  48757. {
  48758. name: "Normal",
  48759. height: math.unit(7, "feet"),
  48760. default: true
  48761. },
  48762. ]
  48763. ))
  48764. characterMakers.push(() => makeCharacter(
  48765. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48766. {
  48767. nude: {
  48768. height: math.unit(5 + 6/12, "feet"),
  48769. name: "Nude",
  48770. image: {
  48771. source: "./media/characters/charlie-dog/nude.svg",
  48772. extra: 768/734,
  48773. bottom: 26/794
  48774. }
  48775. },
  48776. dressed: {
  48777. height: math.unit(5 + 6/12, "feet"),
  48778. name: "Dressed",
  48779. image: {
  48780. source: "./media/characters/charlie-dog/dressed.svg",
  48781. extra: 768/734,
  48782. bottom: 26/794
  48783. }
  48784. },
  48785. },
  48786. [
  48787. {
  48788. name: "Normal",
  48789. height: math.unit(5 + 6/12, "feet"),
  48790. default: true
  48791. },
  48792. ]
  48793. ))
  48794. characterMakers.push(() => makeCharacter(
  48795. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48796. {
  48797. front: {
  48798. height: math.unit(6 + 4/12, "feet"),
  48799. name: "Front",
  48800. image: {
  48801. source: "./media/characters/ir'istrasz/front.svg",
  48802. extra: 1014/977,
  48803. bottom: 65/1079
  48804. }
  48805. },
  48806. back: {
  48807. height: math.unit(6 + 4/12, "feet"),
  48808. name: "Back",
  48809. image: {
  48810. source: "./media/characters/ir'istrasz/back.svg",
  48811. extra: 1024/992,
  48812. bottom: 34/1058
  48813. }
  48814. },
  48815. },
  48816. [
  48817. {
  48818. name: "Normal",
  48819. height: math.unit(6 + 4/12, "feet"),
  48820. default: true
  48821. },
  48822. ]
  48823. ))
  48824. characterMakers.push(() => makeCharacter(
  48825. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48826. {
  48827. front: {
  48828. height: math.unit(5 + 8/12, "feet"),
  48829. name: "Front",
  48830. image: {
  48831. source: "./media/characters/dee-ditto/front.svg",
  48832. extra: 1874/1785,
  48833. bottom: 68/1942
  48834. }
  48835. },
  48836. back: {
  48837. height: math.unit(5 + 8/12, "feet"),
  48838. name: "Back",
  48839. image: {
  48840. source: "./media/characters/dee-ditto/back.svg",
  48841. extra: 1870/1783,
  48842. bottom: 77/1947
  48843. }
  48844. },
  48845. },
  48846. [
  48847. {
  48848. name: "Normal",
  48849. height: math.unit(5 + 8/12, "feet"),
  48850. default: true
  48851. },
  48852. ]
  48853. ))
  48854. characterMakers.push(() => makeCharacter(
  48855. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48856. {
  48857. front: {
  48858. height: math.unit(7 + 6/12, "feet"),
  48859. name: "Front",
  48860. image: {
  48861. source: "./media/characters/fey/front.svg",
  48862. extra: 995/979,
  48863. bottom: 30/1025
  48864. }
  48865. },
  48866. back: {
  48867. height: math.unit(7 + 6/12, "feet"),
  48868. name: "Back",
  48869. image: {
  48870. source: "./media/characters/fey/back.svg",
  48871. extra: 1079/1008,
  48872. bottom: 5/1084
  48873. }
  48874. },
  48875. dressed: {
  48876. height: math.unit(7 + 6/12, "feet"),
  48877. name: "Dressed",
  48878. image: {
  48879. source: "./media/characters/fey/dressed.svg",
  48880. extra: 995/979,
  48881. bottom: 30/1025
  48882. }
  48883. },
  48884. },
  48885. [
  48886. {
  48887. name: "Normal",
  48888. height: math.unit(7 + 6/12, "feet"),
  48889. default: true
  48890. },
  48891. ]
  48892. ))
  48893. characterMakers.push(() => makeCharacter(
  48894. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48895. {
  48896. standing: {
  48897. height: math.unit(17, "feet"),
  48898. name: "Standing",
  48899. image: {
  48900. source: "./media/characters/aster/standing.svg",
  48901. extra: 1798/1598,
  48902. bottom: 117/1915
  48903. }
  48904. },
  48905. },
  48906. [
  48907. {
  48908. name: "Normal",
  48909. height: math.unit(17, "feet"),
  48910. default: true
  48911. },
  48912. {
  48913. name: "Homewrecker",
  48914. height: math.unit(95, "feet")
  48915. },
  48916. {
  48917. name: "Planet Devourer",
  48918. height: math.unit(1008000, "miles")
  48919. },
  48920. ]
  48921. ))
  48922. characterMakers.push(() => makeCharacter(
  48923. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48924. {
  48925. front: {
  48926. height: math.unit(6 + 5/12, "feet"),
  48927. weight: math.unit(265, "lb"),
  48928. name: "Front",
  48929. image: {
  48930. source: "./media/characters/devon-childs/front.svg",
  48931. extra: 1795/1721,
  48932. bottom: 41/1836
  48933. }
  48934. },
  48935. side: {
  48936. height: math.unit(6 + 5/12, "feet"),
  48937. weight: math.unit(265, "lb"),
  48938. name: "Side",
  48939. image: {
  48940. source: "./media/characters/devon-childs/side.svg",
  48941. extra: 1812/1738,
  48942. bottom: 30/1842
  48943. }
  48944. },
  48945. back: {
  48946. height: math.unit(6 + 5/12, "feet"),
  48947. weight: math.unit(265, "lb"),
  48948. name: "Back",
  48949. image: {
  48950. source: "./media/characters/devon-childs/back.svg",
  48951. extra: 1808/1735,
  48952. bottom: 23/1831
  48953. }
  48954. },
  48955. hand: {
  48956. height: math.unit(1.464, "feet"),
  48957. name: "Hand",
  48958. image: {
  48959. source: "./media/characters/devon-childs/hand.svg"
  48960. }
  48961. },
  48962. foot: {
  48963. height: math.unit(1.6, "feet"),
  48964. name: "Foot",
  48965. image: {
  48966. source: "./media/characters/devon-childs/foot.svg"
  48967. }
  48968. },
  48969. },
  48970. [
  48971. {
  48972. name: "Micro",
  48973. height: math.unit(7, "cm")
  48974. },
  48975. {
  48976. name: "Normal",
  48977. height: math.unit(6 + 5/12, "feet"),
  48978. default: true
  48979. },
  48980. {
  48981. name: "Macro",
  48982. height: math.unit(154, "feet")
  48983. },
  48984. ]
  48985. ))
  48986. characterMakers.push(() => makeCharacter(
  48987. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48988. {
  48989. front: {
  48990. height: math.unit(6, "feet"),
  48991. weight: math.unit(180, "lb"),
  48992. name: "Front",
  48993. image: {
  48994. source: "./media/characters/lydemox-vir/front.svg",
  48995. extra: 1632/1435,
  48996. bottom: 58/1690
  48997. }
  48998. },
  48999. frontSFW: {
  49000. height: math.unit(6, "feet"),
  49001. weight: math.unit(180, "lb"),
  49002. name: "Front (SFW)",
  49003. image: {
  49004. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49005. extra: 1632/1435,
  49006. bottom: 58/1690
  49007. }
  49008. },
  49009. back: {
  49010. height: math.unit(6, "feet"),
  49011. weight: math.unit(180, "lb"),
  49012. name: "Back",
  49013. image: {
  49014. source: "./media/characters/lydemox-vir/back.svg",
  49015. extra: 1593/1408,
  49016. bottom: 31/1624
  49017. }
  49018. },
  49019. paw: {
  49020. height: math.unit(1.85, "feet"),
  49021. name: "Paw",
  49022. image: {
  49023. source: "./media/characters/lydemox-vir/paw.svg"
  49024. }
  49025. },
  49026. dick: {
  49027. height: math.unit(1.8, "feet"),
  49028. name: "Dick",
  49029. image: {
  49030. source: "./media/characters/lydemox-vir/dick.svg"
  49031. }
  49032. },
  49033. },
  49034. [
  49035. {
  49036. name: "Macro",
  49037. height: math.unit(100, "feet"),
  49038. default: true
  49039. },
  49040. {
  49041. name: "Teramacro",
  49042. height: math.unit(1, "earth")
  49043. },
  49044. {
  49045. name: "Planetary",
  49046. height: math.unit(20, "earths")
  49047. },
  49048. ]
  49049. ))
  49050. characterMakers.push(() => makeCharacter(
  49051. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49052. {
  49053. front: {
  49054. height: math.unit(15 + 8/12, "feet"),
  49055. weight: math.unit(1237, "kg"),
  49056. name: "Front",
  49057. image: {
  49058. source: "./media/characters/mia/front.svg",
  49059. extra: 1573/1446,
  49060. bottom: 58/1631
  49061. }
  49062. },
  49063. },
  49064. [
  49065. {
  49066. name: "Small",
  49067. height: math.unit(9 + 5/12, "feet")
  49068. },
  49069. {
  49070. name: "Normal",
  49071. height: math.unit(15 + 8/12, "feet"),
  49072. default: true
  49073. },
  49074. ]
  49075. ))
  49076. characterMakers.push(() => makeCharacter(
  49077. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49078. {
  49079. front: {
  49080. height: math.unit(10 + 6/12, "feet"),
  49081. weight: math.unit(1.3, "tons"),
  49082. name: "Front",
  49083. image: {
  49084. source: "./media/characters/mr-graves/front.svg",
  49085. extra: 1779/1695,
  49086. bottom: 198/1977
  49087. }
  49088. },
  49089. },
  49090. [
  49091. {
  49092. name: "Normal",
  49093. height: math.unit(10 + 6 /12, "feet"),
  49094. default: true
  49095. },
  49096. ]
  49097. ))
  49098. characterMakers.push(() => makeCharacter(
  49099. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49100. {
  49101. dressedFront: {
  49102. height: math.unit(5 + 8/12, "feet"),
  49103. weight: math.unit(125, "lb"),
  49104. name: "Dressed (Front)",
  49105. image: {
  49106. source: "./media/characters/jess/dressed-front.svg",
  49107. extra: 1176/1152,
  49108. bottom: 42/1218
  49109. }
  49110. },
  49111. dressedSide: {
  49112. height: math.unit(5 + 8/12, "feet"),
  49113. weight: math.unit(125, "lb"),
  49114. name: "Dressed (Side)",
  49115. image: {
  49116. source: "./media/characters/jess/dressed-side.svg",
  49117. extra: 1204/1190,
  49118. bottom: 6/1210
  49119. }
  49120. },
  49121. nudeFront: {
  49122. height: math.unit(5 + 8/12, "feet"),
  49123. weight: math.unit(125, "lb"),
  49124. name: "Nude (Front)",
  49125. image: {
  49126. source: "./media/characters/jess/nude-front.svg",
  49127. extra: 1176/1152,
  49128. bottom: 42/1218
  49129. }
  49130. },
  49131. nudeSide: {
  49132. height: math.unit(5 + 8/12, "feet"),
  49133. weight: math.unit(125, "lb"),
  49134. name: "Nude (Side)",
  49135. image: {
  49136. source: "./media/characters/jess/nude-side.svg",
  49137. extra: 1204/1190,
  49138. bottom: 6/1210
  49139. }
  49140. },
  49141. organsFront: {
  49142. height: math.unit(2.83799342105, "feet"),
  49143. name: "Organs (Front)",
  49144. image: {
  49145. source: "./media/characters/jess/organs-front.svg"
  49146. }
  49147. },
  49148. organsSide: {
  49149. height: math.unit(2.64225290474, "feet"),
  49150. name: "Organs (Side)",
  49151. image: {
  49152. source: "./media/characters/jess/organs-side.svg"
  49153. }
  49154. },
  49155. digestiveTractFront: {
  49156. height: math.unit(2.8106580871, "feet"),
  49157. name: "Digestive Tract (Front)",
  49158. image: {
  49159. source: "./media/characters/jess/digestive-tract-front.svg"
  49160. }
  49161. },
  49162. digestiveTractSide: {
  49163. height: math.unit(2.54365045014, "feet"),
  49164. name: "Digestive Tract (Side)",
  49165. image: {
  49166. source: "./media/characters/jess/digestive-tract-side.svg"
  49167. }
  49168. },
  49169. respiratorySystemFront: {
  49170. height: math.unit(1.11196233456, "feet"),
  49171. name: "Respiratory System (Front)",
  49172. image: {
  49173. source: "./media/characters/jess/respiratory-system-front.svg"
  49174. }
  49175. },
  49176. respiratorySystemSide: {
  49177. height: math.unit(0.89327966297, "feet"),
  49178. name: "Respiratory System (Side)",
  49179. image: {
  49180. source: "./media/characters/jess/respiratory-system-side.svg"
  49181. }
  49182. },
  49183. urinaryTractFront: {
  49184. height: math.unit(1.16126356186, "feet"),
  49185. name: "Urinary Tract (Front)",
  49186. image: {
  49187. source: "./media/characters/jess/urinary-tract-front.svg"
  49188. }
  49189. },
  49190. urinaryTractSide: {
  49191. height: math.unit(1.20910039627, "feet"),
  49192. name: "Urinary Tract (Side)",
  49193. image: {
  49194. source: "./media/characters/jess/urinary-tract-side.svg"
  49195. }
  49196. },
  49197. reproductiveOrgansFront: {
  49198. height: math.unit(0.48422591566, "feet"),
  49199. name: "Reproductive Organs (Front)",
  49200. image: {
  49201. source: "./media/characters/jess/reproductive-organs-front.svg"
  49202. }
  49203. },
  49204. reproductiveOrgansSide: {
  49205. height: math.unit(0.61553314481, "feet"),
  49206. name: "Reproductive Organs (Side)",
  49207. image: {
  49208. source: "./media/characters/jess/reproductive-organs-side.svg"
  49209. }
  49210. },
  49211. breastsFront: {
  49212. height: math.unit(0.47690395121, "feet"),
  49213. name: "Breasts (Front)",
  49214. image: {
  49215. source: "./media/characters/jess/breasts-front.svg"
  49216. }
  49217. },
  49218. breastsSide: {
  49219. height: math.unit(0.30556998307, "feet"),
  49220. name: "Breasts (Side)",
  49221. image: {
  49222. source: "./media/characters/jess/breasts-side.svg"
  49223. }
  49224. },
  49225. heartFront: {
  49226. height: math.unit(0.53011022622, "feet"),
  49227. name: "Heart (Front)",
  49228. image: {
  49229. source: "./media/characters/jess/heart-front.svg"
  49230. }
  49231. },
  49232. heartSide: {
  49233. height: math.unit(0.51790695213, "feet"),
  49234. name: "Heart (Side)",
  49235. image: {
  49236. source: "./media/characters/jess/heart-side.svg"
  49237. }
  49238. },
  49239. earsAndNoseFront: {
  49240. height: math.unit(0.29385483995, "feet"),
  49241. name: "Ears and Nose (Front)",
  49242. image: {
  49243. source: "./media/characters/jess/ears-and-nose-front.svg"
  49244. }
  49245. },
  49246. earsAndNoseSide: {
  49247. height: math.unit(0.18109658741, "feet"),
  49248. name: "Ears and Nose (Side)",
  49249. image: {
  49250. source: "./media/characters/jess/ears-and-nose-side.svg"
  49251. }
  49252. },
  49253. },
  49254. [
  49255. {
  49256. name: "Normal",
  49257. height: math.unit(5 + 8/12, "feet"),
  49258. default: true
  49259. },
  49260. ]
  49261. ))
  49262. characterMakers.push(() => makeCharacter(
  49263. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49264. {
  49265. front: {
  49266. height: math.unit(6, "feet"),
  49267. weight: math.unit(6.64467e-7, "grams"),
  49268. name: "Front",
  49269. image: {
  49270. source: "./media/characters/wimpering/front.svg",
  49271. extra: 597/587,
  49272. bottom: 34/631
  49273. }
  49274. },
  49275. },
  49276. [
  49277. {
  49278. name: "Micro",
  49279. height: math.unit(0.4, "mm"),
  49280. default: true
  49281. },
  49282. ]
  49283. ))
  49284. characterMakers.push(() => makeCharacter(
  49285. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49286. {
  49287. front: {
  49288. height: math.unit(5 + 2/12, "feet"),
  49289. weight: math.unit(110, "lb"),
  49290. name: "Front",
  49291. image: {
  49292. source: "./media/characters/keltre/front.svg",
  49293. extra: 1099/1057,
  49294. bottom: 22/1121
  49295. }
  49296. },
  49297. back: {
  49298. height: math.unit(5 + 2/12, "feet"),
  49299. weight: math.unit(110, "lb"),
  49300. name: "Back",
  49301. image: {
  49302. source: "./media/characters/keltre/back.svg",
  49303. extra: 1095/1053,
  49304. bottom: 17/1112
  49305. }
  49306. },
  49307. dressed: {
  49308. height: math.unit(5 + 2/12, "feet"),
  49309. weight: math.unit(110, "lb"),
  49310. name: "Dressed",
  49311. image: {
  49312. source: "./media/characters/keltre/dressed.svg",
  49313. extra: 1099/1057,
  49314. bottom: 22/1121
  49315. }
  49316. },
  49317. winter: {
  49318. height: math.unit(5 + 2/12, "feet"),
  49319. weight: math.unit(110, "lb"),
  49320. name: "Winter",
  49321. image: {
  49322. source: "./media/characters/keltre/winter.svg",
  49323. extra: 1099/1057,
  49324. bottom: 22/1121
  49325. }
  49326. },
  49327. head: {
  49328. height: math.unit(1.61 * 0.86, "feet"),
  49329. name: "Head",
  49330. image: {
  49331. source: "./media/characters/keltre/head.svg",
  49332. extra: 534/421,
  49333. bottom: 0/534
  49334. }
  49335. },
  49336. hand: {
  49337. height: math.unit(1.3 * 0.86, "feet"),
  49338. name: "Hand",
  49339. image: {
  49340. source: "./media/characters/keltre/hand.svg"
  49341. }
  49342. },
  49343. foot: {
  49344. height: math.unit(1.8 * 0.86, "feet"),
  49345. name: "Foot",
  49346. image: {
  49347. source: "./media/characters/keltre/foot.svg"
  49348. }
  49349. },
  49350. },
  49351. [
  49352. {
  49353. name: "Fine",
  49354. height: math.unit(1, "inch")
  49355. },
  49356. {
  49357. name: "Dimnutive",
  49358. height: math.unit(4, "inches")
  49359. },
  49360. {
  49361. name: "Tiny",
  49362. height: math.unit(1, "foot")
  49363. },
  49364. {
  49365. name: "Small",
  49366. height: math.unit(3, "feet")
  49367. },
  49368. {
  49369. name: "Normal",
  49370. height: math.unit(5 + 2/12, "feet"),
  49371. default: true
  49372. },
  49373. ]
  49374. ))
  49375. characterMakers.push(() => makeCharacter(
  49376. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49377. {
  49378. front: {
  49379. height: math.unit(6 + 2/12, "feet"),
  49380. name: "Front",
  49381. image: {
  49382. source: "./media/characters/nox/front.svg",
  49383. extra: 1917/1830,
  49384. bottom: 74/1991
  49385. }
  49386. },
  49387. back: {
  49388. height: math.unit(6 + 2/12, "feet"),
  49389. name: "Back",
  49390. image: {
  49391. source: "./media/characters/nox/back.svg",
  49392. extra: 1896/1815,
  49393. bottom: 21/1917
  49394. }
  49395. },
  49396. head: {
  49397. height: math.unit(1.1, "feet"),
  49398. name: "Head",
  49399. image: {
  49400. source: "./media/characters/nox/head.svg",
  49401. extra: 874/704,
  49402. bottom: 0/874
  49403. }
  49404. },
  49405. tattoo: {
  49406. height: math.unit(0.729, "feet"),
  49407. name: "Tattoo",
  49408. image: {
  49409. source: "./media/characters/nox/tattoo.svg"
  49410. }
  49411. },
  49412. },
  49413. [
  49414. {
  49415. name: "Normal",
  49416. height: math.unit(6 + 2/12, "feet")
  49417. },
  49418. {
  49419. name: "Gigamacro",
  49420. height: math.unit(2, "earths"),
  49421. default: true
  49422. },
  49423. {
  49424. name: "Cosmic",
  49425. height: math.unit(867, "yottameters")
  49426. },
  49427. ]
  49428. ))
  49429. characterMakers.push(() => makeCharacter(
  49430. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49431. {
  49432. front: {
  49433. height: math.unit(6, "feet"),
  49434. weight: math.unit(150, "lb"),
  49435. name: "Front",
  49436. image: {
  49437. source: "./media/characters/caspian/front.svg",
  49438. extra: 1443/1359,
  49439. bottom: 0/1443
  49440. }
  49441. },
  49442. back: {
  49443. height: math.unit(6, "feet"),
  49444. weight: math.unit(150, "lb"),
  49445. name: "Back",
  49446. image: {
  49447. source: "./media/characters/caspian/back.svg",
  49448. extra: 1379/1309,
  49449. bottom: 0/1379
  49450. }
  49451. },
  49452. head: {
  49453. height: math.unit(0.9, "feet"),
  49454. name: "Head",
  49455. image: {
  49456. source: "./media/characters/caspian/head.svg",
  49457. extra: 692/492,
  49458. bottom: 0/692
  49459. }
  49460. },
  49461. headAlt: {
  49462. height: math.unit(0.95, "feet"),
  49463. name: "Head (Alt)",
  49464. image: {
  49465. source: "./media/characters/caspian/head-alt.svg",
  49466. extra: 668/508,
  49467. bottom: 0/668
  49468. }
  49469. },
  49470. hand: {
  49471. height: math.unit(0.8, "feet"),
  49472. name: "Hand",
  49473. image: {
  49474. source: "./media/characters/caspian/hand.svg"
  49475. }
  49476. },
  49477. paw: {
  49478. height: math.unit(0.95, "feet"),
  49479. name: "Paw",
  49480. image: {
  49481. source: "./media/characters/caspian/paw.svg"
  49482. }
  49483. },
  49484. },
  49485. [
  49486. {
  49487. name: "Normal",
  49488. height: math.unit(162, "feet"),
  49489. default: true
  49490. },
  49491. ]
  49492. ))
  49493. characterMakers.push(() => makeCharacter(
  49494. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49495. {
  49496. front: {
  49497. height: math.unit(6, "feet"),
  49498. name: "Front",
  49499. image: {
  49500. source: "./media/characters/myra-aisling/front.svg",
  49501. extra: 1268/1166,
  49502. bottom: 73/1341
  49503. }
  49504. },
  49505. back: {
  49506. height: math.unit(6, "feet"),
  49507. name: "Back",
  49508. image: {
  49509. source: "./media/characters/myra-aisling/back.svg",
  49510. extra: 1249/1149,
  49511. bottom: 79/1328
  49512. }
  49513. },
  49514. dressed: {
  49515. height: math.unit(6, "feet"),
  49516. name: "Dressed",
  49517. image: {
  49518. source: "./media/characters/myra-aisling/dressed.svg",
  49519. extra: 1290/1189,
  49520. bottom: 47/1337
  49521. }
  49522. },
  49523. hand: {
  49524. height: math.unit(1.1, "feet"),
  49525. name: "Hand",
  49526. image: {
  49527. source: "./media/characters/myra-aisling/hand.svg"
  49528. }
  49529. },
  49530. paw: {
  49531. height: math.unit(1.23, "feet"),
  49532. name: "Paw",
  49533. image: {
  49534. source: "./media/characters/myra-aisling/paw.svg"
  49535. }
  49536. },
  49537. },
  49538. [
  49539. {
  49540. name: "Normal",
  49541. height: math.unit(160, "feet"),
  49542. default: true
  49543. },
  49544. ]
  49545. ))
  49546. characterMakers.push(() => makeCharacter(
  49547. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49548. {
  49549. front: {
  49550. height: math.unit(6, "feet"),
  49551. name: "Front",
  49552. image: {
  49553. source: "./media/characters/tenley-sidero/front.svg",
  49554. extra: 1365/1276,
  49555. bottom: 47/1412
  49556. }
  49557. },
  49558. back: {
  49559. height: math.unit(6, "feet"),
  49560. name: "Back",
  49561. image: {
  49562. source: "./media/characters/tenley-sidero/back.svg",
  49563. extra: 1383/1283,
  49564. bottom: 35/1418
  49565. }
  49566. },
  49567. dressed: {
  49568. height: math.unit(6, "feet"),
  49569. name: "Dressed",
  49570. image: {
  49571. source: "./media/characters/tenley-sidero/dressed.svg",
  49572. extra: 1364/1275,
  49573. bottom: 42/1406
  49574. }
  49575. },
  49576. head: {
  49577. height: math.unit(1.47, "feet"),
  49578. name: "Head",
  49579. image: {
  49580. source: "./media/characters/tenley-sidero/head.svg",
  49581. extra: 610/490,
  49582. bottom: 0/610
  49583. }
  49584. },
  49585. },
  49586. [
  49587. {
  49588. name: "Normal",
  49589. height: math.unit(154, "feet"),
  49590. default: true
  49591. },
  49592. ]
  49593. ))
  49594. characterMakers.push(() => makeCharacter(
  49595. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49596. {
  49597. front: {
  49598. height: math.unit(5, "inches"),
  49599. name: "Front",
  49600. image: {
  49601. source: "./media/characters/mallory/front.svg",
  49602. extra: 1919/1678,
  49603. bottom: 29/1948
  49604. }
  49605. },
  49606. hand: {
  49607. height: math.unit(0.73, "inches"),
  49608. name: "Hand",
  49609. image: {
  49610. source: "./media/characters/mallory/hand.svg"
  49611. }
  49612. },
  49613. paw: {
  49614. height: math.unit(0.68, "inches"),
  49615. name: "Paw",
  49616. image: {
  49617. source: "./media/characters/mallory/paw.svg"
  49618. }
  49619. },
  49620. },
  49621. [
  49622. {
  49623. name: "Small",
  49624. height: math.unit(5, "inches"),
  49625. default: true
  49626. },
  49627. ]
  49628. ))
  49629. characterMakers.push(() => makeCharacter(
  49630. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49631. {
  49632. naked: {
  49633. height: math.unit(6, "feet"),
  49634. name: "Naked",
  49635. image: {
  49636. source: "./media/characters/mab/naked.svg",
  49637. extra: 1855/1757,
  49638. bottom: 208/2063
  49639. }
  49640. },
  49641. outside: {
  49642. height: math.unit(6, "feet"),
  49643. name: "Outside",
  49644. image: {
  49645. source: "./media/characters/mab/outside.svg",
  49646. extra: 1855/1757,
  49647. bottom: 208/2063
  49648. }
  49649. },
  49650. party: {
  49651. height: math.unit(6, "feet"),
  49652. name: "Party",
  49653. image: {
  49654. source: "./media/characters/mab/party.svg",
  49655. extra: 1855/1757,
  49656. bottom: 208/2063
  49657. }
  49658. },
  49659. },
  49660. [
  49661. {
  49662. name: "Normal",
  49663. height: math.unit(165, "feet"),
  49664. default: true
  49665. },
  49666. ]
  49667. ))
  49668. characterMakers.push(() => makeCharacter(
  49669. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49670. {
  49671. feral: {
  49672. height: math.unit(12, "feet"),
  49673. weight: math.unit(20000, "lb"),
  49674. name: "Side",
  49675. image: {
  49676. source: "./media/characters/winter/feral.svg",
  49677. extra: 1286/943,
  49678. bottom: 112/1398
  49679. },
  49680. form: "feral",
  49681. default: true
  49682. },
  49683. feralNsfw: {
  49684. height: math.unit(12, "feet"),
  49685. weight: math.unit(20000, "lb"),
  49686. name: "Side (NSFW)",
  49687. image: {
  49688. source: "./media/characters/winter/feral-nsfw.svg",
  49689. extra: 1286/943,
  49690. bottom: 112/1398
  49691. },
  49692. form: "feral"
  49693. },
  49694. dick: {
  49695. height: math.unit(3.79, "feet"),
  49696. name: "Dick",
  49697. image: {
  49698. source: "./media/characters/winter/dick.svg"
  49699. },
  49700. form: "feral"
  49701. },
  49702. anthro: {
  49703. height: math.unit(12, "feet"),
  49704. weight: math.unit(10, "tons"),
  49705. name: "Anthro",
  49706. image: {
  49707. source: "./media/characters/winter/anthro.svg",
  49708. extra: 1701/1553,
  49709. bottom: 64/1765
  49710. },
  49711. form: "anthro",
  49712. default: true
  49713. },
  49714. },
  49715. [
  49716. {
  49717. name: "Big",
  49718. height: math.unit(12, "feet"),
  49719. default: true,
  49720. form: "feral"
  49721. },
  49722. {
  49723. name: "Big",
  49724. height: math.unit(12, "feet"),
  49725. default: true,
  49726. form: "anthro"
  49727. },
  49728. ],
  49729. {
  49730. "feral": {
  49731. name: "Feral",
  49732. default: true
  49733. },
  49734. "anthro": {
  49735. name: "Anthro"
  49736. }
  49737. }
  49738. ))
  49739. characterMakers.push(() => makeCharacter(
  49740. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49741. {
  49742. front: {
  49743. height: math.unit(4.1, "inches"),
  49744. name: "Front",
  49745. image: {
  49746. source: "./media/characters/alto/front.svg",
  49747. extra: 736/627,
  49748. bottom: 90/826
  49749. }
  49750. },
  49751. },
  49752. [
  49753. {
  49754. name: "Normal",
  49755. height: math.unit(4.1, "inches"),
  49756. default: true
  49757. },
  49758. ]
  49759. ))
  49760. characterMakers.push(() => makeCharacter(
  49761. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49762. {
  49763. sitting: {
  49764. height: math.unit(3, "feet"),
  49765. name: "Sitting",
  49766. image: {
  49767. source: "./media/characters/ratstrid-v/sitting.svg",
  49768. extra: 355/310,
  49769. bottom: 136/491
  49770. }
  49771. },
  49772. },
  49773. [
  49774. {
  49775. name: "Normal",
  49776. height: math.unit(3, "feet"),
  49777. default: true
  49778. },
  49779. ]
  49780. ))
  49781. characterMakers.push(() => makeCharacter(
  49782. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49783. {
  49784. back: {
  49785. height: math.unit(6, "feet"),
  49786. weight: math.unit(350, "lb"),
  49787. name: "Back",
  49788. image: {
  49789. source: "./media/characters/siz/back.svg",
  49790. extra: 1449/1274,
  49791. bottom: 13/1462
  49792. }
  49793. },
  49794. },
  49795. [
  49796. {
  49797. name: "Over-Overcompressed",
  49798. height: math.unit(8, "feet")
  49799. },
  49800. {
  49801. name: "Overcompressed",
  49802. height: math.unit(32, "feet")
  49803. },
  49804. {
  49805. name: "Compressed",
  49806. height: math.unit(128, "feet"),
  49807. default: true
  49808. },
  49809. {
  49810. name: "Half-Compressed",
  49811. height: math.unit(512, "feet")
  49812. },
  49813. {
  49814. name: "Quarter-Compressed",
  49815. height: math.unit(2048, "feet")
  49816. },
  49817. {
  49818. name: "Uncompressed?",
  49819. height: math.unit(8192, "feet")
  49820. },
  49821. ]
  49822. ))
  49823. characterMakers.push(() => makeCharacter(
  49824. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49825. {
  49826. front: {
  49827. height: math.unit(5 + 9/12, "feet"),
  49828. weight: math.unit(150, "lb"),
  49829. name: "Front",
  49830. image: {
  49831. source: "./media/characters/ven/front.svg",
  49832. extra: 1372/1320,
  49833. bottom: 73/1445
  49834. }
  49835. },
  49836. side: {
  49837. height: math.unit(5 + 9/12, "feet"),
  49838. weight: math.unit(1150, "lb"),
  49839. name: "Side",
  49840. image: {
  49841. source: "./media/characters/ven/side.svg",
  49842. extra: 1119/1070,
  49843. bottom: 42/1161
  49844. },
  49845. default: true
  49846. },
  49847. },
  49848. [
  49849. {
  49850. name: "Normal",
  49851. height: math.unit(5 + 9/12, "feet"),
  49852. default: true
  49853. },
  49854. ]
  49855. ))
  49856. characterMakers.push(() => makeCharacter(
  49857. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49858. {
  49859. front: {
  49860. height: math.unit(12, "feet"),
  49861. weight: math.unit(1000, "kg"),
  49862. name: "Front",
  49863. image: {
  49864. source: "./media/characters/maple/front.svg",
  49865. extra: 1193/1081,
  49866. bottom: 22/1215
  49867. }
  49868. },
  49869. },
  49870. [
  49871. {
  49872. name: "Compressed",
  49873. height: math.unit(7, "feet")
  49874. },
  49875. {
  49876. name: "Normal",
  49877. height: math.unit(12, "feet"),
  49878. default: true
  49879. },
  49880. ]
  49881. ))
  49882. characterMakers.push(() => makeCharacter(
  49883. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49884. {
  49885. front: {
  49886. height: math.unit(9, "feet"),
  49887. weight: math.unit(1500, "lb"),
  49888. name: "Front",
  49889. image: {
  49890. source: "./media/characters/nora/front.svg",
  49891. extra: 1348/1286,
  49892. bottom: 218/1566
  49893. }
  49894. },
  49895. erect: {
  49896. height: math.unit(9, "feet"),
  49897. weight: math.unit(11500, "lb"),
  49898. name: "Erect",
  49899. image: {
  49900. source: "./media/characters/nora/erect.svg",
  49901. extra: 1488/1433,
  49902. bottom: 133/1621
  49903. }
  49904. },
  49905. },
  49906. [
  49907. {
  49908. name: "Normal",
  49909. height: math.unit(9, "feet"),
  49910. default: true
  49911. },
  49912. ]
  49913. ))
  49914. characterMakers.push(() => makeCharacter(
  49915. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49916. {
  49917. front: {
  49918. height: math.unit(25, "feet"),
  49919. weight: math.unit(27500, "lb"),
  49920. name: "Front",
  49921. image: {
  49922. source: "./media/characters/north-caudin/front.svg",
  49923. extra: 1184/1082,
  49924. bottom: 23/1207
  49925. }
  49926. },
  49927. },
  49928. [
  49929. {
  49930. name: "Compressed",
  49931. height: math.unit(10, "feet")
  49932. },
  49933. {
  49934. name: "Normal",
  49935. height: math.unit(25, "feet"),
  49936. default: true
  49937. },
  49938. ]
  49939. ))
  49940. characterMakers.push(() => makeCharacter(
  49941. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49942. {
  49943. front: {
  49944. height: math.unit(9, "feet"),
  49945. weight: math.unit(1250, "lb"),
  49946. name: "Front",
  49947. image: {
  49948. source: "./media/characters/merrian/front.svg",
  49949. extra: 2393/2304,
  49950. bottom: 40/2433
  49951. }
  49952. },
  49953. },
  49954. [
  49955. {
  49956. name: "Normal",
  49957. height: math.unit(9, "feet"),
  49958. default: true
  49959. },
  49960. ]
  49961. ))
  49962. characterMakers.push(() => makeCharacter(
  49963. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49964. {
  49965. front: {
  49966. height: math.unit(9, "feet"),
  49967. weight: math.unit(1000, "lb"),
  49968. name: "Front",
  49969. image: {
  49970. source: "./media/characters/hazel/front.svg",
  49971. extra: 2351/2298,
  49972. bottom: 38/2389
  49973. }
  49974. },
  49975. },
  49976. [
  49977. {
  49978. name: "Normal",
  49979. height: math.unit(9, "feet"),
  49980. default: true
  49981. },
  49982. ]
  49983. ))
  49984. characterMakers.push(() => makeCharacter(
  49985. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49986. {
  49987. front: {
  49988. height: math.unit(13, "feet"),
  49989. weight: math.unit(3200, "lb"),
  49990. name: "Front",
  49991. image: {
  49992. source: "./media/characters/emma/front.svg",
  49993. extra: 2263/2029,
  49994. bottom: 68/2331
  49995. }
  49996. },
  49997. },
  49998. [
  49999. {
  50000. name: "Normal",
  50001. height: math.unit(13, "feet"),
  50002. default: true
  50003. },
  50004. ]
  50005. ))
  50006. characterMakers.push(() => makeCharacter(
  50007. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50008. {
  50009. front: {
  50010. height: math.unit(11 + 9/12, "feet"),
  50011. weight: math.unit(2500, "lb"),
  50012. name: "Front",
  50013. image: {
  50014. source: "./media/characters/ilumina/front.svg",
  50015. extra: 2248/2209,
  50016. bottom: 164/2412
  50017. }
  50018. },
  50019. },
  50020. [
  50021. {
  50022. name: "Normal",
  50023. height: math.unit(11 + 9/12, "feet"),
  50024. default: true
  50025. },
  50026. ]
  50027. ))
  50028. characterMakers.push(() => makeCharacter(
  50029. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50030. {
  50031. front: {
  50032. height: math.unit(8 + 10/12, "feet"),
  50033. weight: math.unit(1350, "lb"),
  50034. name: "Front",
  50035. image: {
  50036. source: "./media/characters/moonshine/front.svg",
  50037. extra: 2395/2288,
  50038. bottom: 40/2435
  50039. }
  50040. },
  50041. },
  50042. [
  50043. {
  50044. name: "Normal",
  50045. height: math.unit(8 + 10/12, "feet"),
  50046. default: true
  50047. },
  50048. ]
  50049. ))
  50050. characterMakers.push(() => makeCharacter(
  50051. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50052. {
  50053. front: {
  50054. height: math.unit(14, "feet"),
  50055. weight: math.unit(3400, "lb"),
  50056. name: "Front",
  50057. image: {
  50058. source: "./media/characters/aletia/front.svg",
  50059. extra: 1185/1052,
  50060. bottom: 21/1206
  50061. }
  50062. },
  50063. },
  50064. [
  50065. {
  50066. name: "Compressed",
  50067. height: math.unit(8, "feet")
  50068. },
  50069. {
  50070. name: "Normal",
  50071. height: math.unit(14, "feet"),
  50072. default: true
  50073. },
  50074. ]
  50075. ))
  50076. characterMakers.push(() => makeCharacter(
  50077. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50078. {
  50079. front: {
  50080. height: math.unit(17, "feet"),
  50081. weight: math.unit(6500, "lb"),
  50082. name: "Front",
  50083. image: {
  50084. source: "./media/characters/deidra/front.svg",
  50085. extra: 1201/1081,
  50086. bottom: 16/1217
  50087. }
  50088. },
  50089. },
  50090. [
  50091. {
  50092. name: "Compressed",
  50093. height: math.unit(9 + 6/12, "feet")
  50094. },
  50095. {
  50096. name: "Normal",
  50097. height: math.unit(17, "feet"),
  50098. default: true
  50099. },
  50100. ]
  50101. ))
  50102. characterMakers.push(() => makeCharacter(
  50103. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50104. {
  50105. front: {
  50106. height: math.unit(7 + 4/12, "feet"),
  50107. weight: math.unit(280, "lb"),
  50108. name: "Front",
  50109. image: {
  50110. source: "./media/characters/freki-yrmori/front.svg",
  50111. extra: 1286/1182,
  50112. bottom: 29/1315
  50113. }
  50114. },
  50115. maw: {
  50116. height: math.unit(0.9, "feet"),
  50117. name: "Maw",
  50118. image: {
  50119. source: "./media/characters/freki-yrmori/maw.svg"
  50120. }
  50121. },
  50122. },
  50123. [
  50124. {
  50125. name: "Normal",
  50126. height: math.unit(7 + 4/12, "feet"),
  50127. default: true
  50128. },
  50129. {
  50130. name: "Macro",
  50131. height: math.unit(38.5, "meters")
  50132. },
  50133. ]
  50134. ))
  50135. characterMakers.push(() => makeCharacter(
  50136. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50137. {
  50138. side: {
  50139. height: math.unit(47.2, "meters"),
  50140. weight: math.unit(10000, "tons"),
  50141. name: "Side",
  50142. image: {
  50143. source: "./media/characters/aetherios/side.svg",
  50144. extra: 2363/642,
  50145. bottom: 221/2584
  50146. }
  50147. },
  50148. top: {
  50149. height: math.unit(240, "meters"),
  50150. weight: math.unit(10000, "tons"),
  50151. name: "Top",
  50152. image: {
  50153. source: "./media/characters/aetherios/top.svg"
  50154. }
  50155. },
  50156. bottom: {
  50157. height: math.unit(240, "meters"),
  50158. weight: math.unit(10000, "tons"),
  50159. name: "Bottom",
  50160. image: {
  50161. source: "./media/characters/aetherios/bottom.svg"
  50162. }
  50163. },
  50164. head: {
  50165. height: math.unit(38.6, "meters"),
  50166. name: "Head",
  50167. image: {
  50168. source: "./media/characters/aetherios/head.svg",
  50169. extra: 1335/1112,
  50170. bottom: 0/1335
  50171. }
  50172. },
  50173. front: {
  50174. height: math.unit(29, "meters"),
  50175. name: "Front",
  50176. image: {
  50177. source: "./media/characters/aetherios/front.svg",
  50178. extra: 1266/953,
  50179. bottom: 158/1424
  50180. }
  50181. },
  50182. maw: {
  50183. height: math.unit(16.37, "meters"),
  50184. name: "Maw",
  50185. image: {
  50186. source: "./media/characters/aetherios/maw.svg",
  50187. extra: 748/637,
  50188. bottom: 0/748
  50189. },
  50190. extraAttributes: {
  50191. preyCapacity: {
  50192. name: "Capacity",
  50193. power: 3,
  50194. type: "volume",
  50195. base: math.unit(1000, "people")
  50196. },
  50197. tongueSize: {
  50198. name: "Tongue Size",
  50199. power: 2,
  50200. type: "area",
  50201. base: math.unit(21, "m^2")
  50202. }
  50203. }
  50204. },
  50205. forepaw: {
  50206. height: math.unit(18, "meters"),
  50207. name: "Forepaw",
  50208. image: {
  50209. source: "./media/characters/aetherios/forepaw.svg"
  50210. }
  50211. },
  50212. hindpaw: {
  50213. height: math.unit(23, "meters"),
  50214. name: "Hindpaw",
  50215. image: {
  50216. source: "./media/characters/aetherios/hindpaw.svg"
  50217. }
  50218. },
  50219. genitals: {
  50220. height: math.unit(42, "meters"),
  50221. name: "Genitals",
  50222. image: {
  50223. source: "./media/characters/aetherios/genitals.svg"
  50224. }
  50225. },
  50226. },
  50227. [
  50228. {
  50229. name: "Normal",
  50230. height: math.unit(47.2, "meters"),
  50231. default: true
  50232. },
  50233. {
  50234. name: "Macro",
  50235. height: math.unit(160, "meters")
  50236. },
  50237. {
  50238. name: "Mega",
  50239. height: math.unit(1.87, "km")
  50240. },
  50241. {
  50242. name: "Giga",
  50243. height: math.unit(40000, "km")
  50244. },
  50245. {
  50246. name: "Stellar",
  50247. height: math.unit(158000000, "km")
  50248. },
  50249. {
  50250. name: "Cosmic",
  50251. height: math.unit(9.46e12, "km")
  50252. },
  50253. ]
  50254. ))
  50255. characterMakers.push(() => makeCharacter(
  50256. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50257. {
  50258. front: {
  50259. height: math.unit(5 + 4/12, "feet"),
  50260. weight: math.unit(80, "lb"),
  50261. name: "Front",
  50262. image: {
  50263. source: "./media/characters/mizu-gieeg/front.svg",
  50264. extra: 850/709,
  50265. bottom: 52/902
  50266. }
  50267. },
  50268. back: {
  50269. height: math.unit(5 + 4/12, "feet"),
  50270. weight: math.unit(80, "lb"),
  50271. name: "Back",
  50272. image: {
  50273. source: "./media/characters/mizu-gieeg/back.svg",
  50274. extra: 882/745,
  50275. bottom: 25/907
  50276. }
  50277. },
  50278. },
  50279. [
  50280. {
  50281. name: "Normal",
  50282. height: math.unit(5 + 4/12, "feet"),
  50283. default: true
  50284. },
  50285. ]
  50286. ))
  50287. characterMakers.push(() => makeCharacter(
  50288. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50289. {
  50290. front: {
  50291. height: math.unit(6, "feet"),
  50292. name: "Front",
  50293. image: {
  50294. source: "./media/characters/roselle-st-papier/front.svg",
  50295. extra: 1430/1280,
  50296. bottom: 37/1467
  50297. }
  50298. },
  50299. back: {
  50300. height: math.unit(6, "feet"),
  50301. name: "Back",
  50302. image: {
  50303. source: "./media/characters/roselle-st-papier/back.svg",
  50304. extra: 1491/1296,
  50305. bottom: 23/1514
  50306. }
  50307. },
  50308. ear: {
  50309. height: math.unit(1.26, "feet"),
  50310. name: "Ear",
  50311. image: {
  50312. source: "./media/characters/roselle-st-papier/ear.svg"
  50313. }
  50314. },
  50315. },
  50316. [
  50317. {
  50318. name: "Normal",
  50319. height: math.unit(150, "feet"),
  50320. default: true
  50321. },
  50322. ]
  50323. ))
  50324. characterMakers.push(() => makeCharacter(
  50325. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50326. {
  50327. front: {
  50328. height: math.unit(1, "inches"),
  50329. name: "Front",
  50330. image: {
  50331. source: "./media/characters/valargent/front.svg",
  50332. extra: 1825/1694,
  50333. bottom: 62/1887
  50334. }
  50335. },
  50336. back: {
  50337. height: math.unit(1, "inches"),
  50338. name: "Back",
  50339. image: {
  50340. source: "./media/characters/valargent/back.svg",
  50341. extra: 1775/1682,
  50342. bottom: 88/1863
  50343. }
  50344. },
  50345. },
  50346. [
  50347. {
  50348. name: "Micro",
  50349. height: math.unit(1, "inch"),
  50350. default: true
  50351. },
  50352. ]
  50353. ))
  50354. characterMakers.push(() => makeCharacter(
  50355. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50356. {
  50357. front: {
  50358. height: math.unit(3.4, "meters"),
  50359. name: "Front",
  50360. image: {
  50361. source: "./media/characters/zarina/front.svg",
  50362. extra: 1733/1425,
  50363. bottom: 93/1826
  50364. }
  50365. },
  50366. squatting: {
  50367. height: math.unit(2.14, "meters"),
  50368. name: "Squatting",
  50369. image: {
  50370. source: "./media/characters/zarina/squatting.svg",
  50371. extra: 1073/788,
  50372. bottom: 63/1136
  50373. }
  50374. },
  50375. back: {
  50376. height: math.unit(2.14, "meters"),
  50377. name: "Back",
  50378. image: {
  50379. source: "./media/characters/zarina/back.svg",
  50380. extra: 1128/885,
  50381. bottom: 0/1128
  50382. }
  50383. },
  50384. },
  50385. [
  50386. {
  50387. name: "Normal",
  50388. height: math.unit(3.4, "meters"),
  50389. default: true
  50390. },
  50391. {
  50392. name: "Big",
  50393. height: math.unit(5, "meters")
  50394. },
  50395. {
  50396. name: "Macro",
  50397. height: math.unit(110, "meters")
  50398. },
  50399. ]
  50400. ))
  50401. characterMakers.push(() => makeCharacter(
  50402. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50403. {
  50404. front: {
  50405. height: math.unit(7, "feet"),
  50406. name: "Front",
  50407. image: {
  50408. source: "./media/characters/ventus-astro-fox/front.svg",
  50409. extra: 1792/1623,
  50410. bottom: 28/1820
  50411. }
  50412. },
  50413. back: {
  50414. height: math.unit(7, "feet"),
  50415. name: "Back",
  50416. image: {
  50417. source: "./media/characters/ventus-astro-fox/back.svg",
  50418. extra: 1789/1620,
  50419. bottom: 31/1820
  50420. }
  50421. },
  50422. outfit: {
  50423. height: math.unit(7, "feet"),
  50424. name: "Outfit",
  50425. image: {
  50426. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50427. extra: 1054/925,
  50428. bottom: 15/1069
  50429. }
  50430. },
  50431. head: {
  50432. height: math.unit(1.12, "feet"),
  50433. name: "Head",
  50434. image: {
  50435. source: "./media/characters/ventus-astro-fox/head.svg",
  50436. extra: 866/504,
  50437. bottom: 0/866
  50438. }
  50439. },
  50440. hand: {
  50441. height: math.unit(1, "feet"),
  50442. name: "Hand",
  50443. image: {
  50444. source: "./media/characters/ventus-astro-fox/hand.svg"
  50445. }
  50446. },
  50447. paw: {
  50448. height: math.unit(1.5, "feet"),
  50449. name: "Paw",
  50450. image: {
  50451. source: "./media/characters/ventus-astro-fox/paw.svg"
  50452. }
  50453. },
  50454. },
  50455. [
  50456. {
  50457. name: "Normal",
  50458. height: math.unit(7, "feet"),
  50459. default: true
  50460. },
  50461. {
  50462. name: "Macro",
  50463. height: math.unit(200, "feet")
  50464. },
  50465. {
  50466. name: "Cosmic",
  50467. height: math.unit(3, "universes")
  50468. },
  50469. ]
  50470. ))
  50471. characterMakers.push(() => makeCharacter(
  50472. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50473. {
  50474. front: {
  50475. height: math.unit(3, "meters"),
  50476. weight: math.unit(7000, "lb"),
  50477. name: "Front",
  50478. image: {
  50479. source: "./media/characters/core-t/front.svg",
  50480. extra: 5729/4941,
  50481. bottom: 1129/6858
  50482. }
  50483. },
  50484. },
  50485. [
  50486. {
  50487. name: "Big",
  50488. height: math.unit(3, "meters"),
  50489. default: true
  50490. },
  50491. ]
  50492. ))
  50493. characterMakers.push(() => makeCharacter(
  50494. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50495. {
  50496. normal: {
  50497. height: math.unit(6 + 6/12, "feet"),
  50498. weight: math.unit(275, "lb"),
  50499. name: "Front",
  50500. image: {
  50501. source: "./media/characters/cadbunny/normal.svg",
  50502. extra: 1129/947,
  50503. bottom: 93/1222
  50504. },
  50505. default: true,
  50506. form: "normal"
  50507. },
  50508. gigantamax: {
  50509. height: math.unit(26, "feet"),
  50510. weight: math.unit(16000, "lb"),
  50511. name: "Front",
  50512. image: {
  50513. source: "./media/characters/cadbunny/gigantamax.svg",
  50514. extra: 1133/944,
  50515. bottom: 90/1223
  50516. },
  50517. default: true,
  50518. form: "gigantamax"
  50519. },
  50520. },
  50521. [
  50522. {
  50523. name: "Normal",
  50524. height: math.unit(6 + 6/12, "feet"),
  50525. default: true,
  50526. form: "normal"
  50527. },
  50528. {
  50529. name: "Small",
  50530. height: math.unit(26, "feet"),
  50531. default: true,
  50532. form: "gigantamax"
  50533. },
  50534. {
  50535. name: "Large",
  50536. height: math.unit(78, "feet"),
  50537. form: "gigantamax"
  50538. },
  50539. ],
  50540. {
  50541. "normal": {
  50542. name: "Normal",
  50543. default: true
  50544. },
  50545. "gigantamax": {
  50546. name: "Gigantamax"
  50547. }
  50548. }
  50549. ))
  50550. characterMakers.push(() => makeCharacter(
  50551. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50552. {
  50553. anthroFront: {
  50554. height: math.unit(8, "feet"),
  50555. weight: math.unit(300, "lb"),
  50556. name: "Front",
  50557. image: {
  50558. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50559. extra: 1272/1176,
  50560. bottom: 53/1325
  50561. },
  50562. form: "anthro",
  50563. default: true
  50564. },
  50565. feralSide: {
  50566. height: math.unit(4, "feet"),
  50567. weight: math.unit(250, "lb"),
  50568. name: "Side",
  50569. image: {
  50570. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50571. extra: 731/621,
  50572. bottom: 0/731
  50573. },
  50574. form: "feral",
  50575. default: true
  50576. },
  50577. },
  50578. [
  50579. {
  50580. name: "Regular",
  50581. height: math.unit(8, "feet"),
  50582. form: "anthro"
  50583. },
  50584. {
  50585. name: "Macro",
  50586. height: math.unit(250, "feet"),
  50587. form: "anthro",
  50588. default: true
  50589. },
  50590. {
  50591. name: "Regular",
  50592. height: math.unit(4, "feet"),
  50593. form: "feral"
  50594. },
  50595. {
  50596. name: "Macro",
  50597. height: math.unit(125, "feet"),
  50598. form: "feral",
  50599. default: true
  50600. },
  50601. ],
  50602. {
  50603. "anthro": {
  50604. name: "Anthro",
  50605. default: true
  50606. },
  50607. "feral": {
  50608. name: "Feral",
  50609. },
  50610. }
  50611. ))
  50612. characterMakers.push(() => makeCharacter(
  50613. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50614. {
  50615. front: {
  50616. height: math.unit(11 + 10/12, "feet"),
  50617. weight: math.unit(1587, "kg"),
  50618. name: "Front",
  50619. image: {
  50620. source: "./media/characters/maple-javira-dragon/front.svg",
  50621. extra: 1136/744,
  50622. bottom: 73/1209
  50623. }
  50624. },
  50625. side: {
  50626. height: math.unit(11 + 10/12, "feet"),
  50627. weight: math.unit(1587, "kg"),
  50628. name: "Side",
  50629. image: {
  50630. source: "./media/characters/maple-javira-dragon/side.svg",
  50631. extra: 712/505,
  50632. bottom: 17/729
  50633. }
  50634. },
  50635. head: {
  50636. height: math.unit(8.05, "feet"),
  50637. name: "Head",
  50638. image: {
  50639. source: "./media/characters/maple-javira-dragon/head.svg",
  50640. extra: 1420/1344,
  50641. bottom: 0/1420
  50642. }
  50643. },
  50644. },
  50645. [
  50646. {
  50647. name: "Normal",
  50648. height: math.unit(11 + 10/12, "feet"),
  50649. default: true
  50650. },
  50651. ]
  50652. ))
  50653. characterMakers.push(() => makeCharacter(
  50654. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50655. {
  50656. front: {
  50657. height: math.unit(117, "cm"),
  50658. weight: math.unit(50, "kg"),
  50659. name: "Front",
  50660. image: {
  50661. source: "./media/characters/sonia-wyverntail/front.svg",
  50662. extra: 708/592,
  50663. bottom: 25/733
  50664. }
  50665. },
  50666. },
  50667. [
  50668. {
  50669. name: "Normal",
  50670. height: math.unit(117, "cm"),
  50671. default: true
  50672. },
  50673. ]
  50674. ))
  50675. characterMakers.push(() => makeCharacter(
  50676. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50677. {
  50678. front: {
  50679. height: math.unit(6 + 5/12, "feet"),
  50680. name: "Front",
  50681. image: {
  50682. source: "./media/characters/micah/front.svg",
  50683. extra: 1758/1546,
  50684. bottom: 214/1972
  50685. }
  50686. },
  50687. },
  50688. [
  50689. {
  50690. name: "Normal",
  50691. height: math.unit(6 + 5/12, "feet"),
  50692. default: true
  50693. },
  50694. ]
  50695. ))
  50696. characterMakers.push(() => makeCharacter(
  50697. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50698. {
  50699. front: {
  50700. height: math.unit(5 + 10/12, "feet"),
  50701. weight: math.unit(220, "lb"),
  50702. name: "Front",
  50703. image: {
  50704. source: "./media/characters/zarya/front.svg",
  50705. extra: 593/572,
  50706. bottom: 50/643
  50707. }
  50708. },
  50709. back: {
  50710. height: math.unit(5 + 10/12, "feet"),
  50711. weight: math.unit(220, "lb"),
  50712. name: "Back",
  50713. image: {
  50714. source: "./media/characters/zarya/back.svg",
  50715. extra: 603/582,
  50716. bottom: 38/641
  50717. }
  50718. },
  50719. },
  50720. [
  50721. {
  50722. name: "Normal",
  50723. height: math.unit(5 + 10/12, "feet"),
  50724. default: true
  50725. },
  50726. ]
  50727. ))
  50728. characterMakers.push(() => makeCharacter(
  50729. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50730. {
  50731. front: {
  50732. height: math.unit(7.5, "feet"),
  50733. name: "Front",
  50734. image: {
  50735. source: "./media/characters/sven-hatisson/front.svg",
  50736. extra: 917/857,
  50737. bottom: 42/959
  50738. }
  50739. },
  50740. back: {
  50741. height: math.unit(7.5, "feet"),
  50742. name: "Back",
  50743. image: {
  50744. source: "./media/characters/sven-hatisson/back.svg",
  50745. extra: 903/856,
  50746. bottom: 15/918
  50747. }
  50748. },
  50749. },
  50750. [
  50751. {
  50752. name: "Base Height",
  50753. height: math.unit(7.5, "feet")
  50754. },
  50755. {
  50756. name: "Usual Height",
  50757. height: math.unit(13.5, "feet"),
  50758. default: true
  50759. },
  50760. {
  50761. name: "Smaller Macro",
  50762. height: math.unit(85, "feet")
  50763. },
  50764. {
  50765. name: "Moderate Macro",
  50766. height: math.unit(320, "feet")
  50767. },
  50768. {
  50769. name: "Large Macro",
  50770. height: math.unit(1000, "feet")
  50771. },
  50772. {
  50773. name: "Largest Size",
  50774. height: math.unit(2, "miles")
  50775. },
  50776. ]
  50777. ))
  50778. characterMakers.push(() => makeCharacter(
  50779. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50780. {
  50781. side: {
  50782. height: math.unit(1.8, "meters"),
  50783. weight: math.unit(275, "kg"),
  50784. name: "Side",
  50785. image: {
  50786. source: "./media/characters/terra/side.svg",
  50787. extra: 1273/1147,
  50788. bottom: 0/1273
  50789. }
  50790. },
  50791. },
  50792. [
  50793. {
  50794. name: "Normal",
  50795. height: math.unit(16.2, "meters"),
  50796. default: true
  50797. },
  50798. ]
  50799. ))
  50800. characterMakers.push(() => makeCharacter(
  50801. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50802. {
  50803. borzoiFront: {
  50804. height: math.unit(6 + 9/12, "feet"),
  50805. name: "Front",
  50806. image: {
  50807. source: "./media/characters/rae/borzoi-front.svg",
  50808. extra: 1161/1098,
  50809. bottom: 31/1192
  50810. },
  50811. form: "borzoi",
  50812. default: true
  50813. },
  50814. werewolfFront: {
  50815. height: math.unit(8 + 7/12, "feet"),
  50816. name: "Front",
  50817. image: {
  50818. source: "./media/characters/rae/werewolf-front.svg",
  50819. extra: 1411/1334,
  50820. bottom: 127/1538
  50821. },
  50822. form: "werewolf",
  50823. default: true
  50824. },
  50825. },
  50826. [
  50827. {
  50828. name: "Normal",
  50829. height: math.unit(6 + 9/12, "feet"),
  50830. default: true,
  50831. form: "borzoi"
  50832. },
  50833. {
  50834. name: "Normal",
  50835. height: math.unit(8 + 7/12, "feet"),
  50836. default: true,
  50837. form: "werewolf"
  50838. },
  50839. ],
  50840. {
  50841. "borzoi": {
  50842. name: "Borzoi",
  50843. default: true
  50844. },
  50845. "werewolf": {
  50846. name: "Werewolf",
  50847. },
  50848. }
  50849. ))
  50850. characterMakers.push(() => makeCharacter(
  50851. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50852. {
  50853. front: {
  50854. height: math.unit(8 + 7/12, "feet"),
  50855. weight: math.unit(482, "lb"),
  50856. name: "Front",
  50857. image: {
  50858. source: "./media/characters/kit/front.svg",
  50859. extra: 1247/1103,
  50860. bottom: 41/1288
  50861. }
  50862. },
  50863. back: {
  50864. height: math.unit(8 + 7/12, "feet"),
  50865. weight: math.unit(482, "lb"),
  50866. name: "Back",
  50867. image: {
  50868. source: "./media/characters/kit/back.svg",
  50869. extra: 1252/1123,
  50870. bottom: 21/1273
  50871. }
  50872. },
  50873. paw: {
  50874. height: math.unit(1.46, "feet"),
  50875. name: "Paw",
  50876. image: {
  50877. source: "./media/characters/kit/paw.svg"
  50878. }
  50879. },
  50880. },
  50881. [
  50882. {
  50883. name: "Normal",
  50884. height: math.unit(2.61, "meters"),
  50885. default: true
  50886. },
  50887. {
  50888. name: "\"Tall\"",
  50889. height: math.unit(8.21, "meters")
  50890. },
  50891. {
  50892. name: "Tall",
  50893. height: math.unit(19.6, "meters")
  50894. },
  50895. {
  50896. name: "Very Tall",
  50897. height: math.unit(57.91, "meters")
  50898. },
  50899. {
  50900. name: "Semi-Macro",
  50901. height: math.unit(138.64, "meters")
  50902. },
  50903. {
  50904. name: "Macro",
  50905. height: math.unit(831.99, "meters")
  50906. },
  50907. {
  50908. name: "EX-Macro",
  50909. height: math.unit(96451121, "meters")
  50910. },
  50911. {
  50912. name: "S1-Omnipotent",
  50913. height: math.unit(4.42074e+9, "meters")
  50914. },
  50915. {
  50916. name: "S2-Omnipotent",
  50917. height: math.unit(9.42074e+17, "meters")
  50918. },
  50919. {
  50920. name: "Omnipotent",
  50921. height: math.unit(4.23112e+24, "meters")
  50922. },
  50923. {
  50924. name: "Hypergod",
  50925. height: math.unit(5.05176e+27, "meters")
  50926. },
  50927. {
  50928. name: "Hypergod-EX",
  50929. height: math.unit(9.45532e+49, "meters")
  50930. },
  50931. {
  50932. name: "Hypergod-SP",
  50933. height: math.unit(9.45532e+195, "meters")
  50934. },
  50935. ]
  50936. ))
  50937. characterMakers.push(() => makeCharacter(
  50938. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50939. {
  50940. side: {
  50941. height: math.unit(0.6, "meters"),
  50942. weight: math.unit(24, "kg"),
  50943. name: "Side",
  50944. image: {
  50945. source: "./media/characters/celeste/side.svg",
  50946. extra: 810/517,
  50947. bottom: 53/863
  50948. }
  50949. },
  50950. },
  50951. [
  50952. {
  50953. name: "Velociraptor",
  50954. height: math.unit(0.6, "meters"),
  50955. default: true
  50956. },
  50957. {
  50958. name: "Utahraptor",
  50959. height: math.unit(1.8, "meters")
  50960. },
  50961. {
  50962. name: "Gallimimus",
  50963. height: math.unit(4.0, "meters")
  50964. },
  50965. {
  50966. name: "Large",
  50967. height: math.unit(20, "meters")
  50968. },
  50969. {
  50970. name: "Planetary",
  50971. height: math.unit(50, "megameters")
  50972. },
  50973. {
  50974. name: "Stellar",
  50975. height: math.unit(1.5, "gigameters")
  50976. },
  50977. {
  50978. name: "Galactic",
  50979. height: math.unit(100, "exameters")
  50980. },
  50981. ]
  50982. ))
  50983. characterMakers.push(() => makeCharacter(
  50984. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50985. {
  50986. front: {
  50987. height: math.unit(6, "feet"),
  50988. weight: math.unit(210, "lb"),
  50989. name: "Front",
  50990. image: {
  50991. source: "./media/characters/glacia/front.svg",
  50992. extra: 958/901,
  50993. bottom: 45/1003
  50994. }
  50995. },
  50996. },
  50997. [
  50998. {
  50999. name: "Macro",
  51000. height: math.unit(1000, "meters"),
  51001. default: true
  51002. },
  51003. ]
  51004. ))
  51005. characterMakers.push(() => makeCharacter(
  51006. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51007. {
  51008. front: {
  51009. height: math.unit(4, "meters"),
  51010. name: "Front",
  51011. image: {
  51012. source: "./media/characters/giri/front.svg",
  51013. extra: 966/894,
  51014. bottom: 21/987
  51015. }
  51016. },
  51017. },
  51018. [
  51019. {
  51020. name: "Normal",
  51021. height: math.unit(4, "meters"),
  51022. default: true
  51023. },
  51024. ]
  51025. ))
  51026. characterMakers.push(() => makeCharacter(
  51027. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51028. {
  51029. back: {
  51030. height: math.unit(4, "feet"),
  51031. weight: math.unit(37, "lb"),
  51032. name: "Back",
  51033. image: {
  51034. source: "./media/characters/tin/back.svg",
  51035. extra: 845/780,
  51036. bottom: 28/873
  51037. }
  51038. },
  51039. },
  51040. [
  51041. {
  51042. name: "Normal",
  51043. height: math.unit(4, "feet"),
  51044. default: true
  51045. },
  51046. ]
  51047. ))
  51048. characterMakers.push(() => makeCharacter(
  51049. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51050. {
  51051. front: {
  51052. height: math.unit(25, "feet"),
  51053. name: "Front",
  51054. image: {
  51055. source: "./media/characters/cadenza-vivace/front.svg",
  51056. extra: 1842/1578,
  51057. bottom: 30/1872
  51058. }
  51059. },
  51060. },
  51061. [
  51062. {
  51063. name: "Macro",
  51064. height: math.unit(25, "feet"),
  51065. default: true
  51066. },
  51067. ]
  51068. ))
  51069. characterMakers.push(() => makeCharacter(
  51070. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51071. {
  51072. front: {
  51073. height: math.unit(10, "feet"),
  51074. weight: math.unit(625, "kg"),
  51075. name: "Front",
  51076. image: {
  51077. source: "./media/characters/zain/front.svg",
  51078. extra: 1682/1498,
  51079. bottom: 223/1905
  51080. }
  51081. },
  51082. back: {
  51083. height: math.unit(10, "feet"),
  51084. weight: math.unit(625, "kg"),
  51085. name: "Back",
  51086. image: {
  51087. source: "./media/characters/zain/back.svg",
  51088. extra: 1814/1657,
  51089. bottom: 152/1966
  51090. }
  51091. },
  51092. head: {
  51093. height: math.unit(10, "feet"),
  51094. weight: math.unit(625, "kg"),
  51095. name: "Head",
  51096. image: {
  51097. source: "./media/characters/zain/head.svg",
  51098. extra: 1059/762,
  51099. bottom: 0/1059
  51100. }
  51101. },
  51102. },
  51103. [
  51104. {
  51105. name: "Normal",
  51106. height: math.unit(10, "feet"),
  51107. default: true
  51108. },
  51109. ]
  51110. ))
  51111. characterMakers.push(() => makeCharacter(
  51112. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51113. {
  51114. front: {
  51115. height: math.unit(6 + 5/12, "feet"),
  51116. weight: math.unit(750, "lb"),
  51117. name: "Front",
  51118. image: {
  51119. source: "./media/characters/ruchex/front.svg",
  51120. extra: 877/820,
  51121. bottom: 17/894
  51122. },
  51123. extraAttributes: {
  51124. "width": {
  51125. name: "Width",
  51126. power: 1,
  51127. type: "length",
  51128. base: math.unit(4.757, "feet")
  51129. },
  51130. }
  51131. },
  51132. },
  51133. [
  51134. {
  51135. name: "Normal",
  51136. height: math.unit(6 + 5/12, "feet"),
  51137. default: true
  51138. },
  51139. ]
  51140. ))
  51141. characterMakers.push(() => makeCharacter(
  51142. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51143. {
  51144. dressedFront: {
  51145. height: math.unit(191, "cm"),
  51146. weight: math.unit(80, "kg"),
  51147. name: "Front",
  51148. image: {
  51149. source: "./media/characters/buster/dressed-front.svg",
  51150. extra: 1022/973,
  51151. bottom: 69/1091
  51152. }
  51153. },
  51154. dressedBack: {
  51155. height: math.unit(191, "cm"),
  51156. weight: math.unit(80, "kg"),
  51157. name: "Back",
  51158. image: {
  51159. source: "./media/characters/buster/dressed-back.svg",
  51160. extra: 1018/970,
  51161. bottom: 55/1073
  51162. }
  51163. },
  51164. nudeFront: {
  51165. height: math.unit(191, "cm"),
  51166. weight: math.unit(80, "kg"),
  51167. name: "Front (Nude)",
  51168. image: {
  51169. source: "./media/characters/buster/nude-front.svg",
  51170. extra: 1022/973,
  51171. bottom: 69/1091
  51172. }
  51173. },
  51174. nudeBack: {
  51175. height: math.unit(191, "cm"),
  51176. weight: math.unit(80, "kg"),
  51177. name: "Back (Nude)",
  51178. image: {
  51179. source: "./media/characters/buster/nude-back.svg",
  51180. extra: 1018/970,
  51181. bottom: 55/1073
  51182. }
  51183. },
  51184. dick: {
  51185. height: math.unit(2.59, "feet"),
  51186. name: "Dick",
  51187. image: {
  51188. source: "./media/characters/buster/dick.svg"
  51189. }
  51190. },
  51191. ass: {
  51192. height: math.unit(1.2, "feet"),
  51193. name: "Ass",
  51194. image: {
  51195. source: "./media/characters/buster/ass.svg"
  51196. }
  51197. },
  51198. },
  51199. [
  51200. {
  51201. name: "Normal",
  51202. height: math.unit(191, "cm"),
  51203. default: true
  51204. },
  51205. ]
  51206. ))
  51207. characterMakers.push(() => makeCharacter(
  51208. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51209. {
  51210. side: {
  51211. height: math.unit(8.1, "feet"),
  51212. weight: math.unit(3500, "lb"),
  51213. name: "Side",
  51214. image: {
  51215. source: "./media/characters/sonya/side.svg",
  51216. extra: 1730/1317,
  51217. bottom: 86/1816
  51218. }
  51219. },
  51220. },
  51221. [
  51222. {
  51223. name: "Normal",
  51224. height: math.unit(8.1, "feet"),
  51225. default: true
  51226. },
  51227. ]
  51228. ))
  51229. characterMakers.push(() => makeCharacter(
  51230. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51231. {
  51232. front: {
  51233. height: math.unit(6, "feet"),
  51234. weight: math.unit(150, "lb"),
  51235. name: "Front",
  51236. image: {
  51237. source: "./media/characters/cadence-andrysiak/front.svg",
  51238. extra: 1164/1121,
  51239. bottom: 60/1224
  51240. }
  51241. },
  51242. back: {
  51243. height: math.unit(6, "feet"),
  51244. weight: math.unit(150, "lb"),
  51245. name: "Back",
  51246. image: {
  51247. source: "./media/characters/cadence-andrysiak/back.svg",
  51248. extra: 1200/1165,
  51249. bottom: 9/1209
  51250. }
  51251. },
  51252. dressed: {
  51253. height: math.unit(6, "feet"),
  51254. weight: math.unit(150, "lb"),
  51255. name: "Dressed",
  51256. image: {
  51257. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51258. extra: 1164/1121,
  51259. bottom: 60/1224
  51260. }
  51261. },
  51262. },
  51263. [
  51264. {
  51265. name: "Micro",
  51266. height: math.unit(1, "mm")
  51267. },
  51268. {
  51269. name: "Normal",
  51270. height: math.unit(6, "feet"),
  51271. default: true
  51272. },
  51273. ]
  51274. ))
  51275. characterMakers.push(() => makeCharacter(
  51276. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51277. {
  51278. front: {
  51279. height: math.unit(60, "inches"),
  51280. weight: math.unit(16, "lb"),
  51281. preyCapacity: math.unit(80, "liters"),
  51282. name: "Front",
  51283. image: {
  51284. source: "./media/characters/penny-lynx/front.svg",
  51285. extra: 1959/1769,
  51286. bottom: 49/2008
  51287. }
  51288. },
  51289. },
  51290. [
  51291. {
  51292. name: "Nokia",
  51293. height: math.unit(2, "inches")
  51294. },
  51295. {
  51296. name: "Desktop",
  51297. height: math.unit(24, "inches")
  51298. },
  51299. {
  51300. name: "TV",
  51301. height: math.unit(60, "inches")
  51302. },
  51303. {
  51304. name: "Jumbotron",
  51305. height: math.unit(12, "feet")
  51306. },
  51307. {
  51308. name: "Billboard",
  51309. height: math.unit(48, "feet"),
  51310. default: true
  51311. },
  51312. {
  51313. name: "IMAX",
  51314. height: math.unit(96, "feet")
  51315. },
  51316. {
  51317. name: "SINGULARITY",
  51318. height: math.unit(864938, "miles")
  51319. },
  51320. ]
  51321. ))
  51322. characterMakers.push(() => makeCharacter(
  51323. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51324. {
  51325. front: {
  51326. height: math.unit(5 + 4/12, "feet"),
  51327. weight: math.unit(230, "lb"),
  51328. name: "Front",
  51329. image: {
  51330. source: "./media/characters/sukebe/front.svg",
  51331. extra: 2130/2038,
  51332. bottom: 90/2220
  51333. }
  51334. },
  51335. back: {
  51336. height: math.unit(3.48, "feet"),
  51337. weight: math.unit(230, "lb"),
  51338. name: "Back",
  51339. image: {
  51340. source: "./media/characters/sukebe/back.svg",
  51341. extra: 1670/1604,
  51342. bottom: 0/1670
  51343. }
  51344. },
  51345. },
  51346. [
  51347. {
  51348. name: "Normal",
  51349. height: math.unit(5 + 4/12, "feet"),
  51350. default: true
  51351. },
  51352. ]
  51353. ))
  51354. characterMakers.push(() => makeCharacter(
  51355. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51356. {
  51357. front: {
  51358. height: math.unit(6, "feet"),
  51359. name: "Front",
  51360. image: {
  51361. source: "./media/characters/nylla/front.svg",
  51362. extra: 1868/1699,
  51363. bottom: 97/1965
  51364. }
  51365. },
  51366. back: {
  51367. height: math.unit(6, "feet"),
  51368. name: "Back",
  51369. image: {
  51370. source: "./media/characters/nylla/back.svg",
  51371. extra: 1889/1712,
  51372. bottom: 93/1982
  51373. }
  51374. },
  51375. frontNsfw: {
  51376. height: math.unit(6, "feet"),
  51377. name: "Front (NSFW)",
  51378. image: {
  51379. source: "./media/characters/nylla/front-nsfw.svg",
  51380. extra: 1868/1699,
  51381. bottom: 97/1965
  51382. },
  51383. extraAttributes: {
  51384. "dickLength": {
  51385. name: "Dick Length",
  51386. power: 1,
  51387. type: "length",
  51388. base: math.unit(1.4, "feet")
  51389. },
  51390. "cumVolume": {
  51391. name: "Cum Volume",
  51392. power: 3,
  51393. type: "volume",
  51394. base: math.unit(100, "mL")
  51395. },
  51396. }
  51397. },
  51398. backNsfw: {
  51399. height: math.unit(6, "feet"),
  51400. name: "Back (NSFW)",
  51401. image: {
  51402. source: "./media/characters/nylla/back-nsfw.svg",
  51403. extra: 1889/1712,
  51404. bottom: 93/1982
  51405. }
  51406. },
  51407. maw: {
  51408. height: math.unit(2.10, "feet"),
  51409. name: "Maw",
  51410. image: {
  51411. source: "./media/characters/nylla/maw.svg"
  51412. }
  51413. },
  51414. paws: {
  51415. height: math.unit(2.06, "feet"),
  51416. name: "Paws",
  51417. image: {
  51418. source: "./media/characters/nylla/paws.svg"
  51419. }
  51420. },
  51421. muzzle: {
  51422. height: math.unit(0.61, "feet"),
  51423. name: "Muzzle",
  51424. image: {
  51425. source: "./media/characters/nylla/muzzle.svg"
  51426. }
  51427. },
  51428. sheath: {
  51429. height: math.unit(1.305, "feet"),
  51430. name: "Sheath",
  51431. image: {
  51432. source: "./media/characters/nylla/sheath.svg"
  51433. }
  51434. },
  51435. },
  51436. [
  51437. {
  51438. name: "Micro",
  51439. height: math.unit(7.5, "inches")
  51440. },
  51441. {
  51442. name: "Normal",
  51443. height: math.unit(7, "feet"),
  51444. default: true
  51445. },
  51446. {
  51447. name: "Macro",
  51448. height: math.unit(60, "feet")
  51449. },
  51450. {
  51451. name: "Mega",
  51452. height: math.unit(200, "feet")
  51453. },
  51454. ]
  51455. ))
  51456. characterMakers.push(() => makeCharacter(
  51457. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51458. {
  51459. front: {
  51460. height: math.unit(10, "feet"),
  51461. weight: math.unit(2300, "lb"),
  51462. name: "Front",
  51463. image: {
  51464. source: "./media/characters/hunt3r/front.svg",
  51465. extra: 1909/1742,
  51466. bottom: 46/1955
  51467. }
  51468. },
  51469. },
  51470. [
  51471. {
  51472. name: "Normal",
  51473. height: math.unit(10, "feet"),
  51474. default: true
  51475. },
  51476. ]
  51477. ))
  51478. characterMakers.push(() => makeCharacter(
  51479. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51480. {
  51481. dressed: {
  51482. height: math.unit(11, "feet"),
  51483. weight: math.unit(18500, "lb"),
  51484. preyCapacity: math.unit(9, "people"),
  51485. name: "Dressed",
  51486. image: {
  51487. source: "./media/characters/cylphis/dressed.svg",
  51488. extra: 1028/1003,
  51489. bottom: 75/1103
  51490. },
  51491. },
  51492. undressed: {
  51493. height: math.unit(11, "feet"),
  51494. weight: math.unit(18500, "lb"),
  51495. preyCapacity: math.unit(9, "people"),
  51496. name: "Undressed",
  51497. image: {
  51498. source: "./media/characters/cylphis/undressed.svg",
  51499. extra: 1028/1003,
  51500. bottom: 75/1103
  51501. }
  51502. },
  51503. full: {
  51504. height: math.unit(11, "feet"),
  51505. weight: math.unit(18500 + 150*9, "lb"),
  51506. preyCapacity: math.unit(9, "people"),
  51507. name: "Full",
  51508. image: {
  51509. source: "./media/characters/cylphis/full.svg",
  51510. extra: 1028/1003,
  51511. bottom: 75/1103
  51512. }
  51513. },
  51514. },
  51515. [
  51516. {
  51517. name: "Small",
  51518. height: math.unit(8, "feet")
  51519. },
  51520. {
  51521. name: "Normal",
  51522. height: math.unit(11, "feet"),
  51523. default: true
  51524. },
  51525. ]
  51526. ))
  51527. characterMakers.push(() => makeCharacter(
  51528. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51529. {
  51530. front: {
  51531. height: math.unit(2 + 7/12, "feet"),
  51532. name: "Front",
  51533. image: {
  51534. source: "./media/characters/orishan/front.svg",
  51535. extra: 1058/1023,
  51536. bottom: 23/1081
  51537. }
  51538. },
  51539. back: {
  51540. height: math.unit(2 + 7/12, "feet"),
  51541. name: "Back",
  51542. image: {
  51543. source: "./media/characters/orishan/back.svg",
  51544. extra: 1058/1023,
  51545. bottom: 23/1081
  51546. }
  51547. },
  51548. },
  51549. [
  51550. {
  51551. name: "Micro",
  51552. height: math.unit(2, "cm")
  51553. },
  51554. {
  51555. name: "Normal",
  51556. height: math.unit(2 + 7/12, "feet"),
  51557. default: true
  51558. },
  51559. ]
  51560. ))
  51561. characterMakers.push(() => makeCharacter(
  51562. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51563. {
  51564. front: {
  51565. height: math.unit(3, "meters"),
  51566. weight: math.unit(508, "kg"),
  51567. name: "Front",
  51568. image: {
  51569. source: "./media/characters/seranis/front.svg",
  51570. extra: 1478/1454,
  51571. bottom: 41/1519
  51572. }
  51573. },
  51574. },
  51575. [
  51576. {
  51577. name: "Normal",
  51578. height: math.unit(3, "meters"),
  51579. default: true
  51580. },
  51581. {
  51582. name: "Macro",
  51583. height: math.unit(108, "meters")
  51584. },
  51585. {
  51586. name: "Megamacro",
  51587. height: math.unit(1250, "meters")
  51588. },
  51589. ]
  51590. ))
  51591. characterMakers.push(() => makeCharacter(
  51592. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51593. {
  51594. undressed: {
  51595. height: math.unit(5 + 3/12, "feet"),
  51596. name: "Undressed",
  51597. image: {
  51598. source: "./media/characters/ankou/undressed.svg",
  51599. extra: 1301/1213,
  51600. bottom: 87/1388
  51601. }
  51602. },
  51603. dressed: {
  51604. height: math.unit(5 + 3/12, "feet"),
  51605. name: "Dressed",
  51606. image: {
  51607. source: "./media/characters/ankou/dressed.svg",
  51608. extra: 1301/1213,
  51609. bottom: 87/1388
  51610. }
  51611. },
  51612. head: {
  51613. height: math.unit(1.61, "feet"),
  51614. name: "Head",
  51615. image: {
  51616. source: "./media/characters/ankou/head.svg"
  51617. }
  51618. },
  51619. },
  51620. [
  51621. {
  51622. name: "Normal",
  51623. height: math.unit(5 + 3/12, "feet"),
  51624. default: true
  51625. },
  51626. ]
  51627. ))
  51628. characterMakers.push(() => makeCharacter(
  51629. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51630. {
  51631. side: {
  51632. height: math.unit(6 + 3/12, "feet"),
  51633. weight: math.unit(200, "kg"),
  51634. name: "Side",
  51635. image: {
  51636. source: "./media/characters/juniper-skunktaur/side.svg",
  51637. extra: 1574/1229,
  51638. bottom: 38/1612
  51639. }
  51640. },
  51641. front: {
  51642. height: math.unit(6 + 3/12, "feet"),
  51643. weight: math.unit(200, "kg"),
  51644. name: "Front",
  51645. image: {
  51646. source: "./media/characters/juniper-skunktaur/front.svg",
  51647. extra: 1337/1278,
  51648. bottom: 22/1359
  51649. }
  51650. },
  51651. back: {
  51652. height: math.unit(6 + 3/12, "feet"),
  51653. weight: math.unit(200, "kg"),
  51654. name: "Back",
  51655. image: {
  51656. source: "./media/characters/juniper-skunktaur/back.svg",
  51657. extra: 1618/1273,
  51658. bottom: 13/1631
  51659. }
  51660. },
  51661. top: {
  51662. height: math.unit(2.62, "feet"),
  51663. weight: math.unit(200, "kg"),
  51664. name: "Top",
  51665. image: {
  51666. source: "./media/characters/juniper-skunktaur/top.svg"
  51667. }
  51668. },
  51669. },
  51670. [
  51671. {
  51672. name: "Normal",
  51673. height: math.unit(6 + 3/12, "feet"),
  51674. default: true
  51675. },
  51676. ]
  51677. ))
  51678. characterMakers.push(() => makeCharacter(
  51679. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51680. {
  51681. front: {
  51682. height: math.unit(20.5, "feet"),
  51683. name: "Front",
  51684. image: {
  51685. source: "./media/characters/rei/front.svg",
  51686. extra: 1349/1195,
  51687. bottom: 31/1380
  51688. }
  51689. },
  51690. back: {
  51691. height: math.unit(20.5, "feet"),
  51692. name: "Back",
  51693. image: {
  51694. source: "./media/characters/rei/back.svg",
  51695. extra: 1358/1204,
  51696. bottom: 22/1380
  51697. }
  51698. },
  51699. pawsDigi: {
  51700. height: math.unit(3.45, "feet"),
  51701. name: "Paws (Digi)",
  51702. image: {
  51703. source: "./media/characters/rei/paws-digi.svg"
  51704. }
  51705. },
  51706. pawsPlanti: {
  51707. height: math.unit(3.45, "feet"),
  51708. name: "Paws (Planti)",
  51709. image: {
  51710. source: "./media/characters/rei/paws-planti.svg"
  51711. }
  51712. },
  51713. },
  51714. [
  51715. {
  51716. name: "Normal",
  51717. height: math.unit(20.5, "feet"),
  51718. default: true
  51719. },
  51720. ]
  51721. ))
  51722. characterMakers.push(() => makeCharacter(
  51723. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51724. {
  51725. front: {
  51726. height: math.unit(5 + 11/12, "feet"),
  51727. name: "Front",
  51728. image: {
  51729. source: "./media/characters/carina/front.svg",
  51730. extra: 1720/1449,
  51731. bottom: 14/1734
  51732. }
  51733. },
  51734. back: {
  51735. height: math.unit(5 + 11/12, "feet"),
  51736. name: "Back",
  51737. image: {
  51738. source: "./media/characters/carina/back.svg",
  51739. extra: 1493/1445,
  51740. bottom: 17/1510
  51741. }
  51742. },
  51743. paw: {
  51744. height: math.unit(0.92, "feet"),
  51745. name: "Paw",
  51746. image: {
  51747. source: "./media/characters/carina/paw.svg"
  51748. }
  51749. },
  51750. },
  51751. [
  51752. {
  51753. name: "Normal",
  51754. height: math.unit(5 + 11/12, "feet"),
  51755. default: true
  51756. },
  51757. ]
  51758. ))
  51759. characterMakers.push(() => makeCharacter(
  51760. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51761. {
  51762. front: {
  51763. height: math.unit(4.88, "meters"),
  51764. name: "Front",
  51765. image: {
  51766. source: "./media/characters/maya/front.svg",
  51767. extra: 1222/1145,
  51768. bottom: 57/1279
  51769. }
  51770. },
  51771. },
  51772. [
  51773. {
  51774. name: "Normal",
  51775. height: math.unit(4.88, "meters"),
  51776. default: true
  51777. },
  51778. {
  51779. name: "Macro",
  51780. height: math.unit(38.1, "meters")
  51781. },
  51782. {
  51783. name: "Macro+",
  51784. height: math.unit(152.4, "meters")
  51785. },
  51786. {
  51787. name: "Macro++",
  51788. height: math.unit(16.09, "km")
  51789. },
  51790. {
  51791. name: "Mega-macro",
  51792. height: math.unit(700, "megameters")
  51793. },
  51794. ]
  51795. ))
  51796. characterMakers.push(() => makeCharacter(
  51797. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51798. {
  51799. front: {
  51800. height: math.unit(6 + 2/12, "feet"),
  51801. weight: math.unit(500, "lb"),
  51802. preyCapacity: math.unit(4, "people"),
  51803. name: "Front",
  51804. image: {
  51805. source: "./media/characters/yepir/front.svg"
  51806. }
  51807. },
  51808. side: {
  51809. height: math.unit(6 + 2/12, "feet"),
  51810. weight: math.unit(500, "lb"),
  51811. preyCapacity: math.unit(4, "people"),
  51812. name: "Side",
  51813. image: {
  51814. source: "./media/characters/yepir/side.svg"
  51815. }
  51816. },
  51817. paw: {
  51818. height: math.unit(1.05, "feet"),
  51819. name: "Paw",
  51820. image: {
  51821. source: "./media/characters/yepir/paw.svg"
  51822. }
  51823. },
  51824. },
  51825. [
  51826. {
  51827. name: "Normal",
  51828. height: math.unit(6 + 2/12, "feet"),
  51829. default: true
  51830. },
  51831. ]
  51832. ))
  51833. characterMakers.push(() => makeCharacter(
  51834. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  51835. {
  51836. front: {
  51837. height: math.unit(5 + 4/12, "feet"),
  51838. name: "Front",
  51839. image: {
  51840. source: "./media/characters/russec/front.svg",
  51841. extra: 1926/1626,
  51842. bottom: 72/1998
  51843. }
  51844. },
  51845. back: {
  51846. height: math.unit(5 + 4/12, "feet"),
  51847. name: "Back",
  51848. image: {
  51849. source: "./media/characters/russec/back.svg",
  51850. extra: 1910/1591,
  51851. bottom: 48/1958
  51852. }
  51853. },
  51854. },
  51855. [
  51856. {
  51857. name: "Small",
  51858. height: math.unit(5 + 4/12, "feet")
  51859. },
  51860. {
  51861. name: "Normal",
  51862. height: math.unit(72, "feet"),
  51863. default: true
  51864. },
  51865. ]
  51866. ))
  51867. characterMakers.push(() => makeCharacter(
  51868. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  51869. {
  51870. side: {
  51871. height: math.unit(12, "feet"),
  51872. name: "Side",
  51873. image: {
  51874. source: "./media/characters/cianus/side.svg",
  51875. extra: 808/526,
  51876. bottom: 61/869
  51877. }
  51878. },
  51879. },
  51880. [
  51881. {
  51882. name: "Normal",
  51883. height: math.unit(12, "feet"),
  51884. default: true
  51885. },
  51886. ]
  51887. ))
  51888. characterMakers.push(() => makeCharacter(
  51889. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  51890. {
  51891. front: {
  51892. height: math.unit(9 + 6/12, "feet"),
  51893. weight: math.unit(300, "lb"),
  51894. name: "Front",
  51895. image: {
  51896. source: "./media/characters/ahab/front.svg",
  51897. extra: 1897/1868,
  51898. bottom: 121/2018
  51899. }
  51900. },
  51901. frontNsfw: {
  51902. height: math.unit(9 + 6/12, "feet"),
  51903. weight: math.unit(300, "lb"),
  51904. name: "Front-nsfw",
  51905. image: {
  51906. source: "./media/characters/ahab/front-nsfw.svg",
  51907. extra: 1897/1868,
  51908. bottom: 121/2018
  51909. }
  51910. },
  51911. },
  51912. [
  51913. {
  51914. name: "Normal",
  51915. height: math.unit(9 + 6/12, "feet")
  51916. },
  51917. {
  51918. name: "Macro",
  51919. height: math.unit(657, "feet"),
  51920. default: true
  51921. },
  51922. ]
  51923. ))
  51924. characterMakers.push(() => makeCharacter(
  51925. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  51926. {
  51927. front: {
  51928. height: math.unit(2.69, "meters"),
  51929. weight: math.unit(132, "kg"),
  51930. name: "Front",
  51931. image: {
  51932. source: "./media/characters/aarkus/front.svg",
  51933. extra: 1400/1231,
  51934. bottom: 34/1434
  51935. }
  51936. },
  51937. back: {
  51938. height: math.unit(2.69, "meters"),
  51939. weight: math.unit(132, "kg"),
  51940. name: "Back",
  51941. image: {
  51942. source: "./media/characters/aarkus/back.svg",
  51943. extra: 1381/1218,
  51944. bottom: 30/1411
  51945. }
  51946. },
  51947. frontNsfw: {
  51948. height: math.unit(2.69, "meters"),
  51949. weight: math.unit(132, "kg"),
  51950. name: "Front (NSFW)",
  51951. image: {
  51952. source: "./media/characters/aarkus/front-nsfw.svg",
  51953. extra: 1400/1231,
  51954. bottom: 34/1434
  51955. }
  51956. },
  51957. foot: {
  51958. height: math.unit(1.45, "feet"),
  51959. name: "Foot",
  51960. image: {
  51961. source: "./media/characters/aarkus/foot.svg"
  51962. }
  51963. },
  51964. head: {
  51965. height: math.unit(2.85, "feet"),
  51966. name: "Head",
  51967. image: {
  51968. source: "./media/characters/aarkus/head.svg"
  51969. }
  51970. },
  51971. headAlt: {
  51972. height: math.unit(3.07, "feet"),
  51973. name: "Head (Alt)",
  51974. image: {
  51975. source: "./media/characters/aarkus/head-alt.svg"
  51976. }
  51977. },
  51978. mouth: {
  51979. height: math.unit(1.25, "feet"),
  51980. name: "Mouth",
  51981. image: {
  51982. source: "./media/characters/aarkus/mouth.svg"
  51983. }
  51984. },
  51985. dick: {
  51986. height: math.unit(1.77, "feet"),
  51987. name: "Dick",
  51988. image: {
  51989. source: "./media/characters/aarkus/dick.svg"
  51990. }
  51991. },
  51992. },
  51993. [
  51994. {
  51995. name: "Normal",
  51996. height: math.unit(2.69, "meters"),
  51997. default: true
  51998. },
  51999. {
  52000. name: "Macro",
  52001. height: math.unit(269, "meters")
  52002. },
  52003. {
  52004. name: "Macro+",
  52005. height: math.unit(672.5, "meters")
  52006. },
  52007. {
  52008. name: "Megamacro",
  52009. height: math.unit(2.017, "km")
  52010. },
  52011. ]
  52012. ))
  52013. characterMakers.push(() => makeCharacter(
  52014. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52015. {
  52016. front: {
  52017. height: math.unit(23.47, "cm"),
  52018. weight: math.unit(600, "grams"),
  52019. name: "Front",
  52020. image: {
  52021. source: "./media/characters/diode/front.svg",
  52022. extra: 1778/1396,
  52023. bottom: 95/1873
  52024. }
  52025. },
  52026. side: {
  52027. height: math.unit(23.47, "cm"),
  52028. weight: math.unit(600, "grams"),
  52029. name: "Side",
  52030. image: {
  52031. source: "./media/characters/diode/side.svg",
  52032. extra: 1831/1404,
  52033. bottom: 86/1917
  52034. }
  52035. },
  52036. wings: {
  52037. height: math.unit(0.683, "feet"),
  52038. name: "Wings",
  52039. image: {
  52040. source: "./media/characters/diode/wings.svg"
  52041. }
  52042. },
  52043. },
  52044. [
  52045. {
  52046. name: "Normal",
  52047. height: math.unit(23.47, "cm"),
  52048. default: true
  52049. },
  52050. ]
  52051. ))
  52052. characterMakers.push(() => makeCharacter(
  52053. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52054. {
  52055. front: {
  52056. height: math.unit(6 + 3/12, "feet"),
  52057. weight: math.unit(250, "lb"),
  52058. name: "Front",
  52059. image: {
  52060. source: "./media/characters/reika/front.svg",
  52061. extra: 1120/1078,
  52062. bottom: 86/1206
  52063. }
  52064. },
  52065. },
  52066. [
  52067. {
  52068. name: "Normal",
  52069. height: math.unit(6 + 3/12, "feet"),
  52070. default: true
  52071. },
  52072. ]
  52073. ))
  52074. characterMakers.push(() => makeCharacter(
  52075. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52076. {
  52077. front: {
  52078. height: math.unit(16 + 8/12, "feet"),
  52079. weight: math.unit(9000, "lb"),
  52080. name: "Front",
  52081. image: {
  52082. source: "./media/characters/lokuto-takama/front.svg",
  52083. extra: 1774/1632,
  52084. bottom: 147/1921
  52085. },
  52086. extraAttributes: {
  52087. "bustWidth": {
  52088. name: "Bust Width",
  52089. power: 1,
  52090. type: "length",
  52091. base: math.unit(2.4, "meters")
  52092. },
  52093. "breastWeight": {
  52094. name: "Breast Weight",
  52095. power: 3,
  52096. type: "mass",
  52097. base: math.unit(1000, "kg")
  52098. },
  52099. }
  52100. },
  52101. },
  52102. [
  52103. {
  52104. name: "Normal",
  52105. height: math.unit(16 + 8/12, "feet"),
  52106. default: true
  52107. },
  52108. ]
  52109. ))
  52110. characterMakers.push(() => makeCharacter(
  52111. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52112. {
  52113. front: {
  52114. height: math.unit(10, "cm"),
  52115. weight: math.unit(850, "grams"),
  52116. name: "Front",
  52117. image: {
  52118. source: "./media/characters/owak-bone/front.svg",
  52119. extra: 1965/1801,
  52120. bottom: 31/1996
  52121. }
  52122. },
  52123. },
  52124. [
  52125. {
  52126. name: "Normal",
  52127. height: math.unit(10, "cm"),
  52128. default: true
  52129. },
  52130. ]
  52131. ))
  52132. characterMakers.push(() => makeCharacter(
  52133. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52134. {
  52135. front: {
  52136. height: math.unit(2 + 6/12, "feet"),
  52137. weight: math.unit(9, "lb"),
  52138. name: "Front",
  52139. image: {
  52140. source: "./media/characters/muffin/front.svg",
  52141. extra: 1220/1195,
  52142. bottom: 84/1304
  52143. }
  52144. },
  52145. },
  52146. [
  52147. {
  52148. name: "Normal",
  52149. height: math.unit(2 + 6/12, "feet"),
  52150. default: true
  52151. },
  52152. ]
  52153. ))
  52154. characterMakers.push(() => makeCharacter(
  52155. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52156. {
  52157. front: {
  52158. height: math.unit(7, "feet"),
  52159. name: "Front",
  52160. image: {
  52161. source: "./media/characters/chimera/front.svg",
  52162. extra: 1752/1614,
  52163. bottom: 68/1820
  52164. }
  52165. },
  52166. },
  52167. [
  52168. {
  52169. name: "Normal",
  52170. height: math.unit(7, "feet")
  52171. },
  52172. {
  52173. name: "Gigamacro",
  52174. height: math.unit(2.9, "gigameters"),
  52175. default: true
  52176. },
  52177. {
  52178. name: "Universal",
  52179. height: math.unit(1.56e26, "yottameters")
  52180. },
  52181. ]
  52182. ))
  52183. characterMakers.push(() => makeCharacter(
  52184. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52185. {
  52186. front: {
  52187. height: math.unit(3, "feet"),
  52188. weight: math.unit(20, "lb"),
  52189. name: "Front",
  52190. image: {
  52191. source: "./media/characters/kit-fennec-fox/front.svg",
  52192. extra: 1027/932,
  52193. bottom: 16/1043
  52194. }
  52195. },
  52196. back: {
  52197. height: math.unit(3, "feet"),
  52198. weight: math.unit(20, "lb"),
  52199. name: "Back",
  52200. image: {
  52201. source: "./media/characters/kit-fennec-fox/back.svg",
  52202. extra: 1027/932,
  52203. bottom: 16/1043
  52204. }
  52205. },
  52206. },
  52207. [
  52208. {
  52209. name: "Normal",
  52210. height: math.unit(3, "feet"),
  52211. default: true
  52212. },
  52213. ]
  52214. ))
  52215. characterMakers.push(() => makeCharacter(
  52216. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52217. {
  52218. front: {
  52219. height: math.unit(167, "cm"),
  52220. name: "Front",
  52221. image: {
  52222. source: "./media/characters/blue-otter/front.svg",
  52223. extra: 1951/1920,
  52224. bottom: 31/1982
  52225. }
  52226. },
  52227. },
  52228. [
  52229. {
  52230. name: "Otter-Sized",
  52231. height: math.unit(100, "cm")
  52232. },
  52233. {
  52234. name: "Normal",
  52235. height: math.unit(167, "cm"),
  52236. default: true
  52237. },
  52238. ]
  52239. ))
  52240. characterMakers.push(() => makeCharacter(
  52241. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52242. {
  52243. front: {
  52244. height: math.unit(4 + 4/12, "feet"),
  52245. name: "Front",
  52246. image: {
  52247. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52248. extra: 1072/1067,
  52249. bottom: 117/1189
  52250. }
  52251. },
  52252. back: {
  52253. height: math.unit(4 + 4/12, "feet"),
  52254. name: "Back",
  52255. image: {
  52256. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52257. extra: 1135/1129,
  52258. bottom: 57/1192
  52259. }
  52260. },
  52261. head: {
  52262. height: math.unit(1.77, "feet"),
  52263. name: "Head",
  52264. image: {
  52265. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52266. }
  52267. },
  52268. },
  52269. [
  52270. {
  52271. name: "Normal",
  52272. height: math.unit(4 + 4/12, "feet"),
  52273. default: true
  52274. },
  52275. ]
  52276. ))
  52277. characterMakers.push(() => makeCharacter(
  52278. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52279. {
  52280. front: {
  52281. height: math.unit(2, "inches"),
  52282. name: "Front",
  52283. image: {
  52284. source: "./media/characters/carley-hartford/front.svg",
  52285. extra: 1035/988,
  52286. bottom: 23/1058
  52287. }
  52288. },
  52289. back: {
  52290. height: math.unit(2, "inches"),
  52291. name: "Back",
  52292. image: {
  52293. source: "./media/characters/carley-hartford/back.svg",
  52294. extra: 1035/988,
  52295. bottom: 23/1058
  52296. }
  52297. },
  52298. dressed: {
  52299. height: math.unit(2, "inches"),
  52300. name: "Dressed",
  52301. image: {
  52302. source: "./media/characters/carley-hartford/dressed.svg",
  52303. extra: 651/620,
  52304. bottom: 0/651
  52305. }
  52306. },
  52307. },
  52308. [
  52309. {
  52310. name: "Micro",
  52311. height: math.unit(2, "inches"),
  52312. default: true
  52313. },
  52314. {
  52315. name: "Macro",
  52316. height: math.unit(6 + 3/12, "feet")
  52317. },
  52318. ]
  52319. ))
  52320. characterMakers.push(() => makeCharacter(
  52321. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52322. {
  52323. front: {
  52324. height: math.unit(2 + 3/12, "feet"),
  52325. weight: math.unit(15 + 7/16, "lb"),
  52326. name: "Front",
  52327. image: {
  52328. source: "./media/characters/duke/front.svg",
  52329. extra: 910/815,
  52330. bottom: 30/940
  52331. }
  52332. },
  52333. },
  52334. [
  52335. {
  52336. name: "Normal",
  52337. height: math.unit(2 + 3/12, "feet"),
  52338. default: true
  52339. },
  52340. ]
  52341. ))
  52342. characterMakers.push(() => makeCharacter(
  52343. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52344. {
  52345. front: {
  52346. height: math.unit(5 + 4/12, "feet"),
  52347. weight: math.unit(156, "lb"),
  52348. name: "Front",
  52349. image: {
  52350. source: "./media/characters/dein/front.svg",
  52351. extra: 855/815,
  52352. bottom: 48/903
  52353. }
  52354. },
  52355. side: {
  52356. height: math.unit(5 + 4/12, "feet"),
  52357. weight: math.unit(156, "lb"),
  52358. name: "side",
  52359. image: {
  52360. source: "./media/characters/dein/side.svg",
  52361. extra: 846/803,
  52362. bottom: 25/871
  52363. }
  52364. },
  52365. maw: {
  52366. height: math.unit(1.45, "feet"),
  52367. name: "Maw",
  52368. image: {
  52369. source: "./media/characters/dein/maw.svg"
  52370. }
  52371. },
  52372. },
  52373. [
  52374. {
  52375. name: "Ferret Sized",
  52376. height: math.unit(2 + 5/12, "feet")
  52377. },
  52378. {
  52379. name: "Normal",
  52380. height: math.unit(5 + 4/12, "feet"),
  52381. default: true
  52382. },
  52383. ]
  52384. ))
  52385. characterMakers.push(() => makeCharacter(
  52386. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52387. {
  52388. front: {
  52389. height: math.unit(84 + 8/12, "feet"),
  52390. weight: math.unit(942180, "lb"),
  52391. name: "Front",
  52392. image: {
  52393. source: "./media/characters/daurine-arima/front.svg",
  52394. extra: 1989/1782,
  52395. bottom: 37/2026
  52396. }
  52397. },
  52398. side: {
  52399. height: math.unit(84 + 8/12, "feet"),
  52400. weight: math.unit(942180, "lb"),
  52401. name: "Side",
  52402. image: {
  52403. source: "./media/characters/daurine-arima/side.svg",
  52404. extra: 1997/1790,
  52405. bottom: 21/2018
  52406. }
  52407. },
  52408. back: {
  52409. height: math.unit(84 + 8/12, "feet"),
  52410. weight: math.unit(942180, "lb"),
  52411. name: "Back",
  52412. image: {
  52413. source: "./media/characters/daurine-arima/back.svg",
  52414. extra: 1992/1800,
  52415. bottom: 12/2004
  52416. }
  52417. },
  52418. head: {
  52419. height: math.unit(15.5, "feet"),
  52420. name: "Head",
  52421. image: {
  52422. source: "./media/characters/daurine-arima/head.svg"
  52423. }
  52424. },
  52425. headAlt: {
  52426. height: math.unit(19.19, "feet"),
  52427. name: "Head (Alt)",
  52428. image: {
  52429. source: "./media/characters/daurine-arima/head-alt.svg"
  52430. }
  52431. },
  52432. },
  52433. [
  52434. {
  52435. name: "Minimum height",
  52436. height: math.unit(8 + 10/12, "feet")
  52437. },
  52438. {
  52439. name: "Comfort height",
  52440. height: math.unit(19 + 6 /12, "feet")
  52441. },
  52442. {
  52443. name: "\"Normal\" height",
  52444. height: math.unit(28 + 10/12, "feet")
  52445. },
  52446. {
  52447. name: "Base height",
  52448. height: math.unit(84 + 8/12, "feet"),
  52449. default: true
  52450. },
  52451. {
  52452. name: "Mini-macro",
  52453. height: math.unit(2360, "feet")
  52454. },
  52455. {
  52456. name: "Macro",
  52457. height: math.unit(10, "miles")
  52458. },
  52459. {
  52460. name: "Goddess",
  52461. height: math.unit(9.99e40, "yottameters")
  52462. },
  52463. ]
  52464. ))
  52465. characterMakers.push(() => makeCharacter(
  52466. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52467. {
  52468. front: {
  52469. height: math.unit(2.3, "meters"),
  52470. name: "Front",
  52471. image: {
  52472. source: "./media/characters/cilenomon/front.svg",
  52473. extra: 1963/1778,
  52474. bottom: 54/2017
  52475. }
  52476. },
  52477. },
  52478. [
  52479. {
  52480. name: "Normal",
  52481. height: math.unit(2.3, "meters"),
  52482. default: true
  52483. },
  52484. {
  52485. name: "Big",
  52486. height: math.unit(5, "meters")
  52487. },
  52488. {
  52489. name: "Macro",
  52490. height: math.unit(30, "meters")
  52491. },
  52492. {
  52493. name: "True",
  52494. height: math.unit(1, "universe")
  52495. },
  52496. ]
  52497. ))
  52498. characterMakers.push(() => makeCharacter(
  52499. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52500. {
  52501. front: {
  52502. height: math.unit(5, "feet"),
  52503. name: "Front",
  52504. image: {
  52505. source: "./media/characters/sen-mink/front.svg",
  52506. extra: 1727/1675,
  52507. bottom: 35/1762
  52508. }
  52509. },
  52510. },
  52511. [
  52512. {
  52513. name: "Normal",
  52514. height: math.unit(5, "feet"),
  52515. default: true
  52516. },
  52517. ]
  52518. ))
  52519. characterMakers.push(() => makeCharacter(
  52520. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52521. {
  52522. front: {
  52523. height: math.unit(5.42999, "feet"),
  52524. weight: math.unit(100, "lb"),
  52525. name: "Front",
  52526. image: {
  52527. source: "./media/characters/ophois/front.svg",
  52528. extra: 1429/1286,
  52529. bottom: 60/1489
  52530. }
  52531. },
  52532. },
  52533. [
  52534. {
  52535. name: "Normal",
  52536. height: math.unit(5.42999, "feet"),
  52537. default: true
  52538. },
  52539. ]
  52540. ))
  52541. characterMakers.push(() => makeCharacter(
  52542. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52543. {
  52544. front: {
  52545. height: math.unit(2, "meters"),
  52546. name: "Front",
  52547. image: {
  52548. source: "./media/characters/riley/front.svg",
  52549. extra: 1779/1754,
  52550. bottom: 139/1918
  52551. }
  52552. },
  52553. },
  52554. [
  52555. {
  52556. name: "Normal",
  52557. height: math.unit(2, "meters"),
  52558. default: true
  52559. },
  52560. ]
  52561. ))
  52562. characterMakers.push(() => makeCharacter(
  52563. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  52564. {
  52565. front: {
  52566. height: math.unit(6 + 2/12, "feet"),
  52567. weight: math.unit(195, "lb"),
  52568. preyCapacity: math.unit(6, "people"),
  52569. name: "Front",
  52570. image: {
  52571. source: "./media/characters/shuken-flash/front.svg",
  52572. extra: 1905/1739,
  52573. bottom: 65/1970
  52574. }
  52575. },
  52576. back: {
  52577. height: math.unit(6 + 2/12, "feet"),
  52578. weight: math.unit(195, "lb"),
  52579. preyCapacity: math.unit(6, "people"),
  52580. name: "Back",
  52581. image: {
  52582. source: "./media/characters/shuken-flash/back.svg",
  52583. extra: 1912/1751,
  52584. bottom: 13/1925
  52585. }
  52586. },
  52587. },
  52588. [
  52589. {
  52590. name: "Normal",
  52591. height: math.unit(6 + 2/12, "feet"),
  52592. default: true
  52593. },
  52594. ]
  52595. ))
  52596. characterMakers.push(() => makeCharacter(
  52597. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  52598. {
  52599. front: {
  52600. height: math.unit(5 + 9/12, "feet"),
  52601. weight: math.unit(150, "lb"),
  52602. name: "Front",
  52603. image: {
  52604. source: "./media/characters/plat/front.svg",
  52605. extra: 1816/1703,
  52606. bottom: 43/1859
  52607. }
  52608. },
  52609. side: {
  52610. height: math.unit(5 + 9/12, "feet"),
  52611. weight: math.unit(300, "lb"),
  52612. name: "Side",
  52613. image: {
  52614. source: "./media/characters/plat/side.svg",
  52615. extra: 1824/1699,
  52616. bottom: 18/1842
  52617. }
  52618. },
  52619. },
  52620. [
  52621. {
  52622. name: "Normal",
  52623. height: math.unit(5 + 9/12, "feet"),
  52624. default: true
  52625. },
  52626. ]
  52627. ))
  52628. characterMakers.push(() => makeCharacter(
  52629. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  52630. {
  52631. front: {
  52632. height: math.unit(9, "feet"),
  52633. weight: math.unit(1800, "lb"),
  52634. name: "Front",
  52635. image: {
  52636. source: "./media/characters/elaine/front.svg",
  52637. extra: 1833/1354,
  52638. bottom: 25/1858
  52639. }
  52640. },
  52641. back: {
  52642. height: math.unit(8.8, "feet"),
  52643. weight: math.unit(1800, "lb"),
  52644. name: "Back",
  52645. image: {
  52646. source: "./media/characters/elaine/back.svg",
  52647. extra: 1641/1233,
  52648. bottom: 53/1694
  52649. }
  52650. },
  52651. },
  52652. [
  52653. {
  52654. name: "Normal",
  52655. height: math.unit(9, "feet"),
  52656. default: true
  52657. },
  52658. ]
  52659. ))
  52660. characterMakers.push(() => makeCharacter(
  52661. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  52662. {
  52663. front: {
  52664. height: math.unit(17 + 9/12, "feet"),
  52665. weight: math.unit(8000, "lb"),
  52666. name: "Front",
  52667. image: {
  52668. source: "./media/characters/vera-raven/front.svg",
  52669. extra: 1457/1412,
  52670. bottom: 121/1578
  52671. }
  52672. },
  52673. side: {
  52674. height: math.unit(17 + 9/12, "feet"),
  52675. weight: math.unit(8000, "lb"),
  52676. name: "Side",
  52677. image: {
  52678. source: "./media/characters/vera-raven/side.svg",
  52679. extra: 1510/1464,
  52680. bottom: 54/1564
  52681. }
  52682. },
  52683. },
  52684. [
  52685. {
  52686. name: "Normal",
  52687. height: math.unit(17 + 9/12, "feet"),
  52688. default: true
  52689. },
  52690. ]
  52691. ))
  52692. characterMakers.push(() => makeCharacter(
  52693. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  52694. {
  52695. dressed: {
  52696. height: math.unit(6 + 9/12, "feet"),
  52697. name: "Dressed",
  52698. image: {
  52699. source: "./media/characters/nakisha/dressed.svg",
  52700. extra: 1909/1757,
  52701. bottom: 48/1957
  52702. }
  52703. },
  52704. nude: {
  52705. height: math.unit(6 + 9/12, "feet"),
  52706. name: "Nude",
  52707. image: {
  52708. source: "./media/characters/nakisha/nude.svg",
  52709. extra: 1917/1765,
  52710. bottom: 34/1951
  52711. }
  52712. },
  52713. },
  52714. [
  52715. {
  52716. name: "Normal",
  52717. height: math.unit(6 + 9/12, "feet"),
  52718. default: true
  52719. },
  52720. ]
  52721. ))
  52722. characterMakers.push(() => makeCharacter(
  52723. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  52724. {
  52725. front: {
  52726. height: math.unit(87, "meters"),
  52727. name: "Front",
  52728. image: {
  52729. source: "./media/characters/serafin/front.svg",
  52730. extra: 1919/1776,
  52731. bottom: 65/1984
  52732. }
  52733. },
  52734. },
  52735. [
  52736. {
  52737. name: "Normal",
  52738. height: math.unit(87, "meters"),
  52739. default: true
  52740. },
  52741. ]
  52742. ))
  52743. characterMakers.push(() => makeCharacter(
  52744. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  52745. {
  52746. front: {
  52747. height: math.unit(6, "feet"),
  52748. weight: math.unit(200, "lb"),
  52749. name: "Front",
  52750. image: {
  52751. source: "./media/characters/poptart/front.svg",
  52752. extra: 615/583,
  52753. bottom: 23/638
  52754. }
  52755. },
  52756. back: {
  52757. height: math.unit(6, "feet"),
  52758. weight: math.unit(200, "lb"),
  52759. name: "Back",
  52760. image: {
  52761. source: "./media/characters/poptart/back.svg",
  52762. extra: 617/584,
  52763. bottom: 22/639
  52764. }
  52765. },
  52766. frontNsfw: {
  52767. height: math.unit(6, "feet"),
  52768. weight: math.unit(200, "lb"),
  52769. name: "Front (NSFW)",
  52770. image: {
  52771. source: "./media/characters/poptart/front-nsfw.svg",
  52772. extra: 615/583,
  52773. bottom: 23/638
  52774. }
  52775. },
  52776. backNsfw: {
  52777. height: math.unit(6, "feet"),
  52778. weight: math.unit(200, "lb"),
  52779. name: "Back (NSFW)",
  52780. image: {
  52781. source: "./media/characters/poptart/back-nsfw.svg",
  52782. extra: 617/584,
  52783. bottom: 22/639
  52784. }
  52785. },
  52786. hand: {
  52787. height: math.unit(1.14, "feet"),
  52788. name: "Hand",
  52789. image: {
  52790. source: "./media/characters/poptart/hand.svg"
  52791. }
  52792. },
  52793. foot: {
  52794. height: math.unit(1.5, "feet"),
  52795. name: "Foot",
  52796. image: {
  52797. source: "./media/characters/poptart/foot.svg"
  52798. }
  52799. },
  52800. },
  52801. [
  52802. {
  52803. name: "Normal",
  52804. height: math.unit(6, "feet"),
  52805. default: true
  52806. },
  52807. {
  52808. name: "Grande",
  52809. height: math.unit(350, "feet")
  52810. },
  52811. {
  52812. name: "Massif",
  52813. height: math.unit(967, "feet")
  52814. },
  52815. ]
  52816. ))
  52817. characterMakers.push(() => makeCharacter(
  52818. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  52819. {
  52820. hyenaSide: {
  52821. height: math.unit(120, "cm"),
  52822. weight: math.unit(120, "lb"),
  52823. name: "Side",
  52824. image: {
  52825. source: "./media/characters/trance/hyena-side.svg",
  52826. extra: 998/904,
  52827. bottom: 76/1074
  52828. }
  52829. },
  52830. },
  52831. [
  52832. {
  52833. name: "Normal",
  52834. height: math.unit(120, "cm"),
  52835. default: true
  52836. },
  52837. {
  52838. name: "Dire",
  52839. height: math.unit(230, "cm")
  52840. },
  52841. {
  52842. name: "Macro",
  52843. height: math.unit(37, "feet")
  52844. },
  52845. ]
  52846. ))
  52847. characterMakers.push(() => makeCharacter(
  52848. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  52849. {
  52850. front: {
  52851. height: math.unit(6 + 3/12, "feet"),
  52852. name: "Front",
  52853. image: {
  52854. source: "./media/characters/michael-berretta/front.svg",
  52855. extra: 515/494,
  52856. bottom: 20/535
  52857. }
  52858. },
  52859. back: {
  52860. height: math.unit(6 + 3/12, "feet"),
  52861. name: "Back",
  52862. image: {
  52863. source: "./media/characters/michael-berretta/back.svg",
  52864. extra: 520/497,
  52865. bottom: 21/541
  52866. }
  52867. },
  52868. frontNsfw: {
  52869. height: math.unit(6 + 3/12, "feet"),
  52870. name: "Front (NSFW)",
  52871. image: {
  52872. source: "./media/characters/michael-berretta/front-nsfw.svg",
  52873. extra: 515/494,
  52874. bottom: 20/535
  52875. }
  52876. },
  52877. dick: {
  52878. height: math.unit(1, "feet"),
  52879. name: "Dick",
  52880. image: {
  52881. source: "./media/characters/michael-berretta/dick.svg"
  52882. }
  52883. },
  52884. },
  52885. [
  52886. {
  52887. name: "Normal",
  52888. height: math.unit(6 + 3/12, "feet"),
  52889. default: true
  52890. },
  52891. {
  52892. name: "Big",
  52893. height: math.unit(12, "feet")
  52894. },
  52895. {
  52896. name: "Macro",
  52897. height: math.unit(187.5, "feet")
  52898. },
  52899. ]
  52900. ))
  52901. characterMakers.push(() => makeCharacter(
  52902. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  52903. {
  52904. front: {
  52905. height: math.unit(9 + 9/12, "feet"),
  52906. weight: math.unit(1244, "lb"),
  52907. name: "Front",
  52908. image: {
  52909. source: "./media/characters/stella-edgecomb/front.svg",
  52910. extra: 1835/1706,
  52911. bottom: 49/1884
  52912. }
  52913. },
  52914. pen: {
  52915. height: math.unit(0.95, "feet"),
  52916. name: "Pen",
  52917. image: {
  52918. source: "./media/characters/stella-edgecomb/pen.svg"
  52919. }
  52920. },
  52921. },
  52922. [
  52923. {
  52924. name: "Cozy Bear",
  52925. height: math.unit(0.5, "inches")
  52926. },
  52927. {
  52928. name: "Normal",
  52929. height: math.unit(9 + 9/12, "feet"),
  52930. default: true
  52931. },
  52932. {
  52933. name: "Giga Bear",
  52934. height: math.unit(1, "mile")
  52935. },
  52936. {
  52937. name: "Great Bear",
  52938. height: math.unit(53, "miles")
  52939. },
  52940. {
  52941. name: "Goddess Bear",
  52942. height: math.unit(40000, "miles")
  52943. },
  52944. {
  52945. name: "Sun Bear",
  52946. height: math.unit(900000, "miles")
  52947. },
  52948. ]
  52949. ))
  52950. characterMakers.push(() => makeCharacter(
  52951. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  52952. {
  52953. anthroFront: {
  52954. height: math.unit(556, "cm"),
  52955. weight: math.unit(2650, "kg"),
  52956. preyCapacity: math.unit(3, "people"),
  52957. name: "Front",
  52958. image: {
  52959. source: "./media/characters/ash´iika/front.svg",
  52960. extra: 710/673,
  52961. bottom: 15/725
  52962. },
  52963. form: "anthro",
  52964. default: true
  52965. },
  52966. anthroSide: {
  52967. height: math.unit(556, "cm"),
  52968. weight: math.unit(2650, "kg"),
  52969. preyCapacity: math.unit(3, "people"),
  52970. name: "Side",
  52971. image: {
  52972. source: "./media/characters/ash´iika/side.svg",
  52973. extra: 696/676,
  52974. bottom: 13/709
  52975. },
  52976. form: "anthro"
  52977. },
  52978. anthroDressed: {
  52979. height: math.unit(556, "cm"),
  52980. weight: math.unit(2650, "kg"),
  52981. preyCapacity: math.unit(3, "people"),
  52982. name: "Dressed",
  52983. image: {
  52984. source: "./media/characters/ash´iika/dressed.svg",
  52985. extra: 710/673,
  52986. bottom: 15/725
  52987. },
  52988. form: "anthro"
  52989. },
  52990. anthroHead: {
  52991. height: math.unit(3.5, "feet"),
  52992. name: "Head",
  52993. image: {
  52994. source: "./media/characters/ash´iika/head.svg",
  52995. extra: 348/291,
  52996. bottom: 45/393
  52997. },
  52998. form: "anthro"
  52999. },
  53000. feralSide: {
  53001. height: math.unit(870, "cm"),
  53002. weight: math.unit(17500, "kg"),
  53003. preyCapacity: math.unit(15, "people"),
  53004. name: "Side",
  53005. image: {
  53006. source: "./media/characters/ash´iika/feral.svg",
  53007. extra: 595/199,
  53008. bottom: 7/602
  53009. },
  53010. form: "feral",
  53011. default: true,
  53012. },
  53013. },
  53014. [
  53015. {
  53016. name: "Normal",
  53017. height: math.unit(556, "cm"),
  53018. default: true,
  53019. form: "anthro"
  53020. },
  53021. {
  53022. name: "Macro",
  53023. height: math.unit(88, "meters"),
  53024. form: "anthro"
  53025. },
  53026. {
  53027. name: "Normal",
  53028. height: math.unit(870, "cm"),
  53029. default: true,
  53030. form: "feral"
  53031. },
  53032. {
  53033. name: "Large",
  53034. height: math.unit(25, "meters"),
  53035. form: "feral"
  53036. },
  53037. ],
  53038. {
  53039. "anthro": {
  53040. name: "Anthro",
  53041. default: true
  53042. },
  53043. "feral": {
  53044. name: "Feral",
  53045. },
  53046. }
  53047. ))
  53048. characterMakers.push(() => makeCharacter(
  53049. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53050. {
  53051. front: {
  53052. height: math.unit(10, "feet"),
  53053. weight: math.unit(800, "lb"),
  53054. name: "Front",
  53055. image: {
  53056. source: "./media/characters/yen/front.svg",
  53057. extra: 443/411,
  53058. bottom: 6/449
  53059. }
  53060. },
  53061. sleeping: {
  53062. height: math.unit(10, "feet"),
  53063. weight: math.unit(800, "lb"),
  53064. name: "Sleeping",
  53065. image: {
  53066. source: "./media/characters/yen/sleeping.svg",
  53067. extra: 470/422,
  53068. bottom: 0/470
  53069. }
  53070. },
  53071. head: {
  53072. height: math.unit(2.2, "feet"),
  53073. name: "Head",
  53074. image: {
  53075. source: "./media/characters/yen/head.svg"
  53076. }
  53077. },
  53078. headAlt: {
  53079. height: math.unit(2.1, "feet"),
  53080. name: "Head (Alt)",
  53081. image: {
  53082. source: "./media/characters/yen/head-alt.svg"
  53083. }
  53084. },
  53085. },
  53086. [
  53087. {
  53088. name: "Normal",
  53089. height: math.unit(10, "feet"),
  53090. default: true
  53091. },
  53092. ]
  53093. ))
  53094. characterMakers.push(() => makeCharacter(
  53095. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53096. {
  53097. front: {
  53098. height: math.unit(12, "feet"),
  53099. name: "Front",
  53100. image: {
  53101. source: "./media/characters/citra/front.svg",
  53102. extra: 1950/1710,
  53103. bottom: 47/1997
  53104. }
  53105. },
  53106. },
  53107. [
  53108. {
  53109. name: "Normal",
  53110. height: math.unit(12, "feet"),
  53111. default: true
  53112. },
  53113. ]
  53114. ))
  53115. characterMakers.push(() => makeCharacter(
  53116. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53117. {
  53118. side: {
  53119. height: math.unit(7 + 10/12, "feet"),
  53120. name: "Side",
  53121. image: {
  53122. source: "./media/characters/sholstim/side.svg",
  53123. extra: 786/682,
  53124. bottom: 40/826
  53125. }
  53126. },
  53127. },
  53128. [
  53129. {
  53130. name: "Normal",
  53131. height: math.unit(7 + 10/12, "feet"),
  53132. default: true
  53133. },
  53134. ]
  53135. ))
  53136. characterMakers.push(() => makeCharacter(
  53137. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53138. {
  53139. front: {
  53140. height: math.unit(3.10, "meters"),
  53141. name: "Front",
  53142. image: {
  53143. source: "./media/characters/aggyn/front.svg",
  53144. extra: 1188/963,
  53145. bottom: 24/1212
  53146. }
  53147. },
  53148. },
  53149. [
  53150. {
  53151. name: "Normal",
  53152. height: math.unit(3.10, "meters"),
  53153. default: true
  53154. },
  53155. ]
  53156. ))
  53157. characterMakers.push(() => makeCharacter(
  53158. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53159. {
  53160. front: {
  53161. height: math.unit(7 + 5/12, "feet"),
  53162. weight: math.unit(687, "lb"),
  53163. name: "Front",
  53164. image: {
  53165. source: "./media/characters/alsandair-hergenroether/front.svg",
  53166. extra: 1251/1186,
  53167. bottom: 75/1326
  53168. }
  53169. },
  53170. back: {
  53171. height: math.unit(7 + 5/12, "feet"),
  53172. weight: math.unit(687, "lb"),
  53173. name: "Back",
  53174. image: {
  53175. source: "./media/characters/alsandair-hergenroether/back.svg",
  53176. extra: 1290/1229,
  53177. bottom: 17/1307
  53178. }
  53179. },
  53180. },
  53181. [
  53182. {
  53183. name: "Max Compression",
  53184. height: math.unit(7 + 5/12, "feet"),
  53185. default: true
  53186. },
  53187. {
  53188. name: "\"Normal\"",
  53189. height: math.unit(2, "universes")
  53190. },
  53191. ]
  53192. ))
  53193. characterMakers.push(() => makeCharacter(
  53194. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53195. {
  53196. front: {
  53197. height: math.unit(4 + 1/12, "feet"),
  53198. weight: math.unit(92, "lb"),
  53199. name: "Front",
  53200. image: {
  53201. source: "./media/characters/ie/front.svg",
  53202. extra: 1585/1352,
  53203. bottom: 91/1676
  53204. }
  53205. },
  53206. },
  53207. [
  53208. {
  53209. name: "Normal",
  53210. height: math.unit(4 + 1/12, "feet"),
  53211. default: true
  53212. },
  53213. ]
  53214. ))
  53215. characterMakers.push(() => makeCharacter(
  53216. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53217. {
  53218. anthro: {
  53219. height: math.unit(6, "feet"),
  53220. weight: math.unit(150, "lb"),
  53221. name: "Front",
  53222. image: {
  53223. source: "./media/characters/willow/anthro.svg",
  53224. extra: 1073/986,
  53225. bottom: 34/1107
  53226. },
  53227. form: "anthro",
  53228. default: true
  53229. },
  53230. taur: {
  53231. height: math.unit(6, "feet"),
  53232. weight: math.unit(150, "lb"),
  53233. name: "Side",
  53234. image: {
  53235. source: "./media/characters/willow/taur.svg",
  53236. extra: 647/512,
  53237. bottom: 136/783
  53238. },
  53239. form: "taur",
  53240. default: true
  53241. },
  53242. },
  53243. [
  53244. {
  53245. name: "Humanoid",
  53246. height: math.unit(2.7, "meters"),
  53247. form: "anthro"
  53248. },
  53249. {
  53250. name: "Normal",
  53251. height: math.unit(9, "meters"),
  53252. form: "anthro",
  53253. default: true
  53254. },
  53255. {
  53256. name: "Humanoid",
  53257. height: math.unit(2.1, "meters"),
  53258. form: "taur"
  53259. },
  53260. {
  53261. name: "Normal",
  53262. height: math.unit(7, "meters"),
  53263. form: "taur",
  53264. default: true
  53265. },
  53266. ],
  53267. {
  53268. "anthro": {
  53269. name: "Anthro",
  53270. default: true
  53271. },
  53272. "taur": {
  53273. name: "Taur",
  53274. },
  53275. }
  53276. ))
  53277. characterMakers.push(() => makeCharacter(
  53278. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53279. {
  53280. front: {
  53281. height: math.unit(2 + 5/12, "feet"),
  53282. name: "Front",
  53283. image: {
  53284. source: "./media/characters/kyan/front.svg",
  53285. extra: 460/334,
  53286. bottom: 23/483
  53287. },
  53288. extraAttributes: {
  53289. "toeLength": {
  53290. name: "Toe Length",
  53291. power: 1,
  53292. type: "length",
  53293. base: math.unit(7, "cm")
  53294. },
  53295. "toeclawLength": {
  53296. name: "Toeclaw Length",
  53297. power: 1,
  53298. type: "length",
  53299. base: math.unit(4.7, "cm")
  53300. },
  53301. "earHeight": {
  53302. name: "Ear Height",
  53303. power: 1,
  53304. type: "length",
  53305. base: math.unit(14.1, "cm")
  53306. },
  53307. }
  53308. },
  53309. },
  53310. [
  53311. {
  53312. name: "Normal",
  53313. height: math.unit(2 + 5/12, "feet"),
  53314. default: true
  53315. },
  53316. ]
  53317. ))
  53318. //characters
  53319. function makeCharacters() {
  53320. const results = [];
  53321. characterMakers.forEach(character => {
  53322. results.push(character());
  53323. });
  53324. return results;
  53325. }